diff --git a/.editorconfig b/.editorconfig index 2d877d20b825b..4064add28e9e9 100644 --- a/.editorconfig +++ b/.editorconfig @@ -23,23 +23,16 @@ insert_final_newline = false # see https://nixos.org/nixpkgs/manual/#chap-conventions -[*.{bash,css,js,json,lock,md,nix,pl,pm,py,rb,sh,xml}] +[*.{bash,css,js,json,lock,md,nix,nu,pl,pm,py,rb,sh,xml}] indent_style = space -# Match docbook files, set indent width of one [*.xml] indent_size = 1 -# Match json/lockfiles/markdown/nix/ruby files, set indent width of two -[*.{js,json,lock,md,nix,rb}] +[*.{bash,js,json,lock,md,nix,rb,sh}] indent_size = 2 -# Match all the Bash code in Nix files, set indent width of two -[*.{bash,sh}] -indent_size = 2 - -# Match Perl and Python scripts, set indent width of four -[*.{pl,pm,py}] +[*.{nu,pl,pm,py}] indent_size = 4 # Match gemfiles, set indent to spaces with width of two diff --git a/maintainers/scripts/haskell/exclude.nu b/maintainers/scripts/haskell/exclude.nu new file mode 100755 index 0000000000000..0d5d796afe3d9 --- /dev/null +++ b/maintainers/scripts/haskell/exclude.nu @@ -0,0 +1,43 @@ +#! /usr/bin/env nix-shell +#! nix-shell -i nu -p nushell flock gnused -I nixpkgs=. + +# This script will add all packages that match the following criteria to the exclusion list: +# - Is either marked directly or transitively broken. +# - Has not been updated on hackage in the last 5 years. +# - Is not listed in the Stackage snapshot. +# hackage2nix will not create expressions for excluded packages. + +use std log + +let broken_config = "pkgs/development/haskell-modules/configuration-hackage2nix/broken.yaml" +let transitive_broken_config = "pkgs/development/haskell-modules/configuration-hackage2nix/transitive-broken.yaml" +let stackage_config = "pkgs/development/haskell-modules/configuration-hackage2nix/stackage.yaml" +let excluded_config = "pkgs/development/haskell-modules/configuration-hackage2nix/excluded.json" + +def main [] { + let broken = $broken_config | open | get broken-packages + let transitive_broken = $transitive_broken_config | open | get dont-distribute-packages + let stackage = $stackage_config | open | get default-package-overrides | parse "{name} {constraint}" + + $broken ++ $transitive_broken + | where ($it not-in $stackage.name) + | par-each {|package| + try { + let updated = http get $"https://hackage.haskell.org/package/($package)/upload-time" | into datetime + if $updated < ("5 years ago" | date from-human) { + log info $"($package): last updated at ($updated)" + # This is not efficient at all, but will: + # - keep comments in broken.yaml + # - allow to cancel the script at any time without losing progress + ^flock -x $broken_config -c $"sed -i -e '/^ - ($package) /d' ($broken_config)" + ^flock -x $transitive_broken_config -c $"sed -i -e '/^ - ($package)$/d' ($transitive_broken_config)" + ^flock -x $excluded_config -c $"sed -i -e '/"__insert-target-for-script__"/a\\ "($package)",' ($excluded_config)" + } + } catch {|err| + # "Network failure" happens for 404 responses, for example for versioned attributes like aeson_1_5_6_0 + log warning $"($package): ($err.msg)" + } + } + + ^treefmt $excluded_config +} diff --git a/maintainers/scripts/haskell/regenerate-hackage-packages.sh b/maintainers/scripts/haskell/regenerate-hackage-packages.sh index d2c5c25c65f80..9fec94d1ceb65 100755 --- a/maintainers/scripts/haskell/regenerate-hackage-packages.sh +++ b/maintainers/scripts/haskell/regenerate-hackage-packages.sh @@ -77,7 +77,8 @@ run_hackage2nix() { --config "$config_dir/main.yaml" \ --config "$config_dir/stackage.yaml" \ --config "$config_dir/broken.yaml" \ - --config "$config_dir/transitive-broken.yaml" + --config "$config_dir/transitive-broken.yaml" \ + --config "$config_dir/excluded.json" } echo "Obtaining Hackage data …" diff --git a/pkgs/development/haskell-modules/configuration-arm.nix b/pkgs/development/haskell-modules/configuration-arm.nix index 6e3fb04d8ec1b..b6c43ce68ec24 100644 --- a/pkgs/development/haskell-modules/configuration-arm.nix +++ b/pkgs/development/haskell-modules/configuration-arm.nix @@ -68,16 +68,13 @@ self: super: autoapply = dontCheck super.autoapply; construct = dontCheck super.construct; exact-real = dontCheck super.exact-real; - flight-kml = dontCheck super.flight-kml; focuslist = dontCheck super.focuslist; grammatical-parsers = dontCheck super.grammatical-parsers; greskell = dontCheck super.greskell; - groupBy = dontCheck super.groupBy; haskell-time-range = dontCheck super.haskell-time-range; headroom = dontCheck super.headroom; hgeometry = dontCheck super.hgeometry; hhp = dontCheck super.hhp; - hsakamai = dontCheck super.hsakamai; hsemail-ns = dontCheck super.hsemail-ns; html-validator-cli = dontCheck super.html-validator-cli; hw-fingertree-strict = dontCheck super.hw-fingertree-strict; @@ -86,17 +83,13 @@ self: super: hw-xml = dontCheck super.hw-xml; language-nix = dontCheck super.language-nix; lens-regex = dontCheck super.lens-regex; - meep = dontCheck super.meep; openapi3 = dontCheck super.openapi3; orbits = dontCheck super.orbits; ranged-list = dontCheck super.ranged-list; rank2classes = dontCheck super.rank2classes; schedule = dontCheck super.schedule; - static = dontCheck super.static; - strict-writer = dontCheck super.strict-writer; termonad = dontCheck super.termonad; trifecta = dontCheck super.trifecta; - twiml = dontCheck super.twiml; twitter-conduit = dontCheck super.twitter-conduit; validationt = dontCheck super.validationt; vgrep = dontCheck super.vgrep; diff --git a/pkgs/development/haskell-modules/configuration-common.nix b/pkgs/development/haskell-modules/configuration-common.nix index e94a0b664b183..c657c03747bc9 100644 --- a/pkgs/development/haskell-modules/configuration-common.nix +++ b/pkgs/development/haskell-modules/configuration-common.nix @@ -776,9 +776,6 @@ with haskellLib; doJailbreak ]; - # https://github.com/froozen/kademlia/issues/2 - kademlia = dontCheck super.kademlia; - # 2025-09-03: jailbreak for base 4.20 and hashable 1.5 # https://github.com/typeclasses/ascii-case/pulls/1 ascii-case = lib.pipe super.ascii-case [ @@ -806,18 +803,13 @@ with haskellLib; # Tests require a Kafka broker running locally haskakafka = dontCheck super.haskakafka; - bindings-levmar = addExtraLibrary pkgs.blas super.bindings-levmar; - # Requires wrapQtAppsHook qtah-cpp-qt5 = overrideCabal (drv: { buildDepends = [ pkgs.qt5.wrapQtAppsHook ]; }) super.qtah-cpp-qt5; # The Haddock phase fails for one reason or another. - deepseq-magic = dontHaddock super.deepseq-magic; feldspar-signal = dontHaddock super.feldspar-signal; # https://github.com/markus-git/feldspar-signal/issues/1 - hoodle-core = dontHaddock super.hoodle-core; - hsc3-db = dontHaddock super.hsc3-db; # Fix build with time >= 1.10 while retaining compat with time < 1.9 mbox = appendPatch ./patches/mbox-time-1.10.patch ( @@ -842,39 +834,25 @@ with haskellLib; # ipa = doJailbreak super.ipa; - # Upstream notified by e-mail. - permutation = dontCheck super.permutation; - # https://github.com/jputcu/serialport/issues/25 serialport = dontCheck super.serialport; # Test suite depends on source code being available simple-affine-space = dontCheck super.simple-affine-space; - # Fails no apparent reason. Upstream has been notified by e-mail. - assertions = dontCheck super.assertions; - # These packages try to execute non-existent external programs. cmaes = dontCheck super.cmaes; # http://hydra.cryp.to/build/498725/log/raw dbmigrations = dontCheck super.dbmigrations; filestore = dontCheck super.filestore; - graceful = dontCheck super.graceful; - ide-backend = dontCheck super.ide-backend; - marquise = dontCheck super.marquise; # https://github.com/anchor/marquise/issues/69 - memcached-binary = dontCheck super.memcached-binary; - msgpack-rpc = dontCheck super.msgpack-rpc; persistent-zookeeper = dontCheck super.persistent-zookeeper; pocket-dns = dontCheck super.pocket-dns; squeal-postgresql = dontCheck super.squeal-postgresql; - postgrest-ws = dontCheck super.postgrest-ws; snowball = dontCheck super.snowball; sophia = dontCheck super.sophia; test-sandbox = dontCheck super.test-sandbox; texrunner = dontCheck super.texrunner; wai-middleware-hmac = dontCheck super.wai-middleware-hmac; - xkbcommon = dontCheck super.xkbcommon; xmlgen = dontCheck super.xmlgen; - HerbiePlugin = dontCheck super.HerbiePlugin; wai-cors = dontCheck super.wai-cors; # Apply patch fixing an incorrect QuickCheck property which occasionally causes false negatives @@ -908,69 +886,25 @@ with haskellLib; # Fails for non-obvious reasons while attempting to use doctest. focuslist = dontCheck super.focuslist; - search = dontCheck super.search; - - # https://github.com/ekmett/structures/issues/3 - structures = dontCheck super.structures; # Disable test suites to fix the build. acme-year = dontCheck super.acme-year; # http://hydra.cryp.to/build/497858/log/raw - aeson-lens = dontCheck super.aeson-lens; # http://hydra.cryp.to/build/496769/log/raw - aeson-schema = dontCheck super.aeson-schema; # https://github.com/timjb/aeson-schema/issues/9 - angel = dontCheck super.angel; - apache-md5 = dontCheck super.apache-md5; # http://hydra.cryp.to/build/498709/nixlog/1/raw - app-settings = dontCheck super.app-settings; # http://hydra.cryp.to/build/497327/log/raw - aws-kinesis = dontCheck super.aws-kinesis; # needs aws credentials for testing - binary-protocol = dontCheck super.binary-protocol; # http://hydra.cryp.to/build/499749/log/raw binary-search = dontCheck super.binary-search; bloodhound = dontCheck super.bloodhound; # https://github.com/plow-technologies/quickcheck-arbitrary-template/issues/10 - buildwrapper = dontCheck super.buildwrapper; - burst-detection = dontCheck super.burst-detection; # http://hydra.cryp.to/build/496948/log/raw - cabal-meta = dontCheck super.cabal-meta; # http://hydra.cryp.to/build/497892/log/raw camfort = dontCheck super.camfort; - cjk = dontCheck super.cjk; - CLI = dontCheck super.CLI; # Upstream has no issue tracker. command-qq = dontCheck super.command-qq; # http://hydra.cryp.to/build/499042/log/raw - conduit-connection = dontCheck super.conduit-connection; - craftwerk = dontCheck super.craftwerk; crc = dontCheck super.crc; # https://github.com/MichaelXavier/crc/issues/2 - damnpacket = dontCheck super.damnpacket; # http://hydra.cryp.to/build/496923/log - Deadpan-DDP = dontCheck super.Deadpan-DDP; # http://hydra.cryp.to/build/496418/log/raw - DigitalOcean = dontCheck super.DigitalOcean; directory-layout = dontCheck super.directory-layout; - dom-selector = dontCheck super.dom-selector; # http://hydra.cryp.to/build/497670/log/raw - dotfs = dontCheck super.dotfs; # http://hydra.cryp.to/build/498599/log/raw - DRBG = dontCheck super.DRBG; # http://hydra.cryp.to/build/498245/nixlog/1/raw ed25519 = dontCheck super.ed25519; - etcd = dontCheck super.etcd; fb = dontCheck super.fb; # needs credentials for Facebook - fptest = dontCheck super.fptest; # http://hydra.cryp.to/build/499124/log/raw - friday-juicypixels = dontCheck super.friday-juicypixels; # tarball missing test/rgba8.png - ghc-events-parallel = dontCheck super.ghc-events-parallel; # http://hydra.cryp.to/build/496828/log/raw - ghc-imported-from = dontCheck super.ghc-imported-from; - ghc-parmake = dontCheck super.ghc-parmake; - git-vogue = dontCheck super.git-vogue; github-rest = dontCheck super.github-rest; # test suite needs the network - gitlib-cmdline = dontCheck super.gitlib-cmdline; GLFW-b = dontCheck super.GLFW-b; # https://github.com/bsl/GLFW-b/issues/50 hackport = dontCheck super.hackport; - hadoop-formats = dontCheck super.hadoop-formats; hashed-storage = dontCheck super.hashed-storage; - hashring = dontCheck super.hashring; haxl = dontCheck super.haxl; # non-deterministic failure https://github.com/facebook/Haxl/issues/85 - haxl-facebook = dontCheck super.haxl-facebook; # needs facebook credentials for testing - hdbi-postgresql = dontCheck super.hdbi-postgresql; hedis = dontCheck super.hedis; - hedis-pile = dontCheck super.hedis-pile; - hedis-tags = dontCheck super.hedis-tags; - hgdbmi = dontCheck super.hgdbmi; - hi = dontCheck super.hi; - hierarchical-clustering = dontCheck super.hierarchical-clustering; hlibgit2 = disableHardening [ "format" ] super.hlibgit2; - hmatrix-tests = dontCheck super.hmatrix-tests; - hquery = dontCheck super.hquery; hs2048 = dontCheck super.hs2048; - hsbencher = dontCheck super.hsbencher; # 2025-02-11: Too strict bounds on bytestring hsexif = doJailbreak (dontCheck super.hsexif); hspec-server = dontCheck super.hspec-server; @@ -981,13 +915,10 @@ with haskellLib; # https://github.com/skogsbaer/HTF/issues/114 doCheck = false; }) super.HTF; - htsn = dontCheck super.htsn; - htsn-import = dontCheck super.htsn-import; http-link-header = dontCheck super.http-link-header; # non deterministic failure https://hydra.nixos.org/build/75041105 influxdb = dontCheck super.influxdb; integer-roots = dontCheck super.integer-roots; # requires an old version of smallcheck, will be fixed in > 1.0 itanium-abi = dontCheck super.itanium-abi; - katt = dontCheck super.katt; language-slice = dontCheck super.language-slice; # Group of libraries by same upstream maintainer for interacting with @@ -1003,52 +934,28 @@ with haskellLib; language-tl = doJailbreak super.language-tl; ldap-client = dontCheck super.ldap-client; - lensref = dontCheck super.lensref; - lvmrun = disableHardening [ "format" ] (dontCheck super.lvmrun); matplotlib = dontCheck super.matplotlib; - milena = dontCheck super.milena; modular-arithmetic = dontCheck super.modular-arithmetic; # tests require a very old Glob (0.7.*) - nats-queue = dontCheck super.nats-queue; - network-dbus = dontCheck super.network-dbus; - notcpp = dontCheck super.notcpp; - ntp-control = dontCheck super.ntp-control; odpic-raw = dontCheck super.odpic-raw; # needs a running oracle database server opaleye = dontCheck super.opaleye; openpgp = dontCheck super.openpgp; - optional = dontCheck super.optional; - orgmode-parse = dontCheck super.orgmode-parse; os-release = dontCheck super.os-release; parameterized = dontCheck super.parameterized; # https://github.com/louispan/parameterized/issues/2 persistent-redis = dontCheck super.persistent-redis; - pipes-extra = dontCheck super.pipes-extra; posix-pty = dontCheck super.posix-pty; # https://github.com/merijn/posix-pty/issues/12 postgresql-binary = dontCheck super.postgresql-binary; # needs a running postgresql server powerdns = dontCheck super.powerdns; # Tests require networking and external services - process-streaming = dontCheck super.process-streaming; - punycode = dontCheck super.punycode; pwstore-cli = dontCheck super.pwstore-cli; quantities = dontCheck super.quantities; redis-io = dontCheck super.redis-io; - rethinkdb = dontCheck super.rethinkdb; - Rlang-QQ = dontCheck super.Rlang-QQ; - sai-shape-syb = dontCheck super.sai-shape-syb; - scp-streams = dontCheck super.scp-streams; sdl2 = dontCheck super.sdl2; # the test suite needs an x server - separated = dontCheck super.separated; shadowsocks = dontCheck super.shadowsocks; - shake-language-c = dontCheck super.shake-language-c; sourcemap = dontCheck super.sourcemap; - static-resources = dontCheck super.static-resources; svndump = dontCheck super.svndump; tar = dontCheck super.tar; # https://hydra.nixos.org/build/25088435/nixlog/2 (fails only on 32-bit) - thumbnail-plus = dontCheck super.thumbnail-plus; - tickle = dontCheck super.tickle; tpdb = dontCheck super.tpdb; - translatable-intset = dontCheck super.translatable-intset; ua-parser = dontCheck super.ua-parser; unagi-chan = dontCheck super.unagi-chan; - WebBits = dontCheck super.WebBits; # http://hydra.cryp.to/build/499604/log/raw - webdriver-angular = dontCheck super.webdriver-angular; xsd = dontCheck super.xsd; # Allow template-haskell 2.22 @@ -1074,16 +981,10 @@ with haskellLib; } super.ixset-typed ); - # https://github.com/eli-frey/cmdtheline/issues/28 - cmdtheline = dontCheck super.cmdtheline; - # https://github.com/bos/snappy/issues/1 # https://github.com/bos/snappy/pull/10 snappy = dontCheck super.snappy; - # https://github.com/vincenthz/hs-crypto-pubkey/issues/20 - crypto-pubkey = dontCheck super.crypto-pubkey; - # https://github.com/joeyadams/haskell-stm-delay/issues/3 stm-delay = dontCheck super.stm-delay; @@ -1095,15 +996,9 @@ with haskellLib; ]; }) super.stm-queue; - # https://github.com/pixbi/duplo/issues/25 - duplo = doJailbreak super.duplo; - # https://github.com/fgaz/dual/pull/3 dual-game = doJailbreak super.dual-game; - # https://github.com/evanrinehart/mikmod/issues/1 - mikmod = addExtraLibrary pkgs.libmikmod super.mikmod; - # Missing module. rematch = dontCheck super.rematch; # https://github.com/tcrayford/rematch/issues/5 rematch-text = dontCheck super.rematch-text; # https://github.com/tcrayford/rematch/issues/6 @@ -1112,46 +1007,18 @@ with haskellLib; # "base" dependency. haddock-cheatsheet = doJailbreak super.haddock-cheatsheet; - # no haddock since this is an umbrella package. - cloud-haskell = dontHaddock super.cloud-haskell; - # This packages compiles 4+ hours on a fast machine. That's just unreasonable. CHXHtml = dontDistribute super.CHXHtml; - # https://github.com/NixOS/nixpkgs/issues/6350 - paypal-adaptive-hoops = overrideCabal (drv: { - testTargets = [ "local" ]; - }) super.paypal-adaptive-hoops; - # Avoid "QuickCheck >=2.3 && <2.10" dependency we cannot fulfill in lts-11.x. test-framework = dontCheck super.test-framework; - # Depends on broken test-framework-quickcheck. - apiary = dontCheck super.apiary; - apiary-authenticate = dontCheck super.apiary-authenticate; - apiary-clientsession = dontCheck super.apiary-clientsession; - apiary-cookie = dontCheck super.apiary-cookie; - apiary-eventsource = dontCheck super.apiary-eventsource; - apiary-logger = dontCheck super.apiary-logger; - apiary-memcached = dontCheck super.apiary-memcached; - apiary-mongoDB = dontCheck super.apiary-mongoDB; - apiary-persistent = dontCheck super.apiary-persistent; - apiary-purescript = dontCheck super.apiary-purescript; - apiary-session = dontCheck super.apiary-session; - apiary-websockets = dontCheck super.apiary-websockets; - - # https://github.com/junjihashimoto/test-sandbox-compose/issues/2 - test-sandbox-compose = dontCheck super.test-sandbox-compose; - # Test suite won't compile against tasty-hunit 0.10.x. binary-parsers = dontCheck super.binary-parsers; # https://github.com/ndmitchell/shake/issues/804 shake = dontCheck super.shake; - # https://github.com/nushio3/doctest-prop/issues/1 - doctest-prop = dontCheck super.doctest-prop; - # Missing file in source distribution: # - https://github.com/karun012/doctest-discover/issues/22 # - https://github.com/karun012/doctest-discover/issues/23 @@ -1175,9 +1042,6 @@ with haskellLib; # https://github.com/nomeata/tasty-expected-failure/issues/21 tasty-expected-failure = dontCheck super.tasty-expected-failure; - # https://github.com/yaccz/saturnin/issues/3 - Saturnin = dontCheck super.Saturnin; - # https://github.com/kkardzis/curlhs/issues/6 curlhs = dontCheck super.curlhs; @@ -1190,39 +1054,11 @@ with haskellLib; "--ghc-option=-DCURL_DISABLE_TYPECHECK" ] super.curl; - # https://github.com/alphaHeavy/lzma-enumerator/issues/3 - lzma-enumerator = dontCheck super.lzma-enumerator; - - # FPCO's fork of Cabal won't succeed its test suite. - Cabal-ide-backend = dontCheck super.Cabal-ide-backend; - # This package can't be built on non-Windows systems. Win32 = overrideCabal (drv: { broken = !pkgs.stdenv.hostPlatform.isCygwin; }) super.Win32; inline-c-win32 = dontDistribute super.inline-c-win32; Southpaw = dontDistribute super.Southpaw; - # https://ghc.haskell.org/trac/ghc/ticket/9825 - vimus = overrideCabal (drv: { - broken = pkgs.stdenv.hostPlatform.isLinux && pkgs.stdenv.hostPlatform.isi686; - }) super.vimus; - - # https://github.com/kazu-yamamoto/logger/issues/42 - logger = dontCheck super.logger; - - # Byte-compile elisp code for Emacs. - ghc-mod = overrideCabal (drv: { - preCheck = "export HOME=$TMPDIR"; - testToolDepends = drv.testToolDepends or [ ] ++ [ self.cabal-install ]; - doCheck = false; # https://github.com/kazu-yamamoto/ghc-mod/issues/335 - executableToolDepends = drv.executableToolDepends or [ ] ++ [ pkgs.buildPackages.emacs ]; - postInstall = '' - local lispdir=( "$data/share/${self.ghc.targetPrefix}${self.ghc.haskellCompilerName}/*/${drv.pname}-${drv.version}/elisp" ) - make -C $lispdir - mkdir -p $data/share/emacs/site-lisp - ln -s "$lispdir/"*.el{,c} $data/share/emacs/site-lisp/ - ''; - }) super.ghc-mod; - # 2022-03-19: Testsuite is failing: https://github.com/puffnfresh/haskell-jwt/issues/2 jwt = dontCheck super.jwt; @@ -1272,27 +1108,6 @@ with haskellLib; # 2024-03-10: Getting the test suite to run requires a correctly crafted GHC_ENVIRONMENT variable. graphql-client = dontCheck super.graphql-client; - # Build the latest git version instead of the official release. This isn't - # ideal, but Chris doesn't seem to make official releases any more. - structured-haskell-mode = overrideCabal (drv: { - src = pkgs.fetchFromGitHub { - owner = "projectional-haskell"; - repo = "structured-haskell-mode"; - rev = "7f9df73f45d107017c18ce4835bbc190dfe6782e"; - sha256 = "1jcc30048j369jgsbbmkb63whs4wb37bq21jrm3r6ry22izndsqa"; - }; - version = "20170205-git"; - editedCabalFile = null; - # Make elisp files available at a location where people expect it. We - # cannot easily byte-compile these files, unfortunately, because they - # depend on a new version of haskell-mode that we don't have yet. - postInstall = '' - local lispdir=( "$data/share/${self.ghc.targetPrefix}${self.ghc.haskellCompilerName}/"*"/${drv.pname}-"*"/elisp" ) - mkdir -p $data/share/emacs - ln -s $lispdir $data/share/emacs/site-lisp - ''; - }) super.structured-haskell-mode; - # Make elisp files available at a location where people expect it. hindent = ( overrideCabal (drv: { @@ -1309,9 +1124,6 @@ with haskellLib; # https://github.com/basvandijk/concurrent-extra/issues/12 concurrent-extra = dontCheck super.concurrent-extra; - # https://github.com/pxqr/base32-bytestring/issues/4 - base32-bytestring = dontCheck super.base32-bytestring; - # Too strict bounds on bytestring (<0.12) on the test suite # https://github.com/emilypi/Base32/issues/24 base32 = doJailbreak super.base32; @@ -1328,35 +1140,6 @@ with haskellLib; }; } super.djinn; - # https://github.com/Philonous/hs-stun/pull/1 - # Remove if a version > 0.1.0.1 ever gets released. - stunclient = overrideCabal (drv: { - postPatch = (drv.postPatch or "") + '' - substituteInPlace source/Network/Stun/MappedAddress.hs --replace "import Network.Endian" "" - ''; - }) super.stunclient; - - d-bus = - let - # The latest release on hackage is missing necessary patches for recent compilers - # https://github.com/Philonous/d-bus/issues/24 - newer = overrideSrc { - version = "unstable-2021-01-08"; - src = pkgs.fetchFromGitHub { - owner = "Philonous"; - repo = "d-bus"; - rev = "fb8a948a3b9d51db618454328dbe18fb1f313c70"; - hash = "sha256-R7/+okb6t9DAkPVUV70QdYJW8vRcvBdz4zKJT13jb3A="; - }; - } super.d-bus; - # Add now required extension on recent compilers. - # https://github.com/Philonous/d-bus/pull/23 - in - appendPatch (fetchpatch { - url = "https://github.com/Philonous/d-bus/commit/e5f37900a3a301c41d98bdaa134754894c705681.patch"; - sha256 = "6rQ7H9t483sJe1x95yLPAZ0BKTaRjgqQvvrQv7HkJRE="; - }) newer; - # * The standard libraries are compiled separately. # * We need a few patches from master to fix compilation with # updated dependencies which can be @@ -1522,12 +1305,6 @@ with haskellLib; # The test suite runs for 20+ minutes on a very fast machine, which feels kinda disproportionate. prettyprinter = dontCheck super.prettyprinter; - # Fix with Cabal 2.2, https://github.com/guillaume-nargeot/hpc-coveralls/pull/73 - hpc-coveralls = appendPatch (fetchpatch { - url = "https://github.com/guillaume-nargeot/hpc-coveralls/pull/73/commits/344217f513b7adfb9037f73026f5d928be98d07f.patch"; - sha256 = "056rk58v9h114mjx62f41x971xn9p3nhsazcf9zrcyxh1ymrdm8j"; - }) super.hpc-coveralls; - # sexpr is old, broken and has no issue-tracker. Let's fix it the best we can. sexpr = appendPatch ./patches/sexpr-0.2.1.patch ( overrideCabal (drv: { @@ -1536,9 +1313,6 @@ with haskellLib; }) super.sexpr ); - # https://github.com/haskell/hoopl/issues/50 - hoopl = dontCheck super.hoopl; - # TODO(Profpatsch): factor out local nix store setup from # lib/tests/release.nix and use that for the tests of libnix # libnix = overrideCabal (old: { @@ -1552,9 +1326,6 @@ with haskellLib; # 2025-02-10: Too strict bounds on aeson < 1.5 json-alt = doJailbreak super.json-alt; - # https://github.com/mgajda/json-autotype/issues/25 - json-autotype = dontCheck super.json-autotype; - postgresql-simple-migration = overrideCabal (drv: { preCheck = '' PGUSER=test @@ -1577,11 +1348,6 @@ with haskellLib; (dontCheckIf (!pkgs.postgresql.doInstallCheck || !self.testcontainers.doCheck)) ]; - users-postgresql-simple = addTestToolDepends [ - pkgs.postgresql - pkgs.postgresqlTestHook - ] super.users-postgresql-simple; - gargoyle-postgresql-nix = addBuildTool [ pkgs.postgresql ] super.gargoyle-postgresql-nix; # PortMidi needs an environment variable to have ALSA find its plugins: @@ -1638,7 +1404,6 @@ with haskellLib; (dontCheckIf (pkgs.postgresqlTestHook.meta.broken) super.esqueleto); # Requires API keys to run tests - algolia = dontCheck super.algolia; openai-hs = dontCheck super.openai-hs; # antiope-s3's latest stackage version has a hspec < 2.6 requirement, but @@ -1664,9 +1429,6 @@ with haskellLib; # https://github.com/kazu-yamamoto/dns/issues/150 dns = dontCheck super.dns; - # https://github.com/haskell-servant/servant-ekg/issues/15 - servant-ekg = doJailbreak super.servant-ekg; - # it wants to build a statically linked binary by default hledger-flow = overrideCabal (drv: { postPatch = (drv.postPatch or "") + '' @@ -1815,12 +1577,6 @@ with haskellLib; ascii-predicates = doJailbreak super.ascii-predicates; ascii-numbers = doJailbreak super.ascii-numbers; - # Upstream PR: https://github.com/jkff/splot/pull/9 - splot = appendPatch (fetchpatch { - url = "https://github.com/jkff/splot/commit/a6710b05470d25cb5373481cf1cfc1febd686407.patch"; - sha256 = "1c5ck2ibag2gcyag6rjivmlwdlp5k0dmr8nhk7wlkzq2vh7zgw63"; - }) super.splot; - # Support ansi-terminal 1.1: https://github.com/facebookincubator/retrie/pull/73 retrie = appendPatch (fetchpatch { url = "https://github.com/facebookincubator/retrie/commit/b0df07178133b5b049e3e7764acba0e5e3fa57af.patch"; @@ -1931,14 +1687,6 @@ with haskellLib; ]) ]; - # Raise version bounds: https://github.com/idontgetoutmuch/binary-low-level/pull/16 - binary-strict = appendPatches [ - (fetchpatch { - url = "https://github.com/idontgetoutmuch/binary-low-level/pull/16/commits/c16d06a1f274559be0dea0b1f7497753e1b1a8ae.patch"; - sha256 = "sha256-deSbudy+2je1SWapirWZ1IVWtJ0sJVR5O/fnaAaib2g="; - }) - ] super.binary-strict; - # The tests for semver-range need to be updated for the MonadFail change in # ghc-8.8: # https://github.com/adnelson/semver-range/issues/15 @@ -2077,10 +1825,6 @@ with haskellLib; # https://github.com/noinia/hgeometry/commit/a6abecb1ce4a7fd96b25cc1a5c65cd4257ecde7a#commitcomment-49282301 hgeometry-combinatorial = dontCheck (doJailbreak super.hgeometry-combinatorial); - # Too strict bounds on containers - # https://github.com/jswebtools/language-ecmascript-analysis/issues/1 - language-ecmascript-analysis = doJailbreak super.language-ecmascript-analysis; - cli-git = addBuildTool pkgs.git super.cli-git; cli-nix = addBuildTools [ @@ -2123,10 +1867,6 @@ with haskellLib; ihaskell-display = doJailbreak super.ihaskell-display; ihaskell-basic = doJailbreak super.ihaskell-basic; - # Tests need to lookup target triple x86_64-unknown-linux - # https://github.com/llvm-hs/llvm-hs/issues/334 - llvm-hs = dontCheckIf (pkgs.stdenv.targetPlatform.system != "x86_64-linux") super.llvm-hs; - # Fix build with bytestring >= 0.11 (GHC 9.2) # https://github.com/llvm-hs/llvm-hs/pull/389 llvm-hs-pure = @@ -2297,16 +2037,6 @@ with haskellLib; }) super.aeson-casing ); - # https://github.com/emc2/HUnit-Plus/issues/26 - HUnit-Plus = dontCheck super.HUnit-Plus; - # https://github.com/ewestern/haskell-postgis/issues/7 - haskell-postgis = overrideCabal (drv: { - testFlags = [ - "--skip" - "/Geo/Hexable/Encodes a linestring/" - ] - ++ drv.testFlags or [ ]; - }) super.haskell-postgis; # https://github.com/ChrisPenner/json-to-haskell/issues/5 json-to-haskell = overrideCabal (drv: { testFlags = [ @@ -2335,14 +2065,6 @@ with haskellLib; ] ++ drv.testFlags or [ ]; }) super.dropbox; - # https://github.com/alonsodomin/haskell-schema/issues/11 - hschema-aeson = overrideCabal (drv: { - testFlags = [ - "--skip" - "/toJsonSerializer/should generate valid JSON/" - ] - ++ drv.testFlags or [ ]; - }) super.hschema-aeson; # https://github.com/minio/minio-hs/issues/165 # https://github.com/minio/minio-hs/pull/191 Use crypton-connection instead of unmaintained connection minio-hs = overrideCabal (drv: { @@ -2516,22 +2238,6 @@ with haskellLib; # Unmaintained records-sop = doJailbreak super.records-sop; - # Fix build failures for ghc 9 (https://github.com/mokus0/polynomial/pull/20) - polynomial = - appendPatch - (fetchpatch { - name = "haskell-polynomial.20.patch"; - url = "https://github.com/mokus0/polynomial/pull/20.diff"; - sha256 = "1bwivimpi2hiil3zdnl5qkds1inyn239wgxbn3y8l2pwyppnnfl0"; - }) - ( - overrideCabal (drv: { - revision = null; - editedCabalFile = null; - doCheck = false; # Source dist doesn't include the checks - }) super.polynomial - ); - # lucid-htmx has restrictive upper bounds on lucid and servant: # # Setup: Encountered missing or private dependencies: @@ -3639,7 +3345,6 @@ with haskellLib; "amazonka-healthlake" "amazonka-honeycode" "amazonka-iam" - "amazonka-iam-policy" "amazonka-identitystore" "amazonka-imagebuilder" "amazonka-importexport" diff --git a/pkgs/development/haskell-modules/configuration-darwin.nix b/pkgs/development/haskell-modules/configuration-darwin.nix index 5967401419b17..44bcb5a839280 100644 --- a/pkgs/development/haskell-modules/configuration-darwin.nix +++ b/pkgs/development/haskell-modules/configuration-darwin.nix @@ -116,19 +116,6 @@ self: super: # https://github.com/fpco/haskell-filesystem/issues/37 system-fileio = dontCheck super.system-fileio; - llvm-hs = overrideCabal (oldAttrs: { - # One test fails on darwin. - doCheck = false; - # llvm-hs's Setup.hs file tries to add the lib/ directory from LLVM8 to - # the DYLD_LIBRARY_PATH environment variable. This messes up clang - # when called from GHC, probably because clang is version 7, but we are - # using LLVM8. - preCompileBuildDriver = '' - substituteInPlace Setup.hs --replace "addToLdLibraryPath libDir" "pure ()" - '' - + (oldAttrs.preCompileBuildDriver or ""); - }) super.llvm-hs; - sym = markBroken super.sym; yesod-core = super.yesod-core.overrideAttrs (drv: { @@ -170,14 +157,6 @@ self: super: + (drv.postPatch or ""); }) super.HTF; - # conditional dependency via a cabal flag - cas-store = overrideCabal (drv: { - libraryHaskellDepends = [ - self.kqueue - ] - ++ (drv.libraryHaskellDepends or [ ]); - }) super.cas-store; - # We are lacking pure pgrep at the moment for tests to work tmp-postgres = dontCheck super.tmp-postgres; diff --git a/pkgs/development/haskell-modules/configuration-hackage2nix/broken.yaml b/pkgs/development/haskell-modules/configuration-hackage2nix/broken.yaml index b6e6c7f303df7..ec5db070a3707 100644 --- a/pkgs/development/haskell-modules/configuration-hackage2nix/broken.yaml +++ b/pkgs/development/haskell-modules/configuration-hackage2nix/broken.yaml @@ -1,934 +1,266 @@ # These packages don't compile. broken-packages: - 2captcha # failure in job https://hydra.nixos.org/build/233233765 at 2023-09-02 - - 3d-graphics-examples # failure in job https://hydra.nixos.org/build/234454565 at 2023-09-13 - - 3dmodels # failure in job https://hydra.nixos.org/build/233220850 at 2023-09-02 - - AAI # failure in job https://hydra.nixos.org/build/233258828 at 2023-09-02 - aasam # failure in job https://hydra.nixos.org/build/233216423 at 2023-09-02 - - abacate # failure in job https://hydra.nixos.org/build/233201225 at 2023-09-02 - - abcnotation # failure in job https://hydra.nixos.org/build/233204259 at 2023-09-02 - - abeson # failure in job https://hydra.nixos.org/build/233210579 at 2023-09-02 - - abides # failure in job https://hydra.nixos.org/build/233260056 at 2023-09-02 - - abnf # failure in job https://hydra.nixos.org/build/233238839 at 2023-09-02 - - AbortT-transformers # failure in job https://hydra.nixos.org/build/233210345 at 2023-09-02 - - abstract-par-accelerate # failure in job https://hydra.nixos.org/build/296049870 at 2025-05-02 - - abt # failure in job https://hydra.nixos.org/build/233201301 at 2023-09-02 - - AC-BuildPlatform # failure in job https://hydra.nixos.org/build/233219130 at 2023-09-02 - - AC-EasyRaster-GTK # failure in job https://hydra.nixos.org/build/233226232 at 2023-09-02 - - AC-HalfInteger # failure in job https://hydra.nixos.org/build/233239266 at 2023-09-02 - ac-library-hs # failure in job https://hydra.nixos.org/build/302800699 at 2025-07-27 - - ac-machine # failure in job https://hydra.nixos.org/build/233253535 at 2023-09-02 - - AC-MiniTest # failure in job https://hydra.nixos.org/build/233216015 at 2023-09-02 - - AC-Terminal # failure in job https://hydra.nixos.org/build/233192747 at 2023-09-02 - - AC-VanillaArray # failure in job https://hydra.nixos.org/build/233216801 at 2023-09-02 - - accelerate-fftw # failure in job https://hydra.nixos.org/build/296049868 at 2025-05-02 - - accelerate-random # failure in job https://hydra.nixos.org/build/296049869 at 2025-05-02 - - accelerate-utility # failure in job https://hydra.nixos.org/build/296049871 at 2025-05-02 - - accentuateus # failure in job https://hydra.nixos.org/build/233253627 at 2023-09-02 - - access-time # failure in job https://hydra.nixos.org/build/233246051 at 2023-09-02 - - accuerr # failure in job https://hydra.nixos.org/build/233220965 at 2023-09-02 - achille # failure in job https://hydra.nixos.org/build/233236118 at 2023-09-02 - - acid-state-dist # failure in job https://hydra.nixos.org/build/233216067 at 2023-09-02 - - acid-state-tls # failure in job https://hydra.nixos.org/build/233211210 at 2023-09-02 - ACME # failure in job https://hydra.nixos.org/build/233229388 at 2023-09-02 - - acme-all-monad # failure in job https://hydra.nixos.org/build/233197817 at 2023-09-02 - - acme-comonad # failure in job https://hydra.nixos.org/build/233249166 at 2023-09-02 - - acme-dont # failure in job https://hydra.nixos.org/build/233226392 at 2023-09-02 - - acme-flipping-tables # failure in job https://hydra.nixos.org/build/233222456 at 2023-09-02 - - acme-hq9plus # failure in job https://hydra.nixos.org/build/233248868 at 2023-09-02 - - acme-http # failure in job https://hydra.nixos.org/build/233203112 at 2023-09-02 - - acme-inator # failure in job https://hydra.nixos.org/build/233211599 at 2023-09-02 - - acme-io # failure in job https://hydra.nixos.org/build/233224872 at 2023-09-02 - - acme-kitchen-sink # failure in job https://hydra.nixos.org/build/233222038 at 2023-09-02 - - acme-left-pad # failure in job https://hydra.nixos.org/build/233197685 at 2023-09-02 - - acme-memorandom # failure in job https://hydra.nixos.org/build/233222926 at 2023-09-02 - - acme-miscorder # failure in job https://hydra.nixos.org/build/233209957 at 2023-09-02 - - acme-mutable-package # failure in job https://hydra.nixos.org/build/233213349 at 2023-09-02 - acme-not-a-joke # failure in job https://hydra.nixos.org/build/259604911 at 2024-05-15 - - acme-now # failure in job https://hydra.nixos.org/build/233243289 at 2023-09-02 - - acme-numbersystem # failure in job https://hydra.nixos.org/build/233208106 at 2023-09-02 - - acme-operators # failure in job https://hydra.nixos.org/build/233248282 at 2023-09-02 - - acme-schoenfinkel # failure in job https://hydra.nixos.org/build/233231988 at 2023-09-02 - - acme-strfry # failure in job https://hydra.nixos.org/build/233242092 at 2023-09-02 - - acme-stringly-typed # failure in job https://hydra.nixos.org/build/233192651 at 2023-09-02 - - acme-strtok # failure in job https://hydra.nixos.org/build/252719190 at 2024-03-16 - - acme-this # failure in job https://hydra.nixos.org/build/233230930 at 2023-09-02 - - acme-zalgo # failure in job https://hydra.nixos.org/build/233216155 at 2023-09-02 - - acme-zero # failure in job https://hydra.nixos.org/build/233192937 at 2023-09-02 - - acousticbrainz-client # failure in job https://hydra.nixos.org/build/233192638 at 2023-09-02 - - ActionKid # failure in job https://hydra.nixos.org/build/234443624 at 2023-09-13 - - activehs-base # failure in job https://hydra.nixos.org/build/233254736 at 2023-09-02 - - activitypub # failure in job https://hydra.nixos.org/build/233253119 at 2023-09-02 - - activitystreams-aeson # failure in job https://hydra.nixos.org/build/233222522 at 2023-09-02 - - Adaptive # failure in job https://hydra.nixos.org/build/233217421 at 2023-09-02 - - Adaptive-Blaisorblade # failure in job https://hydra.nixos.org/build/233229679 at 2023-09-02 - - adaptive-containers # failure in job https://hydra.nixos.org/build/233243181 at 2023-09-02 - - adaptive-tuple # failure in job https://hydra.nixos.org/build/233244881 at 2023-09-02 - - adb # failure in job https://hydra.nixos.org/build/233193888 at 2023-09-02 - addy # failure in job https://hydra.nixos.org/build/233240594 at 2023-09-02 - adhoc-fixtures-hspec # failure in job https://hydra.nixos.org/build/252725981 at 2024-03-16 - - adjunction # failure in job https://hydra.nixos.org/build/233237774 at 2023-09-02 - - adobe-swatch-exchange # failure in job https://hydra.nixos.org/build/233255779 at 2023-09-02 - - adp-multi # failure in job https://hydra.nixos.org/build/233256331 at 2023-09-02 - - adtrees # failure in job https://hydra.nixos.org/build/233192320 at 2023-09-02 - - AERN-Basics # failure in job https://hydra.nixos.org/build/233246999 at 2023-09-02 - - aeson-applicative # failure in job https://hydra.nixos.org/build/233213824 at 2023-09-02 - - aeson-bson # failure in job https://hydra.nixos.org/build/233201964 at 2023-09-02 - aeson-commit # failure in job https://hydra.nixos.org/build/233198515 at 2023-09-02 - aeson-compat # failure in job https://hydra.nixos.org/build/233208257 at 2023-09-02 - aeson-decode # failure in job https://hydra.nixos.org/build/233251197 at 2023-09-02 - - aeson-default # failure in job https://hydra.nixos.org/build/233203427 at 2023-09-02 - aeson-dependent-sum # failure in job https://hydra.nixos.org/build/233223384 at 2023-09-02 - aeson-deriving # failure in job https://hydra.nixos.org/build/233247857 at 2023-09-02 - - aeson-diff-generic # failure in job https://hydra.nixos.org/build/233213146 at 2023-09-02 - - aeson-filthy # failure in job https://hydra.nixos.org/build/233198472 at 2023-09-02 - - aeson-flat # failure in job https://hydra.nixos.org/build/233220787 at 2023-09-02 - - aeson-flatten # failure in job https://hydra.nixos.org/build/233242954 at 2023-09-02 - aeson-flowtyped # failure in job https://hydra.nixos.org/build/233245878 at 2023-09-02 - aeson-generics-typescript # failure in job https://hydra.nixos.org/build/245703304 at 2024-01-07 - aeson-injector # failure in job https://hydra.nixos.org/build/233200351 at 2023-09-02 - aeson-iproute # failure in job https://hydra.nixos.org/build/295091261 at 2025-04-22 - - aeson-json-ast # failure in job https://hydra.nixos.org/build/233249406 at 2023-09-02 - - aeson-lens # failure in job https://hydra.nixos.org/build/233235357 at 2023-09-02 - aeson-match-qq # failure in job https://hydra.nixos.org/build/295091245 at 2025-04-22 - aeson-modern-tojson # failure in job https://hydra.nixos.org/build/233202149 at 2023-09-02 - - aeson-options # failure in job https://hydra.nixos.org/build/233245051 at 2023-09-02 - - aeson-parsec-picky # failure in job https://hydra.nixos.org/build/233222117 at 2023-09-02 - aeson-picker # failure in job https://hydra.nixos.org/build/295091281 at 2025-04-22 - - aeson-prefix # failure in job https://hydra.nixos.org/build/233215656 at 2023-09-02 - - aeson-schema # failure in job https://hydra.nixos.org/build/233229960 at 2023-09-02 - aeson-single-field # failure in job https://hydra.nixos.org/build/233247758 at 2023-09-02 - - aeson-smart # failure in job https://hydra.nixos.org/build/233197032 at 2023-09-02 - - aeson-streams # failure in job https://hydra.nixos.org/build/233191057 at 2023-09-02 - - aeson-t # failure in job https://hydra.nixos.org/build/233243634 at 2023-09-02 - - aeson-toolkit # failure in job https://hydra.nixos.org/build/233248208 at 2023-09-02 - - aeson-utils # failure in job https://hydra.nixos.org/build/233238768 at 2023-09-02 - aeson-with # failure in job https://hydra.nixos.org/build/233206342 at 2023-09-02 - - affection # failure in job https://hydra.nixos.org/build/233213076 at 2023-09-02 - - affine-invariant-ensemble-mcmc # failure in job https://hydra.nixos.org/build/233237176 at 2023-09-02 - - ag-pictgen # failure in job https://hydra.nixos.org/build/233252615 at 2023-09-02 - - Agata # failure in job https://hydra.nixos.org/build/233221026 at 2023-09-02 - - Agda-executable # failure in job https://hydra.nixos.org/build/233332629 at 2023-09-02 - agda-language-server # failure in job https://hydra.nixos.org/build/233332694 at 2023-09-02 - - agda-snippets # failure in job https://hydra.nixos.org/build/233332749 at 2023-09-02 - agda-unused # failure in job https://hydra.nixos.org/build/233332657 at 2023-09-02 - agda2train # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/239247619 at 2023-11-10 - - AGI # failure in job https://hydra.nixos.org/build/233211491 at 2023-09-02 - AhoCorasick # failure in job https://hydra.nixos.org/build/233204899 at 2023-09-02 - - aig # failure in job https://hydra.nixos.org/build/233199755 at 2023-09-02 - aip-version # failure in job https://hydra.nixos.org/build/267985101 at 2024-07-31 - - air-extra # failure in job https://hydra.nixos.org/build/233250519 at 2023-09-02 - - air-th # failure in job https://hydra.nixos.org/build/233228206 at 2023-09-02 - - airbrake # failure in job https://hydra.nixos.org/build/233199319 at 2023-09-02 - airship # failure in job https://hydra.nixos.org/build/233239011 at 2023-09-02 - - airtable-api # failure in job https://hydra.nixos.org/build/233228482 at 2023-09-02 - - ajhc # failure in job https://hydra.nixos.org/build/233197894 at 2023-09-02 - - al # failure in job https://hydra.nixos.org/build/252733710 at 2024-03-16 - - AlanDeniseEricLauren # failure in job https://hydra.nixos.org/build/233235486 at 2023-09-02 - - alerta # failure in job https://hydra.nixos.org/build/233203379 at 2023-09-02 - - alerts # failure in job https://hydra.nixos.org/build/233251101 at 2023-09-02 - - alex-prelude # failure in job https://hydra.nixos.org/build/233238387 at 2023-09-02 - - alfred # failure in job https://hydra.nixos.org/build/233227316 at 2023-09-02 - - alga # failure in job https://hydra.nixos.org/build/233252723 at 2023-09-02 - - algebra-dag # failure in job https://hydra.nixos.org/build/233191945 at 2023-09-02 - - algebraic # failure in job https://hydra.nixos.org/build/296049876 at 2025-05-02 - - algebraic-classes # failure in job https://hydra.nixos.org/build/233246872 at 2023-09-02 - - algebraic-prelude # failure in job https://hydra.nixos.org/build/233197561 at 2023-09-02 - - algo-s # failure in job https://hydra.nixos.org/build/233221988 at 2023-09-02 - - AlgorithmW # failure in job https://hydra.nixos.org/build/233245254 at 2023-09-02 + - algebra-checkers # previously transitively broken at 2025-09-08 - align-affine # failure in job https://hydra.nixos.org/build/233230079 at 2023-09-02 - align-equal # failure in job https://hydra.nixos.org/build/295091309 at 2025-04-22 - - align-text # failure in job https://hydra.nixos.org/build/233215779 at 2023-09-02 - allen # failure in job https://hydra.nixos.org/build/252715705 at 2024-03-16 - - alloy # failure in job https://hydra.nixos.org/build/252726555 at 2024-03-16 - - ally-invest # failure in job https://hydra.nixos.org/build/233236224 at 2023-09-02 - alpaca-netcode # failure in job https://hydra.nixos.org/build/233239392 at 2023-09-02 - alphachar # failure in job https://hydra.nixos.org/build/252722667 at 2024-03-16 - - alpino-tools # failure in job https://hydra.nixos.org/build/233236168 at 2023-09-02 - - alsa # failure in job https://hydra.nixos.org/build/233250059 at 2023-09-02 - - alsa-midi # failure in job https://hydra.nixos.org/build/233245836 at 2023-09-02 - - altcomposition # failure in job https://hydra.nixos.org/build/233203544 at 2023-09-02 - - alternative-extra # failure in job https://hydra.nixos.org/build/233222901 at 2023-09-02 - - alternative-io # failure in job https://hydra.nixos.org/build/233259524 at 2023-09-02 - - altfloat # failure in job https://hydra.nixos.org/build/233197874 at 2023-09-02 - - alure # failure in job https://hydra.nixos.org/build/233230238 at 2023-09-02 - - amazon-emailer # failure in job https://hydra.nixos.org/build/233220018 at 2023-09-02 - - amazon-products # failure in job https://hydra.nixos.org/build/233193877 at 2023-09-02 - amazonka-contrib-rds-utils # failure building library in job https://hydra.nixos.org/build/237240275 at 2023-10-21 - amazonka-dynamodb # failure in job https://hydra.nixos.org/build/295091412 at 2025-04-22 - amazonka-dynamodb-streams # failure in job https://hydra.nixos.org/build/295091422 at 2025-04-22 - - amazonka-iam-policy # failure in job https://hydra.nixos.org/build/233233098 at 2023-09-02 - amazonka-mtl # failure in job https://hydra.nixos.org/build/295091544 at 2025-04-22 - amazonka-s3-encryption # failure in job https://hydra.nixos.org/build/295091601 at 2025-04-22 - - AMI # failure in job https://hydra.nixos.org/build/233232505 at 2023-09-02 - - amqp-conduit # failure in job https://hydra.nixos.org/build/233228080 at 2023-09-02 - amqp-streamly # failure in job https://hydra.nixos.org/build/295091669 at 2025-04-22 - amqp-worker # failure in job https://hydra.nixos.org/build/236675859 at 2023-10-04 - - amrun # failure in job https://hydra.nixos.org/build/295091655 at 2025-04-22 - - analyze # failure in job https://hydra.nixos.org/build/233251441 at 2023-09-02 - - anansi # failure in job https://hydra.nixos.org/build/273451545 at 2024-10-01 - - anansi-pandoc # failure in job https://hydra.nixos.org/build/233252389 at 2023-09-02 - - android # failure in job https://hydra.nixos.org/build/233222148 at 2023-09-02 - android-activity # failure in job https://hydra.nixos.org/build/233203400 at 2023-09-02 - - android-lint-summary # failure in job https://hydra.nixos.org/build/233194598 at 2023-09-02 - - angel # failure in job https://hydra.nixos.org/build/233191548 at 2023-09-02 - - angle # failure in job https://hydra.nixos.org/build/233203144 at 2023-09-02 - - animalcase # failure in job https://hydra.nixos.org/build/233191888 at 2023-09-02 - - Animas # failure in job https://hydra.nixos.org/build/233256636 at 2023-09-02 - - animascii # failure in job https://hydra.nixos.org/build/233211290 at 2023-09-02 - - animate # failure in job https://hydra.nixos.org/build/233243661 at 2023-09-02 - anitomata-aseprite # failure in job https://hydra.nixos.org/build/255675501 at 2024-04-16 - - anki-tools # failure in job https://hydra.nixos.org/build/233205129 at 2023-09-02 - - annotated-fix # failure in job https://hydra.nixos.org/build/233241215 at 2023-09-02 - - anonymous-sums # failure in job https://hydra.nixos.org/build/233222773 at 2023-09-02 - ansi-pretty # failure in job https://hydra.nixos.org/build/233204335 at 2023-09-02 - - antfarm # failure in job https://hydra.nixos.org/build/233225661 at 2023-09-02 - - antigate # failure in job https://hydra.nixos.org/build/233194081 at 2023-09-02 - - antimirov # failure in job https://hydra.nixos.org/build/233210987 at 2023-09-02 - antiope-athena # failure building library in job https://hydra.nixos.org/build/237246022 at 2023-10-21 + - antiope-core # previously transitively broken at 2025-09-08 - antiope-es # failure building library in job https://hydra.nixos.org/build/237237240 at 2023-10-21 - antiope-messages # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/237239158 at 2023-10-21 - antiope-optparse-applicative # failure in job https://hydra.nixos.org/build/237235649 at 2023-10-21 - antiope-sns # failure in job https://hydra.nixos.org/build/237241347 at 2023-10-21 - antiope-sqs # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/237241846 at 2023-10-21 - - antiope-swf # failure in job https://hydra.nixos.org/build/233206369 at 2023-09-02 - - antiquoter # failure in job https://hydra.nixos.org/build/233221962 at 2023-09-02 - - antisplice # failure in job https://hydra.nixos.org/build/233238144 at 2023-09-02 - antlr-haskell # failure in job https://hydra.nixos.org/build/233208196 at 2023-09-02 - - anydbm # failure in job https://hydra.nixos.org/build/233195447 at 2023-09-02 - - Aoide # failure in job https://hydra.nixos.org/build/233239286 at 2023-09-02 - aop-prelude # failure in job https://hydra.nixos.org/build/295091671 at 2025-04-22 - - aosd # failure in job https://hydra.nixos.org/build/233207331 at 2023-09-02 - - apache-md5 # failure in job https://hydra.nixos.org/build/233193946 at 2023-09-02 - - apart # failure in job https://hydra.nixos.org/build/233219668 at 2023-09-02 - - api-builder # failure in job https://hydra.nixos.org/build/233205755 at 2023-09-02 - api-maker # failure in job https://hydra.nixos.org/build/252711269 at 2024-03-16 - - api-rpc-factom # failure in job https://hydra.nixos.org/build/233198474 at 2023-09-02 + - api-rpc-accumulate # previously transitively broken at 2025-09-08 - api-tools # failure in job https://hydra.nixos.org/build/252720262 at 2024-03-16 - - apns-http2 # failure in job https://hydra.nixos.org/build/233248620 at 2023-09-02 - - app-lens # failure in job https://hydra.nixos.org/build/233193948 at 2023-09-02 - - app-settings # failure in job https://hydra.nixos.org/build/252726841 at 2024-03-16 - - appc # failure in job https://hydra.nixos.org/build/233200853 at 2023-09-02 - appendful-persistent # failure in job https://hydra.nixos.org/build/233249677 at 2023-09-02 - apple # failure in job https://hydra.nixos.org/build/269877626 at 2024-08-19 - - AppleScript # failure in job https://hydra.nixos.org/build/233231626 at 2023-09-02 - - applicative-fail # failure in job https://hydra.nixos.org/build/233237624 at 2023-09-02 - - applicative-parsec # failure in job https://hydra.nixos.org/build/233221615 at 2023-09-02 - - applicative-quoters # failure in job https://hydra.nixos.org/build/233191023 at 2023-09-02 - - applicative-splice # failure in job https://hydra.nixos.org/build/233202183 at 2023-09-02 - apply-unordered # failure in job https://hydra.nixos.org/build/233238590 at 2023-09-02 - - approveapi # failure in job https://hydra.nixos.org/build/233197597 at 2023-09-02 - approx # failure in job https://hydra.nixos.org/build/233236548 at 2023-09-02 - - ApproxFun-hs # failure in job https://hydra.nixos.org/build/233247678 at 2023-09-02 - - arb-fft # failure in job https://hydra.nixos.org/build/233201190 at 2023-09-02 - - arbb-vm # failure in job https://hydra.nixos.org/build/233252062 at 2023-09-02 - - arbor-lru-cache # failure in job https://hydra.nixos.org/build/233204554 at 2023-09-02 - - arbor-monad-counter # failure in job https://hydra.nixos.org/build/233220436 at 2023-09-02 - - arbor-monad-logger # failure in job https://hydra.nixos.org/build/233228659 at 2023-09-02 - - arbor-monad-metric # failure in job https://hydra.nixos.org/build/233236175 at 2023-09-02 - arbor-postgres # failure in job https://hydra.nixos.org/build/233232935 at 2023-09-02 - arch-hs # failure in job https://hydra.nixos.org/build/233225768 at 2023-09-02 - - archiver # failure in job https://hydra.nixos.org/build/233245795 at 2023-09-02 - - archlinux # failure in job https://hydra.nixos.org/build/233202430 at 2023-09-02 - - archnews # failure in job https://hydra.nixos.org/build/233192480 at 2023-09-02 - - arena # failure in job https://hydra.nixos.org/build/233252500 at 2023-09-02 - argo # failure in job https://hydra.nixos.org/build/233216252 at 2023-09-02 - - argparser # failure in job https://hydra.nixos.org/build/233222416 at 2023-09-02 - - arguedit # failure in job https://hydra.nixos.org/build/233211367 at 2023-09-02 - - arion # failure in job https://hydra.nixos.org/build/233254120 at 2023-09-02 - - armada # failure in job https://hydra.nixos.org/build/234462335 at 2023-09-13 + - arith-encode # previously transitively broken at 2025-09-08 - armor # failure in job https://hydra.nixos.org/build/233241366 at 2023-09-02 - - arpa # failure in job https://hydra.nixos.org/build/233200212 at 2023-09-02 - - arpack # failure in job https://hydra.nixos.org/build/233240937 at 2023-09-02 - - array-list # failure in job https://hydra.nixos.org/build/233197669 at 2023-09-02 - - array-primops # failure in job https://hydra.nixos.org/build/233191559 at 2023-09-02 - arrayfire # failure in job https://hydra.nixos.org/build/233225004 at 2023-09-02 - - ArrayRef # failure in job https://hydra.nixos.org/build/233196329 at 2023-09-02 - - arrow-improve # failure in job https://hydra.nixos.org/build/233239994 at 2023-09-02 - arrow-list # failure in job https://hydra.nixos.org/build/233249150 at 2023-09-02 - - arrowapply-utils # failure in job https://hydra.nixos.org/build/233192063 at 2023-09-02 - - arrowp # failure in job https://hydra.nixos.org/build/233255376 at 2023-09-02 - - arrowp-qq # failure in job https://hydra.nixos.org/build/233251384 at 2023-09-02 - - ArrowVHDL # failure in job https://hydra.nixos.org/build/233206149 at 2023-09-02 - - artery # failure in job https://hydra.nixos.org/build/233206830 at 2023-09-02 - - artifact # failure in job https://hydra.nixos.org/build/233233300 at 2023-09-02 - - asap # failure in job https://hydra.nixos.org/build/233214968 at 2023-09-02 - - ascii-flatten # failure in job https://hydra.nixos.org/build/233229168 at 2023-09-02 - - ascii-string # failure in job https://hydra.nixos.org/build/233249978 at 2023-09-02 - - ascii-vector-avc # failure in job https://hydra.nixos.org/build/233208533 at 2023-09-02 - - ascii85-conduit # failure in job https://hydra.nixos.org/build/233235427 at 2023-09-02 - ascii85x # failure in job https://hydra.nixos.org/build/302801241 at 2025-07-27 - asciidiagram # failure in job https://hydra.nixos.org/build/233259020 at 2023-09-02 - - asif # failure in job https://hydra.nixos.org/build/233251551 at 2023-09-02 - - asil # failure in job https://hydra.nixos.org/build/233204081 at 2023-09-02 - asn1-ber-syntax # failure in job https://hydra.nixos.org/build/233235772 at 2023-09-02 - - asn1-codec # failure in job https://hydra.nixos.org/build/233217242 at 2023-09-02 - - asn1-data # failure in job https://hydra.nixos.org/build/233252918 at 2023-09-02 - AspectAG # failure in job https://hydra.nixos.org/build/233231125 at 2023-09-02 - - assert # failure in job https://hydra.nixos.org/build/233257692 at 2023-09-02 - - assertions # failure in job https://hydra.nixos.org/build/233215277 at 2023-09-02 - - asset-map # failure in job https://hydra.nixos.org/build/233218566 at 2023-09-02 - assoc-list # failure in job https://hydra.nixos.org/build/233224148 at 2023-09-02 - assoc-listlike # failure in job https://hydra.nixos.org/build/233200483 at 2023-09-02 - - assumpta # failure in job https://hydra.nixos.org/build/233245580 at 2023-09-02 - - assumpta-core # failure in job https://hydra.nixos.org/build/252727584 at 2024-03-16 - ast-monad # failure in job https://hydra.nixos.org/build/233192822 at 2023-09-02 - - astar-monad # failure in job https://hydra.nixos.org/build/252720647 at 2024-03-16 - - astrds # failure in job https://hydra.nixos.org/build/233220701 at 2023-09-02 - astro # failure in job https://hydra.nixos.org/build/233243443 at 2023-09-02 - - async-combinators # failure in job https://hydra.nixos.org/build/233198111 at 2023-09-02 - - async-dejafu # failure in job https://hydra.nixos.org/build/233254234 at 2023-09-02 - - async-manager # failure in job https://hydra.nixos.org/build/233246552 at 2023-09-02 - - async-timer # failure in job https://hydra.nixos.org/build/233200611 at 2023-09-02 - - asynchronous-exceptions # failure in job https://hydra.nixos.org/build/233218419 at 2023-09-02 - aterm # failure in job https://hydra.nixos.org/build/233226675 at 2023-09-02 - atlassian-connect-descriptor # failure in job https://hydra.nixos.org/build/233249503 at 2023-09-02 - - atndapi # failure in job https://hydra.nixos.org/build/233223849 at 2023-09-02 - atom # failure in job https://hydra.nixos.org/build/233193561 at 2023-09-02 - atomic-modify # failure in job https://hydra.nixos.org/build/233220400 at 2023-09-02 - atomic-modify-general # failure in job https://hydra.nixos.org/build/295091770 at 2025-04-22 - - atomic-primops-vector # failure in job https://hydra.nixos.org/build/233228512 at 2023-09-02 - - atomo # failure in job https://hydra.nixos.org/build/233257502 at 2023-09-02 - - ats-format # failure in job https://hydra.nixos.org/build/233254532 at 2023-09-02 - ats-pkg # failure in job https://hydra.nixos.org/build/233232354 at 2023-09-02 - - ats-setup # failure in job https://hydra.nixos.org/build/233240435 at 2023-09-02 - - ats-storable # failure in job https://hydra.nixos.org/build/233242765 at 2023-09-02 - - attempt # failure in job https://hydra.nixos.org/build/233233073 at 2023-09-02 - attenuation # failure in job https://hydra.nixos.org/build/252721241 at 2024-03-16 - - attic-schedule # failure in job https://hydra.nixos.org/build/233249781 at 2023-09-02 - - atto-lisp # failure in job https://hydra.nixos.org/build/233222679 at 2023-09-02 - - AttoBencode # failure in job https://hydra.nixos.org/build/233198079 at 2023-09-02 - - attomail # failure in job https://hydra.nixos.org/build/233225937 at 2023-09-02 - - attoparsec-csv # failure in job https://hydra.nixos.org/build/233245402 at 2023-09-02 - attoparsec-run # failure in job https://hydra.nixos.org/build/295091785 at 2025-04-22 - - attoparsec-text # failure in job https://hydra.nixos.org/build/233227820 at 2023-09-02 - - attoparsec-trans # failure in job https://hydra.nixos.org/build/233203168 at 2023-09-02 - - attosplit # failure in job https://hydra.nixos.org/build/233203118 at 2023-09-02 - - Attrac # failure in job https://hydra.nixos.org/build/234459267 at 2023-09-13 - - augeas # failure in job https://hydra.nixos.org/build/233228677 at 2023-09-02 - - augur # failure in job https://hydra.nixos.org/build/233223910 at 2023-09-02 - aur # failure in job https://hydra.nixos.org/build/233239429 at 2023-09-02 - - aur-api # failure in job https://hydra.nixos.org/build/233237328 at 2023-09-02 - - Aurochs # failure in job https://hydra.nixos.org/build/233244773 at 2023-09-02 - - authenticate-ldap # failure in job https://hydra.nixos.org/build/233216602 at 2023-09-02 - - authinfo-hs # failure in job https://hydra.nixos.org/build/233224767 at 2023-09-02 - - auto # failure in job https://hydra.nixos.org/build/233211088 at 2023-09-02 - auto-split # failure in job https://hydra.nixos.org/build/295091795 at 2025-04-22 - autoapply # failure in job https://hydra.nixos.org/build/295091805 at 2025-04-22 - autodocodec-exact # failure in job https://hydra.nixos.org/build/302801281 at 2025-07-27 - - autom # failure in job https://hydra.nixos.org/build/234461198 at 2023-09-13 - - automata # failure in job https://hydra.nixos.org/build/295091890 at 2025-04-22 - - autonix-deps # failure in job https://hydra.nixos.org/build/233258269 at 2023-09-02 - - autopack # failure in job https://hydra.nixos.org/build/233215025 at 2023-09-02 - - autoproc # failure in job https://hydra.nixos.org/build/252730569 at 2024-03-16 - - avatar-generator # failure in job https://hydra.nixos.org/build/233214253 at 2023-09-02 + - avers # previously transitively broken at 2025-09-08 - aviation-units # failure in job https://hydra.nixos.org/build/233245762 at 2023-09-02 - - avl-static # failure in job https://hydra.nixos.org/build/233199062 at 2023-09-02 - - avr-shake # failure in job https://hydra.nixos.org/build/233223187 at 2023-09-02 - - avro-piper # failure in job https://hydra.nixos.org/build/233197510 at 2023-09-02 - - avwx # failure in job https://hydra.nixos.org/build/233258167 at 2023-09-02 - - awesome-prelude # failure in job https://hydra.nixos.org/build/233232761 at 2023-09-02 - - awesomium-raw # failure in job https://hydra.nixos.org/build/233241036 at 2023-09-02 - aws-academy-grade-exporter # failure in job https://hydra.nixos.org/build/302801316 at 2025-07-27 - aws-cloudfront-signed-cookies # failure in job https://hydra.nixos.org/build/252736035 at 2024-03-16 - - aws-cloudfront-signer # failure in job https://hydra.nixos.org/build/233194723 at 2023-09-02 - aws-easy # failure building library in job https://hydra.nixos.org/build/237244335 at 2023-10-21 - - aws-ec2 # failure in job https://hydra.nixos.org/build/233201556 at 2023-09-02 - - aws-ec2-knownhosts # failure in job https://hydra.nixos.org/build/233237078 at 2023-09-02 - - aws-general # failure in job https://hydra.nixos.org/build/233211106 at 2023-09-02 - aws-lambda-runtime # failure in job https://hydra.nixos.org/build/233195123 at 2023-09-02 - aws-larpi # failure in job https://hydra.nixos.org/build/233246059 at 2023-09-02 - - aws-performance-tests # failure in job https://hydra.nixos.org/build/233259271 at 2023-09-02 - - aws-route53 # failure in job https://hydra.nixos.org/build/233218200 at 2023-09-02 - - aws-sdk-text-converter # failure in job https://hydra.nixos.org/build/233237525 at 2023-09-02 - - aws-ses-easy # failure building library in job https://hydra.nixos.org/build/237249788 at 2023-10-21 - - aws-simple # failure building library in job https://hydra.nixos.org/build/237242730 at 2023-10-21 - awsspendsummary # failure in job https://hydra.nixos.org/build/295091850 at 2025-04-22 - axel # failure in job https://hydra.nixos.org/build/295122804 at 2025-04-22 - aztecs-asset # failure in job https://hydra.nixos.org/build/295091828 at 2025-04-22 - aztecs-hierarchy # failure in job https://hydra.nixos.org/build/295091824 at 2025-04-22 - aztecs-sdl # failure in job https://hydra.nixos.org/build/295091834 at 2025-04-22 - - azubi # failure in job https://hydra.nixos.org/build/233258480 at 2023-09-02 - - azure-acs # failure in job https://hydra.nixos.org/build/233252578 at 2023-09-02 - - azure-email # failure in job https://hydra.nixos.org/build/233255535 at 2023-09-02 - - azurify # failure in job https://hydra.nixos.org/build/233239263 at 2023-09-02 - b-tree # failure in job https://hydra.nixos.org/build/295091832 at 2025-04-22 - - babl # failure in job https://hydra.nixos.org/build/233204665 at 2023-09-02 - babynf # failure in job https://hydra.nixos.org/build/295091858 at 2025-04-22 - - backstop # failure in job https://hydra.nixos.org/build/233223957 at 2023-09-02 - - backtracking-exceptions # failure in job https://hydra.nixos.org/build/233233211 at 2023-09-02 - - backward-state # failure in job https://hydra.nixos.org/build/233196922 at 2023-09-02 - - bag # failure in job https://hydra.nixos.org/build/233250281 at 2023-09-02 - - Baggins # failure in job https://hydra.nixos.org/build/233192786 at 2023-09-02 - - bake # failure in job https://hydra.nixos.org/build/233211889 at 2023-09-02 - - Bang # failure in job https://hydra.nixos.org/build/233226846 at 2023-09-02 - - banwords # failure in job https://hydra.nixos.org/build/233229703 at 2023-09-02 - barbies-th # failure in job https://hydra.nixos.org/build/233251598 at 2023-09-02 - - barchart # failure in job https://hydra.nixos.org/build/233216957 at 2023-09-02 - - barcodes-code128 # failure in job https://hydra.nixos.org/build/233227808 at 2023-09-02 - - barecheck # failure in job https://hydra.nixos.org/build/233231208 at 2023-09-02 - - barrie # failure in job https://hydra.nixos.org/build/233220267 at 2023-09-02 - barrier # failure in job https://hydra.nixos.org/build/233229384 at 2023-09-02 - - barrier-monad # failure in job https://hydra.nixos.org/build/233215823 at 2023-09-02 - - base-compat-migrate # failure in job https://hydra.nixos.org/build/233208966 at 2023-09-02 - base-encoding # failure in job https://hydra.nixos.org/build/233232516 at 2023-09-02 - - base-feature-macros # failure in job https://hydra.nixos.org/build/233212558 at 2023-09-02 - - base-generics # failure in job https://hydra.nixos.org/build/233198530 at 2023-09-02 - - base-io-access # failure in job https://hydra.nixos.org/build/233249224 at 2023-09-02 - base16-lens # failure in job https://hydra.nixos.org/build/233229864 at 2023-09-02 - base32-lens # failure in job https://hydra.nixos.org/build/233226670 at 2023-09-02 - - base58address # failure in job https://hydra.nixos.org/build/233221633 at 2023-09-02 - base62 # failure in job https://hydra.nixos.org/build/233250040 at 2023-09-02 - - base64-conduit # failure in job https://hydra.nixos.org/build/233197196 at 2023-09-02 - base64-lens # failure in job https://hydra.nixos.org/build/233252600 at 2023-09-02 - based # failure in job https://hydra.nixos.org/build/233211900 at 2023-09-02 - basement-cd # failure in job https://hydra.nixos.org/build/233191991 at 2023-09-02 - - basen # failure in job https://hydra.nixos.org/build/233210680 at 2023-09-02 - - basex-client # failure in job https://hydra.nixos.org/build/233214592 at 2023-09-02 - - bash # failure in job https://hydra.nixos.org/build/252719390 at 2024-03-16 - basic-gps # failure in job https://hydra.nixos.org/build/252718385 at 2024-03-16 - basics # failure in job https://hydra.nixos.org/build/236678238 at 2023-10-04 - - baskell # failure in job https://hydra.nixos.org/build/233246705 at 2023-09-02 - - battlenet # failure in job https://hydra.nixos.org/build/233260076 at 2023-09-02 - - battleplace # failure in job https://hydra.nixos.org/build/233230199 at 2023-09-02 - - bazel-coverage-report-renderer # failure in job https://hydra.nixos.org/build/233243746 at 2023-09-02 - bbcode # failure in job https://hydra.nixos.org/build/236693854 at 2023-10-04 - BCMtools # failure in job https://hydra.nixos.org/build/233250221 at 2023-09-02 - - bdd # failure in job https://hydra.nixos.org/build/233248150 at 2023-09-02 - - bdelta # failure in job https://hydra.nixos.org/build/233214765 at 2023-09-02 - - bdo # failure in job https://hydra.nixos.org/build/233216486 at 2023-09-02 - - beam # failure in job https://hydra.nixos.org/build/233213313 at 2023-09-02 - beam-automigrate # failure in job https://hydra.nixos.org/build/282936134 at 2024-12-24 - - beam-mysql # failure in job https://hydra.nixos.org/build/233253237 at 2023-09-02 - - beam-newtype-field # failure in job https://hydra.nixos.org/build/233206317 at 2023-09-02 - - beamable # failure in job https://hydra.nixos.org/build/233211619 at 2023-09-02 - bearlibterminal # failure in job https://hydra.nixos.org/build/295091877 at 2025-04-22 - bech32 # failure in job https://hydra.nixos.org/build/233194823 at 2023-09-02 - - beeminder-api # failure in job https://hydra.nixos.org/build/259970664 at 2024-05-19 - - Befunge93 # failure in job https://hydra.nixos.org/build/233226751 at 2023-09-02 - - bench-graph # failure in job https://hydra.nixos.org/build/233239830 at 2023-09-02 - - BenchmarkHistory # failure in job https://hydra.nixos.org/build/233213179 at 2023-09-02 - - bencodex # failure in job https://hydra.nixos.org/build/233203593 at 2023-09-02 - bencoding-lens # failure in job https://hydra.nixos.org/build/233236760 at 2023-09-02 - - berkeleydb # failure in job https://hydra.nixos.org/build/233216507 at 2023-09-02 - - BerkeleyDBXML # failure in job https://hydra.nixos.org/build/233216219 at 2023-09-02 - - berp # failure in job https://hydra.nixos.org/build/233243070 at 2023-09-02 - - bert # failure in job https://hydra.nixos.org/build/233195424 at 2023-09-02 - - besout # failure in job https://hydra.nixos.org/build/233194433 at 2023-09-02 - - bet # failure in job https://hydra.nixos.org/build/233205655 at 2023-09-02 + - BesselJ # previously transitively broken at 2025-09-08 - betris # failure in job https://hydra.nixos.org/build/233200110 at 2023-09-02 - - bff-mono # failure in job https://hydra.nixos.org/build/252710505 at 2024-03-16 - bglib # failure in job https://hydra.nixos.org/build/265955624 at 2024-07-14 - - bgmax # failure in job https://hydra.nixos.org/build/233222709 at 2023-09-02 - - bgzf # failure in job https://hydra.nixos.org/build/233224580 at 2023-09-02 - - bibdb # failure in job https://hydra.nixos.org/build/233210682 at 2023-09-02 - bidi-icu # failure in job https://hydra.nixos.org/build/233257520 at 2023-09-02 - bidirectional # failure in job https://hydra.nixos.org/build/233239780 at 2023-09-02 - bidirectional-instances # failure in job https://hydra.nixos.org/build/233244611 at 2023-09-02 - bidirectionalization-combined # failure in job https://hydra.nixos.org/build/233206201 at 2023-09-02 - - bidispec # failure in job https://hydra.nixos.org/build/233199029 at 2023-09-02 - - bidispec-extras # failure in job https://hydra.nixos.org/build/233235808 at 2023-09-02 - - BiGUL # failure in job https://hydra.nixos.org/build/233258614 at 2023-09-02 - - billeksah-services # failure in job https://hydra.nixos.org/build/233195677 at 2023-09-02 - - binary-bits # failure in job https://hydra.nixos.org/build/233199968 at 2023-09-02 - - binary-communicator # failure in job https://hydra.nixos.org/build/233248642 at 2023-09-02 - - binary-derive # failure in job https://hydra.nixos.org/build/233201950 at 2023-09-02 - binary-ext # failure in job https://hydra.nixos.org/build/233247463 at 2023-09-02 - - binary-indexed-tree # failure in job https://hydra.nixos.org/build/233204069 at 2023-09-02 - - binary-protocol # failure in job https://hydra.nixos.org/build/233206098 at 2023-09-02 - - binary-strict # failure in job https://hydra.nixos.org/build/233231473 at 2023-09-02 - - binary-tree # failure in job https://hydra.nixos.org/build/233211047 at 2023-09-02 - - binary-typed # failure in job https://hydra.nixos.org/build/233222741 at 2023-09-02 - - bind-marshal # failure in job https://hydra.nixos.org/build/233196758 at 2023-09-02 - binder # failure in job https://hydra.nixos.org/build/295091930 at 2025-04-22 - - BinderAnn # failure in job https://hydra.nixos.org/build/233197117 at 2023-09-02 - - binding-core # failure in job https://hydra.nixos.org/build/233223706 at 2023-09-02 - - bindings-apr # failure in job https://hydra.nixos.org/build/233212499 at 2023-09-02 - - bindings-bfd # failure in job https://hydra.nixos.org/build/233210763 at 2023-09-02 - - bindings-cctools # failure in job https://hydra.nixos.org/build/233216939 at 2023-09-02 - - bindings-common # failure in job https://hydra.nixos.org/build/233217363 at 2023-09-02 - - bindings-dc1394 # failure in job https://hydra.nixos.org/build/233200022 at 2023-09-02 - - bindings-directfb # failure in job https://hydra.nixos.org/build/295091945 at 2025-04-22 - - bindings-eskit # failure in job https://hydra.nixos.org/build/233223517 at 2023-09-02 - - bindings-EsounD # failure in job https://hydra.nixos.org/build/233245565 at 2023-09-02 - - bindings-fann # failure in job https://hydra.nixos.org/build/233232900 at 2023-09-02 - - bindings-fluidsynth # failure in job https://hydra.nixos.org/build/233221612 at 2023-09-02 - - bindings-friso # failure in job https://hydra.nixos.org/build/233201584 at 2023-09-02 - - bindings-gsl # failure in job https://hydra.nixos.org/build/233243360 at 2023-09-02 - - bindings-hamlib # failure in job https://hydra.nixos.org/build/233259986 at 2023-09-02 - - bindings-hdf5 # failure in job https://hydra.nixos.org/build/233215409 at 2023-09-02 - - bindings-K8055 # failure in job https://hydra.nixos.org/build/233192986 at 2023-09-02 - - bindings-levmar # failure in job https://hydra.nixos.org/build/295091959 at 2025-04-22 - - bindings-libftdi # failure in job https://hydra.nixos.org/build/233256908 at 2023-09-02 - - bindings-libg15 # failure in job https://hydra.nixos.org/build/233207984 at 2023-09-02 - bindings-libpci # failure in job https://hydra.nixos.org/build/233200095 at 2023-09-02 - - bindings-librrd # failure in job https://hydra.nixos.org/build/233207396 at 2023-09-02 - - bindings-libstemmer # failure in job https://hydra.nixos.org/build/233199518 at 2023-09-02 - - bindings-libusb # failure in job https://hydra.nixos.org/build/233224303 at 2023-09-02 - - bindings-libv4l2 # failure in job https://hydra.nixos.org/build/233236316 at 2023-09-02 - - bindings-monetdb-mapi # failure in job https://hydra.nixos.org/build/233219584 at 2023-09-02 - - bindings-mpdecimal # failure in job https://hydra.nixos.org/build/233235379 at 2023-09-02 - - bindings-sc3 # failure in job https://hydra.nixos.org/build/233198459 at 2023-09-02 - - bindings-sipc # failure in job https://hydra.nixos.org/build/233219411 at 2023-09-02 - - bindings-wlc # failure in job https://hydra.nixos.org/build/233332720 at 2023-09-02 - - bindynamic # failure in job https://hydra.nixos.org/build/295091957 at 2025-04-22 - - binembed # failure in job https://hydra.nixos.org/build/233219100 at 2023-09-02 - binrep-instances # failure in job https://hydra.nixos.org/build/295092045 at 2025-04-22 - binsm # failure in job https://hydra.nixos.org/build/233232355 at 2023-09-02 - - bio # failure in job https://hydra.nixos.org/build/233225273 at 2023-09-02 - - bio-sequence # failure in job https://hydra.nixos.org/build/233236140 at 2023-09-02 - - biocore # failure in job https://hydra.nixos.org/build/233229466 at 2023-09-02 - - biohazard # failure in job https://hydra.nixos.org/build/233249284 at 2023-09-02 + - bioinformatics-toolkit # previously transitively broken at 2025-09-08 + - bip32 # previously transitively broken at 2025-09-08 - birds-of-paradise # failure in job https://hydra.nixos.org/build/295091958 at 2025-04-22 - biscuit-haskell # failure in job https://hydra.nixos.org/build/233241833 at 2023-09-02 - - bisect-binary # failure in job https://hydra.nixos.org/build/233190746 at 2023-09-02 - - bit-stream # failure in job https://hydra.nixos.org/build/233230353 at 2023-09-02 - bitcoin-compact-filters # failure in job https://hydra.nixos.org/build/252726935 at 2024-03-16 - - bitcoin-hs # failure in job https://hydra.nixos.org/build/233251583 at 2023-09-02 - - bitcoin-keys # failure in job https://hydra.nixos.org/build/233215632 at 2023-09-02 - - bitcoin-rpc # failure in job https://hydra.nixos.org/build/233209694 at 2023-09-02 - - bitcoin-script # failure in job https://hydra.nixos.org/build/233201469 at 2023-09-02 - bitcoin-scripting # failure in job https://hydra.nixos.org/build/252734577 at 2024-03-16 - bitcoind-rpc # failure in job https://hydra.nixos.org/build/233204068 at 2023-09-02 - bitfield # failure in job https://hydra.nixos.org/build/233235414 at 2023-09-02 - - bits-atomic # failure in job https://hydra.nixos.org/build/233236099 at 2023-09-02 - - bits-conduit # failure in job https://hydra.nixos.org/build/233236564 at 2023-09-02 - - bits-extras # failure in job https://hydra.nixos.org/build/233217492 at 2023-09-02 - bits-show # failure in job https://hydra.nixos.org/build/252714912 at 2024-03-16 - - bitset # failure in job https://hydra.nixos.org/build/233218622 at 2023-09-02 - - bitspeak # failure in job https://hydra.nixos.org/build/233219582 at 2023-09-02 - bitstream # failure in job https://hydra.nixos.org/build/233240888 at 2023-09-02 - - BitStringRandomMonad # failure in job https://hydra.nixos.org/build/233203519 at 2023-09-02 - BitSyntax # failure in job https://hydra.nixos.org/build/233211551 at 2023-09-02 - - bitx-bitcoin # failure in job https://hydra.nixos.org/build/233215594 at 2023-09-02 - bizzlelude # failure in job https://hydra.nixos.org/build/233255574 at 2023-09-02 - bizzlelude-js # failure in job https://hydra.nixos.org/build/233224267 at 2023-09-02 - - bkr # failure in job https://hydra.nixos.org/build/233246377 at 2023-09-02 - blagda # failure in job https://hydra.nixos.org/build/233332725 at 2023-09-02 - - blakesum # failure in job https://hydra.nixos.org/build/233194284 at 2023-09-02 - - blas # failure in job https://hydra.nixos.org/build/233244820 at 2023-09-02 - - blaze-html-contrib # failure in job https://hydra.nixos.org/build/233203969 at 2023-09-02 - - blaze-html-hexpat # failure in job https://hydra.nixos.org/build/233251654 at 2023-09-02 - - blaze-html-truncate # failure in job https://hydra.nixos.org/build/233220789 at 2023-09-02 - - blaze-json # failure in job https://hydra.nixos.org/build/233241853 at 2023-09-02 - - blaze-shields # failure in job https://hydra.nixos.org/build/233214358 at 2023-09-02 - - blaze-textual-native # failure in job https://hydra.nixos.org/build/233250559 at 2023-09-02 - blazeT # failure in job https://hydra.nixos.org/build/233245198 at 2023-09-02 - blindpass # failure in job https://hydra.nixos.org/build/233210012 at 2023-09-02 - - bliplib # failure in job https://hydra.nixos.org/build/233195751 at 2023-09-02 - - blockchain # failure in job https://hydra.nixos.org/build/233245492 at 2023-09-02 - - blockhash # failure in job https://hydra.nixos.org/build/233227049 at 2023-09-02 - blockio-uring # failure in job https://hydra.nixos.org/build/302801498, https://github.com/well-typed/blockio-uring/issues/44 at 2025-07-27 - blockio-uring # https://github.com/well-typed/blockio-uring/issues/44, added 2025-07-27 - - Blogdown # failure in job https://hydra.nixos.org/build/233239841 at 2023-09-02 - BlogLiterately # failure in job https://hydra.nixos.org/build/233202164 at 2023-09-02 - - bloodhound-amazonka-auth # failure building library in job https://hydra.nixos.org/build/237245625 at 2023-10-21 - bloohm # failure in job https://hydra.nixos.org/build/295092039 at 2025-04-22 - - bloomfilter-redis # failure in job https://hydra.nixos.org/build/233226393 at 2023-09-02 - - blosum # failure in job https://hydra.nixos.org/build/233198029 at 2023-09-02 - - blubber-server # failure in job https://hydra.nixos.org/build/233199530 at 2023-09-02 - - bludigon # failure in job https://hydra.nixos.org/build/233248190 at 2023-09-02 - - Blueprint # failure in job https://hydra.nixos.org/build/233252987 at 2023-09-02 - - bluetileutils # failure in job https://hydra.nixos.org/build/233197334 at 2023-09-02 - - blunk-hask-tests # failure in job https://hydra.nixos.org/build/233240288 at 2023-09-02 - - bogocopy # failure in job https://hydra.nixos.org/build/233232322 at 2023-09-02 - boilerplate # failure in job https://hydra.nixos.org/build/233252821 at 2023-09-02 - bolt # failure in job https://hydra.nixos.org/build/233234045 at 2023-09-02 - - boltzmann-brain # failure in job https://hydra.nixos.org/build/233220308 at 2023-09-02 - bookhound-format # failure in job https://hydra.nixos.org/build/233202674 at 2023-09-02 - - bookkeeping # failure in job https://hydra.nixos.org/build/233241963 at 2023-09-02 - - boolean-like # failure in job https://hydra.nixos.org/build/233190873 at 2023-09-02 - - boolean-normal-forms # failure in job https://hydra.nixos.org/build/233220091 at 2023-09-02 - - boombox # failure in job https://hydra.nixos.org/build/233249287 at 2023-09-02 - - boots # failure in job https://hydra.nixos.org/build/252733526 at 2024-03-16 - - boring-window-switcher # failure in job https://hydra.nixos.org/build/233252547 at 2023-09-02 - borsh # failure in job https://hydra.nixos.org/build/252718760 at 2024-03-16 - - bot # failure in job https://hydra.nixos.org/build/233230089 at 2023-09-02 - - botpp # failure in job https://hydra.nixos.org/build/233201674 at 2023-09-02 + - both # previously transitively broken at 2025-09-08 - bottom # failure in job https://hydra.nixos.org/build/233225154 at 2023-09-02 - bound-simple # failure in job https://hydra.nixos.org/build/233201896 at 2023-09-02 - bounded-array # failure in job https://hydra.nixos.org/build/233200854 at 2023-09-02 - - bowntz # failure in job https://hydra.nixos.org/build/234439552 at 2023-09-13 - box-csv # failure in job https://hydra.nixos.org/build/233253321 at 2023-09-02 - box-tuples # failure in job https://hydra.nixos.org/build/233205890 at 2023-09-02 - bpath # failure in job https://hydra.nixos.org/build/233239160 at 2023-09-02 - - braid # failure in job https://hydra.nixos.org/build/233244144 at 2023-09-02 - - brain-bleep # failure in job https://hydra.nixos.org/build/233198839 at 2023-09-02 - brassica # failure in job https://hydra.nixos.org/build/233224897 at 2023-09-02 - - Bravo # failure in job https://hydra.nixos.org/build/233199668 at 2023-09-02 - - brians-brain # failure in job https://hydra.nixos.org/build/233201634 at 2023-09-02 - brick-calendar # failure in job https://hydra.nixos.org/build/296518003 at 2025-05-14 - - brick-dropdownmenu # failure in job https://hydra.nixos.org/build/233223686 at 2023-09-02 - - brick-filetree # failure in job https://hydra.nixos.org/build/233217076 at 2023-09-02 - brick-list-search # failure in job https://hydra.nixos.org/build/233193835 at 2023-09-02 - brick-panes # failure in job https://hydra.nixos.org/build/233207542 at 2023-09-02 - - bricks-internal # failure in job https://hydra.nixos.org/build/233215572 at 2023-09-02 - - brillig # failure in job https://hydra.nixos.org/build/233208148 at 2023-09-02 - brittany # failure in job https://hydra.nixos.org/build/233234100 at 2023-09-02 - broadcast-chan-conduit # failure in job https://hydra.nixos.org/build/295092082 at 2025-04-22 - broadcast-chan-tests # failure in job https://hydra.nixos.org/build/233202605 at 2023-09-02 - - broccoli # failure in job https://hydra.nixos.org/build/233191381 at 2023-09-02 - - brok # failure in job https://hydra.nixos.org/build/233214233 at 2023-09-02 - - broker-haskell # failure in job https://hydra.nixos.org/build/233200969 at 2023-09-02 - - bronyradiogermany-common # failure in job https://hydra.nixos.org/build/233211166 at 2023-09-02 - - brotli-conduit # failure in job https://hydra.nixos.org/build/233249983 at 2023-09-02 - - browscap # failure in job https://hydra.nixos.org/build/233196112 at 2023-09-02 - - bsd-sysctl # failure in job https://hydra.nixos.org/build/233203232 at 2023-09-02 - - bson-generic # failure in job https://hydra.nixos.org/build/233237712 at 2023-09-02 - - bson-generics # failure in job https://hydra.nixos.org/build/233251530 at 2023-09-02 - - bson-mapping # failure in job https://hydra.nixos.org/build/233242165 at 2023-09-02 - - bsparse # failure in job https://hydra.nixos.org/build/233243753 at 2023-09-02 - - btree-concurrent # failure in job https://hydra.nixos.org/build/233201065 at 2023-09-02 - - buffer # failure in job https://hydra.nixos.org/build/233216007 at 2023-09-02 - buffer-builder-aeson # failure in job https://hydra.nixos.org/build/233198028 at 2023-09-02 - - BufferedSocket # failure in job https://hydra.nixos.org/build/233222939 at 2023-09-02 - buffet # failure in job https://hydra.nixos.org/build/233250252 at 2023-09-02 - - buffon # failure in job https://hydra.nixos.org/build/233241665 at 2023-09-02 - - buffon-machines # failure in job https://hydra.nixos.org/build/233257929 at 2023-09-02 - bugsnag-haskell # failure in job https://hydra.nixos.org/build/295092087 at 2025-04-22 - - bugzilla # failure in job https://hydra.nixos.org/build/233223784 at 2023-09-02 - build-env # failure in job https://hydra.nixos.org/build/252734826 at 2024-03-16 - - buildable # failure in job https://hydra.nixos.org/build/233199077 at 2023-09-02 - - buildbox # failure in job https://hydra.nixos.org/build/233216315 at 2023-09-02 - - builder # failure in job https://hydra.nixos.org/build/233207846 at 2023-09-02 - - bumper # failure in job https://hydra.nixos.org/build/233234378 at 2023-09-02 - - bunz # failure in job https://hydra.nixos.org/build/233193945 at 2023-09-02 - bureaucromancy # failure in job https://hydra.nixos.org/build/295092112 at 2025-04-22 - - burst-detection # failure in job https://hydra.nixos.org/build/233254074 at 2023-09-02 - - bus-pirate # failure in job https://hydra.nixos.org/build/265955589 at 2024-07-14 - - buster # failure in job https://hydra.nixos.org/build/233197502 at 2023-09-02 - - Buster # failure in job https://hydra.nixos.org/build/233214182 at 2023-09-02 - - bustle # failure in job https://hydra.nixos.org/build/252728683 at 2024-03-16 - - butter # failure in job https://hydra.nixos.org/build/233212117 at 2023-09-02 - buttplug-hs-core # failure in job https://hydra.nixos.org/build/233223928 at 2023-09-02 - bv-sized-lens # failure in job https://hydra.nixos.org/build/233237486 at 2023-09-02 - by-other-names # failure in job https://hydra.nixos.org/build/252732245 at 2024-03-16 - - bytearray-parsing # failure in job https://hydra.nixos.org/build/233244355 at 2023-09-02 - bytepatch # failure in job https://hydra.nixos.org/build/236678340 at 2023-10-04 - - bytestring-arbitrary # failure in job https://hydra.nixos.org/build/233195013 at 2023-09-02 - - bytestring-builder-varword # failure in job https://hydra.nixos.org/build/295092142 at 2025-04-22 - - bytestring-class # failure in job https://hydra.nixos.org/build/233230793 at 2023-09-02 - - bytestring-csv # failure in job https://hydra.nixos.org/build/233215194 at 2023-09-02 - - bytestring-delta # failure in job https://hydra.nixos.org/build/233207977 at 2023-09-02 - bytestring-handle # failure in job https://hydra.nixos.org/build/233192234 at 2023-09-02 - bytestring-mmap # failure in job https://hydra.nixos.org/build/252733270 at 2024-03-16 - - bytestring-plain # failure in job https://hydra.nixos.org/build/233230746 at 2023-09-02 - - bytestring-rematch # failure in job https://hydra.nixos.org/build/233228234 at 2023-09-02 - - bytestring-show # failure in job https://hydra.nixos.org/build/233207681 at 2023-09-02 - - bytestring-substring # failure in job https://hydra.nixos.org/build/233244318 at 2023-09-02 - - bytestring-time # failure in job https://hydra.nixos.org/build/233190686 at 2023-09-02 - - bytestring-typenats # failure in job https://hydra.nixos.org/build/233211815 at 2023-09-02 - - bytestringparser # failure in job https://hydra.nixos.org/build/233227781 at 2023-09-02 - - bytestringparser-temporary # failure in job https://hydra.nixos.org/build/233226655 at 2023-09-02 - - bytestringreadp # failure in job https://hydra.nixos.org/build/233209066 at 2023-09-02 + - bytetrie # previously transitively broken at 2025-09-08 - bzlib-conduit-jappie # failure in job https://hydra.nixos.org/build/233210179 at 2023-09-02 - - c-dsl # failure in job https://hydra.nixos.org/build/233236075 at 2023-09-02 - - c-io # failure in job https://hydra.nixos.org/build/233198654 at 2023-09-02 - - c-mosquitto # failure in job https://hydra.nixos.org/build/233231310 at 2023-09-02 - C-structs # failure in job https://hydra.nixos.org/build/233247498 at 2023-09-02 - c10k # failure in job https://hydra.nixos.org/build/233213264 at 2023-09-02 - - c2ats # failure in job https://hydra.nixos.org/build/233220801 at 2023-09-02 - ca-patterns # failure in job https://hydra.nixos.org/build/233246800 at 2023-09-02 - - cabal-audit # failure in job https://hydra.nixos.org/build/233193414 at 2023-09-02 - cabal-auto-expose # failure in job https://hydra.nixos.org/build/233195440 at 2023-09-02 - - cabal-build-programs # failure in job https://hydra.nixos.org/build/257091363 at 2024-04-27 - - cabal-bundle-clib # failure in job https://hydra.nixos.org/build/233199225 at 2023-09-02 - - cabal-constraints # failure in job https://hydra.nixos.org/build/233214316 at 2023-09-02 - cabal-db # failure in job https://hydra.nixos.org/build/233197235 at 2023-09-02 - cabal-debian # failure in job https://hydra.nixos.org/build/233255267 at 2023-09-02 - - cabal-dependency-licenses # failure in job https://hydra.nixos.org/build/233249247 at 2023-09-02 - cabal-detailed-quickcheck # failure in job https://hydra.nixos.org/build/252734084 at 2024-03-16 - - cabal-dev # failure in job https://hydra.nixos.org/build/233227918 at 2023-09-02 - - cabal-dir # failure in job https://hydra.nixos.org/build/233194037 at 2023-09-02 - - cabal-edit # failure in job https://hydra.nixos.org/build/233244268 at 2023-09-02 - - cabal-file-th # failure in job https://hydra.nixos.org/build/233224650 at 2023-09-02 - - cabal-ghc-dynflags # failure in job https://hydra.nixos.org/build/233244580 at 2023-09-02 - - cabal-ghci # failure in job https://hydra.nixos.org/build/233239354 at 2023-09-02 - - cabal-graphdeps # failure in job https://hydra.nixos.org/build/233221966 at 2023-09-02 - - cabal-helper # failure in job https://hydra.nixos.org/build/252732588 at 2024-03-16 - cabal-hoogle # failure in job https://hydra.nixos.org/build/233191666 at 2023-09-02 - - Cabal-ide-backend # failure in job https://hydra.nixos.org/build/233258880 at 2023-09-02 - cabal-info # failure in job https://hydra.nixos.org/build/233225001 at 2023-09-02 - - cabal-install-bundle # failure in job https://hydra.nixos.org/build/233194629 at 2023-09-02 - - cabal-install-ghc72 # failure in job https://hydra.nixos.org/build/233246160 at 2023-09-02 - - cabal-install-ghc74 # failure in job https://hydra.nixos.org/build/233226625 at 2023-09-02 - - cabal-meta # failure in job https://hydra.nixos.org/build/233194466 at 2023-09-02 - - cabal-mon # failure in job https://hydra.nixos.org/build/233217320 at 2023-09-02 - - cabal-nirvana # failure in job https://hydra.nixos.org/build/233222083 at 2023-09-02 - - cabal-progdeps # failure in job https://hydra.nixos.org/build/233251917 at 2023-09-02 - cabal-scaffold # failure in job https://hydra.nixos.org/build/295453285 at 2025-05-02 - - cabal-setup # failure in job https://hydra.nixos.org/build/233225406 at 2023-09-02 - - cabal-sign # failure in job https://hydra.nixos.org/build/295092160 at 2025-04-22 - - cabal-src # failure in job https://hydra.nixos.org/build/233229475 at 2023-09-02 - - cabal-test-quickcheck # failure in job https://hydra.nixos.org/build/233211903 at 2023-09-02 - - cabal-toolkit # failure in job https://hydra.nixos.org/build/233192328 at 2023-09-02 - - cabal-uninstall # failure in job https://hydra.nixos.org/build/252739542 at 2024-03-16 - - cabal-upload # failure in job https://hydra.nixos.org/build/233207791 at 2023-09-02 - - cabal2doap # failure in job https://hydra.nixos.org/build/233207973 at 2023-09-02 - - cabal2ebuild # failure in job https://hydra.nixos.org/build/233221248 at 2023-09-02 - - cabal2ghci # failure in job https://hydra.nixos.org/build/233233018 at 2023-09-02 - cabal2json # failure in job https://hydra.nixos.org/build/233196099 at 2023-09-02 - - cabalgraph # failure in job https://hydra.nixos.org/build/233241573 at 2023-09-02 - - cabalish # failure in job https://hydra.nixos.org/build/233193578 at 2023-09-02 - - cabalQuery # failure in job https://hydra.nixos.org/build/233211475 at 2023-09-02 - - CabalSearch # failure in job https://hydra.nixos.org/build/233200817 at 2023-09-02 - - cabalvchk # failure in job https://hydra.nixos.org/build/233221561 at 2023-09-02 - - cabin # failure in job https://hydra.nixos.org/build/233225287 at 2023-09-02 - - cabocha # failure in job https://hydra.nixos.org/build/233259983 at 2023-09-02 - - cache-polysemy # failure in job https://hydra.nixos.org/build/233200602 at 2023-09-02 - cached # failure in job https://hydra.nixos.org/build/233249807 at 2023-09-02 - - caching # failure in job https://hydra.nixos.org/build/233233548 at 2023-09-02 - caerbannog # failure in job https://hydra.nixos.org/build/252729101 at 2024-03-16 - - cafeteria-prelude # failure in job https://hydra.nixos.org/build/233254881 at 2023-09-02 - cairo-canvas # failure in job https://hydra.nixos.org/build/252719057 at 2024-03-16 - - cairo-core # failure in job https://hydra.nixos.org/build/233248151 at 2023-09-02 - - cake3 # failure in job https://hydra.nixos.org/build/233231662 at 2023-09-02 - - cal-layout # failure in job https://hydra.nixos.org/build/233191194 at 2023-09-02 - - cal3d # failure in job https://hydra.nixos.org/build/233200357 at 2023-09-02 - - caledon # failure in job https://hydra.nixos.org/build/233209888 at 2023-09-02 - - calenderweek # failure in job https://hydra.nixos.org/build/233209930 at 2023-09-02 + - caldims # previously transitively broken at 2025-09-08 - call-alloy # failure in job https://hydra.nixos.org/build/233249056 at 2023-09-02 - - call-haskell-from-anything # failure in job https://hydra.nixos.org/build/233222493 at 2023-09-02 - call-plantuml # failure in job https://hydra.nixos.org/build/233241670 at 2023-09-02 - candid # failure in job https://hydra.nixos.org/build/295092213 at 2025-04-22 - - canon # failure in job https://hydra.nixos.org/build/233235027 at 2023-09-02 - - canonical-filepath # failure in job https://hydra.nixos.org/build/233233390 at 2023-09-02 - - canteven-listen-http # failure in job https://hydra.nixos.org/build/233210500 at 2023-09-02 - - canteven-log # failure in job https://hydra.nixos.org/build/233220599 at 2023-09-02 - - canteven-parsedate # failure in job https://hydra.nixos.org/build/233218076 at 2023-09-02 - - cantor # failure in job https://hydra.nixos.org/build/233204922 at 2023-09-02 - - Capabilities # failure in job https://hydra.nixos.org/build/233233256 at 2023-09-02 - - capataz # failure in job https://hydra.nixos.org/build/233226186 at 2023-09-02 - - capped-list # failure in job https://hydra.nixos.org/build/233232627 at 2023-09-02 - - capri # failure in job https://hydra.nixos.org/build/233247984 at 2023-09-02 - caps # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/237244140 at 2023-10-21 - - caramia # failure in job https://hydra.nixos.org/build/233257225 at 2023-09-02 - - carbonara # failure in job https://hydra.nixos.org/build/233201166 at 2023-09-02 - - carettah # failure in job https://hydra.nixos.org/build/233230612 at 2023-09-02 - - CarneadesDSL # failure in job https://hydra.nixos.org/build/233236706 at 2023-09-02 - - carte # failure in job https://hydra.nixos.org/build/233201806 at 2023-09-02 - - Cartesian # failure in job https://hydra.nixos.org/build/233249956 at 2023-09-02 - - cas-hashable # failure in job https://hydra.nixos.org/build/233238789 at 2023-09-02 + - captcha-2captcha # previously transitively broken at 2025-09-08 + - captcha-capmonster # previously transitively broken at 2025-09-08 + - captcha-core # previously transitively broken at 2025-09-08 + - car-pool # previously transitively broken at 2025-09-08 - casa-abbreviations-and-acronyms # failure in job https://hydra.nixos.org/build/233194663 at 2023-09-02 - - casadi-bindings-core # failure in job https://hydra.nixos.org/build/294582281 at 2025-04-09 - - Cascade # failure in job https://hydra.nixos.org/build/233223917 at 2023-09-02 - - cascading # failure in job https://hydra.nixos.org/build/233238563 at 2023-09-02 - - case-insensitive-match # failure in job https://hydra.nixos.org/build/233252304 at 2023-09-02 - - caseof # failure in job https://hydra.nixos.org/build/233256025 at 2023-09-02 - casr-logbook # failure in job https://hydra.nixos.org/build/233227183 at 2023-09-02 - - casr-logbook-types # failure in job https://hydra.nixos.org/build/233231548 at 2023-09-02 - - cassandra-cql # failure in job https://hydra.nixos.org/build/233194724 at 2023-09-02 - - Cassava # failure in job https://hydra.nixos.org/build/233245677 at 2023-09-02 - cassava-conduit # failure in job https://hydra.nixos.org/build/233220495 at 2023-09-02 - - cassava-records # failure in job https://hydra.nixos.org/build/233259049 at 2023-09-02 - - castle # failure in job https://hydra.nixos.org/build/233204027 at 2023-09-02 - - catamorphism # failure in job https://hydra.nixos.org/build/233208488 at 2023-09-02 - - Catana # failure in job https://hydra.nixos.org/build/233196550 at 2023-09-02 - - catch-fd # failure in job https://hydra.nixos.org/build/233223935 at 2023-09-02 - - category-printf # failure in job https://hydra.nixos.org/build/233216355 at 2023-09-02 - - category-traced # failure in job https://hydra.nixos.org/build/233193963 at 2023-09-02 - - catnplus # failure in job https://hydra.nixos.org/build/233241280 at 2023-09-02 - cauldron # failure in job https://hydra.nixos.org/build/302801682 at 2025-07-27 - - cautious-file # failure in job https://hydra.nixos.org/build/233218702 at 2023-09-02 - - cautious-gen # failure in job https://hydra.nixos.org/build/233258367 at 2023-09-02 - - cayene-lpp # failure in job https://hydra.nixos.org/build/233228959 at 2023-09-02 - cayley-client # failure in job https://hydra.nixos.org/build/233260112 at 2023-09-02 - - cblrepo # failure in job https://hydra.nixos.org/build/233251926 at 2023-09-02 - - CC-delcont # failure in job https://hydra.nixos.org/build/252735236 at 2024-03-16 - - CC-delcont-cxe # failure in job https://hydra.nixos.org/build/233190865 at 2023-09-02 - - CC-delcont-exc # failure in job https://hydra.nixos.org/build/233236141 at 2023-09-02 - - CC-delcont-ref # failure in job https://hydra.nixos.org/build/233229304 at 2023-09-02 - - CC-delcont-ref-tf # failure in job https://hydra.nixos.org/build/233257768 at 2023-09-02 - - CCA # failure in job https://hydra.nixos.org/build/233206723 at 2023-09-02 - - ccast # failure in job https://hydra.nixos.org/build/233254517 at 2023-09-02 - cci # failure in job https://hydra.nixos.org/build/233244756 at 2023-09-02 - - ccnx # failure in job https://hydra.nixos.org/build/233237732 at 2023-09-02 - cdp # failure in job https://hydra.nixos.org/build/233251735 at 2023-09-02 - - cedict # failure in job https://hydra.nixos.org/build/233206454 at 2023-09-02 - - cef # failure in job https://hydra.nixos.org/build/233221542 at 2023-09-02 - - cef3-raw # failure in job https://hydra.nixos.org/build/233216467 at 2023-09-02 - - cellrenderer-cairo # failure in job https://hydra.nixos.org/build/233245838 at 2023-09-02 - - cerberus # failure in job https://hydra.nixos.org/build/295092440 at 2025-04-22 - - cereal-data-dword # failure in job https://hydra.nixos.org/build/295092224 at 2025-04-22 - - cereal-derive # failure in job https://hydra.nixos.org/build/233229941 at 2023-09-02 - - cereal-ieee754 # failure in job https://hydra.nixos.org/build/233208388 at 2023-09-02 - - cereal-plus # failure in job https://hydra.nixos.org/build/233226162 at 2023-09-02 - - cereal-uuid # failure in job https://hydra.nixos.org/build/295092232 at 2025-04-22 - - cf # failure in job https://hydra.nixos.org/build/233244067 at 2023-09-02 - cfenv # failure in job https://hydra.nixos.org/build/233235017 at 2023-09-02 - cfg # failure in job https://hydra.nixos.org/build/233236445 at 2023-09-02 - cfn-flip # failure in job https://hydra.nixos.org/build/233221000 at 2023-09-02 - - cg # failure in job https://hydra.nixos.org/build/233212272 at 2023-09-02 - - cgen # failure in job https://hydra.nixos.org/build/233198570 at 2023-09-02 - - cgi-utils # failure in job https://hydra.nixos.org/build/233251773 at 2023-09-02 - cgroup-rts-threads # failure in job https://hydra.nixos.org/build/233207888 at 2023-09-02 - chakra # failure in job https://hydra.nixos.org/build/282936173 at 2024-12-24 - - chalkboard # failure in job https://hydra.nixos.org/build/234453414 at 2023-09-13 - - chalmers-lava2000 # failure in job https://hydra.nixos.org/build/233239592 at 2023-09-02 - changelogged # failure in job https://hydra.nixos.org/build/233211675 at 2023-09-02 - changeset # failure in job https://hydra.nixos.org/build/295092242 at 2025-04-22 - - char-qq # failure in job https://hydra.nixos.org/build/295092253 at 2025-04-22 + - chapelure # previously transitively broken at 2025-09-08 - character-cases # failure in job https://hydra.nixos.org/build/233197636 at 2023-09-02 - - chart-histogram # failure in job https://hydra.nixos.org/build/233250470 at 2023-09-02 - - Chart-simple # failure in job https://hydra.nixos.org/build/233240919 at 2023-09-02 - charter # failure in job https://hydra.nixos.org/build/233237264 at 2023-09-02 - - chaselev-deque # failure in job https://hydra.nixos.org/build/233237595 at 2023-09-02 - - chatty-text # failure in job https://hydra.nixos.org/build/233199498 at 2023-09-02 - chatty-utils # failure in job https://hydra.nixos.org/build/252710715 at 2024-03-16 - - chatwork # failure in job https://hydra.nixos.org/build/233240489 at 2023-09-02 - check-cfg-ambiguity # failure in job https://hydra.nixos.org/build/233251852 at 2023-09-02 - - checked # failure in job https://hydra.nixos.org/build/233223182 at 2023-09-02 - - Checked # failure in job https://hydra.nixos.org/build/233257598 at 2023-09-02 - - checkmate # failure in job https://hydra.nixos.org/build/233248012 at 2023-09-02 - chell-quickcheck # won't support QuickCheck >= 2.15 https://github.com/typeclasses/chell/issues/5#issuecomment-3152262118 - chez-grater # failure in job https://hydra.nixos.org/build/233213537 at 2023-09-02 - chiasma # failure in job https://hydra.nixos.org/build/295122809 at 2025-04-22 - chiphunk # failure in job https://hydra.nixos.org/build/233232520 at 2023-09-02 - - Chitra # failure in job https://hydra.nixos.org/build/233256826 at 2023-09-02 - - choose # failure in job https://hydra.nixos.org/build/233194245 at 2023-09-02 - - chorale # failure in job https://hydra.nixos.org/build/233200153 at 2023-09-02 - - chp # failure in job https://hydra.nixos.org/build/233232868 at 2023-09-02 - - chr-parse # failure in job https://hydra.nixos.org/build/233243933 at 2023-09-02 - - ChristmasTree # failure in job https://hydra.nixos.org/build/233259648 at 2023-09-02 - - chronograph # failure in job https://hydra.nixos.org/build/233232822 at 2023-09-02 - - chronos-bench # failure in job https://hydra.nixos.org/build/295092276 at 2025-04-22 - - chunky # failure in job https://hydra.nixos.org/build/233216440 at 2023-09-02 - - church # failure in job https://hydra.nixos.org/build/233223920 at 2023-09-02 - - church-maybe # failure in job https://hydra.nixos.org/build/233258572 at 2023-09-02 + - chr-core # previously transitively broken at 2025-09-08 + - chr-lang # previously transitively broken at 2025-09-08 - churros # failure in job https://hydra.nixos.org/build/233218976 at 2023-09-02 - cicero-api # failure in job https://hydra.nixos.org/build/233222299 at 2023-09-02 - - cielo # failure in job https://hydra.nixos.org/build/233240001 at 2023-09-02 - - cil # failure in job https://hydra.nixos.org/build/233255428 at 2023-09-02 - - cinvoke # failure in job https://hydra.nixos.org/build/233244748 at 2023-09-02 - - cio # failure in job https://hydra.nixos.org/build/233218269 at 2023-09-02 - cipher-aes128 # failure in job https://hydra.nixos.org/build/233242645 at 2023-09-02 - - cipher-blowfish # failure in job https://hydra.nixos.org/build/233193834 at 2023-09-02 - - cipher-des # failure in job https://hydra.nixos.org/build/233232112 at 2023-09-02 - circle # failure in job https://hydra.nixos.org/build/252722965 at 2024-03-16 - - circlehs # failure in job https://hydra.nixos.org/build/233246591 at 2023-09-02 - citeproc-hs # failure in job https://hydra.nixos.org/build/233254388 at 2023-09-02 - - cj-token # failure in job https://hydra.nixos.org/build/233253928 at 2023-09-02 - - cjk # failure in job https://hydra.nixos.org/build/233258734 at 2023-09-02 - - cl3-hmatrix-interface # failure in job https://hydra.nixos.org/build/233260081 at 2023-09-02 - - cl3-linear-interface # failure in job https://hydra.nixos.org/build/233255205 at 2023-09-02 - - clang-compilation-database # failure in job https://hydra.nixos.org/build/233225320 at 2023-09-02 - - clang-pure # failure in job https://hydra.nixos.org/build/233193420 at 2023-09-02 - - clanki # failure in job https://hydra.nixos.org/build/233196970 at 2023-09-02 - - clarifai # failure in job https://hydra.nixos.org/build/233229480 at 2023-09-02 - - CLASE # failure in job https://hydra.nixos.org/build/233234459 at 2023-09-02 - clash-finite # failure in job https://hydra.nixos.org/build/295092297 at 2025-04-22 - clash-lib-hedgehog # failure in job https://hydra.nixos.org/build/295122808 at 2025-04-22 - - clash-multisignal # failure in job https://hydra.nixos.org/build/273463331 at 2024-10-01 - - clash-prelude-quickcheck # failure in job https://hydra.nixos.org/build/273453747 at 2024-10-01 - Clash-Royale-Hack-Cheats # failure in job https://hydra.nixos.org/build/233216034 at 2023-09-02 - - clash-systemverilog # failure in job https://hydra.nixos.org/build/273453889 at 2024-10-01 - - clash-verilog # failure in job https://hydra.nixos.org/build/273466517 at 2024-10-01 - - clash-vhdl # failure in job https://hydra.nixos.org/build/273460098 at 2024-10-01 - clashilator # failure in job https://hydra.nixos.org/build/273442437 at 2024-10-01 - ClasshSS # failure in job https://hydra.nixos.org/build/255688076 at 2024-04-16 - - ClassLaws # failure in job https://hydra.nixos.org/build/233243019 at 2023-09-02 - classy-effects-base # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/237233636 at 2023-10-21 - - classy-influxdb-simple # failure in job https://hydra.nixos.org/build/233253418 at 2023-09-02 - - classy-parallel # failure in job https://hydra.nixos.org/build/233213514 at 2023-09-02 - - classyplate # failure in job https://hydra.nixos.org/build/233212613 at 2023-09-02 - - ClassyPrelude # failure in job https://hydra.nixos.org/build/233216521 at 2023-09-02 - - cld2 # failure in job https://hydra.nixos.org/build/233205709 at 2023-09-02 - - Clean # failure in job https://hydra.nixos.org/build/233255199 at 2023-09-02 - - clean-unions # failure in job https://hydra.nixos.org/build/233237582 at 2023-09-02 - cleff # failure in job https://hydra.nixos.org/build/233243158 at 2023-09-02 - clerk # failure in job https://hydra.nixos.org/build/252713517 at 2024-03-16 - - clevercss # failure in job https://hydra.nixos.org/build/233206298 at 2023-09-02 - - clexer # failure in job https://hydra.nixos.org/build/233229804 at 2023-09-02 - - CLI # failure in job https://hydra.nixos.org/build/233191087 at 2023-09-02 - - cli-builder # failure in job https://hydra.nixos.org/build/233209961 at 2023-09-02 - - clif # failure in job https://hydra.nixos.org/build/233197110 at 2023-09-02 - - clifm # failure in job https://hydra.nixos.org/build/233227426 at 2023-09-02 - - clingo # failure in job https://hydra.nixos.org/build/233238084 at 2023-09-02 - - clippard # failure in job https://hydra.nixos.org/build/233252884 at 2023-09-02 - - clipper # failure in job https://hydra.nixos.org/build/233235418 at 2023-09-02 - - clisparkline # failure in job https://hydra.nixos.org/build/233218465 at 2023-09-02 - - clit # failure in job https://hydra.nixos.org/build/233227334 at 2023-09-02 - - cloben # failure in job https://hydra.nixos.org/build/233194390 at 2023-09-02 - - clock-extras # failure in job https://hydra.nixos.org/build/233190748 at 2023-09-02 - - clocked # failure in job https://hydra.nixos.org/build/233241524 at 2023-09-02 - - clogparse # failure in job https://hydra.nixos.org/build/233220294 at 2023-09-02 - - clone-all # failure in job https://hydra.nixos.org/build/233234063 at 2023-09-02 - closed-classes # failure in job https://hydra.nixos.org/build/233250965 at 2023-09-02 - closed-intervals # failure in job https://hydra.nixos.org/build/233209665 at 2023-09-02 - - closure # failure in job https://hydra.nixos.org/build/233215133 at 2023-09-02 - - cloudfront-signer # failure in job https://hydra.nixos.org/build/233238255 at 2023-09-02 - clplug # failure in job https://hydra.nixos.org/build/233236794 at 2023-09-02 - - clr-host # failure in job https://hydra.nixos.org/build/233207709 at 2023-09-02 - - clr-typed # failure in job https://hydra.nixos.org/build/233212102 at 2023-09-02 - - cltw # failure in job https://hydra.nixos.org/build/252735903 at 2024-03-16 - - cluss # failure in job https://hydra.nixos.org/build/233245341 at 2023-09-02 - - cmark-highlight # failure in job https://hydra.nixos.org/build/233218534 at 2023-09-02 - - cmark-patterns # failure in job https://hydra.nixos.org/build/233192983 at 2023-09-02 - - cmark-sections # failure in job https://hydra.nixos.org/build/233222829 at 2023-09-02 - - cmath # failure in job https://hydra.nixos.org/build/233236588 at 2023-09-02 - - cmd-item # failure in job https://hydra.nixos.org/build/233223946 at 2023-09-02 - cmdlib # failure in job https://hydra.nixos.org/build/233222751 at 2023-09-02 - - cmdtheline # failure in job https://hydra.nixos.org/build/233199201 at 2023-09-02 - - cmf # failure in job https://hydra.nixos.org/build/233256827 at 2023-09-02 - - cmonad # failure in job https://hydra.nixos.org/build/233254242 at 2023-09-02 - - cmph # failure in job https://hydra.nixos.org/build/233225766 at 2023-09-02 - - CMQ # failure in job https://hydra.nixos.org/build/233233168 at 2023-09-02 - - cmt # failure in job https://hydra.nixos.org/build/233233474 at 2023-09-02 - co-log-polysemy-formatting # failure building executable 'example' in job https://hydra.nixos.org/build/237249360 at 2023-10-21 - - co-log-sys # failure in job https://hydra.nixos.org/build/233206587 at 2023-09-02 - - cobot-tools # failure in job https://hydra.nixos.org/build/233259173 at 2023-09-02 - - code-builder # failure in job https://hydra.nixos.org/build/233239215 at 2023-09-02 - codec-beam # failure in job https://hydra.nixos.org/build/233198704 at 2023-09-02 - - codecov-haskell # failure in job https://hydra.nixos.org/build/233256758 at 2023-09-02 - codeforces-cli # failure in job https://hydra.nixos.org/build/233210719 at 2023-09-02 - - codepad # failure in job https://hydra.nixos.org/build/233197730 at 2023-09-02 - codeworld-api # failure in job https://hydra.nixos.org/build/252720413 at 2024-03-16 - - codex # failure in job https://hydra.nixos.org/build/233212311 at 2023-09-02 - - codo-notation # failure in job https://hydra.nixos.org/build/233202566 at 2023-09-02 - coercible-utils # failure in job https://hydra.nixos.org/build/233230462 at 2023-09-02 - - coercion-extras # failure in job https://hydra.nixos.org/build/295092384 at 2025-04-22 - - coin # failure in job https://hydra.nixos.org/build/233198975 at 2023-09-02 - coinbase-pro # failure in job https://hydra.nixos.org/build/233245350 at 2023-09-02 - - colchis # failure in job https://hydra.nixos.org/build/233207690 at 2023-09-02 - - collada-output # failure in job https://hydra.nixos.org/build/233192394 at 2023-09-02 - - collapse-util # failure in job https://hydra.nixos.org/build/233238818 at 2023-09-02 - collate # failure in job https://hydra.nixos.org/build/233243978 at 2023-09-02 - - collections # failure in job https://hydra.nixos.org/build/233251207 at 2023-09-02 - - collections-api # failure in job https://hydra.nixos.org/build/233220769 at 2023-09-02 - colonnade # failure in job https://hydra.nixos.org/build/233248956 at 2023-09-02 - - colorless # failure in job https://hydra.nixos.org/build/233220728 at 2023-09-02 - colour-text # failure in job https://hydra.nixos.org/build/252712609 at 2024-03-16 - - coltrane # failure in job https://hydra.nixos.org/build/233216437 at 2023-09-02 - - comark-syntax # failure in job https://hydra.nixos.org/build/233243043 at 2023-09-02 - combinat # failure in job https://hydra.nixos.org/build/233259056 at 2023-09-02 - - combinat-compat # failure in job https://hydra.nixos.org/build/233201337 at 2023-09-02 - - combinator-interactive # failure in job https://hydra.nixos.org/build/233233138 at 2023-09-02 - - combinatorial-problems # failure in job https://hydra.nixos.org/build/233244505 at 2023-09-02 - - combobuffer # failure in job https://hydra.nixos.org/build/233240114 at 2023-09-02 - - Command # failure in job https://hydra.nixos.org/build/233249718 at 2023-09-02 - - commander # failure in job https://hydra.nixos.org/build/233239812 at 2023-09-02 - - Commando # failure in job https://hydra.nixos.org/build/233248911 at 2023-09-02 - - commodities # failure in job https://hydra.nixos.org/build/233239851 at 2023-09-02 - - comonad-extras # failure in job https://hydra.nixos.org/build/252715520 at 2024-03-16 - - compact-list # failure in job https://hydra.nixos.org/build/233241961 at 2023-09-02 - - compact-map # failure in job https://hydra.nixos.org/build/233201665 at 2023-09-02 - - compact-mutable-vector # failure in job https://hydra.nixos.org/build/245539335 at 2024-01-02 - - compact-sequences # failure in job https://hydra.nixos.org/build/233208553 at 2023-09-02 - - compact-socket # failure in job https://hydra.nixos.org/build/245539349 at 2024-01-02 - - compact-string # failure in job https://hydra.nixos.org/build/233204162 at 2023-09-02 - - compact-string-fix # failure in job https://hydra.nixos.org/build/233238513 at 2023-09-02 - - Compactable # failure in job https://hydra.nixos.org/build/233227285 at 2023-09-02 - compactable # failure in job https://hydra.nixos.org/build/233228106 at 2023-09-02 - compaREST # failure in job https://hydra.nixos.org/build/295122812 at 2025-04-22 - comparse # failure in job https://hydra.nixos.org/build/233220012 at 2023-09-02 - - compdata-dags # failure in job https://hydra.nixos.org/build/233216580 at 2023-09-02 - - compdata-param # failure in job https://hydra.nixos.org/build/233227003 at 2023-09-02 - compendium-client # failure in job https://hydra.nixos.org/build/233231884 at 2023-09-02 - - competition # failure in job https://hydra.nixos.org/build/233243172 at 2023-09-02 - - compilation # failure in job https://hydra.nixos.org/build/233252348 at 2023-09-02 - - complex-generic # failure in job https://hydra.nixos.org/build/233243926 at 2023-09-02 - composable-associations-aeson # failure in job https://hydra.nixos.org/build/233247162 at 2023-09-02 - - compose-trans # failure in job https://hydra.nixos.org/build/233236785 at 2023-09-02 - composite-aeson-path # failure in job https://hydra.nixos.org/build/233203114 at 2023-09-02 - composite-aeson-refined # failure in job https://hydra.nixos.org/build/233241450 at 2023-09-02 - composite-base # failure in job https://hydra.nixos.org/build/245710306 at 2024-01-07 @@ -937,91 +269,23 @@ broken-packages: - composite-ekg # failure in job https://hydra.nixos.org/build/233235858 at 2023-09-02 - composite-opaleye # failure in job https://hydra.nixos.org/build/233256318 at 2023-09-02 - composite-swagger # failure in job https://hydra.nixos.org/build/233258006 at 2023-09-02 - - composition-tree # failure in job https://hydra.nixos.org/build/233219116 at 2023-09-02 - - compressed # failure in job https://hydra.nixos.org/build/233214349 at 2023-09-02 - - compression # failure in job https://hydra.nixos.org/build/233250833 at 2023-09-02 - - compstrat # failure in job https://hydra.nixos.org/build/233255500 at 2023-09-02 - - comptrans # failure in job https://hydra.nixos.org/build/233209853 at 2023-09-02 - - computational-geometry # failure in job https://hydra.nixos.org/build/233220627 at 2023-09-02 - - computations # failure in job https://hydra.nixos.org/build/233249992 at 2023-09-02 - - concrete-relaxng-parser # failure in job https://hydra.nixos.org/build/233192905 at 2023-09-02 - - concrete-typerep # failure in job https://hydra.nixos.org/build/233234198 at 2023-09-02 - - concurrent-buffer # failure in job https://hydra.nixos.org/build/233249002 at 2023-09-02 - - Concurrent-Cache # failure in job https://hydra.nixos.org/build/233238494 at 2023-09-02 - - concurrent-st # failure in job https://hydra.nixos.org/build/233219451 at 2023-09-02 - - concurrent-state # failure in job https://hydra.nixos.org/build/233248441 at 2023-09-02 - - Concurrential # failure in job https://hydra.nixos.org/build/233221502 at 2023-09-02 + - concrete-typerep # previously transitively broken at 2025-09-08 - conditional-restriction-parser # failure in job https://hydra.nixos.org/build/233211470 at 2023-09-02 - - condorcet # failure in job https://hydra.nixos.org/build/233208640 at 2023-09-02 - - conductive-base # failure in job https://hydra.nixos.org/build/233234746 at 2023-09-02 - - conduit-audio-lame # failure in job https://hydra.nixos.org/build/233253987 at 2023-09-02 - - conduit-audio-samplerate # failure in job https://hydra.nixos.org/build/233208457 at 2023-09-02 - - conduit-audio-sndfile # failure in job https://hydra.nixos.org/build/252728043 at 2024-03-16 - - conduit-connection # failure in job https://hydra.nixos.org/build/233232646 at 2023-09-02 - conduit-find # failure in job https://hydra.nixos.org/build/233259909 at 2023-09-02 - - conduit-iconv # failure in job https://hydra.nixos.org/build/233246555 at 2023-09-02 - - conduit-network-stream # failure in job https://hydra.nixos.org/build/233243436 at 2023-09-02 - - conduit-resumablesink # failure in job https://hydra.nixos.org/build/233248566 at 2023-09-02 - - conduit-tokenize-attoparsec # failure in job https://hydra.nixos.org/build/233237152 at 2023-09-02 - - conduit-vfs # failure in job https://hydra.nixos.org/build/233205270 at 2023-09-02 - - conf # failure in job https://hydra.nixos.org/build/233213738 at 2023-09-02 - conferer-hspec # failure in job https://hydra.nixos.org/build/233225311 at 2023-09-02 - - conferer-provider-json # failure in job https://hydra.nixos.org/build/233195298 at 2023-09-02 - conferer-snap # failure in job https://hydra.nixos.org/build/233215013 at 2023-09-02 - - conferer-source-json # failure in job https://hydra.nixos.org/build/233195696 at 2023-09-02 - conferer-warp # failure in job https://hydra.nixos.org/build/295092470 at 2025-04-22 - - config-parser # failure in job https://hydra.nixos.org/build/233206136 at 2023-09-02 - - config-value-getopt # failure in job https://hydra.nixos.org/build/233204566 at 2023-09-02 - ConfigFile # failure in job https://hydra.nixos.org/build/294581227 at 2025-04-09 - - ConfigFileTH # failure in job https://hydra.nixos.org/build/233191126 at 2023-09-02 - - Configurable # failure in job https://hydra.nixos.org/build/233200781 at 2023-09-02 - - configuration # failure in job https://hydra.nixos.org/build/233195399 at 2023-09-02 - - confsolve # failure in job https://hydra.nixos.org/build/233194913 at 2023-09-02 - conftrack # failure in job https://hydra.nixos.org/build/269672273 at 2024-08-19 - - congruence-relation # failure in job https://hydra.nixos.org/build/233222125 at 2023-09-02 - - conjure # failure in job https://hydra.nixos.org/build/233220494 at 2023-09-02 - - conkin # failure in job https://hydra.nixos.org/build/233246485 at 2023-09-02 - - conlogger # failure in job https://hydra.nixos.org/build/233193354 at 2023-09-02 - connection # failure in job https://hydra.nixos.org/build/252717790 at 2024-03-16 - - connection-pool # failure in job https://hydra.nixos.org/build/233199817 at 2023-09-02 - - connection-string # failure in job https://hydra.nixos.org/build/233205032 at 2023-09-02 - connections # failure in job https://hydra.nixos.org/build/233193445 at 2023-09-02 - - Conscript # failure in job https://hydra.nixos.org/build/233216349 at 2023-09-02 - - consistent # failure in job https://hydra.nixos.org/build/233210122 at 2023-09-02 - - console-program # failure in job https://hydra.nixos.org/build/233207490 at 2023-09-02 - - console-style # failure in job https://hydra.nixos.org/build/252730000 at 2024-03-16 - const # failure in job https://hydra.nixos.org/build/233227000 at 2023-09-02 - - const-math-ghc-plugin # failure in job https://hydra.nixos.org/build/233198147 at 2023-09-02 - constable # failure in job https://hydra.nixos.org/build/233256456 at 2023-09-02 - - constr-eq # failure in job https://hydra.nixos.org/build/233231863 at 2023-09-02 - - constrained # failure in job https://hydra.nixos.org/build/233248444 at 2023-09-02 - - constrained-dynamic # failure in job https://hydra.nixos.org/build/233192949 at 2023-09-02 - - constrained-monads # failure in job https://hydra.nixos.org/build/233250865 at 2023-09-02 - - ConstraintKinds # failure in job https://hydra.nixos.org/build/233222006 at 2023-09-02 - constraints-deriving # failure in job https://hydra.nixos.org/build/233222833 at 2023-09-02 - - constraints-emerge # failure in job https://hydra.nixos.org/build/233242146 at 2023-09-02 - - constructive-algebra # failure in job https://hydra.nixos.org/build/233241970 at 2023-09-02 - - consul-haskell # failure in job https://hydra.nixos.org/build/233195306 at 2023-09-02 - - Consumer # failure in job https://hydra.nixos.org/build/233227840 at 2023-09-02 - - containers-benchmark # failure in job https://hydra.nixos.org/build/233244707 at 2023-09-02 - - containers-verified # failure in job https://hydra.nixos.org/build/233228855 at 2023-09-02 - - ContArrow # failure in job https://hydra.nixos.org/build/233215540 at 2023-09-02 - - context-stack # failure in job https://hydra.nixos.org/build/233228489 at 2023-09-02 - - ContextAlgebra # failure in job https://hydra.nixos.org/build/233197054 at 2023-09-02 - - contiguous-checked # failure in job https://hydra.nixos.org/build/233225639 at 2023-09-02 - - contiguous-fft # failure in job https://hydra.nixos.org/build/233197368 at 2023-09-02 - - continue # failure in job https://hydra.nixos.org/build/233231634 at 2023-09-02 - - continued-fractions # failure in job https://hydra.nixos.org/build/233258785 at 2023-09-02 + - constructible # previously transitively broken at 2025-09-08 - contra-tracers # failure in job https://hydra.nixos.org/build/233197959 at 2023-09-02 - contracheck-applicative # failure in job https://hydra.nixos.org/build/233255104 at 2023-09-02 - - Contract # failure in job https://hydra.nixos.org/build/233242103 at 2023-09-02 - control-dsl # failure in job https://hydra.nixos.org/build/233249037 at 2023-09-02 - - control-iso # failure in job https://hydra.nixos.org/build/233229763 at 2023-09-02 - - control-monad-failure # failure in job https://hydra.nixos.org/build/233240265 at 2023-09-02 - - control-monad-failure-mtl # failure in job https://hydra.nixos.org/build/233245249 at 2023-09-02 - - Control-Monad-ST2 # failure in job https://hydra.nixos.org/build/233222919 at 2023-09-02 - - contstuff-monads-tf # failure in job https://hydra.nixos.org/build/233224064 at 2023-09-02 - - contstuff-transformers # failure in job https://hydra.nixos.org/build/233244153 at 2023-09-02 - conversion-bytestring # failure in job https://hydra.nixos.org/build/295092506 at 2025-04-22 - convex-schema-parser # failure in job https://hydra.nixos.org/build/302801971 at 2025-07-27 - cookie-tray # failure in job https://hydra.nixos.org/build/295092527 at 2025-04-22 @@ -1029,1048 +293,300 @@ broken-packages: - copilot-bluespec # failure in job https://hydra.nixos.org/build/253685418 at 2024-03-31 - copilot-frp-sketch # copilot >=3.7 && <3.8, - copilot-verifier # failure in job https://hydra.nixos.org/build/297024747 at 2025-05-14 - - copr # failure in job https://hydra.nixos.org/build/233252310 at 2023-09-02 - COrdering # failure in job https://hydra.nixos.org/build/233232083 at 2023-09-02 - - core # failure in job https://hydra.nixos.org/build/233253971 at 2023-09-02 - - core-compiler # failure in job https://hydra.nixos.org/build/233250303 at 2023-09-02 - core-effect-effectful # failure in job https://hydra.nixos.org/build/252723824 at 2024-03-16 - - core-haskell # failure in job https://hydra.nixos.org/build/233222588 at 2023-09-02 - core-warn # failure in job https://hydra.nixos.org/build/233204404 at 2023-09-02 - - corebot-bliki # failure in job https://hydra.nixos.org/build/233241143 at 2023-09-02 - - CoreDump # failure in job https://hydra.nixos.org/build/233247860 at 2023-09-02 - - CoreErlang # failure in job https://hydra.nixos.org/build/233199110 at 2023-09-02 - - corenlp-parser # failure in job https://hydra.nixos.org/build/295092562 at 2025-04-22 - corenlp-types # failure in job https://hydra.nixos.org/build/243808366 at 2024-01-01 - - Coroutine # failure in job https://hydra.nixos.org/build/233211213 at 2023-09-02 - - coroutine-object # failure in job https://hydra.nixos.org/build/233220413 at 2023-09-02 - - couch-hs # failure in job https://hydra.nixos.org/build/233210189 at 2023-09-02 - - CouchDB # failure in job https://hydra.nixos.org/build/233253163 at 2023-09-02 - - couchdb-conduit # failure in job https://hydra.nixos.org/build/233227244 at 2023-09-02 - - counter # failure in job https://hydra.nixos.org/build/233193842 at 2023-09-02 - - country-codes # failure in job https://hydra.nixos.org/build/233248159 at 2023-09-02 - - courier # failure in job https://hydra.nixos.org/build/233215760 at 2023-09-02 - - court # failure in job https://hydra.nixos.org/build/233192047 at 2023-09-02 - - coverage # failure in job https://hydra.nixos.org/build/233199365 at 2023-09-02 - cozo-hs # failure in job https://hydra.nixos.org/build/241432654 at 2023-11-19 - - cparsing # failure in job https://hydra.nixos.org/build/233192377 at 2023-09-02 - - cpio-conduit # failure in job https://hydra.nixos.org/build/233220518 at 2023-09-02 - - CPL # failure in job https://hydra.nixos.org/build/252731771 at 2024-03-16 - - cplusplus-th # failure in job https://hydra.nixos.org/build/233204461 at 2023-09-02 - cps-except # failure in job https://hydra.nixos.org/build/252711064 at 2024-03-16 - - cpuperf # failure in job https://hydra.nixos.org/build/233252964 at 2023-09-02 - cql-io # failure in job https://hydra.nixos.org/build/233245286 at 2023-09-02 - - cqrs-core # failure in job https://hydra.nixos.org/build/233192102 at 2023-09-02 - - cr # failure in job https://hydra.nixos.org/build/233235318 at 2023-09-02 - - crack # failure in job https://hydra.nixos.org/build/233229111 at 2023-09-02 - cradle # failure in job https://hydra.nixos.org/build/259974954 at 2024-05-19 - Craft3e # failure in job https://hydra.nixos.org/build/233255152 at 2023-09-02 - - craftwerk # failure in job https://hydra.nixos.org/build/233221392 at 2023-09-02 - - crawlchain # failure in job https://hydra.nixos.org/build/233192450 at 2023-09-02 - - crc16 # failure in job https://hydra.nixos.org/build/233253624 at 2023-09-02 - crdt # failure in job https://hydra.nixos.org/build/233254930 at 2023-09-02 - creatur # failure in job https://hydra.nixos.org/build/233252591 at 2023-09-02 - - credential-store # failure in job https://hydra.nixos.org/build/233230143 at 2023-09-02 - credentials # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/237240683 at 2023-10-21 - crem # failure in job https://hydra.nixos.org/build/233240415 at 2023-09-02 - critbit # failure in job https://hydra.nixos.org/build/233237880 at 2023-09-02 - criterion-cmp # failure in job https://hydra.nixos.org/build/233192619 at 2023-09-02 - - criterion-plus # failure in job https://hydra.nixos.org/build/233194095 at 2023-09-02 - - criterion-to-html # failure in job https://hydra.nixos.org/build/233209983 at 2023-09-02 - - criu-rpc-types # failure in job https://hydra.nixos.org/build/252715844 at 2024-03-16 - - crjdt-haskell # failure in job https://hydra.nixos.org/build/233199652 at 2023-09-02 - - crockford # failure in job https://hydra.nixos.org/build/233210759 at 2023-09-02 - - crocodile # failure in job https://hydra.nixos.org/build/233222277 at 2023-09-02 - - cronus # failure in job https://hydra.nixos.org/build/233225303 at 2023-09-02 - - cruncher-types # failure in job https://hydra.nixos.org/build/233229024 at 2023-09-02 - - crunghc # failure in job https://hydra.nixos.org/build/233193295 at 2023-09-02 - Crypto # failure in job https://hydra.nixos.org/build/252738609 at 2024-03-16 - - crypto-cipher-benchmarks # failure in job https://hydra.nixos.org/build/233195297 at 2023-09-02 - crypto-enigma # failure in job https://hydra.nixos.org/build/252722224 at 2024-03-16 - crypto-keys-ssh # failure in job https://hydra.nixos.org/build/233222227 at 2023-09-02 - - crypto-multihash # failure in job https://hydra.nixos.org/build/233220770 at 2023-09-02 - - crypto-numbers # failure in job https://hydra.nixos.org/build/233225721 at 2023-09-02 - - crypto-pubkey-openssh # failure in job https://hydra.nixos.org/build/233207007 at 2023-09-02 - crypto-random # failure in job https://hydra.nixos.org/build/252715261 at 2024-03-16 - - crypto-random-effect # failure in job https://hydra.nixos.org/build/233236324 at 2023-09-02 - - crypto-simple # failure in job https://hydra.nixos.org/build/233192703 at 2023-09-02 - cryptocompare # failure in job https://hydra.nixos.org/build/233192898 at 2023-09-02 - - cryptoconditions # failure in job https://hydra.nixos.org/build/233211816 at 2023-09-02 - cryptoids-types # failure in job https://hydra.nixos.org/build/233242596 at 2023-09-02 - crypton-box # failure in job https://hydra.nixos.org/build/295092591 at 2025-04-22 - cryptsy-api # failure in job https://hydra.nixos.org/build/233195814 at 2023-09-02 - - csa # failure in job https://hydra.nixos.org/build/233233907 at 2023-09-02 - - cse-ghc-plugin # failure in job https://hydra.nixos.org/build/233251963 at 2023-09-02 - - csg # failure in job https://hydra.nixos.org/build/252719752 at 2024-03-16 - - CSPM-Frontend # failure in job https://hydra.nixos.org/build/233219295 at 2023-09-02 - - cspretty # failure in job https://hydra.nixos.org/build/233246796 at 2023-09-02 - - css # failure in job https://hydra.nixos.org/build/233220825 at 2023-09-02 - css-easings # failure in job https://hydra.nixos.org/build/233203513 at 2023-09-02 - css-selectors # failure in job https://hydra.nixos.org/build/233247710 at 2023-09-02 - css-simple # failure in job https://hydra.nixos.org/build/233220768 at 2023-09-02 - - csv-nptools # failure in job https://hydra.nixos.org/build/233215773 at 2023-09-02 - csv-sip # failure in job https://hydra.nixos.org/build/233211292 at 2023-09-02 - - ctemplate # failure in job https://hydra.nixos.org/build/233257909 at 2023-09-02 - - ctkl # failure in job https://hydra.nixos.org/build/233219516 at 2023-09-02 - - cubical # failure in job https://hydra.nixos.org/build/246186233 at 2024-01-13 - - cuboid # failure in job https://hydra.nixos.org/build/234462220 at 2023-09-13 - cuckoo # failure in job https://hydra.nixos.org/build/233210915 at 2023-09-02 - - cuckoo-filter # failure in job https://hydra.nixos.org/build/233226484 at 2023-09-02 - - cudd # failure in job https://hydra.nixos.org/build/252716117 at 2024-03-16 - cuddle # failure in job https://hydra.nixos.org/build/302802065 at 2025-07-27 - curl-aeson # failure in job https://hydra.nixos.org/build/233210106 at 2023-09-02 - curl-runnings # failure in job https://hydra.nixos.org/build/233258680 at 2023-09-02 - - currency-convert # failure in job https://hydra.nixos.org/build/233224509 at 2023-09-02 - - curry-base # failure in job https://hydra.nixos.org/build/233246647 at 2023-09-02 - curry-frontend # failure in job https://hydra.nixos.org/build/233190895 at 2023-09-02 - - CurryDB # failure in job https://hydra.nixos.org/build/233238995 at 2023-09-02 - - curryrs # failure in job https://hydra.nixos.org/build/233250943 at 2023-09-02 - cursedcsv # failure in job https://hydra.nixos.org/build/233253732 at 2023-09-02 - - curves # failure in job https://hydra.nixos.org/build/233237354 at 2023-09-02 - custom-interpolation # failure in job https://hydra.nixos.org/build/252711669 at 2024-03-16 - - custom-prelude # failure in job https://hydra.nixos.org/build/233216882 at 2023-09-02 - cut-the-crap # failure in job https://hydra.nixos.org/build/233238478 at 2023-09-02 - - CV # failure in job https://hydra.nixos.org/build/233223571 at 2023-09-02 - - d-bus # failure in job https://hydra.nixos.org/build/233228668 at 2023-09-02 - d10 # failure in job https://hydra.nixos.org/build/252720183 at 2024-03-16 - - d3js # failure in job https://hydra.nixos.org/build/233251474 at 2023-09-02 - - daemonize-doublefork # failure in job https://hydra.nixos.org/build/252714429 at 2024-03-16 - - dag # failure in job https://hydra.nixos.org/build/233220719 at 2023-09-02 - - DAG-Tournament # failure in job https://hydra.nixos.org/build/233218747 at 2023-09-02 - - damnpacket # failure in job https://hydra.nixos.org/build/233235248 at 2023-09-02 - - danibot # failure in job https://hydra.nixos.org/build/233197740 at 2023-09-02 - - Dao # failure in job https://hydra.nixos.org/build/233207745 at 2023-09-02 - - dao # failure in job https://hydra.nixos.org/build/233240654 at 2023-09-02 - dap # failure in job https://hydra.nixos.org/build/237239767 at 2023-10-21 - - darcs-buildpackage # failure in job https://hydra.nixos.org/build/233213566 at 2023-09-02 - - darcs-cabalized # failure in job https://hydra.nixos.org/build/233234765 at 2023-09-02 - - darcs-graph # failure in job https://hydra.nixos.org/build/233245230 at 2023-09-02 - - darcs-monitor # failure in job https://hydra.nixos.org/build/233249455 at 2023-09-02 - - darcs2dot # failure in job https://hydra.nixos.org/build/233209236 at 2023-09-02 - - darkplaces-rcon # failure in job https://hydra.nixos.org/build/233247609 at 2023-09-02 - - darkplaces-text # failure in job https://hydra.nixos.org/build/233249204 at 2023-09-02 - - data-accessor-monadLib # failure in job https://hydra.nixos.org/build/233212217 at 2023-09-02 - - data-accessor-monads-fd # failure in job https://hydra.nixos.org/build/233222664 at 2023-09-02 - - data-accessor-monads-tf # failure in job https://hydra.nixos.org/build/233252242 at 2023-09-02 - - data-accessor-template # failure in job https://hydra.nixos.org/build/233210431 at 2023-09-02 - data-ascii # failure in job https://hydra.nixos.org/build/233254894 at 2023-09-02 - - data-aviary # failure in job https://hydra.nixos.org/build/233243398 at 2023-09-02 - - data-base # failure in job https://hydra.nixos.org/build/233217341 at 2023-09-02 - - data-check # failure in job https://hydra.nixos.org/build/233210384 at 2023-09-02 - - data-combinator-gen # failure in job https://hydra.nixos.org/build/233193769 at 2023-09-02 - - data-concurrent-queue # failure in job https://hydra.nixos.org/build/233252841 at 2023-09-02 - - data-construction # failure in job https://hydra.nixos.org/build/233251464 at 2023-09-02 - - data-constructors # failure in job https://hydra.nixos.org/build/233241097 at 2023-09-02 - data-default-instances-base # failure in job https://hydra.nixos.org/build/304235552 at 2025-08-11 - - data-default-instances-bytestring # failure in job https://hydra.nixos.org/build/304235538 at 2025-08-11 - - data-default-instances-case-insensitive # failure in job https://hydra.nixos.org/build/304235539 at 2025-08-11 - data-default-instances-containers # failure in job https://hydra.nixos.org/build/304235541 at 2025-08-11 - data-default-instances-dlist # failure in job https://hydra.nixos.org/build/304235550 at 2025-08-11 - - data-default-instances-new-base # failure in job https://hydra.nixos.org/build/233256824 at 2023-09-02 - data-default-instances-old-locale # failure in job https://hydra.nixos.org/build/304235551 at 2025-08-11 - - data-default-instances-text # failure in job https://hydra.nixos.org/build/233209026 at 2023-09-02 - - data-default-instances-unordered-containers # failure in job https://hydra.nixos.org/build/304235558 at 2025-08-11 - - data-default-instances-vector # failure in job https://hydra.nixos.org/build/304235557 at 2025-08-11 - - data-dispersal # failure in job https://hydra.nixos.org/build/233242611 at 2023-09-02 - - data-diverse-lens # failure in job https://hydra.nixos.org/build/233221672 at 2023-09-02 - - data-easy # failure in job https://hydra.nixos.org/build/233250802 at 2023-09-02 - - data-emoticons # failure in job https://hydra.nixos.org/build/233255035 at 2023-09-02 - - data-filepath # failure in job https://hydra.nixos.org/build/233243231 at 2023-09-02 - - data-fin # failure in job https://hydra.nixos.org/build/233216426 at 2023-09-02 - - data-fin-simple # failure in job https://hydra.nixos.org/build/233191648 at 2023-09-02 - - data-flagset # failure in job https://hydra.nixos.org/build/233211231 at 2023-09-02 - - data-index # failure in job https://hydra.nixos.org/build/233197067 at 2023-09-02 - - data-ivar # failure in job https://hydra.nixos.org/build/233239043 at 2023-09-02 - - data-kiln # failure in job https://hydra.nixos.org/build/233220764 at 2023-09-02 - - data-lens-fd # failure in job https://hydra.nixos.org/build/233252537 at 2023-09-02 - - data-lens-template # failure in job https://hydra.nixos.org/build/233194446 at 2023-09-02 - - data-map-multikey # failure in job https://hydra.nixos.org/build/233223141 at 2023-09-02 - - data-named # failure in job https://hydra.nixos.org/build/233196088 at 2023-09-02 - - data-nat # failure in job https://hydra.nixos.org/build/233226801 at 2023-09-02 - - data-object # failure in job https://hydra.nixos.org/build/233207567 at 2023-09-02 - data-pdf-fieldreader # failure in job https://hydra.nixos.org/build/233246028 at 2023-09-02 - data-pprint # failure in job https://hydra.nixos.org/build/233221300 at 2023-09-02 - - data-quotientref # failure in job https://hydra.nixos.org/build/233258168 at 2023-09-02 - - data-r-tree # failure in job https://hydra.nixos.org/build/233232284 at 2023-09-02 - - data-reify-cse # failure in job https://hydra.nixos.org/build/233240126 at 2023-09-02 - - data-repr # failure in job https://hydra.nixos.org/build/233255402 at 2023-09-02 - - data-rev # failure in job https://hydra.nixos.org/build/233239036 at 2023-09-02 - - Data-Rope # failure in job https://hydra.nixos.org/build/233194176 at 2023-09-02 - - data-rope # failure in job https://hydra.nixos.org/build/233245124 at 2023-09-02 - - data-size # failure in job https://hydra.nixos.org/build/233192633 at 2023-09-02 - - data-spacepart # failure in job https://hydra.nixos.org/build/233239099 at 2023-09-02 - - data-standards # failure in job https://hydra.nixos.org/build/233219444 at 2023-09-02 - - data-store # failure in job https://hydra.nixos.org/build/233239477 at 2023-09-02 - - data-stringmap # failure in job https://hydra.nixos.org/build/233218683 at 2023-09-02 - - data-type # failure in job https://hydra.nixos.org/build/233196761 at 2023-09-02 - - data-util # failure in job https://hydra.nixos.org/build/233194965 at 2023-09-02 - data-validation # failure in job https://hydra.nixos.org/build/233217804 at 2023-09-02 - - data-variant # failure in job https://hydra.nixos.org/build/233236491 at 2023-09-02 - data-vector-growable # failure in job https://hydra.nixos.org/build/233244511 at 2023-09-02 - - database-migrate # failure in job https://hydra.nixos.org/build/233201597 at 2023-09-02 - - database-study # failure in job https://hydra.nixos.org/build/233222466 at 2023-09-02 - datacrypto # failure in job https://hydra.nixos.org/build/295092721 at 2025-04-22 - datadog # failure in job https://hydra.nixos.org/build/233191124 at 2023-09-02 - - DataIndex # failure in job https://hydra.nixos.org/build/233254506 at 2023-09-02 - - datalog # failure in job https://hydra.nixos.org/build/233242707 at 2023-09-02 - - datapacker # failure in job https://hydra.nixos.org/build/233206524 at 2023-09-02 - - datarobot # failure in job https://hydra.nixos.org/build/233206913 at 2023-09-02 - - DataTreeView # failure in job https://hydra.nixos.org/build/233213871 at 2023-09-02 - dates # failure in job https://hydra.nixos.org/build/233194418 at 2023-09-02 - - datetime # failure in job https://hydra.nixos.org/build/233231333 at 2023-09-02 - - datetime-sb # failure in job https://hydra.nixos.org/build/233213753 at 2023-09-02 - - dawdle # failure in job https://hydra.nixos.org/build/233201776 at 2023-09-02 - - dawg # failure in job https://hydra.nixos.org/build/233198731 at 2023-09-02 - dawg-ord # failure in job https://hydra.nixos.org/build/233192491 at 2023-09-02 - daytripper # failure in job https://hydra.nixos.org/build/233233486 at 2023-09-02 - dbcleaner # failure in job https://hydra.nixos.org/build/233203745 at 2023-09-02 - - dbf # failure in job https://hydra.nixos.org/build/233256644 at 2023-09-02 - - DBlimited # failure in job https://hydra.nixos.org/build/233249214 at 2023-09-02 - - dbm # failure in job https://hydra.nixos.org/build/233191264 at 2023-09-02 - dbmigrations # failure in job https://hydra.nixos.org/build/233242055 at 2023-09-02 - dbmonitor # failure in job https://hydra.nixos.org/build/234451674 at 2023-09-13 - - DBus # failure in job https://hydra.nixos.org/build/233207529 at 2023-09-02 - - dbus-core # failure in job https://hydra.nixos.org/build/233228888 at 2023-09-02 - - dbus-qq # failure in job https://hydra.nixos.org/build/233219927 at 2023-09-02 - - dclabel # failure in job https://hydra.nixos.org/build/233231206 at 2023-09-02 - - dclabel-eci11 # failure in job https://hydra.nixos.org/build/233210572 at 2023-09-02 - - dcpu16 # failure in job https://hydra.nixos.org/build/233201425 at 2023-09-02 - - ddc-base # failure in job https://hydra.nixos.org/build/233190710 at 2023-09-02 - - ddc-code # failure in job https://hydra.nixos.org/build/233226278 at 2023-09-02 - - dead-code-detection # failure in job https://hydra.nixos.org/build/233205957 at 2023-09-02 - - dead-simple-json # failure in job https://hydra.nixos.org/build/233204301 at 2023-09-02 - - Deadpan-DDP # failure in job https://hydra.nixos.org/build/233221990 at 2023-09-02 - dear-imgui # failure in job https://hydra.nixos.org/build/295092776 at 2025-04-22 - debruijn # failure in job https://hydra.nixos.org/build/283207128 at 2024-12-31 - debug-me # failure in job https://hydra.nixos.org/build/233213991 at 2023-09-02 - debug-trace-file # failure in job https://hydra.nixos.org/build/233231840 at 2023-09-02 - - debug-tracy # failure in job https://hydra.nixos.org/build/233242924 at 2023-09-02 - debugger-hs # failure in job https://hydra.nixos.org/build/233206302 at 2023-09-02 - - decepticons # failure in job https://hydra.nixos.org/build/233258681 at 2023-09-02 - decision-diagrams # failure in job https://hydra.nixos.org/build/233239021 at 2023-09-02 - - DecisionTree # failure in job https://hydra.nixos.org/build/233231682 at 2023-09-02 - - decoder-conduit # failure in job https://hydra.nixos.org/build/233228100 at 2023-09-02 - - deepcontrol # failure in job https://hydra.nixos.org/build/233238035 at 2023-09-02 - - DeepDarkFantasy # failure in job https://hydra.nixos.org/build/233242150 at 2023-09-02 - deepl # failure in job https://hydra.nixos.org/build/233232956 at 2023-09-02 - - deeplearning-hs # failure in job https://hydra.nixos.org/build/296049880 at 2025-05-02 - - deepseq-bounded # failure in job https://hydra.nixos.org/build/233211193 at 2023-09-02 - - deepseq-instances # failure in job https://hydra.nixos.org/build/233236748 at 2023-09-02 - - deepseq-magic # failure in job https://hydra.nixos.org/build/233228993 at 2023-09-02 - - deepseq-th # failure in job https://hydra.nixos.org/build/233233106 at 2023-09-02 - defaultable-map # failure in job https://hydra.nixos.org/build/252731762 at 2024-03-16 - - definitive-base # failure in job https://hydra.nixos.org/build/233255489 at 2023-09-02 - - deiko-config # failure in job https://hydra.nixos.org/build/233210895 at 2023-09-02 - - deka # failure in job https://hydra.nixos.org/build/233206540 at 2023-09-02 - - Delta-Lambda # failure in job https://hydra.nixos.org/build/233239406 at 2023-09-02 - delta-store # failure in job https://hydra.nixos.org/build/299186683 at 2025-06-23 - - delude # failure in job https://hydra.nixos.org/build/233231224 at 2023-09-02 - demangler # failure in job https://hydra.nixos.org/build/295092777 at 2025-04-22 - - demarcate # failure in job https://hydra.nixos.org/build/233194005 at 2023-09-02 - - denominate # failure in job https://hydra.nixos.org/build/233214619 at 2023-09-02 - dense # failure in job https://hydra.nixos.org/build/233205807 at 2023-09-02 - - dense-int-set # failure in job https://hydra.nixos.org/build/233214797 at 2023-09-02 - dep-t # failure in job https://hydra.nixos.org/build/233217847 at 2023-09-02 - dependency # failure in job https://hydra.nixos.org/build/252727325 at 2024-03-16 - - dependent-hashmap # failure in job https://hydra.nixos.org/build/233202881 at 2023-09-02 - - deptrack-core # failure in job https://hydra.nixos.org/build/233239143 at 2023-09-02 - - derangement # failure in job https://hydra.nixos.org/build/233209660 at 2023-09-02 - - derivation-trees # failure in job https://hydra.nixos.org/build/233254679 at 2023-09-02 - - derive # failure in job https://hydra.nixos.org/build/233209166 at 2023-09-02 - derive-enumerable # failure in job https://hydra.nixos.org/build/233254290 at 2023-09-02 - - derive-gadt # failure in job https://hydra.nixos.org/build/233220430 at 2023-09-02 - derive-has-field # failure in job https://hydra.nixos.org/build/252735604 at 2024-03-16 - derive-lifted-instances # failure in job https://hydra.nixos.org/build/233194868 at 2023-09-02 - - derive-monoid # failure in job https://hydra.nixos.org/build/233205670 at 2023-09-02 - derive-storable-plugin # failure in job https://hydra.nixos.org/build/295092800 at 2025-04-22 - - derive-trie # failure in job https://hydra.nixos.org/build/233207961 at 2023-09-02 - deriveJsonNoPrefix # failure in job https://hydra.nixos.org/build/233242453 at 2023-09-02 - deriving-openapi3 # failure in job https://hydra.nixos.org/build/252718489 at 2024-03-16 - - derp-lib # failure in job https://hydra.nixos.org/build/233199053 at 2023-09-02 - derulo # failure in job https://hydra.nixos.org/build/252725148 at 2024-03-16 - - describe # failure in job https://hydra.nixos.org/build/233207296 at 2023-09-02 - - descriptive # failure building library in job https://hydra.nixos.org/build/237623359 at 2023-10-21 - desktop-portal # failure in job https://hydra.nixos.org/build/233241462 at 2023-09-02 - - deterministic-game-engine # failure in job https://hydra.nixos.org/build/233259188 at 2023-09-02 - detour-via-sci # hlint test suite broken by hlint 3.8 or so https://hydra.nixos.org/build/295428383 - - detrospector # failure in job https://hydra.nixos.org/build/233209424 at 2023-09-02 - - deunicode # failure in job https://hydra.nixos.org/build/233220923 at 2023-09-02 - devanagari-transliterations # failure in job https://hydra.nixos.org/build/295092795 at 2025-04-22 - - devil # failure in job https://hydra.nixos.org/build/233251561 at 2023-09-02 - - Dflow # failure in job https://hydra.nixos.org/build/233233514 at 2023-09-02 - - dfsbuild # failure in job https://hydra.nixos.org/build/233209260 at 2023-09-02 - - dgim # failure in job https://hydra.nixos.org/build/233227538 at 2023-09-02 - - dgs # failure in job https://hydra.nixos.org/build/233221509 at 2023-09-02 - - dhall-check # failure in job https://hydra.nixos.org/build/233206425 at 2023-09-02 - dhall-csv # failure in job https://hydra.nixos.org/build/233256049 at 2023-09-02 - - dhall-fly # failure in job https://hydra.nixos.org/build/233220306 at 2023-09-02 - dhall-recursive-adt # failure in job https://hydra.nixos.org/build/233210665 at 2023-09-02 - dhall-text # failure in job https://hydra.nixos.org/build/233253809 at 2023-09-02 - dhall-text-shell # failure in job https://hydra.nixos.org/build/244399613 at 2024-01-01 - - dhall-to-cabal # failure in job https://hydra.nixos.org/build/233193270 at 2023-09-02 - - dhcp-lease-parser # failure in job https://hydra.nixos.org/build/233229124 at 2023-09-02 - - dhrun # failure in job https://hydra.nixos.org/build/233227529 at 2023-09-02 - dhscanner-ast # failure in job https://hydra.nixos.org/build/295092811 at 2025-04-22 - dhscanner-bitcode # failure in job https://hydra.nixos.org/build/270090641 at 2024-08-31 - - dia-base # failure in job https://hydra.nixos.org/build/233230896 at 2023-09-02 - diagnose # failure in job https://hydra.nixos.org/build/233231767 at 2023-09-02 - - diagrams-boolean # failure in job https://hydra.nixos.org/build/233202036 at 2023-09-02 - diagrams-haddock # failure in job https://hydra.nixos.org/build/295092844 at 2025-04-22 - - diagrams-pdf # failure in job https://hydra.nixos.org/build/233197864 at 2023-09-02 - - diagrams-qrcode # failure in job https://hydra.nixos.org/build/233229542 at 2023-09-02 - - diagrams-rubiks-cube # failure in job https://hydra.nixos.org/build/233213426 at 2023-09-02 - - diagrams-tikz # failure in job https://hydra.nixos.org/build/233237968 at 2023-09-02 + - diagrams-reflex # previously transitively broken at 2025-09-08 - dialogflow-fulfillment # failure in job https://hydra.nixos.org/build/233214148 at 2023-09-02 - - dib # failure in job https://hydra.nixos.org/build/233222111 at 2023-09-02 - - dice2tex # failure in job https://hydra.nixos.org/build/233240419 at 2023-09-02 - - dicom # failure in job https://hydra.nixos.org/build/233222473 at 2023-09-02 - - dictionaries # failure in job https://hydra.nixos.org/build/233210367 at 2023-09-02 - - dictparser # failure in job https://hydra.nixos.org/build/233215487 at 2023-09-02 - - diet # failure in job https://hydra.nixos.org/build/233259625 at 2023-09-02 - - diff-gestalt # failure in job https://hydra.nixos.org/build/233195164 at 2023-09-02 - - diffcabal # failure in job https://hydra.nixos.org/build/233203648 at 2023-09-02 - - DifferentialEvolution # failure in job https://hydra.nixos.org/build/233230795 at 2023-09-02 - - diffmap # failure in job https://hydra.nixos.org/build/233219852 at 2023-09-02 - - difftodo # failure in job https://hydra.nixos.org/build/233215179 at 2023-09-02 - - digest-pure # failure in job https://hydra.nixos.org/build/233194135 at 2023-09-02 - - digestive-bootstrap # failure in job https://hydra.nixos.org/build/233208165 at 2023-09-02 - - digestive-functors-aeson # failure in job https://hydra.nixos.org/build/233207417 at 2023-09-02 - - digestive-functors-happstack # failure in job https://hydra.nixos.org/build/233222641 at 2023-09-02 - - digestive-functors-heist # failure in job https://hydra.nixos.org/build/252718667 at 2024-03-16 - - digestive-functors-lucid # failure in job https://hydra.nixos.org/build/233209397 at 2023-09-02 - - digestive-functors-scotty # failure in job https://hydra.nixos.org/build/252719811 at 2024-03-16 - - digestive-functors-snap # failure in job https://hydra.nixos.org/build/233238117 at 2023-09-02 - digit # failure in job https://hydra.nixos.org/build/237241758 at 2023-10-21 - - DigitalOcean # failure in job https://hydra.nixos.org/build/233231291 at 2023-09-02 - - digitalocean-kzs # failure in job https://hydra.nixos.org/build/233251576 at 2023-09-02 - - dijkstra-simple # failure in job https://hydra.nixos.org/build/233218373 at 2023-09-02 - - DimensionalHash # failure in job https://hydra.nixos.org/build/233230945 at 2023-09-02 - dino # failure in job https://hydra.nixos.org/build/252725815 at 2024-03-16 - - diophantine # failure in job https://hydra.nixos.org/build/233229215 at 2023-09-02 - - diplomacy # failure in job https://hydra.nixos.org/build/233207895 at 2023-09-02 - - direct-binary-files # failure in job https://hydra.nixos.org/build/233246387 at 2023-09-02 - - direct-fastcgi # failure in job https://hydra.nixos.org/build/233258737 at 2023-09-02 - - direct-http # failure in job https://hydra.nixos.org/build/233232796 at 2023-09-02 - - direct-plugins # failure in job https://hydra.nixos.org/build/233211547 at 2023-09-02 - - directed-cubical # failure in job https://hydra.nixos.org/build/233215175 at 2023-09-02 - directory-contents # failure in job https://hydra.nixos.org/build/295092900 at 2025-04-22 - - direm # failure in job https://hydra.nixos.org/build/233211496 at 2023-09-02 - dirstream # failure in job https://hydra.nixos.org/build/273442606 at 2024-10-01 - disco # failure in job https://hydra.nixos.org/build/233212298 at 2023-09-02 - discord-register # failure in job https://hydra.nixos.org/build/295092898 at 2025-04-22 - - discord-types # failure in job https://hydra.nixos.org/build/233251778 at 2023-09-02 - - discordian-calendar # failure in job https://hydra.nixos.org/build/233218124 at 2023-09-02 - discount # failure in job https://hydra.nixos.org/build/256329404 at 2024-04-16 - - discrete # failure in job https://hydra.nixos.org/build/233206492 at 2023-09-02 - - DiscussionSupportSystem # failure in job https://hydra.nixos.org/build/233244662 at 2023-09-02 - - Dish # failure in job https://hydra.nixos.org/build/233233264 at 2023-09-02 - - disjoint-set # failure in job https://hydra.nixos.org/build/233201934 at 2023-09-02 - - disjoint-set-stateful # failure in job https://hydra.nixos.org/build/233253300 at 2023-09-02 - disk-bytes # failure in job https://hydra.nixos.org/build/252722796 at 2024-03-16 - - diskhash # failure in job https://hydra.nixos.org/build/233230362 at 2023-09-02 - - disposable # timeout - - Dist # failure in job https://hydra.nixos.org/build/233217811 at 2023-09-02 - - dist-upload # failure in job https://hydra.nixos.org/build/233225018 at 2023-09-02 - - distance # failure in job https://hydra.nixos.org/build/233255082 at 2023-09-02 - - distributed-fork-aws-lambda # failure in job https://hydra.nixos.org/build/295093001 at 2025-04-22 - - distributed-process-fsm # failure in job https://hydra.nixos.org/build/295092907 at 2025-04-22 - - distributed-process-lifted # failure in job https://hydra.nixos.org/build/295092891 at 2025-04-22 - - distributed-process-p2p # failure in job https://hydra.nixos.org/build/295092903 at 2025-04-22 - - distributed-process-platform # failure in job https://hydra.nixos.org/build/295092933 at 2025-04-22 - - distributed-process-registry # failure in job https://hydra.nixos.org/build/295092923 at 2025-04-22 - distributed-process-simplelocalnet # failure in job https://hydra.nixos.org/build/295092899 at 2025-04-22 - - distributed-process-task # failure in job https://hydra.nixos.org/build/295092905 at 2025-04-22 - - distribution # failure in job https://hydra.nixos.org/build/233227278 at 2023-09-02 - - ditto-lucid # failure in job https://hydra.nixos.org/build/233256989 at 2023-09-02 - - djembe # failure in job https://hydra.nixos.org/build/233201037 at 2023-09-02 - - djinn-ghc # failure in job https://hydra.nixos.org/build/233250488 at 2023-09-02 - - djinn-th # failure in job https://hydra.nixos.org/build/233219394 at 2023-09-02 - - dmcc # failure in job https://hydra.nixos.org/build/233259362 at 2023-09-02 - - dmenu # failure in job https://hydra.nixos.org/build/233230756 at 2023-09-02 - - dnscache # failure in job https://hydra.nixos.org/build/233227512 at 2023-09-02 - - dnsrbl # failure in job https://hydra.nixos.org/build/233196401 at 2023-09-02 - - dnssd # failure in job https://hydra.nixos.org/build/233194195 at 2023-09-02 - - do-notation-dsl # failure in job https://hydra.nixos.org/build/233252824 at 2023-09-02 - do-spaces # failure in job https://hydra.nixos.org/build/233244331 at 2023-09-02 - - dobutok # failure in job https://hydra.nixos.org/build/233221133 at 2023-09-02 - - dobutokO # failure in job https://hydra.nixos.org/build/233259278 at 2023-09-02 - - doccheck # failure in job https://hydra.nixos.org/build/233234564 at 2023-09-02 - - docidx # failure in job https://hydra.nixos.org/build/233253428 at 2023-09-02 - docker # failure in job https://hydra.nixos.org/build/233195921 at 2023-09-02 - - docker-build-cacher # failure in job https://hydra.nixos.org/build/233209897 at 2023-09-02 - - dockercook # failure in job https://hydra.nixos.org/build/233243738 at 2023-09-02 - dockerfile-creator # failure in job https://hydra.nixos.org/build/233225136 at 2023-09-02 - docrecords # failure in job https://hydra.nixos.org/build/233218633 at 2023-09-02 - - doctest-discover-configurator # failure in job https://hydra.nixos.org/build/233200147 at 2023-09-02 - - doctest-prop # failure in job https://hydra.nixos.org/build/233255947 at 2023-09-02 - - docusign-example # failure in job https://hydra.nixos.org/build/233242945 at 2023-09-02 - - docvim # failure in job https://hydra.nixos.org/build/233206985 at 2023-09-02 - - DOH # failure in job https://hydra.nixos.org/build/233231913 at 2023-09-02 - - doi # failure in job https://hydra.nixos.org/build/295092999 at 2025-04-22 - - dom-events # failure in job https://hydra.nixos.org/build/233231199 at 2023-09-02 - - dom-selector # failure in job https://hydra.nixos.org/build/233212663 at 2023-09-02 - domaindriven-core # failure in job https://hydra.nixos.org/build/233234739 at 2023-09-02 - - dominion # failure in job https://hydra.nixos.org/build/252714022 at 2024-03-16 - - domplate # failure in job https://hydra.nixos.org/build/233241400 at 2023-09-02 - dormouse-uri # failure in job https://hydra.nixos.org/build/233191706 at 2023-09-02 - - dot-linker # failure in job https://hydra.nixos.org/build/233237512 at 2023-09-02 - - dotfs # failure in job https://hydra.nixos.org/build/233200762 at 2023-09-02 - doublezip # failure in job https://hydra.nixos.org/build/233219270 at 2023-09-02 - - doublify-toolkit # failure in job https://hydra.nixos.org/build/233223302 at 2023-09-02 - dovin # failure in job https://hydra.nixos.org/build/252714139 at 2024-03-16 - downhill # failure in job https://hydra.nixos.org/build/252719666 at 2024-03-16 - - downloader # failure in job https://hydra.nixos.org/build/233195131 at 2023-09-02 - - dozenal # failure in job https://hydra.nixos.org/build/233255439 at 2023-09-02 - - dozens # failure in job https://hydra.nixos.org/build/233200638 at 2023-09-02 - - dph-base # failure in job https://hydra.nixos.org/build/233211189 at 2023-09-02 - - dpkg # failure in job https://hydra.nixos.org/build/233663149 at 2023-09-02 - - DPM # failure in job https://hydra.nixos.org/build/233191307 at 2023-09-02 - - dpor # failure in job https://hydra.nixos.org/build/233213785 at 2023-09-02 - dr-cabal # failure in job https://hydra.nixos.org/build/233253361 at 2023-09-02 - - dragen # failure in job https://hydra.nixos.org/build/233254270 at 2023-09-02 - - drClickOn # failure in job https://hydra.nixos.org/build/233217916 at 2023-09-02 - - dresdner-verkehrsbetriebe # failure in job https://hydra.nixos.org/build/233222542 at 2023-09-02 - - DrIFT # failure in job https://hydra.nixos.org/build/233220463 at 2023-09-02 - - DrIFT-cabalized # failure in job https://hydra.nixos.org/build/233221273 at 2023-09-02 - drifter-postgresql # failure in job https://hydra.nixos.org/build/233248442 at 2023-09-02 - driving-classes-plugin # failure in job https://hydra.nixos.org/build/252724273 at 2024-03-16 - - drmaa # failure in job https://hydra.nixos.org/build/233241074 at 2023-09-02 - - drone # failure in job https://hydra.nixos.org/build/233207037 at 2023-09-02 - dropbox # failure in job https://hydra.nixos.org/build/233598046 at 2023-09-02 - - ds-kanren # failure in job https://hydra.nixos.org/build/233216074 at 2023-09-02 - - dsc # failure in job https://hydra.nixos.org/build/233243851 at 2023-09-02 - - dsmc # failure in job https://hydra.nixos.org/build/252711940 at 2024-03-16 - - dson # failure in job https://hydra.nixos.org/build/233210971 at 2023-09-02 - - dson-parsec # failure in job https://hydra.nixos.org/build/233236453 at 2023-09-02 - - dstring # failure in job https://hydra.nixos.org/build/233238408 at 2023-09-02 - dsv # failure in job https://hydra.nixos.org/build/233228032 at 2023-09-02 - - DTC # failure in job https://hydra.nixos.org/build/233252009 at 2023-09-02 - - dtd-text # failure in job https://hydra.nixos.org/build/233203050 at 2023-09-02 - - dtw # failure in job https://hydra.nixos.org/build/233198932 at 2023-09-02 - - dual # failure in job https://hydra.nixos.org/build/252724683 at 2024-03-16 - dualizer # failure in job https://hydra.nixos.org/build/233237592 at 2023-09-02 - duckling # failure in job https://hydra.nixos.org/build/233247880 at 2023-09-02 - - duet # failure in job https://hydra.nixos.org/build/233219004 at 2023-09-02 - dump-core # failure in job https://hydra.nixos.org/build/233244428 at 2023-09-02 - - dunai-core # failure in job https://hydra.nixos.org/build/233255804 at 2023-09-02 - - Dung # failure in job https://hydra.nixos.org/build/233206343 at 2023-09-02 - dupIO # failure in job https://hydra.nixos.org/build/236688265 at 2023-10-04 - - duplo # failure in job https://hydra.nixos.org/build/233237341 at 2023-09-02 - - dura # failure in job https://hydra.nixos.org/build/233210320 at 2023-09-02 - duration # failure in job https://hydra.nixos.org/build/233207705 at 2023-09-02 - - dvault # failure in job https://hydra.nixos.org/build/233225259 at 2023-09-02 - - dvdread # failure in job https://hydra.nixos.org/build/233227587 at 2023-09-02 - - dvi-processing # failure in job https://hydra.nixos.org/build/233224281 at 2023-09-02 - - dwarf # failure in job https://hydra.nixos.org/build/233244074 at 2023-09-02 - dwarfadt # failure in job https://hydra.nixos.org/build/233254895 at 2023-09-02 - - dyckword # failure in job https://hydra.nixos.org/build/233256385 at 2023-09-02 - dyna-brick # failure in job https://hydra.nixos.org/build/233193254 at 2023-09-02 - dyna-processing # failure in job https://hydra.nixos.org/build/234451875 at 2023-09-13 - - dynamic-graph # failure in job https://hydra.nixos.org/build/252718318 at 2024-03-16 - - dynamic-graphs # failure in job https://hydra.nixos.org/build/233210231 at 2023-09-02 - - dynamic-mvector # failure in job https://hydra.nixos.org/build/233252826 at 2023-09-02 - - dynamic-object # failure in job https://hydra.nixos.org/build/233216605 at 2023-09-02 - dynamic-pipeline # failure in job https://hydra.nixos.org/build/295092993 at 2025-04-22 - - DynamicTimeWarp # failure in job https://hydra.nixos.org/build/233238244 at 2023-09-02 - - dynamodb-simple # failure building library in job https://hydra.nixos.org/build/237238415 at 2023-10-21 - - dynloader # failure in job https://hydra.nixos.org/build/233239248 at 2023-09-02 - - DysFRP # failure in job https://hydra.nixos.org/build/233214134 at 2023-09-02 - - dywapitchtrack # failure in job https://hydra.nixos.org/build/233195810 at 2023-09-02 - - dzen-dhall # failure in job https://hydra.nixos.org/build/233245800 at 2023-09-02 - - dzen-utils # failure in job https://hydra.nixos.org/build/233217831 at 2023-09-02 - e11y # failure in job https://hydra.nixos.org/build/252717308 at 2024-03-16 - - each # failure in job https://hydra.nixos.org/build/233259543 at 2023-09-02 - - eager-sockets # failure in job https://hydra.nixos.org/build/233212504 at 2023-09-02 - - earclipper # failure in job https://hydra.nixos.org/build/233212721 at 2023-09-02 - - earcut # failure in job https://hydra.nixos.org/build/233211385 at 2023-09-02 - early # failure in job https://hydra.nixos.org/build/233252768 at 2023-09-02 - - easy-api # failure in job https://hydra.nixos.org/build/233208757 at 2023-09-02 - easy-args # failure in job https://hydra.nixos.org/build/233221956 at 2023-09-02 - - easy-bitcoin # failure in job https://hydra.nixos.org/build/233201882 at 2023-09-02 - - easyjson # failure in job https://hydra.nixos.org/build/233199317 at 2023-09-02 - easyplot # failure in job https://hydra.nixos.org/build/233213312 at 2023-09-02 - - easyrender # failure in job https://hydra.nixos.org/build/252710524 at 2024-03-16 - - easytest # failure in job https://hydra.nixos.org/build/233209710 at 2023-09-02 - - ebeats # failure in job https://hydra.nixos.org/build/233235039 at 2023-09-02 - ebird-client # failure in job https://hydra.nixos.org/build/295093002 at 2025-04-22 - - ebnf-bff # failure in job https://hydra.nixos.org/build/233221694 at 2023-09-02 - - ec2-unikernel # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/237245061 at 2023-10-21 - eccrypto # failure in job https://hydra.nixos.org/build/295093032 at 2025-04-22 - eccrypto-ed25519-bindings # failure in job https://hydra.nixos.org/build/233217399 at 2023-09-02 - - ecma262 # failure in job https://hydra.nixos.org/build/233260026 at 2023-09-02 - ecta # failure in job https://hydra.nixos.org/build/241421274 at 2023-11-19 - ecta-plugin # failure in job https://hydra.nixos.org/build/233224764 at 2023-09-02 - - ecu # failure in job https://hydra.nixos.org/build/233230797 at 2023-09-02 - - eddie # failure in job https://hydra.nixos.org/build/233254499 at 2023-09-02 - ede # failure in job https://hydra.nixos.org/build/233207345 at 2023-09-02 - - edenmodules # failure in job https://hydra.nixos.org/build/233255833 at 2023-09-02 - - edf # failure in job https://hydra.nixos.org/build/233257484 at 2023-09-02 - - edis # failure in job https://hydra.nixos.org/build/233258962 at 2023-09-02 - - edit # failure in job https://hydra.nixos.org/build/233237521 at 2023-09-02 - - edit-lenses # failure in job https://hydra.nixos.org/build/233195827 at 2023-09-02 - - editline # failure in job https://hydra.nixos.org/build/233259515 at 2023-09-02 - edits # failure in job https://hydra.nixos.org/build/295093075 at 2025-04-22 - - effect-handlers # failure in job https://hydra.nixos.org/build/233234988 at 2023-09-02 - effectful-st # failure in job https://hydra.nixos.org/build/233248591 at 2023-09-02 - effectful-zoo # failure in job https://hydra.nixos.org/build/283208805 at 2024-12-31 - - effective-aspects # failure in job https://hydra.nixos.org/build/233223120 at 2023-09-02 - effet # failure in job https://hydra.nixos.org/build/233204265 at 2023-09-02 - - effin # failure in job https://hydra.nixos.org/build/233212960 at 2023-09-02 - eflint # failure in job https://hydra.nixos.org/build/295122827 at 2025-04-22 - egison-pattern-src-haskell-mode # failure in job https://hydra.nixos.org/build/295093048 at 2025-04-22 - - ehaskell # failure in job https://hydra.nixos.org/build/233196183 at 2023-09-02 - - ehs # failure in job https://hydra.nixos.org/build/233234594 at 2023-09-02 - - eibd-client-simple # failure in job https://hydra.nixos.org/build/233225416 at 2023-09-02 - - eigen # failure in job https://hydra.nixos.org/build/233204115 at 2023-09-02 - Eight-Ball-Pool-Hack-Cheats # failure in job https://hydra.nixos.org/build/233211937 at 2023-09-02 - eio # failure in job https://hydra.nixos.org/build/233256103 at 2023-09-02 - - either-both # failure in job https://hydra.nixos.org/build/252717090 at 2024-03-16 - either-unwrap # failure in job https://hydra.nixos.org/build/233254495 at 2023-09-02 - - EitherT # failure in job https://hydra.nixos.org/build/233217056 at 2023-09-02 - ejdb2-binding # failure in job https://hydra.nixos.org/build/233253666 at 2023-09-02 - - ekg-bosun # failure in job https://hydra.nixos.org/build/233250564 at 2023-09-02 - - ekg-cloudwatch # failure in job https://hydra.nixos.org/build/237236508 at 2023-10-21 - - ekg-elastic # failure in job https://hydra.nixos.org/build/233204565 at 2023-09-02 - - ekg-elasticsearch # failure in job https://hydra.nixos.org/build/233234000 at 2023-09-02 - - ekg-log # failure in job https://hydra.nixos.org/build/233218201 at 2023-09-02 - - ekg-push # failure in job https://hydra.nixos.org/build/233249323 at 2023-09-02 - - ekg-rrd # failure in job https://hydra.nixos.org/build/233214672 at 2023-09-02 - - elevator # failure in job https://hydra.nixos.org/build/233213794 at 2023-09-02 - - elision # failure in job https://hydra.nixos.org/build/233218969 at 2023-09-02 - - Elm # Elm is no longer actively maintained on Hackage: https://github.com/NixOS/nixpkgs/pull/9233. - - elm-build-lib # Elm is no longer actively maintained on Hackage: https://github.com/NixOS/nixpkgs/pull/9233. - - elm-compiler # Elm is no longer actively maintained on Hackage: https://github.com/NixOS/nixpkgs/pull/9233. - elm-export-persistent # failure in job https://hydra.nixos.org/build/233248910 at 2023-09-02 - - elm-get # Elm is no longer actively maintained on Hackage: https://github.com/NixOS/nixpkgs/pull/9233. - - elm-make # Elm is no longer actively maintained on Hackage: https://github.com/NixOS/nixpkgs/pull/9233. - - elm-package # Elm is no longer actively maintained on Hackage: https://github.com/NixOS/nixpkgs/pull/9233. - - elm-reactor # Elm is no longer actively maintained on Hackage: https://github.com/NixOS/nixpkgs/pull/9233. - - elm-repl # Elm is no longer actively maintained on Hackage: https://github.com/NixOS/nixpkgs/pull/9233. - - elm-server # Elm is no longer actively maintained on Hackage: https://github.com/NixOS/nixpkgs/pull/9233. - - elm-websocket # failure in job https://hydra.nixos.org/build/233192201 at 2023-09-02 - - elm-yesod # Elm is no longer actively maintained on Hackage: https://github.com/NixOS/nixpkgs/pull/9233. - elminator # failure in job https://hydra.nixos.org/build/252729949 at 2024-03-16 - - elocrypt # failure in job https://hydra.nixos.org/build/233229627 at 2023-09-02 + - elsa # previously transitively broken at 2025-09-08 - ema-generics # failure in job https://hydra.nixos.org/build/233200038 at 2023-09-02 - - email # deprecated, depends on outdated dependencies - - email-header # failure in job https://hydra.nixos.org/build/233243713 at 2023-09-02 - - email-postmark # failure in job https://hydra.nixos.org/build/233245426 at 2023-09-02 - - emailaddress # failure in job https://hydra.nixos.org/build/233202700 at 2023-09-02 - embed-config # failure in job https://hydra.nixos.org/build/233237733 at 2023-09-02 - - embla # failure in job https://hydra.nixos.org/build/233206703 at 2023-09-02 - - emgm # failure in job https://hydra.nixos.org/build/233257789 at 2023-09-02 - - Emping # failure in job https://hydra.nixos.org/build/233229400 at 2023-09-02 - - Empty # failure in job https://hydra.nixos.org/build/233228745 at 2023-09-02 - - empty-monad # failure in job https://hydra.nixos.org/build/233259244 at 2023-09-02 - - enchant # failure in job https://hydra.nixos.org/build/233196992 at 2023-09-02 - - Encode # failure in job https://hydra.nixos.org/build/252712962 at 2024-03-16 - - encode-string # failure in job https://hydra.nixos.org/build/233251833 at 2023-09-02 - - encoding-io # failure in job https://hydra.nixos.org/build/233208714 at 2023-09-02 - - encryptable # failure in job https://hydra.nixos.org/build/233215911 at 2023-09-02 - - endo # failure in job https://hydra.nixos.org/build/233222561 at 2023-09-02 - engine-io # failure in job https://hydra.nixos.org/build/233234034 at 2023-09-02 - - entwine # failure in job https://hydra.nixos.org/build/233239261 at 2023-09-02 - enum-text # failure in job https://hydra.nixos.org/build/233194373 at 2023-09-02 - - enum-utf8 # failure in job https://hydra.nixos.org/build/233234628 at 2023-09-02 - - EnumContainers # failure in job https://hydra.nixos.org/build/233258056 at 2023-09-02 - - enumerator # failure in job https://hydra.nixos.org/build/233246612 at 2023-09-02 - - EnumMap # failure in job https://hydra.nixos.org/build/233250249 at 2023-09-02 - - enummapmap # failure in job https://hydra.nixos.org/build/233228525 at 2023-09-02 - - enummaps # failure in job https://hydra.nixos.org/build/233251965 at 2023-09-02 - enummapset-th # failure in job https://hydra.nixos.org/build/233225322 at 2023-09-02 - - env-parser # failure in job https://hydra.nixos.org/build/233237933 at 2023-09-02 - envelope # failure in job https://hydra.nixos.org/build/233199309 at 2023-09-02 - - envstatus # failure in job https://hydra.nixos.org/build/233257940 at 2023-09-02 - - envy-extensible # failure in job https://hydra.nixos.org/build/233229313 at 2023-09-02 - - epanet-haskell # failure in job https://hydra.nixos.org/build/233197331 at 2023-09-02 - - epass # failure in job https://hydra.nixos.org/build/233194117 at 2023-09-02 - epi-sim # failure in job https://hydra.nixos.org/build/233246076 at 2023-09-02 - - epic # failure in job https://hydra.nixos.org/build/233204921 at 2023-09-02 - - epoll # failure in job https://hydra.nixos.org/build/233247564 at 2023-09-02 - - eprocess # failure in job https://hydra.nixos.org/build/252722826 at 2024-03-16 - epub-tools # failure in job https://hydra.nixos.org/build/252717848 at 2024-03-16 - - epubname # failure in job https://hydra.nixos.org/build/233198937 at 2023-09-02 - - Eq # failure in job https://hydra.nixos.org/build/233200216 at 2023-09-02 - - EqualitySolver # failure in job https://hydra.nixos.org/build/233190999 at 2023-09-02 - - equational-reasoning-induction # failure in job https://hydra.nixos.org/build/233235280 at 2023-09-02 - - equeue # failure in job https://hydra.nixos.org/build/233237274 at 2023-09-02 - - erd # failure in job https://hydra.nixos.org/build/233215438 at 2023-09-02 - erebos # failure in job https://hydra.nixos.org/build/252716136 at 2024-03-16 - - erlang # failure in job https://hydra.nixos.org/build/233195837 at 2023-09-02 - erlang-ffi # failure in job https://hydra.nixos.org/build/233233314 at 2023-09-02 - - eros # failure in job https://hydra.nixos.org/build/233247983 at 2023-09-02 - - errno # failure in job https://hydra.nixos.org/build/252725782 at 2024-03-16 - - error-context # failure in job https://hydra.nixos.org/build/233245027 at 2023-09-02 - - error-continuations # failure in job https://hydra.nixos.org/build/233232357 at 2023-09-02 - - error-list # failure in job https://hydra.nixos.org/build/233237173 at 2023-09-02 - - error-loc # failure in job https://hydra.nixos.org/build/233243511 at 2023-09-02 - - error-util # failure in job https://hydra.nixos.org/build/233233764 at 2023-09-02 - - ersaconcat # failure in job https://hydra.nixos.org/build/233196142 at 2023-09-02 + - eros-http # previously transitively broken at 2025-09-08 - ersatz # failure in job https://hydra.nixos.org/build/233256809 at 2023-09-02 - - ert # failure in job https://hydra.nixos.org/build/233250717 at 2023-09-02 - - escape-artist # failure in job https://hydra.nixos.org/build/233195305 at 2023-09-02 - - escoger # failure in job https://hydra.nixos.org/build/233224731 at 2023-09-02 - espial # failure in job https://hydra.nixos.org/build/295093136 at 2025-04-22 - esqueleto-pgcrypto # failure in job https://hydra.nixos.org/build/233208955 at 2023-09-02 - esqueleto-textsearch # failure in job https://hydra.nixos.org/build/233239400 at 2023-09-02 - - ess # failure in job https://hydra.nixos.org/build/233218789 at 2023-09-02 - essence-of-live-coding-gloss-example # failure in job https://hydra.nixos.org/build/295093130 at 2025-04-22 - essence-of-live-coding-pulse-example # failure in job https://hydra.nixos.org/build/295093155 at 2025-04-22 - - estimators # failure in job https://hydra.nixos.org/build/295093128 at 2025-04-22 - - EstProgress # failure in job https://hydra.nixos.org/build/233236617 at 2023-09-02 - - Etage # failure in job https://hydra.nixos.org/build/233219527 at 2023-09-02 - - etc # failure in job https://hydra.nixos.org/build/233199192 at 2023-09-02 - - etcd # failure in job https://hydra.nixos.org/build/233196041 at 2023-09-02 - - ethereum-analyzer-deps # failure in job https://hydra.nixos.org/build/252732846 at 2024-03-16 - - ethereum-rlp # failure in job https://hydra.nixos.org/build/233236392 at 2023-09-02 - - eurofxref # failure in job https://hydra.nixos.org/build/233230942 at 2023-09-02 + - eths-rlp # previously transitively broken at 2025-09-08 - evdev-streamly # failure in job https://hydra.nixos.org/build/295093212 at 2025-04-22 - eve # failure in job https://hydra.nixos.org/build/252715362 at 2024-03-16 - - eve-cli # failure in job https://hydra.nixos.org/build/233254555 at 2023-09-02 - eved # failure in job https://hydra.nixos.org/build/233194319 at 2023-09-02 - - event # failure in job https://hydra.nixos.org/build/233209756 at 2023-09-02 - - event-driven # failure in job https://hydra.nixos.org/build/233233946 at 2023-09-02 - - eventloop # failure in job https://hydra.nixos.org/build/295093203 at 2025-04-22 - - eventsource-api # failure in job https://hydra.nixos.org/build/233243220 at 2023-09-02 - - eventsourced # failure in job https://hydra.nixos.org/build/233192731 at 2023-09-02 + - eventsource-store-specs # previously transitively broken at 2025-09-08 - eventstore # failure in job https://hydra.nixos.org/build/233202734 at 2023-09-02 - eventuo11y # failure in job https://hydra.nixos.org/build/252711747 at 2024-03-16 - eventuo11y-dsl # failure in job https://hydra.nixos.org/build/252711345 at 2024-03-16 - evoke # failure in job https://hydra.nixos.org/build/233213948 at 2023-09-02 - EVP # failure in job https://hydra.nixos.org/build/237241792 at 2023-10-21 - - ewe # failure in job https://hydra.nixos.org/build/233217228 at 2023-09-02 - - exact-cover # failure in job https://hydra.nixos.org/build/233203182 at 2023-09-02 - - exact-real-positional # failure in job https://hydra.nixos.org/build/233239627 at 2023-09-02 - - except-exceptions # failure in job https://hydra.nixos.org/build/233191953 at 2023-09-02 - - exception-monads-fd # failure in job https://hydra.nixos.org/build/233224946 at 2023-09-02 - - exception-monads-tf # failure in job https://hydra.nixos.org/build/252739085 at 2024-03-16 - exception-via # failure in job https://hydra.nixos.org/build/233197670 at 2023-09-02 - - exceptional # failure in job https://hydra.nixos.org/build/233214345 at 2023-09-02 - - exceptionfree-readfile # failure in job https://hydra.nixos.org/build/233222995 at 2023-09-02 - - exchangerates # failure in job https://hydra.nixos.org/build/233230944 at 2023-09-02 - - execs # failure in job https://hydra.nixos.org/build/233210274 at 2023-09-02 - - executor # failure in job https://hydra.nixos.org/build/233250118 at 2023-09-02 - exh # failure in job https://hydra.nixos.org/build/233253883 at 2023-09-02 - - exhaustive # failure in job https://hydra.nixos.org/build/233238024 at 2023-09-02 - - exherbo-cabal # failure in job https://hydra.nixos.org/build/233206319 at 2023-09-02 - - exif # failure in job https://hydra.nixos.org/build/233229247 at 2023-09-02 - - exigo-schema # failure in job https://hydra.nixos.org/build/233197808 at 2023-09-02 - - exinst-deepseq # failure in job https://hydra.nixos.org/build/233207947 at 2023-09-02 - - exinst-hashable # failure in job https://hydra.nixos.org/build/233210438 at 2023-09-02 - - exists # failure in job https://hydra.nixos.org/build/233243541 at 2023-09-02 - exitcode # failure in job https://hydra.nixos.org/build/233238454 at 2023-09-02 - exotic-list-monads # failure in job https://hydra.nixos.org/build/302802593 at 2025-07-27 - - exp-cache # failure in job https://hydra.nixos.org/build/233220561 at 2023-09-02 - exp-extended # failure in job https://hydra.nixos.org/build/233236139 at 2023-09-02 - experimenter # failure in job https://hydra.nixos.org/build/252726011 at 2024-03-16 - - explain # failure in job https://hydra.nixos.org/build/233207210 at 2023-09-02 - - explicit-constraint-lens # failure in job https://hydra.nixos.org/build/233230188 at 2023-09-02 - - explicit-determinant # failure in job https://hydra.nixos.org/build/233246543 at 2023-09-02 - - explicit-iomodes # failure in job https://hydra.nixos.org/build/233247342 at 2023-09-02 - - exposed-containers # failure in job https://hydra.nixos.org/build/233200558 at 2023-09-02 - - expression-parser # failure in job https://hydra.nixos.org/build/233250586 at 2023-09-02 - - expressions # failure in job https://hydra.nixos.org/build/233212192 at 2023-09-02 - - expresso # failure in job https://hydra.nixos.org/build/233208513 at 2023-09-02 - - extcore # failure in job https://hydra.nixos.org/build/233230369 at 2023-09-02 - - extended-categories # failure in job https://hydra.nixos.org/build/233258803 at 2023-09-02 - extended-containers # failure in job https://hydra.nixos.org/build/233226876 at 2023-09-02 - - extensible-data # failure in job https://hydra.nixos.org/build/233198917 at 2023-09-02 - extensible-effects-concurrent # failure in job https://hydra.nixos.org/build/233233685 at 2023-09-02 - extensioneer # failure in job https://hydra.nixos.org/build/233663099 at 2023-09-02 - - external-sort # failure in job https://hydra.nixos.org/build/233244337 at 2023-09-02 - extism # failure in job https://hydra.nixos.org/build/233242807 at 2023-09-02 - extism-manifest # failure in job https://hydra.nixos.org/build/295093191 at 2025-04-22 - extism-pdk # failure in job https://hydra.nixos.org/build/237239071 at 2023-10-21 - - Extra # failure in job https://hydra.nixos.org/build/233243671 at 2023-09-02 - - extractelf # failure in job https://hydra.nixos.org/build/233240806 at 2023-09-02 - extralife # failure in job https://hydra.nixos.org/build/233236550 at 2023-09-02 - - ez-couch # failure in job https://hydra.nixos.org/build/233216577 at 2023-09-02 - - ez3 # failure in job https://hydra.nixos.org/build/233233362 at 2023-09-02 - - f-algebra-gen # failure in job https://hydra.nixos.org/build/233194303 at 2023-09-02 - - f-ree-hack-cheats-free-v-bucks-generator # failure in job https://hydra.nixos.org/build/233225159 at 2023-09-02 - Facebook-Password-Hacker-Online-Latest-Version # failure in job https://hydra.nixos.org/build/233194533 at 2023-09-02 - - faceted # failure in job https://hydra.nixos.org/build/233231120 at 2023-09-02 - factory # failure in job https://hydra.nixos.org/build/233222084 at 2023-09-02 - - facts # failure in job https://hydra.nixos.org/build/233194410 at 2023-09-02 - - Facts # failure in job https://hydra.nixos.org/build/233224533 at 2023-09-02 - - fad # failure in job https://hydra.nixos.org/build/252716941 at 2024-03-16 - - failable # failure in job https://hydra.nixos.org/build/252731566 at 2024-03-16 - - failable-list # failure in job https://hydra.nixos.org/build/233198924 at 2023-09-02 - failure # failure in job https://hydra.nixos.org/build/252738855 at 2024-03-16 - - failure-detector # failure in job https://hydra.nixos.org/build/233244451 at 2023-09-02 - fake # failure in job https://hydra.nixos.org/build/233199052 at 2023-09-02 - - fake-type # failure in job https://hydra.nixos.org/build/233197081 at 2023-09-02 - faktory # failure in job https://hydra.nixos.org/build/233240158 at 2023-09-02 - - falling-turnip # failure in job https://hydra.nixos.org/build/252737877 at 2024-03-16 - - fast-combinatorics # failure in job https://hydra.nixos.org/build/233250615 at 2023-09-02 - fast-digits # failure in job https://hydra.nixos.org/build/295093219 at 2025-04-22 - fast-downward # failure in job https://hydra.nixos.org/build/252721794 at 2024-03-16 - - fast-nats # failure in job https://hydra.nixos.org/build/233238596 at 2023-09-02 - - fast-tagsoup-utf8-only # failure in job https://hydra.nixos.org/build/233202322 at 2023-09-02 - - fastbayes # failure in job https://hydra.nixos.org/build/233223718 at 2023-09-02 - - fastedit # failure in job https://hydra.nixos.org/build/233213468 at 2023-09-02 - faster-megaparsec # failure in job https://hydra.nixos.org/build/252713238 at 2024-03-16 - - fastly # failure in job https://hydra.nixos.org/build/233213136 at 2023-09-02 - fastmemo # failure in job https://hydra.nixos.org/build/252739389 at 2024-03-16 - - fastpbkdf2 # failure in job https://hydra.nixos.org/build/233218574 at 2023-09-02 - - FastPush # failure in job https://hydra.nixos.org/build/233224507 at 2023-09-02 - fastsum # failure in job https://hydra.nixos.org/build/252716407 at 2024-03-16 - - FastxPipe # failure in job https://hydra.nixos.org/build/233232889 at 2023-09-02 - - fathead-util # failure in job https://hydra.nixos.org/build/233255882 at 2023-09-02 - fay # failure in job https://hydra.nixos.org/build/233197122 at 2023-09-02 - - fb-persistent # failure in job https://hydra.nixos.org/build/233193999 at 2023-09-02 - fb-util # failure in job https://hydra.nixos.org/build/296519228 at 2025-05-14 - - fbmessenger-api # failure in job https://hydra.nixos.org/build/233247641 at 2023-09-02 - - fca # failure in job https://hydra.nixos.org/build/233205050 at 2023-09-02 - - fcache # failure in job https://hydra.nixos.org/build/233258505 at 2023-09-02 - fcf-composite # failure in job https://hydra.nixos.org/build/233252957 at 2023-09-02 - fcf-containers # failure in job https://hydra.nixos.org/build/252729702 at 2024-03-16 - fcf-graphs # failure in job https://hydra.nixos.org/build/233254885 at 2023-09-02 - - fcg # failure in job https://hydra.nixos.org/build/233228656 at 2023-09-02 - - fckeditor # failure in job https://hydra.nixos.org/build/233226949 at 2023-09-02 - - fclabels-monadlib # failure in job https://hydra.nixos.org/build/233192353 at 2023-09-02 - - fcm-client # failure in job https://hydra.nixos.org/build/233241459 at 2023-09-02 - - fdo-trash # failure in job https://hydra.nixos.org/build/233244987 at 2023-09-02 - - feather # failure in job https://hydra.nixos.org/build/233192230 at 2023-09-02 - - feature-flipper # failure in job https://hydra.nixos.org/build/233192476 at 2023-09-02 - - fedora-packages # failure in job https://hydra.nixos.org/build/233256230 at 2023-09-02 - fedora-repoquery # failure in job https://hydra.nixos.org/build/269676305 at 2024-08-19 - - feed-cli # failure in job https://hydra.nixos.org/build/233234086 at 2023-09-02 - - feed-collect # failure in job https://hydra.nixos.org/build/233203100 at 2023-09-02 - - feed-crawl # failure in job https://hydra.nixos.org/build/233227566 at 2023-09-02 - feedback # failure in job https://hydra.nixos.org/build/295093247 at 2025-04-22 + - fei-base # previously transitively broken at 2025-09-08 - fei-cocoapi # failure in job https://hydra.nixos.org/build/252726625 at 2024-03-16 - - fenfire # failure in job https://hydra.nixos.org/build/233254038 at 2023-09-02 - - fernet # failure in job https://hydra.nixos.org/build/233228830 at 2023-09-02 - - FerryCore # failure in job https://hydra.nixos.org/build/233198667 at 2023-09-02 + - fei-modelzoo # previously transitively broken at 2025-09-08 + - fei-nn # previously transitively broken at 2025-09-08 - festival # failure in job https://hydra.nixos.org/build/233257483 at 2023-09-02 - - Feval # failure in job https://hydra.nixos.org/build/233233117 at 2023-09-02 - - fez-conf # failure in job https://hydra.nixos.org/build/233240692 at 2023-09-02 - - ffeed # failure in job https://hydra.nixos.org/build/233209944 at 2023-09-02 - ffmpeg-light # failure in job https://hydra.nixos.org/build/233213041 at 2023-09-02 - - ffunctor # failure in job https://hydra.nixos.org/build/233247887 at 2023-09-02 - - fgl-extras-decompositions # failure in job https://hydra.nixos.org/build/233237744 at 2023-09-02 - - fib # failure in job https://hydra.nixos.org/build/233225971 at 2023-09-02 - - fibon # failure in job https://hydra.nixos.org/build/233215748 at 2023-09-02 - - fields # failure in job https://hydra.nixos.org/build/233197886 at 2023-09-02 + - ffmpeg-tutorials # previously transitively broken at 2025-09-08 - fields-and-cases # failure in job https://hydra.nixos.org/build/267971589 at 2024-07-31 - - fieldwise # failure in job https://hydra.nixos.org/build/233202285 at 2023-09-02 - - fig # failure in job https://hydra.nixos.org/build/233212262 at 2023-09-02 - - file-collection # failure in job https://hydra.nixos.org/build/233205586 at 2023-09-02 - - file-command-qq # failure in job https://hydra.nixos.org/build/233205913 at 2023-09-02 - - file-embed-poly # failure in job https://hydra.nixos.org/build/233252504 at 2023-09-02 - - file-location # failure in job https://hydra.nixos.org/build/233202456 at 2023-09-02 - - file-templates # failure in job https://hydra.nixos.org/build/233255339 at 2023-09-02 - - filediff # failure in job https://hydra.nixos.org/build/233256056 at 2023-09-02 - - FileManip # failure in job https://hydra.nixos.org/build/233237292 at 2023-09-02 - - FileManipCompat # failure in job https://hydra.nixos.org/build/233254887 at 2023-09-02 - - fileneglect # failure in job https://hydra.nixos.org/build/233209920 at 2023-09-02 - filepather # failure in job https://hydra.nixos.org/build/237242258 at 2023-10-21 - - FilePather # failure in job https://hydra.nixos.org/build/252715750 at 2024-03-16 - - Files # failure in job https://hydra.nixos.org/build/233207543 at 2023-09-02 - - FileSystem # failure in job https://hydra.nixos.org/build/233230289 at 2023-09-02 - - filesystem-abstractions # failure in job https://hydra.nixos.org/build/295093277 at 2025-04-22 - - filesystem-conduit # failure in job https://hydra.nixos.org/build/233239975 at 2023-09-02 - - filesystem-trees # failure in job https://hydra.nixos.org/build/233216661 at 2023-09-02 - - fillit # failure in job https://hydra.nixos.org/build/233214605 at 2023-09-02 - - final-pretty-printer # failure in job https://hydra.nixos.org/build/233238571 at 2023-09-02 - - Finance-Quote-Yahoo # failure in job https://hydra.nixos.org/build/233223617 at 2023-09-02 - - find-conduit # failure in job https://hydra.nixos.org/build/233243763 at 2023-09-02 - - find-source-files # failure in job https://hydra.nixos.org/build/233239773 at 2023-09-02 - - fingertree-psqueue # failure in job https://hydra.nixos.org/build/233224766 at 2023-09-02 - - fingertree-tf # failure in job https://hydra.nixos.org/build/233259910 at 2023-09-02 - finitary-optics # constraint issues https://hydra.nixos.org/build/295428386 - finite # failure in job https://hydra.nixos.org/build/233226313 at 2023-09-02 - finite-field # failure in job https://hydra.nixos.org/build/295093309 at 2025-04-22 - finite-fields # failure in job https://hydra.nixos.org/build/233191530 at 2023-09-02 - FiniteCategoriesGraphViz # failure in job https://hydra.nixos.org/build/295090973 at 2025-04-22 - - finito # failure in job https://hydra.nixos.org/build/252721862 at 2024-03-16 - - firefly-example # failure in job https://hydra.nixos.org/build/233259350 at 2023-09-02 - firestore # failure in job https://hydra.nixos.org/build/295093356 at 2025-04-22 - - first-and-last # failure in job https://hydra.nixos.org/build/233256888 at 2023-09-02 - first-class-instances # failure in job https://hydra.nixos.org/build/233207181 at 2023-09-02 - - first-class-patterns # failure in job https://hydra.nixos.org/build/252739352 at 2024-03-16 - FirstPrelude # failure in job https://hydra.nixos.org/build/233256065 at 2023-09-02 - - fit # failure in job https://hydra.nixos.org/build/233239893 at 2023-09-02 - - fitsio # failure in job https://hydra.nixos.org/build/233246119 at 2023-09-02 - fix-imports # failure in job https://hydra.nixos.org/build/233251518 at 2023-09-02 - - fix-symbols-gitit # failure in job https://hydra.nixos.org/build/233259222 at 2023-09-02 - - fixed-point # failure in job https://hydra.nixos.org/build/233255142 at 2023-09-02 - - fixed-precision # failure in job https://hydra.nixos.org/build/233226433 at 2023-09-02 - - fixed-storable-array # failure in job https://hydra.nixos.org/build/233200413 at 2023-09-02 - - fixed-timestep # failure in job https://hydra.nixos.org/build/233252950 at 2023-09-02 - - fixed-width # failure in job https://hydra.nixos.org/build/233236195 at 2023-09-02 - - fixedprec # failure in job https://hydra.nixos.org/build/233231519 at 2023-09-02 - - fixer # failure in job https://hydra.nixos.org/build/233246038 at 2023-09-02 - - fixfile # failure in job https://hydra.nixos.org/build/233209830 at 2023-09-02 - - fixie # failure in job https://hydra.nixos.org/build/233230496 at 2023-09-02 - - fizzbuzz # failure in job https://hydra.nixos.org/build/233207626 at 2023-09-02 - - fizzbuzz-as-a-service # failure in job https://hydra.nixos.org/build/233235796 at 2023-09-02 - - flaccuraterip # failure in job https://hydra.nixos.org/build/233255839 at 2023-09-02 - - flamethrower # failure in job https://hydra.nixos.org/build/233258696 at 2023-09-02 - - flamingra # failure in job https://hydra.nixos.org/build/233242907 at 2023-09-02 - - flat-maybe # failure in job https://hydra.nixos.org/build/233197544 at 2023-09-02 - flat-mcmc # failure in job https://hydra.nixos.org/build/233234404 at 2023-09-02 - flatbuffers # failure in job https://hydra.nixos.org/build/252718245 at 2024-03-16 - flatbuffers-parser # failure in job https://hydra.nixos.org/build/295093316 at 2025-04-22 - - flexible-time # failure in job https://hydra.nixos.org/build/233208099 at 2023-09-02 - - flickr # failure in job https://hydra.nixos.org/build/233212718 at 2023-09-02 - flink-statefulfun # failure in job https://hydra.nixos.org/build/252724456 at 2024-03-16 - Flint2 # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/239246414 at 2023-11-10 - - float-binstring # failure in job https://hydra.nixos.org/build/233203257 at 2023-09-02 - float128 # failure in job https://hydra.nixos.org/build/252733549 at 2024-03-16 - flock # failure in job https://hydra.nixos.org/build/233245164 at 2023-09-02 - - flow-er # failure in job https://hydra.nixos.org/build/233202082 at 2023-09-02 - - flow2dot # failure in job https://hydra.nixos.org/build/252733511 at 2024-03-16 - - flowdock # failure in job https://hydra.nixos.org/build/233206736 at 2023-09-02 - - flowdock-api # failure in job https://hydra.nixos.org/build/233215251 at 2023-09-02 - - flowdock-rest # failure in job https://hydra.nixos.org/build/233240090 at 2023-09-02 - flowlocks-framework # failure in job https://hydra.nixos.org/build/233255068 at 2023-09-02 - - flp # failure in job https://hydra.nixos.org/build/233219373 at 2023-09-02 - - fltkhs # failure in job https://hydra.nixos.org/build/233207014 at 2023-09-02 - - fluffy-parser # failure in job https://hydra.nixos.org/build/233212110 at 2023-09-02 - - fluid-idl # failure in job https://hydra.nixos.org/build/233214307 at 2023-09-02 - - fluidsynth # failure in job https://hydra.nixos.org/build/233225998 at 2023-09-02 + - fluid-idl-scotty # previously transitively broken at 2025-09-08 - flux-monoid # failure in job https://hydra.nixos.org/build/233202845 at 2023-09-02 - - fmark # failure in job https://hydra.nixos.org/build/233196159 at 2023-09-02 - - FModExRaw # failure in job https://hydra.nixos.org/build/233259032 at 2023-09-02 - - fn-extra # failure in job https://hydra.nixos.org/build/252737996 at 2024-03-16 - foldl-exceptions # failure in job https://hydra.nixos.org/build/252719821 at 2024-03-16 - - foldl-incremental # failure in job https://hydra.nixos.org/build/233201921 at 2023-09-02 - - foldl-statistics # failure in job https://hydra.nixos.org/build/233243724 at 2023-09-02 - foldl-transduce # failure in job https://hydra.nixos.org/build/233192486 at 2023-09-02 - - folds-common # failure in job https://hydra.nixos.org/build/233237316 at 2023-09-02 - - follow # failure in job https://hydra.nixos.org/build/233255423 at 2023-09-02 - - follow-file # failure in job https://hydra.nixos.org/build/252732901 at 2024-03-16 - - font-opengl-basic4x6 # failure in job https://hydra.nixos.org/build/233200978 at 2023-09-02 - fontconfig-pure # failure in job https://hydra.nixos.org/build/233254573 at 2023-09-02 - - for-free # failure in job https://hydra.nixos.org/build/233235927 at 2023-09-02 - - forbidden-fruit # failure in job https://hydra.nixos.org/build/233258954 at 2023-09-02 - - fordo # failure in job https://hydra.nixos.org/build/233255879 at 2023-09-02 - - forecast-io # failure in job https://hydra.nixos.org/build/233197283 at 2023-09-02 - foreign # failure in job https://hydra.nixos.org/build/233250127 at 2023-09-02 - - foreign-var # failure in job https://hydra.nixos.org/build/233215431 at 2023-09-02 - - forest # failure in job https://hydra.nixos.org/build/233208811 at 2023-09-02 - - forest-fire # failure in job https://hydra.nixos.org/build/233203922 at 2023-09-02 - forex2ledger # failure in job https://hydra.nixos.org/build/233212197 at 2023-09-02 - - forger # failure in job https://hydra.nixos.org/build/233234444 at 2023-09-02 - - ForkableT # failure in job https://hydra.nixos.org/build/233253947 at 2023-09-02 - - formal # failure in job https://hydra.nixos.org/build/295093401 at 2025-04-22 - formattable # failure in job https://hydra.nixos.org/build/233230195 at 2023-09-02 - - forml # failure in job https://hydra.nixos.org/build/295093386 at 2025-04-22 - - formura # failure in job https://hydra.nixos.org/build/233193674 at 2023-09-02 - Fortnite-Hack-Cheats-Free-V-Bucks-Generator # failure in job https://hydra.nixos.org/build/233233147 at 2023-09-02 - fortran-src-extras # failure in job https://hydra.nixos.org/build/295093418 at 2025-04-22 - fortran-vars # failure in job https://hydra.nixos.org/build/233257719 at 2023-09-02 - fortytwo # failure in job https://hydra.nixos.org/build/233209552 at 2023-09-02 - - foscam-filename # failure in job https://hydra.nixos.org/build/233237326 at 2023-09-02 - - FPretty # failure in job https://hydra.nixos.org/build/233196648 at 2023-09-02 - - fptest # failure in job https://hydra.nixos.org/build/233233288 at 2023-09-02 - - fquery # failure in job https://hydra.nixos.org/build/233196287 at 2023-09-02 - - Fractaler # failure in job https://hydra.nixos.org/build/233253414 at 2023-09-02 - - fractals # failure in job https://hydra.nixos.org/build/233205969 at 2023-09-02 - - fraction # failure in job https://hydra.nixos.org/build/233204186 at 2023-09-02 - - frag # failure in job https://hydra.nixos.org/build/234458411 at 2023-09-13 - - Frames-beam # failure in job https://hydra.nixos.org/build/241429730 at 2023-11-19 - Frames-streamly # failure in job https://hydra.nixos.org/build/241420906 at 2023-11-19 - - franchise # failure in job https://hydra.nixos.org/build/233256790 at 2023-09-02 - franz # failure in job https://hydra.nixos.org/build/252725109 at 2024-03-16 - - fraxl # failure in job https://hydra.nixos.org/build/233219345 at 2023-09-02 - - freddy # failure in job https://hydra.nixos.org/build/233208999 at 2023-09-02 - free-alacarte # failure in job https://hydra.nixos.org/build/275141793 at 2024-10-21 - free-applicative-t # failure in job https://hydra.nixos.org/build/252715728 at 2024-03-16 - - free-concurrent # failure in job https://hydra.nixos.org/build/233257070 at 2023-09-02 - - free-http # failure in job https://hydra.nixos.org/build/233227362 at 2023-09-02 - - free-operational # failure in job https://hydra.nixos.org/build/233201565 at 2023-09-02 + - free-game # previously transitively broken at 2025-09-08 - free-theorems # failure in job https://hydra.nixos.org/build/252725016 at 2024-03-16 - - free-theorems-counterexamples # failure in job https://hydra.nixos.org/build/233231989 at 2023-09-02 - - free-theorems-seq # failure in job https://hydra.nixos.org/build/233207326 at 2023-09-02 - - free-theorems-webui # failure in job https://hydra.nixos.org/build/233255034 at 2023-09-02 - free-v-bucks-generator-no-survey # failure in job https://hydra.nixos.org/build/233208419 at 2023-09-02 - - free-v-bucks-generator-ps4-no-survey # failure in job https://hydra.nixos.org/build/233190747 at 2023-09-02 - free-vector-spaces # failure in job https://hydra.nixos.org/build/299137660 at 2025-06-23 - freenect # failure in job https://hydra.nixos.org/build/233196105 at 2023-09-02 - - freer-effects # failure in job https://hydra.nixos.org/build/233214270 at 2023-09-02 - - freer-simple-catching # failure in job https://hydra.nixos.org/build/295122831 at 2025-04-22 - - freer-simple-http # failure in job https://hydra.nixos.org/build/295122832 at 2025-04-22 - - freer-simple-profiling # failure in job https://hydra.nixos.org/build/295122835 at 2025-04-22 - - freer-simple-random # failure in job https://hydra.nixos.org/build/295122833 at 2025-04-22 - - freer-simple-time # failure in job https://hydra.nixos.org/build/295122836 at 2025-04-22 - - freesect # failure in job https://hydra.nixos.org/build/233218671 at 2023-09-02 - - freesound # failure in job https://hydra.nixos.org/build/233240464 at 2023-09-02 - - freetype-simple # failure in job https://hydra.nixos.org/build/233249707 at 2023-09-02 - - FreeTypeGL # failure in job https://hydra.nixos.org/build/233212222 at 2023-09-02 - fregel # failure in job https://hydra.nixos.org/build/252734327 at 2024-03-16 - - freq # failure in job https://hydra.nixos.org/build/233247154 at 2023-09-02 - - fresh # failure in job https://hydra.nixos.org/build/233196569 at 2023-09-02 - fresnel # failure in job https://hydra.nixos.org/build/233214198 at 2023-09-02 - friday # failure in job https://hydra.nixos.org/build/233249799 at 2023-09-02 - from-env # failure in job https://hydra.nixos.org/build/233219518 at 2023-09-02 - - frown # failure in job https://hydra.nixos.org/build/233208462 at 2023-09-02 - - frp-arduino # failure in job https://hydra.nixos.org/build/233192216 at 2023-09-02 - - frpnow # failure in job https://hydra.nixos.org/build/233236056 at 2023-09-02 - - fs-events # failure in job https://hydra.nixos.org/build/233218231 at 2023-09-02 - - fsh-csv # failure in job https://hydra.nixos.org/build/233220196 at 2023-09-02 - - FSM # failure in job https://hydra.nixos.org/build/233247343 at 2023-09-02 - - fsmActions # failure in job https://hydra.nixos.org/build/233224366 at 2023-09-02 - - fsnotify-conduit # failure in job https://hydra.nixos.org/build/233196251 at 2023-09-02 - - fst # failure in job https://hydra.nixos.org/build/233233271 at 2023-09-02 - - fsutils # failure in job https://hydra.nixos.org/build/233204599 at 2023-09-02 - fswait # failure in job https://hydra.nixos.org/build/233247770 at 2023-09-02 - - fswatch # failure in job https://hydra.nixos.org/build/233233447 at 2023-09-02 - - ft-generator # failure in job https://hydra.nixos.org/build/233205823 at 2023-09-02 - - FTGL-bytestring # failure in job https://hydra.nixos.org/build/233256032 at 2023-09-02 - - ftp-conduit # failure in job https://hydra.nixos.org/build/233244330 at 2023-09-02 - - ftphs # failure in job https://hydra.nixos.org/build/233215550 at 2023-09-02 - - fugue # failure in job https://hydra.nixos.org/build/295093405 at 2025-04-22 + - ftdi # previously transitively broken at 2025-09-08 - FULE # failure in job https://hydra.nixos.org/build/252719910 at 2024-03-16 - - full-sessions # failure in job https://hydra.nixos.org/build/233254332 at 2023-09-02 - - funbot-client # failure in job https://hydra.nixos.org/build/233255739 at 2023-09-02 + - funbot-git-hook # previously transitively broken at 2025-09-08 - funcons-tools # failure in job https://hydra.nixos.org/build/295122838 at 2025-04-22 - - function-instances-algebra # failure in job https://hydra.nixos.org/build/233202209 at 2023-09-02 - - functional-arrow # failure in job https://hydra.nixos.org/build/295093396 at 2025-04-22 - - functor-friends # failure in job https://hydra.nixos.org/build/233208108 at 2023-09-02 - functor-infix # failure in job https://hydra.nixos.org/build/233228794 at 2023-09-02 - - functor-utils # failure in job https://hydra.nixos.org/build/233213259 at 2023-09-02 - functora-witch # failure in job https://hydra.nixos.org/build/295093402 at 2025-04-22 - - functorm # failure in job https://hydra.nixos.org/build/233212335 at 2023-09-02 - - Fungi # failure in job https://hydra.nixos.org/build/233253088 at 2023-09-02 - - funnyprint # failure in job https://hydra.nixos.org/build/295122840 at 2025-04-22 - - funpat # failure in job https://hydra.nixos.org/build/233222123 at 2023-09-02 - funspection # failure in job https://hydra.nixos.org/build/233227352 at 2023-09-02 - fused-effects-exceptions # failure in job https://hydra.nixos.org/build/233203744 at 2023-09-02 - fused-effects-mwc-random # failure in job https://hydra.nixos.org/build/233253228 at 2023-09-02 - - fused-effects-resumable # failure in job https://hydra.nixos.org/build/233242479 at 2023-09-02 - - fused-effects-squeal # failure in job https://hydra.nixos.org/build/259962088 at 2024-05-19 - fused-effects-th # failure in job https://hydra.nixos.org/build/233192186 at 2023-09-02 - - fusion # failure in job https://hydra.nixos.org/build/233204359 at 2023-09-02 - futhask # failure in job https://hydra.nixos.org/build/233229281 at 2023-09-02 - - futun # failure in job https://hydra.nixos.org/build/233245115 at 2023-09-02 - - future # failure in job https://hydra.nixos.org/build/233224844 at 2023-09-02 - - futures # failure in job https://hydra.nixos.org/build/233230206 at 2023-09-02 - - fuzzy-parse # failure in job https://hydra.nixos.org/build/252728734 at 2024-03-16 - - fuzzy-timings # failure in job https://hydra.nixos.org/build/233235765 at 2023-09-02 - - fvars # failure in job https://hydra.nixos.org/build/234461649 at 2023-09-13 - - fwgl # failure in job https://hydra.nixos.org/build/233246210 at 2023-09-02 - - fwgl-javascript # broken by fwgl, manually entered here, because it does not appear in transitive-broken.yaml at 2024-07-09 - - fx # failure in job https://hydra.nixos.org/build/295093438 at 2025-04-22 - - g-npm # failure in job https://hydra.nixos.org/build/233215965 at 2023-09-02 - - g4ip # failure in job https://hydra.nixos.org/build/233248315 at 2023-09-02 - gambler # failure in job https://hydra.nixos.org/build/252732701 at 2024-03-16 - - game-probability # failure in job https://hydra.nixos.org/build/233191255 at 2023-09-02 - - gameclock # failure in job https://hydra.nixos.org/build/233234964 at 2023-09-02 - gamgee # failure in job https://hydra.nixos.org/build/233249846 at 2023-09-02 - - gang-of-threads # failure in job https://hydra.nixos.org/build/252716251 at 2024-03-16 - - Ganymede # failure in job https://hydra.nixos.org/build/233248892 at 2023-09-02 - - garepinoh # failure in job https://hydra.nixos.org/build/233238111 at 2023-09-02 - - gas # failure in job https://hydra.nixos.org/build/233233966 at 2023-09-02 - - gather # failure in job https://hydra.nixos.org/build/233208848 at 2023-09-02 - - gc-monitoring-wai # failure in job https://hydra.nixos.org/build/233209449 at 2023-09-02 - - gconf # failure in job https://hydra.nixos.org/build/233259023 at 2023-09-02 - - gdiff-th # failure in job https://hydra.nixos.org/build/233215065 at 2023-09-02 - gearhash # failure in job https://hydra.nixos.org/build/252728216 at 2024-03-16 - - gelatin # failure in job https://hydra.nixos.org/build/233249394 at 2023-09-02 - gemcap # failure in job https://hydra.nixos.org/build/233202506 at 2023-09-02 - gemmula-altera # failure in job https://hydra.nixos.org/build/252721416 at 2024-03-16 - - gemstone # failure in job https://hydra.nixos.org/build/233202246 at 2023-09-02 - - gen-imports # failure in job https://hydra.nixos.org/build/233216588 at 2023-09-02 - - gen-passwd # failure in job https://hydra.nixos.org/build/233224836 at 2023-09-02 - - gender # failure in job https://hydra.nixos.org/build/233235712 at 2023-09-02 - - genders # failure in job https://hydra.nixos.org/build/233238566 at 2023-09-02 - - general-prelude # failure in job https://hydra.nixos.org/build/233248628 at 2023-09-02 - - GeneralTicTacToe # failure in job https://hydra.nixos.org/build/233207939 at 2023-09-02 - - generator # failure in job https://hydra.nixos.org/build/233213384 at 2023-09-02 - - generators # failure in job https://hydra.nixos.org/build/233246459 at 2023-09-02 - - generic-binary # failure in job https://hydra.nixos.org/build/233214473 at 2023-09-02 - - generic-church # failure in job https://hydra.nixos.org/build/233213419 at 2023-09-02 - - generic-enum # failure in job https://hydra.nixos.org/build/233220316 at 2023-09-02 - generic-labels # failure in job https://hydra.nixos.org/build/233230621 at 2023-09-02 - - generic-lens-labels # failure in job https://hydra.nixos.org/build/233256875 at 2023-09-02 - - generic-lucid-scaffold # failure in job https://hydra.nixos.org/build/233259250 at 2023-09-02 - generic-match # failure in job https://hydra.nixos.org/build/233221364 at 2023-09-02 - - generic-maybe # failure in job https://hydra.nixos.org/build/233246991 at 2023-09-02 - generic-override # failure in job https://hydra.nixos.org/build/233235699 at 2023-09-02 - generic-persistence # failure in job https://hydra.nixos.org/build/233240709 at 2023-09-02 - - generic-pretty # failure in job https://hydra.nixos.org/build/233205583 at 2023-09-02 - generic-pretty-instances # failure in job https://hydra.nixos.org/build/233243114 at 2023-09-02 - - generic-records # failure in job https://hydra.nixos.org/build/233237235 at 2023-09-02 - - generic-server # failure in job https://hydra.nixos.org/build/233259385 at 2023-09-02 - - generic-storable # failure in job https://hydra.nixos.org/build/233213225 at 2023-09-02 - - generic-tree # failure in job https://hydra.nixos.org/build/233219539 at 2023-09-02 - generic-trie # failure in job https://hydra.nixos.org/build/252733076 at 2024-03-16 - - generic-xmlpickler # failure in job https://hydra.nixos.org/build/233246507 at 2023-09-02 - generics-eot # failure in job https://hydra.nixos.org/build/252717610 at 2024-03-16 - - generics-mrsop # failure in job https://hydra.nixos.org/build/233233310 at 2023-09-02 - - genericserialize # failure in job https://hydra.nixos.org/build/233253092 at 2023-09-02 - - genetics # failure in job https://hydra.nixos.org/build/233219599 at 2023-09-02 - - genifunctors # failure in job https://hydra.nixos.org/build/233255126 at 2023-09-02 - - geniplate # failure in job https://hydra.nixos.org/build/233233607 at 2023-09-02 - - genprog # failure in job https://hydra.nixos.org/build/233198970 at 2023-09-02 - GenSmsPdu # failure in job https://hydra.nixos.org/build/253702098 at 2024-03-31 - - gentlemark # failure in job https://hydra.nixos.org/build/233202158 at 2023-09-02 - genvalidity-appendful # failure in job https://hydra.nixos.org/build/295093519 at 2025-04-22 - genvalidity-mergeful # failure in job https://hydra.nixos.org/build/295093508 at 2025-04-22 - - geo-resolver # failure in job https://hydra.nixos.org/build/233206563 at 2023-09-02 - - geo-uk # failure in job https://hydra.nixos.org/build/233221284 at 2023-09-02 - - geocode-google # failure in job https://hydra.nixos.org/build/233191594 at 2023-09-02 - - GeocoderOpenCage # failure in job https://hydra.nixos.org/build/233214852 at 2023-09-02 - - geodetic-types # failure in job https://hydra.nixos.org/build/233209496 at 2023-09-02 - - GeoIp # failure in job https://hydra.nixos.org/build/233257383 at 2023-09-02 - geojson # failure in job https://hydra.nixos.org/build/295093530 at 2025-04-22 - - geojson-types # failure in job https://hydra.nixos.org/build/233224929 at 2023-09-02 - - geom2d # failure in job https://hydra.nixos.org/build/233254609 at 2023-09-02 - - GeomPredicates-SSE # failure in job https://hydra.nixos.org/build/233249584 at 2023-09-02 - geos # failure in job https://hydra.nixos.org/build/233203852 at 2023-09-02 - - Get # failure in job https://hydra.nixos.org/build/233216093 at 2023-09-02 - - getflag # failure in job https://hydra.nixos.org/build/233258316 at 2023-09-02 - gev-lib # failure in job https://hydra.nixos.org/build/233250284 at 2023-09-02 - gf # failure in job https://hydra.nixos.org/build/233237752 at 2023-09-02 - - GGg # failure in job https://hydra.nixos.org/build/233207289 at 2023-09-02 - - ggtsTC # failure in job https://hydra.nixos.org/build/233229612 at 2023-09-02 - - gh-labeler # failure in job https://hydra.nixos.org/build/233233139 at 2023-09-02 - ghc-api-compat # failure in job https://hydra.nixos.org/build/233235008 at 2023-09-02 - - ghc-clippy-plugin # failure in job https://hydra.nixos.org/build/233227499 at 2023-09-02 - - ghc-core-smallstep # failure in job https://hydra.nixos.org/build/233209763 at 2023-09-02 - ghc-corroborate # failure in job https://hydra.nixos.org/build/233223692 at 2023-09-02 - ghc-definitions-th # failure in job https://hydra.nixos.org/build/233254844 at 2023-09-02 - ghc-dump-core # failure in job https://hydra.nixos.org/build/233214478 at 2023-09-02 - - ghc-dump-tree # failure in job https://hydra.nixos.org/build/233237228 at 2023-09-02 - - ghc-dup # failure in job https://hydra.nixos.org/build/233203978 at 2023-09-02 - ghc-events-analyze # failure in job https://hydra.nixos.org/build/233207621 at 2023-09-02 - - ghc-events-parallel # failure in job https://hydra.nixos.org/build/233218757 at 2023-09-02 - ghc-gc-hook # failure in job https://hydra.nixos.org/build/233195053 at 2023-09-02 - - ghc-generic-instances # failure in job https://hydra.nixos.org/build/233259298 at 2023-09-02 - - ghc-hotswap # failure in job https://hydra.nixos.org/build/233220146 at 2023-09-02 - ghc-internal # failure in job https://hydra.nixos.org/build/260723678 at 2024-05-25 - ghc-justdoit # failure in job https://hydra.nixos.org/build/233221884 at 2023-09-02 - - ghc-man-completion # failure in job https://hydra.nixos.org/build/233245740 at 2023-09-02 - - ghc-mtl # failure in job https://hydra.nixos.org/build/233227810 at 2023-09-02 - - ghc-parmake # failure in job https://hydra.nixos.org/build/233191327 at 2023-09-02 - - ghc-pkg-autofix # failure in job https://hydra.nixos.org/build/233229332 at 2023-09-02 - - ghc-pkg-lib # failure in job https://hydra.nixos.org/build/233250745 at 2023-09-02 - ghc-plugin-non-empty # failure in job https://hydra.nixos.org/build/233229023 at 2023-09-02 - - ghc-proofs # failure in job https://hydra.nixos.org/build/233230633 at 2023-09-02 - - ghc-simple # failure in job https://hydra.nixos.org/build/233201423 at 2023-09-02 - - ghc-srcspan-plugin # failure in job https://hydra.nixos.org/build/233231564 at 2023-09-02 - - ghc-syb # failure in job https://hydra.nixos.org/build/233236783 at 2023-09-02 - - ghc-syb-utils # failure in job https://hydra.nixos.org/build/233229196 at 2023-09-02 - ghc-symbol # failure in job https://hydra.nixos.org/build/252710738 at 2024-03-16 - - ghc-time-alloc-prof # failure in job https://hydra.nixos.org/build/233242289 at 2023-09-02 - - ghc-usage # failure in job https://hydra.nixos.org/build/233199565 at 2023-09-02 - - ghci-diagrams # failure in job https://hydra.nixos.org/build/233194407 at 2023-09-02 - - ghci-haskeline # failure in job https://hydra.nixos.org/build/233216940 at 2023-09-02 - - ghci-history-parser # failure in job https://hydra.nixos.org/build/233204448 at 2023-09-02 - - ghci-lib # failure in job https://hydra.nixos.org/build/233216644 at 2023-09-02 - - ghci-ng # failure in job https://hydra.nixos.org/build/233229533 at 2023-09-02 - ghcide-bench # failure in job https://hydra.nixos.org/build/265539170 at 2024-07-14 - ghcide-test-utils # failure in job https://hydra.nixos.org/build/253687657 at 2024-03-31 - - ghcjs-ajax # failure in job https://hydra.nixos.org/build/295093584 at 2025-04-22 - - ghcjs-base-stub # timeout - ghcjs-dom-jsffi # failure in job https://hydra.nixos.org/build/233215225 at 2023-09-02 - - ghcjs-fetch # timeout - - ghcjs-promise # failure in job https://hydra.nixos.org/build/233243985 at 2023-09-02 - - ghcjs-websockets # Does not work on the js backend added in 9.6+, only on ghcjs, where we markUnbroken - - ghcjs-xhr # failure in job https://hydra.nixos.org/build/233235693 at 2023-09-02 - - ghclive # failure in job https://hydra.nixos.org/build/233231592 at 2023-09-02 - ghcup # failure in job https://hydra.nixos.org/build/295093612 at 2025-04-22 - gi-coglpango # failure in job https://hydra.nixos.org/build/233194401 at 2023-09-02 - gi-gio-hs-list-model # failure in job https://hydra.nixos.org/build/233241640 at 2023-09-02 @@ -2082,636 +598,181 @@ broken-packages: - gi-keybinder # failure in job https://hydra.nixos.org/build/265273447 at 2024-07-14 - gi-webkit2webextension # failure in job https://hydra.nixos.org/build/254424710 at 2024-03-31 - gi-webkitwebprocessextension # failure in job https://hydra.nixos.org/build/233227647 at 2023-09-02 - - giak # failure in job https://hydra.nixos.org/build/233242229 at 2023-09-02 - gibberish # failure in job https://hydra.nixos.org/build/255688714 at 2024-04-16 - - Gifcurry # failure in job https://hydra.nixos.org/build/233200204 at 2023-09-02 - ginger2 # failure in job https://hydra.nixos.org/build/302803092 at 2025-07-27 - - gingersnap # failure in job https://hydra.nixos.org/build/233227186 at 2023-09-02 - - ginsu # failure in job https://hydra.nixos.org/build/233223259 at 2023-09-02 - - gipeda # failure in job https://hydra.nixos.org/build/233228149 at 2023-09-02 - - giphy-api # failure in job https://hydra.nixos.org/build/233203687 at 2023-09-02 - - GiST # failure in job https://hydra.nixos.org/build/233199759 at 2023-09-02 - - gist # failure in job https://hydra.nixos.org/build/233221381 at 2023-09-02 - git # failure in job https://hydra.nixos.org/build/233225634 at 2023-09-02 - - git-all # failure in job https://hydra.nixos.org/build/233252935 at 2023-09-02 - - git-checklist # failure in job https://hydra.nixos.org/build/233203228 at 2023-09-02 - - git-cuk # failure in job https://hydra.nixos.org/build/233211733 at 2023-09-02 - - git-date # failure in job https://hydra.nixos.org/build/233259193 at 2023-09-02 - - git-jump # failure in job https://hydra.nixos.org/build/233206544 at 2023-09-02 - git-repair # failure in job https://hydra.nixos.org/build/233222686 at 2023-09-02 - - git-vogue # failure in job https://hydra.nixos.org/build/233249420 at 2023-09-02 - gitea-api # failure in job https://hydra.nixos.org/build/295093716 at 2025-04-22 - - github-backup # failure in job https://hydra.nixos.org/build/233208904 at 2023-09-02 - - github-post-receive # failure in job https://hydra.nixos.org/build/233204914 at 2023-09-02 - github-tools # failure in job https://hydra.nixos.org/build/233247519 at 2023-09-02 - - github-utils # failure in job https://hydra.nixos.org/build/233211299 at 2023-09-02 - - github-webhook-handler # failure in job https://hydra.nixos.org/build/233246904 at 2023-09-02 - githud # failure in job https://hydra.nixos.org/build/233195046 at 2023-09-02 - - gitHUD # failure in job https://hydra.nixos.org/build/233221244 at 2023-09-02 - - gitignore # failure in job https://hydra.nixos.org/build/233207356 at 2023-09-02 - - gitlab-api # failure in job https://hydra.nixos.org/build/233256639 at 2023-09-02 - - gitlib-cmdline # failure in job https://hydra.nixos.org/build/233230857 at 2023-09-02 - - gitlib-utils # failure in job https://hydra.nixos.org/build/233190826 at 2023-09-02 - gitrev-typed # failure in job https://hydra.nixos.org/build/299137966 at 2025-06-23 - - gitter # failure in job https://hydra.nixos.org/build/233210040 at 2023-09-02 - - glade # failure in job https://hydra.nixos.org/build/233229566 at 2023-09-02 - - glambda # failure in job https://hydra.nixos.org/build/252728236 at 2024-03-16 - - glapp # failure in job https://hydra.nixos.org/build/233213499 at 2023-09-02 - - glaze # failure in job https://hydra.nixos.org/build/233210047 at 2023-09-02 - - Gleam # failure in job https://hydra.nixos.org/build/233228018 at 2023-09-02 - GLFW # failure in job https://hydra.nixos.org/build/233234389 at 2023-09-02 - - GLFW-b-demo # failure in job https://hydra.nixos.org/build/233230505 at 2023-09-02 - - gli # failure in job https://hydra.nixos.org/build/233210279 at 2023-09-02 - glicko # failure in job https://hydra.nixos.org/build/233200868 at 2023-09-02 - - glider-nlp # failure in job https://hydra.nixos.org/build/233229600 at 2023-09-02 - - GLMatrix # failure in job https://hydra.nixos.org/build/233202880 at 2023-09-02 - glob-posix # failure in job https://hydra.nixos.org/build/233253059 at 2023-09-02 - - global-variables # failure in job https://hydra.nixos.org/build/233204607 at 2023-09-02 - - GlomeTrace # failure in job https://hydra.nixos.org/build/233211872 at 2023-09-02 - - gloss-banana # failure in job https://hydra.nixos.org/build/234464253 at 2023-09-13 - gloss-examples # failure in job https://hydra.nixos.org/build/252718124 at 2024-03-16 - gloss-export # failure in job https://hydra.nixos.org/build/234444988 at 2023-09-13 - - gloss-game # failure in job https://hydra.nixos.org/build/234460935 at 2023-09-13 - gloss-raster-massiv # failure in job https://hydra.nixos.org/build/253683246 at 2024-03-31 - glpk-hs # failure in job https://hydra.nixos.org/build/295093740 at 2025-04-22 - glsl # failure in job https://hydra.nixos.org/build/233224139 at 2023-09-02 - gltf-codec # failure in job https://hydra.nixos.org/build/233205342 at 2023-09-02 - glualint # failure in job https://hydra.nixos.org/build/295093757 at 2025-04-22 - - glue # failure in job https://hydra.nixos.org/build/233233587 at 2023-09-02 - gnutls # failure in job https://hydra.nixos.org/build/252734570 at 2024-03-16 - - goa # failure in job https://hydra.nixos.org/build/233193916 at 2023-09-02 - goal-core # failure in job https://hydra.nixos.org/build/233242261 at 2023-09-02 - goatee # failure in job https://hydra.nixos.org/build/233220875 at 2023-09-02 - - gochan # failure in job https://hydra.nixos.org/build/233223866 at 2023-09-02 - - godot-haskell # failure in job https://hydra.nixos.org/build/233213405 at 2023-09-02 - godot-megaparsec # failure in job https://hydra.nixos.org/build/233252882 at 2023-09-02 - - gofer-prelude # failure in job https://hydra.nixos.org/build/233237015 at 2023-09-02 - - goggles-gcs # failure in job https://hydra.nixos.org/build/252711128 at 2024-03-16 - - gogol-admin-emailmigration # failure in job https://hydra.nixos.org/build/286425186 at 2025-01-25 - - gogol-affiliates # failure in job https://hydra.nixos.org/build/286424930 at 2025-01-25 - - gogol-autoscaler # failure in job https://hydra.nixos.org/build/286424983 at 2025-01-25 - - gogol-cloudmonitoring # failure in job https://hydra.nixos.org/build/286425107 at 2025-01-25 - - gogol-freebasesearch # failure in job https://hydra.nixos.org/build/286425212 at 2025-01-25 - - gogol-latencytest # failure in job https://hydra.nixos.org/build/286425310 at 2025-01-25 - - gogol-maps-coordinate # failure in job https://hydra.nixos.org/build/286425367 at 2025-01-25 - - gogol-maps-engine # failure in job https://hydra.nixos.org/build/286425135 at 2025-01-25 - - gogol-photoslibrary # failure in job https://hydra.nixos.org/build/286425346 at 2025-01-25 - - gogol-prediction # failure in job https://hydra.nixos.org/build/286425008 at 2025-01-25 - - gogol-resourceviews # failure in job https://hydra.nixos.org/build/286425105 at 2025-01-25 - - gogol-taskqueue # failure in job https://hydra.nixos.org/build/286425106 at 2025-01-25 - - gogol-useraccounts # failure in job https://hydra.nixos.org/build/286425223 at 2025-01-25 - - gooey # failure in job https://hydra.nixos.org/build/233192207 at 2023-09-02 - - google-cloud # failure in job https://hydra.nixos.org/build/233218503 at 2023-09-02 - - google-html5-slide # failure in job https://hydra.nixos.org/build/233233311 at 2023-09-02 - - google-oauth2 # failure in job https://hydra.nixos.org/build/233223208 at 2023-09-02 - - google-oauth2-easy # failure in job https://hydra.nixos.org/build/233251694 at 2023-09-02 - - google-search # failure in job https://hydra.nixos.org/build/233214524 at 2023-09-02 + - google-drive # previously transitively broken at 2025-09-08 - google-server-api # failure in job https://hydra.nixos.org/build/233218521 at 2023-09-02 - google-translate # failure in job https://hydra.nixos.org/build/233234076 at 2023-09-02 - - GoogleCodeJam # failure in job https://hydra.nixos.org/build/233234738 at 2023-09-02 - - googlepolyline # failure in job https://hydra.nixos.org/build/233209674 at 2023-09-02 - - gopherbot # failure in job https://hydra.nixos.org/build/233207680 at 2023-09-02 - gopro-plus # failure in job https://hydra.nixos.org/build/233225073 at 2023-09-02 - - gore-and-ash # failure in job https://hydra.nixos.org/build/233237810 at 2023-09-02 - GOST34112012-Hash # failure in job https://hydra.nixos.org/build/295090921 at 2025-04-22 - gothic # failure in job https://hydra.nixos.org/build/233218967 at 2023-09-02 - - GotoT-transformers # failure in job https://hydra.nixos.org/build/233229336 at 2023-09-02 - gotta-go-fast # failure in job https://hydra.nixos.org/build/233213439 at 2023-09-02 - gotyno-hs # failure in job https://hydra.nixos.org/build/233205043 at 2023-09-02 - - gpah # failure in job https://hydra.nixos.org/build/233236000 at 2023-09-02 - - GPipe # failure in job https://hydra.nixos.org/build/233202480 at 2023-09-02 - GPipe-Core # failure in job https://hydra.nixos.org/build/233194426 at 2023-09-02 + - GPipe-GLFW # previously transitively broken at 2025-09-08 - gpmf # failure in job https://hydra.nixos.org/build/233245964 at 2023-09-02 - - gpx-conduit # failure in job https://hydra.nixos.org/build/233245487 at 2023-09-02 - grab # failure in job https://hydra.nixos.org/build/252727759 at 2024-03-16 - - graceful # failure in job https://hydra.nixos.org/build/233199650 at 2023-09-02 - - grafana # failure in job https://hydra.nixos.org/build/233206262 at 2023-09-02 - - Grafos # failure in job https://hydra.nixos.org/build/233201494 at 2023-09-02 - - grakn # failure in job https://hydra.nixos.org/build/233218052 at 2023-09-02 - grammatical-parsers # failure in job https://hydra.nixos.org/build/233252219 at 2023-09-02 - - graph-matchings # failure in job https://hydra.nixos.org/build/233245821 at 2023-09-02 - graph-rewriting # failure in job https://hydra.nixos.org/build/233191278 at 2023-09-02 - - graph-serialize # failure in job https://hydra.nixos.org/build/233192162 at 2023-09-02 - graph-trace # failure in job https://hydra.nixos.org/build/295093918 at 2025-04-22 - - graph-utils # failure in job https://hydra.nixos.org/build/233224932 at 2023-09-02 - - Graph500 # failure in job https://hydra.nixos.org/build/233257715 at 2023-09-02 - - Graphalyze # failure in job https://hydra.nixos.org/build/233194082 at 2023-09-02 - - graphbuilder # failure in job https://hydra.nixos.org/build/233190797 at 2023-09-02 - - graphene # failure in job https://hydra.nixos.org/build/233250729 at 2023-09-02 - - graphics-drawingcombinators # failure in job https://hydra.nixos.org/build/233242920 at 2023-09-02 - - graphics-formats-collada # failure in job https://hydra.nixos.org/build/233199422 at 2023-09-02 - - graphmod-plugin # failure in job https://hydra.nixos.org/build/233192543 at 2023-09-02 - - graphql-api # failure in job https://hydra.nixos.org/build/233254333 at 2023-09-02 - graphql-utils # failure in job https://hydra.nixos.org/build/233221340 at 2023-09-02 - graphql-w-persistent # failure in job https://hydra.nixos.org/build/233228956 at 2023-09-02 - - graphted # failure in job https://hydra.nixos.org/build/233227052 at 2023-09-02 - graphula-core # failure in job https://hydra.nixos.org/build/233259608 at 2023-09-02 - - graql # failure in job https://hydra.nixos.org/build/233219809 at 2023-09-02 - - grasp # failure in job https://hydra.nixos.org/build/233213280 at 2023-09-02 - - gray-code # failure in job https://hydra.nixos.org/build/233234283 at 2023-09-02 - - graylog # failure in job https://hydra.nixos.org/build/233197050 at 2023-09-02 - greencard # failure in job https://hydra.nixos.org/build/233252292 at 2023-09-02 - - greg-client # failure in job https://hydra.nixos.org/build/233207343 at 2023-09-02 - - gremlin-haskell # failure in job https://hydra.nixos.org/build/233243223 at 2023-09-02 - - Grempa # failure in job https://hydra.nixos.org/build/233256440 at 2023-09-02 - - grenade # failure in job https://hydra.nixos.org/build/295093942 at 2025-04-22 - - greplicate # failure in job https://hydra.nixos.org/build/233215148 at 2023-09-02 - - gridfs # failure in job https://hydra.nixos.org/build/233213958 at 2023-09-02 - - grids # failure in job https://hydra.nixos.org/build/233218294 at 2023-09-02 - - grm # failure in job https://hydra.nixos.org/build/233259788 at 2023-09-02 - - groot # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/237248418 at 2023-10-21 - - GroteTrap # failure in job https://hydra.nixos.org/build/233203176 at 2023-09-02 - groundhog # failure in job https://hydra.nixos.org/build/233199269 at 2023-09-02 - group-theory # failure in job https://hydra.nixos.org/build/233235833 at 2023-09-02 - - group-with # failure in job https://hydra.nixos.org/build/233196589 at 2023-09-02 - - groupBy # failure in job https://hydra.nixos.org/build/295093944 at 2025-04-22 - grouped-list # failure in job https://hydra.nixos.org/build/233240891 at 2023-09-02 - grow-vector # failure in job https://hydra.nixos.org/build/233196279 at 2023-09-02 - - growler # failure in job https://hydra.nixos.org/build/233207497 at 2023-09-02 - - grpc-api-etcd # failure in job https://hydra.nixos.org/build/233239600 at 2023-09-02 - grpc-haskell-core # failure in job https://hydra.nixos.org/build/267997256 at 2024-07-31 - gruvbox-colors # failure in job https://hydra.nixos.org/build/295454932 at 2025-05-02 - - gsl-random # failure in job https://hydra.nixos.org/build/233191503 at 2023-09-02 - - gstreamer # failure in job https://hydra.nixos.org/build/233239224 at 2023-09-02 - - GTALib # failure in job https://hydra.nixos.org/build/233250568 at 2023-09-02 - - gtk-helpers # failure in job https://hydra.nixos.org/build/233244213 at 2023-09-02 - - gtk-toy # failure in job https://hydra.nixos.org/build/233208132 at 2023-09-02 - - gtk2hs-cast-th # failure in job https://hydra.nixos.org/build/233244841 at 2023-09-02 - - gtk2hs-hello # failure in job https://hydra.nixos.org/build/233232522 at 2023-09-02 - - gtk2hs-rpn # failure in job https://hydra.nixos.org/build/233208312 at 2023-09-02 - - gtk3-helpers # failure in job https://hydra.nixos.org/build/233221005 at 2023-09-02 - - gtkglext # failure in job https://hydra.nixos.org/build/233230364 at 2023-09-02 - - gtksourceview2 # failure in job https://hydra.nixos.org/build/233195456 at 2023-09-02 - - gtksourceview3 # failure in job https://hydra.nixos.org/build/233209745 at 2023-09-02 + - gscholar-rss # previously transitively broken at 2025-09-08 - gtvm-hs # failure in job https://hydra.nixos.org/build/295093971 at 2025-04-22 - guardian # failure in job https://hydra.nixos.org/build/233662964 at 2023-09-02 - - guess-combinator # failure in job https://hydra.nixos.org/build/295093981 at 2025-04-22 - - gulcii # failure in job https://hydra.nixos.org/build/233253472 at 2023-09-02 - - gw # failure in job https://hydra.nixos.org/build/233252652 at 2023-09-02 - - gyah-bin # failure in job https://hydra.nixos.org/build/233206981 at 2023-09-02 - - gym-http-api # failure in job https://hydra.nixos.org/build/233219968 at 2023-09-02 - - h-booru # failure in job https://hydra.nixos.org/build/233258209 at 2023-09-02 - h-gpgme # failure in job https://hydra.nixos.org/build/233240826 at 2023-09-02 - - h-reversi # failure in job https://hydra.nixos.org/build/233235617 at 2023-09-02 - - h2048 # failure in job https://hydra.nixos.org/build/233231384 at 2023-09-02 - - h2c # failure in job https://hydra.nixos.org/build/233196032 at 2023-09-02 - h3-hs # failure in job https://hydra.nixos.org/build/267984231 at 2024-07-31 - - haar # failure in job https://hydra.nixos.org/build/233217259 at 2023-09-02 - hablog # failure in job https://hydra.nixos.org/build/296933029 at 2025-05-14 - - HABQT # failure in job https://hydra.nixos.org/build/233256547 at 2023-09-02 - - hack-frontend-happstack # failure in job https://hydra.nixos.org/build/233251834 at 2023-09-02 - - hack-handler-cgi # failure in job https://hydra.nixos.org/build/233200753 at 2023-09-02 - - hack-handler-happstack # failure in job https://hydra.nixos.org/build/233225525 at 2023-09-02 - - hack-handler-kibro # failure in job https://hydra.nixos.org/build/233219102 at 2023-09-02 - - hack2-contrib # failure in job https://hydra.nixos.org/build/233251090 at 2023-09-02 - - hack2-handler-warp # failure in job https://hydra.nixos.org/build/233226457 at 2023-09-02 - hackage-api # failure in job https://hydra.nixos.org/build/233246132 at 2023-09-02 - hackage-diff # failure in job https://hydra.nixos.org/build/233243364 at 2023-09-02 - - hackage-mirror # failure in job https://hydra.nixos.org/build/233240852 at 2023-09-02 - - hackage-processing # failure in job https://hydra.nixos.org/build/233243914 at 2023-09-02 - - hackage-proxy # failure in job https://hydra.nixos.org/build/233221269 at 2023-09-02 - - hackage-server # failure in job https://hydra.nixos.org/build/233254343 at 2023-09-02 - - hackage-whatsnew # failure in job https://hydra.nixos.org/build/233194915 at 2023-09-02 - - hackage2hwn # failure in job https://hydra.nixos.org/build/233246308 at 2023-09-02 - hackager # failure in job https://hydra.nixos.org/build/233247230 at 2023-09-02 - hackernews # failure in job https://hydra.nixos.org/build/233215522 at 2023-09-02 - - HackMail # failure in job https://hydra.nixos.org/build/233215224 at 2023-09-02 - - hactor # failure in job https://hydra.nixos.org/build/233254977 at 2023-09-02 - - hactors # failure in job https://hydra.nixos.org/build/233218599 at 2023-09-02 - haddock-api # failure in job https://hydra.nixos.org/build/233216515 at 2023-09-02 - - haddock-leksah # failure in job https://hydra.nixos.org/build/233206878 at 2023-09-02 - - haddock-test # failure in job https://hydra.nixos.org/build/233246641 at 2023-09-02 - - hadoop-formats # failure in job https://hydra.nixos.org/build/233224647 at 2023-09-02 - - hadoop-rpc # failure in job https://hydra.nixos.org/build/233247222 at 2023-09-02 - - hadoop-streaming # failure in job https://hydra.nixos.org/build/233229895 at 2023-09-02 - - hafar # failure in job https://hydra.nixos.org/build/233231237 at 2023-09-02 - haggle # failure in job https://hydra.nixos.org/build/233198660 at 2023-09-02 - - Haggressive # failure in job https://hydra.nixos.org/build/233235332 at 2023-09-02 - HaGL # failure in job https://hydra.nixos.org/build/234457220 at 2023-09-13 - - hahp # failure in job https://hydra.nixos.org/build/233250101 at 2023-09-02 - haiji # failure in job https://hydra.nixos.org/build/233232272 at 2023-09-02 - - hailgun-send # failure in job https://hydra.nixos.org/build/282936164 at 2024-12-24 - - hairy # failure in job https://hydra.nixos.org/build/233226903 at 2023-09-02 - hakaru # failure in job https://hydra.nixos.org/build/233231467 at 2023-09-02 - - hakismet # failure in job https://hydra.nixos.org/build/233212497 at 2023-09-02 - - hakka # failure in job https://hydra.nixos.org/build/233196395 at 2023-09-02 - - hako # failure in job https://hydra.nixos.org/build/233257679 at 2023-09-02 - hakyll-agda # failure in job https://hydra.nixos.org/build/233332603 at 2023-09-02 - - hakyll-blaze-templates # failure in job https://hydra.nixos.org/build/233207117 at 2023-09-02 - - hakyll-contrib # failure in job https://hydra.nixos.org/build/233195056 at 2023-09-02 - - hakyll-contrib-csv # failure in job https://hydra.nixos.org/build/233229781 at 2023-09-02 - - hakyll-contrib-elm # failure in job https://hydra.nixos.org/build/233234686 at 2023-09-02 - hakyll-contrib-i18n # failure in job https://hydra.nixos.org/build/233218608 at 2023-09-02 - - hakyll-contrib-links # failure in job https://hydra.nixos.org/build/233218456 at 2023-09-02 - - hakyll-dir-list # failure in job https://hydra.nixos.org/build/233221518 at 2023-09-02 - hakyll-filestore # failure in job https://hydra.nixos.org/build/295094015 at 2025-04-22 - hakyll-process # failure in job https://hydra.nixos.org/build/295094014 at 2025-04-22 - - hakyll-R # failure in job https://hydra.nixos.org/build/233230132 at 2023-09-02 - - hakyll-series # failure in job https://hydra.nixos.org/build/233257506 at 2023-09-02 - - hakyll-shortcode # failure in job https://hydra.nixos.org/build/233240216 at 2023-09-02 - hakyll-typescript # failure in job https://hydra.nixos.org/build/233218630 at 2023-09-02 - hakyllbars # failure in job https://hydra.nixos.org/build/295094017 at 2025-04-22 - hal # failure in job https://hydra.nixos.org/build/295094030 at 2025-04-22 - - HaLeX # failure in job https://hydra.nixos.org/build/233233225 at 2023-09-02 - half-space # failure in job https://hydra.nixos.org/build/295094026 at 2025-04-22 - - halfs # failure in job https://hydra.nixos.org/build/233235337 at 2023-09-02 - halide-haskell # failure in job https://hydra.nixos.org/build/233244282 at 2023-09-02 - - halipeto # failure in job https://hydra.nixos.org/build/233223245 at 2023-09-02 - halive # failure in job https://hydra.nixos.org/build/233215317 at 2023-09-02 - halma # failure in job https://hydra.nixos.org/build/233245758 at 2023-09-02 - halves # failure in job https://hydra.nixos.org/build/233214240 at 2023-09-02 - ham # failure in job https://hydra.nixos.org/build/265955715 at 2024-07-14 - - hamilton # failure in job https://hydra.nixos.org/build/295094087 at 2025-04-22 - - HaMinitel # failure in job https://hydra.nixos.org/build/265955632 at 2024-07-14 - - hampp # failure in job https://hydra.nixos.org/build/233239269 at 2023-09-02 - - hamsql # failure in job https://hydra.nixos.org/build/233241294 at 2023-09-02 - - hamtmap # failure in job https://hydra.nixos.org/build/233225685 at 2023-09-02 - hanabi-dealer # failure in job https://hydra.nixos.org/build/233231209 at 2023-09-02 - - handa-gdata # failure in job https://hydra.nixos.org/build/233257022 at 2023-09-02 - - handle-like # failure in job https://hydra.nixos.org/build/233245789 at 2023-09-02 - - HandlerSocketClient # failure in job https://hydra.nixos.org/build/233239906 at 2023-09-02 - - handsy # failure in job https://hydra.nixos.org/build/233192732 at 2023-09-02 - Hangman # failure in job https://hydra.nixos.org/build/233257262 at 2023-09-02 - - hangman # failure in job https://hydra.nixos.org/build/252718314 at 2024-03-16 - HangmanAscii # failure in job https://hydra.nixos.org/build/233192660 at 2023-09-02 - - hannahci # failure in job https://hydra.nixos.org/build/233201493 at 2023-09-02 - - hans # failure in job https://hydra.nixos.org/build/233214027 at 2023-09-02 - hanspell # failure in job https://hydra.nixos.org/build/233238153 at 2023-09-02 - - haphviz # failure in job https://hydra.nixos.org/build/233206220 at 2023-09-02 - hapistrano # failure in job https://hydra.nixos.org/build/233209900 at 2023-09-02 - - happindicator # failure in job https://hydra.nixos.org/build/233212275 at 2023-09-02 - - happindicator3 # failure in job https://hydra.nixos.org/build/233191315 at 2023-09-02 - - happlets # failure in job https://hydra.nixos.org/build/233208337 at 2023-09-02 - - happraise # failure in job https://hydra.nixos.org/build/233251808 at 2023-09-02 - - HAppS-Util # failure in job https://hydra.nixos.org/build/233237912 at 2023-09-02 - - happstack # failure in job https://hydra.nixos.org/build/233196813 at 2023-09-02 - happstack-clientsession # failure in job https://hydra.nixos.org/build/233224969 at 2023-09-02 - - happstack-hamlet # failure in job https://hydra.nixos.org/build/233227835 at 2023-09-02 - - happstack-heist # failure in job https://hydra.nixos.org/build/252723609 at 2024-03-16 - - happstack-hstringtemplate # failure in job https://hydra.nixos.org/build/233201171 at 2023-09-02 - happstack-lite # failure in job https://hydra.nixos.org/build/233196392 at 2023-09-02 - - happstack-monad-peel # failure in job https://hydra.nixos.org/build/233247282 at 2023-09-02 - - happstack-server-tls-cryptonite # failure in job https://hydra.nixos.org/build/233236252 at 2023-09-02 - - happstack-util # failure in job https://hydra.nixos.org/build/233202063 at 2023-09-02 - - happstack-yui # failure in job https://hydra.nixos.org/build/233221482 at 2023-09-02 - happy-hour # failure in job https://hydra.nixos.org/build/252732958 at 2024-03-16 - - happybara # failure in job https://hydra.nixos.org/build/233236198 at 2023-09-02 - - happybara-webkit-server # failure in job https://hydra.nixos.org/build/233247667 at 2023-09-02 - - HappyTree # failure in job https://hydra.nixos.org/build/233249720 at 2023-09-02 - - hapstone # failure in job https://hydra.nixos.org/build/233190701 at 2023-09-02 - - HaPy # failure in job https://hydra.nixos.org/build/233256693 at 2023-09-02 - - haquery # failure in job https://hydra.nixos.org/build/233216714 at 2023-09-02 - - harchive # failure in job https://hydra.nixos.org/build/233259819 at 2023-09-02 - harfbuzz-pure # failure in job https://hydra.nixos.org/build/237235780 at 2023-10-21 - harg # failure in job https://hydra.nixos.org/build/233232453 at 2023-09-02 - - HARM # failure in job https://hydra.nixos.org/build/233232650 at 2023-09-02 - - HarmTrace-Base # failure in job https://hydra.nixos.org/build/233213843 at 2023-09-02 - - haroonga # failure in job https://hydra.nixos.org/build/233226376 at 2023-09-02 - harp # failure in job https://hydra.nixos.org/build/252730015 at 2024-03-16 - - harpy # failure in job https://hydra.nixos.org/build/233225779 at 2023-09-02 - - harvest-api # failure in job https://hydra.nixos.org/build/233213054 at 2023-09-02 - - has # failure in job https://hydra.nixos.org/build/233193689 at 2023-09-02 - hasbolt-extras # failure in job https://hydra.nixos.org/build/233211734 at 2023-09-02 - HasCacBDD # failure in job https://hydra.nixos.org/build/233238688 at 2023-09-02 - hascalam # failure in job https://hydra.nixos.org/build/295094052 at 2025-04-22 - - hascar # failure in job https://hydra.nixos.org/build/233197274 at 2023-09-02 - hascard # failure in job https://hydra.nixos.org/build/233238626 at 2023-09-02 - - hascas # failure in job https://hydra.nixos.org/build/233250350 at 2023-09-02 - - Haschoo # failure in job https://hydra.nixos.org/build/295090988 at 2025-04-22 - HasChor # failure in job https://hydra.nixos.org/build/295090966 at 2025-04-22 - - hash # failure in job https://hydra.nixos.org/build/233219137 at 2023-09-02 - - hashable-extras # failure in job https://hydra.nixos.org/build/233191748 at 2023-09-02 - - hashable-generics # failure in job https://hydra.nixos.org/build/233209175 at 2023-09-02 - hashable-orphans # failure in job https://hydra.nixos.org/build/252738804 at 2024-03-16 - hashable-time # failure in job https://hydra.nixos.org/build/252733552 at 2024-03-16 - - hashabler # failure in job https://hydra.nixos.org/build/233236154 at 2023-09-02 - hashed-storage # failure in job https://hydra.nixos.org/build/233193382 at 2023-09-02 - hasherize # failure in job https://hydra.nixos.org/build/252712987 at 2024-03-16 - - hashring # failure in job https://hydra.nixos.org/build/233231092 at 2023-09-02 - - hashtables-plus # failure in job https://hydra.nixos.org/build/233234463 at 2023-09-02 - - hasim # failure in job https://hydra.nixos.org/build/233248675 at 2023-09-02 - - hask # failure in job https://hydra.nixos.org/build/233215974 at 2023-09-02 - - haskades # failure in job https://hydra.nixos.org/build/233191525 at 2023-09-02 - - haskarrow # failure in job https://hydra.nixos.org/build/233223366 at 2023-09-02 - - haskbot-core # failure in job https://hydra.nixos.org/build/233194787 at 2023-09-02 - - haskeline-class # failure in job https://hydra.nixos.org/build/233214356 at 2023-09-02 - - haskelisp # failure in job https://hydra.nixos.org/build/233234452 at 2023-09-02 - - haskell-abci # failure in job https://hydra.nixos.org/build/259980321 at 2024-05-19 - haskell-admin-core # failure in job https://hydra.nixos.org/build/233242655 at 2023-09-02 - haskell-awk # failure in job https://hydra.nixos.org/build/233235921 at 2023-09-02 - - haskell-bcrypt # failure in job https://hydra.nixos.org/build/233258991 at 2023-09-02 - - haskell-bitmex-rest # failure in job https://hydra.nixos.org/build/233244003 at 2023-09-02 - - haskell-brainfuck # failure in job https://hydra.nixos.org/build/233233282 at 2023-09-02 - - haskell-cnc # failure in job https://hydra.nixos.org/build/233229233 at 2023-09-02 - - haskell-compression # failure in job https://hydra.nixos.org/build/233212749 at 2023-09-02 - - haskell-conll # failure in job https://hydra.nixos.org/build/233203484 at 2023-09-02 - - haskell-course-preludes # failure in job https://hydra.nixos.org/build/233196306 at 2023-09-02 - - haskell-disque # failure in job https://hydra.nixos.org/build/233226200 at 2023-09-02 - haskell-docs-cli # failure in job https://hydra.nixos.org/build/252718877 at 2024-03-16 - haskell-ffprobe # failure in job https://hydra.nixos.org/build/267973417 at 2024-07-31 - haskell-formatter # failure in job https://hydra.nixos.org/build/233237167 at 2023-09-02 - - haskell-generate # failure in job https://hydra.nixos.org/build/233197927 at 2023-09-02 - - haskell-go-checkers # failure in job https://hydra.nixos.org/build/234459896 at 2023-09-13 - haskell-halogen-core # failure in job https://hydra.nixos.org/build/299138362 at 2025-06-23 - - haskell-holes-th # failure in job https://hydra.nixos.org/build/233238457 at 2023-09-02 - haskell-igraph # failure in job https://hydra.nixos.org/build/233201209 at 2023-09-02 - - haskell-import-graph # failure in job https://hydra.nixos.org/build/233225328 at 2023-09-02 - - haskell-in-space # failure in job https://hydra.nixos.org/build/233207121 at 2023-09-02 - - haskell-kubernetes # failure in job https://hydra.nixos.org/build/233214499 at 2023-09-02 - haskell-lsp-types # failure in job https://hydra.nixos.org/build/233226386 at 2023-09-02 - - haskell-ml # failure in job https://hydra.nixos.org/build/233199372 at 2023-09-02 - - haskell-mpfr # failure in job https://hydra.nixos.org/build/233211691 at 2023-09-02 - - haskell-mpi # failure in job https://hydra.nixos.org/build/269654341 at 2024-08-19 - haskell-names # failure in job https://hydra.nixos.org/build/233191174 at 2023-09-02 - - haskell-neo4j-client # failure in job https://hydra.nixos.org/build/233202206 at 2023-09-02 - - haskell-openflow # failure in job https://hydra.nixos.org/build/233235229 at 2023-09-02 - - haskell-overridez # failure in job https://hydra.nixos.org/build/233215398 at 2023-09-02 - - haskell-packages # failure in job https://hydra.nixos.org/build/233192989 at 2023-09-02 - - haskell-player # failure in job https://hydra.nixos.org/build/233206419 at 2023-09-02 - - haskell-plot # failure in job https://hydra.nixos.org/build/233256531 at 2023-09-02 - - haskell-postal # failure in job https://hydra.nixos.org/build/233241454 at 2023-09-02 - - haskell-postgis # failure in job https://hydra.nixos.org/build/233258634 at 2023-09-02 - - haskell-read-editor # failure in job https://hydra.nixos.org/build/233225002 at 2023-09-02 - - haskell-rules # failure in job https://hydra.nixos.org/build/233225854 at 2023-09-02 - - haskell-snake # failure in job https://hydra.nixos.org/build/241433525 at 2023-11-19 - - haskell-spacegoo # failure in job https://hydra.nixos.org/build/233206108 at 2023-09-02 - - haskell-src-exts-prisms # failure in job https://hydra.nixos.org/build/233197742 at 2023-09-02 - - haskell-src-exts-qq # failure in job https://hydra.nixos.org/build/233234764 at 2023-09-02 - - haskell-src-exts-sc # failure in job https://hydra.nixos.org/build/233257890 at 2023-09-02 - - haskell-src-match # failure in job https://hydra.nixos.org/build/233233529 at 2023-09-02 - - haskell-src-meta-mwotton # failure in job https://hydra.nixos.org/build/233251914 at 2023-09-02 - haskell-stack-trace-plugin # failure in job https://hydra.nixos.org/build/233231305 at 2023-09-02 - haskell-to-elm # failure in job https://hydra.nixos.org/build/295094095 at 2025-04-22 - - haskell-type-exts # failure in job https://hydra.nixos.org/build/233209731 at 2023-09-02 - - haskell-typescript # failure in job https://hydra.nixos.org/build/233239625 at 2023-09-02 - - haskell-tyrant # failure in job https://hydra.nixos.org/build/233230507 at 2023-09-02 - - haskell2010 # failure in job https://hydra.nixos.org/build/233255384 at 2023-09-02 - - haskell2020 # failure in job https://hydra.nixos.org/build/233251111 at 2023-09-02 - - haskell98 # failure in job https://hydra.nixos.org/build/233231799 at 2023-09-02 - - haskell98libraries # failure in job https://hydra.nixos.org/build/233255099 at 2023-09-02 - - HaskellAnalysisProgram # failure in job https://hydra.nixos.org/build/233235074 at 2023-09-02 - - haskelldb # failure in job https://hydra.nixos.org/build/233248300 at 2023-09-02 - - haskelldb-wx # failure in job https://hydra.nixos.org/build/233197525 at 2023-09-02 + - haskell-xmpp # previously transitively broken at 2025-09-08 - HaskellForMaths # failure in job https://hydra.nixos.org/build/233237608 at 2023-09-02 - - HaskellLM # failure in job https://hydra.nixos.org/build/233237641 at 2023-09-02 - - HaskellNN # failure in job https://hydra.nixos.org/build/233209323 at 2023-09-02 - - Haskelloids # failure in job https://hydra.nixos.org/build/233204861 at 2023-09-02 - - haskellscrabble # failure in job https://hydra.nixos.org/build/233251248 at 2023-09-02 - - haskellscript # failure in job https://hydra.nixos.org/build/233193435 at 2023-09-02 - - HaskellTorrent # failure in job https://hydra.nixos.org/build/233231874 at 2023-09-02 - - HaskellTutorials # failure in job https://hydra.nixos.org/build/233209605 at 2023-09-02 - - haskelzinc # failure in job https://hydra.nixos.org/build/233207478 at 2023-09-02 - - haskeme # failure in job https://hydra.nixos.org/build/233232706 at 2023-09-02 - haskey-btree # failure in job https://hydra.nixos.org/build/233213529 at 2023-09-02 - - haskheap # failure in job https://hydra.nixos.org/build/233231657 at 2023-09-02 - - haskhol-core # failure in job https://hydra.nixos.org/build/233232550 at 2023-09-02 - - haskmon # failure in job https://hydra.nixos.org/build/233228390 at 2023-09-02 + - haskmon # previously transitively broken at 2025-09-08 - haskoin # failure in job https://hydra.nixos.org/build/233201668 at 2023-09-02 - haskoin-store # failure in job https://hydra.nixos.org/build/299138382 at 2025-06-23 - haskoin-util # failure in job https://hydra.nixos.org/build/233222171 at 2023-09-02 - - haskore-realtime # failure in job https://hydra.nixos.org/build/301391170 at 2025-07-01 - - haskore-vintage # failure in job https://hydra.nixos.org/build/233230742 at 2023-09-02 - - HaskRel # failure in job https://hydra.nixos.org/build/295090970 at 2025-04-22 - - hasktorch-codegen # failure in job https://hydra.nixos.org/build/233232876 at 2023-09-02 - - hasktorch-ffi-th # failure in job https://hydra.nixos.org/build/233252974 at 2023-09-02 - - hasktorch-signatures-partial # failure in job https://hydra.nixos.org/build/233197869 at 2023-09-02 - - hasktorch-signatures-support # failure in job https://hydra.nixos.org/build/233212137 at 2023-09-02 + - haskus-binary # previously transitively broken at 2025-09-08 - haskus-utils-variant # failure in job https://hydra.nixos.org/build/233218226 at 2023-09-02 - haskyapi # failure in job https://hydra.nixos.org/build/233247040 at 2023-09-02 - - hasmin # failure in job https://hydra.nixos.org/build/233256557 at 2023-09-02 - haspara # failure in job https://hydra.nixos.org/build/233208502 at 2023-09-02 - - hasparql-client # failure in job https://hydra.nixos.org/build/233191734 at 2023-09-02 - - hasql-backend # failure in job https://hydra.nixos.org/build/233255310 at 2023-09-02 - - hasql-class # failure in job https://hydra.nixos.org/build/233191053 at 2023-09-02 - hasql-cursor-query # failure in job https://hydra.nixos.org/build/295094141 at 2025-04-22 - hasql-effectful # failure in job https://hydra.nixos.org/build/252721674 at 2024-03-16 - hasql-explain-tests # failure in job https://hydra.nixos.org/build/233247034 at 2023-09-02 - - hasql-generic # failure in job https://hydra.nixos.org/build/233204654 at 2023-09-02 - hasql-migration # failure in job https://hydra.nixos.org/build/295094132 at 2025-04-22 - hasql-mover # failure in job https://hydra.nixos.org/build/295094128 at 2025-04-22 - hasql-pipes # failure in job https://hydra.nixos.org/build/295094119 at 2025-04-22 - hasql-resource-pool # failure in job https://hydra.nixos.org/build/233217667 at 2023-09-02 - - hasql-simple # failure in job https://hydra.nixos.org/build/233249588 at 2023-09-02 - hasql-streams-conduit # failure in job https://hydra.nixos.org/build/295094143 at 2025-04-22 - hasql-streams-pipes # failure in job https://hydra.nixos.org/build/295094154 at 2025-04-22 - hasql-streams-streaming # failure in job https://hydra.nixos.org/build/295094151 at 2025-04-22 - hasql-streams-streamly # failure in job https://hydra.nixos.org/build/295094144 at 2025-04-22 - hasql-url # failure in job https://hydra.nixos.org/build/233201809 at 2023-09-02 - - hasqly-mysql # failure in job https://hydra.nixos.org/build/295094153 at 2025-04-22 - hastache # failure in job https://hydra.nixos.org/build/233224317 at 2023-09-02 - - haste # failure in job https://hydra.nixos.org/build/233238510 at 2023-09-02 - - haste-prim # failure in job https://hydra.nixos.org/build/233203281 at 2023-09-02 - - hat # failure in job https://hydra.nixos.org/build/233243655 at 2023-09-02 - - hatex-guide # failure in job https://hydra.nixos.org/build/233258593 at 2023-09-02 - - hats # failure in job https://hydra.nixos.org/build/233256724 at 2023-09-02 - - hatt # failure in job https://hydra.nixos.org/build/233195039 at 2023-09-02 - - haven # failure in job https://hydra.nixos.org/build/233216806 at 2023-09-02 - - haverer # failure in job https://hydra.nixos.org/build/233210491 at 2023-09-02 - - hax # failure in job https://hydra.nixos.org/build/233212147 at 2023-09-02 - haxl # failure in job https://hydra.nixos.org/build/233243740 at 2023-09-02 - - haxparse # failure in job https://hydra.nixos.org/build/233205900 at 2023-09-02 - - haxr-th # failure in job https://hydra.nixos.org/build/233250109 at 2023-09-02 - - hayland # failure in job https://hydra.nixos.org/build/233201482 at 2023-09-02 - - hayoo-cli # failure in job https://hydra.nixos.org/build/233245478 at 2023-09-02 - - hBDD-CMUBDD # failure in job https://hydra.nixos.org/build/233210132 at 2023-09-02 - - hBDD-CUDD # failure in job https://hydra.nixos.org/build/233243982 at 2023-09-02 - - hbeanstalk # failure in job https://hydra.nixos.org/build/233229856 at 2023-09-02 - - hbeat # failure in job https://hydra.nixos.org/build/233228628 at 2023-09-02 - - hblas # failure in job https://hydra.nixos.org/build/233232561 at 2023-09-02 - - hblock # failure in job https://hydra.nixos.org/build/233205351 at 2023-09-02 + - hblas # previously transitively broken at 2025-09-08 - hblosc # failure in job https://hydra.nixos.org/build/302803521 at 2025-07-27 - - hburg # failure in job https://hydra.nixos.org/build/233247429 at 2023-09-02 - - hcad # failure in job https://hydra.nixos.org/build/233219976 at 2023-09-02 - - HCard # failure in job https://hydra.nixos.org/build/233231922 at 2023-09-02 - - hcc # failure in job https://hydra.nixos.org/build/233235578 at 2023-09-02 - - hcg-minus # failure in job https://hydra.nixos.org/build/233205053 at 2023-09-02 + - hcheckers # previously transitively broken at 2025-09-08 - hchesslib # failure in job https://hydra.nixos.org/build/233203219 at 2023-09-02 - - hcltest # failure in job https://hydra.nixos.org/build/233230099 at 2023-09-02 - - hcoap # failure in job https://hydra.nixos.org/build/233233393 at 2023-09-02 - - hcobs # failure in job https://hydra.nixos.org/build/233230173 at 2023-09-02 - hcom # failure in job https://hydra.nixos.org/build/233201664 at 2023-09-02 - hcount # failure in job https://hydra.nixos.org/build/245788445 at 2024-01-07 - - hcron # failure in job https://hydra.nixos.org/build/233235518 at 2023-09-02 - - hCsound # failure in job https://hydra.nixos.org/build/233254871 at 2023-09-02 - - hdaemonize-buildfix # failure in job https://hydra.nixos.org/build/233225678 at 2023-09-02 - - hdbc-aeson # failure in job https://hydra.nixos.org/build/233240596 at 2023-09-02 - - HDBC-mysql # failure in job https://hydra.nixos.org/build/233205323 at 2023-09-02 - - hdbc-postgresql-hstore # failure in job https://hydra.nixos.org/build/233201143 at 2023-09-02 - - HDBC-postgresql-hstore # failure in job https://hydra.nixos.org/build/233243932 at 2023-09-02 - - hdevtools # failure in job https://hydra.nixos.org/build/233229115 at 2023-09-02 - - hdf # failure in job https://hydra.nixos.org/build/233221986 at 2023-09-02 - hdf5 # failure in job https://hydra.nixos.org/build/233244523 at 2023-09-02 - - hDFA # failure in job https://hydra.nixos.org/build/233229180 at 2023-09-02 - - hdigest # failure in job https://hydra.nixos.org/build/233257809 at 2023-09-02 - - hdis86 # failure in job https://hydra.nixos.org/build/233229636 at 2023-09-02 - - hdiscount # failure in job https://hydra.nixos.org/build/233236884 at 2023-09-02 - - hdm # failure in job https://hydra.nixos.org/build/233238354 at 2023-09-02 - - hdo # failure in job https://hydra.nixos.org/build/233218112 at 2023-09-02 - - hdph-closure # failure in job https://hydra.nixos.org/build/233191583 at 2023-09-02 - - hdr-histogram # failure in job https://hydra.nixos.org/build/233196278 at 2023-09-02 - - headergen # failure in job https://hydra.nixos.org/build/233229610 at 2023-09-02 - heap-console # failure in job https://hydra.nixos.org/build/233191563 at 2023-09-02 - - heapsort # failure in job https://hydra.nixos.org/build/233197726 at 2023-09-02 - - heart-core # failure in job https://hydra.nixos.org/build/233216585 at 2023-09-02 - heartbeat-streams # failure in job https://hydra.nixos.org/build/233214515 at 2023-09-02 - - heatitup-complete # failure in job https://hydra.nixos.org/build/233218404 at 2023-09-02 + - heavy-logger # previously transitively broken at 2025-09-08 + - heavy-logger-instances # previously transitively broken at 2025-09-08 - hebrew-time # failure in job https://hydra.nixos.org/build/233250014 at 2023-09-02 - - heckle # failure in job https://hydra.nixos.org/build/233228954 at 2023-09-02 - heddit # failure in job https://hydra.nixos.org/build/233229058 at 2023-09-02 - - hedgehog-checkers # failure in job https://hydra.nixos.org/build/233229405 at 2023-09-02 - hedgehog-extras # failure in job https://hydra.nixos.org/build/302803553, https://github.com/input-output-hk/hedgehog-extras/issues/93 at 2025-07-27 - - hedgehog-gen # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/237243271 at 2023-10-21 - - hedgehog-generic # failure in job https://hydra.nixos.org/build/233204695 at 2023-09-02 - hedgehog-golden # failure in job https://hydra.nixos.org/build/233219619 at 2023-09-02 - hedgehog-lens # failure in job https://hydra.nixos.org/build/233251825 at 2023-09-02 - hedgehog-servant # failure in job https://hydra.nixos.org/build/233258223 at 2023-09-02 - - hedis-config # failure in job https://hydra.nixos.org/build/233198326 at 2023-09-02 - - hedis-monadic # failure in job https://hydra.nixos.org/build/252738915 at 2024-03-16 - - hedis-namespace # failure in job https://hydra.nixos.org/build/233256546 at 2023-09-02 - - hedis-simple # failure in job https://hydra.nixos.org/build/233231466 at 2023-09-02 - - hedis-tags # failure in job https://hydra.nixos.org/build/233246456 at 2023-09-02 - - hedra # failure in job https://hydra.nixos.org/build/233217122 at 2023-09-02 - hegg # failure in job https://hydra.nixos.org/build/295094168 at 2025-04-22 - heidi # failure in job https://hydra.nixos.org/build/233199241 at 2023-09-02 - - hein # failure in job https://hydra.nixos.org/build/233241797 at 2023-09-02 - - heist-async # failure in job https://hydra.nixos.org/build/252736889 at 2024-03-16 - heist-emanote # failure in job https://hydra.nixos.org/build/233242732 at 2023-09-02 - - helisp # failure in job https://hydra.nixos.org/build/233221194 at 2023-09-02 - - helium-overture # failure in job https://hydra.nixos.org/build/295094176 at 2025-04-22 - - helix # failure in job https://hydra.nixos.org/build/233254335 at 2023-09-02 - hell # failure in job https://hydra.nixos.org/build/295094172 at 2025-04-22 - - helm # failure in job https://hydra.nixos.org/build/233251620 at 2023-09-02 - - help-esb # failure in job https://hydra.nixos.org/build/233202622 at 2023-09-02 - - hemkay # failure in job https://hydra.nixos.org/build/233227889 at 2023-09-02 - - her-lexer-parsec # failure in job https://hydra.nixos.org/build/233237312 at 2023-09-02 - - HERA # failure in job https://hydra.nixos.org/build/233204724 at 2023-09-02 - - herbalizer # failure in job https://hydra.nixos.org/build/233214866 at 2023-09-02 - - HerbiePlugin # failure in job https://hydra.nixos.org/build/233193018 at 2023-09-02 - heredocs # failure in job https://hydra.nixos.org/build/233238862 at 2023-09-02 - - Hermes # failure in job https://hydra.nixos.org/build/233223694 at 2023-09-02 - - herms # failure in job https://hydra.nixos.org/build/233217216 at 2023-09-02 - - heroku-persistent # failure in job https://hydra.nixos.org/build/233253569 at 2023-09-02 - - hetero-dict # failure in job https://hydra.nixos.org/build/233250917 at 2023-09-02 - - heterogeneous-list-literals # failure in job https://hydra.nixos.org/build/233212297 at 2023-09-02 - - hetris # failure in job https://hydra.nixos.org/build/233256814 at 2023-09-02 - - heukarya # failure in job https://hydra.nixos.org/build/233247440 at 2023-09-02 - - HExcel # failure in job https://hydra.nixos.org/build/233211971 at 2023-09-02 - - hexchat # failure in job https://hydra.nixos.org/build/233234161 at 2023-09-02 - - hexif # failure in job https://hydra.nixos.org/build/233245470 at 2023-09-02 - - hexmino # failure in job https://hydra.nixos.org/build/234458679 at 2023-09-13 - hexml-lens # failure in job https://hydra.nixos.org/build/233247930 at 2023-09-02 - - hexpat-lens # failure in job https://hydra.nixos.org/build/233199827 at 2023-09-02 - - hexpat-pickle-generic # failure in job https://hydra.nixos.org/build/233219898 at 2023-09-02 - hexpat-streamparser # failure in job https://hydra.nixos.org/build/233249543 at 2023-09-02 - - hexpr # failure in job https://hydra.nixos.org/build/233198146 at 2023-09-02 - - hexpress # failure in job https://hydra.nixos.org/build/233219047 at 2023-09-02 - - hexquote # failure in job https://hydra.nixos.org/build/233230240 at 2023-09-02 - - hext # failure in job https://hydra.nixos.org/build/233221345 at 2023-09-02 - - hextra # failure in job https://hydra.nixos.org/build/233238071 at 2023-09-02 - hextream # failure in job https://hydra.nixos.org/build/252712270 at 2024-03-16 - - heyefi # failure in job https://hydra.nixos.org/build/233221712 at 2023-09-02 - heyting-algebras # failure in job https://hydra.nixos.org/build/233259836 at 2023-09-02 - - hF2 # failure in job https://hydra.nixos.org/build/233208978 at 2023-09-02 - - hfann # failure in job https://hydra.nixos.org/build/233198657 at 2023-09-02 - - HFitUI # failure in job https://hydra.nixos.org/build/233218009 at 2023-09-02 - hfmt # failure in job https://hydra.nixos.org/build/233246648 at 2023-09-02 - - hfoil # failure in job https://hydra.nixos.org/build/234467169 at 2023-09-13 - - hfov # failure in job https://hydra.nixos.org/build/233227082 at 2023-09-02 - - HFrequencyQueue # failure in job https://hydra.nixos.org/build/233218262 at 2023-09-02 - - hfusion # failure in job https://hydra.nixos.org/build/233198044 at 2023-09-02 - - hg-buildpackage # failure in job https://hydra.nixos.org/build/233244725 at 2023-09-02 - - HGamer3D # failure in job https://hydra.nixos.org/build/233200642 at 2023-09-02 - - HGamer3D-Data # failure in job https://hydra.nixos.org/build/233248475 at 2023-09-02 - - hgdbmi # failure in job https://hydra.nixos.org/build/233227678 at 2023-09-02 - - HGE2D # failure in job https://hydra.nixos.org/build/234449154 at 2023-09-13 - - hgearman # failure in job https://hydra.nixos.org/build/233231063 at 2023-09-02 - - hGelf # failure in job https://hydra.nixos.org/build/233203909 at 2023-09-02 - - hgeometric # failure in job https://hydra.nixos.org/build/233197856 at 2023-09-02 - hgis # failure in job https://hydra.nixos.org/build/233200418 at 2023-09-02 - - hgom # failure in job https://hydra.nixos.org/build/233255569 at 2023-09-02 - - hgopher # failure in job https://hydra.nixos.org/build/233222066 at 2023-09-02 - - HGraphStorage # failure in job https://hydra.nixos.org/build/233217988 at 2023-09-02 - hgreet # failure in job https://hydra.nixos.org/build/233247614 at 2023-09-02 - - hgrep # failure in job https://hydra.nixos.org/build/233219726 at 2023-09-02 - - hgrev # failure in job https://hydra.nixos.org/build/233241115 at 2023-09-02 - - hgrib # failure in job https://hydra.nixos.org/build/233226885 at 2023-09-02 - - hharp # failure in job https://hydra.nixos.org/build/233237395 at 2023-09-02 - - HHDL # failure in job https://hydra.nixos.org/build/233197917 at 2023-09-02 - hhp # failure in job https://hydra.nixos.org/build/233244322 at 2023-09-02 - - hhwloc # failure in job https://hydra.nixos.org/build/233215132 at 2023-09-02 - - hi # failure in job https://hydra.nixos.org/build/295094222 at 2025-04-22 - - hi3status # failure in job https://hydra.nixos.org/build/233217321 at 2023-09-02 - - hichi # failure in job https://hydra.nixos.org/build/233208897 at 2023-09-02 - - hid # failure in job https://hydra.nixos.org/build/233209289 at 2023-09-02 - - hid-examples # failure in job https://hydra.nixos.org/build/233221413 at 2023-09-02 - - hidden-char # failure in job https://hydra.nixos.org/build/233206791 at 2023-09-02 - - hieraclus # failure in job https://hydra.nixos.org/build/233241310 at 2023-09-02 - - hierarchical-clustering # failure in job https://hydra.nixos.org/build/233226120 at 2023-09-02 - - hierarchical-exceptions # failure in job https://hydra.nixos.org/build/233195047 at 2023-09-02 - - hierarchy # failure in job https://hydra.nixos.org/build/233203253 at 2023-09-02 - - hiernotify # failure in job https://hydra.nixos.org/build/233223185 at 2023-09-02 - - hifi # failure in job https://hydra.nixos.org/build/233192325 at 2023-09-02 - higgledy # failure in job https://hydra.nixos.org/build/252718176 at 2024-03-16 - - higher-leveldb # failure in job https://hydra.nixos.org/build/233237992 at 2023-09-02 - - higherorder # failure in job https://hydra.nixos.org/build/233201392 at 2023-09-02 - highjson # failure in job https://hydra.nixos.org/build/233221080 at 2023-09-02 - - highlight-versions # failure in job https://hydra.nixos.org/build/233240502 at 2023-09-02 - - highlighter # failure in job https://hydra.nixos.org/build/252735594 at 2024-03-16 - - highlighting-kate # failure in job https://hydra.nixos.org/build/252739418 at 2024-03-16 - - highWaterMark # failure in job https://hydra.nixos.org/build/233244731 at 2023-09-02 - hikchr # failure in job https://hydra.nixos.org/build/295094234 at 2025-04-22 - hills # failure in job https://hydra.nixos.org/build/233215201 at 2023-09-02 - - himg # failure in job https://hydra.nixos.org/build/233213810 at 2023-09-02 - - hindley-milner # failure in job https://hydra.nixos.org/build/233195252 at 2023-09-02 - hindley-milner-type-check # failure in job https://hydra.nixos.org/build/233216545 at 2023-09-02 - - hinotify-bytestring # failure in job https://hydra.nixos.org/build/252716847 at 2024-03-16 - hinotify-conduit # failure in job https://hydra.nixos.org/build/252710760 at 2024-03-16 - - hinquire # failure in job https://hydra.nixos.org/build/233235549 at 2023-09-02 - - hinstaller # failure in job https://hydra.nixos.org/build/233244650 at 2023-09-02 - - hint-server # failure in job https://hydra.nixos.org/build/233240346 at 2023-09-02 - - hinter # failure in job https://hydra.nixos.org/build/233245954 at 2023-09-02 - hinterface # failure in job https://hydra.nixos.org/build/233250383 at 2023-09-02 - - hipchat-hs # failure in job https://hydra.nixos.org/build/233198550 at 2023-09-02 - - Hipmunk # failure in job https://hydra.nixos.org/build/233259272 at 2023-09-02 - - hips # failure in job https://hydra.nixos.org/build/252728413 at 2024-03-16 - hipsql-api # failure in job https://hydra.nixos.org/build/233222961 at 2023-09-02 - hipsql-monad # failure in job https://hydra.nixos.org/build/252731820 at 2024-03-16 - - hircules # failure in job https://hydra.nixos.org/build/233221393 at 2023-09-02 - - Hish # failure in job https://hydra.nixos.org/build/233226443 at 2023-09-02 - - hissmetrics # failure in job https://hydra.nixos.org/build/233206890 at 2023-09-02 - - hist-pl-types # failure in job https://hydra.nixos.org/build/233245977 at 2023-09-02 - - historian # failure in job https://hydra.nixos.org/build/233210703 at 2023-09-02 - - hit-on # failure in job https://hydra.nixos.org/build/233233939 at 2023-09-02 - hix # failure in job https://hydra.nixos.org/build/267986775 at 2024-07-31 - - HJavaScript # failure in job https://hydra.nixos.org/build/233191718 at 2023-09-02 - - hjcase # failure in job https://hydra.nixos.org/build/233195095 at 2023-09-02 - - hjs # failure in job https://hydra.nixos.org/build/233215541 at 2023-09-02 - - hjson-query # failure in job https://hydra.nixos.org/build/233202240 at 2023-09-02 - - hjsonpointer # failure in job https://hydra.nixos.org/build/233238177 at 2023-09-02 - - hjugement-protocol # failure in job https://hydra.nixos.org/build/233227109 at 2023-09-02 - - HJVM # failure in job https://hydra.nixos.org/build/233238646 at 2023-09-02 - - hkd-delta # failure in job https://hydra.nixos.org/build/233204318 at 2023-09-02 - - hkd-lens # failure in job https://hydra.nixos.org/build/233242120 at 2023-09-02 - hkd-records # failure in job https://hydra.nixos.org/build/233234491 at 2023-09-02 - - hkt # failure in job https://hydra.nixos.org/build/233244808 at 2023-09-02 - hlatex # failure in job https://hydra.nixos.org/build/252732433 at 2024-03-16 - - hlbfgsb # failure in job https://hydra.nixos.org/build/233260021 at 2023-09-02 - - hleap # failure in job https://hydra.nixos.org/build/233229908 at 2023-09-02 - - hledger-api # failure in job https://hydra.nixos.org/build/295094278 at 2025-04-22 - - hledger-chart # failure in job https://hydra.nixos.org/build/233205387 at 2023-09-02 - - hledger-diff # failure in job https://hydra.nixos.org/build/233199639 at 2023-09-02 - hledger-flow # failure in job https://hydra.nixos.org/build/233252169 at 2023-09-02 - - hledger-irr # failure in job https://hydra.nixos.org/build/233230276 at 2023-09-02 - - hledger-makeitso # failure in job https://hydra.nixos.org/build/233213046 at 2023-09-02 - - hledger-vty # failure in job https://hydra.nixos.org/build/233191782 at 2023-09-02 - - hlibBladeRF # failure in job https://hydra.nixos.org/build/233237204 at 2023-09-02 - - hlibev # failure in job https://hydra.nixos.org/build/233256218 at 2023-09-02 - - hlibfam # failure in job https://hydra.nixos.org/build/233244702 at 2023-09-02 - hlint-plugin # failure in job https://hydra.nixos.org/build/236693381 at 2023-10-04 - - hlivy # failure in job https://hydra.nixos.org/build/233222495 at 2023-09-02 - - hlogger # failure in job https://hydra.nixos.org/build/233197314 at 2023-09-02 - - HLogger # failure in job https://hydra.nixos.org/build/233247351 at 2023-09-02 - - hlongurl # failure in job https://hydra.nixos.org/build/233227204 at 2023-09-02 - hls-alternate-number-format-plugin # failure in job https://hydra.nixos.org/build/253704250 at 2024-03-31 - hls-brittany-plugin # failure in job https://hydra.nixos.org/build/233201998 at 2023-09-02 - hls-cabal-fmt-plugin # failure in job https://hydra.nixos.org/build/253689716 at 2024-03-31 @@ -2742,328 +803,83 @@ broken-packages: - hls-stan-plugin # failure in job https://hydra.nixos.org/build/253693419 at 2024-03-31 - hls-stylish-haskell-plugin # failure in job https://hydra.nixos.org/build/253696920 at 2024-03-31 - hls-tactics-plugin # failure in job https://hydra.nixos.org/build/233238907 at 2023-09-02 - - hlwm # failure in job https://hydra.nixos.org/build/233235119 at 2023-09-02 - - hly # failure in job https://hydra.nixos.org/build/233206910 at 2023-09-02 - - HMarkov # failure in job https://hydra.nixos.org/build/252712651 at 2024-03-16 - - hmarkup # failure in job https://hydra.nixos.org/build/233234817 at 2023-09-02 - - hmatrix-banded # failure in job https://hydra.nixos.org/build/233244249 at 2023-09-02 - - hmatrix-mmap # failure in job https://hydra.nixos.org/build/233233046 at 2023-09-02 - hmatrix-morpheus # failure in job https://hydra.nixos.org/build/295094280 at 2025-04-22 - - hmatrix-nipals # failure in job https://hydra.nixos.org/build/233197543 at 2023-09-02 - - hmatrix-sparse # failure in job https://hydra.nixos.org/build/233224288 at 2023-09-02 - - hmatrix-static # failure in job https://hydra.nixos.org/build/233193039 at 2023-09-02 - - hmatrix-svdlibc # failure in job https://hydra.nixos.org/build/233216875 at 2023-09-02 - - hmatrix-syntax # failure in job https://hydra.nixos.org/build/233234153 at 2023-09-02 - - hmatrix-tests # failure in job https://hydra.nixos.org/build/233230077 at 2023-09-02 - - hmenu # failure in job https://hydra.nixos.org/build/233219510 at 2023-09-02 - - hmk # failure in job https://hydra.nixos.org/build/233226029 at 2023-09-02 - - hmm # failure in job https://hydra.nixos.org/build/233191368 at 2023-09-02 - - HMM # failure in job https://hydra.nixos.org/build/233233312 at 2023-09-02 - - hmm-hmatrix # failure in job https://hydra.nixos.org/build/233208947 at 2023-09-02 - - hMollom # failure in job https://hydra.nixos.org/build/233214138 at 2023-09-02 - - hmp3 # failure in job https://hydra.nixos.org/build/233240864 at 2023-09-02 - - Hmpf # failure in job https://hydra.nixos.org/build/233212948 at 2023-09-02 - - hmumps # failure in job https://hydra.nixos.org/build/233209336 at 2023-09-02 - - hnetcdf # failure in job https://hydra.nixos.org/build/252727915 at 2024-03-16 - hnn # failure in job https://hydra.nixos.org/build/233253882 at 2023-09-02 - - hnock # failure in job https://hydra.nixos.org/build/233247419 at 2023-09-02 - - hnop # failure in job https://hydra.nixos.org/build/233214340 at 2023-09-02 - - ho-rewriting # failure in job https://hydra.nixos.org/build/233253726 at 2023-09-02 - - hoauth # failure in job https://hydra.nixos.org/build/233191191 at 2023-09-02 - hoauth2-demo # failure in job https://hydra.nixos.org/build/295094328 at 2025-04-22 - hoauth2-providers-tutorial # failure in job https://hydra.nixos.org/build/295094327 at 2025-04-22 - hoauth2-tutorial # failure in job https://hydra.nixos.org/build/233198819 at 2023-09-02 - - hobbes # failure in job https://hydra.nixos.org/build/233211279 at 2023-09-02 - hobbits # failure in job https://hydra.nixos.org/build/233209874 at 2023-09-02 - - hocilib # failure in job https://hydra.nixos.org/build/233256688 at 2023-09-02 - - hocker # failure in job https://hydra.nixos.org/build/233235020 at 2023-09-02 + - hocilib # previously transitively broken at 2025-09-08 - hocon # failure in job https://hydra.nixos.org/build/233235831 at 2023-09-02 - - hodatime # failure in job https://hydra.nixos.org/build/233213965 at 2023-09-02 - - HODE # failure in job https://hydra.nixos.org/build/233214875 at 2023-09-02 - - hoe # failure in job https://hydra.nixos.org/build/233218776 at 2023-09-02 - - hofix-mtl # failure in job https://hydra.nixos.org/build/233225185 at 2023-09-02 - - hog # failure in job https://hydra.nixos.org/build/233220359 at 2023-09-02 - - hogg # failure in job https://hydra.nixos.org/build/233257874 at 2023-09-02 - - hoggl # failure in job https://hydra.nixos.org/build/233194252 at 2023-09-02 - - hois # failure in job https://hydra.nixos.org/build/233250712 at 2023-09-02 - - hold-em # failure in job https://hydra.nixos.org/build/233236968 at 2023-09-02 - - hole # failure in job https://hydra.nixos.org/build/233226698 at 2023-09-02 + - hois # previously transitively broken at 2025-09-08 - holidays # failure in job https://hydra.nixos.org/build/295094304 at 2025-04-22 - holmes # failure in job https://hydra.nixos.org/build/233257690 at 2023-09-02 - - Holumbus-Searchengine # failure in job https://hydra.nixos.org/build/233203951 at 2023-09-02 - - homeomorphic # failure in job https://hydra.nixos.org/build/233203853 at 2023-09-02 - - homoiconic # failure in job https://hydra.nixos.org/build/233205548 at 2023-09-02 - homplexity # failure in job https://hydra.nixos.org/build/233195616 at 2023-09-02 - - honi # failure in job https://hydra.nixos.org/build/233241731 at 2023-09-02 - - hoobuddy # failure in job https://hydra.nixos.org/build/233252172 at 2023-09-02 - - hood-off # failure in job https://hydra.nixos.org/build/233249500 at 2023-09-02 - - hood2 # failure in job https://hydra.nixos.org/build/233204179 at 2023-09-02 - - hoodle-types # failure in job https://hydra.nixos.org/build/233195584 at 2023-09-02 - - hoogle-index # failure in job https://hydra.nixos.org/build/233251874 at 2023-09-02 - - hooks-dir # failure in job https://hydra.nixos.org/build/233254014 at 2023-09-02 - - hoop # failure in job https://hydra.nixos.org/build/233214206 at 2023-09-02 - - hoopl # failure in job https://hydra.nixos.org/build/233250120 at 2023-09-02 - - hopencc # failure in job https://hydra.nixos.org/build/233192954 at 2023-09-02 - - hopencl # failure in job https://hydra.nixos.org/build/233249443 at 2023-09-02 - - HOpenCV # failure in job https://hydra.nixos.org/build/233255422 at 2023-09-02 - - hopfield # failure in job https://hydra.nixos.org/build/233598214 at 2023-09-02 - - hopfli # failure in job https://hydra.nixos.org/build/295094317 at 2025-04-22 + - hoop # previously transitively broken at 2025-09-08 - hoppy-generator # failure in job https://hydra.nixos.org/build/233240608 at 2023-09-02 - - hops # failure in job https://hydra.nixos.org/build/233207172 at 2023-09-02 - - hoq # failure in job https://hydra.nixos.org/build/233234499 at 2023-09-02 - - horizon # failure in job https://hydra.nixos.org/build/233215473 at 2023-09-02 - horizon-gen-nix # failure in job https://hydra.nixos.org/build/233663130 at 2023-09-02 - horizon-spec # failure in job https://hydra.nixos.org/build/244399500 at 2024-01-01 - horizon-spec-lens # failure in job https://hydra.nixos.org/build/233221337 at 2023-09-02 - horizon-spec-pretty # failure in job https://hydra.nixos.org/build/233227612 at 2023-09-02 - - horname # failure in job https://hydra.nixos.org/build/233198123 at 2023-09-02 - - hosc-json # failure in job https://hydra.nixos.org/build/233220569 at 2023-09-02 - - hosts-server # failure in job https://hydra.nixos.org/build/233249074 at 2023-09-02 - - hothasktags # failure in job https://hydra.nixos.org/build/233207150 at 2023-09-02 - - hourglass-fuzzy-parsing # failure in job https://hydra.nixos.org/build/233200977 at 2023-09-02 - - houseman # failure in job https://hydra.nixos.org/build/233247185 at 2023-09-02 - - hp2any-core # failure in job https://hydra.nixos.org/build/233205070 at 2023-09-02 - - hpack-convert # failure in job https://hydra.nixos.org/build/233257334 at 2023-09-02 - hpack-dhall # failure in job https://hydra.nixos.org/build/233663050 at 2023-09-02 - - hpapi # failure in job https://hydra.nixos.org/build/233208886 at 2023-09-02 - - hpasteit # failure in job https://hydra.nixos.org/build/233197680 at 2023-09-02 - - HPath # failure in job https://hydra.nixos.org/build/233257819 at 2023-09-02 - - hpc-coveralls # failure in job https://hydra.nixos.org/build/233255685 at 2023-09-02 - hpdft # failure in job https://hydra.nixos.org/build/236675535 at 2023-10-04 - - hpg # failure in job https://hydra.nixos.org/build/233243212 at 2023-09-02 - HPi # failure in job https://hydra.nixos.org/build/233257411 at 2023-09-02 - - hpio # failure in job https://hydra.nixos.org/build/233215789 at 2023-09-02 - - hplaylist # failure in job https://hydra.nixos.org/build/233219978 at 2023-09-02 - - hpodder # failure in job https://hydra.nixos.org/build/233207276 at 2023-09-02 - hpqtypes # failure in job https://hydra.nixos.org/build/233256283 at 2023-09-02 - - hps-kmeans # failure in job https://hydra.nixos.org/build/233207461 at 2023-09-02 - - hPushover # failure in job https://hydra.nixos.org/build/233215804 at 2023-09-02 - - hpygments # failure in job https://hydra.nixos.org/build/233258827 at 2023-09-02 - - hpylos # failure in job https://hydra.nixos.org/build/234451400 at 2023-09-13 - - hpyrg # failure in job https://hydra.nixos.org/build/233225042 at 2023-09-02 - hqcsim # failure in job https://hydra.nixos.org/build/270086589 at 2024-08-31 - hquantlib # failure in job https://hydra.nixos.org/build/295094357 at 2025-04-22 - - hquery # failure in job https://hydra.nixos.org/build/233203709 at 2023-09-02 - - hR # failure in job https://hydra.nixos.org/build/233205131 at 2023-09-02 - - hreq-core # failure in job https://hydra.nixos.org/build/233259937 at 2023-09-02 - - hRESP # failure in job https://hydra.nixos.org/build/233229961 at 2023-09-02 - - Hricket # failure in job https://hydra.nixos.org/build/233226183 at 2023-09-02 - - hricket # failure in job https://hydra.nixos.org/build/233247261 at 2023-09-02 - HROOT-core # failure in job https://hydra.nixos.org/build/233217487 at 2023-09-02 - hruby # failure in job https://hydra.nixos.org/build/233210664 at 2023-09-02 - hs-asapo # failure in job https://hydra.nixos.org/build/273456994 at 2024-10-01 - hs-aws-lambda # failure in job https://hydra.nixos.org/build/295094343 at 2025-04-22 - - hs-brotli # failure in job https://hydra.nixos.org/build/233215213 at 2023-09-02 - - hs-carbon # failure in job https://hydra.nixos.org/build/252722544 at 2024-03-16 - - hs-carbon-examples # failure in job https://hydra.nixos.org/build/234440337 at 2023-09-13 - - hs-di # failure in job https://hydra.nixos.org/build/233254606 at 2023-09-02 - - hs-dotnet # failure in job https://hydra.nixos.org/build/233232755 at 2023-09-02 - hs-duktape # failure in job https://hydra.nixos.org/build/233223882 at 2023-09-02 - - hs-excelx # failure in job https://hydra.nixos.org/build/233230761 at 2023-09-02 - - hs-fltk # failure in job https://hydra.nixos.org/build/233225244 at 2023-09-02 - - hs-gizapp # failure in job https://hydra.nixos.org/build/233248733 at 2023-09-02 - - hs-java # failure in job https://hydra.nixos.org/build/233224973 at 2023-09-02 - - hs-json-rpc # failure in job https://hydra.nixos.org/build/233217334 at 2023-09-02 - - hs-logo # failure in job https://hydra.nixos.org/build/233211298 at 2023-09-02 - - hs-nombre-generator # failure in job https://hydra.nixos.org/build/233246102 at 2023-09-02 - hs-openmoji-data # failure in job https://hydra.nixos.org/build/295094356 at 2025-04-22 - hs-opentelemetry-awsxray # failure in job https://hydra.nixos.org/build/295094396 at 2025-04-22 - hs-opentelemetry-instrumentation-auto # failure in job https://hydra.nixos.org/build/253678404 at 2024-03-31 - - hs-pattrans # failure in job https://hydra.nixos.org/build/233230577 at 2023-09-02 - - hs-pgms # failure in job https://hydra.nixos.org/build/233237693 at 2023-09-02 - - hs-pkg-config # failure in job https://hydra.nixos.org/build/233240839 at 2023-09-02 - - hs-re # failure in job https://hydra.nixos.org/build/233253430 at 2023-09-02 - - hs-rqlite # failure in job https://hydra.nixos.org/build/233191478 at 2023-09-02 - - hs-rs-notify # failure in job https://hydra.nixos.org/build/233253577 at 2023-09-02 - hs-samtools # failure in job https://hydra.nixos.org/build/236688025 at 2023-10-04 - - hs-scrape # failure in job https://hydra.nixos.org/build/233244221 at 2023-09-02 - hs-server-starter # failure in job https://hydra.nixos.org/build/295094379 at 2025-04-22 - - hs-snowtify # failure in job https://hydra.nixos.org/build/233200511 at 2023-09-02 - hs-tags # failure in job https://hydra.nixos.org/build/233258358 at 2023-09-02 - hs-tango # failure in job https://hydra.nixos.org/build/276377558 at 2024-11-06 - hs-term-emulator # failure in job https://hydra.nixos.org/build/233252262 at 2023-09-02 - - hs-twitter # failure in job https://hydra.nixos.org/build/233214283 at 2023-09-02 - - hs-twitterarchiver # failure in job https://hydra.nixos.org/build/233241847 at 2023-09-02 - - hs-vcard # failure in job https://hydra.nixos.org/build/233228457 at 2023-09-02 - hs-watchman # failure in job https://hydra.nixos.org/build/233217591 at 2023-09-02 - - hs2bf # failure in job https://hydra.nixos.org/build/233251996 at 2023-09-02 - - hs2ps # failure in job https://hydra.nixos.org/build/233258362 at 2023-09-02 - - hsakamai # failure in job https://hydra.nixos.org/build/252722933 at 2024-03-16 - hsaml2 # failure in job https://hydra.nixos.org/build/233252618 at 2023-09-02 - hsautogui # failure in job https://hydra.nixos.org/build/253687662 at 2024-03-31 - - hsay # failure in job https://hydra.nixos.org/build/233218925 at 2023-09-02 - - hsbc # failure in job https://hydra.nixos.org/build/233206310 at 2023-09-02 - - hsbencher # failure in job https://hydra.nixos.org/build/233214962 at 2023-09-02 - - hsc3-cairo # failure in job https://hydra.nixos.org/build/233215926 at 2023-09-02 - - hsc3-db # failure in job https://hydra.nixos.org/build/233191679 at 2023-09-02 - - hsc3-dot # failure in job https://hydra.nixos.org/build/233219452 at 2023-09-02 - - hsc3-lang # failure in job https://hydra.nixos.org/build/233198291 at 2023-09-02 - - hsc3-process # failure in job https://hydra.nixos.org/build/233196358 at 2023-09-02 - - hsc3-rec # failure in job https://hydra.nixos.org/build/233206364 at 2023-09-02 - - hsc3-rw # failure in job https://hydra.nixos.org/build/233244499 at 2023-09-02 - - hsc3-sf # failure in job https://hydra.nixos.org/build/233208404 at 2023-09-02 - - hsc3-unsafe # failure in job https://hydra.nixos.org/build/233202606 at 2023-09-02 - - hscaffold # failure in job https://hydra.nixos.org/build/233207380 at 2023-09-02 - - hscamwire # failure in job https://hydra.nixos.org/build/233194329 at 2023-09-02 - - hscd # failure in job https://hydra.nixos.org/build/233195644 at 2023-09-02 - hscdio # failure in job https://hydra.nixos.org/build/233195843 at 2023-09-02 - - hschema-aeson # failure in job https://hydra.nixos.org/build/233196871 at 2023-09-02 - hscim # failure in job https://hydra.nixos.org/build/233208569 at 2023-09-02 - - hsclock # failure in job https://hydra.nixos.org/build/233220439 at 2023-09-02 - - hScraper # failure in job https://hydra.nixos.org/build/233239652 at 2023-09-02 - - hscuid # failure in job https://hydra.nixos.org/build/233245223 at 2023-09-02 - - hsdif # failure in job https://hydra.nixos.org/build/233239725 at 2023-09-02 - - hsdip # failure in job https://hydra.nixos.org/build/233229128 at 2023-09-02 - - hsdns-cache # failure in job https://hydra.nixos.org/build/233225611 at 2023-09-02 - - hsebaysdk # failure in job https://hydra.nixos.org/build/233251126 at 2023-09-02 - hsec-sync # failure in job https://hydra.nixos.org/build/265274250 at 2024-07-14 - hsec-tools # failure in job https://hydra.nixos.org/build/265287998 at 2024-07-14 - - hsenv # failure in job https://hydra.nixos.org/build/233196846 at 2023-09-02 - - hsfcsh # failure in job https://hydra.nixos.org/build/233245258 at 2023-09-02 - - HSFFIG # failure in job https://hydra.nixos.org/build/233257379 at 2023-09-02 - - hsfilt # failure in job https://hydra.nixos.org/build/233242295 at 2023-09-02 - - hsforce # failure in job https://hydra.nixos.org/build/233242016 at 2023-09-02 - hsftp # failure in job https://hydra.nixos.org/build/283199528 at 2024-12-31 - - hsgnutls # failure in job https://hydra.nixos.org/build/233199419 at 2023-09-02 - - hsgnutls-yj # failure in job https://hydra.nixos.org/build/233220680 at 2023-09-02 - - hsgsom # failure in job https://hydra.nixos.org/build/233192340 at 2023-09-02 - - HsHaruPDF # failure in job https://hydra.nixos.org/build/233220916 at 2023-09-02 - - HsHyperEstraier # failure in job https://hydra.nixos.org/build/233253787 at 2023-09-02 - - hsI2C # failure in job https://hydra.nixos.org/build/233247520 at 2023-09-02 - - hSimpleDB # failure in job https://hydra.nixos.org/build/233236736 at 2023-09-02 - - hsimport # failure in job https://hydra.nixos.org/build/233219578 at 2023-09-02 - hsinspect # failure in job https://hydra.nixos.org/build/295094410 at 2025-04-22 - - HsJudy # failure in job https://hydra.nixos.org/build/233243273 at 2023-09-02 - - hskeleton # failure in job https://hydra.nixos.org/build/233220443 at 2023-09-02 - - hslackbuilder # failure in job https://hydra.nixos.org/build/233230141 at 2023-09-02 - - hslibsvm # failure in job https://hydra.nixos.org/build/233255959 at 2023-09-02 - - hslinks # failure in job https://hydra.nixos.org/build/233221444 at 2023-09-02 - - hslogger-reader # failure in job https://hydra.nixos.org/build/233226346 at 2023-09-02 - - hslogger-template # failure in job https://hydra.nixos.org/build/233192309 at 2023-09-02 - - hsluv-haskell # failure in job https://hydra.nixos.org/build/233239548 at 2023-09-02 - - hsmagick # failure in job https://hydra.nixos.org/build/233235964 at 2023-09-02 - - hsmodetweaks # failure in job https://hydra.nixos.org/build/233663004 at 2023-09-02 - - Hsmtlib # failure in job https://hydra.nixos.org/build/233213073 at 2023-09-02 - - hsmtpclient # failure in job https://hydra.nixos.org/build/233224596 at 2023-09-02 - - hsnock # failure in job https://hydra.nixos.org/build/233194525 at 2023-09-02 - - hsns # failure in job https://hydra.nixos.org/build/233240328 at 2023-09-02 - - hsnsq # failure in job https://hydra.nixos.org/build/233215245 at 2023-09-02 - - hsntp # failure in job https://hydra.nixos.org/build/233206211 at 2023-09-02 - - hsoptions # failure in job https://hydra.nixos.org/build/233198363 at 2023-09-02 - - hsoz # failure in job https://hydra.nixos.org/build/233217005 at 2023-09-02 - - hsp # failure in job https://hydra.nixos.org/build/252718609 at 2024-03-16 - - hsp-cgi # failure in job https://hydra.nixos.org/build/233254927 at 2023-09-02 - hsparql # failure in job https://hydra.nixos.org/build/295094469 at 2025-04-22 - hspear # failure in job https://hydra.nixos.org/build/233192286 at 2023-09-02 - - hspec-expectations-match # failure in job https://hydra.nixos.org/build/233210221 at 2023-09-02 - - hspec-experimental # failure in job https://hydra.nixos.org/build/233216119 at 2023-09-02 - - hspec-jenkins # failure in job https://hydra.nixos.org/build/233213269 at 2023-09-02 - - hspec-monad-control # failure in job https://hydra.nixos.org/build/233223942 at 2023-09-02 - hspec-slow # failure in job https://hydra.nixos.org/build/233248782 at 2023-09-02 - hspec-snap # failure in job https://hydra.nixos.org/build/252725428 at 2024-03-16 - - hspec-structured-formatter # failure in job https://hydra.nixos.org/build/233199636 at 2023-09-02 - - hspec-tables # failure in job https://hydra.nixos.org/build/233221785 at 2023-09-02 - - hspec2 # failure in job https://hydra.nixos.org/build/233251459 at 2023-09-02 - - HsPerl5 # failure in job https://hydra.nixos.org/build/233256038 at 2023-09-02 - - hspkcs11 # failure in job https://hydra.nixos.org/build/233225806 at 2023-09-02 - - hspread # failure in job https://hydra.nixos.org/build/233217578 at 2023-09-02 - - hspresent # failure in job https://hydra.nixos.org/build/233191185 at 2023-09-02 - hspretty # failure in job https://hydra.nixos.org/build/233253394 at 2023-09-02 - hsql # failure in job https://hydra.nixos.org/build/233217626 at 2023-09-02 - hsrelp # failure in job https://hydra.nixos.org/build/233255841 at 2023-09-02 - - hsseccomp # failure in job https://hydra.nixos.org/build/233194411 at 2023-09-02 - hsshellscript # failure in job https://hydra.nixos.org/build/233197858 at 2023-09-02 - - hsSqlite3 # failure in job https://hydra.nixos.org/build/233238549 at 2023-09-02 - - hssqlppp # failure in job https://hydra.nixos.org/build/233216888 at 2023-09-02 - - HsSVN # failure in job https://hydra.nixos.org/build/233213151 at 2023-09-02 - - hstats # failure in job https://hydra.nixos.org/build/233239963 at 2023-09-02 - - hstatsd # failure in job https://hydra.nixos.org/build/233232363 at 2023-09-02 - - hstest # failure in job https://hydra.nixos.org/build/233237803 at 2023-09-02 - - hstidy # failure in job https://hydra.nixos.org/build/233194232 at 2023-09-02 - - HsTools # failure in job https://hydra.nixos.org/build/233234724 at 2023-09-02 - - hstyle # failure in job https://hydra.nixos.org/build/233232861 at 2023-09-02 - - hsudoku # failure in job https://hydra.nixos.org/build/233214738 at 2023-09-02 - - hsx # failure in job https://hydra.nixos.org/build/233211907 at 2023-09-02 + - hsx-jmacro # previously transitively broken at 2025-09-08 - hsx2hs # failure in job https://hydra.nixos.org/build/252733316 at 2024-03-16 - - hsXenCtrl # failure in job https://hydra.nixos.org/build/233193837 at 2023-09-02 - - hsyscall # failure in job https://hydra.nixos.org/build/233190699 at 2023-09-02 - - hsyslog-udp # failure in job https://hydra.nixos.org/build/233205524 at 2023-09-02 - - hszephyr # failure in job https://hydra.nixos.org/build/233204818 at 2023-09-02 - - htags # failure in job https://hydra.nixos.org/build/252726582 at 2024-03-16 - htalkat # failure in job https://hydra.nixos.org/build/252714463 at 2024-03-16 - - hTalos # failure in job https://hydra.nixos.org/build/233246583 at 2023-09-02 - - htar # failure in job https://hydra.nixos.org/build/233218013 at 2023-09-02 - htdp-image # failure in job https://hydra.nixos.org/build/234460283 at 2023-09-13 - - hTensor # failure in job https://hydra.nixos.org/build/233205733 at 2023-09-02 - - htestu # failure in job https://hydra.nixos.org/build/233234583 at 2023-09-02 - - HTicTacToe # failure in job https://hydra.nixos.org/build/233235397 at 2023-09-02 - - htiled # failure in job https://hydra.nixos.org/build/233219305 at 2023-09-02 - - htlset # failure in job https://hydra.nixos.org/build/233203886 at 2023-09-02 - - html-rules # failure in job https://hydra.nixos.org/build/233200615 at 2023-09-02 - - html-tokenizer # failure in job https://hydra.nixos.org/build/233243581 at 2023-09-02 - htoml # failure in job https://hydra.nixos.org/build/233246670 at 2023-09-02 - htoml-megaparsec # failure in job https://hydra.nixos.org/build/233211134 at 2023-09-02 - - hts # failure in job https://hydra.nixos.org/build/233256407 at 2023-09-02 - - htsn # failure in job https://hydra.nixos.org/build/233197004 at 2023-09-02 - - htssets # failure in job https://hydra.nixos.org/build/233195420 at 2023-09-02 - - http-attoparsec # failure in job https://hydra.nixos.org/build/233233534 at 2023-09-02 - - http-client-lens # failure in job https://hydra.nixos.org/build/233259168 at 2023-09-02 - - http-client-request-modifiers # failure in job https://hydra.nixos.org/build/233231339 at 2023-09-02 - - http-client-session # failure in job https://hydra.nixos.org/build/233221185 at 2023-09-02 - - http-client-streams # failure in job https://hydra.nixos.org/build/233233493 at 2023-09-02 - - http-conduit-browser # failure in job https://hydra.nixos.org/build/233213208 at 2023-09-02 - http-conduit-downloader # failure in job https://hydra.nixos.org/build/233242604 at 2023-09-02 - http-directory # failure in job https://hydra.nixos.org/build/233252965 at 2023-09-02 - - http-dispatch # failure in job https://hydra.nixos.org/build/233238880 at 2023-09-02 - - http-encodings # failure in job https://hydra.nixos.org/build/233232289 at 2023-09-02 - http-exchange-instantiations # failure in job https://hydra.nixos.org/build/295094535 at 2025-04-22 - http-grammar # failure in job https://hydra.nixos.org/build/233254392 at 2023-09-02 - - http-kinder # failure in job https://hydra.nixos.org/build/233205030 at 2023-09-02 - - http-kit # failure in job https://hydra.nixos.org/build/233244992 at 2023-09-02 - - http-listen # failure in job https://hydra.nixos.org/build/233244011 at 2023-09-02 - http-monad # failure in job https://hydra.nixos.org/build/295094543 at 2025-04-22 - - http-pony # failure in job https://hydra.nixos.org/build/233233492 at 2023-09-02 - - http-pony-serve-wai # failure in job https://hydra.nixos.org/build/233222241 at 2023-09-02 - http-proxy # failure in job https://hydra.nixos.org/build/233218875 at 2023-09-02 - - http-querystring # failure in job https://hydra.nixos.org/build/233202925 at 2023-09-02 - http-rfc7807 # failure in job https://hydra.nixos.org/build/233191433 at 2023-09-02 - - http-server # failure in job https://hydra.nixos.org/build/233209925 at 2023-09-02 - - http-shed # failure in job https://hydra.nixos.org/build/233236325 at 2023-09-02 - http-slim # failure in job https://hydra.nixos.org/build/252734524 at 2024-03-16 - - http-test # failure in job https://hydra.nixos.org/build/252738556 at 2024-03-16 - - http-wget # failure in job https://hydra.nixos.org/build/233236793 at 2023-09-02 - - http2-client-exe # failure in job https://hydra.nixos.org/build/260189666 at 2024-05-19 - - http2-grpc-types # failure in job https://hydra.nixos.org/build/233197769 at 2023-09-02 + - http2-grpc-proto-lens # previously transitively broken at 2025-09-08 + - http2-grpc-proto3-wire # previously transitively broken at 2025-09-08 - http2-tls # failure in job https://hydra.nixos.org/build/233227095 at 2023-09-02 - httpstan # failure in job https://hydra.nixos.org/build/233202072 at 2023-09-02 - - htune # failure in job https://hydra.nixos.org/build/234447885 at 2023-09-13 - - htvm # failure in job https://hydra.nixos.org/build/233218993 at 2023-09-02 - - htzaar # failure in job https://hydra.nixos.org/build/233197602 at 2023-09-02 - - hub # failure in job https://hydra.nixos.org/build/252715988 at 2024-03-16 - - huck # failure in job https://hydra.nixos.org/build/233235354 at 2023-09-02 - - HueAPI # failure in job https://hydra.nixos.org/build/233234528 at 2023-09-02 - - huff # failure in job https://hydra.nixos.org/build/233194394 at 2023-09-02 - - huffman # failure in job https://hydra.nixos.org/build/233230189 at 2023-09-02 - - HulkImport # failure in job https://hydra.nixos.org/build/233193212 at 2023-09-02 - hum # failure in job https://hydra.nixos.org/build/233203730 at 2023-09-02 - - human-parse # failure in job https://hydra.nixos.org/build/233212317 at 2023-09-02 - - human-text # failure in job https://hydra.nixos.org/build/233237802 at 2023-09-02 - - humble-prelude # failure in job https://hydra.nixos.org/build/233196934 at 2023-09-02 - - hums # failure in job https://hydra.nixos.org/build/233196188 at 2023-09-02 - - hunch # failure in job https://hydra.nixos.org/build/233215770 at 2023-09-02 - - HUnit-Diff # failure in job https://hydra.nixos.org/build/233221147 at 2023-09-02 - - HUnit-Plus # failure in job https://hydra.nixos.org/build/233208597 at 2023-09-02 - - hunit-rematch # failure in job https://hydra.nixos.org/build/233232138 at 2023-09-02 - hup # failure in job https://hydra.nixos.org/build/233246919 at 2023-09-02 - - hurriyet # failure in job https://hydra.nixos.org/build/233200609 at 2023-09-02 - husk-scheme # failure in job https://hydra.nixos.org/build/252730154 at 2024-03-16 - - husky # failure in job https://hydra.nixos.org/build/233214877 at 2023-09-02 - - hutton # failure in job https://hydra.nixos.org/build/233211451 at 2023-09-02 - - huttons-razor # failure in job https://hydra.nixos.org/build/233224736 at 2023-09-02 - - hVOIDP # failure in job https://hydra.nixos.org/build/233227778 at 2023-09-02 - hw-aeson # failure in job https://hydra.nixos.org/build/295094563 at 2025-04-22 - hw-aws-sqs-conduit # failure building library in job https://hydra.nixos.org/build/237235400 at 2023-10-21 - - hw-ci-assist # failure in job https://hydra.nixos.org/build/233207990 at 2023-09-02 - hw-conduit # failure in job https://hydra.nixos.org/build/252713114 at 2024-03-16 - hw-conduit-merges # failure in job https://hydra.nixos.org/build/295094577 at 2025-04-22 - hw-diagnostics # failure in job https://hydra.nixos.org/build/252734742 at 2024-03-16 @@ -3071,7 +887,6 @@ broken-packages: - hw-dump # failure in job https://hydra.nixos.org/build/233208818 at 2023-09-02 - hw-fingertree-strict # failure in job https://hydra.nixos.org/build/252718249 at 2024-03-16 - hw-json-simd # failure in job https://hydra.nixos.org/build/233240490 at 2023-09-02 - - hw-kafka-conduit # failure in job https://hydra.nixos.org/build/252714760 at 2024-03-16 - hw-lazy # failure in job https://hydra.nixos.org/build/252722974 at 2024-03-16 - hw-packed-vector # failure in job https://hydra.nixos.org/build/252735800 at 2024-03-16 - hw-parser # failure in job https://hydra.nixos.org/build/295094576 at 2025-04-22 @@ -3082,1511 +897,435 @@ broken-packages: - hw-simd-cli # failure in job https://hydra.nixos.org/build/233223251 at 2023-09-02 - hw-tar # failure in job https://hydra.nixos.org/build/233219650 at 2023-09-02 - hw-xml # failure in job https://hydra.nixos.org/build/233197758 at 2023-09-02 - - hwall-auth-iitk # failure in job https://hydra.nixos.org/build/233217629 at 2023-09-02 - hweblib # failure in job https://hydra.nixos.org/build/233250183 at 2023-09-02 - - hwhile # failure in job https://hydra.nixos.org/build/233206114 at 2023-09-02 - - hworker # failure in job https://hydra.nixos.org/build/233220098 at 2023-09-02 - - hwsl2 # failure in job https://hydra.nixos.org/build/233203941 at 2023-09-02 - - hx # failure in job https://hydra.nixos.org/build/233225223 at 2023-09-02 - - hxmppc # failure in job https://hydra.nixos.org/build/233253810 at 2023-09-02 - - HXQ # failure in job https://hydra.nixos.org/build/233218116 at 2023-09-02 - - hxt-pickle-utils # failure in job https://hydra.nixos.org/build/233212654 at 2023-09-02 - - hxthelper # failure in job https://hydra.nixos.org/build/282936106 at 2024-12-24 (> 10 years since last release) - - hyakko # failure in job https://hydra.nixos.org/build/233199297 at 2023-09-02 - hydra # failure in job https://hydra.nixos.org/build/233212477 at 2023-09-02 - - hydra-hs # failure in job https://hydra.nixos.org/build/233238247 at 2023-09-02 - - hydrogen # failure in job https://hydra.nixos.org/build/233219053 at 2023-09-02 - - hydrogen-multimap # failure in job https://hydra.nixos.org/build/233241591 at 2023-09-02 - - hylide # failure in job https://hydra.nixos.org/build/233251582 at 2023-09-02 - - hylolib # failure in job https://hydra.nixos.org/build/233197340 at 2023-09-02 - hyper-haskell-server # failure in job https://hydra.nixos.org/build/233244991 at 2023-09-02 - - hyperdrive # failure in job https://hydra.nixos.org/build/233223556 at 2023-09-02 - - hyperfunctions # failure in job https://hydra.nixos.org/build/233195544 at 2023-09-02 - - hyperion # failure in job https://hydra.nixos.org/build/233218339 at 2023-09-02 - - hyperloglogplus # failure in job https://hydra.nixos.org/build/233259772 at 2023-09-02 - hyperscript # failure in job https://hydra.nixos.org/build/233222333 at 2023-09-02 - hypertypes # failure in job https://hydra.nixos.org/build/252735804 at 2024-03-16 - - hypher # failure in job https://hydra.nixos.org/build/233233236 at 2023-09-02 - hyraxAbif # failure in job https://hydra.nixos.org/build/233195246 at 2023-09-02 - hzenity # failure in job https://hydra.nixos.org/build/295094627 at 2025-04-22 - - hzulip # failure in job https://hydra.nixos.org/build/233191086 at 2023-09-02 - i # failure in job https://hydra.nixos.org/build/295094611 at 2025-04-22 - - i18n # failure in job https://hydra.nixos.org/build/233247578 at 2023-09-02 - I1M # failure in job https://hydra.nixos.org/build/233258307 at 2023-09-02 - - i3blocks-hs-contrib # failure in job https://hydra.nixos.org/build/233231742 at 2023-09-02 - - i3ipc # failure in job https://hydra.nixos.org/build/233213992 at 2023-09-02 - - iap-verifier # failure in job https://hydra.nixos.org/build/233202491 at 2023-09-02 - - ib-api # failure in job https://hydra.nixos.org/build/233223054 at 2023-09-02 - - iban # failure in job https://hydra.nixos.org/build/233236424 at 2023-09-02 - - ical # failure in job https://hydra.nixos.org/build/233200229 at 2023-09-02 - icepeak # failure in job https://hydra.nixos.org/build/233242326 at 2023-09-02 - - icfpc2020-galaxy # failure in job https://hydra.nixos.org/build/233208746 at 2023-09-02 - - IcoGrid # failure in job https://hydra.nixos.org/build/233202038 at 2023-09-02 - - iconv-typed # failure in job https://hydra.nixos.org/build/233211253 at 2023-09-02 - - ide-backend-common # failure in job https://hydra.nixos.org/build/233251470 at 2023-09-02 - - ideas # failure in job https://hydra.nixos.org/build/233248212 at 2023-09-02 - - idempotent # failure in job https://hydra.nixos.org/build/233244413 at 2023-09-02 - - identifiers # failure in job https://hydra.nixos.org/build/233251845 at 2023-09-02 - - idiii # failure in job https://hydra.nixos.org/build/233228586 at 2023-09-02 - - idna2008 # failure in job https://hydra.nixos.org/build/233206444 at 2023-09-02 - - IDynamic # failure in job https://hydra.nixos.org/build/233196222 at 2023-09-02 - - ieee-utils # failure in job https://hydra.nixos.org/build/233224430 at 2023-09-02 - - iexcloud # failure in job https://hydra.nixos.org/build/233224874 at 2023-09-02 - if-instance # failure in job https://hydra.nixos.org/build/302803982 at 2025-07-27 - - ifcxt # failure in job https://hydra.nixos.org/build/233196911 at 2023-09-02 - - IFS # failure in job https://hydra.nixos.org/build/233246865 at 2023-09-02 - - ig # failure in job https://hydra.nixos.org/build/233203872 at 2023-09-02 - - ige # failure in job https://hydra.nixos.org/build/233224389 at 2023-09-02 - - ignore # failure in job https://hydra.nixos.org/build/233238874 at 2023-09-02 - - igraph # failure in job https://hydra.nixos.org/build/233192875 at 2023-09-02 - - ihaskell-charts # failure in job https://hydra.nixos.org/build/233193328 at 2023-09-02 - - ihaskell-gnuplot # failure in job https://hydra.nixos.org/build/233223675 at 2023-09-02 - - ihaskell-graphviz # failure in job https://hydra.nixos.org/build/233200671 at 2023-09-02 - - ihaskell-parsec # failure in job https://hydra.nixos.org/build/233244271 at 2023-09-02 - - ihaskell-plot # failure in job https://hydra.nixos.org/build/233255936 at 2023-09-02 - ihaskell-widgets # failure in job https://hydra.nixos.org/build/265955663 at 2024-07-14 - - illuminate # failure in job https://hydra.nixos.org/build/233219478 at 2023-09-02 - - image-type # failure in job https://hydra.nixos.org/build/233251466 at 2023-09-02 - - imagemagick # failure in job https://hydra.nixos.org/build/233598237 at 2023-09-02 - - imagepaste # failure in job https://hydra.nixos.org/build/233211716 at 2023-09-02 - - imapget # failure in job https://hydra.nixos.org/build/233235664 at 2023-09-02 - - imgur # failure in job https://hydra.nixos.org/build/233191096 at 2023-09-02 - - imj-prelude # failure in job https://hydra.nixos.org/build/233234877 at 2023-09-02 - imm # failure in job https://hydra.nixos.org/build/237239261 at 2023-10-21 - immortal-worker # failure in job https://hydra.nixos.org/build/233246961 at 2023-09-02 - - ImperativeHaskell # failure in job https://hydra.nixos.org/build/233240920 at 2023-09-02 - - impl # failure in job https://hydra.nixos.org/build/233203425 at 2023-09-02 + - immutaball-core # previously transitively broken at 2025-09-08 - implicit-hie-cradle # failure in job https://hydra.nixos.org/build/252710698 at 2024-03-16 - - implicit-logging # failure in job https://hydra.nixos.org/build/233194358 at 2023-09-02 - - implicit-params # failure in job https://hydra.nixos.org/build/233201527 at 2023-09-02 - - imports # failure in job https://hydra.nixos.org/build/233227469 at 2023-09-02 - - impossible # failure in job https://hydra.nixos.org/build/233216237 at 2023-09-02 - - imprint # failure in job https://hydra.nixos.org/build/233246314 at 2023-09-02 - - impure-containers # failure in job https://hydra.nixos.org/build/233251408 at 2023-09-02 - in-other-words # failure in job https://hydra.nixos.org/build/252711798 at 2024-03-16 - in-other-words-plugin # failure in job https://hydra.nixos.org/build/233202396 at 2023-09-02 - inchworm # failure in job https://hydra.nixos.org/build/233219017 at 2023-09-02 - - incremental-sat-solver # failure in job https://hydra.nixos.org/build/252738274 at 2024-03-16 - - indentation-core # failure in job https://hydra.nixos.org/build/233257946 at 2023-09-02 - index-core # failure in job https://hydra.nixos.org/build/233255196 at 2023-09-02 - indexed-containers # failure in job https://hydra.nixos.org/build/233236806 at 2023-09-02 - - indexed-do-notation # failure in job https://hydra.nixos.org/build/233259970 at 2023-09-02 - - indexed-extras # failure in job https://hydra.nixos.org/build/252739554 at 2024-03-16 - - indextype # failure in job https://hydra.nixos.org/build/233230257 at 2023-09-02 - - indices # failure in job https://hydra.nixos.org/build/233198223 at 2023-09-02 - - inf-interval # failure in job https://hydra.nixos.org/build/233193217 at 2023-09-02 - - infer-upstream # failure in job https://hydra.nixos.org/build/233191739 at 2023-09-02 - infernal # failure in job https://hydra.nixos.org/build/233228571 at 2023-09-02 - inferno-types # failure in job https://hydra.nixos.org/build/233225968 at 2023-09-02 - - infernu # failure in job https://hydra.nixos.org/build/233238697 at 2023-09-02 - - infix # failure in job https://hydra.nixos.org/build/233256976 at 2023-09-02 - - inflist # failure in job https://hydra.nixos.org/build/233223710 at 2023-09-02 - - informative # failure in job https://hydra.nixos.org/build/233215837 at 2023-09-02 - - ini-qq # failure in job https://hydra.nixos.org/build/233201946 at 2023-09-02 - - inilist # failure in job https://hydra.nixos.org/build/233203791 at 2023-09-02 - - initialize # failure in job https://hydra.nixos.org/build/233228739 at 2023-09-02 - - inj-base # failure in job https://hydra.nixos.org/build/233198720 at 2023-09-02 - - inject-function # failure in job https://hydra.nixos.org/build/233252462 at 2023-09-02 - injections # failure in job https://hydra.nixos.org/build/233207796 at 2023-09-02 - inline-c-cuda # failure in job https://hydra.nixos.org/build/237234701 at 2023-10-21 - inline-c-objc # failure in job https://hydra.nixos.org/build/233223704 at 2023-09-02 - inline-r # failure in job https://hydra.nixos.org/build/233210520 at 2023-09-02 - - inserts # failure in job https://hydra.nixos.org/build/233198758 at 2023-09-02 - instana-haskell-trace-sdk # failure in job https://hydra.nixos.org/build/233211339 at 2023-09-02 - - instance-control # failure in job https://hydra.nixos.org/build/252726549 at 2024-03-16 - - instance-map # failure in job https://hydra.nixos.org/build/233209014 at 2023-09-02 - - instant-generics # failure in job https://hydra.nixos.org/build/233209385 at 2023-09-02 - - instapaper-sender # failure in job https://hydra.nixos.org/build/233225390 at 2023-09-02 - - instinct # failure in job https://hydra.nixos.org/build/233203632 at 2023-09-02 - int-interval-map # failure in job https://hydra.nixos.org/build/233244556 at 2023-09-02 - - int-multimap # failure in job https://hydra.nixos.org/build/233210427 at 2023-09-02 - intcode # failure in job https://hydra.nixos.org/build/233198813 at 2023-09-02 - - integer-pure # failure in job https://hydra.nixos.org/build/233216037 at 2023-09-02 - - integer-simple # failure in job https://hydra.nixos.org/build/233192893 at 2023-09-02 - integer-types # failure in job https://hydra.nixos.org/build/252734448 at 2024-03-16 - - intensional-datatys # failure in job https://hydra.nixos.org/build/233218337 at 2023-09-02 - - interact # failure in job https://hydra.nixos.org/build/233228146 at 2023-09-02 - - interactive-plot # failure in job https://hydra.nixos.org/build/233212280 at 2023-09-02 - - interleavableGen # failure in job https://hydra.nixos.org/build/233226525 at 2023-09-02 - - interleavableIO # failure in job https://hydra.nixos.org/build/233257474 at 2023-09-02 - - interlude-l # failure in job https://hydra.nixos.org/build/233204840 at 2023-09-02 - internetmarke # failure in job https://hydra.nixos.org/build/233229638 at 2023-09-02 - - intero # failure in job https://hydra.nixos.org/build/233250290 at 2023-09-02 - - interp # failure in job https://hydra.nixos.org/build/233225966 at 2023-09-02 - - interpol # failure in job https://hydra.nixos.org/build/233218430 at 2023-09-02 - - interpolatedstring-qq2 # failure in job https://hydra.nixos.org/build/233231621 at 2023-09-02 - - interpolator # failure in job https://hydra.nixos.org/build/233218382 at 2023-09-02 - - interruptible # failure in job https://hydra.nixos.org/build/233209873 at 2023-09-02 - - interspersed # failure in job https://hydra.nixos.org/build/252722645 at 2024-03-16 - - interval # failure in job https://hydra.nixos.org/build/233239434 at 2023-09-02 - interval-algebra # failure in job https://hydra.nixos.org/build/233208487 at 2023-09-02 - interval-tree-clock # failure in job https://hydra.nixos.org/build/233234316 at 2023-09-02 - - IntFormats # failure in job https://hydra.nixos.org/build/233195190 at 2023-09-02 - intricacy # failure in job https://hydra.nixos.org/build/252711846 at 2024-03-16 - - intrinsic-superclasses # failure in job https://hydra.nixos.org/build/233228909 at 2023-09-02 - - intro # failure in job https://hydra.nixos.org/build/233192297 at 2023-09-02 - - introduction # failure in job https://hydra.nixos.org/build/233223585 at 2023-09-02 - inventory # failure in job https://hydra.nixos.org/build/295094716 at 2025-04-22 - - invertible-hlist # failure in job https://hydra.nixos.org/build/295094739 at 2025-04-22 - - invertible-syntax # failure in job https://hydra.nixos.org/build/233230924 at 2023-09-02 - - involutive-semigroups # failure in job https://hydra.nixos.org/build/233239156 at 2023-09-02 - - io-capture # failure in job https://hydra.nixos.org/build/233196311 at 2023-09-02 - - io-choice # failure in job https://hydra.nixos.org/build/233218388 at 2023-09-02 - - io-reactive # failure in job https://hydra.nixos.org/build/233205095 at 2023-09-02 - - ioctl # failure in job https://hydra.nixos.org/build/233191634 at 2023-09-02 - - IOR # failure in job https://hydra.nixos.org/build/233206346 at 2023-09-02 - - iostring # failure in job https://hydra.nixos.org/build/233195232 at 2023-09-02 - - iothread # failure in job https://hydra.nixos.org/build/233255761 at 2023-09-02 - - iotransaction # failure in job https://hydra.nixos.org/build/233226259 at 2023-09-02 - - ip-quoter # failure in job https://hydra.nixos.org/build/233234581 at 2023-09-02 - - ipcvar # failure in job https://hydra.nixos.org/build/252724626 at 2024-03-16 - ipfs # failure in job https://hydra.nixos.org/build/233598054 at 2023-09-02 - - ipopt-hs # failure in job https://hydra.nixos.org/build/233210102 at 2023-09-02 - - iptables-helpers # failure in job https://hydra.nixos.org/build/233198949 at 2023-09-02 - IPv6DB # failure in job https://hydra.nixos.org/build/233199983 at 2023-09-02 - - Irc # failure in job https://hydra.nixos.org/build/233230852 at 2023-09-02 - - irc-dcc # failure in job https://hydra.nixos.org/build/233230181 at 2023-09-02 - - irc-fun-types # failure in job https://hydra.nixos.org/build/233255910 at 2023-09-02 - ircbot # failure in job https://hydra.nixos.org/build/295094782 at 2025-04-22 - - ireal # failure in job https://hydra.nixos.org/build/233239811 at 2023-09-02 - iri # failure in job https://hydra.nixos.org/build/295455675 at 2025-05-02 - - iridium # failure in job https://hydra.nixos.org/build/233211261 at 2023-09-02 - iris # failure in job https://hydra.nixos.org/build/233212713 at 2023-09-02 - - iron-mq # failure in job https://hydra.nixos.org/build/233200693 at 2023-09-02 - - irt # failure in job https://hydra.nixos.org/build/233216553 at 2023-09-02 - - isdicom # failure in job https://hydra.nixos.org/build/233214249 at 2023-09-02 - - IsNull # failure in job https://hydra.nixos.org/build/233233011 at 2023-09-02 - iso-deriving # failure in job https://hydra.nixos.org/build/252738238 at 2024-03-16 - - isobmff # failure in job https://hydra.nixos.org/build/233237273 at 2023-09-02 - - isotope # failure in job https://hydra.nixos.org/build/233204650 at 2023-09-02 - - it-has # failure in job https://hydra.nixos.org/build/233212395 at 2023-09-02 - - itcli # failure in job https://hydra.nixos.org/build/233201572 at 2023-09-02 - - itemfield # failure in job https://hydra.nixos.org/build/233203571 at 2023-09-02 - iterable # failure in job https://hydra.nixos.org/build/252729530 at 2024-03-16 - - iteratee # failure in job https://hydra.nixos.org/build/233241290 at 2023-09-02 - iterative-forward-search # failure in job https://hydra.nixos.org/build/233256255 at 2023-09-02 - - iterIO # failure in job https://hydra.nixos.org/build/233199156 at 2023-09-02 - iterm-show # failure in job https://hydra.nixos.org/build/233215093 at 2023-09-02 - - ivory # failure in job https://hydra.nixos.org/build/233236762 at 2023-09-02 - - ixdopp # failure in job https://hydra.nixos.org/build/233204986 at 2023-09-02 - - ixmonad # failure in job https://hydra.nixos.org/build/233252940 at 2023-09-02 - - ixshader # failure in job https://hydra.nixos.org/build/233247507 at 2023-09-02 + - ivory-avr-atmega328p-registers # previously transitively broken at 2025-09-08 + - ixset-typed-conversions # previously transitively broken at 2025-09-08 - j # failure in job https://hydra.nixos.org/build/252716408 at 2024-03-16 - - jack-bindings # failure in job https://hydra.nixos.org/build/233211671 at 2023-09-02 - - JackMiniMix # failure in job https://hydra.nixos.org/build/233224671 at 2023-09-02 - - jackminimix # failure in job https://hydra.nixos.org/build/233259985 at 2023-09-02 - - jacobi-roots # failure in job https://hydra.nixos.org/build/233208856 at 2023-09-02 - - jaeger-flamegraph # failure in job https://hydra.nixos.org/build/233249468 at 2023-09-02 - - jail # failure in job https://hydra.nixos.org/build/233251033 at 2023-09-02 - - jalla # failure in job https://hydra.nixos.org/build/233197939 at 2023-09-02 - - jammittools # failure in job https://hydra.nixos.org/build/233192227 at 2023-09-02 - - jarfind # failure in job https://hydra.nixos.org/build/233205367 at 2023-09-02 - - jarify # failure in job https://hydra.nixos.org/build/233228020 at 2023-09-02 - jaskell # failure in job https://hydra.nixos.org/build/233236416 at 2023-09-02 - - jason # failure in job https://hydra.nixos.org/build/233260078 at 2023-09-02 - - java-bridge # failure in job https://hydra.nixos.org/build/233219258 at 2023-09-02 - - javascript-bridge # failure in job https://hydra.nixos.org/build/233217052 at 2023-09-02 - - javascript-extras # timeout - - Javav # failure in job https://hydra.nixos.org/build/233243825 at 2023-09-02 - - javav # failure in job https://hydra.nixos.org/build/233246644 at 2023-09-02 - - jbi # failure in job https://hydra.nixos.org/build/233221466 at 2023-09-02 - - jcdecaux-vls # failure in job https://hydra.nixos.org/build/233225142 at 2023-09-02 - - Jdh # failure in job https://hydra.nixos.org/build/233251434 at 2023-09-02 - - jdi # failure in job https://hydra.nixos.org/build/233238540 at 2023-09-02 - - jenga # failure in job https://hydra.nixos.org/build/233191848 at 2023-09-02 - jenkinsPlugins2nix # failure in job https://hydra.nixos.org/build/233259520 at 2023-09-02 - jet # failure in job https://hydra.nixos.org/build/252729255 at 2024-03-16 - Jikka # failure in job https://hydra.nixos.org/build/233204253 at 2023-09-02 - - jinquantities # failure in job https://hydra.nixos.org/build/233205834 at 2023-09-02 - jl # failure in job https://hydra.nixos.org/build/252726423 at 2024-03-16 - - jmacro-rpc # failure in job https://hydra.nixos.org/build/233236314 at 2023-09-02 - - jml-web-service # failure in job https://hydra.nixos.org/build/233225466 at 2023-09-02 - jni # failure in job https://hydra.nixos.org/build/233201106 at 2023-09-02 - - join-api # failure in job https://hydra.nixos.org/build/233195265 at 2023-09-02 - - joinlist # failure in job https://hydra.nixos.org/build/233248471 at 2023-09-02 - joint # failure in job https://hydra.nixos.org/build/252724466 at 2024-03-16 - - jonathanscard # failure in job https://hydra.nixos.org/build/233234239 at 2023-09-02 - jordan # failure in job https://hydra.nixos.org/build/233224727 at 2023-09-02 - - jort # failure in job https://hydra.nixos.org/build/233195250 at 2023-09-02 - joy-rewrite # failure in job https://hydra.nixos.org/build/233201002 at 2023-09-02 - - jpeg # failure in job https://hydra.nixos.org/build/233204056 at 2023-09-02 - - js-good-parts # failure in job https://hydra.nixos.org/build/233198958 at 2023-09-02 - jsdom-extras # failure in job https://hydra.nixos.org/build/295094819 at 2025-04-22 - - json-api # failure in job https://hydra.nixos.org/build/233198171 at 2023-09-02 - - json-api-lib # failure in job https://hydra.nixos.org/build/233210901 at 2023-09-02 - - json-assertions # failure in job https://hydra.nixos.org/build/233196774 at 2023-09-02 - - json-ast-quickcheck # failure in job https://hydra.nixos.org/build/233249099 at 2023-09-02 - - json-autotype # failure in job https://hydra.nixos.org/build/295094817 at 2025-04-22 - - json-builder # failure in job https://hydra.nixos.org/build/233222400 at 2023-09-02 - json-bytes-builder # failure in job https://hydra.nixos.org/build/233238428 at 2023-09-02 - - json-encoder # failure in job https://hydra.nixos.org/build/233194614 at 2023-09-02 - - json-extra # failure in job https://hydra.nixos.org/build/233212026 at 2023-09-02 - - json-fu # failure in job https://hydra.nixos.org/build/233221469 at 2023-09-02 - - json-litobj # failure in job https://hydra.nixos.org/build/233234388 at 2023-09-02 - - json-pointer # failure in job https://hydra.nixos.org/build/233229617 at 2023-09-02 - - json-pointy # failure in job https://hydra.nixos.org/build/233255533 at 2023-09-02 - - json-python # failure in job https://hydra.nixos.org/build/233200964 at 2023-09-02 - - json-qq # failure in job https://hydra.nixos.org/build/233196259 at 2023-09-02 - json-rpc-generic # failure in job https://hydra.nixos.org/build/233201371 at 2023-09-02 - json-rpc-server # failure in job https://hydra.nixos.org/build/233201284 at 2023-09-02 - - json-schema # failure in job https://hydra.nixos.org/build/303231342 at 2025-07-27 - json-syntax # failure in job https://hydra.nixos.org/build/233250639 at 2023-09-02 - json-to-haskell # failure in job https://hydra.nixos.org/build/252711573 at 2024-03-16 - json-to-type # failure in job https://hydra.nixos.org/build/275143966 at 2024-10-21 - - json-tokens # failure in job https://hydra.nixos.org/build/295094852 at 2025-04-22 - - json-tools # failure in job https://hydra.nixos.org/build/233247019 at 2023-09-02 - - json-tracer # failure in job https://hydra.nixos.org/build/233196632 at 2023-09-02 - - json2 # failure in job https://hydra.nixos.org/build/233242447 at 2023-09-02 - - JSONb # failure in job https://hydra.nixos.org/build/233231060 at 2023-09-02 - - jsonextfilter # failure in job https://hydra.nixos.org/build/233194770 at 2023-09-02 - jsonlogic # failure in job https://hydra.nixos.org/build/252726075 at 2024-03-16 - jsonlogic-aeson # failure in job https://hydra.nixos.org/build/233246828 at 2023-09-02 - jsonnet # failure in job https://hydra.nixos.org/build/233254884 at 2023-09-02 - - jsonresume # failure in job https://hydra.nixos.org/build/233202350 at 2023-09-02 - jsonrpc-tinyclient # failure in job https://hydra.nixos.org/build/233214174 at 2023-09-02 - - jsonschema-gen # failure in job https://hydra.nixos.org/build/233225063 at 2023-09-02 - - jsonsql # failure in job https://hydra.nixos.org/build/233255704 at 2023-09-02 - - jsontsv # failure in job https://hydra.nixos.org/build/233234129 at 2023-09-02 - - jsonxlsx # failure in job https://hydra.nixos.org/build/233201772 at 2023-09-02 - - jsop # failure in job https://hydra.nixos.org/build/233239247 at 2023-09-02 - - judge # failure in job https://hydra.nixos.org/build/233231777 at 2023-09-02 - - judy # failure in job https://hydra.nixos.org/build/233259826 at 2023-09-02 - juicy-gcode # failure in job https://hydra.nixos.org/build/295094842 at 2025-04-22 - JuicyPixels-blp # failure in job https://hydra.nixos.org/build/233220427 at 2023-09-02 - JuicyPixels-blurhash # failure in job https://hydra.nixos.org/build/233228377 at 2023-09-02 - - JuicyPixels-canvas # failure in job https://hydra.nixos.org/build/233198693 at 2023-09-02 - - JuicyPixels-util # failure in job https://hydra.nixos.org/build/233200460 at 2023-09-02 - - JunkDB # failure in job https://hydra.nixos.org/build/233203494 at 2023-09-02 - - jupyter # failure in job https://hydra.nixos.org/build/233232429 at 2023-09-02 - justified-containers # failure in job https://hydra.nixos.org/build/233240362 at 2023-09-02 - - JustParse # failure in job https://hydra.nixos.org/build/233257181 at 2023-09-02 - jvm-binary # failure in job https://hydra.nixos.org/build/233208537 at 2023-09-02 - jvm-parser # failure in job https://hydra.nixos.org/build/233201395 at 2023-09-02 - - JYU-Utils # failure in job https://hydra.nixos.org/build/233204548 at 2023-09-02 - k8s-wrapper # failure in job https://hydra.nixos.org/build/233202485 at 2023-09-02 - - kademlia # failure in job https://hydra.nixos.org/build/233250935 at 2023-09-02 - - kafka-client # failure in job https://hydra.nixos.org/build/233243580 at 2023-09-02 - - kafka-client-sync # failure in job https://hydra.nixos.org/build/233208699 at 2023-09-02 - kafka-interchange # failure in job https://hydra.nixos.org/build/255676938 at 2024-04-16 - - Kalman # failure in job https://hydra.nixos.org/build/233210601 at 2023-09-02 - - kalman # failure in job https://hydra.nixos.org/build/233226292 at 2023-09-02 - - kangaroo # failure in job https://hydra.nixos.org/build/233222234 at 2023-09-02 - kanji # failure in job https://hydra.nixos.org/build/233208078 at 2023-09-02 - karabiner-config # failure in job https://hydra.nixos.org/build/233217813 at 2023-09-02 - - karps # failure in job https://hydra.nixos.org/build/233243155 at 2023-09-02 - katip-datadog # failure in job https://hydra.nixos.org/build/233214346 at 2023-09-02 - katip-elasticsearch # failure in job https://hydra.nixos.org/build/233208410 at 2023-09-02 - - katip-kafka # failure in job https://hydra.nixos.org/build/233241819 at 2023-09-02 - katip-logzio # failure in job https://hydra.nixos.org/build/233237068 at 2023-09-02 - - katip-scalyr-scribe # failure in job https://hydra.nixos.org/build/233257038 at 2023-09-02 - katip-syslog # failure in job https://hydra.nixos.org/build/233238787 at 2023-09-02 - - katt # failure in job https://hydra.nixos.org/build/233241058 at 2023-09-02 - - katydid # failure in job https://hydra.nixos.org/build/233227524 at 2023-09-02 - - kawa # failure in job https://hydra.nixos.org/build/252728326 at 2024-03-16 - - kawaii # failure in job https://hydra.nixos.org/build/233205134 at 2023-09-02 - Kawaii-Parser # failure in job https://hydra.nixos.org/build/233222574 at 2023-09-02 - - kawhi # failure in job https://hydra.nixos.org/build/233193086 at 2023-09-02 - - kd-tree # failure in job https://hydra.nixos.org/build/233207928 at 2023-09-02 - - kdesrc-build-extra # failure in job https://hydra.nixos.org/build/233193718 at 2023-09-02 - kdt # test failure in job https://hydra.nixos.org/build/239264029 at 2023-11-10 - - keccak # failure in job https://hydra.nixos.org/build/233200469 at 2023-09-02 - - keenser # failure in job https://hydra.nixos.org/build/233200021 at 2023-09-02 + - keera-hails-mvc-view-gtk # previously transitively broken at 2025-09-08 - keera-hails-reactivevalues # failure in job https://hydra.nixos.org/build/233258391 at 2023-09-02 - keid-render-basic # failure in job https://hydra.nixos.org/build/233258215 at 2023-09-02 - keid-ui-dearimgui # failure in job https://hydra.nixos.org/build/275828030 at 2024-10-21 - - keiretsu # failure in job https://hydra.nixos.org/build/233195563 at 2023-09-02 - kempe # failure in job https://hydra.nixos.org/build/233221290 at 2023-09-02 - kesha # failure in job https://hydra.nixos.org/build/233215581 at 2023-09-02 - - Ketchup # failure in job https://hydra.nixos.org/build/233211862 at 2023-09-02 - - key # failure in job https://hydra.nixos.org/build/252710595 at 2024-03-16 - keycloak-hs # failure in job https://hydra.nixos.org/build/233193019 at 2023-09-02 - - keyed # failure in job https://hydra.nixos.org/build/233251186 at 2023-09-02 - - keysafe # failure in job https://hydra.nixos.org/build/265284122 at 2024-07-14 - - khph # failure in job https://hydra.nixos.org/build/233258109 at 2023-09-02 - ki-effectful # failure in job https://hydra.nixos.org/build/295094885 at 2025-04-22 - - kickass-torrents-dump-parser # failure in job https://hydra.nixos.org/build/233210355 at 2023-09-02 - - kickchan # failure in job https://hydra.nixos.org/build/233216091 at 2023-09-02 - kindly-functors # failure in job https://hydra.nixos.org/build/295094891 at 2025-04-22 - kleene # failure in job https://hydra.nixos.org/build/295094919 at 2025-04-22 - - kleene-list # failure in job https://hydra.nixos.org/build/233237651 at 2023-09-02 - kmn-programming # failure in job https://hydra.nixos.org/build/233258328 at 2023-09-02 - - kmp-dfa # failure in job https://hydra.nixos.org/build/233237266 at 2023-09-02 - - knead-arithmetic # failure in job https://hydra.nixos.org/build/266355645 at 2024-07-14 - - knots # failure in job https://hydra.nixos.org/build/233209153 at 2023-09-02 - - koellner-phonetic # failure in job https://hydra.nixos.org/build/233217750 at 2023-09-02 - koneko # failure in job https://hydra.nixos.org/build/233204838 at 2023-09-02 - - Konf # failure in job https://hydra.nixos.org/build/233244880 at 2023-09-02 - konnakol # failure in job https://hydra.nixos.org/build/233221792 at 2023-09-02 - - kontra-config # failure in job https://hydra.nixos.org/build/233193800 at 2023-09-02 - - koofr-client # failure in job https://hydra.nixos.org/build/233255749 at 2023-09-02 - - korea-holidays # failure in job https://hydra.nixos.org/build/233222677 at 2023-09-02 - - kraken # failure in job https://hydra.nixos.org/build/233202384 at 2023-09-02 - - krapsh # failure in job https://hydra.nixos.org/build/233219887 at 2023-09-02 - - Kriens # failure in job https://hydra.nixos.org/build/233251673 at 2023-09-02 - - krpc # failure in job https://hydra.nixos.org/build/233231587 at 2023-09-02 - - KSP # failure in job https://hydra.nixos.org/build/233225102 at 2023-09-02 - - ktx # failure in job https://hydra.nixos.org/build/233235924 at 2023-09-02 - kubernetes-client-core # failure in job https://hydra.nixos.org/build/233235252 at 2023-09-02 - - kubernetes-webhook-haskell # failure in job https://hydra.nixos.org/build/233207675 at 2023-09-02 - kudzu # failure in job https://hydra.nixos.org/build/233230306 at 2023-09-02 - - kuifje # failure in job https://hydra.nixos.org/build/233210240 at 2023-09-02 - kure # failure in job https://hydra.nixos.org/build/233197164 at 2023-09-02 - - KyotoCabinet # failure in job https://hydra.nixos.org/build/233252460 at 2023-09-02 - - l-bfgs-b # failure in job https://hydra.nixos.org/build/233258769 at 2023-09-02 - - L-seed # failure in job https://hydra.nixos.org/build/233222324 at 2023-09-02 - - l10n # failure in job https://hydra.nixos.org/build/233199064 at 2023-09-02 - - labeled-graph # failure in job https://hydra.nixos.org/build/233241327 at 2023-09-02 - lambda # failure in job https://hydra.nixos.org/build/252740018 at 2024-03-16 - - lambda-bridge # failure in job https://hydra.nixos.org/build/233230630 at 2023-09-02 - lambda-calculator # failure in job https://hydra.nixos.org/build/233243971 at 2023-09-02 - - lambda-canvas # failure in job https://hydra.nixos.org/build/234451929 at 2023-09-13 - lambda-cube # failure in job https://hydra.nixos.org/build/233226812 at 2023-09-02 - - lambda-sampler # failure in job https://hydra.nixos.org/build/233205734 at 2023-09-02 - - lambda-toolbox # failure in job https://hydra.nixos.org/build/233194921 at 2023-09-02 - - lambda2js # failure in job https://hydra.nixos.org/build/233221862 at 2023-09-02 - - lambdaBase # failure in job https://hydra.nixos.org/build/233194002 at 2023-09-02 - lambdabot-telegram-plugins # failure in job https://hydra.nixos.org/build/234444260 at 2023-09-13 - - lambdabot-utils # failure in job https://hydra.nixos.org/build/233224842 at 2023-09-02 - - lambdacms-core # failure in job https://hydra.nixos.org/build/233217257 at 2023-09-02 - - lambdacube-core # failure in job https://hydra.nixos.org/build/233233440 at 2023-09-02 - - lambdacube-engine # failure in job https://hydra.nixos.org/build/233223079 at 2023-09-02 - - lambdacube-ir # failure in job https://hydra.nixos.org/build/233210019 at 2023-09-02 - - LambdaDesigner # failure in job https://hydra.nixos.org/build/233216338 at 2023-09-02 - - Lambdajudge # failure in job https://hydra.nixos.org/build/233227016 at 2023-09-02 - - LambdaNet # failure in job https://hydra.nixos.org/build/233197999 at 2023-09-02 - lambdasound # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/237027557 at 2023-10-04 - - lambdatex # failure in job https://hydra.nixos.org/build/233215389 at 2023-09-02 - - lambdatwit # failure in job https://hydra.nixos.org/build/233219603 at 2023-09-02 - - Lambdaya # failure in job https://hydra.nixos.org/build/233227702 at 2023-09-02 - lame # failure in job https://hydra.nixos.org/build/233250932 at 2023-09-02 - laminar # failure in job https://hydra.nixos.org/build/241426331 at 2023-11-19 - - language-asn # failure in job https://hydra.nixos.org/build/233227929 at 2023-09-02 - - language-c-comments # failure in job https://hydra.nixos.org/build/233234112 at 2023-09-02 - - language-c-inline # failure in job https://hydra.nixos.org/build/233245990 at 2023-09-02 - language-conf # failure in job https://hydra.nixos.org/build/233208178 at 2023-09-02 - - language-csharp # failure in job https://hydra.nixos.org/build/233240911 at 2023-09-02 - - language-dart # failure in job https://hydra.nixos.org/build/233220340 at 2023-09-02 - - language-dockerfile # failure in job https://hydra.nixos.org/build/233197924 at 2023-09-02 - - language-ecmascript # failure in job https://hydra.nixos.org/build/252712957 at 2024-03-16 - - language-elm # failure in job https://hydra.nixos.org/build/233214012 at 2023-09-02 - - language-fortran # failure in job https://hydra.nixos.org/build/233205480 at 2023-09-02 - - language-gcl # failure in job https://hydra.nixos.org/build/233218957 at 2023-09-02 - - language-go # failure in job https://hydra.nixos.org/build/233194866 at 2023-09-02 - - language-guess # failure in job https://hydra.nixos.org/build/233257420 at 2023-09-02 - - language-hcl # failure in job https://hydra.nixos.org/build/233212998 at 2023-09-02 - - language-java-classfile # failure in job https://hydra.nixos.org/build/233257021 at 2023-09-02 - language-js # failure in job https://hydra.nixos.org/build/233190676 at 2023-09-02 - - language-lua-qq # failure in job https://hydra.nixos.org/build/233194697 at 2023-09-02 - - language-lua2 # failure in job https://hydra.nixos.org/build/233197435 at 2023-09-02 - - language-mixal # failure in job https://hydra.nixos.org/build/233226763 at 2023-09-02 - - language-objc # failure in job https://hydra.nixos.org/build/233258340 at 2023-09-02 - - language-ocaml # failure in job https://hydra.nixos.org/build/233238127 at 2023-09-02 - - language-openscad # failure in job https://hydra.nixos.org/build/233201773 at 2023-09-02 - - language-pig # failure in job https://hydra.nixos.org/build/233249886 at 2023-09-02 - language-python # failure in job https://hydra.nixos.org/build/295094946 at 2025-04-22 - - language-rust # failure in job https://hydra.nixos.org/build/233194292 at 2023-09-02 - - language-sally # failure in job https://hydra.nixos.org/build/233250891 at 2023-09-02 - - language-sh # failure in job https://hydra.nixos.org/build/233249709 at 2023-09-02 - - language-sqlite # failure in job https://hydra.nixos.org/build/233248845 at 2023-09-02 - language-sygus # failure in job https://hydra.nixos.org/build/233192608 at 2023-09-02 - - language-typescript # failure in job https://hydra.nixos.org/build/233247703 at 2023-09-02 - - language-webidl # failure in job https://hydra.nixos.org/build/233194656 at 2023-09-02 - - laop # failure in job https://hydra.nixos.org/build/233204106 at 2023-09-02 - large-anon # base >=4.14 && <4.19, ghc >=8.10 && <9.7 https://hydra.nixos.org/build/295428414 - large-records # failure in job https://hydra.nixos.org/build/295094961 at 2025-04-22 - - LargeCardinalHierarchy # failure in job https://hydra.nixos.org/build/233250339 at 2023-09-02 - - Lastik # failure in job https://hydra.nixos.org/build/233194460 at 2023-09-02 - - latest-npm-version # failure in job https://hydra.nixos.org/build/233239108 at 2023-09-02 - - latex-formulae-image # failure in job https://hydra.nixos.org/build/233251243 at 2023-09-02 - - latex-svg-image # failure in job https://hydra.nixos.org/build/233239345 at 2023-09-02 - - LATS # failure in job https://hydra.nixos.org/build/233248029 at 2023-09-02 - launchdarkly-server-sdk # failure in job https://hydra.nixos.org/build/233190791 at 2023-09-02 - - launchpad-control # failure in job https://hydra.nixos.org/build/233219502 at 2023-09-02 - lawful-classes-types # failure in job https://hydra.nixos.org/build/252727845 at 2024-03-16 - - lawless-concurrent-machines # failure in job https://hydra.nixos.org/build/233225327 at 2023-09-02 - - layers # failure in job https://hydra.nixos.org/build/233196766 at 2023-09-02 - layers-game # failure in job https://hydra.nixos.org/build/295094997 at 2025-04-22 - - layout # failure in job https://hydra.nixos.org/build/233259626 at 2023-09-02 - - layout-bootstrap # failure in job https://hydra.nixos.org/build/233223699 at 2023-09-02 - - layout-rules # failure in job https://hydra.nixos.org/build/233250716 at 2023-09-02 - lazify # failure in job https://hydra.nixos.org/build/233203655 at 2023-09-02 - - lazy # failure in job https://hydra.nixos.org/build/295094978 at 2025-04-22 - lazy-async # failure in job https://hydra.nixos.org/build/252730698 at 2024-03-16 - lazy-bracket # failure in job https://hydra.nixos.org/build/252727186 at 2024-03-16 - - lazy-hash # failure in job https://hydra.nixos.org/build/233211405 at 2023-09-02 - lazy-priority-queue # failure in job https://hydra.nixos.org/build/233211457 at 2023-09-02 - - lazyarray # failure in job https://hydra.nixos.org/build/233192440 at 2023-09-02 - - lazyboy # failure in job https://hydra.nixos.org/build/233201158 at 2023-09-02 - - lazyset # failure in job https://hydra.nixos.org/build/233248383 at 2023-09-02 - - lbfgs # failure in job https://hydra.nixos.org/build/282178103 at 2024-12-23 - LC3 # failure in job https://hydra.nixos.org/build/233192513 at 2023-09-02 - - lcs # failure in job https://hydra.nixos.org/build/233232193 at 2023-09-02 - - ld-intervals # failure in job https://hydra.nixos.org/build/233216344 at 2023-09-02 - - ldif # failure in job https://hydra.nixos.org/build/233195577 at 2023-09-02 - - leaf # failure in job https://hydra.nixos.org/build/233212614 at 2023-09-02 - leanpub-concepts # failure in job https://hydra.nixos.org/build/295095015 at 2025-04-22 - - leapseconds # failure in job https://hydra.nixos.org/build/233253640 at 2023-09-02 - - learn # failure in job https://hydra.nixos.org/build/233247385 at 2023-09-02 - - learn-physics-examples # failure in job https://hydra.nixos.org/build/234444204 at 2023-09-13 - - Learning # failure in job https://hydra.nixos.org/build/233237137 at 2023-09-02 - leb128 # failure in job https://hydra.nixos.org/build/252731801 at 2024-03-16 - - leetify # failure in job https://hydra.nixos.org/build/233200752 at 2023-09-02 - - lendingclub # failure in job https://hydra.nixos.org/build/233239123 at 2023-09-02 - - lens-accelerate # failure in job https://hydra.nixos.org/build/296049887 at 2025-05-02 - - lens-datetime # failure in job https://hydra.nixos.org/build/233252409 at 2023-09-02 - lens-filesystem # failure in job https://hydra.nixos.org/build/233205074 at 2023-09-02 - lens-indexed-plated # failure in job https://hydra.nixos.org/build/295095017 at 2025-04-22 - - lens-labels # failure in job https://hydra.nixos.org/build/233216003 at 2023-09-02 - - lens-prelude # failure in job https://hydra.nixos.org/build/233220321 at 2023-09-02 - lens-process # failure in job https://hydra.nixos.org/build/233242948 at 2023-09-02 - - lens-simple # failure in job https://hydra.nixos.org/build/233245452 at 2023-09-02 - lens-tell # failure in job https://hydra.nixos.org/build/233234619 at 2023-09-02 - - lens-text-encoding # failure in job https://hydra.nixos.org/build/233222713 at 2023-09-02 - - lens-th-rewrite # failure in job https://hydra.nixos.org/build/233201025 at 2023-09-02 - - lens-time # failure in job https://hydra.nixos.org/build/233260007 at 2023-09-02 - lens-tutorial # failure in job https://hydra.nixos.org/build/233220488 at 2023-09-02 - - lens-typelevel # failure in job https://hydra.nixos.org/build/233225963 at 2023-09-02 - lens-witherable # failure in job https://hydra.nixos.org/build/295095030 at 2025-04-22 - - lens-xml # failure in job https://hydra.nixos.org/build/233245746 at 2023-09-02 - lenses # failure in job https://hydra.nixos.org/build/233239109 at 2023-09-02 - - lensref # failure in job https://hydra.nixos.org/build/233205479 at 2023-09-02 - - lenz-template # failure in job https://hydra.nixos.org/build/233206822 at 2023-09-02 - less-arbitrary # failure in job https://hydra.nixos.org/build/233231412 at 2023-09-02 - - level-monad # failure in job https://hydra.nixos.org/build/233257036 at 2023-09-02 - - Level0 # failure in job https://hydra.nixos.org/build/233220758 at 2023-09-02 - - levmar # failure in job https://hydra.nixos.org/build/233254731 at 2023-09-02 - - lfst # failure in job https://hydra.nixos.org/build/233240622 at 2023-09-02 - - lhc # failure in job https://hydra.nixos.org/build/233220731 at 2023-09-02 - - lhs2TeX-hl # failure in job https://hydra.nixos.org/build/233221405 at 2023-09-02 - - lhslatex # failure in job https://hydra.nixos.org/build/233246375 at 2023-09-02 - - LibClang # failure in job https://hydra.nixos.org/build/233194732 at 2023-09-02 - - libexpect # failure in job https://hydra.nixos.org/build/233226545 at 2023-09-02 - - libGenI # failure in job https://hydra.nixos.org/build/233240857 at 2023-09-02 - - libgit # failure in job https://hydra.nixos.org/build/252729283 at 2024-03-16 - - libhbb # failure in job https://hydra.nixos.org/build/233232186 at 2023-09-02 - - libinfluxdb # failure in job https://hydra.nixos.org/build/233199457 at 2023-09-02 - libjenkins # failure in job https://hydra.nixos.org/build/233198788 at 2023-09-02 - libjwt-typed # failure in job https://hydra.nixos.org/build/233230163 at 2023-09-02 - - libltdl # failure in job https://hydra.nixos.org/build/233225728 at 2023-09-02 - libmdbx # failure in job https://hydra.nixos.org/build/233208793 at 2023-09-02 - liboath-hs # failure in job https://hydra.nixos.org/build/233229056 at 2023-09-02 - - liboleg # failure in job https://hydra.nixos.org/build/233226133 at 2023-09-02 - - libpafe # failure in job https://hydra.nixos.org/build/233202070 at 2023-09-02 - libphonenumber # failure in job https://hydra.nixos.org/build/233251839 at 2023-09-02 - - libpq # failure in job https://hydra.nixos.org/build/233192542 at 2023-09-02 - - librandomorg # failure in job https://hydra.nixos.org/build/233232749 at 2023-09-02 + - librarian # previously transitively broken at 2025-09-08 - libriscv # failure in job https://hydra.nixos.org/build/295122867 at 2025-04-22 - libsecp256k1 # failure in job https://hydra.nixos.org/build/234441559 at 2023-09-13 - libsodium # failure in job https://hydra.nixos.org/build/243816565 at 2024-01-01 - - libstackexchange # failure in job https://hydra.nixos.org/build/295095048 at 2025-04-22 - - libsystemd-daemon # failure in job https://hydra.nixos.org/build/233207090 at 2023-09-02 - - libtagc # failure in job https://hydra.nixos.org/build/233223631 at 2023-09-02 - libtelnet # failure in job https://hydra.nixos.org/build/233209594 at 2023-09-02 - libvirt-hs # failure in job https://hydra.nixos.org/build/253697570 at 2024-03-31 - - libxls # failure in job https://hydra.nixos.org/build/233257847 at 2023-09-02 - libxlsxwriter-hs # failure in job https://hydra.nixos.org/build/233244798 at 2023-09-02 - libxml-sax # failure in job https://hydra.nixos.org/build/283561084 at 2024-12-31 - - libxslt # failure in job https://hydra.nixos.org/build/233248464 at 2023-09-02 - - libzfs # failure in job https://hydra.nixos.org/build/233662945 at 2023-09-02 - - LibZip # failure in job https://hydra.nixos.org/build/252734735 at 2024-03-16 - licensor # failure in job https://hydra.nixos.org/build/233248660 at 2023-09-02 - - lie # failure in job https://hydra.nixos.org/build/233228953 at 2023-09-02 - - life-sync # failure in job https://hydra.nixos.org/build/233241402 at 2023-09-02 - lifetimes # failure in job https://hydra.nixos.org/build/233259483 at 2023-09-02 - - lifted-protolude # failure in job https://hydra.nixos.org/build/233253040 at 2023-09-02 - - lifter # failure in job https://hydra.nixos.org/build/234448104 at 2023-09-13 - - ligature # failure in job https://hydra.nixos.org/build/233212688 at 2023-09-02 - - light # failure in job https://hydra.nixos.org/build/233193643 at 2023-09-02 - - lilypond # failure in job https://hydra.nixos.org/build/233221478 at 2023-09-02 - - Limit # failure in job https://hydra.nixos.org/build/233229268 at 2023-09-02 - - limp-cbc # failure in job https://hydra.nixos.org/build/233201076 at 2023-09-02 - - linda # failure in job https://hydra.nixos.org/build/233249512 at 2023-09-02 - - linden # failure in job https://hydra.nixos.org/build/233198590 at 2023-09-02 - - line # failure in job https://hydra.nixos.org/build/295095069 at 2025-04-22 + - lightstep-haskell # previously transitively broken at 2025-09-08 - line-bot-sdk # failure in job https://hydra.nixos.org/build/233195852 at 2023-09-02 - line-drawing # failure in job https://hydra.nixos.org/build/233228389 at 2023-09-02 - line-indexed-cursor # failure in job https://hydra.nixos.org/build/233210607 at 2023-09-02 - - linear-accelerate # failure in job https://hydra.nixos.org/build/296049888 at 2025-05-02 - - linear-algebra-cblas # failure in job https://hydra.nixos.org/build/233239710 at 2023-09-02 - - linear-maps # failure in job https://hydra.nixos.org/build/233258332 at 2023-09-02 - - linear-socket # failure in job https://hydra.nixos.org/build/233192053 at 2023-09-02 - - linear-vect # failure in job https://hydra.nixos.org/build/233252054 at 2023-09-02 - linearmap-category # failure in job https://hydra.nixos.org/build/236690982 at 2023-10-04 - linearscan # failure in job https://hydra.nixos.org/build/233257541 at 2023-09-02 - - lines-of-action # failure in job https://hydra.nixos.org/build/233244937 at 2023-09-02 - lingo # failure in job https://hydra.nixos.org/build/233254522 at 2023-09-02 - - linguistic-ordinals # failure in job https://hydra.nixos.org/build/233228974 at 2023-09-02 - - linked-list-with-iterator # failure in job https://hydra.nixos.org/build/233220466 at 2023-09-02 - - linkedhashmap # failure in job https://hydra.nixos.org/build/233234634 at 2023-09-02 - - linklater # failure in job https://hydra.nixos.org/build/233220508 at 2023-09-02 - - linnet # failure in job https://hydra.nixos.org/build/245788523 at 2024-01-07 - - linode # failure in job https://hydra.nixos.org/build/233256512 at 2023-09-02 - - linode-v4 # failure in job https://hydra.nixos.org/build/233238195 at 2023-09-02 - - linux-blkid # failure in job https://hydra.nixos.org/build/233220151 at 2023-09-02 - - linux-cgroup # failure in job https://hydra.nixos.org/build/233224448 at 2023-09-02 - - linux-evdev # failure in job https://hydra.nixos.org/build/233259196 at 2023-09-02 - - linux-framebuffer # failure in job https://hydra.nixos.org/build/252721503 at 2024-03-16 - - linux-kmod # failure in job https://hydra.nixos.org/build/233205933 at 2023-09-02 - - linux-perf # failure in job https://hydra.nixos.org/build/233193731 at 2023-09-02 - - linux-xattr # failure in job https://hydra.nixos.org/build/233226493 at 2023-09-02 - - linx-gateway # failure in job https://hydra.nixos.org/build/233220744 at 2023-09-02 - lio-fs # failure in job https://hydra.nixos.org/build/252736678 at 2024-03-16 - - lio-simple # failure in job https://hydra.nixos.org/build/233200711 at 2023-09-02 - - lipsum-gen # failure in job https://hydra.nixos.org/build/233233734 at 2023-09-02 - - liquid # failure in job https://hydra.nixos.org/build/233255883 at 2023-09-02 - - liquidhaskell-cabal # failure in job https://hydra.nixos.org/build/233249946 at 2023-09-02 - - Liquorice # failure in job https://hydra.nixos.org/build/233193923 at 2023-09-02 - - list-mux # failure in job https://hydra.nixos.org/build/233206407 at 2023-09-02 - - list-prompt # failure in job https://hydra.nixos.org/build/233235855 at 2023-09-02 - list-singleton # failure in job https://hydra.nixos.org/build/252723010 at 2024-03-16 - - list-t-http-client # failure in job https://hydra.nixos.org/build/233239262 at 2023-09-02 - - list-t-libcurl # failure in job https://hydra.nixos.org/build/233237389 at 2023-09-02 - - list-t-text # failure in job https://hydra.nixos.org/build/233235451 at 2023-09-02 - - list-zip-def # failure in job https://hydra.nixos.org/build/233202564 at 2023-09-02 - list-zipper # failure in job https://hydra.nixos.org/build/233250766 at 2023-09-02 - - listlike-instances # failure in job https://hydra.nixos.org/build/233238303 at 2023-09-02 - - literals # failure in job https://hydra.nixos.org/build/233233709 at 2023-09-02 - - LiterateMarkdown # failure in job https://hydra.nixos.org/build/233233229 at 2023-09-02 - little-earley # failure in job https://hydra.nixos.org/build/233197880 at 2023-09-02 - - ll-picosat # failure in job https://hydra.nixos.org/build/233206257 at 2023-09-02 + - live-sequencer # previously transitively broken at 2025-09-08 - llama-cpp-hs # failure in job https://hydra.nixos.org/build/299139409 at 2025-06-23 - - llsd # failure in job https://hydra.nixos.org/build/233241590 at 2023-09-02 - - llvm-base # failure in job https://hydra.nixos.org/build/233244366 at 2023-09-02 - llvm-codegen # failure in job https://hydra.nixos.org/build/295095119 at 2025-04-22 - - llvm-extension # failure in job https://hydra.nixos.org/build/266355631 at 2024-07-14 - llvm-extra # failure in job https://hydra.nixos.org/build/303481607 at 2025-07-27 - - llvm-general-pure # failure in job https://hydra.nixos.org/build/233246430 at 2023-09-02 - - llvm-hs # failure in job https://hydra.nixos.org/build/233205149 at 2023-09-02 - llvm-hs-pure # failure in job https://hydra.nixos.org/build/252721738 at 2024-03-16 - - llvm-ht # failure in job https://hydra.nixos.org/build/233203770 at 2023-09-02 - llvm-party # failure in job https://hydra.nixos.org/build/233221113 at 2023-09-02 - - lmdb-high-level # failure in job https://hydra.nixos.org/build/233238988 at 2023-09-02 - - lmdb-simple # failure in job https://hydra.nixos.org/build/233206781 at 2023-09-02 - - lmonad # failure in job https://hydra.nixos.org/build/233246737 at 2023-09-02 - lnurl # failure in job https://hydra.nixos.org/build/233217638 at 2023-09-02 - - load-balancing # failure in job https://hydra.nixos.org/build/233206458 at 2023-09-02 - - load-font # failure in job https://hydra.nixos.org/build/233255666 at 2023-09-02 - loc-test # failure in job https://hydra.nixos.org/build/233198477 at 2023-09-02 - - local-address # failure in job https://hydra.nixos.org/build/233247765 at 2023-09-02 - - located # failure in job https://hydra.nixos.org/build/233234945 at 2023-09-02 - - located-monad-logger # failure in job https://hydra.nixos.org/build/233194551 at 2023-09-02 - - loch # failure in job https://hydra.nixos.org/build/233248876 at 2023-09-02 - - log-effect # failure in job https://hydra.nixos.org/build/233211329 at 2023-09-02 - - log-warper # failure in job https://hydra.nixos.org/build/233220417 at 2023-09-02 - - log2json # failure in job https://hydra.nixos.org/build/233211819 at 2023-09-02 - - logentries # failure in job https://hydra.nixos.org/build/233215590 at 2023-09-02 - - logger # failure in job https://hydra.nixos.org/build/233237524 at 2023-09-02 + - localize # previously transitively broken at 2025-09-08 - logging-effect-colors # failure in job https://hydra.nixos.org/build/295095150 at 2025-04-22 - - logging-effect-extra-file # failure in job https://hydra.nixos.org/build/233225200 at 2023-09-02 - - logging-effect-extra-handler # failure in job https://hydra.nixos.org/build/233232054 at 2023-09-02 - logging-effect-syslog # failure in job https://hydra.nixos.org/build/295095176 at 2025-04-22 - - Logic # failure in job https://hydra.nixos.org/build/233206217 at 2023-09-02 - - logic-classes # failure in job https://hydra.nixos.org/build/295095194 at 2025-04-22 - - logicst # failure in job https://hydra.nixos.org/build/233250253 at 2023-09-02 - logict-sequence # failure in job https://hydra.nixos.org/build/233224789 at 2023-09-02 - - logplex-parse # failure in job https://hydra.nixos.org/build/233248727 at 2023-09-02 - - lojbanParser # failure in job https://hydra.nixos.org/build/233236082 at 2023-09-02 - - lojbanXiragan # failure in job https://hydra.nixos.org/build/233258779 at 2023-09-02 - - lol-calculus # failure in job https://hydra.nixos.org/build/233233910 at 2023-09-02 - longboi # failure in job https://hydra.nixos.org/build/233233913 at 2023-09-02 - longshot # bounds issues https://hydra.nixos.org/build/295428416 - - lookup-tables # failure in job https://hydra.nixos.org/build/233196965 at 2023-09-02 - loop-dsl # failure in job https://hydra.nixos.org/build/233198743 at 2023-09-02 - - loop-while # failure in job https://hydra.nixos.org/build/233198041 at 2023-09-02 - - loopbreaker # failure in job https://hydra.nixos.org/build/233235857 at 2023-09-02 - looper # failure in job https://hydra.nixos.org/build/233254482 at 2023-09-02 - - loops # failure in job https://hydra.nixos.org/build/233238771 at 2023-09-02 - - loopy # failure in job https://hydra.nixos.org/build/233227154 at 2023-09-02 - - lord # failure in job https://hydra.nixos.org/build/233226478 at 2023-09-02 - - lorem # failure in job https://hydra.nixos.org/build/233255922 at 2023-09-02 - - loris # failure in job https://hydra.nixos.org/build/233250801 at 2023-09-02 - - loshadka # failure in job https://hydra.nixos.org/build/233239546 at 2023-09-02 - - louis # failure in job https://hydra.nixos.org/build/233227705 at 2023-09-02 - - lowgl # failure in job https://hydra.nixos.org/build/233216216 at 2023-09-02 - lp-diagrams # failure in job https://hydra.nixos.org/build/295095167 at 2025-04-22 - - lp-diagrams-svg # failure in job https://hydra.nixos.org/build/233220097 at 2023-09-02 - - LRU # failure in job https://hydra.nixos.org/build/233206273 at 2023-09-02 - - lscabal # failure in job https://hydra.nixos.org/build/233253536 at 2023-09-02 - lsfrom # failure in job https://hydra.nixos.org/build/233211705 at 2023-09-02 - lsh # failure in job https://hydra.nixos.org/build/233256686 at 2023-09-02 - lti13 # failure in job https://hydra.nixos.org/build/252715722 at 2024-03-16 - - ltiv1p1 # failure in job https://hydra.nixos.org/build/233200883 at 2023-09-02 - - ltk # failure in job https://hydra.nixos.org/build/233244152 at 2023-09-02 - - LTS # failure in job https://hydra.nixos.org/build/233206427 at 2023-09-02 - - lua-bc # failure in job https://hydra.nixos.org/build/233214532 at 2023-09-02 - - luautils # failure in job https://hydra.nixos.org/build/233250269 at 2023-09-02 - lucid-alpine # failure in job https://hydra.nixos.org/build/233199500 at 2023-09-02 - lucid-aria # failure in job https://hydra.nixos.org/build/233231489 at 2023-09-02 - lucid-hyperscript # failure in job https://hydra.nixos.org/build/233191616 at 2023-09-02 - lucid2-htmx # failure in job https://hydra.nixos.org/build/233196674 at 2023-09-02 - - luhn # failure in job https://hydra.nixos.org/build/233237661 at 2023-09-02 - - luis-client # failure in job https://hydra.nixos.org/build/233244540 at 2023-09-02 - - luka # failure in job https://hydra.nixos.org/build/233235403 at 2023-09-02 - - luminance # failure in job https://hydra.nixos.org/build/233233551 at 2023-09-02 - - lushtags # failure in job https://hydra.nixos.org/build/233225015 at 2023-09-02 - - luthor # failure in job https://hydra.nixos.org/build/233210797 at 2023-09-02 - lvmlib # failure in job https://hydra.nixos.org/build/233200386 at 2023-09-02 - - lvmrun # failure in job https://hydra.nixos.org/build/233235284 at 2023-09-02 - - lxd-client # failure in job https://hydra.nixos.org/build/233231826 at 2023-09-02 - - lxd-client-config # failure in job https://hydra.nixos.org/build/233225008 at 2023-09-02 - - lye # failure in job https://hydra.nixos.org/build/233229866 at 2023-09-02 - - lzip # failure in job https://hydra.nixos.org/build/233215027 at 2023-09-02 - - lzma-streams # failure in job https://hydra.nixos.org/build/233229106 at 2023-09-02 - lzo # failure in job https://hydra.nixos.org/build/233200657 at 2023-09-02 - - maam # failure in job https://hydra.nixos.org/build/233228184 at 2023-09-02 - - machinecell # failure in job https://hydra.nixos.org/build/233222871 at 2023-09-02 - machines-attoparsec # failure in job https://hydra.nixos.org/build/233253893 at 2023-09-02 - machines-binary # failure in job https://hydra.nixos.org/build/233238332 at 2023-09-02 - - machines-bytestring # failure in job https://hydra.nixos.org/build/233256615 at 2023-09-02 - - machines-encoding # failure in job https://hydra.nixos.org/build/233225978 at 2023-09-02 - machines-io # failure in job https://hydra.nixos.org/build/233214374 at 2023-09-02 - - machines-zlib # failure in job https://hydra.nixos.org/build/233204363 at 2023-09-02 - - macho # failure in job https://hydra.nixos.org/build/233192820 at 2023-09-02 - - maclight # failure in job https://hydra.nixos.org/build/233230574 at 2023-09-02 - - macos-corelibs # failure in job https://hydra.nixos.org/build/233211307 at 2023-09-02 - macrm # failure in job https://hydra.nixos.org/build/233222582 at 2023-09-02 - - madlang # failure in job https://hydra.nixos.org/build/233253603 at 2023-09-02 - - mage # failure in job https://hydra.nixos.org/build/233226696 at 2023-09-02 - - magic-tyfams # failure in job https://hydra.nixos.org/build/233218287 at 2023-09-02 - magicbane # failure in job https://hydra.nixos.org/build/295095267 at 2025-04-22 - MagicHaskeller # failure in job https://hydra.nixos.org/build/233192169 at 2023-09-02 - magma # failure in job https://hydra.nixos.org/build/295095210 at 2025-04-22 - - mailchimp # failure in job https://hydra.nixos.org/build/233222458 at 2023-09-02 - - mailchimp-subscribe # failure in job https://hydra.nixos.org/build/233192581 at 2023-09-02 - - make-hard-links # failure in job https://hydra.nixos.org/build/233213014 at 2023-09-02 - - make-monofoldable-foldable # failure in job https://hydra.nixos.org/build/233235683 at 2023-09-02 - - makedo # failure in job https://hydra.nixos.org/build/233244893 at 2023-09-02 - - makefile # failure in job https://hydra.nixos.org/build/233207515 at 2023-09-02 - - mallard # failure in job https://hydra.nixos.org/build/233208248 at 2023-09-02 - mandulia # failure in job https://hydra.nixos.org/build/234446158 at 2023-09-13 - manifolds # failure in job https://hydra.nixos.org/build/233244103 at 2023-09-02 - - map-exts # failure in job https://hydra.nixos.org/build/233247423 at 2023-09-02 - map-reduce-folds # failure in job https://hydra.nixos.org/build/233245163 at 2023-09-02 - - mapalgebra # failure in job https://hydra.nixos.org/build/233215542 at 2023-09-02 - - Mapping # failure in job https://hydra.nixos.org/build/233248158 at 2023-09-02 - - mappy # failure in job https://hydra.nixos.org/build/233250202 at 2023-09-02 - - MapWith # failure in job https://hydra.nixos.org/build/233237146 at 2023-09-02 - - markdown-kate # failure in job https://hydra.nixos.org/build/233227051 at 2023-09-02 - - marked-pretty # failure in job https://hydra.nixos.org/build/233193892 at 2023-09-02 - markov-chain-usage-model # failure in job https://hydra.nixos.org/build/241522329 at 2023-12-03 - - markov-realization # failure in job https://hydra.nixos.org/build/233234901 at 2023-09-02 - - markup # failure in job https://hydra.nixos.org/build/295095368 at 2025-04-22 - - mars # failure in job https://hydra.nixos.org/build/234449730 at 2023-09-13 - marshal-contt # failure in job https://hydra.nixos.org/build/233231755 at 2023-09-02 - - marvin-interpolate # failure in job https://hydra.nixos.org/build/233201000 at 2023-09-02 - - MASMGen # failure in job https://hydra.nixos.org/build/233213454 at 2023-09-02 - mason # failure in job https://hydra.nixos.org/build/295095242 at 2025-04-22 - - massiv-scheduler # failure in job https://hydra.nixos.org/build/233196778 at 2023-09-02 - massiv-serialise # failure in job https://hydra.nixos.org/build/233242284 at 2023-09-02 - - master-plan # failure in job https://hydra.nixos.org/build/233208718 at 2023-09-02 - matcha # failure in job https://hydra.nixos.org/build/265271888 at 2024-07-14 - - matcher # failure in job https://hydra.nixos.org/build/233198640 at 2023-09-02 - - math-grads # failure in job https://hydra.nixos.org/build/233222629 at 2023-09-02 - - math-interpolate # failure in job https://hydra.nixos.org/build/233225629 at 2023-09-02 - - math-metric # failure in job https://hydra.nixos.org/build/233225394 at 2023-09-02 - math-programming # failure in job https://hydra.nixos.org/build/233217072 at 2023-09-02 - - mathflow # failure in job https://hydra.nixos.org/build/233195457 at 2023-09-02 - matrix-as-xyz # failure in job https://hydra.nixos.org/build/233196953 at 2023-09-02 - - matrix-lens # failure in job https://hydra.nixos.org/build/233259955 at 2023-09-02 - - matrix-market # failure in job https://hydra.nixos.org/build/233237011 at 2023-09-02 - - matrix-sized # failure in job https://hydra.nixos.org/build/233211908 at 2023-09-02 - matroid # failure in job https://hydra.nixos.org/build/233244169 at 2023-09-02 - mattermost-api # failure in job https://hydra.nixos.org/build/295095261 at 2025-04-22 - - maude # failure in job https://hydra.nixos.org/build/233204879 at 2023-09-02 - - maxent-learner-hw # failure in job https://hydra.nixos.org/build/233239586 at 2023-09-02 - - maybench # failure in job https://hydra.nixos.org/build/233239576 at 2023-09-02 - - MaybeT # failure in job https://hydra.nixos.org/build/233253183 at 2023-09-02 - - MaybeT-monads-tf # failure in job https://hydra.nixos.org/build/233238946 at 2023-09-02 - - MaybeT-transformers # failure in job https://hydra.nixos.org/build/233191283 at 2023-09-02 - - MazesOfMonad # failure in job https://hydra.nixos.org/build/233200182 at 2023-09-02 - - MBot # failure in job https://hydra.nixos.org/build/233248312 at 2023-09-02 - - mbox-tools # failure in job https://hydra.nixos.org/build/233207558 at 2023-09-02 - - mbtiles # failure in job https://hydra.nixos.org/build/233237721 at 2023-09-02 - - mbug # failure in job https://hydra.nixos.org/build/233242212 at 2023-09-02 - - mcl # failure in job https://hydra.nixos.org/build/233193943 at 2023-09-02 - - mcm # failure in job https://hydra.nixos.org/build/233229087 at 2023-09-02 - - mcmaster-gloss-examples # failure in job https://hydra.nixos.org/build/234457610 at 2023-09-13 - - mcmc-synthesis # failure in job https://hydra.nixos.org/build/233208414 at 2023-09-02 - mcp # failure in job https://hydra.nixos.org/build/302804588 at 2025-07-27 - mcp-server # failure in job https://hydra.nixos.org/build/302804602 at 2025-07-27 - - mcpi # failure in job https://hydra.nixos.org/build/233231465 at 2023-09-02 - - mdapi # failure in job https://hydra.nixos.org/build/233257724 at 2023-09-02 - - mdcat # failure in job https://hydra.nixos.org/build/233249429 at 2023-09-02 - - mdp # failure in job https://hydra.nixos.org/build/233246226 at 2023-09-02 - mealstrom # failure in job https://hydra.nixos.org/build/233253540 at 2023-09-02 - - MeanShift # failure in job https://hydra.nixos.org/build/233194760 at 2023-09-02 - - Measure # failure in job https://hydra.nixos.org/build/233231838 at 2023-09-02 - - mecab # failure in job https://hydra.nixos.org/build/233194280 at 2023-09-02 - - mech # failure in job https://hydra.nixos.org/build/233238723 at 2023-09-02 - - Mecha # failure in job https://hydra.nixos.org/build/233243480 at 2023-09-02 - - mechs # failure in job https://hydra.nixos.org/build/233241727 at 2023-09-02 - - Mechs # failure in job https://hydra.nixos.org/build/233254531 at 2023-09-02 - - mediabus # failure in job https://hydra.nixos.org/build/233259544 at 2023-09-02 - - mediawiki # failure in job https://hydra.nixos.org/build/233213178 at 2023-09-02 - - medium-sdk-haskell # failure in job https://hydra.nixos.org/build/233195507 at 2023-09-02 - - meep # failure in job https://hydra.nixos.org/build/233193144 at 2023-09-02 - - megalisp # failure in job https://hydra.nixos.org/build/233234992 at 2023-09-02 - megastore # failure in job https://hydra.nixos.org/build/233222876 at 2023-09-02 - - mellon-core # failure in job https://hydra.nixos.org/build/233221666 at 2023-09-02 - - melody # failure in job https://hydra.nixos.org/build/233223241 at 2023-09-02 - - membrain # failure in job https://hydra.nixos.org/build/233248480 at 2023-09-02 - - memcache-haskell # failure in job https://hydra.nixos.org/build/233211839 at 2023-09-02 - - memcached # failure in job https://hydra.nixos.org/build/233190993 at 2023-09-02 - - memcached-binary # failure in job https://hydra.nixos.org/build/233192281 at 2023-09-02 - memfd # failure in job https://hydra.nixos.org/build/295095297 at 2025-04-22 - - memis # failure in job https://hydra.nixos.org/build/233207107 at 2023-09-02 - - memo-ptr # failure in job https://hydra.nixos.org/build/233216357 at 2023-09-02 - - memo-sqlite # failure in job https://hydra.nixos.org/build/233243897 at 2023-09-02 - - memoization-utils # failure in job https://hydra.nixos.org/build/233220093 at 2023-09-02 - memoize # failure in job https://hydra.nixos.org/build/295095333 at 2025-04-22 - - memorable-bits # failure in job https://hydra.nixos.org/build/233247877 at 2023-09-02 - - memorypool # failure in job https://hydra.nixos.org/build/233193107 at 2023-09-02 - - menoh # failure in job https://hydra.nixos.org/build/233238503 at 2023-09-02 - - menshen # failure in job https://hydra.nixos.org/build/233217324 at 2023-09-02 - mercury-api # failure in job https://hydra.nixos.org/build/233229812 at 2023-09-02 - mergeful-persistent # failure in job https://hydra.nixos.org/build/233221803 at 2023-09-02 - - messagepack-rpc # failure in job https://hydra.nixos.org/build/233254653 at 2023-09-02 - - messente # failure in job https://hydra.nixos.org/build/233195598 at 2023-09-02 - - meta-misc # failure in job https://hydra.nixos.org/build/233248305 at 2023-09-02 - - meta-par # failure in job https://hydra.nixos.org/build/233227886 at 2023-09-02 - - metadata # failure in job https://hydra.nixos.org/build/233246079 at 2023-09-02 - - MetaHDBC # failure in job https://hydra.nixos.org/build/233258864 at 2023-09-02 - - metaheuristics # failure in job https://hydra.nixos.org/build/233248251 at 2023-09-02 - method # failure in job https://hydra.nixos.org/build/233230721 at 2023-09-02 - - metric # failure in job https://hydra.nixos.org/build/233224295 at 2023-09-02 - - metricsd-client # failure in job https://hydra.nixos.org/build/233217951 at 2023-09-02 - - metro-transport-tls # failure in job https://hydra.nixos.org/build/252717619 at 2024-03-16 - - mezzo # failure in job https://hydra.nixos.org/build/233223341 at 2023-09-02 - - mezzolens # failure in job https://hydra.nixos.org/build/233248307 at 2023-09-02 - - mgeneric # failure in job https://hydra.nixos.org/build/233197809 at 2023-09-02 - - MHask # failure in job https://hydra.nixos.org/build/233232401 at 2023-09-02 - - mi # failure in job https://hydra.nixos.org/build/233227735 at 2023-09-02 - - miconix-test # failure in job https://hydra.nixos.org/build/233230738 at 2023-09-02 - - micro-recursion-schemes # failure in job https://hydra.nixos.org/build/233214118 at 2023-09-02 + - micro-gateway # previously transitively broken at 2025-09-08 - microbase # failure in job https://hydra.nixos.org/build/233204368 at 2023-09-02 - microdns # failure in job https://hydra.nixos.org/build/295095321 at 2025-04-22 - microformats2-parser # failure in job https://hydra.nixos.org/build/233238485 at 2023-09-02 - - microgroove # failure in job https://hydra.nixos.org/build/233196933 at 2023-09-02 - - microlens-each # failure in job https://hydra.nixos.org/build/233253621 at 2023-09-02 + - microformats2-types # previously transitively broken at 2025-09-08 - microlens-process # failure in job https://hydra.nixos.org/build/233190805 at 2023-09-02 - - micrologger # failure in job https://hydra.nixos.org/build/233196212 at 2023-09-02 - - microsoft-translator # failure in job https://hydra.nixos.org/build/233235928 at 2023-09-02 - - mida # failure in job https://hydra.nixos.org/build/233223244 at 2023-09-02 - - midi-simple # failure in job https://hydra.nixos.org/build/233219079 at 2023-09-02 - - midi-utils # failure in job https://hydra.nixos.org/build/233222257 at 2023-09-02 - - midisurface # failure in job https://hydra.nixos.org/build/233224559 at 2023-09-02 + - midimory # previously transitively broken at 2025-09-08 - mig-swagger-ui # failure in job https://hydra.nixos.org/build/295095369 at 2025-04-22 - - mikmod # failure in job https://hydra.nixos.org/build/233247364 at 2023-09-02 - - mikrokosmos # failure in job https://hydra.nixos.org/build/233232143 at 2023-09-02 - - miku # failure in job https://hydra.nixos.org/build/233212186 at 2023-09-02 - - milena # failure in job https://hydra.nixos.org/build/233257533 at 2023-09-02 - - mime-directory # failure in job https://hydra.nixos.org/build/233209691 at 2023-09-02 - - mines # failure in job https://hydra.nixos.org/build/252722834 at 2024-03-16 - - mini-egison # failure in job https://hydra.nixos.org/build/295095354 at 2025-04-22 - MiniAgda # failure in job https://hydra.nixos.org/build/233259586 at 2023-09-02 - minicurl # failure in job https://hydra.nixos.org/build/252710787 at 2024-03-16 - - miniforth # failure in job https://hydra.nixos.org/build/233220853 at 2023-09-02 - - minilens # failure in job https://hydra.nixos.org/build/233191347 at 2023-09-02 - - minions # failure in job https://hydra.nixos.org/build/233246840 at 2023-09-02 - - miniplex # failure in job https://hydra.nixos.org/build/233241976 at 2023-09-02 - - ministg # failure in job https://hydra.nixos.org/build/233214109 at 2023-09-02 - minizinc-process # failure in job https://hydra.nixos.org/build/233211497 at 2023-09-02 - - minst-idx # failure in job https://hydra.nixos.org/build/233259901 at 2023-09-02 - - mios # failure in job https://hydra.nixos.org/build/233251863 at 2023-09-02 - MIP # failure in job https://hydra.nixos.org/build/233199688 at 2023-09-02 - - mirror-tweet # failure in job https://hydra.nixos.org/build/233216951 at 2023-09-02 - - mismi-p # failure in job https://hydra.nixos.org/build/233257227 at 2023-09-02 - mit-3qvpPyAi6mH # failure in job https://hydra.nixos.org/build/233229967 at 2023-09-02 - - mix-arrows # failure in job https://hydra.nixos.org/build/233257720 at 2023-09-02 - mixpanel-client # failure in job https://hydra.nixos.org/build/233220132 at 2023-09-02 - - mkcabal # failure in job https://hydra.nixos.org/build/233202466 at 2023-09-02 - - ml-w # failure in job https://hydra.nixos.org/build/233251342 at 2023-09-02 - - mltool # failure in job https://hydra.nixos.org/build/233203849 at 2023-09-02 - - mm2 # failure in job https://hydra.nixos.org/build/233260048 at 2023-09-02 - mmsyn2 # failure in job https://hydra.nixos.org/build/233201519 at 2023-09-02 - mmsyn4 # failure in job https://hydra.nixos.org/build/233241446 at 2023-09-02 - mmsyn6ukr-array # failure in job https://hydra.nixos.org/build/233212068 at 2023-09-02 - - mmtf # failure in job https://hydra.nixos.org/build/233190851 at 2023-09-02 - - mmtl # failure in job https://hydra.nixos.org/build/233235862 at 2023-09-02 - Mobile-Legends-Hack-Cheats # failure in job https://hydra.nixos.org/build/233194849 at 2023-09-02 - mock-httpd # failure in job https://hydra.nixos.org/build/233191481 at 2023-09-02 - - mockazo # failure in job https://hydra.nixos.org/build/233234923 at 2023-09-02 - - modbus-tcp # failure in job https://hydra.nixos.org/build/233230661 at 2023-09-02 - - model # failure in job https://hydra.nixos.org/build/233211330 at 2023-09-02 - - modelicaparser # failure in job https://hydra.nixos.org/build/233207575 at 2023-09-02 - - modular-prelude # failure in job https://hydra.nixos.org/build/233210510 at 2023-09-02 - - module-management # failure in job https://hydra.nixos.org/build/233198407 at 2023-09-02 - - modulespection # failure in job https://hydra.nixos.org/build/233206138 at 2023-09-02 - - moe # failure in job https://hydra.nixos.org/build/233253151 at 2023-09-02 - - Moe # failure in job https://hydra.nixos.org/build/234446604 at 2023-09-13 - - MoeDict # failure in job https://hydra.nixos.org/build/233255252 at 2023-09-02 - - moesocks # failure in job https://hydra.nixos.org/build/233258741 at 2023-09-02 - moffy-samples-gtk3-run # failure in job https://hydra.nixos.org/build/295095451 at 2025-04-22 - moffy-samples-gtk4-run # failure in job https://hydra.nixos.org/build/295095458 at 2025-04-22 - mohws # failure in job https://hydra.nixos.org/build/233246088 at 2023-09-02 - - mollie-api-haskell # failure in job https://hydra.nixos.org/build/233200867 at 2023-09-02 - - monad-atom # failure in job https://hydra.nixos.org/build/233243367 at 2023-09-02 - - monad-atom-simple # failure in job https://hydra.nixos.org/build/233259038 at 2023-09-02 - - monad-branch # failure in job https://hydra.nixos.org/build/233251253 at 2023-09-02 - - monad-choice # failure in job https://hydra.nixos.org/build/233255987 at 2023-09-02 - - monad-fork # failure in job https://hydra.nixos.org/build/233206855 at 2023-09-02 - - monad-gen # failure in job https://hydra.nixos.org/build/252730194 at 2024-03-16 - - monad-introspect # failure in job https://hydra.nixos.org/build/233248261 at 2023-09-02 - - monad-journal # failure in job https://hydra.nixos.org/build/252714543 at 2024-03-16 - - monad-levels # failure in job https://hydra.nixos.org/build/233230433 at 2023-09-02 - - monad-lgbt # failure in job https://hydra.nixos.org/build/233207652 at 2023-09-02 - - monad-log # failure in job https://hydra.nixos.org/build/233235588 at 2023-09-02 - monad-logger-prefix # failure in job https://hydra.nixos.org/build/233194845 at 2023-09-02 - - monad-lrs # failure in job https://hydra.nixos.org/build/233204729 at 2023-09-02 - - monad-mersenne-random # failure in job https://hydra.nixos.org/build/233219918 at 2023-09-02 - - monad-mock # failure in job https://hydra.nixos.org/build/233211936 at 2023-09-02 - - monad-open # failure in job https://hydra.nixos.org/build/233242922 at 2023-09-02 - - monad-parallel-progressbar # failure in job https://hydra.nixos.org/build/233240035 at 2023-09-02 - - monad-param # failure in job https://hydra.nixos.org/build/233257283 at 2023-09-02 - monad-peel # failure in job https://hydra.nixos.org/build/252723606 at 2024-03-16 - - monad-persist # failure in job https://hydra.nixos.org/build/233214035 at 2023-09-02 - - monad-primitive # failure in job https://hydra.nixos.org/build/252713027 at 2024-03-16 - - monad-products # failure in job https://hydra.nixos.org/build/252738477 at 2024-03-16 - - monad-ran # failure in job https://hydra.nixos.org/build/233251596 at 2023-09-02 - - monad-recorder # failure in job https://hydra.nixos.org/build/233222665 at 2023-09-02 - monad-skeleton # failure in job https://hydra.nixos.org/build/233234306 at 2023-09-02 - - monad-statevar # failure in job https://hydra.nixos.org/build/233215896 at 2023-09-02 - monad-ste # failure in job https://hydra.nixos.org/build/233226514 at 2023-09-02 - - monad-stlike-io # failure in job https://hydra.nixos.org/build/233254724 at 2023-09-02 - monad-supply # failure in job https://hydra.nixos.org/build/252721130 at 2024-03-16 - - monad-task # failure in job https://hydra.nixos.org/build/233199661 at 2023-09-02 - monad-throw-exit # failure in job https://hydra.nixos.org/build/233205411 at 2023-09-02 - - monad-timing # failure in job https://hydra.nixos.org/build/233213441 at 2023-09-02 - monad-tree # failure in job https://hydra.nixos.org/build/233259264 at 2023-09-02 - - monad-tx # failure in job https://hydra.nixos.org/build/233232176 at 2023-09-02 - - monad-unify # failure in job https://hydra.nixos.org/build/233202833 at 2023-09-02 - - monad-wrap # failure in job https://hydra.nixos.org/build/233247808 at 2023-09-02 - - monadacme # failure in job https://hydra.nixos.org/build/233218330 at 2023-09-02 - - MonadCatchIO-mtl # failure in job https://hydra.nixos.org/build/233228214 at 2023-09-02 - - MonadCatchIO-transformers # failure in job https://hydra.nixos.org/build/252729237 at 2024-03-16 - - MonadCatchIO-transformers-foreign # failure in job https://hydra.nixos.org/build/233251635 at 2023-09-02 - - MonadCompose # failure in job https://hydra.nixos.org/build/233204478 at 2023-09-02 - - monadcryptorandom # failure in job https://hydra.nixos.org/build/233235604 at 2023-09-02 - - monadic-arrays # failure in job https://hydra.nixos.org/build/252726939 at 2024-03-16 - monadic-recursion-schemes # failure in job https://hydra.nixos.org/build/295095464 at 2025-04-22 - - monadiccp # failure in job https://hydra.nixos.org/build/233191794 at 2023-09-02 - - monadio-unwrappable # failure in job https://hydra.nixos.org/build/252736153 at 2024-03-16 - - Monadius # failure in job https://hydra.nixos.org/build/234456746 at 2023-09-13 - - monadLib-compose # failure in job https://hydra.nixos.org/build/233237652 at 2023-09-02 - - monadloc # failure in job https://hydra.nixos.org/build/252715531 at 2024-03-16 - - monadloc-pp # failure in job https://hydra.nixos.org/build/233229067 at 2023-09-02 - - monadlog # failure in job https://hydra.nixos.org/build/233210391 at 2023-09-02 - Monadoro # failure in job https://hydra.nixos.org/build/295091036 at 2025-04-22 - - MonadRandomLazy # failure in job https://hydra.nixos.org/build/233247540 at 2023-09-02 - - monads-fd # failure in job https://hydra.nixos.org/build/252731103 at 2024-03-16 - - MonadStack # failure in job https://hydra.nixos.org/build/233239920 at 2023-09-02 - - monadtransform # failure in job https://hydra.nixos.org/build/252727336 at 2024-03-16 - - Monatron # failure in job https://hydra.nixos.org/build/233211361 at 2023-09-02 - - mondo # failure in job https://hydra.nixos.org/build/233207379 at 2023-09-02 - - money # failure in job https://hydra.nixos.org/build/233236545 at 2023-09-02 - - mongodb-queue # failure in job https://hydra.nixos.org/build/233216248 at 2023-09-02 - - monitor # failure in job https://hydra.nixos.org/build/233229021 at 2023-09-02 - - mono-foldable # failure in job https://hydra.nixos.org/build/233238824 at 2023-09-02 - monocypher # failure in job https://hydra.nixos.org/build/233195745 at 2023-09-02 - - monoid # failure in job https://hydra.nixos.org/build/233252888 at 2023-09-02 - - monoid-absorbing # failure in job https://hydra.nixos.org/build/233236465 at 2023-09-02 - - monoid-owns # failure in job https://hydra.nixos.org/build/233259043 at 2023-09-02 - - monoidplus # failure in job https://hydra.nixos.org/build/233226759 at 2023-09-02 - - monoids # failure in job https://hydra.nixos.org/build/233231684 at 2023-09-02 - - monopati # failure in job https://hydra.nixos.org/build/233234119 at 2023-09-02 - - monus # failure in job https://hydra.nixos.org/build/233252424 at 2023-09-02 - monus-weighted-search # timeout - - monzo # failure in job https://hydra.nixos.org/build/233254681 at 2023-09-02 - - morfette # failure in job https://hydra.nixos.org/build/233249575 at 2023-09-02 - - morfeusz # failure in job https://hydra.nixos.org/build/233232351 at 2023-09-02 - morloc # failure in job https://hydra.nixos.org/build/295095489 at 2025-04-22 - - morpheus-graphql-cli # failure in job https://hydra.nixos.org/build/233249063 at 2023-09-02 - - morphisms-functors # failure in job https://hydra.nixos.org/build/233255311 at 2023-09-02 - - morphisms-objects # failure in job https://hydra.nixos.org/build/233216076 at 2023-09-02 - morte # failure in job https://hydra.nixos.org/build/233212193 at 2023-09-02 - mortred # failure in job https://hydra.nixos.org/build/233216766 at 2023-09-02 - - mosaico-lib # failure in job https://hydra.nixos.org/build/233253717 at 2023-09-02 - - motor-reflection # failure in job https://hydra.nixos.org/build/233247530 at 2023-09-02 - - mount # failure in job https://hydra.nixos.org/build/233220302 at 2023-09-02 - - movie-monad # failure in job https://hydra.nixos.org/build/233215402 at 2023-09-02 - - mpppc # failure in job https://hydra.nixos.org/build/233223008 at 2023-09-02 - - mpris # failure in job https://hydra.nixos.org/build/233259241 at 2023-09-02 - mptcp-pm # failure in job https://hydra.nixos.org/build/303231350 at 2025-07-27 - - mpvguihs # failure in job https://hydra.nixos.org/build/233196650 at 2023-09-02 - - mqtt # failure in job https://hydra.nixos.org/build/233202067 at 2023-09-02 - - mqtt-hs # failure in job https://hydra.nixos.org/build/233239399 at 2023-09-02 - - mrifk # failure in job https://hydra.nixos.org/build/233201109 at 2023-09-02 - - mrm # failure in job https://hydra.nixos.org/build/233191612 at 2023-09-02 - - ms # failure in job https://hydra.nixos.org/build/233237728 at 2023-09-02 - ms-auth # failure in job https://hydra.nixos.org/build/233193383 at 2023-09-02 - ms-azure-api # failure in job https://hydra.nixos.org/build/233202229 at 2023-09-02 - ms-graph-api # failure in job https://hydra.nixos.org/build/233219042 at 2023-09-02 - - msgpack-aeson # failure in job https://hydra.nixos.org/build/303231349 at 2025-07-27 - - msgpack-rpc # failure in job https://hydra.nixos.org/build/303231348 at 2025-07-27 - msgpack-types # failure in job https://hydra.nixos.org/build/233235351 at 2023-09-02 - - msh # failure in job https://hydra.nixos.org/build/233196466 at 2023-09-02 - - MTGBuilder # failure in job https://hydra.nixos.org/build/233227528 at 2023-09-02 - - mtl-c # failure in job https://hydra.nixos.org/build/233196798 at 2023-09-02 - - mtl-evil-instances # failure in job https://hydra.nixos.org/build/233239976 at 2023-09-02 - - mtl-extras # failure in job https://hydra.nixos.org/build/233199852 at 2023-09-02 - - mtl-tf # failure in job https://hydra.nixos.org/build/233254943 at 2023-09-02 - - mtl-unleashed # failure in job https://hydra.nixos.org/build/252714086 at 2024-03-16 - mtl-uplift # failure in job https://hydra.nixos.org/build/252739478 at 2024-03-16 - - mtlx # failure in job https://hydra.nixos.org/build/233221631 at 2023-09-02 - - mtp # failure in job https://hydra.nixos.org/build/233212895 at 2023-09-02 - - mtree # failure in job https://hydra.nixos.org/build/252722593 at 2024-03-16 - mtsl # failure in job https://hydra.nixos.org/build/233207653 at 2023-09-02 - mu-schema # failure in job https://hydra.nixos.org/build/233235916 at 2023-09-02 - MuCheck # failure in job https://hydra.nixos.org/build/233254207 at 2023-09-02 - - mud # failure in job https://hydra.nixos.org/build/233229445 at 2023-09-02 - - mudbath # failure in job https://hydra.nixos.org/build/233198648 at 2023-09-02 - - mulang # failure in job https://hydra.nixos.org/build/233211001 at 2023-09-02 - - multext-east-msd # failure in job https://hydra.nixos.org/build/233191007 at 2023-09-02 - multi-instance # failure in job https://hydra.nixos.org/build/233203186 at 2023-09-02 - - multiaddr # failure in job https://hydra.nixos.org/build/233223452 at 2023-09-02 - multiarg # failure in job https://hydra.nixos.org/build/233238633 at 2023-09-02 - MultiChor # failure in job https://hydra.nixos.org/build/295091050 at 2025-04-22 - multicurryable # failure in job https://hydra.nixos.org/build/252731222 at 2024-03-16 - multidir # failure in job https://hydra.nixos.org/build/295456419 at 2025-05-02 - - multihash # failure in job https://hydra.nixos.org/build/233203263 at 2023-09-02 - - multilinear # failure in job https://hydra.nixos.org/build/233260046 at 2023-09-02 - - multipass # failure in job https://hydra.nixos.org/build/233252587 at 2023-09-02 - - multipath # failure in job https://hydra.nixos.org/build/233248692 at 2023-09-02 - - multiplate # failure in job https://hydra.nixos.org/build/252739560 at 2024-03-16 - - multiplate-simplified # failure in job https://hydra.nixos.org/build/233241999 at 2023-09-02 - - multipool # failure in job https://hydra.nixos.org/build/233234384 at 2023-09-02 - - multirec # failure in job https://hydra.nixos.org/build/233242079 at 2023-09-02 - - multivariant # failure in job https://hydra.nixos.org/build/233254625 at 2023-09-02 + - multipool-postgresql-simple # previously transitively broken at 2025-09-08 - multiwalk # failure in job https://hydra.nixos.org/build/295095540 at 2025-04-22 - - Munkres # failure in job https://hydra.nixos.org/build/233237379 at 2023-09-02 - - muon # failure in job https://hydra.nixos.org/build/233238364 at 2023-09-02 - - murmur # failure in job https://hydra.nixos.org/build/233244309 at 2023-09-02 - - music-util # failure in job https://hydra.nixos.org/build/233234440 at 2023-09-02 + - Munkres # previously transitively broken at 2025-09-08 - musicScroll # failure in job https://hydra.nixos.org/build/233197933 at 2023-09-02 - - musicxml # failure in job https://hydra.nixos.org/build/233201763 at 2023-09-02 - - mustache-haskell # failure in job https://hydra.nixos.org/build/233235667 at 2023-09-02 - - mustache2hs # failure in job https://hydra.nixos.org/build/233229095 at 2023-09-02 - - mutable # failure in job https://hydra.nixos.org/build/233204639 at 2023-09-02 - mvar-lock # failure in job https://hydra.nixos.org/build/252735681 at 2024-03-16 - - mxnet # failure in job https://hydra.nixos.org/build/233212365 at 2023-09-02 - - mxnet-nnvm # failure in job https://hydra.nixos.org/build/233236073 at 2023-09-02 - - my-package-testing # failure in job https://hydra.nixos.org/build/233201843 at 2023-09-02 - my-test-docs # failure in job https://hydra.nixos.org/build/233191840 at 2023-09-02 - - myanimelist-export # failure in job https://hydra.nixos.org/build/233255510 at 2023-09-02 - - myo # failure in job https://hydra.nixos.org/build/233251998 at 2023-09-02 - - MyPrimes # failure in job https://hydra.nixos.org/build/233247934 at 2023-09-02 - - mysnapsession # failure in job https://hydra.nixos.org/build/252732102 at 2024-03-16 - - mysql-effect # failure in job https://hydra.nixos.org/build/233248718 at 2023-09-02 + - mysql-haskell-openssl # previously transitively broken at 2025-09-08 - mysql-pure # failure in job https://hydra.nixos.org/build/233250825 at 2023-09-02 - - mysql-simple-quasi # failure in job https://hydra.nixos.org/build/233214755 at 2023-09-02 - - mystem # failure in job https://hydra.nixos.org/build/233215180 at 2023-09-02 - - myxine-client # failure in job https://hydra.nixos.org/build/233236439 at 2023-09-02 - - mzv # failure in job https://hydra.nixos.org/build/233241826 at 2023-09-02 - - n-m # failure in job https://hydra.nixos.org/build/254311712 at 2024-03-31 - - n2o-protocols # failure in job https://hydra.nixos.org/build/233233132 at 2023-09-02 - - nagios-plugin-ekg # failure in job https://hydra.nixos.org/build/233203188 at 2023-09-02 - named-binary-tag # failure in job https://hydra.nixos.org/build/233225138 at 2023-09-02 - - named-formlet # failure in job https://hydra.nixos.org/build/252711265 at 2024-03-16 - - named-lock # failure in job https://hydra.nixos.org/build/233247307 at 2023-09-02 + - named-lock # previously transitively broken at 2025-09-08 - named-servant # failure in job https://hydra.nixos.org/build/233205979 at 2023-09-02 - - named-sop # failure in job https://hydra.nixos.org/build/233233523 at 2023-09-02 - - namelist # failure in job https://hydra.nixos.org/build/233216883 at 2023-09-02 - - nano-cryptr # failure in job https://hydra.nixos.org/build/233218831 at 2023-09-02 - - nano-hmac # failure in job https://hydra.nixos.org/build/233224756 at 2023-09-02 - - nano-md5 # failure in job https://hydra.nixos.org/build/233222265 at 2023-09-02 - - nanoAgda # failure in job https://hydra.nixos.org/build/233259294 at 2023-09-02 - - nanocurses # failure in job https://hydra.nixos.org/build/233215906 at 2023-09-02 - - nanomsg # failure in job https://hydra.nixos.org/build/233240904 at 2023-09-02 - - nanoparsec # failure in job https://hydra.nixos.org/build/233248843 at 2023-09-02 - nanopass # failure in job https://hydra.nixos.org/build/233230210 at 2023-09-02 - - NanoProlog # failure in job https://hydra.nixos.org/build/233244743 at 2023-09-02 - nanovg-simple # failure in job https://hydra.nixos.org/build/233257414 at 2023-09-02 - Naperian # failure in job https://hydra.nixos.org/build/233200372 at 2023-09-02 - - naperian # failure in job https://hydra.nixos.org/build/233233726 at 2023-09-02 - - naqsha # failure in job https://hydra.nixos.org/build/233256844 at 2023-09-02 - - narc # failure in job https://hydra.nixos.org/build/233215853 at 2023-09-02 - - nat-sized-numbers # failure in job https://hydra.nixos.org/build/233244238 at 2023-09-02 - - nationstates # failure in job https://hydra.nixos.org/build/233243640 at 2023-09-02 - - nats-client # failure in job https://hydra.nixos.org/build/233241313 at 2023-09-02 + - nat-sized-numbers # previously transitively broken at 2025-09-08 - natural # failure in job https://hydra.nixos.org/build/233232490 at 2023-09-02 - - NaturalLanguageAlphabets # failure in job https://hydra.nixos.org/build/245539294 at 2024-01-02 - - NaturalSort # failure in job https://hydra.nixos.org/build/233213239 at 2023-09-02 - - naver-translate # failure in job https://hydra.nixos.org/build/233225934 at 2023-09-02 - nbt # failure in job https://hydra.nixos.org/build/233253509 at 2023-09-02 - - ncurses # failure in job https://hydra.nixos.org/build/233238895 at 2023-09-02 - - ndjson-conduit # failure in job https://hydra.nixos.org/build/295095605 at 2025-04-22 - - neat # failure in job https://hydra.nixos.org/build/233203521 at 2023-09-02 - - needle # failure in job https://hydra.nixos.org/build/233192371 at 2023-09-02 - - neet # failure in job https://hydra.nixos.org/build/233235457 at 2023-09-02 - - nehe-tuts # failure in job https://hydra.nixos.org/build/233249347 at 2023-09-02 - - neil # failure in job https://hydra.nixos.org/build/233219708 at 2023-09-02 - - neither # failure in job https://hydra.nixos.org/build/233244974 at 2023-09-02 - neither-data # failure in job https://hydra.nixos.org/build/233201266 at 2023-09-02 - - neko-lib # failure in job https://hydra.nixos.org/build/233236797 at 2023-09-02 - - neko-obfs # failure in job https://hydra.nixos.org/build/233248732 at 2023-09-02 - nekos-best # failure in job https://hydra.nixos.org/build/233214327 at 2023-09-02 - - Neks # failure in job https://hydra.nixos.org/build/233238103 at 2023-09-02 - neptune-backend # failure in job https://hydra.nixos.org/build/233214329 at 2023-09-02 - nerd-font-icons # failure in job https://hydra.nixos.org/build/295456454 at 2025-05-02 - - nero # failure in job https://hydra.nixos.org/build/233216907 at 2023-09-02 - - nest # failure in job https://hydra.nixos.org/build/233224450 at 2023-09-02 - - nested-sequence # failure in job https://hydra.nixos.org/build/233221359 at 2023-09-02 - - NestedFunctor # failure in job https://hydra.nixos.org/build/233253656 at 2023-09-02 - - nestedmap # failure in job https://hydra.nixos.org/build/233219375 at 2023-09-02 - net-spider # failure in job https://hydra.nixos.org/build/295095612 at 2025-04-22 - - netclock # failure in job https://hydra.nixos.org/build/233207456 at 2023-09-02 - - netease-fm # failure in job https://hydra.nixos.org/build/233210043 at 2023-09-02 - - netrium # failure in job https://hydra.nixos.org/build/233258377 at 2023-09-02 + - netclock # previously transitively broken at 2025-09-08 - NetSNMP # failure in job https://hydra.nixos.org/build/233598256 at 2023-09-02 - - netspec # failure in job https://hydra.nixos.org/build/233251049 at 2023-09-02 - netw # failure in job https://hydra.nixos.org/build/253678214 at 2024-03-31 - - netwire-input-javascript # failure in job https://hydra.nixos.org/build/233245020 at 2023-09-02 - - netwire-vinylglfw-examples # failure in job https://hydra.nixos.org/build/233236274 at 2023-09-02 - - network-address # failure in job https://hydra.nixos.org/build/233248618 at 2023-09-02 - - network-api-support # failure in job https://hydra.nixos.org/build/233257275 at 2023-09-02 - - network-attoparsec # failure in job https://hydra.nixos.org/build/233255528 at 2023-09-02 - - network-bitcoin # failure in job https://hydra.nixos.org/build/233191198 at 2023-09-02 - - network-builder # failure in job https://hydra.nixos.org/build/233235184 at 2023-09-02 - - network-bytestring # failure in job https://hydra.nixos.org/build/233201616 at 2023-09-02 - network-carbon # failure in job https://hydra.nixos.org/build/233225276 at 2023-09-02 - - network-dbus # failure in job https://hydra.nixos.org/build/233212385 at 2023-09-02 - - network-manager-tui # failure in job https://hydra.nixos.org/build/233247972 at 2023-09-02 - - network-messagepack-rpc-websocket # timeout - - network-metrics # failure in job https://hydra.nixos.org/build/233259963 at 2023-09-02 - - network-msg # failure in job https://hydra.nixos.org/build/233236413 at 2023-09-02 - - network-msgpack-rpc # failure in job https://hydra.nixos.org/build/233222467 at 2023-09-02 - network-packet-linux # failure in job https://hydra.nixos.org/build/233235052 at 2023-09-02 - - network-server # failure in job https://hydra.nixos.org/build/233250808 at 2023-09-02 - - network-service # failure in job https://hydra.nixos.org/build/233193647 at 2023-09-02 - - network-simple-sockaddr # failure in job https://hydra.nixos.org/build/233204221 at 2023-09-02 - - network-socket-options # failure in job https://hydra.nixos.org/build/233252466 at 2023-09-02 - - network-transport-amqp # failure in job https://hydra.nixos.org/build/233224582 at 2023-09-02 - - network-uri-json # failure in job https://hydra.nixos.org/build/295095653 at 2025-04-22 - - network-voicetext # failure in job https://hydra.nixos.org/build/233204992 at 2023-09-02 - - network-wai-router # failure in job https://hydra.nixos.org/build/233219167 at 2023-09-02 - - networked-game # failure in job https://hydra.nixos.org/build/233239577 at 2023-09-02 - - neural # failure in job https://hydra.nixos.org/build/295095743 at 2025-04-22 - - neural-network-blashs # failure in job https://hydra.nixos.org/build/233244174 at 2023-09-02 - - neural-network-hmatrix # failure in job https://hydra.nixos.org/build/233237535 at 2023-09-02 - newbase60 # failure in job https://hydra.nixos.org/build/233241443 at 2023-09-02 - - newhope # failure in job https://hydra.nixos.org/build/233221942 at 2023-09-02 - newline # failure in job https://hydra.nixos.org/build/233205462 at 2023-09-02 - - newports # failure in job https://hydra.nixos.org/build/233234468 at 2023-09-02 - - newsletter # failure in job https://hydra.nixos.org/build/233252800 at 2023-09-02 - - newt # failure in job https://hydra.nixos.org/build/233227870 at 2023-09-02 - - newtype-deriving # failure in job https://hydra.nixos.org/build/233209383 at 2023-09-02 - - newtype-th # failure in job https://hydra.nixos.org/build/233203461 at 2023-09-02 - - next-ref # failure in job https://hydra.nixos.org/build/233230105 at 2023-09-02 - - nextstep-plist # failure in job https://hydra.nixos.org/build/233227343 at 2023-09-02 - - NGrams # failure in job https://hydra.nixos.org/build/233230426 at 2023-09-02 - - ngrams-loader # failure in job https://hydra.nixos.org/build/233211319 at 2023-09-02 + - newsynth # previously transitively broken at 2025-09-08 - ngx-export-log # failure in job https://hydra.nixos.org/build/233193133 at 2023-09-02 - - niagra # failure in job https://hydra.nixos.org/build/233234016 at 2023-09-02 - - nibblestring # failure in job https://hydra.nixos.org/build/233224888 at 2023-09-02 - - nice-html # failure in job https://hydra.nixos.org/build/233193644 at 2023-09-02 - - nicovideo-translator # failure in job https://hydra.nixos.org/build/233225618 at 2023-09-02 - - nist-beacon # failure in job https://hydra.nixos.org/build/233206376 at 2023-09-02 - - nitro # failure in job https://hydra.nixos.org/build/233229909 at 2023-09-02 - - nix-delegate # failure in job https://hydra.nixos.org/build/233232891 at 2023-09-02 - - nix-eval # failure in job https://hydra.nixos.org/build/233256388 at 2023-09-02 - nix-freeze-tree # failure in job https://hydra.nixos.org/build/233234834 at 2023-09-02 - - nix-tools # failure in job https://hydra.nixos.org/build/233662959 at 2023-09-02 - - nixdu # failure in job https://hydra.nixos.org/build/233257712 at 2023-09-02 - - nixfromnpm # failure in job https://hydra.nixos.org/build/233239168 at 2023-09-02 - nixpkgs-update # failure in job https://hydra.nixos.org/build/233196708 at 2023-09-02 - nkeys # failure in job https://hydra.nixos.org/build/255693929 at 2024-04-16 - - nlp-scores # failure in job https://hydra.nixos.org/build/233232770 at 2023-09-02 - - nm # failure in job https://hydra.nixos.org/build/233258727 at 2023-09-02 - - NMap # failure in job https://hydra.nixos.org/build/233246148 at 2023-09-02 - - nme # failure in job https://hydra.nixos.org/build/233224069 at 2023-09-02 - - nn # failure in job https://hydra.nixos.org/build/233236534 at 2023-09-02 - - nntp # failure in job https://hydra.nixos.org/build/233210197 at 2023-09-02 - - no-role-annots # failure in job https://hydra.nixos.org/build/233229589 at 2023-09-02 - - noether # failure in job https://hydra.nixos.org/build/233193462 at 2023-09-02 - nofib-analyse # failure in job https://hydra.nixos.org/build/233241646 at 2023-09-02 - - nofib-analyze # failure in job https://hydra.nixos.org/build/233203306 at 2023-09-02 - - noise # failure in job https://hydra.nixos.org/build/233190885 at 2023-09-02 - - noli # failure in job https://hydra.nixos.org/build/233208659 at 2023-09-02 - - non-empty-containers # failure in job https://hydra.nixos.org/build/233201102 at 2023-09-02 - - non-empty-zipper # failure in job https://hydra.nixos.org/build/233244341 at 2023-09-02 - - NonEmpty # failure in job https://hydra.nixos.org/build/233244009 at 2023-09-02 - - nonempty-lift # failure in job https://hydra.nixos.org/build/233237065 at 2023-09-02 - - nonemptymap # failure in job https://hydra.nixos.org/build/252711949 at 2024-03-16 - - nonlinear-optimization # failure in job https://hydra.nixos.org/build/233204674 at 2023-09-02 - - noodle # failure in job https://hydra.nixos.org/build/233195125 at 2023-09-02 + - nonlinear-optimization-ad # previously transitively broken at 2025-09-08 + - nonlinear-optimization-backprop # previously transitively broken at 2025-09-08 - normalization-insensitive # failure in job https://hydra.nixos.org/build/233239612 at 2023-09-02 - not-prelude # failure in job https://hydra.nixos.org/build/233248453 at 2023-09-02 - - notcpp # failure in job https://hydra.nixos.org/build/233216543 at 2023-09-02 - notifications-tray-icon # failure in job https://hydra.nixos.org/build/267969113 at 2024-07-31 - - notmuch-haskell # failure in job https://hydra.nixos.org/build/233332618 at 2023-09-02 - - NoTrace # failure in job https://hydra.nixos.org/build/233229305 at 2023-09-02 - - notzero # failure in job https://hydra.nixos.org/build/233216133 at 2023-09-02 - - np-linear # failure in job https://hydra.nixos.org/build/233257696 at 2023-09-02 - - nptools # failure in job https://hydra.nixos.org/build/233234905 at 2023-09-02 - - ntha # failure in job https://hydra.nixos.org/build/252730602 at 2024-03-16 - - ntp-control # failure in job https://hydra.nixos.org/build/233231061 at 2023-09-02 - - ntrip-client # failure in job https://hydra.nixos.org/build/233230605 at 2023-09-02 - nuha # failure in job https://hydra.nixos.org/build/233215103 at 2023-09-02 - - null-canvas # failure in job https://hydra.nixos.org/build/233201814 at 2023-09-02 - - nullary # failure in job https://hydra.nixos.org/build/233214073 at 2023-09-02 - - nullpipe # failure in job https://hydra.nixos.org/build/233245129 at 2023-09-02 - number-wall # failure in job https://hydra.nixos.org/build/233197764 at 2023-09-02 - - NumberSieves # failure in job https://hydra.nixos.org/build/233255007 at 2023-09-02 - - NumberTheory # failure in job https://hydra.nixos.org/build/233215395 at 2023-09-02 - numeric-logarithms # failure in job https://hydra.nixos.org/build/252727978 at 2024-03-16 + - numeric-optimization # previously transitively broken at 2025-09-08 + - numeric-optimization-ad # previously transitively broken at 2025-09-08 - numeric-optimization-backprop # failure in job https://hydra.nixos.org/build/252733863 at 2024-03-16 - - numeric-qq # failure in job https://hydra.nixos.org/build/233207127 at 2023-09-02 - - numeric-ranges # failure in job https://hydra.nixos.org/build/233191878 at 2023-09-02 + - numeric-qq # previously transitively broken at 2025-09-08 - numhask-free # failure in job https://hydra.nixos.org/build/233214800 at 2023-09-02 - - numhask-histogram # failure in job https://hydra.nixos.org/build/295095746 at 2025-04-22 - - numhask-prelude # failure in job https://hydra.nixos.org/build/233248768 at 2023-09-02 - - numtype # failure in job https://hydra.nixos.org/build/233219211 at 2023-09-02 - - numtype-tf # failure in job https://hydra.nixos.org/build/233243483 at 2023-09-02 - - nurbs # failure in job https://hydra.nixos.org/build/295095756 at 2025-04-22 - - Nutri # failure in job https://hydra.nixos.org/build/233244244 at 2023-09-02 - - NXT # failure in job https://hydra.nixos.org/build/265955670 at 2024-07-14 - - NXTDSL # failure in job https://hydra.nixos.org/build/233193483 at 2023-09-02 + - numtype # previously transitively broken at 2025-09-08 - nyan-interpolation-core # failure in job https://hydra.nixos.org/build/295095752 at 2025-04-22 - - nylas # failure in job https://hydra.nixos.org/build/233193540 at 2023-09-02 - oalg-base # failure in job https://hydra.nixos.org/build/295095765 at 2025-04-22 - - oanda-rest-api # failure in job https://hydra.nixos.org/build/233250190 at 2023-09-02 - - oasis-xrd # failure in job https://hydra.nixos.org/build/233199264 at 2023-09-02 + - oath # previously transitively broken at 2025-09-08 - oauthenticated # failure in job https://hydra.nixos.org/build/233257682 at 2023-09-02 - ob # failure in job https://hydra.nixos.org/build/295095755 at 2025-04-22 - - obd # failure in job https://hydra.nixos.org/build/265955660 at 2024-07-14 - - Object # failure in job https://hydra.nixos.org/build/233191909 at 2023-09-02 - - ObjectIO # failure in job https://hydra.nixos.org/build/233242132 at 2023-09-02 - - ocaml-export # failure in job https://hydra.nixos.org/build/233218217 at 2023-09-02 - - Octree # failure in job https://hydra.nixos.org/build/233228066 at 2023-09-02 - OddWord # failure in job https://hydra.nixos.org/build/233192922 at 2023-09-02 - - oden-go-packages # failure in job https://hydra.nixos.org/build/233200117 at 2023-09-02 - oeis2 # failure in job https://hydra.nixos.org/build/233199597 at 2023-09-02 - OGDF # failure in job https://hydra.nixos.org/build/233200888 at 2023-09-02 - - OGL # failure in job https://hydra.nixos.org/build/233255135 at 2023-09-02 - ogma-language-cocospec # failure in job https://hydra.nixos.org/build/233235359 at 2023-09-02 - - ogmarkup # failure in job https://hydra.nixos.org/build/233229980 at 2023-09-02 - ohhecs # failure in job https://hydra.nixos.org/build/267987310 at 2024-07-31 - - ohloh-hs # failure in job https://hydra.nixos.org/build/233228177 at 2023-09-02 - - oi # failure in job https://hydra.nixos.org/build/233190838 at 2023-09-02 - okapi # failure in job https://hydra.nixos.org/build/233193822 at 2023-09-02 - - old-version # failure in job https://hydra.nixos.org/build/233198538 at 2023-09-02 - ollama-haskell # failure in job https://hydra.nixos.org/build/276371507 at 2024-11-06 - - om-actor # failure in job https://hydra.nixos.org/build/233231027 at 2023-09-02 - om-http # failure in job https://hydra.nixos.org/build/233245328 at 2023-09-02 - - om-http-logging # failure in job https://hydra.nixos.org/build/233218069 at 2023-09-02 - om-plugin-imports # failure in job https://hydra.nixos.org/build/295456635 at 2025-05-02 - - omaketex # failure in job https://hydra.nixos.org/build/233202599 at 2023-09-02 - - ombra # failure in job https://hydra.nixos.org/build/233192387 at 2023-09-02 - - Omega # failure in job https://hydra.nixos.org/build/233226089 at 2023-09-02 - - omega # failure in job https://hydra.nixos.org/build/233241129 at 2023-09-02 - - omnifmt # failure in job https://hydra.nixos.org/build/233219763 at 2023-09-02 - - on-a-horse # failure in job https://hydra.nixos.org/build/233199193 at 2023-09-02 - - on-demand-ssh-tunnel # failure in job https://hydra.nixos.org/build/233197181 at 2023-09-02 + - on-demand-ssh-tunnel # previously transitively broken at 2025-09-08 - ONC-RPC # failure in job https://hydra.nixos.org/build/233225207 at 2023-09-02 - - oneormore # failure in job https://hydra.nixos.org/build/233242475 at 2023-09-02 - - online # failure in job https://hydra.nixos.org/build/233195360 at 2023-09-02 - - onpartitions # failure in job https://hydra.nixos.org/build/233226163 at 2023-09-02 - - onu-course # failure in job https://hydra.nixos.org/build/233233153 at 2023-09-02 - oops # failure in job https://hydra.nixos.org/build/252738443 at 2024-03-16 - - op # failure in job https://hydra.nixos.org/build/233201812 at 2023-09-02 - op2 # failure in job https://hydra.nixos.org/build/255683846 at 2024-04-16 - - opaleye-classy # failure in job https://hydra.nixos.org/build/233214120 at 2023-09-02 - opaleye-sqlite # failure in job https://hydra.nixos.org/build/233191474 at 2023-09-02 - opaleye-textsearch # failure in job https://hydra.nixos.org/build/259602432 at 2024-05-15 - opaleye-trans # failure in job https://hydra.nixos.org/build/233210536 at 2023-09-02 - - open-adt # failure in job https://hydra.nixos.org/build/233201191 at 2023-09-02 - - open-haddock # failure in job https://hydra.nixos.org/build/233205112 at 2023-09-02 - - open-pandoc # failure in job https://hydra.nixos.org/build/233247973 at 2023-09-02 - - open-signals # failure in job https://hydra.nixos.org/build/233207409 at 2023-09-02 - - OpenAFP # failure in job https://hydra.nixos.org/build/233249295 at 2023-09-02 - openai # failure in job https://hydra.nixos.org/build/295095863 at 2025-04-22 - openai-servant-gen # failure in job https://hydra.nixos.org/build/295095800 at 2025-04-22 - - openapi-petstore # failure in job https://hydra.nixos.org/build/233221722 at 2023-09-02 - - openapi-typed # failure in job https://hydra.nixos.org/build/233226830 at 2023-09-02 - opencc # failure in job https://hydra.nixos.org/build/233211902 at 2023-09-02 - - opench-meteo # failure in job https://hydra.nixos.org/build/233212476 at 2023-09-02 - - OpenCL # failure in job https://hydra.nixos.org/build/233216571 at 2023-09-02 - - OpenCLRaw # failure in job https://hydra.nixos.org/build/233247133 at 2023-09-02 - - OpenCLWrappers # failure in job https://hydra.nixos.org/build/233222391 at 2023-09-02 - - opencog-atomspace # failure in job https://hydra.nixos.org/build/233237785 at 2023-09-02 - - opencv # failure in job https://hydra.nixos.org/build/252717564 at 2024-03-16 - - opencv-extra # broken eval by missing system dependency - - opencv-raw # failure in job https://hydra.nixos.org/build/233211286 at 2023-09-02 - - opendatatable # failure in job https://hydra.nixos.org/build/233254960 at 2023-09-02 - opendht-hs # failure in job https://hydra.nixos.org/build/295095820 at 2025-04-22 - - openexchangerates # failure in job https://hydra.nixos.org/build/233203238 at 2023-09-02 - - openflow # failure in job https://hydra.nixos.org/build/233244058 at 2023-09-02 - - opengles # failure in job https://hydra.nixos.org/build/233214966 at 2023-09-02 - - OpenGLRaw21 # failure in job https://hydra.nixos.org/build/233229407 at 2023-09-02 - - openid # https://github.com/elliottt/hsopenid/issues/15 + - openexchangerates # previously transitively broken at 2025-09-08 - openid-connect # failure in job https://hydra.nixos.org/build/233196765 at 2023-09-02 - - openpgp # failure in job https://hydra.nixos.org/build/233244438 at 2023-09-02 - - opensoundcontrol-ht # failure in job https://hydra.nixos.org/build/233253386 at 2023-09-02 - - openssh-protocol # failure in job https://hydra.nixos.org/build/233196013 at 2023-09-02 + - openpgp # previously transitively broken at 2025-09-08 - opentelemetry-extra # failure in job https://hydra.nixos.org/build/233194254 at 2023-09-02 - - opentelemetry-http-client # failure in job https://hydra.nixos.org/build/233221983 at 2023-09-02 - - opentheory-char # failure in job https://hydra.nixos.org/build/233222347 at 2023-09-02 - - opentype # failure in job https://hydra.nixos.org/build/233213443 at 2023-09-02 - - OpenVGRaw # failure in job https://hydra.nixos.org/build/233254457 at 2023-09-02 - - Operads # failure in job https://hydra.nixos.org/build/233233055 at 2023-09-02 - - operate-do # failure in job https://hydra.nixos.org/build/233257129 at 2023-09-02 - - operational-class # failure in job https://hydra.nixos.org/build/252715658 at 2024-03-16 - - operational-extra # failure in job https://hydra.nixos.org/build/233232454 at 2023-09-02 - oplang # failure in job https://hydra.nixos.org/build/233208221 at 2023-09-02 - - opn # failure in job https://hydra.nixos.org/build/233198628 at 2023-09-02 - opt-env-conf-test # failure in job https://hydra.nixos.org/build/295095834 at 2025-04-22 - optics-operators # failure in job https://hydra.nixos.org/build/295095841 at 2025-04-22 - optima-for-hasql # failure in job https://hydra.nixos.org/build/295095870 at 2025-04-22 - - optimization # failure in job https://hydra.nixos.org/build/233191078 at 2023-09-02 - - optional # failure in job https://hydra.nixos.org/build/233241818 at 2023-09-02 - - options-time # failure in job https://hydra.nixos.org/build/233194289 at 2023-09-02 - - optparse-applicative-simple # failure in job https://hydra.nixos.org/build/233236802 at 2023-09-02 - optparse-declarative # failure in job https://hydra.nixos.org/build/252718969 at 2024-03-16 - - optparse-helper # failure in job https://hydra.nixos.org/build/233248522 at 2023-09-02 - optstream # failure in job https://hydra.nixos.org/build/233200326 at 2023-09-02 - opus # failure in job https://hydra.nixos.org/build/295095855 at 2025-04-22 - - orc # failure in job https://hydra.nixos.org/build/233216448 at 2023-09-02 - - orchestrate # failure in job https://hydra.nixos.org/build/233228950 at 2023-09-02 - - OrchestrateDB # failure in job https://hydra.nixos.org/build/233200562 at 2023-09-02 - - order-statistics # failure in job https://hydra.nixos.org/build/233255710 at 2023-09-02 + - OrchestrateDB # previously transitively broken at 2025-09-08 - ordered # failure in job https://hydra.nixos.org/build/233226269 at 2023-09-02 - - Ordinary # failure in job https://hydra.nixos.org/build/233240078 at 2023-09-02 - - ordrea # failure in job https://hydra.nixos.org/build/233192984 at 2023-09-02 - - oref # failure in job https://hydra.nixos.org/build/233239331 at 2023-09-02 - org-mode # failure in job https://hydra.nixos.org/build/295095864 at 2025-04-22 - org-parser # failure in job https://hydra.nixos.org/build/233223593 at 2023-09-02 - - organize-imports # failure in job https://hydra.nixos.org/build/233217876 at 2023-09-02 - - orgmode # failure in job https://hydra.nixos.org/build/233232348 at 2023-09-02 - - orgmode-parse # failure in job https://hydra.nixos.org/build/233206463 at 2023-09-02 - - origami # failure in job https://hydra.nixos.org/build/233254357 at 2023-09-02 - - orion-hs # failure in job https://hydra.nixos.org/build/233210586 at 2023-09-02 - - orizentic # failure in job https://hydra.nixos.org/build/233197904 at 2023-09-02 - - OrPatterns # failure in job https://hydra.nixos.org/build/233191538 at 2023-09-02 + - orgstat # previously transitively broken at 2025-09-08 - orthotope-hmatrix # failure in job https://hydra.nixos.org/build/252726654 at 2024-03-16 - orville-postgresql # failure in job https://hydra.nixos.org/build/241433010 at 2023-11-19 - ory-hydra-client # failure in job https://hydra.nixos.org/build/233197456 at 2023-09-02 - ory-kratos # failure in job https://hydra.nixos.org/build/233191249 at 2023-09-02 - - osc # failure in job https://hydra.nixos.org/build/233250062 at 2023-09-02 - - oscpacking # failure in job https://hydra.nixos.org/build/234464653 at 2023-09-13 - - oset # failure in job https://hydra.nixos.org/build/233230763 at 2023-09-02 - - Oslo-Vectize # failure in job https://hydra.nixos.org/build/233252956 at 2023-09-02 - - OSM # failure in job https://hydra.nixos.org/build/233231098 at 2023-09-02 - - osm-conduit # failure in job https://hydra.nixos.org/build/233259898 at 2023-09-02 - - oso2pdf # failure in job https://hydra.nixos.org/build/233235234 at 2023-09-02 - - osx-ar # failure in job https://hydra.nixos.org/build/233194090 at 2023-09-02 - - ot # failure in job https://hydra.nixos.org/build/233244553 at 2023-09-02 - - OTP # failure in job https://hydra.nixos.org/build/233215664 at 2023-09-02 - - ottparse-pretty # failure in job https://hydra.nixos.org/build/233217185 at 2023-09-02 + - OSM # previously transitively broken at 2025-09-08 - overloaded # failure in job https://hydra.nixos.org/build/233239086 at 2023-09-02 - - overloaded-records # failure in job https://hydra.nixos.org/build/233235922 at 2023-09-02 - - overture # failure in job https://hydra.nixos.org/build/233245959 at 2023-09-02 - owoify-hs # failure in job https://hydra.nixos.org/build/233213422 at 2023-09-02 - ox-arrays # failure in job https://hydra.nixos.org/build/302805170 at 2025-07-27 - pa-field-parser # failure in job https://hydra.nixos.org/build/295095885 at 2025-04-22 - - pack # failure in job https://hydra.nixos.org/build/233243562 at 2023-09-02 - package-description-remote # failure in job https://hydra.nixos.org/build/233221358 at 2023-09-02 - - package-vt # failure in job https://hydra.nixos.org/build/233225831 at 2023-09-02 - - packdeps # failure in job https://hydra.nixos.org/build/233216607 at 2023-09-02 - - packed # failure in job https://hydra.nixos.org/build/233231889 at 2023-09-02 - packed-data # failure in job https://hydra.nixos.org/build/302805203 at 2025-07-27 - - packed-dawg # failure in job https://hydra.nixos.org/build/233207332 at 2023-09-02 - - packed-multikey-map # failure in job https://hydra.nixos.org/build/233234157 at 2023-09-02 - - packedstring # failure in job https://hydra.nixos.org/build/233240511 at 2023-09-02 - - packer-messagepack # failure in job https://hydra.nixos.org/build/233213453 at 2023-09-02 - - packman # failure in job https://hydra.nixos.org/build/233193792 at 2023-09-02 - packstream # failure in job https://hydra.nixos.org/build/233229259 at 2023-09-02 - - packunused # failure in job https://hydra.nixos.org/build/233252566 at 2023-09-02 - - pacman-memcache # failure in job https://hydra.nixos.org/build/233194833 at 2023-09-02 - padic # failure in job https://hydra.nixos.org/build/233244747 at 2023-09-02 - - pads-haskell # failure in job https://hydra.nixos.org/build/233224030 at 2023-09-02 - - pagarme # failure in job https://hydra.nixos.org/build/233201914 at 2023-09-02 - - pagerduty # failure in job https://hydra.nixos.org/build/245788462 at 2024-01-07 - - pagure-hook-receiver # failure in job https://hydra.nixos.org/build/233245894 at 2023-09-02 - pan-os-syslog # failure in job https://hydra.nixos.org/build/233244422 at 2023-09-02 - - pandoc-citeproc # failure in job https://hydra.nixos.org/build/233198462 at 2023-09-02 - pandoc-columns # failure in job https://hydra.nixos.org/build/233234538 at 2023-09-02 - pandoc-csv2table # failure in job https://hydra.nixos.org/build/233229925 at 2023-09-02 - - pandoc-emphasize-code # failure in job https://hydra.nixos.org/build/252733347 at 2024-03-16 - - pandoc-filter-graphviz # failure in job https://hydra.nixos.org/build/233233372 at 2023-09-02 - pandoc-filter-indent # failure in job https://hydra.nixos.org/build/233235439 at 2023-09-02 - - pandoc-include # failure in job https://hydra.nixos.org/build/233199152 at 2023-09-02 - - pandoc-include-code # failure in job https://hydra.nixos.org/build/252710408 at 2024-03-16 - pandoc-include-plus # failure in job https://hydra.nixos.org/build/233198059 at 2023-09-02 - pandoc-lens # failure in job https://hydra.nixos.org/build/233251239 at 2023-09-02 - pandoc-linear-table # failure in job https://hydra.nixos.org/build/233254813 at 2023-09-02 - pandoc-logic-proof # failure in job https://hydra.nixos.org/build/233223409 at 2023-09-02 - - pandoc-markdown-ghci-filter # failure in job https://hydra.nixos.org/build/233213731 at 2023-09-02 - - pandoc-placetable # failure in job https://hydra.nixos.org/build/233243163 at 2023-09-02 - pandoc-plantuml-diagrams # failure in job https://hydra.nixos.org/build/233221778 at 2023-09-02 - - pandoc-pyplot # failure in job https://hydra.nixos.org/build/233248205 at 2023-09-02 - pandoc-query # failure in job https://hydra.nixos.org/build/252730669 at 2024-03-16 - pandoc-select-code # failure in job https://hydra.nixos.org/build/233238415 at 2023-09-02 - pandoc-symreg # failure in job https://hydra.nixos.org/build/252726624 at 2024-03-16 - - pandoc-unlit # failure in job https://hydra.nixos.org/build/233219811 at 2023-09-02 - - pandoc-utils # failure in job https://hydra.nixos.org/build/233203436 at 2023-09-02 - - PandocAgda # failure in job https://hydra.nixos.org/build/233332745 at 2023-09-02 - pandocz # failure in job https://hydra.nixos.org/build/269679598 at 2024-08-19 - pandora # failure in job https://hydra.nixos.org/build/233211349 at 2023-09-02 - - pang-a-lambda # failure in job https://hydra.nixos.org/build/233202706 at 2023-09-02 - - pangraph # failure in job https://hydra.nixos.org/build/233242559 at 2023-09-02 - - panpipe # failure in job https://hydra.nixos.org/build/233257048 at 2023-09-02 - - pansite # failure in job https://hydra.nixos.org/build/233245941 at 2023-09-02 - - pantry-tmp # failure in job https://hydra.nixos.org/build/233662928 at 2023-09-02 - - papa-base-export # failure in job https://hydra.nixos.org/build/233251046 at 2023-09-02 - - papa-include # failure in job https://hydra.nixos.org/build/233226603 at 2023-09-02 - - papa-lens-export # failure in job https://hydra.nixos.org/build/233228582 at 2023-09-02 - - papa-lens-implement # failure in job https://hydra.nixos.org/build/233192797 at 2023-09-02 - - papa-prelude # failure in job https://hydra.nixos.org/build/233256276 at 2023-09-02 - - papa-prelude-core # failure in job https://hydra.nixos.org/build/233212274 at 2023-09-02 - - papa-prelude-lens # failure in job https://hydra.nixos.org/build/233213147 at 2023-09-02 - - papa-prelude-semigroupoids # failure in job https://hydra.nixos.org/build/233250360 at 2023-09-02 - - papa-prelude-semigroups # failure in job https://hydra.nixos.org/build/233199275 at 2023-09-02 - - papa-semigroupoids-export # failure in job https://hydra.nixos.org/build/252729218 at 2024-03-16 - - papa-semigroupoids-implement # failure in job https://hydra.nixos.org/build/233234835 at 2023-09-02 - - paphragen # failure in job https://hydra.nixos.org/build/233206378 at 2023-09-02 - - papillon # failure in job https://hydra.nixos.org/build/233195439 at 2023-09-02 - - pappy # failure in job https://hydra.nixos.org/build/233213934 at 2023-09-02 - - paprika # failure in job https://hydra.nixos.org/build/295095926 at 2025-04-22 - - paragon # failure in job https://hydra.nixos.org/build/233205056 at 2023-09-02 - - Parallel-Arrows-Definition # failure in job https://hydra.nixos.org/build/233234042 at 2023-09-02 - - parallel-tasks # failure in job https://hydra.nixos.org/build/233232488 at 2023-09-02 - - parameterized-data # failure in job https://hydra.nixos.org/build/233250720 at 2023-09-02 - - paranoia # failure in job https://hydra.nixos.org/build/233241355 at 2023-09-02 - - parco # failure in job https://hydra.nixos.org/build/233248490 at 2023-09-02 - - parcom-lib # failure in job https://hydra.nixos.org/build/233222095 at 2023-09-02 - - pareto # failure in job https://hydra.nixos.org/build/233216417 at 2023-09-02 - - paripari # failure in job https://hydra.nixos.org/build/233234391 at 2023-09-02 + - papa-implement # previously transitively broken at 2025-09-08 + - papa-lens # previously transitively broken at 2025-09-08 + - paprika # previously transitively broken at 2025-09-08 + - paranoia # previously transitively broken at 2025-09-08 - parochial # failure in job https://hydra.nixos.org/build/233239964 at 2023-09-02 - - PArrows # failure in job https://hydra.nixos.org/build/233232332 at 2023-09-02 - - Parry # failure in job https://hydra.nixos.org/build/233230444 at 2023-09-02 - parse # failure in job https://hydra.nixos.org/build/233246780 at 2023-09-02 - - parse-gcstats # failure in job https://hydra.nixos.org/build/233241500 at 2023-09-02 - - parsec-extra # failure in job https://hydra.nixos.org/build/252728153 at 2024-03-16 - parsec-free # failure in job https://hydra.nixos.org/build/252735408 at 2024-03-16 - - parsec-parsers # failure in job https://hydra.nixos.org/build/233219781 at 2023-09-02 - - parsec-pratt # failure in job https://hydra.nixos.org/build/233194863 at 2023-09-02 - - parsec2 # failure in job https://hydra.nixos.org/build/233225643 at 2023-09-02 - - parsec3 # failure in job https://hydra.nixos.org/build/233221004 at 2023-09-02 - - parseerror-eq # failure in job https://hydra.nixos.org/build/233250555 at 2023-09-02 - - parsely # failure in job https://hydra.nixos.org/build/233205027 at 2023-09-02 - parser-combinators-tests # failure in job https://hydra.nixos.org/build/233259610 at 2023-09-02 - - parser-helper # failure in job https://hydra.nixos.org/build/233198774 at 2023-09-02 - parser-unbiased-choice-monad-embedding # failure in job https://hydra.nixos.org/build/233258179 at 2023-09-02 - - parser241 # failure in job https://hydra.nixos.org/build/233238792 at 2023-09-02 - - parsergen # failure in job https://hydra.nixos.org/build/233197332 at 2023-09-02 - parsers-megaparsec # failure in job https://hydra.nixos.org/build/233234736 at 2023-09-02 - - parsimony # failure in job https://hydra.nixos.org/build/233230339 at 2023-09-02 - - parsix # failure in job https://hydra.nixos.org/build/233250899 at 2023-09-02 - parsley-core # failure in job https://hydra.nixos.org/build/233240217 at 2023-09-02 - parsnip # failure in job https://hydra.nixos.org/build/233229093 at 2023-09-02 - - partial-lens # failure in job https://hydra.nixos.org/build/233234761 at 2023-09-02 - - partial-records # failure in job https://hydra.nixos.org/build/233205143 at 2023-09-02 - partial-semigroup # failure in job https://hydra.nixos.org/build/295096015 at 2025-04-22 - partial-semigroup-hedgehog # failure in job https://hydra.nixos.org/build/252731350 at 2024-03-16 - - partly # failure in job https://hydra.nixos.org/build/233229003 at 2023-09-02 - paseto # failure in job https://hydra.nixos.org/build/275145626 at 2024-10-21 - - passage # failure in job https://hydra.nixos.org/build/233192945 at 2023-09-02 - passman # failure in job https://hydra.nixos.org/build/233234939 at 2023-09-02 - - passman-core # failure in job https://hydra.nixos.org/build/233217997 at 2023-09-02 - - PasswordGenerator # failure in job https://hydra.nixos.org/build/233242634 at 2023-09-02 - - passwords # failure in job https://hydra.nixos.org/build/233234987 at 2023-09-02 - - pasta # failure in job https://hydra.nixos.org/build/233216549 at 2023-09-02 - pasta-curves # failure in job https://hydra.nixos.org/build/233196512 at 2023-09-02 - - pastis # failure in job https://hydra.nixos.org/build/233218498 at 2023-09-02 - - pasty # failure in job https://hydra.nixos.org/build/233251812 at 2023-09-02 - - patches-vector # failure in job https://hydra.nixos.org/build/233244862 at 2023-09-02 - path-formatting # failure in job https://hydra.nixos.org/build/233199358 at 2023-09-02 - path-sing # failure in job https://hydra.nixos.org/build/237234354 at 2023-10-21 - path-text-utf8 # failure in job https://hydra.nixos.org/build/295095981 at 2025-04-22 - - Pathfinder # failure in job https://hydra.nixos.org/build/233236573 at 2023-09-02 - paths # failure in job https://hydra.nixos.org/build/252731256 at 2024-03-16 - - PathTree # failure in job https://hydra.nixos.org/build/233216203 at 2023-09-02 - - patronscraper # failure in job https://hydra.nixos.org/build/233258571 at 2023-09-02 - - pattern-trie # failure in job https://hydra.nixos.org/build/233237252 at 2023-09-02 + - patronscraper # previously transitively broken at 2025-09-08 + - pattern-trie # previously transitively broken at 2025-09-08 - paynow-zw # failure in job https://hydra.nixos.org/build/233221916 at 2023-09-02 - - paypal-adaptive-hoops # failure in job https://hydra.nixos.org/build/233244557 at 2023-09-02 - - paypal-api # failure in job https://hydra.nixos.org/build/233228585 at 2023-09-02 - - pb # failure in job https://hydra.nixos.org/build/233193210 at 2023-09-02 - - pb-next # failure in job https://hydra.nixos.org/build/233217547 at 2023-09-02 - - pbc4hs # failure in job https://hydra.nixos.org/build/233247062 at 2023-09-02 - - PBKDF2 # failure in job https://hydra.nixos.org/build/233201545 at 2023-09-02 - - pcd-loader # failure in job https://hydra.nixos.org/build/233230290 at 2023-09-02 + - pbc4hs # previously transitively broken at 2025-09-08 + - pcapng # previously transitively broken at 2025-09-08 + - pcf # previously transitively broken at 2025-09-08 - pcf-font # failure in job https://hydra.nixos.org/build/295095992 at 2025-04-22 - - pcf-font-embed # failure in job https://hydra.nixos.org/build/233246806 at 2023-09-02 - - pcgen # failure in job https://hydra.nixos.org/build/233195356 at 2023-09-02 - - PCLT # failure in job https://hydra.nixos.org/build/233246845 at 2023-09-02 - - pcre-light-extra # failure in job https://hydra.nixos.org/build/233194585 at 2023-09-02 - pcubature # failure in job https://hydra.nixos.org/build/253698476 at 2024-03-31 - - pdf-slave-template # failure in job https://hydra.nixos.org/build/233217870 at 2023-09-02 - - pdf-toolbox-viewer # failure in job https://hydra.nixos.org/build/233196461 at 2023-09-02 - - pdfinfo # failure in job https://hydra.nixos.org/build/233214432 at 2023-09-02 - - pdynload # failure in job https://hydra.nixos.org/build/233226504 at 2023-09-02 - - PeanoWitnesses # failure in job https://hydra.nixos.org/build/233207451 at 2023-09-02 - - pecoff # failure in job https://hydra.nixos.org/build/233231268 at 2023-09-02 - - pedestrian-dag # failure in job https://hydra.nixos.org/build/233258214 at 2023-09-02 - - peg # failure in job https://hydra.nixos.org/build/233219135 at 2023-09-02 - - peggy # failure in job https://hydra.nixos.org/build/233219739 at 2023-09-02 - - pencil # failure in job https://hydra.nixos.org/build/233241521 at 2023-09-02 - - penntreebank-megaparsec # failure in job https://hydra.nixos.org/build/233192370 at 2023-09-02 - - penrose # failure in job https://hydra.nixos.org/build/295096017 at 2025-04-22 - - percent-encoder # failure in job https://hydra.nixos.org/build/233227242 at 2023-09-02 - - perceptron # failure in job https://hydra.nixos.org/build/233192246 at 2023-09-02 - peregrin # failure in job https://hydra.nixos.org/build/233219228 at 2023-09-02 - perfect-vector-shuffle # failure in job https://hydra.nixos.org/build/233195328 at 2023-09-02 - - PerfectHash # failure in job https://hydra.nixos.org/build/233252581 at 2023-09-02 - - perhaps # failure in job https://hydra.nixos.org/build/233206486 at 2023-09-02 - - periodic # failure in job https://hydra.nixos.org/build/233192615 at 2023-09-02 - - periodic-common # failure in job https://hydra.nixos.org/build/233224868 at 2023-09-02 - - periodic-polynomials # failure in job https://hydra.nixos.org/build/233251520 at 2023-09-02 - - permutation # failure in job https://hydra.nixos.org/build/233232155 at 2023-09-02 - - permute # failure in job https://hydra.nixos.org/build/233238641 at 2023-09-02 + - periodic-client # previously transitively broken at 2025-09-08 - persist # failure in job https://hydra.nixos.org/build/233234953 at 2023-09-02 - - persist-state # failure in job https://hydra.nixos.org/build/233249568 at 2023-09-02 - - persist2er # failure in job https://hydra.nixos.org/build/233243953 at 2023-09-02 - - Persistence # failure in job https://hydra.nixos.org/build/233226467 at 2023-09-02 - - persistent-cereal # failure in job https://hydra.nixos.org/build/233240762 at 2023-09-02 - - persistent-database-url # failure in job https://hydra.nixos.org/build/233233601 at 2023-09-02 - - persistent-equivalence # failure in job https://hydra.nixos.org/build/233208713 at 2023-09-02 - - persistent-generic # failure in job https://hydra.nixos.org/build/233220060 at 2023-09-02 - persistent-mongoDB # failure in job https://hydra.nixos.org/build/233207971 at 2023-09-02 - persistent-mtl # failure in job https://hydra.nixos.org/build/255677987 at 2024-04-16 - - persistent-mysql-haskell # failure in job https://hydra.nixos.org/build/295096055 at 2025-04-22 - persistent-mysql-pure # failure in job https://hydra.nixos.org/build/295096025 at 2025-04-22 - persistent-odbc # failure in job https://hydra.nixos.org/build/233191221 at 2023-09-02 - persistent-postgresql-streaming # failure in job https://hydra.nixos.org/build/233194038 at 2023-09-02 - - persistent-ratelimit # failure in job https://hydra.nixos.org/build/233224537 at 2023-09-02 - - persistent-refs # failure in job https://hydra.nixos.org/build/252722090 at 2024-03-16 - - persistent-relational-record # compilation failure https://hydra.nixos.org/build/295428425 - persistent-sql-lifted # failure in job https://hydra.nixos.org/build/295096040 at 2025-04-22 - persistent-stm # failure in job https://hydra.nixos.org/build/233234706 at 2023-09-02 - persistent-template-classy # failure in job https://hydra.nixos.org/build/233230341 at 2023-09-02 - persistent-vector # failure in job https://hydra.nixos.org/build/252721689 at 2024-03-16 - - persona # failure in job https://hydra.nixos.org/build/233209614 at 2023-09-02 - - pesca # failure in job https://hydra.nixos.org/build/233231301 at 2023-09-02 - - pez # failure in job https://hydra.nixos.org/build/233212139 at 2023-09-02 - pg-extras # failure in job https://hydra.nixos.org/build/233253845 at 2023-09-02 - - pg-harness # failure in job https://hydra.nixos.org/build/233219805 at 2023-09-02 - - pg-harness-server # failure in job https://hydra.nixos.org/build/233236493 at 2023-09-02 - pg-query # failure in job https://hydra.nixos.org/build/283202281 at 2024-12-31 - - pg-recorder # failure in job https://hydra.nixos.org/build/233241248 at 2023-09-02 - - pg-store # failure in job https://hydra.nixos.org/build/233208603 at 2023-09-02 - pg-transact # failure in job https://hydra.nixos.org/build/233253337 at 2023-09-02 - - pgdl # failure in job https://hydra.nixos.org/build/233203790 at 2023-09-02 + - pgdl # previously transitively broken at 2025-09-08 - pgf2 # failure in job https://hydra.nixos.org/build/233234332 at 2023-09-02 - - pgp-wordlist # failure in job https://hydra.nixos.org/build/252723543 at 2024-03-16 - - pgsql-simple # failure in job https://hydra.nixos.org/build/233228421 at 2023-09-02 - - pgstream # failure in job https://hydra.nixos.org/build/233201596 at 2023-09-02 - pgvector # failure in job https://hydra.nixos.org/build/233202205 at 2023-09-02 - - phasechange # failure in job https://hydra.nixos.org/build/233254293 at 2023-09-02 - phaser # failure in job https://hydra.nixos.org/build/233250604 at 2023-09-02 - - phash # We cannot build this package w/o the C library from . - phino # failure in job https://hydra.nixos.org/build/299140266 at 2025-06-23 - phladiprelio-general-datatype # failure in job https://hydra.nixos.org/build/275139962 at 2024-10-21 - - phoityne # failure in job https://hydra.nixos.org/build/233195238 at 2023-09-02 - - phoityne-vscode # failure in job https://hydra.nixos.org/build/233190938 at 2023-09-02 - - phone-metadata # failure in job https://hydra.nixos.org/build/233256096 at 2023-09-02 - - phone-numbers # failure in job https://hydra.nixos.org/build/233217584 at 2023-09-02 - - phone-push # failure in job https://hydra.nixos.org/build/233246934 at 2023-09-02 - phonetic-languages-constaints # failure in job https://hydra.nixos.org/build/233232580 at 2023-09-02 - phonetic-languages-phonetics-basics # failure in job https://hydra.nixos.org/build/275143090 at 2024-10-21 - phonetic-languages-simplified-generalized-examples-array # failure in job https://hydra.nixos.org/build/233245242 at 2023-09-02 @@ -4596,120 +1335,31 @@ broken-packages: - phonetic-languages-ukrainian-array # failure in job https://hydra.nixos.org/build/275138098 at 2024-10-21 - phonetic-languages-vector # failure in job https://hydra.nixos.org/build/233258156 at 2023-09-02 - photoname # failure in job https://hydra.nixos.org/build/252736965 at 2024-03-16 - - phraskell # failure in job https://hydra.nixos.org/build/233202906 at 2023-09-02 - - Phsu # failure in job https://hydra.nixos.org/build/233243595 at 2023-09-02 - - pi-calculus # failure in job https://hydra.nixos.org/build/233247119 at 2023-09-02 - - pi-forall # failure in job https://hydra.nixos.org/build/233247486 at 2023-09-02 - - pi-hoole # failure in job https://hydra.nixos.org/build/233242115 at 2023-09-02 - - pi-lcd # failure in job https://hydra.nixos.org/build/233251924 at 2023-09-02 - - pia-forward # failure in job https://hydra.nixos.org/build/233219067 at 2023-09-02 - - picedit # failure in job https://hydra.nixos.org/build/233204167 at 2023-09-02 - - pickle # failure in job https://hydra.nixos.org/build/233255980 at 2023-09-02 - - picologic # failure in job https://hydra.nixos.org/build/233202882 at 2023-09-02 - - picoparsec # failure in job https://hydra.nixos.org/build/233251453 at 2023-09-02 - - picosat # failure in job https://hydra.nixos.org/build/252732655 at 2024-03-16 - - pictikz # failure in job https://hydra.nixos.org/build/233240766 at 2023-09-02 - pid # failure in job https://hydra.nixos.org/build/252711742 at 2024-03-16 - - pidfile # failure in job https://hydra.nixos.org/build/252735609 at 2024-03-16 - - pier-core # failure in job https://hydra.nixos.org/build/233234325 at 2023-09-02 - - piet # failure in job https://hydra.nixos.org/build/233259843 at 2023-09-02 - - pig # failure in job https://hydra.nixos.org/build/233234188 at 2023-09-02 - pinboard # failure in job https://hydra.nixos.org/build/233239482 at 2023-09-02 - pinch # failure in job https://hydra.nixos.org/build/295096082 at 2025-04-22 - pinch-gen # failure in job https://hydra.nixos.org/build/233212466 at 2023-09-02 - - pinchot # failure in job https://hydra.nixos.org/build/233230585 at 2023-09-02 - - Pipe # failure in job https://hydra.nixos.org/build/233243604 at 2023-09-02 - - piped # failure in job https://hydra.nixos.org/build/252729903 at 2024-03-16 - - pipes-async # failure in job https://hydra.nixos.org/build/233194729 at 2023-09-02 - - pipes-bgzf # failure in job https://hydra.nixos.org/build/233238921 at 2023-09-02 - - pipes-break # failure in job https://hydra.nixos.org/build/233250730 at 2023-09-02 - - pipes-brotli # failure in job https://hydra.nixos.org/build/233254662 at 2023-09-02 - - pipes-bzip # failure in job https://hydra.nixos.org/build/233222309 at 2023-09-02 - - pipes-category # failure in job https://hydra.nixos.org/build/233200163 at 2023-09-02 - - pipes-cereal # failure in job https://hydra.nixos.org/build/233195413 at 2023-09-02 - - pipes-core # failure in job https://hydra.nixos.org/build/233213024 at 2023-09-02 - - pipes-errors # failure in job https://hydra.nixos.org/build/233214912 at 2023-09-02 - - pipes-io # failure in job https://hydra.nixos.org/build/233243253 at 2023-09-02 - - pipes-kafka # failure in job https://hydra.nixos.org/build/252727228 at 2024-03-16 - - pipes-lines # failure in job https://hydra.nixos.org/build/233243979 at 2023-09-02 - - pipes-network-ws # failure in job https://hydra.nixos.org/build/233245816 at 2023-09-02 - - pipes-protolude # failure in job https://hydra.nixos.org/build/233216770 at 2023-09-02 + - pipes-fluid # previously transitively broken at 2025-09-08 + - pipes-misc # previously transitively broken at 2025-09-08 - pipes-pulse-simple # failure in job https://hydra.nixos.org/build/295096094 at 2025-04-22 - - pipes-rt # failure in job https://hydra.nixos.org/build/233192738 at 2023-09-02 - - pipes-s3 # failure in job https://hydra.nixos.org/build/233212176 at 2023-09-02 - - pipes-shell # failure in job https://hydra.nixos.org/build/233201295 at 2023-09-02 - - pipes-sqlite-simple # failure in job https://hydra.nixos.org/build/233192011 at 2023-09-02 - - pipes-transduce # failure in job https://hydra.nixos.org/build/233255687 at 2023-09-02 - - pipes-vector # failure in job https://hydra.nixos.org/build/233230658 at 2023-09-02 - - pipes-zeromq4 # failure in job https://hydra.nixos.org/build/233225144 at 2023-09-02 - - Piso # failure in job https://hydra.nixos.org/build/233248525 at 2023-09-02 - - pit # failure in job https://hydra.nixos.org/build/233231533 at 2023-09-02 - - pivotal-tracker # failure in job https://hydra.nixos.org/build/233247891 at 2023-09-02 - pixel-printer # failure in job https://hydra.nixos.org/build/233238475 at 2023-09-02 - - pixela # failure in job https://hydra.nixos.org/build/233212880 at 2023-09-02 - - pixelated-avatar-generator # failure in job https://hydra.nixos.org/build/233226212 at 2023-09-02 - pixiv # failure in job https://hydra.nixos.org/build/233192807 at 2023-09-02 - - pkcs10 # failure in job https://hydra.nixos.org/build/233212551 at 2023-09-02 - - pkcs7 # failure in job https://hydra.nixos.org/build/233191635 at 2023-09-02 - - pkggraph # failure in job https://hydra.nixos.org/build/233238971 at 2023-09-02 - pl-synth # failure in job https://hydra.nixos.org/build/295096103 at 2025-04-22 - - plailude # failure in job https://hydra.nixos.org/build/233233772 at 2023-09-02 - - plan-applicative # failure in job https://hydra.nixos.org/build/233202905 at 2023-09-02 - - plan-b # failure in job https://hydra.nixos.org/build/233255860 at 2023-09-02 - - planar-graph # failure in job https://hydra.nixos.org/build/233217108 at 2023-09-02 - - planb-token-introspection # failure in job https://hydra.nixos.org/build/233226890 at 2023-09-02 - - planet-mitchell-test # failure in job https://hydra.nixos.org/build/233198054 at 2023-09-02 - - plankton # failure in job https://hydra.nixos.org/build/233216254 at 2023-09-02 - - plat # failure in job https://hydra.nixos.org/build/233205071 at 2023-09-02 - - platinum-parsing # failure in job https://hydra.nixos.org/build/233225071 at 2023-09-02 - - PlayingCards # failure in job https://hydra.nixos.org/build/233239100 at 2023-09-02 - - playlists-http # failure in job https://hydra.nixos.org/build/295096180 at 2025-04-22 - plegg # failure in job https://hydra.nixos.org/build/255679256 at 2024-04-16 - - plist # failure in job https://hydra.nixos.org/build/233233906 at 2023-09-02 - - plist-buddy # failure in job https://hydra.nixos.org/build/233199181 at 2023-09-02 - - plivo # failure in job https://hydra.nixos.org/build/233256647 at 2023-09-02 - - plot-gtk # failure in job https://hydra.nixos.org/build/233241286 at 2023-09-02 - - plot-gtk-ui # failure in job https://hydra.nixos.org/build/233205192 at 2023-09-02 - - plot-gtk3 # failure in job https://hydra.nixos.org/build/233202048 at 2023-09-02 - - plot-lab # failure in job https://hydra.nixos.org/build/233242283 at 2023-09-02 - ploterific # failure in job https://hydra.nixos.org/build/233228102 at 2023-09-02 - plots # failure in job https://hydra.nixos.org/build/233207279 at 2023-09-02 - plow-log # failure in job https://hydra.nixos.org/build/252717614 at 2024-03-16 - plow-log-async # failure in job https://hydra.nixos.org/build/233201736 at 2023-09-02 - - plucky # failure in job https://hydra.nixos.org/build/252718793 at 2024-03-16 - plugins # failure in job https://hydra.nixos.org/build/233239631 at 2023-09-02 - - plugins-multistage # failure in job https://hydra.nixos.org/build/233205493 at 2023-09-02 - - plumbers # failure in job https://hydra.nixos.org/build/233221866 at 2023-09-02 - - plur # failure in job https://hydra.nixos.org/build/233229752 at 2023-09-02 - - plural # failure in job https://hydra.nixos.org/build/233198934 at 2023-09-02 - - ply-loader # failure in job https://hydra.nixos.org/build/252720663 at 2024-03-16 - - plzwrk # failure in job https://hydra.nixos.org/build/233219630 at 2023-09-02 - pms-domain-model # failure in job https://hydra.nixos.org/build/302805399 at 2025-07-27 - pngload-fixed # failure in job https://hydra.nixos.org/build/233233956 at 2023-09-02 - - pocket # failure in job https://hydra.nixos.org/build/233244120 at 2023-09-02 - podenv # failure in job https://hydra.nixos.org/build/233210257 at 2023-09-02 - - point-octree # failure in job https://hydra.nixos.org/build/295096122 at 2025-04-22 - - pointedalternative # failure in job https://hydra.nixos.org/build/233205911 at 2023-09-02 - pointfree-fancy # failure in job https://hydra.nixos.org/build/233229134 at 2023-09-02 - - pointful # failure in job https://hydra.nixos.org/build/233212599 at 2023-09-02 - - pointless-haskell # failure in job https://hydra.nixos.org/build/233209713 at 2023-09-02 - poke # failure in job https://hydra.nixos.org/build/295096146 at 2025-04-22 - - pokemon-go-protobuf-types # failure in job https://hydra.nixos.org/build/233218347 at 2023-09-02 - poker-base # failure in job https://hydra.nixos.org/build/233221473 at 2023-09-02 - - poker-eval # failure in job https://hydra.nixos.org/build/233259714 at 2023-09-02 - - pokitdok # failure in job https://hydra.nixos.org/build/233251624 at 2023-09-02 - - polar-configfile # failure in job https://hydra.nixos.org/build/233194279 at 2023-09-02 - - polar-shader # failure in job https://hydra.nixos.org/build/233258190 at 2023-09-02 - - policeman # failure in job https://hydra.nixos.org/build/233199941 at 2023-09-02 - polling-cache # failure in job https://hydra.nixos.org/build/233211378 at 2023-09-02 - - Pollutocracy # failure in job https://hydra.nixos.org/build/234458943 at 2023-09-13 - poly # failure in job https://hydra.nixos.org/build/233255655 at 2023-09-02 - - poly-cont # failure in job https://hydra.nixos.org/build/233223995 at 2023-09-02 - - poly-control # failure in job https://hydra.nixos.org/build/233190876 at 2023-09-02 - - polydata-core # failure in job https://hydra.nixos.org/build/233232049 at 2023-09-02 - polyglot # failure in job https://hydra.nixos.org/build/233218267 at 2023-09-02 - - polynom # failure in job https://hydra.nixos.org/build/233237353 at 2023-09-02 - - polynomial # failure in job https://hydra.nixos.org/build/233242131 at 2023-09-02 - polysemy-blockfrost # failure in job https://hydra.nixos.org/build/275144296 at 2024-10-21 - polysemy-http # failure in job https://hydra.nixos.org/build/295122896 at 2025-04-22 - polysemy-keyed-state # failure in job https://hydra.nixos.org/build/233224142 at 2023-09-02 @@ -4721,1129 +1371,348 @@ broken-packages: - polysemy-several # failure in job https://hydra.nixos.org/build/233216921 at 2023-09-02 - polysemy-socket # failure in job https://hydra.nixos.org/build/233195754 at 2023-09-02 - polysemy-zoo # failure in job https://hydra.nixos.org/build/255673786 at 2024-04-16 - - polyseq # failure in job https://hydra.nixos.org/build/233191210 at 2023-09-02 - - polysoup # failure in job https://hydra.nixos.org/build/295096140 at 2025-04-22 - - polytypeable # failure in job https://hydra.nixos.org/build/233211797 at 2023-09-02 - polyvariadic # failure in job https://hydra.nixos.org/build/233250822 at 2023-09-02 - pomaps # failure in job https://hydra.nixos.org/build/233246145 at 2023-09-02 - - pomohoro # failure in job https://hydra.nixos.org/build/233244601 at 2023-09-02 - - ponder # failure in job https://hydra.nixos.org/build/233223646 at 2023-09-02 - - pong-server # failure in job https://hydra.nixos.org/build/233194974 at 2023-09-02 - pontarius-xmpp-extras # failure in job https://hydra.nixos.org/build/301059892 at 2025-07-01 - - pontarius-xpmn # failure in job https://hydra.nixos.org/build/233217546 at 2023-09-02 - - pool # failure in job https://hydra.nixos.org/build/233205364 at 2023-09-02 - - pool-conduit # failure in job https://hydra.nixos.org/build/233246643 at 2023-09-02 - - pop3-client # failure in job https://hydra.nixos.org/build/233251475 at 2023-09-02 - popkey # failure in job https://hydra.nixos.org/build/233203892 at 2023-09-02 - - poppler # failure in job https://hydra.nixos.org/build/233196044 at 2023-09-02 - porpoise # failure in job https://hydra.nixos.org/build/233191117 at 2023-09-02 - - portager # failure in job https://hydra.nixos.org/build/233192963 at 2023-09-02 - - porte # failure in job https://hydra.nixos.org/build/233224391 at 2023-09-02 - - PortFusion # failure in job https://hydra.nixos.org/build/233248354 at 2023-09-02 - portray # failure in job https://hydra.nixos.org/build/252733999 at 2024-03-16 - posable # failure in job https://hydra.nixos.org/build/233217897 at 2023-09-02 - - positron # failure in job https://hydra.nixos.org/build/233256252 at 2023-09-02 - - posix-acl # failure in job https://hydra.nixos.org/build/233222892 at 2023-09-02 - - posix-filelock # failure in job https://hydra.nixos.org/build/252726822 at 2024-03-16 - - posix-realtime # failure in job https://hydra.nixos.org/build/233191463 at 2023-09-02 - - posix-waitpid # failure in job https://hydra.nixos.org/build/233206551 at 2023-09-02 - - postcodes # failure in job https://hydra.nixos.org/build/233247290 at 2023-09-02 - postgis-trivial # failure in job https://hydra.nixos.org/build/295096168 at 2025-04-22 - - postgres-embedded # failure in job https://hydra.nixos.org/build/233246098 at 2023-09-02 - - postgres-tmp # failure in job https://hydra.nixos.org/build/233258685 at 2023-09-02 - - PostgreSQL # failure in job https://hydra.nixos.org/build/233258066 at 2023-09-02 - - postgresql-common # failure in job https://hydra.nixos.org/build/233257104 at 2023-09-02 - - postgresql-config # failure in job https://hydra.nixos.org/build/233197788 at 2023-09-02 - - postgresql-cube # failure in job https://hydra.nixos.org/build/233195283 at 2023-09-02 - postgresql-lo-stream # failure in job https://hydra.nixos.org/build/233194012 at 2023-09-02 - postgresql-ltree # failure in job https://hydra.nixos.org/build/233199998 at 2023-09-02 - - postgresql-named # failure in job https://hydra.nixos.org/build/233241920 at 2023-09-02 - - postgresql-orm # failure in job https://hydra.nixos.org/build/233219383 at 2023-09-02 - postgresql-query # failure in job https://hydra.nixos.org/build/233202114 at 2023-09-02 - postgresql-replicant # failure in job https://hydra.nixos.org/build/233247943 at 2023-09-02 - postgresql-resilient # failure in job https://hydra.nixos.org/build/233212362 at 2023-09-02 - - postgresql-simple-bind # failure in job https://hydra.nixos.org/build/233220640 at 2023-09-02 - postgresql-simple-named # failure in job https://hydra.nixos.org/build/233202481 at 2023-09-02 - - postgresql-simple-opts # failure in job https://hydra.nixos.org/build/252718901 at 2024-03-16 - - postgresql-simple-sop # failure in job https://hydra.nixos.org/build/233249757 at 2023-09-02 - postgresql-simple-url # failure in job https://hydra.nixos.org/build/295096191 at 2025-04-22 - postgresql-tx # failure in job https://hydra.nixos.org/build/252717914 at 2024-03-16 - postgresql-tx-monad-logger # failure in job https://hydra.nixos.org/build/233227034 at 2023-09-02 - postgresql-tx-simple # failure in job https://hydra.nixos.org/build/233242850 at 2023-09-02 - - postgresql-typed-lifted # failure in job https://hydra.nixos.org/build/233215141 at 2023-09-02 - - postgrest-ws # failure in job https://hydra.nixos.org/build/233247807 at 2023-09-02 - postie # failure in job https://hydra.nixos.org/build/233259075 at 2023-09-02 - postmark-streams # failure in job https://hydra.nixos.org/build/233233210 at 2023-09-02 - - postmaster # failure in job https://hydra.nixos.org/build/233258599 at 2023-09-02 - - potato-tool # failure in job https://hydra.nixos.org/build/233242728 at 2023-09-02 - - potoki-core # failure in job https://hydra.nixos.org/build/233218616 at 2023-09-02 - - powermate # failure in job https://hydra.nixos.org/build/233224977 at 2023-09-02 - - powerpc # failure in job https://hydra.nixos.org/build/233217983 at 2023-09-02 - - powerqueue-levelmem # failure in job https://hydra.nixos.org/build/233232882 at 2023-09-02 - ppad-aead # failure in job https://hydra.nixos.org/build/295096231 at 2025-04-22 - ppad-script # failure in job https://hydra.nixos.org/build/295096199 at 2025-04-22 - ppad-sha256 # failure in job https://hydra.nixos.org/build/276377736 at 2024-11-06 - ppad-sha512 # failure in job https://hydra.nixos.org/build/276375868 at 2024-11-06 - - pprecord # failure in job https://hydra.nixos.org/build/233198838 at 2023-09-02 - - PPrinter # failure in job https://hydra.nixos.org/build/233253160 at 2023-09-02 - - pqc # failure in job https://hydra.nixos.org/build/233217425 at 2023-09-02 - - praglude # failure in job https://hydra.nixos.org/build/233227990 at 2023-09-02 - - preamble # failure in job https://hydra.nixos.org/build/233214735 at 2023-09-02 - - precis # failure in job https://hydra.nixos.org/build/233218390 at 2023-09-02 - - precursor # failure in job https://hydra.nixos.org/build/233243544 at 2023-09-02 - - predicate-class # failure in job https://hydra.nixos.org/build/233229898 at 2023-09-02 - predicate-typed # failure in job https://hydra.nixos.org/build/233202614 at 2023-09-02 - - prednote # failure in job https://hydra.nixos.org/build/233253938 at 2023-09-02 - - prefork # failure in job https://hydra.nixos.org/build/233213524 at 2023-09-02 - - pregame # failure in job https://hydra.nixos.org/build/233206528 at 2023-09-02 - - preliminaries # failure in job https://hydra.nixos.org/build/233210546 at 2023-09-02 - - Prelude # failure in job https://hydra.nixos.org/build/233198144 at 2023-09-02 - - prelude-generalize # failure in job https://hydra.nixos.org/build/233197167 at 2023-09-02 - - prelude-plus # failure in job https://hydra.nixos.org/build/233252792 at 2023-09-02 - - preprocess-haskell # failure in job https://hydra.nixos.org/build/233212371 at 2023-09-02 - - preprocessor # failure in job https://hydra.nixos.org/build/233225468 at 2023-09-02 - preql # failure in job https://hydra.nixos.org/build/233192349 at 2023-09-02 - - presburger # failure in job https://hydra.nixos.org/build/233200745 at 2023-09-02 - - present # failure in job https://hydra.nixos.org/build/233247937 at 2023-09-02 - - press # failure in job https://hydra.nixos.org/build/233244648 at 2023-09-02 - pretty-compact # failure in job https://hydra.nixos.org/build/233230012 at 2023-09-02 - - pretty-ghci # failure in job https://hydra.nixos.org/build/233236777 at 2023-09-02 - pretty-html # failure in job https://hydra.nixos.org/build/295096226 at 2025-04-22 - - pretty-loc # failure in job https://hydra.nixos.org/build/233198098 at 2023-09-02 - pretty-ncols # failure in job https://hydra.nixos.org/build/233220264 at 2023-09-02 - pretty-types # failure in job https://hydra.nixos.org/build/252727063 at 2024-03-16 - prettyprint-avh4 # failure in job https://hydra.nixos.org/build/295096246 at 2025-04-22 - prettyprinter-convert-ansi-wl-pprint # failure in job https://hydra.nixos.org/build/252718603 at 2024-03-16 - - prettyprinter-vty # failure in job https://hydra.nixos.org/build/233251729 at 2023-09-02 - - prim # failure in job https://hydra.nixos.org/build/233215988 at 2023-09-02 - - prim-array # failure in job https://hydra.nixos.org/build/233220574 at 2023-09-02 - - prim-instances # failure in job https://hydra.nixos.org/build/233215690 at 2023-09-02 - - prim-ref # failure in job https://hydra.nixos.org/build/233226138 at 2023-09-02 - primal # failure in job https://hydra.nixos.org/build/233260049 at 2023-09-02 - prime # failure in job https://hydra.nixos.org/build/233197550 at 2023-09-02 - - primes-type # failure in job https://hydra.nixos.org/build/233258302 at 2023-09-02 - primitive-checked # failure in job https://hydra.nixos.org/build/233211674 at 2023-09-02 - - primitive-convenience # failure in job https://hydra.nixos.org/build/233223846 at 2023-09-02 - - primitive-foreign # failure in job https://hydra.nixos.org/build/233247413 at 2023-09-02 - - primitive-indexed # failure in job https://hydra.nixos.org/build/233245884 at 2023-09-02 - - primitive-maybe # failure in job https://hydra.nixos.org/build/233205279 at 2023-09-02 - primitive-primvar # failure in job https://hydra.nixos.org/build/233213521 at 2023-09-02 - - primitive-simd # failure in job https://hydra.nixos.org/build/233247045 at 2023-09-02 - primitive-slice # failure in job https://hydra.nixos.org/build/233245739 at 2023-09-02 - - primitive-stablename # failure in job https://hydra.nixos.org/build/233251421 at 2023-09-02 - PrimitiveArray # failure in job https://hydra.nixos.org/build/233204574 at 2023-09-02 - - PrimitiveArray-Pretty # failure in job https://hydra.nixos.org/build/233234197 at 2023-09-02 - - pringletons # failure in job https://hydra.nixos.org/build/233246491 at 2023-09-02 - - print-debugger # failure in job https://hydra.nixos.org/build/233229154 at 2023-09-02 - - print-info # failure in job https://hydra.nixos.org/build/233246545 at 2023-09-02 - - printcess # failure in job https://hydra.nixos.org/build/233212768 at 2023-09-02 - - prints # failure in job https://hydra.nixos.org/build/233201961 at 2023-09-02 - - priority-queue # failure in job https://hydra.nixos.org/build/233253122 at 2023-09-02 - - PriorityChansConverger # failure in job https://hydra.nixos.org/build/233217782 at 2023-09-02 - pro-abstract # failure in job https://hydra.nixos.org/build/233213330 at 2023-09-02 - pro-source # failure in job https://hydra.nixos.org/build/233226793 at 2023-09-02 - prob-fx # failure in job https://hydra.nixos.org/build/233239940 at 2023-09-02 - - probable # failure in job https://hydra.nixos.org/build/233243771 at 2023-09-02 - Probnet # failure in job https://hydra.nixos.org/build/233190989 at 2023-09-02 - - process-conduit # failure in job https://hydra.nixos.org/build/233225334 at 2023-09-02 - - process-leksah # failure in job https://hydra.nixos.org/build/233256114 at 2023-09-02 - - process-listlike # failure in job https://hydra.nixos.org/build/233194645 at 2023-09-02 - process-sequential # failure in job https://hydra.nixos.org/build/233221064 at 2023-09-02 - - processing # failure in job https://hydra.nixos.org/build/233232969 at 2023-09-02 - - processmemory # failure in job https://hydra.nixos.org/build/233217444 at 2023-09-02 - procex # failure in job https://hydra.nixos.org/build/295096282 at 2025-04-22 - - procrastinating-variable # failure in job https://hydra.nixos.org/build/233229350 at 2023-09-02 - - procstat # failure in job https://hydra.nixos.org/build/233256320 at 2023-09-02 - prodapi-proxy # failure in job https://hydra.nixos.org/build/295096290 at 2025-04-22 - prodapi-userauth # failure in job https://hydra.nixos.org/build/295096314 at 2025-04-22 - - prof-flamegraph # failure in job https://hydra.nixos.org/build/233254675 at 2023-09-02 - - prof2pretty # failure in job https://hydra.nixos.org/build/233240665 at 2023-09-02 - profunctor-monad # failure in job https://hydra.nixos.org/build/233190940 at 2023-09-02 - - progress-meter # failure in job https://hydra.nixos.org/build/233222787 at 2023-09-02 - - progress-reporting # failure in job https://hydra.nixos.org/build/233200528 at 2023-09-02 - - progression # failure in job https://hydra.nixos.org/build/233256355 at 2023-09-02 - - progressive # failure in job https://hydra.nixos.org/build/233228075 at 2023-09-02 - - proj4-hs-bindings # failure in job https://hydra.nixos.org/build/233220980 at 2023-09-02 - project-forge # failure in job https://hydra.nixos.org/build/233253798 at 2023-09-02 - - projectile # failure in job https://hydra.nixos.org/build/233220390 at 2023-09-02 - prolens # failure in job https://hydra.nixos.org/build/233232251 at 2023-09-02 - - prolog # failure in job https://hydra.nixos.org/build/233259542 at 2023-09-02 - - prometheus-effect # failure in job https://hydra.nixos.org/build/233215984 at 2023-09-02 - - prometheus-wai-middleware # failure in job https://hydra.nixos.org/build/233239230 at 2023-09-02 - - promise # failure in job https://hydra.nixos.org/build/233228578 at 2023-09-02 - - prompt # failure in job https://hydra.nixos.org/build/252732746 at 2024-03-16 - - pronounce # failure in job https://hydra.nixos.org/build/233234844 at 2023-09-02 + - prometheus-proc # previously transitively broken at 2025-09-08 - proof-assistant-bot # failure in job https://hydra.nixos.org/build/234974688 at 2023-09-13 - proof-combinators # failure in job https://hydra.nixos.org/build/233210521 at 2023-09-02 - PropaFP # failure in job https://hydra.nixos.org/build/233206496 at 2023-09-02 - propeller # failure in job https://hydra.nixos.org/build/273449652 at 2024-10-01 - - Proper # failure in job https://hydra.nixos.org/build/233194417 at 2023-09-02 - - properties # failure in job https://hydra.nixos.org/build/233240862 at 2023-09-02 - - property-list # failure in job https://hydra.nixos.org/build/233254907 at 2023-09-02 - - prosidy # failure in job https://hydra.nixos.org/build/233249779 at 2023-09-02 - - prosper # failure in job https://hydra.nixos.org/build/233244079 at 2023-09-02 - proteaaudio # failure in job https://hydra.nixos.org/build/233225498 at 2023-09-02 - proteaaudio-sdl # failure in job https://hydra.nixos.org/build/295096350 at 2025-04-22 - - proto-lens-combinators # failure in job https://hydra.nixos.org/build/252726979 at 2024-03-16 - proto-lens-etcd # failure in job https://hydra.nixos.org/build/295096320 at 2025-04-22 - proto-lens-jsonpb # failure in job https://hydra.nixos.org/build/295096317 at 2025-04-22 - - protocol # failure in job https://hydra.nixos.org/build/233224436 at 2023-09-02 - protocol-buffers # failure in job https://hydra.nixos.org/build/233220653 at 2023-09-02 - - protocol-buffers-fork # failure in job https://hydra.nixos.org/build/233228361 at 2023-09-02 - - protolude-lifted # failure in job https://hydra.nixos.org/build/233196312 at 2023-09-02 - - proton-haskell # failure in job https://hydra.nixos.org/build/233214383 at 2023-09-02 - - prototype # failure in job https://hydra.nixos.org/build/233238810 at 2023-09-02 - - prove-everywhere-server # failure in job https://hydra.nixos.org/build/233204606 at 2023-09-02 - provenience # failure in job https://hydra.nixos.org/build/233247246 at 2023-09-02 - - proxy-kindness # failure in job https://hydra.nixos.org/build/233204762 at 2023-09-02 - - proxy-mapping # failure in job https://hydra.nixos.org/build/233227151 at 2023-09-02 - prune-juice # failure in job https://hydra.nixos.org/build/233198633 at 2023-09-02 - - psc-ide # failure in job https://hydra.nixos.org/build/267966912 at 2024-07-31 - - pseudo-trie # failure in job https://hydra.nixos.org/build/233230636 at 2023-09-02 - - psi # failure in job https://hydra.nixos.org/build/233222861 at 2023-09-02 - - pstemmer # failure in job https://hydra.nixos.org/build/233241342 at 2023-09-02 - psx # failure in job https://hydra.nixos.org/build/233199666 at 2023-09-02 - ptera-core # failure in job https://hydra.nixos.org/build/295096340 at 2025-04-22 - - PTQ # failure in job https://hydra.nixos.org/build/233202571 at 2023-09-02 - - pub # failure in job https://hydra.nixos.org/build/233255415 at 2023-09-02 - - publicsuffix # failure in job https://hydra.nixos.org/build/233241572 at 2023-09-02 - - publicsuffixlistcreate # failure in job https://hydra.nixos.org/build/233251430 at 2023-09-02 - publish # failure in job https://hydra.nixos.org/build/233247247 at 2023-09-02 - - pubnub # failure in job https://hydra.nixos.org/build/233221264 at 2023-09-02 - - pubsub # failure in job https://hydra.nixos.org/build/233257241 at 2023-09-02 - - pugixml # failure in job https://hydra.nixos.org/build/233241247 at 2023-09-02 - - pugs-DrIFT # failure in job https://hydra.nixos.org/build/233216584 at 2023-09-02 - - pugs-HsSyck # failure in job https://hydra.nixos.org/build/233242766 at 2023-09-02 - - PUH-Project # failure in job https://hydra.nixos.org/build/233238918 at 2023-09-02 - - punycode # failure in job https://hydra.nixos.org/build/252727599 at 2024-03-16 - - Pup-Events-Server # failure in job https://hydra.nixos.org/build/233198287 at 2023-09-02 - - pure-io # failure in job https://hydra.nixos.org/build/233235168 at 2023-09-02 - - pure-priority-queue # failure in job https://hydra.nixos.org/build/233258014 at 2023-09-02 - pure-zlib # failure in job https://hydra.nixos.org/build/233241392 at 2023-09-02 - purescript-ast # failure in job https://hydra.nixos.org/build/233204157 at 2023-09-02 - purescript-cst # failure in job https://hydra.nixos.org/build/233197178 at 2023-09-02 - - purescript-tsd-gen # failure in job https://hydra.nixos.org/build/267964841 at 2024-07-31 - purview # failure in job https://hydra.nixos.org/build/233208821 at 2023-09-02 - - push-notifications # failure in job https://hydra.nixos.org/build/233199364 at 2023-09-02 - - pushbullet # failure in job https://hydra.nixos.org/build/233209340 at 2023-09-02 - - pushbullet-types # failure in job https://hydra.nixos.org/build/233242388 at 2023-09-02 - - pusher-haskell # failure in job https://hydra.nixos.org/build/233201954 at 2023-09-02 - - pusher-ws # failure in job https://hydra.nixos.org/build/233204133 at 2023-09-02 - - pushme # failure in job https://hydra.nixos.org/build/233212481 at 2023-09-02 - - pushover # failure in job https://hydra.nixos.org/build/252739908 at 2024-03-16 - - putlenses # failure in job https://hydra.nixos.org/build/233197372 at 2023-09-02 - - puzzle-draw # failure in job https://hydra.nixos.org/build/233204953 at 2023-09-02 + - puzzle-draw-cmdline # previously transitively broken at 2025-09-08 - pvector # failure in job https://hydra.nixos.org/build/233217965 at 2023-09-02 - - pyffi # failure in job https://hydra.nixos.org/build/233260156 at 2023-09-02 - - pyfi # failure in job https://hydra.nixos.org/build/233214389 at 2023-09-02 - python-pickle # failure in job https://hydra.nixos.org/build/233230321 at 2023-09-02 - - q4c12-twofinger # failure in job https://hydra.nixos.org/build/233190771 at 2023-09-02 - qbe # failure in job https://hydra.nixos.org/build/252729841 at 2024-03-16 - - qc-oi-testgenerator # failure in job https://hydra.nixos.org/build/233197822 at 2023-09-02 - - qd # failure in job https://hydra.nixos.org/build/233213936 at 2023-09-02 - - qed # failure in job https://hydra.nixos.org/build/233249635 at 2023-09-02 - - qhull-simple # failure in job https://hydra.nixos.org/build/233248108 at 2023-09-02 - - qif # failure in job https://hydra.nixos.org/build/233227609 at 2023-09-02 - - QIO # failure in job https://hydra.nixos.org/build/233233009 at 2023-09-02 - - QLearn # failure in job https://hydra.nixos.org/build/233252190 at 2023-09-02 - - qlinear # failure in job https://hydra.nixos.org/build/233214014 at 2023-09-02 - qm-interpolated-string # failure in job https://hydra.nixos.org/build/295096370 at 2025-04-22 - - qr-imager # failure in job https://hydra.nixos.org/build/233201973 at 2023-09-02 - - qrcode # failure in job https://hydra.nixos.org/build/233225438 at 2023-09-02 - qrcode-core # failure in job https://hydra.nixos.org/build/295096377 at 2025-04-22 - qsem # failure in job https://hydra.nixos.org/build/295096373 at 2025-04-22 - - qt # failure in job https://hydra.nixos.org/build/233248869 at 2023-09-02 - - QuadEdge # failure in job https://hydra.nixos.org/build/233249144 at 2023-09-02 - quadratic-irrational # failure in job https://hydra.nixos.org/build/295096381 at 2025-04-22 - - QuadTree # failure in job https://hydra.nixos.org/build/233234922 at 2023-09-02 - qualified-imports-plugin # failure in job https://hydra.nixos.org/build/233234707 at 2023-09-02 - - quandl-api # failure in job https://hydra.nixos.org/build/233219173 at 2023-09-02 - - quantum-arrow # failure in job https://hydra.nixos.org/build/233219576 at 2023-09-02 - - quantum-random # failure in job https://hydra.nixos.org/build/295096421 at 2025-04-22 - - quarantimer # failure in job https://hydra.nixos.org/build/233598108 at 2023-09-02 - - qudb # failure in job https://hydra.nixos.org/build/233238799 at 2023-09-02 - - quenya-verb # failure in job https://hydra.nixos.org/build/233209006 at 2023-09-02 - - querystring-pickle # failure in job https://hydra.nixos.org/build/233246108 at 2023-09-02 - - questioner # failure in job https://hydra.nixos.org/build/233213704 at 2023-09-02 + - queryparser-presto # previously transitively broken at 2025-09-08 - quibble-core # failure in job https://hydra.nixos.org/build/233200635 at 2023-09-02 - quic # failure in job https://hydra.nixos.org/build/295457190 at 2025-05-02 - - quick-schema # failure in job https://hydra.nixos.org/build/233256519 at 2023-09-02 - - QuickAnnotate # failure in job https://hydra.nixos.org/build/233197428 at 2023-09-02 - - quickbooks # failure in job https://hydra.nixos.org/build/233227666 at 2023-09-02 - quickcheck-arbitrary-template # failure in job https://hydra.nixos.org/build/233223045 at 2023-09-02 - quickcheck-combinators # failure in job https://hydra.nixos.org/build/233209131 at 2023-09-02 - - quickcheck-property-comb # failure in job https://hydra.nixos.org/build/233204877 at 2023-09-02 - - quickcheck-property-monad # failure in job https://hydra.nixos.org/build/233228775 at 2023-09-02 - - quickcheck-rematch # failure in job https://hydra.nixos.org/build/233205449 at 2023-09-02 - - quickcheck-report # failure in job https://hydra.nixos.org/build/233214523 at 2023-09-02 - - quickcheck-state-machine-distributed # failure in job https://hydra.nixos.org/build/295096422 at 2025-04-22 - - quickcheck-webdriver # failure in job https://hydra.nixos.org/build/233228000 at 2023-09-02 - QuickCheckVariant # failure in job https://hydra.nixos.org/build/233239276 at 2023-09-02 - quickjs-hs # failure in job https://hydra.nixos.org/build/233248440 at 2023-09-02 - - QuickPlot # failure in job https://hydra.nixos.org/build/252731670 at 2024-03-16 - - quickpull # failure in job https://hydra.nixos.org/build/233238642 at 2023-09-02 - - quickset # failure in job https://hydra.nixos.org/build/233236904 at 2023-09-02 - - Quickson # failure in job https://hydra.nixos.org/build/233195101 at 2023-09-02 - - quickson # failure in job https://hydra.nixos.org/build/233216697 at 2023-09-02 - quickspec # failure in job https://hydra.nixos.org/build/295096416 at 2025-04-22 - - quickwebapp # failure in job https://hydra.nixos.org/build/233208251 at 2023-09-02 - - quipper-core # failure in job https://hydra.nixos.org/build/233200962 at 2023-09-02 - - quiver # failure in job https://hydra.nixos.org/build/233230395 at 2023-09-02 - - quokka # failure in job https://hydra.nixos.org/build/233196347 at 2023-09-02 - - quoridor-hs # failure in job https://hydra.nixos.org/build/233217459 at 2023-09-02 - r-glpk-phonetic-languages-ukrainian-durations # failure in job https://hydra.nixos.org/build/253703155 at 2024-03-31 - - R-pandoc # failure in job https://hydra.nixos.org/build/233192114 at 2023-09-02 - RabbitMQ # failure in job https://hydra.nixos.org/build/233222087 at 2023-09-02 - - rad # failure in job https://hydra.nixos.org/build/233248990 at 2023-09-02 - radian # failure in job https://hydra.nixos.org/build/233230029 at 2023-09-02 - - radium # failure in job https://hydra.nixos.org/build/233205347 at 2023-09-02 - - radium-formula-parser # failure in job https://hydra.nixos.org/build/233259018 at 2023-09-02 - - radix # failure in job https://hydra.nixos.org/build/233241258 at 2023-09-02 - - rados-haskell # failure in job https://hydra.nixos.org/build/233212247 at 2023-09-02 - - raft # failure in job https://hydra.nixos.org/build/233248392 at 2023-09-02 - - rakhana # failure in job https://hydra.nixos.org/build/233256901 at 2023-09-02 - - rakuten # failure in job https://hydra.nixos.org/build/233196803 at 2023-09-02 - ralist # failure in job https://hydra.nixos.org/build/233195682 at 2023-09-02 - - raml # failure in job https://hydra.nixos.org/build/233212517 at 2023-09-02 - - rand-vars # failure in job https://hydra.nixos.org/build/233219255 at 2023-09-02 - rando # failure in job https://hydra.nixos.org/build/233257817 at 2023-09-02 - - random-access-list # failure in job https://hydra.nixos.org/build/233233464 at 2023-09-02 - random-cycle # failure in job https://hydra.nixos.org/build/233208007 at 2023-09-02 - - random-derive # failure in job https://hydra.nixos.org/build/233222005 at 2023-09-02 - - random-eff # failure in job https://hydra.nixos.org/build/233255496 at 2023-09-02 - - random-fu-multivariate # failure in job https://hydra.nixos.org/build/252715951 at 2024-03-16 - random-source # failure in job https://hydra.nixos.org/build/233254664 at 2023-09-02 - - random-stream # failure in job https://hydra.nixos.org/build/233240384 at 2023-09-02 - - random-string # failure in job https://hydra.nixos.org/build/233223504 at 2023-09-02 - - Randometer # failure in job https://hydra.nixos.org/build/233231023 at 2023-09-02 - - Range # failure in job https://hydra.nixos.org/build/233235824 at 2023-09-02 - - rangemin # failure in job https://hydra.nixos.org/build/233244031 at 2023-09-02 - - rank-product # failure in job https://hydra.nixos.org/build/233239589 at 2023-09-02 - - rapid-term # failure in job https://hydra.nixos.org/build/233251731 at 2023-09-02 - - Rasenschach # failure in job https://hydra.nixos.org/build/234445901 at 2023-09-13 - - rating-chgk-info # failure in job https://hydra.nixos.org/build/233598034 at 2023-09-02 - - rational-list # failure in job https://hydra.nixos.org/build/233197144 at 2023-09-02 - rattle # failure in job https://hydra.nixos.org/build/233234335 at 2023-09-02 - rattletrap # failure in job https://hydra.nixos.org/build/233206840 at 2023-09-02 - rawlock # failure in job https://hydra.nixos.org/build/299186718 at 2025-06-23 - - rawr # fails to build after unbreaking ghc-datasize at 2025-01-19 - raylib-imgui # failure in job https://hydra.nixos.org/build/233222471 at 2023-09-02 - - raz # failure in job https://hydra.nixos.org/build/233218482 at 2023-09-02 - - rbst # failure in job https://hydra.nixos.org/build/233238184 at 2023-09-02 - - rclient # failure in job https://hydra.nixos.org/build/233239290 at 2023-09-02 + - razom-text-util # previously transitively broken at 2025-09-08 - rds-data # failure in job https://hydra.nixos.org/build/299186719 at 2025-06-23 - rds-data-codecs # failure in job https://hydra.nixos.org/build/253696582 at 2024-03-31 - react # failure in job https://hydra.nixos.org/build/257372364 at 2024-04-27 - - react-flux # failure in job https://hydra.nixos.org/build/233246819 at 2023-09-02 - - react-haskell # failure in job https://hydra.nixos.org/build/233242976 at 2023-09-02 - - react-tutorial-haskell-server # failure in job https://hydra.nixos.org/build/233201256 at 2023-09-02 - - reaction-logic # failure in job https://hydra.nixos.org/build/233216789 at 2023-09-02 - - reactive-bacon # failure in job https://hydra.nixos.org/build/233238838 at 2023-09-02 - - reactive-banana-gi-gtk # failure in job https://hydra.nixos.org/build/233219417 at 2023-09-02 - - reactive-banana-sdl2 # failure in job https://hydra.nixos.org/build/233235324 at 2023-09-02 - - reactive-banana-threepenny # failure in job https://hydra.nixos.org/build/233216958 at 2023-09-02 - - reactive-thread # failure in job https://hydra.nixos.org/build/233257806 at 2023-09-02 + - reactive-banana-wx # previously transitively broken at 2025-09-08 - read-bounded # failure in job https://hydra.nixos.org/build/233195369 at 2023-09-02 - - read-ctags # failure in job https://hydra.nixos.org/build/233231382 at 2023-09-02 - - read-io # failure in job https://hydra.nixos.org/build/233244370 at 2023-09-02 - - readability # failure in job https://hydra.nixos.org/build/233205178 at 2023-09-02 - - reader-soup # failure in job https://hydra.nixos.org/build/233198810 at 2023-09-02 - - readline-statevar # failure in job https://hydra.nixos.org/build/233226053 at 2023-09-02 - readme-lhs # failure in job https://hydra.nixos.org/build/233248229 at 2023-09-02 - - readshp # failure in job https://hydra.nixos.org/build/233197835 at 2023-09-02 - - really-simple-xml-parser # failure in job https://hydra.nixos.org/build/233195945 at 2023-09-02 - reanimate-svg # failure in job https://hydra.nixos.org/build/233242271 at 2023-09-02 - - reason-export # failure in job https://hydra.nixos.org/build/233212942 at 2023-09-02 - - reasonable-lens # failure in job https://hydra.nixos.org/build/233233111 at 2023-09-02 - rec-smallarray # failure in job https://hydra.nixos.org/build/233258592 at 2023-09-02 - - record # failure in job https://hydra.nixos.org/build/233242406 at 2023-09-02 - - record-encode # failure in job https://hydra.nixos.org/build/233216156 at 2023-09-02 - - record-wrangler # failure in job https://hydra.nixos.org/build/233212838 at 2023-09-02 - - records # failure in job https://hydra.nixos.org/build/233254822 at 2023-09-02 - - recursive-line-count # failure in job https://hydra.nixos.org/build/252736942 at 2024-03-16 - - recursors # failure in job https://hydra.nixos.org/build/233234451 at 2023-09-02 - - redis-hs # failure in job https://hydra.nixos.org/build/233191943 at 2023-09-02 - - redis-simple # failure in job https://hydra.nixos.org/build/233200379 at 2023-09-02 - - Redmine # failure in job https://hydra.nixos.org/build/233250398 at 2023-09-02 - - reduce-equations # failure in job https://hydra.nixos.org/build/270034373 at 2024-08-19 - - reedsolomon # failure in job https://hydra.nixos.org/build/233215366 at 2023-09-02 - - reenact # failure in job https://hydra.nixos.org/build/233229531 at 2023-09-02 - - Ref # failure in job https://hydra.nixos.org/build/233238498 at 2023-09-02 - - ref # failure in job https://hydra.nixos.org/build/233256479 at 2023-09-02 - - ref-extras # failure in job https://hydra.nixos.org/build/233255903 at 2023-09-02 - - ref-mtl # failure in job https://hydra.nixos.org/build/233260152 at 2023-09-02 - - refcount # failure in job https://hydra.nixos.org/build/233236697 at 2023-09-02 - - Referees # failure in job https://hydra.nixos.org/build/233213892 at 2023-09-02 - - references # failure in job https://hydra.nixos.org/build/233197836 at 2023-09-02 - - refined-http-api-data # failure in job https://hydra.nixos.org/build/233231753 at 2023-09-02 + - reddit # previously transitively broken at 2025-09-08 + - redis-io # previously transitively broken at 2025-09-08 - refined-with # failure in job https://hydra.nixos.org/build/233258564 at 2023-09-02 - refined1 # failure in job https://hydra.nixos.org/build/295096553 at 2025-04-22 - refinery # failure in job https://hydra.nixos.org/build/252717003 at 2024-03-16 - - reflection-extras # failure in job https://hydra.nixos.org/build/233226544 at 2023-09-02 - reflex-backend-socket # failure in job https://hydra.nixos.org/build/233254514 at 2023-09-02 - - reflex-basic-host # failure in job https://hydra.nixos.org/build/233210837 at 2023-09-02 - reflex-dom-ace # failure in job https://hydra.nixos.org/build/233198338 at 2023-09-02 - - reflex-dom-contrib # failure in job https://hydra.nixos.org/build/233258949 at 2023-09-02 - - reflex-dom-fragment-shader-canvas # failure in job https://hydra.nixos.org/build/233202576 at 2023-09-02 - - reflex-dom-helpers # failure in job https://hydra.nixos.org/build/233239532 at 2023-09-02 - reflex-dom-pandoc # failure in job https://hydra.nixos.org/build/233217895 at 2023-09-02 - reflex-dom-retractable # failure in job https://hydra.nixos.org/build/233198362 at 2023-09-02 - - reflex-dom-svg # failure in job https://hydra.nixos.org/build/233193544 at 2023-09-02 - - reflex-dynamic-containers # failure in job https://hydra.nixos.org/build/295096540 at 2025-04-22 - reflex-external-ref # failure in job https://hydra.nixos.org/build/233215834 at 2023-09-02 - - reflex-jsx # failure in job https://hydra.nixos.org/build/233207137 at 2023-09-02 - - reflex-orphans # failure in job https://hydra.nixos.org/build/233249128 at 2023-09-02 - - reflex-transformers # failure in job https://hydra.nixos.org/build/233243647 at 2023-09-02 - reflex-vty # failure in job https://hydra.nixos.org/build/295096544 at 2025-04-22 - reform # failure in job https://hydra.nixos.org/build/252717808 at 2024-03-16 - - reform-hamlet # failure in job https://hydra.nixos.org/build/233230013 at 2023-09-02 - - reform-hsp # failure in job https://hydra.nixos.org/build/233228737 at 2023-09-02 - - reform-lucid # failure in job https://hydra.nixos.org/build/233257636 at 2023-09-02 - - reformat # failure in job https://hydra.nixos.org/build/233212381 at 2023-09-02 - - refresht # failure in job https://hydra.nixos.org/build/233245243 at 2023-09-02 - - refty # failure in job https://hydra.nixos.org/build/233215083 at 2023-09-02 - - reg-alloc # failure in job https://hydra.nixos.org/build/233195081 at 2023-09-02 - - regex-dfa # failure in job https://hydra.nixos.org/build/233242994 at 2023-09-02 - - regex-generator # failure in job https://hydra.nixos.org/build/233239502 at 2023-09-02 - - regex-parsec # failure in job https://hydra.nixos.org/build/233223781 at 2023-09-02 - regex-pcre2 # failure in job https://hydra.nixos.org/build/295096563 at 2025-04-22 - - regex-posix-unittest # failure in job https://hydra.nixos.org/build/233249685 at 2023-09-02 - - regex-tdfa-pipes # failure in job https://hydra.nixos.org/build/233247416 at 2023-09-02 - - regex-tdfa-quasiquoter # failure in job https://hydra.nixos.org/build/233234166 at 2023-09-02 - regex-tdfa-rc # failure in job https://hydra.nixos.org/build/233206042 at 2023-09-02 - - regex-tdfa-text # failure in job https://hydra.nixos.org/build/233191686 at 2023-09-02 - regex-tdfa-unittest # failure in job https://hydra.nixos.org/build/233241081 at 2023-09-02 - - regex-tdfa-utf8 # failure in job https://hydra.nixos.org/build/233211722 at 2023-09-02 - - regex-tre # failure in job https://hydra.nixos.org/build/233236303 at 2023-09-02 - - regex-type # failure in job https://hydra.nixos.org/build/233199739 at 2023-09-02 - - regexdot # failure in job https://hydra.nixos.org/build/233217389 at 2023-09-02 - - regexpr # failure in job https://hydra.nixos.org/build/252711170 at 2024-03-16 - - regexpr-symbolic # failure in job https://hydra.nixos.org/build/233254451 at 2023-09-02 - - regexqq # failure in job https://hydra.nixos.org/build/233233149 at 2023-09-02 - - regions # failure in job https://hydra.nixos.org/build/233196483 at 2023-09-02 - - register-machine-typelevel # failure in job https://hydra.nixos.org/build/233217514 at 2023-09-02 - registry-messagepack # failure in job https://hydra.nixos.org/build/303231364 at 2025-07-27 - registry-options # failure in job https://hydra.nixos.org/build/295096594 at 2025-04-22 - - regress # failure in job https://hydra.nixos.org/build/233208901 at 2023-09-02 - - regular # failure in job https://hydra.nixos.org/build/233232656 at 2023-09-02 - - rehoo # failure in job https://hydra.nixos.org/build/233246417 at 2023-09-02 - - rei # failure in job https://hydra.nixos.org/build/233221328 at 2023-09-02 - - reified-records # failure in job https://hydra.nixos.org/build/233220595 at 2023-09-02 - - reify # failure in job https://hydra.nixos.org/build/233247509 at 2023-09-02 - - relacion # failure in job https://hydra.nixos.org/build/233241624 at 2023-09-02 - relation # failure in job https://hydra.nixos.org/build/233244581 at 2023-09-02 - - relational-postgresql8 # failure in job https://hydra.nixos.org/build/295096600 at 2025-04-22 - - relational-query-postgresql-pure # failure in job https://hydra.nixos.org/build/296063076 at 2025-05-02 - - relevant-time # failure in job https://hydra.nixos.org/build/233190794 at 2023-09-02 - - reload # failure in job https://hydra.nixos.org/build/233212925 at 2023-09-02 - relocant # failure in job https://hydra.nixos.org/build/295096588 at 2025-04-22 - - remark # failure in job https://hydra.nixos.org/build/233240981 at 2023-09-02 - - remarks # failure in job https://hydra.nixos.org/build/233256889 at 2023-09-02 - - remote # failure in job https://hydra.nixos.org/build/233220714 at 2023-09-02 - - remote-debugger # failure in job https://hydra.nixos.org/build/233199491 at 2023-09-02 - - remote-monad # failure in job https://hydra.nixos.org/build/233247733 at 2023-09-02 - - reorderable # failure in job https://hydra.nixos.org/build/233256477 at 2023-09-02 - - repa-bytestring # failure in job https://hydra.nixos.org/build/252723812 at 2024-03-16 - - repa-devil # failure in job https://hydra.nixos.org/build/252724171 at 2024-03-16 - repa-examples # failure in job https://hydra.nixos.org/build/252712195 at 2024-03-16 - - repa-linear-algebra # failure in job https://hydra.nixos.org/build/252713634 at 2024-03-16 - - repa-series # failure in job https://hydra.nixos.org/build/233200085 at 2023-09-02 - - repa-stream # failure in job https://hydra.nixos.org/build/283561119 at 2024-12-31 - - repl # failure in job https://hydra.nixos.org/build/233233135 at 2023-09-02 - - repl-toolkit # failure in job https://hydra.nixos.org/build/233246536 at 2023-09-02 - ReplaceUmlaut # failure in job https://hydra.nixos.org/build/233228662 at 2023-09-02 - - RepLib # failure in job https://hydra.nixos.org/build/233210112 at 2023-09-02 - - replica # failure in job https://hydra.nixos.org/build/233214750 at 2023-09-02 - - ReplicateEffects # failure in job https://hydra.nixos.org/build/233233197 at 2023-09-02 - - representable-functors # failure in job https://hydra.nixos.org/build/233252174 at 2023-09-02 - reprinter # failure in job https://hydra.nixos.org/build/233232702 at 2023-09-02 - - reproject # failure in job https://hydra.nixos.org/build/233214934 at 2023-09-02 - req-conduit # failure in job https://hydra.nixos.org/build/233248395 at 2023-09-02 - - req-url-extra # failure in job https://hydra.nixos.org/build/233198488 at 2023-09-02 - reqcatcher # failure in job https://hydra.nixos.org/build/295096611 at 2025-04-22 - request # failure in job https://hydra.nixos.org/build/233256702 at 2023-09-02 - - request-monad # failure in job https://hydra.nixos.org/build/233204896 at 2023-09-02 - require # failure in job https://hydra.nixos.org/build/233203170 at 2023-09-02 - requirements # failure in job https://hydra.nixos.org/build/252711740 at 2024-03-16 - rere # failure in job https://hydra.nixos.org/build/295096658 at 2025-04-22 - rescue # failure in job https://hydra.nixos.org/build/233230073 at 2023-09-02 - - reservoir # failure in job https://hydra.nixos.org/build/233194430 at 2023-09-02 - - resolve # failure in job https://hydra.nixos.org/build/233224070 at 2023-09-02 - - resolve-trivial-conflicts # failure in job https://hydra.nixos.org/build/233237974 at 2023-09-02 - - resource-effect # failure in job https://hydra.nixos.org/build/233253816 at 2023-09-02 + - reserve # previously transitively broken at 2025-09-08 - resource-effectful # failure in job https://hydra.nixos.org/build/252712267 at 2024-03-16 - - resource-embed # failure in job https://hydra.nixos.org/build/233209109 at 2023-09-02 - - resource-pool-monad # failure in job https://hydra.nixos.org/build/233204199 at 2023-09-02 - resource-registry # failure in job https://hydra.nixos.org/build/299350536 at 2025-06-23 - resourcet-pool # failure in job https://hydra.nixos.org/build/233213894 at 2023-09-02 - resp # failure in job https://hydra.nixos.org/build/295096632 at 2025-04-22 - - respond # failure in job https://hydra.nixos.org/build/295096626 at 2025-04-22 - restartable # failure in job https://hydra.nixos.org/build/233220815 at 2023-09-02 - - restyle # failure in job https://hydra.nixos.org/build/233199043 at 2023-09-02 - - resumable-exceptions # failure in job https://hydra.nixos.org/build/233206560 at 2023-09-02 - - rethinkdb # failure in job https://hydra.nixos.org/build/233211172 at 2023-09-02 - - rethinkdb-client-driver # failure in job https://hydra.nixos.org/build/233216583 at 2023-09-02 + - restful-snap # previously transitively broken at 2025-09-08 - retroclash-lib # failure in job https://hydra.nixos.org/build/295096644 at 2025-04-22 - retry-effectful # failure in job https://hydra.nixos.org/build/295096646 at 2025-04-22 - - retryer # failure in job https://hydra.nixos.org/build/233193427 at 2023-09-02 - - reverse-geocoding # failure in job https://hydra.nixos.org/build/233238347 at 2023-09-02 - reverse-list # failure in job https://hydra.nixos.org/build/233192931 at 2023-09-02 - - reversi # failure in job https://hydra.nixos.org/build/233205170 at 2023-09-02 - - ReviewBoard # failure in job https://hydra.nixos.org/build/233217736 at 2023-09-02 - - rewrite-inspector # failure in job https://hydra.nixos.org/build/233243472 at 2023-09-02 - - rfc # failure in job https://hydra.nixos.org/build/233241988 at 2023-09-02 - - rfc-prelude # failure in job https://hydra.nixos.org/build/233227572 at 2023-09-02 - rhbzquery # failure in job https://hydra.nixos.org/build/233259706 at 2023-09-02 - riak # failure in job https://hydra.nixos.org/build/233192622 at 2023-09-02 - riak-protobuf-lens # failure in job https://hydra.nixos.org/build/233203142 at 2023-09-02 - rib-core # failure in job https://hydra.nixos.org/build/233231659 at 2023-09-02 - ribbit # failure in job https://hydra.nixos.org/build/233191000 at 2023-09-02 - - RichConditional # failure in job https://hydra.nixos.org/build/233218626 at 2023-09-02 - ridley # failure in job https://hydra.nixos.org/build/295096653 at 2025-04-22 - - riemann # failure in job https://hydra.nixos.org/build/233207899 at 2023-09-02 - - riff # failure in job https://hydra.nixos.org/build/233202602 at 2023-09-02 - - rigel-viz # failure in job https://hydra.nixos.org/build/233251060 at 2023-09-02 - ring-buffers # failure in job https://hydra.nixos.org/build/233259860 at 2023-09-02 - - rings # failure in job https://hydra.nixos.org/build/252730924 at 2024-03-16 - risc386 # failure in job https://hydra.nixos.org/build/295096662 at 2025-04-22 - - riscv-isa # failure in job https://hydra.nixos.org/build/233192811 at 2023-09-02 - risk-weaver # failure in job https://hydra.nixos.org/build/295096664 at 2025-04-22 - - rison # failure in job https://hydra.nixos.org/build/233231694 at 2023-09-02 - - Ritt-Wu # failure in job https://hydra.nixos.org/build/233221182 at 2023-09-02 - - rivers # failure in job https://hydra.nixos.org/build/233225238 at 2023-09-02 - - rivet-migration # failure in job https://hydra.nixos.org/build/233191937 at 2023-09-02 - - rivet-simple-deploy # failure in job https://hydra.nixos.org/build/233229780 at 2023-09-02 - - rl-satton # failure in job https://hydra.nixos.org/build/233256608 at 2023-09-02 - - Rlang-QQ # failure in job https://hydra.nixos.org/build/295091095 at 2025-04-22 - rle # failure in job https://hydra.nixos.org/build/233238229 at 2023-09-02 - - rlglue # failure in job https://hydra.nixos.org/build/233222786 at 2023-09-02 - - RLP # failure in job https://hydra.nixos.org/build/233222770 at 2023-09-02 - - robin # failure in job https://hydra.nixos.org/build/233205010 at 2023-09-02 + - rncryptor # previously transitively broken at 2025-09-08 - robots-txt # failure in job https://hydra.nixos.org/build/233243090 at 2023-09-02 - - roc-cluster # failure in job https://hydra.nixos.org/build/233202517 at 2023-09-02 - - roguestar # failure in job https://hydra.nixos.org/build/233233677 at 2023-09-02 - - roku-api # failure in job https://hydra.nixos.org/build/233249158 at 2023-09-02 + - rock # previously transitively broken at 2025-09-08 - rollbar-client # failure in job https://hydra.nixos.org/build/233241484 at 2023-09-02 - - rollbar-hs # failure in job https://hydra.nixos.org/build/233240182 at 2023-09-02 - - roller # failure in job https://hydra.nixos.org/build/233198848 at 2023-09-02 - - roman-numerals # failure in job https://hydra.nixos.org/build/233214716 at 2023-09-02 - ron # failure in job https://hydra.nixos.org/build/233197052 at 2023-09-02 - ron-hs # failure in job https://hydra.nixos.org/build/295096708 at 2025-04-22 - - rope # failure in job https://hydra.nixos.org/build/233198109 at 2023-09-02 - rose # failure in job https://hydra.nixos.org/build/252717613 at 2024-03-16 - - rose-trees # timeout - rosebud # failure in job https://hydra.nixos.org/build/233225772 at 2023-09-02 - - rosmsg # failure in job https://hydra.nixos.org/build/233248569 at 2023-09-02 - - rospkg # failure in job https://hydra.nixos.org/build/233229989 at 2023-09-02 - - rosso # failure in job https://hydra.nixos.org/build/233230103 at 2023-09-02 - - rotating-log # failure in job https://hydra.nixos.org/build/233206245 at 2023-09-02 - - rounding # failure in job https://hydra.nixos.org/build/233234537 at 2023-09-02 - - roundtrip-aeson # failure in job https://hydra.nixos.org/build/233253408 at 2023-09-02 - - rowrecord # failure in job https://hydra.nixos.org/build/233208964 at 2023-09-02 - - rpc-framework # failure in job https://hydra.nixos.org/build/233202964 at 2023-09-02 - - rpm # failure in job https://hydra.nixos.org/build/233194513 at 2023-09-02 - rpmbuild-order # failure in job https://hydra.nixos.org/build/233257209 at 2023-09-02 - rpmostree-update # failure in job https://hydra.nixos.org/build/233254709 at 2023-09-02 - rrule # failure in job https://hydra.nixos.org/build/233259470 at 2023-09-02 - rsi-break # failure in job https://hydra.nixos.org/build/245788743 at 2024-01-07 - - rspp # failure in job https://hydra.nixos.org/build/233236691 at 2023-09-02 - - rss2irc # failure in job https://hydra.nixos.org/build/233196081 at 2023-09-02 - - rstream # failure in job https://hydra.nixos.org/build/233249587 at 2023-09-02 - RtMidi # failure in job https://hydra.nixos.org/build/233241377 at 2023-09-02 - - rtnetlink # failure in job https://hydra.nixos.org/build/233198783 at 2023-09-02 - rtorrent-rpc # failure in job https://hydra.nixos.org/build/233202187 at 2023-09-02 - - rtorrent-state # failure in job https://hydra.nixos.org/build/233216983 at 2023-09-02 - - rts-loader # failure in job https://hydra.nixos.org/build/233226464 at 2023-09-02 - - rubberband # failure in job https://hydra.nixos.org/build/233191496 at 2023-09-02 - ruby-marshal # failure in job https://hydra.nixos.org/build/233242569 at 2023-09-02 - - ruby-qq # failure in job https://hydra.nixos.org/build/233259084 at 2023-09-02 - - ruff # failure in job https://hydra.nixos.org/build/233200285 at 2023-09-02 - - ruin # failure in job https://hydra.nixos.org/build/233247866 at 2023-09-02 - runhs # failure in job https://hydra.nixos.org/build/233193983 at 2023-09-02 - - runmany # failure in job https://hydra.nixos.org/build/233241476 at 2023-09-02 - runtime-instances # failure in job https://hydra.nixos.org/build/233217985 at 2023-09-02 - rustls # failure in job https://hydra.nixos.org/build/233249545 at 2023-09-02 - - rws # failure in job https://hydra.nixos.org/build/233237887 at 2023-09-02 - - RxHaskell # failure in job https://hydra.nixos.org/build/233248784 at 2023-09-02 - rz-pipe # failure in job https://hydra.nixos.org/build/233228273 at 2023-09-02 - rzk # failure in job https://hydra.nixos.org/build/252726148 at 2024-03-16 - - SableCC2Hs # failure in job https://hydra.nixos.org/build/233213351 at 2023-09-02 - - safe-access # failure in job https://hydra.nixos.org/build/252736917 at 2024-03-16 - - safe-buffer-monad # failure in job https://hydra.nixos.org/build/233192108 at 2023-09-02 - - safe-coerce # failure in job https://hydra.nixos.org/build/233244289 at 2023-09-02 - - safe-exceptions-checked # failure in job https://hydra.nixos.org/build/252717135 at 2024-03-16 - - safe-freeze # failure in job https://hydra.nixos.org/build/233230451 at 2023-09-02 - - safe-globals # failure in job https://hydra.nixos.org/build/233201910 at 2023-09-02 - - safe-lazy-io # failure in job https://hydra.nixos.org/build/233236485 at 2023-09-02 - - safe-length # failure in job https://hydra.nixos.org/build/233255904 at 2023-09-02 - - safe-money-xmlbf # failure in job https://hydra.nixos.org/build/233254139 at 2023-09-02 - - safe-printf # failure in job https://hydra.nixos.org/build/233232731 at 2023-09-02 - safe-tensor # failure in job https://hydra.nixos.org/build/233212430 at 2023-09-02 - - safecopy-migrate # failure in job https://hydra.nixos.org/build/233224574 at 2023-09-02 - - safecopy-store # failure in job https://hydra.nixos.org/build/233227973 at 2023-09-02 - - safeint # failure in job https://hydra.nixos.org/build/233257369 at 2023-09-02 - - safepath # failure in job https://hydra.nixos.org/build/233235468 at 2023-09-02 - - saferoute # failure in job https://hydra.nixos.org/build/233254085 at 2023-09-02 - sajson # failure in job https://hydra.nixos.org/build/233197310 at 2023-09-02 - - sakuraio-platform # failure in job https://hydra.nixos.org/build/233198228 at 2023-09-02 - salak # failure in job https://hydra.nixos.org/build/233236898 at 2023-09-02 - - Salsa # failure in job https://hydra.nixos.org/build/233257551 at 2023-09-02 - - salvia-protocol # failure in job https://hydra.nixos.org/build/233220788 at 2023-09-02 - - sandlib # failure in job https://hydra.nixos.org/build/233249740 at 2023-09-02 - - sandman # failure in job https://hydra.nixos.org/build/233209667 at 2023-09-02 - sandwatch # failure in job https://hydra.nixos.org/build/295096742 at 2025-04-22 - sandwich-contexts # failure in job https://hydra.nixos.org/build/282178661 at 2024-12-23 - - sarasvati # failure in job https://hydra.nixos.org/build/233208235 at 2023-09-02 - - sat # failure in job https://hydra.nixos.org/build/233225713 at 2023-09-02 - - satchmo-backends # failure in job https://hydra.nixos.org/build/233228506 at 2023-09-02 - - satchmo-minisat # failure in job https://hydra.nixos.org/build/233229585 at 2023-09-02 - - Saturnin # failure in job https://hydra.nixos.org/build/233227938 at 2023-09-02 - satyros # failure in job https://hydra.nixos.org/build/233199726 at 2023-09-02 - - savage # failure in job https://hydra.nixos.org/build/233213243 at 2023-09-02 - - sax # failure in job https://hydra.nixos.org/build/233218617 at 2023-09-02 - sbv # failure in job https://hydra.nixos.org/build/233210414 at 2023-09-02 - - sc2-proto # failure in job https://hydra.nixos.org/build/252730301 at 2024-03-16 - scale # failure in job https://hydra.nixos.org/build/233222189 at 2023-09-02 - - scaleimage # failure in job https://hydra.nixos.org/build/233240688 at 2023-09-02 - - scalendar # failure in job https://hydra.nixos.org/build/233206581 at 2023-09-02 - - scgi # failure in job https://hydra.nixos.org/build/233247314 at 2023-09-02 - - schedevr # failure in job https://hydra.nixos.org/build/233240124 at 2023-09-02 - - schedule-planner # failure in job https://hydra.nixos.org/build/233192691 at 2023-09-02 - - schedyield # failure in job https://hydra.nixos.org/build/233213288 at 2023-09-02 - - schemas # failure in job https://hydra.nixos.org/build/233225239 at 2023-09-02 - - scholdoc-types # failure in job https://hydra.nixos.org/build/233194927 at 2023-09-02 - - sci-ratio # failure in job https://hydra.nixos.org/build/233258475 at 2023-09-02 - - scidb-hquery # failure in job https://hydra.nixos.org/build/233257053 at 2023-09-02 - - SciFlow # failure in job https://hydra.nixos.org/build/295091174 at 2025-04-22 - - scons2dot # failure in job https://hydra.nixos.org/build/233204528 at 2023-09-02 - - scottish # failure in job https://hydra.nixos.org/build/233251021 at 2023-09-02 - - scotty-binding-play # failure in job https://hydra.nixos.org/build/233244465 at 2023-09-02 - - scotty-blaze # failure in job https://hydra.nixos.org/build/233190960 at 2023-09-02 - - scotty-cookie # failure in job https://hydra.nixos.org/build/252738988 at 2024-03-16 - - scotty-format # failure in job https://hydra.nixos.org/build/233249643 at 2023-09-02 - - scotty-path-normalizer # failure in job https://hydra.nixos.org/build/252738625 at 2024-03-16 + - scalpel-search # previously transitively broken at 2025-09-08 + - scotty-form # previously transitively broken at 2025-09-08 - scotty-resource # failure in job https://hydra.nixos.org/build/233258457 at 2023-09-02 - - scotty-rest # failure in job https://hydra.nixos.org/build/233209040 at 2023-09-02 - - scotty-session # failure in job https://hydra.nixos.org/build/233258736 at 2023-09-02 - scotty-utils # failure in job https://hydra.nixos.org/build/252727834 at 2024-03-16 - - scotty-view # failure in job https://hydra.nixos.org/build/233245343 at 2023-09-02 - scrapbook-core # failure in job https://hydra.nixos.org/build/233222406 at 2023-09-02 - - scrape-changes # failure in job https://hydra.nixos.org/build/233225890 at 2023-09-02 - - ScratchFs # failure in job https://hydra.nixos.org/build/233257558 at 2023-09-02 - script-monad # failure in job https://hydra.nixos.org/build/233221600 at 2023-09-02 - - scrobble # failure in job https://hydra.nixos.org/build/233252277 at 2023-09-02 + - scroll # previously transitively broken at 2025-09-08 - scroll-list # failure in job https://hydra.nixos.org/build/233217737 at 2023-09-02 - - scrz # failure in job https://hydra.nixos.org/build/233230705 at 2023-09-02 - - scythe # failure in job https://hydra.nixos.org/build/233259400 at 2023-09-02 - - scyther-proof # failure in job https://hydra.nixos.org/build/233248937 at 2023-09-02 - - sde-solver # failure in job https://hydra.nixos.org/build/233251017 at 2023-09-02 - - sdl2-cairo-image # failure in job https://hydra.nixos.org/build/233210135 at 2023-09-02 - - sdl2-compositor # failure in job https://hydra.nixos.org/build/233198910 at 2023-09-02 - - sdl2-fps # failure in job https://hydra.nixos.org/build/233195346 at 2023-09-02 - sdl2-image # failure in job https://hydra.nixos.org/build/233216837 at 2023-09-02 - sdl2-mixer # failure in job https://hydra.nixos.org/build/233228951 at 2023-09-02 - sdp # failure in job https://hydra.nixos.org/build/233246702 at 2023-09-02 - sdr # failure in job https://hydra.nixos.org/build/243807383 at 2024-01-01 - - seacat # failure in job https://hydra.nixos.org/build/233229959 at 2023-09-02 - - seakale # failure in job https://hydra.nixos.org/build/233236200 at 2023-09-02 - - search # failure in job https://hydra.nixos.org/build/252723014 at 2024-03-16 - - sec # failure in job https://hydra.nixos.org/build/233233150 at 2023-09-02 - - secd # failure in job https://hydra.nixos.org/build/252725214 at 2024-03-16 - - secdh # failure in job https://hydra.nixos.org/build/233244391 at 2023-09-02 - seclib # failure in job https://hydra.nixos.org/build/233203235 at 2023-09-02 - - second-transfer # failure in job https://hydra.nixos.org/build/233214725 at 2023-09-02 - - secp256k1 # failure in job https://hydra.nixos.org/build/233231129 at 2023-09-02 - - secp256k1-legacy # failure in job https://hydra.nixos.org/build/233197038 at 2023-09-02 - - secret-santa # failure in job https://hydra.nixos.org/build/233208686 at 2023-09-02 - secure-memory # failure in job https://hydra.nixos.org/build/233226568 at 2023-09-02 - - secure-sockets # failure in job https://hydra.nixos.org/build/233254170 at 2023-09-02 - SecureHash-SHA3 # failure in job https://hydra.nixos.org/build/233216866 at 2023-09-02 - - secureUDP # failure in job https://hydra.nixos.org/build/233215410 at 2023-09-02 - - SegmentTree # failure in job https://hydra.nixos.org/build/233216161 at 2023-09-02 - selda-postgresql # failure in job https://hydra.nixos.org/build/245539286 at 2024-01-02 - - selectors # failure in job https://hydra.nixos.org/build/233227433 at 2023-09-02 - - selenium # failure in job https://hydra.nixos.org/build/233214276 at 2023-09-02 - - selinux # failure in job https://hydra.nixos.org/build/233192853 at 2023-09-02 - - Semantique # failure in job https://hydra.nixos.org/build/233199841 at 2023-09-02 - - semdoc # failure in job https://hydra.nixos.org/build/233258790 at 2023-09-02 - semialign-indexed # failure in job https://hydra.nixos.org/build/233210150 at 2023-09-02 - semialign-optics # failure in job https://hydra.nixos.org/build/233229100 at 2023-09-02 - semibounded-lattices # failure in job https://hydra.nixos.org/build/233195267 at 2023-09-02 - - Semigroup # failure in job https://hydra.nixos.org/build/233201793 at 2023-09-02 - - semigroupoid-extras # failure in job https://hydra.nixos.org/build/252717980 at 2024-03-16 - semigroupoids-do # failure in job https://hydra.nixos.org/build/252727319 at 2024-03-16 - - semigroupoids-syntax # failure in job https://hydra.nixos.org/build/233213850 at 2023-09-02 - - semigroups-actions # failure in job https://hydra.nixos.org/build/233216317 at 2023-09-02 - - sendgrid-haskell # failure in job https://hydra.nixos.org/build/233228693 at 2023-09-02 - sendgrid-v3 # failure in job https://hydra.nixos.org/build/233224134 at 2023-09-02 - - sensu-run # failure in job https://hydra.nixos.org/build/233251719 at 2023-09-02 - - sentry # failure in job https://hydra.nixos.org/build/233246813 at 2023-09-02 - seonbi # failure in job https://hydra.nixos.org/build/233196115 at 2023-09-02 - - separated # failure in job https://hydra.nixos.org/build/233222642 at 2023-09-02 - - SeqAlign # failure in job https://hydra.nixos.org/build/233214595 at 2023-09-02 - - sequent-core # failure in job https://hydra.nixos.org/build/233202838 at 2023-09-02 - - sequential-index # failure in job https://hydra.nixos.org/build/233228686 at 2023-09-02 - serdoc-core # failure in job https://hydra.nixos.org/build/252726252 at 2024-03-16 - - serf # failure in job https://hydra.nixos.org/build/233251981 at 2023-09-02 - - serial # failure in job https://hydra.nixos.org/build/252729356 at 2024-03-16 - - serialize-instances # failure in job https://hydra.nixos.org/build/233239330 at 2023-09-02 - - serokell-util # failure in job https://hydra.nixos.org/build/233209952 at 2023-09-02 - - servant-aeson-specs # failure in job https://hydra.nixos.org/build/233202245 at 2023-09-02 - - servant-auth-cookie # failure in job https://hydra.nixos.org/build/233235829 at 2023-09-02 - - servant-auth-hmac # failure in job https://hydra.nixos.org/build/295096844 at 2025-04-22 - - servant-avro # failure in job https://hydra.nixos.org/build/233225632 at 2023-09-02 - servant-benchmark # failure in job https://hydra.nixos.org/build/233203748 at 2023-09-02 - servant-cassava # failure in job https://hydra.nixos.org/build/252730906 at 2024-03-16 - servant-client-js # failure in job https://hydra.nixos.org/build/233194725 at 2023-09-02 - servant-combinators # failure in job https://hydra.nixos.org/build/233249924 at 2023-09-02 - - servant-db # failure in job https://hydra.nixos.org/build/233234946 at 2023-09-02 - - servant-dhall # failure in job https://hydra.nixos.org/build/233201199 at 2023-09-02 - servant-docs-simple # failure in job https://hydra.nixos.org/build/233237374 at 2023-09-02 - - servant-ekg # failure in job https://hydra.nixos.org/build/295096851 at 2025-04-22 - servant-errors # failure in job https://hydra.nixos.org/build/233239712 at 2023-09-02 - servant-event-stream # failure in job https://hydra.nixos.org/build/302806100 at 2025-07-27 - servant-gdp # failure in job https://hydra.nixos.org/build/233191664 at 2023-09-02 - - servant-generate # failure in job https://hydra.nixos.org/build/233199452 at 2023-09-02 - - servant-generic # failure in job https://hydra.nixos.org/build/233211338 at 2023-09-02 - - servant-github # failure in job https://hydra.nixos.org/build/233231566 at 2023-09-02 - - servant-github-webhook # failure in job https://hydra.nixos.org/build/233234237 at 2023-09-02 - servant-htmx # failure in job https://hydra.nixos.org/build/233214786 at 2023-09-02 - - servant-http2-client # failure in job https://hydra.nixos.org/build/260189694 at 2024-05-19 - servant-iCalendar # failure in job https://hydra.nixos.org/build/233200493 at 2023-09-02 - - servant-jquery # failure in job https://hydra.nixos.org/build/233238796 at 2023-09-02 - - servant-kotlin # failure in job https://hydra.nixos.org/build/233598190 at 2023-09-02 + - servant-js # previously transitively broken at 2025-09-08 - servant-lint # failure in job https://hydra.nixos.org/build/295096919 at 2025-04-22 - - servant-mock # failure in job https://hydra.nixos.org/build/245788431 at 2024-01-07 - - servant-namedargs # failure in job https://hydra.nixos.org/build/233258674 at 2023-09-02 - - servant-nix # failure in job https://hydra.nixos.org/build/233236159 at 2023-09-02 - - servant-pandoc # failure in job https://hydra.nixos.org/build/233203008 at 2023-09-02 - servant-polysemy # failure in job https://hydra.nixos.org/build/233218670 at 2023-09-02 - - servant-pool # failure in job https://hydra.nixos.org/build/233208935 at 2023-09-02 - servant-prometheus # failure in job https://hydra.nixos.org/build/236685165 at 2023-10-04 - - servant-proto-lens # failure in job https://hydra.nixos.org/build/252736298 at 2024-03-16 - - servant-purescript # failure in job https://hydra.nixos.org/build/233598080 at 2023-09-02 - - servant-py # failure in job https://hydra.nixos.org/build/233598104 at 2023-09-02 - - servant-reflex # failure in job https://hydra.nixos.org/build/233212870 at 2023-09-02 - - servant-router # failure in job https://hydra.nixos.org/build/233246333 at 2023-09-02 - - servant-ruby # failure in job https://hydra.nixos.org/build/233598144 at 2023-09-02 - - servant-scotty # failure in job https://hydra.nixos.org/build/233248472 at 2023-09-02 - - servant-smsc-ru # failure in job https://hydra.nixos.org/build/233239620 at 2023-09-02 - - servant-stache # failure in job https://hydra.nixos.org/build/233204547 at 2023-09-02 - servant-static-th # failure in job https://hydra.nixos.org/build/233191735 at 2023-09-02 - - servant-streaming # failure in job https://hydra.nixos.org/build/233215168 at 2023-09-02 - servant-streamly # failure in job https://hydra.nixos.org/build/233231404 at 2023-09-02 - - servant-subscriber # failure in job https://hydra.nixos.org/build/295096905 at 2025-04-22 - servant-to-elm # failure in job https://hydra.nixos.org/build/253681347 at 2024-03-31 - servant-tracing # failure in job https://hydra.nixos.org/build/233229308 at 2023-09-02 - servant-typed-error # failure in job https://hydra.nixos.org/build/252727241 at 2024-03-16 - servant-util # failure in job https://hydra.nixos.org/build/252729690 at 2024-03-16 - - servant-wasm # failure in job https://hydra.nixos.org/build/233191644 at 2023-09-02 - servant-xml-conduit # failure in job https://hydra.nixos.org/build/243828707 at 2024-01-01 - - servant-yaml # failure in job https://hydra.nixos.org/build/233260010 at 2023-09-02 - - servant-zeppelin # failure in job https://hydra.nixos.org/build/233230172 at 2023-09-02 - server-generic # failure in job https://hydra.nixos.org/build/233194042 at 2023-09-02 - serverless-haskell # failure in job https://hydra.nixos.org/build/233201987 at 2023-09-02 - serversession-backend-acid-state # failure in job https://hydra.nixos.org/build/233202796 at 2023-09-02 - serversession-backend-persistent # failure in job https://hydra.nixos.org/build/233239242 at 2023-09-02 - - services # failure in job https://hydra.nixos.org/build/233249029 at 2023-09-02 - - serviette # failure in job https://hydra.nixos.org/build/233226968 at 2023-09-02 - - ses-html-snaplet # failure in job https://hydra.nixos.org/build/252719452 at 2024-03-16 - - SessionLogger # failure in job https://hydra.nixos.org/build/233235790 at 2023-09-02 - - sessions # failure in job https://hydra.nixos.org/build/233214614 at 2023-09-02 - - sessiontypes # failure in job https://hydra.nixos.org/build/233224975 at 2023-09-02 - - set-of # failure in job https://hydra.nixos.org/build/233202960 at 2023-09-02 - set-with # failure in job https://hydra.nixos.org/build/233209870 at 2023-09-02 - - setdown # failure in job https://hydra.nixos.org/build/241521053 at 2023-12-03 - - setgame # failure in job https://hydra.nixos.org/build/233218664 at 2023-09-02 - - setoid # failure in job https://hydra.nixos.org/build/233213744 at 2023-09-02 - sets # failure in job https://hydra.nixos.org/build/252722613 at 2024-03-16 - - setters # failure in job https://hydra.nixos.org/build/233199079 at 2023-09-02 - sexp # failure in job https://hydra.nixos.org/build/233214197 at 2023-09-02 - sexpr-parser # failure in job https://hydra.nixos.org/build/233208359 at 2023-09-02 - sexpresso # failure in job https://hydra.nixos.org/build/252739111 at 2024-03-16 - - sext # failure in job https://hydra.nixos.org/build/233245441 at 2023-09-02 - - SFML # failure in job https://hydra.nixos.org/build/233244892 at 2023-09-02 - - sfml-audio # failure in job https://hydra.nixos.org/build/233253560 at 2023-09-02 - - sfmt # failure in job https://hydra.nixos.org/build/233260124 at 2023-09-02 - - SG # failure in job https://hydra.nixos.org/build/233228780 at 2023-09-02 - - sgd # failure in job https://hydra.nixos.org/build/233240302 at 2023-09-02 - - SGplus # failure in job https://hydra.nixos.org/build/233227890 at 2023-09-02 - - sh2md # failure in job https://hydra.nixos.org/build/233254149 at 2023-09-02 - - sha-streams # failure in job https://hydra.nixos.org/build/233257983 at 2023-09-02 - sha1 # failure in job https://hydra.nixos.org/build/295096920 at 2025-04-22 - - shade # failure in job https://hydra.nixos.org/build/233227940 at 2023-09-02 - - shadower # failure in job https://hydra.nixos.org/build/233224166 at 2023-09-02 - - shake-bindist # failure in job https://hydra.nixos.org/build/295096921 at 2025-04-22 - - shake-cabal-build # failure in job https://hydra.nixos.org/build/233192322 at 2023-09-02 - - shake-dhall # failure in job https://hydra.nixos.org/build/233246191 at 2023-09-02 - - shake-extras # failure in job https://hydra.nixos.org/build/233192079 at 2023-09-02 - - shake-minify # failure in job https://hydra.nixos.org/build/233251572 at 2023-09-02 - - shake-pack # failure in job https://hydra.nixos.org/build/233195211 at 2023-09-02 - - shake-path # failure in job https://hydra.nixos.org/build/233247617 at 2023-09-02 - - shake-persist # failure in job https://hydra.nixos.org/build/233228771 at 2023-09-02 - - shakespeare-babel # failure in job https://hydra.nixos.org/build/233252003 at 2023-09-02 - - shakespeare-sass # failure in job https://hydra.nixos.org/build/233195432 at 2023-09-02 - - shapes # failure in job https://hydra.nixos.org/build/252736910 at 2024-03-16 - - shared-buffer # failure in job https://hydra.nixos.org/build/233242275 at 2023-09-02 - - shared-fields # failure in job https://hydra.nixos.org/build/233228500 at 2023-09-02 - - she # failure in job https://hydra.nixos.org/build/233214251 at 2023-09-02 - - shell-pipe # failure in job https://hydra.nixos.org/build/233226605 at 2023-09-02 - - Shellac # failure in job https://hydra.nixos.org/build/233214058 at 2023-09-02 - - shellish # failure in job https://hydra.nixos.org/build/233217316 at 2023-09-02 - - shellmate # failure in job https://hydra.nixos.org/build/233217636 at 2023-09-02 - - shentong # failure in job https://hydra.nixos.org/build/252711957 at 2024-03-16 - shikensu # failure in job https://hydra.nixos.org/build/233230883 at 2023-09-02 - - shimmer # failure in job https://hydra.nixos.org/build/233192737 at 2023-09-02 - - shine-examples # failure in job https://hydra.nixos.org/build/233192871 at 2023-09-02 - - shivers-cfg # failure in job https://hydra.nixos.org/build/233218516 at 2023-09-02 - - shoap # failure in job https://hydra.nixos.org/build/233207909 at 2023-09-02 - - shopify # failure in job https://hydra.nixos.org/build/233221330 at 2023-09-02 - shortbytestring # failure in job https://hydra.nixos.org/build/233216026 at 2023-09-02 - shortcut-links # failure in job https://hydra.nixos.org/build/233217442 at 2023-09-02 - - shorten-strings # failure in job https://hydra.nixos.org/build/233247947 at 2023-09-02 - - show-prettyprint # failure in job https://hydra.nixos.org/build/233213552 at 2023-09-02 - - show-type # failure in job https://hydra.nixos.org/build/233225756 at 2023-09-02 - Shpadoinkle # failure in job https://hydra.nixos.org/build/257372361 at 2024-04-27 - Shpadoinkle-console # failure in job https://hydra.nixos.org/build/233228559 at 2023-09-02 - - Shpadoinkle-debug # failure in job https://hydra.nixos.org/build/233194479 at 2023-09-02 - Shpadoinkle-isreal # failure in job https://hydra.nixos.org/build/233200051 at 2023-09-02 - - shwifty # failure in job https://hydra.nixos.org/build/233249022 at 2023-09-02 - si-timers # failure in job https://hydra.nixos.org/build/273467737 at 2024-10-01 - - sifflet # failure in job https://hydra.nixos.org/build/233210515 at 2023-09-02 - - sifflet-lib # failure in job https://hydra.nixos.org/build/233222675 at 2023-09-02 - sigmacord # failure in job https://hydra.nixos.org/build/233194491 at 2023-09-02 - signable # failure in job https://hydra.nixos.org/build/259979871 at 2024-05-19 - signable-haskell-protoc # failure in job https://hydra.nixos.org/build/252734188 at 2024-03-16 - signal-messaging-dbus # failure in job https://hydra.nixos.org/build/252723131 at 2024-03-16 - - signature # failure in job https://hydra.nixos.org/build/301391178 at 2025-07-01 - significant-figures # failure in job https://hydra.nixos.org/build/295097004 at 2025-04-22 - silero-vad # failure in job https://hydra.nixos.org/build/295096978 at 2025-04-22 - - simd # failure in job https://hydra.nixos.org/build/233206642 at 2023-09-02 - simfin # failure in job https://hydra.nixos.org/build/233226776 at 2023-09-02 - - simple-actors # failure in job https://hydra.nixos.org/build/233239183 at 2023-09-02 - - simple-atom # failure in job https://hydra.nixos.org/build/233226957 at 2023-09-02 - - simple-bluetooth # failure in job https://hydra.nixos.org/build/233199623 at 2023-09-02 - - simple-conduit # failure in job https://hydra.nixos.org/build/233214502 at 2023-09-02 - - simple-config # failure in job https://hydra.nixos.org/build/233258957 at 2023-09-02 - - simple-css # failure in job https://hydra.nixos.org/build/233244675 at 2023-09-02 - - simple-download # failure in job https://hydra.nixos.org/build/233227569 at 2023-09-02 - - simple-effects # failure in job https://hydra.nixos.org/build/233246128 at 2023-09-02 - - simple-eval # failure in job https://hydra.nixos.org/build/233227793 at 2023-09-02 - - simple-form # failure in job https://hydra.nixos.org/build/233243669 at 2023-09-02 - - simple-genetic-algorithm # failure in job https://hydra.nixos.org/build/233200097 at 2023-09-02 - - simple-index # failure in job https://hydra.nixos.org/build/233208598 at 2023-09-02 - - simple-log # failure in job https://hydra.nixos.org/build/233253013 at 2023-09-02 - simple-media-timestamp-formatting # failure in job https://hydra.nixos.org/build/233228535 at 2023-09-02 - - simple-money # failure in job https://hydra.nixos.org/build/233240744 at 2023-09-02 - - simple-neural-networks # failure in job https://hydra.nixos.org/build/233226975 at 2023-09-02 - simple-parser # failure in job https://hydra.nixos.org/build/233218275 at 2023-09-02 - - simple-pipe # failure in job https://hydra.nixos.org/build/233251483 at 2023-09-02 - - simple-rope # failure in job https://hydra.nixos.org/build/233239446 at 2023-09-02 - - simple-server # failure in job https://hydra.nixos.org/build/233242498 at 2023-09-02 + - simple-postgresql-orm # previously transitively broken at 2025-09-08 - simple-sql-parser # failure in job https://hydra.nixos.org/build/233203075 at 2023-09-02 - - simple-stacked-vm # failure in job https://hydra.nixos.org/build/233206051 at 2023-09-02 - - simple-tabular # failure in job https://hydra.nixos.org/build/233233368 at 2023-09-02 - - simple-tar # failure in job https://hydra.nixos.org/build/233206675 at 2023-09-02 - simple-ui # failure in job https://hydra.nixos.org/build/233248287 at 2023-09-02 - simple-units # failure in job https://hydra.nixos.org/build/233215127 at 2023-09-02 - - simple-zipper # failure in job https://hydra.nixos.org/build/233210316 at 2023-09-02 - simpleargs # failure in job https://hydra.nixos.org/build/233202182 at 2023-09-02 - - simpleconfig # failure in job https://hydra.nixos.org/build/233195905 at 2023-09-02 - - SimpleH # failure in job https://hydra.nixos.org/build/233212326 at 2023-09-02 - - simpleirc # failure in job https://hydra.nixos.org/build/233211073 at 2023-09-02 - - simplenote # failure in job https://hydra.nixos.org/build/233225953 at 2023-09-02 - - simpleprelude # failure in job https://hydra.nixos.org/build/233259585 at 2023-09-02 - - simplesmtpclient # failure in job https://hydra.nixos.org/build/233235261 at 2023-09-02 - - simplessh # failure in job https://hydra.nixos.org/build/252738958 at 2024-03-16 - - simplest-sqlite # failure in job https://hydra.nixos.org/build/233248487 at 2023-09-02 - - simplex # failure in job https://hydra.nixos.org/build/252731268 at 2024-03-16 - simplex-method # failure in job https://hydra.nixos.org/build/295097008 at 2025-04-22 - simplexmq # failure in job https://hydra.nixos.org/build/233223717 at 2023-09-02 - - simplistic-generics # failure in job https://hydra.nixos.org/build/233217412 at 2023-09-02 - sindre # horribly outdated (X11 interface changed a lot) - - singlethongs # failure in job https://hydra.nixos.org/build/233202756 at 2023-09-02 - - singleton-dict # failure in job https://hydra.nixos.org/build/233245405 at 2023-09-02 - - singleton-typelits # failure in job https://hydra.nixos.org/build/233250877 at 2023-09-02 - singletons-base-code-generator # failure in job https://hydra.nixos.org/build/295097021 at 2025-04-22 - - singnal # failure in job https://hydra.nixos.org/build/233214111 at 2023-09-02 - - singular-factory # failure in job https://hydra.nixos.org/build/233250779 at 2023-09-02 - - sink # failure in job https://hydra.nixos.org/build/233240005 at 2023-09-02 - sint # failure in job https://hydra.nixos.org/build/233238431 at 2023-09-02 - siphash # failure in job https://hydra.nixos.org/build/233199344 at 2023-09-02 - sitepipe # failure in job https://hydra.nixos.org/build/233201989 at 2023-09-02 - - sixfiguregroup # failure in job https://hydra.nixos.org/build/233252141 at 2023-09-02 - - sixty-five-oh-two # failure in job https://hydra.nixos.org/build/252714578 at 2024-03-16 - - sized-grid # failure in job https://hydra.nixos.org/build/233239056 at 2023-09-02 - - sized-types # failure in job https://hydra.nixos.org/build/233244977 at 2023-09-02 - - sized-vector # failure in job https://hydra.nixos.org/build/233227779 at 2023-09-02 - - sjsp # failure in job https://hydra.nixos.org/build/233225141 at 2023-09-02 - SJW # failure in job https://hydra.nixos.org/build/233209689 at 2023-09-02 - - skeletal-set # failure in job https://hydra.nixos.org/build/233254711 at 2023-09-02 - - skell # failure in job https://hydra.nixos.org/build/233245484 at 2023-09-02 - - skemmtun # failure in job https://hydra.nixos.org/build/233223893 at 2023-09-02 - sketch-frp-copilot # copilot >=4.3 && <4.4, - skew-list # failure in job https://hydra.nixos.org/build/295097034 at 2025-04-22 - skews # time out in job https://hydra.nixos.org/build/302806286 at 2025-07-27 - skopedate # failure in job https://hydra.nixos.org/build/233220634 at 2023-09-02 - - skulk # failure in job https://hydra.nixos.org/build/233258672 at 2023-09-02 - skylighting-extensions # failure in job https://hydra.nixos.org/build/233221387 at 2023-09-02 - - skype4hs # failure in job https://hydra.nixos.org/build/233221058 at 2023-09-02 - - slack # failure in job https://hydra.nixos.org/build/233221065 at 2023-09-02 - - slack-api # failure in job https://hydra.nixos.org/build/233215701 at 2023-09-02 - - slack-notify-haskell # failure in job https://hydra.nixos.org/build/233249025 at 2023-09-02 - - slack-progressbar # failure in job https://hydra.nixos.org/build/252722423 at 2024-03-16 - - slack-verify # failure in job https://hydra.nixos.org/build/233206026 at 2023-09-02 - - sliceofpy # failure in job https://hydra.nixos.org/build/233224418 at 2023-09-02 - - slidemews # failure in job https://hydra.nixos.org/build/233205910 at 2023-09-02 - - Slides # failure in job https://hydra.nixos.org/build/233201684 at 2023-09-02 - - slim # failure in job https://hydra.nixos.org/build/233211282 at 2023-09-02 - - sloane # failure in job https://hydra.nixos.org/build/233235255 at 2023-09-02 - - slot-lambda # failure in job https://hydra.nixos.org/build/233252290 at 2023-09-02 - - sloth # failure in job https://hydra.nixos.org/build/233203718 at 2023-09-02 - - slug # failure in job https://hydra.nixos.org/build/233259687 at 2023-09-02 - slugify # failure in job https://hydra.nixos.org/build/233222023 at 2023-09-02 - - smallarray # failure in job https://hydra.nixos.org/build/233256816 at 2023-09-02 - - smallcaps # failure in job https://hydra.nixos.org/build/233201384 at 2023-09-02 - - smallcheck-kind-generics # failure in job https://hydra.nixos.org/build/233230424 at 2023-09-02 - smallcheck-series # failure in job https://hydra.nixos.org/build/233213618 at 2023-09-02 - - smallpt-hs # failure in job https://hydra.nixos.org/build/233250553 at 2023-09-02 - - smap # failure in job https://hydra.nixos.org/build/233208052 at 2023-09-02 - - smartcheck # failure in job https://hydra.nixos.org/build/233241864 at 2023-09-02 - - smartconstructor # failure in job https://hydra.nixos.org/build/233256663 at 2023-09-02 - - smartGroup # failure in job https://hydra.nixos.org/build/233200155 at 2023-09-02 - smash # failure in job https://hydra.nixos.org/build/233191239 at 2023-09-02 - smawk # failure in job https://hydra.nixos.org/build/233258699 at 2023-09-02 - - sme # failure in job https://hydra.nixos.org/build/233208306 at 2023-09-02 - - smerdyakov # failure in job https://hydra.nixos.org/build/233238735 at 2023-09-02 - smh # failure in job https://hydra.nixos.org/build/253695707 at 2024-03-31 - - smiles # failure in job https://hydra.nixos.org/build/233197831 at 2023-09-02 - SmithNormalForm # failure in job https://hydra.nixos.org/build/233253620 at 2023-09-02 - - smoothie # failure in job https://hydra.nixos.org/build/233250042 at 2023-09-02 - - smsaero # failure in job https://hydra.nixos.org/build/233215880 at 2023-09-02 - - smt-lib # failure in job https://hydra.nixos.org/build/233208443 at 2023-09-02 - - SmtLib # failure in job https://hydra.nixos.org/build/233213271 at 2023-09-02 - smtlib2 # failure in job https://hydra.nixos.org/build/233251831 at 2023-09-02 - - smtp-mail-ng # failure in job https://hydra.nixos.org/build/233220094 at 2023-09-02 - - SMTPClient # failure in job https://hydra.nixos.org/build/233247599 at 2023-09-02 - - smtps-gmail # failure in job https://hydra.nixos.org/build/233191933 at 2023-09-02 - - smuggler # failure in job https://hydra.nixos.org/build/233199288 at 2023-09-02 - smuggler2 # failure in job https://hydra.nixos.org/build/233233932 at 2023-09-02 - snail # failure in job https://hydra.nixos.org/build/252731890 at 2024-03-16 - - snake # failure in job https://hydra.nixos.org/build/233242029 at 2023-09-02 - - snake-game # failure in job https://hydra.nixos.org/build/234441416 at 2023-09-13 - - snap-accept # failure in job https://hydra.nixos.org/build/233254776 at 2023-09-02 - - snap-blaze-clay # failure in job https://hydra.nixos.org/build/233204686 at 2023-09-02 - - snap-configuration-utilities # failure in job https://hydra.nixos.org/build/233202496 at 2023-09-02 - - snap-error-collector # failure in job https://hydra.nixos.org/build/252722251 at 2024-03-16 - - snap-language # failure in job https://hydra.nixos.org/build/233257003 at 2023-09-02 + - snap-extras # previously transitively broken at 2025-09-08 - snap-loader-dynamic # failure in job https://hydra.nixos.org/build/233197376 at 2023-09-02 - - snap-predicates # failure in job https://hydra.nixos.org/build/233244904 at 2023-09-02 - - snap-routes # failure in job https://hydra.nixos.org/build/252718562 at 2024-03-16 - snap-stream # failure in job https://hydra.nixos.org/build/233237969 at 2023-09-02 - - snap-testing # failure in job https://hydra.nixos.org/build/252736070 at 2024-03-16 - - snap-web-routes # failure in job https://hydra.nixos.org/build/295097108 at 2025-04-22 - - snaplet-acid-state # failure in job https://hydra.nixos.org/build/252733993 at 2024-03-16 - - snaplet-amqp # failure in job https://hydra.nixos.org/build/252722868 at 2024-03-16 - snaplet-coffee # failure in job https://hydra.nixos.org/build/252712879 at 2024-03-16 - - snaplet-css-min # failure in job https://hydra.nixos.org/build/252718032 at 2024-03-16 - - snaplet-environments # failure in job https://hydra.nixos.org/build/252718495 at 2024-03-16 - - snaplet-hslogger # failure in job https://hydra.nixos.org/build/252719175 at 2024-03-16 - - snaplet-influxdb # failure in job https://hydra.nixos.org/build/252717331 at 2024-03-16 - - snaplet-mandrill # failure in job https://hydra.nixos.org/build/252733169 at 2024-03-16 - - snaplet-mongodb-minimalistic # failure in job https://hydra.nixos.org/build/252716449 at 2024-03-16 - snaplet-persistent # failure in job https://hydra.nixos.org/build/252725821 at 2024-03-16 - - snaplet-postgresql-simple # failure in job https://hydra.nixos.org/build/252716863 at 2024-03-16 - snaplet-purescript # failure in job https://hydra.nixos.org/build/252731136 at 2024-03-16 - snaplet-redis # failure in job https://hydra.nixos.org/build/252721419 at 2024-03-16 - - snaplet-sass # failure in job https://hydra.nixos.org/build/252729370 at 2024-03-16 - - snaplet-scoped-session # failure in job https://hydra.nixos.org/build/252732443 at 2024-03-16 - - snaplet-ses-html # failure in job https://hydra.nixos.org/build/252718019 at 2024-03-16 - - snaplet-sqlite-simple # failure in job https://hydra.nixos.org/build/252738602 at 2024-03-16 - - snaplet-typed-sessions # failure in job https://hydra.nixos.org/build/252724459 at 2024-03-16 - - snappy-conduit # failure in job https://hydra.nixos.org/build/233196865 at 2023-09-02 - snelstart-import # failure in job https://hydra.nixos.org/build/295097114 at 2025-04-22 - - SNet # failure in job https://hydra.nixos.org/build/233225638 at 2023-09-02 - - snipcheck # failure in job https://hydra.nixos.org/build/233214417 at 2023-09-02 - - snorkels # failure in job https://hydra.nixos.org/build/233229705 at 2023-09-02 - snowchecked # failure in job https://hydra.nixos.org/build/233258191 at 2023-09-02 - - snowtify # failure in job https://hydra.nixos.org/build/233215099 at 2023-09-02 - soap # failure in job https://hydra.nixos.org/build/295097136 at 2025-04-22 - - socket-activation # failure in job https://hydra.nixos.org/build/233258011 at 2023-09-02 - - socket-sctp # failure in job https://hydra.nixos.org/build/233228125 at 2023-09-02 - - socketed # failure in job https://hydra.nixos.org/build/233210087 at 2023-09-02 - - socketio # failure in job https://hydra.nixos.org/build/233214659 at 2023-09-02 - sockets # failure in job https://hydra.nixos.org/build/295097095 at 2025-04-22 - socks5 # failure in job https://hydra.nixos.org/build/302806344 at 2025-07-27 - - sodium # failure in job https://hydra.nixos.org/build/233213989 at 2023-09-02 - - soegtk # failure in job https://hydra.nixos.org/build/233198991 at 2023-09-02 - - softfloat-hs # failure in job https://hydra.nixos.org/build/233205242 at 2023-09-02 - - solar # failure in job https://hydra.nixos.org/build/233217024 at 2023-09-02 - - solga # failure in job https://hydra.nixos.org/build/233214770 at 2023-09-02 - som # failure in job https://hydra.nixos.org/build/233193912 at 2023-09-02 - - sonic-visualiser # failure in job https://hydra.nixos.org/build/233257956 at 2023-09-02 - - Sonnex # failure in job https://hydra.nixos.org/build/233229367 at 2023-09-02 - - SoOSiM # failure in job https://hydra.nixos.org/build/233224114 at 2023-09-02 - sop-satisfier # failure in job https://hydra.nixos.org/build/302806351 at 2025-07-27 - - sorted # failure in job https://hydra.nixos.org/build/233222633 at 2023-09-02 - - sorting # failure in job https://hydra.nixos.org/build/233214204 at 2023-09-02 - - sorty # failure in job https://hydra.nixos.org/build/233211118 at 2023-09-02 - souffle-haskell # failure in job https://hydra.nixos.org/build/233229472 at 2023-09-02 - source-constraints # failure in job https://hydra.nixos.org/build/233254750 at 2023-09-02 - - sousit # failure in job https://hydra.nixos.org/build/233204067 at 2023-09-02 - - soyuz # failure in job https://hydra.nixos.org/build/233196903 at 2023-09-02 - SpaceInvaders # failure in job https://hydra.nixos.org/build/233205063 at 2023-09-02 - - spacepart # failure in job https://hydra.nixos.org/build/233190848 at 2023-09-02 - spake2 # failure in job https://hydra.nixos.org/build/233209098 at 2023-09-02 - - spanout # failure in job https://hydra.nixos.org/build/234462954 at 2023-09-13 - - spars # failure in job https://hydra.nixos.org/build/233221560 at 2023-09-02 - - sparse # failure in job https://hydra.nixos.org/build/233222289 at 2023-09-02 - - sparse-lin-alg # failure in job https://hydra.nixos.org/build/233206178 at 2023-09-02 - sparse-linear-algebra # failure in job https://hydra.nixos.org/build/233214075 at 2023-09-02 - sparse-merkle-trees # failure in job https://hydra.nixos.org/build/233251228 at 2023-09-02 - sparse-tensor # failure in job https://hydra.nixos.org/build/233224869 at 2023-09-02 - - sparsecheck # failure in job https://hydra.nixos.org/build/233253454 at 2023-09-02 - SpatialMath # failure in job https://hydra.nixos.org/build/237243985 at 2023-10-21 - - special-functors # failure in job https://hydra.nixos.org/build/233215268 at 2023-09-02 - - special-keys # failure in job https://hydra.nixos.org/build/233191988 at 2023-09-02 - spectacle # failure in job https://hydra.nixos.org/build/233207488 at 2023-09-02 - - speculation # failure in job https://hydra.nixos.org/build/233211559 at 2023-09-02 - - sphinx-cli # failure in job https://hydra.nixos.org/build/295097187 at 2025-04-22 - - sphinxesc # failure in job https://hydra.nixos.org/build/233194825 at 2023-09-02 - spir-v # failure in job https://hydra.nixos.org/build/233191427 at 2023-09-02 - - spiros # failure in job https://hydra.nixos.org/build/233249615 at 2023-09-02 - - splay # failure in job https://hydra.nixos.org/build/233217055 at 2023-09-02 - splaytree # failure in job https://hydra.nixos.org/build/233231273 at 2023-09-02 - splint # failure in job https://hydra.nixos.org/build/233202156 at 2023-09-02 - - split-morphism # failure in job https://hydra.nixos.org/build/233257735 at 2023-09-02 - - splitter # failure in job https://hydra.nixos.org/build/233204684 at 2023-09-02 - - splot # failure in job https://hydra.nixos.org/build/252715661 at 2024-03-16 - Spock-api-ghcjs # failure in job https://hydra.nixos.org/build/233246163 at 2023-09-02 - - Spock-auth # failure in job https://hydra.nixos.org/build/233212125 at 2023-09-02 - - spoonutil # failure in job https://hydra.nixos.org/build/233257645 at 2023-09-02 - spotify # failure in job https://hydra.nixos.org/build/233254990 at 2023-09-02 - - spoty # failure in job https://hydra.nixos.org/build/233233863 at 2023-09-02 - - Sprig # failure in job https://hydra.nixos.org/build/233223144 at 2023-09-02 - - spritz # failure in job https://hydra.nixos.org/build/233230733 at 2023-09-02 - - sproxy-web # failure in job https://hydra.nixos.org/build/295097178 at 2025-04-22 - - sproxy2 # failure in job https://hydra.nixos.org/build/295097173 at 2025-04-22 - - spsa # failure in job https://hydra.nixos.org/build/233221021 at 2023-09-02 - - spy # failure in job https://hydra.nixos.org/build/233208095 at 2023-09-02 - sqel # failure in job https://hydra.nixos.org/build/233256622 at 2023-09-02 - sqids # failure in job https://hydra.nixos.org/build/233213849 at 2023-09-02 - - sql-simple # failure in job https://hydra.nixos.org/build/233252834 at 2023-09-02 - - sqlcipher # failure in job https://hydra.nixos.org/build/233259217 at 2023-09-02 - - sqlcli # failure in job https://hydra.nixos.org/build/252719841 at 2024-03-16 - sqlite # failure in job https://hydra.nixos.org/build/233215839 at 2023-09-02 - sqlite-easy # failure in job https://hydra.nixos.org/build/252728831 at 2024-03-16 - - sqlite-simple-errors # failure in job https://hydra.nixos.org/build/233232977 at 2023-09-02 - - sqlvalue-list # failure in job https://hydra.nixos.org/build/233197313 at 2023-09-02 - - sqsd-local # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/237237046 at 2023-10-21 - - srcinst # failure in job https://hydra.nixos.org/build/233221356 at 2023-09-02 - srt # failure in job https://hydra.nixos.org/build/295097165 at 2025-04-22 - srt-attoparsec # failure in job https://hydra.nixos.org/build/233248456 at 2023-09-02 - srv # failure in job https://hydra.nixos.org/build/252734755 at 2024-03-16 - - sscan # failure in job https://hydra.nixos.org/build/233248144 at 2023-09-02 - - ssh # failure in job https://hydra.nixos.org/build/233215512 at 2023-09-02 - - ssh-tunnel # failure in job https://hydra.nixos.org/build/233245203 at 2023-09-02 - - sshtun # failure in job https://hydra.nixos.org/build/252729199 at 2024-03-16 - - SSTG # failure in job https://hydra.nixos.org/build/233250677 at 2023-09-02 - st2 # failure in job https://hydra.nixos.org/build/233256469 at 2023-09-02 - stable-heap # failure in job https://hydra.nixos.org/build/295097179 at 2025-04-22 - - stable-maps # failure in job https://hydra.nixos.org/build/233229084 at 2023-09-02 - stable-marriage # failure in job https://hydra.nixos.org/build/295097172 at 2025-04-22 - stable-memo # failure in job https://hydra.nixos.org/build/295097174 at 2025-04-22 - - Stack # failure in job https://hydra.nixos.org/build/295091136 at 2025-04-22 - - stack-bump # failure in job https://hydra.nixos.org/build/233257783 at 2023-09-02 - - stack-fix # failure in job https://hydra.nixos.org/build/233253628 at 2023-09-02 - - stack-lib # failure in job https://hydra.nixos.org/build/233662933 at 2023-09-02 - - stack-prism # failure in job https://hydra.nixos.org/build/233216902 at 2023-09-02 - - stack-run # failure in job https://hydra.nixos.org/build/233213318 at 2023-09-02 - - stack-tag # failure in job https://hydra.nixos.org/build/252737306 at 2024-03-16 - - stack-type # failure in job https://hydra.nixos.org/build/233208961 at 2023-09-02 - - stack-wrapper # failure in job https://hydra.nixos.org/build/233259663 at 2023-09-02 - stack2cabal # failure in job https://hydra.nixos.org/build/233663091 at 2023-09-02 - - stack2nix # failure in job https://hydra.nixos.org/build/233662912 at 2023-09-02 - - stackage-cli # failure in job https://hydra.nixos.org/build/233213721 at 2023-09-02 - - stackage-curator # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/237229157 at 2023-10-21 - - stackage-metadata # failure in job https://hydra.nixos.org/build/233197359 at 2023-09-02 - - stackage-to-hackage # failure in job https://hydra.nixos.org/build/233233948 at 2023-09-02 - - stackage-types # failure in job https://hydra.nixos.org/build/233239995 at 2023-09-02 - stackcollapse-ghc # failure in job https://hydra.nixos.org/build/233250775 at 2023-09-02 - staged-gg # failure in job https://hydra.nixos.org/build/233252183 at 2023-09-02 - - standalone-derive-topdown # failure in job https://hydra.nixos.org/build/233252467 at 2023-09-02 - - standalone-haddock # failure in job https://hydra.nixos.org/build/233254339 at 2023-09-02 - - starling # failure in job https://hydra.nixos.org/build/233255468 at 2023-09-02 - - starter # failure in job https://hydra.nixos.org/build/233208799 at 2023-09-02 - starter-snake-haskell # failure in job https://hydra.nixos.org/build/236685019 at 2023-10-04 - - stash # failure in job https://hydra.nixos.org/build/233193110 at 2023-09-02 - - Stasis # failure in job https://hydra.nixos.org/build/233209365 at 2023-09-02 - - state # failure in job https://hydra.nixos.org/build/233215872 at 2023-09-02 - - state-bag # failure in job https://hydra.nixos.org/build/233222753 at 2023-09-02 - - state-plus # failure in job https://hydra.nixos.org/build/233243653 at 2023-09-02 - - state-record # failure in job https://hydra.nixos.org/build/233222199 at 2023-09-02 - - static # failure in job https://hydra.nixos.org/build/233217136 at 2023-09-02 + - state-plus # previously transitively broken at 2025-09-08 - static-canvas # failure in job https://hydra.nixos.org/build/295097206 at 2025-04-22 - static-ls # failure in job https://hydra.nixos.org/build/233199876 at 2023-09-02 - - static-resources # failure in job https://hydra.nixos.org/build/252724891 at 2024-03-16 - - static-tensor # failure in job https://hydra.nixos.org/build/233217705 at 2023-09-02 - - statistics-fusion # failure in job https://hydra.nixos.org/build/233229681 at 2023-09-02 - - statistics-hypergeometric-genvar # failure in job https://hydra.nixos.org/build/233193257 at 2023-09-02 - statistics-skinny # failure in job https://hydra.nixos.org/build/233233994 at 2023-09-02 - - stats # failure in job https://hydra.nixos.org/build/233255737 at 2023-09-02 - - statsd # failure in job https://hydra.nixos.org/build/233235428 at 2023-09-02 - - statvfs # failure in job https://hydra.nixos.org/build/233220845 at 2023-09-02 - staversion # failure in job https://hydra.nixos.org/build/252719926 at 2024-03-16 - - stb-image-redux # failure in job https://hydra.nixos.org/build/233202153 at 2023-09-02 - - stc-lang # failure in job https://hydra.nixos.org/build/233241234 at 2023-09-02 - - stdata # failure in job https://hydra.nixos.org/build/233255940 at 2023-09-02 - - stdf # failure in job https://hydra.nixos.org/build/233229554 at 2023-09-02 - - stdio # failure in job https://hydra.nixos.org/build/233212474 at 2023-09-02 - - steambrowser # failure in job https://hydra.nixos.org/build/233234382 at 2023-09-02 - - stego-uuid # failure in job https://hydra.nixos.org/build/233206943 at 2023-09-02 - - stemmer # failure in job https://hydra.nixos.org/build/233193774 at 2023-09-02 - - stemmer-german # failure in job https://hydra.nixos.org/build/233212893 at 2023-09-02 - - stepwise # failure in job https://hydra.nixos.org/build/233238388 at 2023-09-02 - - stgi # failure in job https://hydra.nixos.org/build/233233567 at 2023-09-02 - - STL # failure in job https://hydra.nixos.org/build/233231485 at 2023-09-02 + - stc-lang # previously transitively broken at 2025-09-08 - stm-actor # failure in job https://hydra.nixos.org/build/252722896 at 2024-03-16 - - stm-chunked-queues # failure in job https://hydra.nixos.org/build/233227966 at 2023-09-02 - - stm-firehose # failure in job https://hydra.nixos.org/build/233220943 at 2023-09-02 - - stm-lifted # failure in job https://hydra.nixos.org/build/252726872 at 2024-03-16 - - stm-promise # failure in job https://hydra.nixos.org/build/233204293 at 2023-09-02 - - stm-stats # failure in job https://hydra.nixos.org/build/233214914 at 2023-09-02 - - stochastic # failure in job https://hydra.nixos.org/build/233242019 at 2023-09-02 - - Stomp # failure in job https://hydra.nixos.org/build/233252583 at 2023-09-02 - stooq-api # failure in job https://hydra.nixos.org/build/233200858 at 2023-09-02 - stopwatch # failure in job https://hydra.nixos.org/build/252716540 at 2024-03-16 - - storable # failure in job https://hydra.nixos.org/build/233228880 at 2023-09-02 - storable-offset # failure in job https://hydra.nixos.org/build/233242993 at 2023-09-02 - - storable-static-array # failure in job https://hydra.nixos.org/build/233222724 at 2023-09-02 - - stp # failure in job https://hydra.nixos.org/build/233204519 at 2023-09-02 - - str # failure in job https://hydra.nixos.org/build/233227698 at 2023-09-02 - - Strafunski-ATermLib # failure in job https://hydra.nixos.org/build/233229490 at 2023-09-02 - - Strafunski-StrategyLib # failure in job https://hydra.nixos.org/build/233245449 at 2023-09-02 - - StrappedTemplates # failure in job https://hydra.nixos.org/build/233193696 at 2023-09-02 - - StrategyLib # failure in job https://hydra.nixos.org/build/233214584 at 2023-09-02 - - stratux-types # failure in job https://hydra.nixos.org/build/233232808 at 2023-09-02 - - stream # failure in job https://hydra.nixos.org/build/233226470 at 2023-09-02 - - stream-fusion # failure in job https://hydra.nixos.org/build/233225947 at 2023-09-02 - - stream-monad # failure in job https://hydra.nixos.org/build/233222592 at 2023-09-02 - - streamdeck # failure in job https://hydra.nixos.org/build/233226165 at 2023-09-02 - - streamed # failure in job https://hydra.nixos.org/build/233203079 at 2023-09-02 + - storable-static-array # previously transitively broken at 2025-09-08 + - StrategyLib # previously transitively broken at 2025-09-08 + - stratux-types # previously transitively broken at 2025-09-08 - streaming-benchmarks # failure in job https://hydra.nixos.org/build/233216756 at 2023-09-02 - - streaming-brotli # failure in job https://hydra.nixos.org/build/233245393 at 2023-09-02 - streaming-cassava # failure in job https://hydra.nixos.org/build/233208371 at 2023-09-02 - streaming-conduit # failure in job https://hydra.nixos.org/build/233259762 at 2023-09-02 - - streaming-events # failure in job https://hydra.nixos.org/build/233198216 at 2023-09-02 - - streaming-lzma # failure in job https://hydra.nixos.org/build/233239635 at 2023-09-02 - - streaming-osm # failure in job https://hydra.nixos.org/build/233229467 at 2023-09-02 - streaming-pcap # failure in job https://hydra.nixos.org/build/252731309 at 2024-03-16 - - streaming-png # failure in job https://hydra.nixos.org/build/233236752 at 2023-09-02 - streaming-postgresql-simple # failure in job https://hydra.nixos.org/build/233212839 at 2023-09-02 - streaming-with # failure in job https://hydra.nixos.org/build/233191184 at 2023-09-02 - streamly-archive # failure in job https://hydra.nixos.org/build/252735935 at 2024-03-16 - - streamly-binary # failure in job https://hydra.nixos.org/build/233240602 at 2023-09-02 - - streamly-cassava # failure in job https://hydra.nixos.org/build/233237843 at 2023-09-02 - streamly-examples # failure in job https://hydra.nixos.org/build/252721153 at 2024-03-16 - streamly-lmdb # failure in job https://hydra.nixos.org/build/252731414 at 2024-03-16 - streamly-lz4 # failure in job https://hydra.nixos.org/build/233219321 at 2023-09-02 @@ -5852,519 +1721,159 @@ broken-packages: - streamly-zip # failure in job https://hydra.nixos.org/build/295097269 at 2025-04-22 - streamproc # failure in job https://hydra.nixos.org/build/233196179 at 2023-09-02 - streamt # failure in job https://hydra.nixos.org/build/252724093 at 2024-03-16 - - strelka-core # failure in job https://hydra.nixos.org/build/233218594 at 2023-09-02 - - strict-ghc-plugin # failure in job https://hydra.nixos.org/build/233246830 at 2023-09-02 - strict-impl-params # failure in job https://hydra.nixos.org/build/252732248 at 2024-03-16 - - strict-io # failure in job https://hydra.nixos.org/build/295097302 at 2025-04-22 - strict-mvar # failure in job https://hydra.nixos.org/build/273459853 at 2024-10-01 - strict-stm # failure in job https://hydra.nixos.org/build/273449297 at 2024-10-01 - strict-tuple-lens # failure in job https://hydra.nixos.org/build/233194548 at 2023-09-02 - - strict-writer # failure in job https://hydra.nixos.org/build/252725649 at 2024-03-16 - - StrictBench # failure in job https://hydra.nixos.org/build/233259575 at 2023-09-02 - StrictCheck # failure in job https://hydra.nixos.org/build/233214649 at 2023-09-02 - - strictly # failure in job https://hydra.nixos.org/build/233197142 at 2023-09-02 - string-conv-tests # failure in job https://hydra.nixos.org/build/233242710 at 2023-09-02 - string-fromto # failure in job https://hydra.nixos.org/build/233223157 at 2023-09-02 - string-interpreter # failure in job https://hydra.nixos.org/build/252739490 at 2024-03-16 - - string-isos # failure in job https://hydra.nixos.org/build/233252917 at 2023-09-02 - - string-quote # failure in job https://hydra.nixos.org/build/233259595 at 2023-09-02 - - stringlike # failure in job https://hydra.nixos.org/build/233258750 at 2023-09-02 - - stringtable-atom # failure in job https://hydra.nixos.org/build/233235085 at 2023-09-02 - - stripe # failure in job https://hydra.nixos.org/build/233248173 at 2023-09-02 - - stripe-core # failure in job https://hydra.nixos.org/build/233215702 at 2023-09-02 - stripe-hs # failure in job https://hydra.nixos.org/build/233203500 at 2023-09-02 - stripe-scotty # failure in job https://hydra.nixos.org/build/252711778 at 2024-03-16 - stripe-wreq # failure in job https://hydra.nixos.org/build/295097337 at 2025-04-22 - strong-path # failure in job https://hydra.nixos.org/build/233225171 at 2023-09-02 - struct-inspector # failure in job https://hydra.nixos.org/build/252739623 at 2024-03-16 - - structural-traversal # failure in job https://hydra.nixos.org/build/233235730 at 2023-09-02 - structured-cli # failure in job https://hydra.nixos.org/build/252734924 at 2024-03-16 - - structures # failure in job https://hydra.nixos.org/build/233206488 at 2023-09-02 - - stt # failure in job https://hydra.nixos.org/build/233233101 at 2023-09-02 - - stunclient # failure in job https://hydra.nixos.org/build/233251136 at 2023-09-02 - - stylish-cabal # failure in job https://hydra.nixos.org/build/233202801 at 2023-09-02 - stylist # failure in job https://hydra.nixos.org/build/233223662 at 2023-09-02 - - stylized # failure in job https://hydra.nixos.org/build/233211499 at 2023-09-02 - - styx # failure in job https://hydra.nixos.org/build/252713087 at 2024-03-16 - - sub-state # failure in job https://hydra.nixos.org/build/233202687 at 2023-09-02 - subG-instances # failure in job https://hydra.nixos.org/build/233216227 at 2023-09-02 - - subleq-toolchain # failure in job https://hydra.nixos.org/build/233239415 at 2023-09-02 - submark # failure in job https://hydra.nixos.org/build/233231701 at 2023-09-02 - - subsample # failure in job https://hydra.nixos.org/build/233201324 at 2023-09-02 - - subwordgraph # failure in job https://hydra.nixos.org/build/233229131 at 2023-09-02 - - success # failure in job https://hydra.nixos.org/build/252718360 at 2024-03-16 - successors # failure in job https://hydra.nixos.org/build/295097331 at 2025-04-22 - succinct # failure in job https://hydra.nixos.org/build/295122913 at 2025-04-22 - - suffix-array # failure in job https://hydra.nixos.org/build/233247630 at 2023-09-02 - - suffixarray # failure in job https://hydra.nixos.org/build/233256495 at 2023-09-02 - - SuffixStructures # failure in job https://hydra.nixos.org/build/233245541 at 2023-09-02 - sugar # failure in job https://hydra.nixos.org/build/233202489 at 2023-09-02 - - sugarhaskell # failure in job https://hydra.nixos.org/build/233199879 at 2023-09-02 - suitable # failure in job https://hydra.nixos.org/build/233225075 at 2023-09-02 - - sum-type-boilerplate # failure in job https://hydra.nixos.org/build/233251040 at 2023-09-02 - summer # failure in job https://hydra.nixos.org/build/252728622 at 2024-03-16 - - summoner # failure in job https://hydra.nixos.org/build/233232530 at 2023-09-02 - - sump # failure in job https://hydra.nixos.org/build/265955678 at 2024-07-14 - - sunlight # failure in job https://hydra.nixos.org/build/233212375 at 2023-09-02 - - sunroof-compiler # failure in job https://hydra.nixos.org/build/233228734 at 2023-09-02 - - super-user-spark # failure in job https://hydra.nixos.org/build/233253403 at 2023-09-02 - - superbubbles # failure in job https://hydra.nixos.org/build/233243148 at 2023-09-02 - - superevent # failure in job https://hydra.nixos.org/build/233251723 at 2023-09-02 - - supermonad # failure in job https://hydra.nixos.org/build/233203124 at 2023-09-02 - - supero # failure in job https://hydra.nixos.org/build/233191836 at 2023-09-02 + - supernova # previously transitively broken at 2025-09-08 - superrecord # failure in job https://hydra.nixos.org/build/233249988 at 2023-09-02 - - supervisor # failure in job https://hydra.nixos.org/build/233226414 at 2023-09-02 - supervisors # failure in job https://hydra.nixos.org/build/233238299 at 2023-09-02 - - supplemented # failure in job https://hydra.nixos.org/build/233237397 at 2023-09-02 - supply-chain-core # failure in job https://hydra.nixos.org/build/252715612 at 2024-03-16 - - surjective # failure in job https://hydra.nixos.org/build/233242908 at 2023-09-02 - - sv-core # failure in job https://hydra.nixos.org/build/233217245 at 2023-09-02 - - SVD2HS # failure in job https://hydra.nixos.org/build/233248575 at 2023-09-02 - - svfactor # failure in job https://hydra.nixos.org/build/233256743 at 2023-09-02 - - svg-builder-fork # failure in job https://hydra.nixos.org/build/233224461 at 2023-09-02 - - svgutils # failure in job https://hydra.nixos.org/build/233193438 at 2023-09-02 - - svm-light-utils # failure in job https://hydra.nixos.org/build/233219138 at 2023-09-02 - - svm-simple # failure in job https://hydra.nixos.org/build/233235871 at 2023-09-02 - svndump # failure in job https://hydra.nixos.org/build/233229122 at 2023-09-02 - - swagger # failure in job https://hydra.nixos.org/build/233198161 at 2023-09-02 - - swagger-petstore # failure in job https://hydra.nixos.org/build/233205797 at 2023-09-02 - - swagger-test # failure in job https://hydra.nixos.org/build/233231958 at 2023-09-02 - swarm # failure in job https://hydra.nixos.org/build/233201687 at 2023-09-02 - - swearjure # failure in job https://hydra.nixos.org/build/233231407 at 2023-09-02 - sweet-egison # failure in job https://hydra.nixos.org/build/295097344 at 2025-04-22 - - swf # failure in job https://hydra.nixos.org/build/233191062 at 2023-09-02 - - swift-lda # failure in job https://hydra.nixos.org/build/233252608 at 2023-09-02 - swiss # failure in job https://hydra.nixos.org/build/233251942 at 2023-09-02 - swiss-ephemeris # failure in job https://hydra.nixos.org/build/233250845 at 2023-09-02 + - switch # previously transitively broken at 2025-09-08 - sws # failure in job https://hydra.nixos.org/build/233246954 at 2023-09-02 - - syb-extras # failure in job https://hydra.nixos.org/build/233206431 at 2023-09-02 - syb-with-class # failure in job https://hydra.nixos.org/build/233222818 at 2023-09-02 - sydtest-autodocodec # failure in job https://hydra.nixos.org/build/295097354 at 2025-04-22 - sydtest-hedis # failure in job https://hydra.nixos.org/build/233207856 at 2023-09-02 - sydtest-persistent-postgresql # failure in job https://hydra.nixos.org/build/233214331 at 2023-09-02 - sydtest-rabbitmq # failure in job https://hydra.nixos.org/build/233260128 at 2023-09-02 - sydtest-webdriver # failure in job https://hydra.nixos.org/build/233245448 at 2023-09-02 - - syfco # failure in job https://hydra.nixos.org/build/233225199 at 2023-09-02 - - symantic # failure in job https://hydra.nixos.org/build/233230940 at 2023-09-02 - - symantic-cli # failure in job https://hydra.nixos.org/build/233225149 at 2023-09-02 - - symantic-http-client # failure in job https://hydra.nixos.org/build/233222353 at 2023-09-02 - symantic-parser # failure in job https://hydra.nixos.org/build/233197879 at 2023-09-02 - - symantic-xml # failure in job https://hydra.nixos.org/build/233230860 at 2023-09-02 - - symbolic-link # failure in job https://hydra.nixos.org/build/233255331 at 2023-09-02 - symengine # failure in job https://hydra.nixos.org/build/233203977 at 2023-09-02 - - sync # failure in job https://hydra.nixos.org/build/233254114 at 2023-09-02 - - sync-mht # failure in job https://hydra.nixos.org/build/233236022 at 2023-09-02 - syntactic # failure in job https://hydra.nixos.org/build/233210123 at 2023-09-02 - - syntax-trees # failure in job https://hydra.nixos.org/build/233209576 at 2023-09-02 - - syntax-trees-fork-bairyn # failure in job https://hydra.nixos.org/build/233216989 at 2023-09-02 - - synthesizer # failure in job https://hydra.nixos.org/build/233259139 at 2023-09-02 - - synthesizer-filter # failure in job https://hydra.nixos.org/build/252718079 at 2024-03-16 - synthesizer-llvm # failure in job https://hydra.nixos.org/build/266355681 at 2024-07-14 - - Sysmon # failure in job https://hydra.nixos.org/build/233224152 at 2023-09-02 - - system-canonicalpath # failure in job https://hydra.nixos.org/build/233254297 at 2023-09-02 - - system-command # failure in job https://hydra.nixos.org/build/233239356 at 2023-09-02 - - system-extra # failure in job https://hydra.nixos.org/build/233203137 at 2023-09-02 - - system-inotify # failure in job https://hydra.nixos.org/build/233206871 at 2023-09-02 - - system-lifted # failure in job https://hydra.nixos.org/build/233236013 at 2023-09-02 - - system-locale # failure in job https://hydra.nixos.org/build/233201789 at 2023-09-02 - - system-random-effect # failure in job https://hydra.nixos.org/build/233232067 at 2023-09-02 - - system-test # failure in job https://hydra.nixos.org/build/233240318 at 2023-09-02 - systemd-ntfy # failure in job https://hydra.nixos.org/build/236686880 at 2023-10-04 - systemd-socket-activation # failure in job https://hydra.nixos.org/build/295097415 at 2025-04-22 - - t-regex # failure in job https://hydra.nixos.org/build/233254486 at 2023-09-02 - - t3-server # failure in job https://hydra.nixos.org/build/233220511 at 2023-09-02 - - table # failure in job https://hydra.nixos.org/build/233223186 at 2023-09-02 - - table-tennis # failure in job https://hydra.nixos.org/build/233225503 at 2023-09-02 - tableaux # failure in job https://hydra.nixos.org/build/233230428 at 2023-09-02 - - Tables # failure in job https://hydra.nixos.org/build/233195704 at 2023-09-02 - - tables # failure in job https://hydra.nixos.org/build/233224632 at 2023-09-02 - - tablestorage # failure in job https://hydra.nixos.org/build/233195223 at 2023-09-02 - - Tablify # failure in job https://hydra.nixos.org/build/233219427 at 2023-09-02 - - tabloid # failure in job https://hydra.nixos.org/build/233244751 at 2023-09-02 - - tabs # failure in job https://hydra.nixos.org/build/233227179 at 2023-09-02 - - tag-bits # failure in job https://hydra.nixos.org/build/233245196 at 2023-09-02 - - tagged-exception-core # failure in job https://hydra.nixos.org/build/233227946 at 2023-09-02 - - tagged-timers # failure in job https://hydra.nixos.org/build/233238738 at 2023-09-02 - - taglib-api # failure in job https://hydra.nixos.org/build/233259216 at 2023-09-02 - - tagshare # failure in job https://hydra.nixos.org/build/252729876 at 2024-03-16 - - tagsoup-ht # failure in job https://hydra.nixos.org/build/233233672 at 2023-09-02 - - tagsoup-megaparsec # failure in job https://hydra.nixos.org/build/233205700 at 2023-09-02 - - tagsoup-parsec # failure in job https://hydra.nixos.org/build/233200887 at 2023-09-02 - - tagsoup-selection # failure in job https://hydra.nixos.org/build/233228969 at 2023-09-02 - - Tahin # failure in job https://hydra.nixos.org/build/252737178 at 2024-03-16 + - tagsoup-parsec # previously transitively broken at 2025-09-08 - tahoe-capabilities # failure in job https://hydra.nixos.org/build/233253813 at 2023-09-02 - tahoe-chk # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/237298038 at 2023-10-21 - tahoe-great-black-swamp-types # failure in job https://hydra.nixos.org/build/252721139 at 2024-03-16 - - tai # failure in job https://hydra.nixos.org/build/233210483 at 2023-09-02 - - tai64 # failure in job https://hydra.nixos.org/build/233257422 at 2023-09-02 - - Tainted # failure in job https://hydra.nixos.org/build/252722384 at 2024-03-16 - - tak # failure in job https://hydra.nixos.org/build/233191188 at 2023-09-02 - - Takusen # failure in job https://hydra.nixos.org/build/233230088 at 2023-09-02 - - takusen-oracle # failure in job https://hydra.nixos.org/build/233197944 at 2023-09-02 - talash # failure in job https://hydra.nixos.org/build/283561113 at 2024-12-31 - - tamarin-prover-utils # failure in job https://hydra.nixos.org/build/233235417 at 2023-09-02 - - Tape # failure in job https://hydra.nixos.org/build/233191662 at 2023-09-02 - - tapioca # failure in job https://hydra.nixos.org/build/233207781 at 2023-09-02 - targeted-quickcheck # failure in job https://hydra.nixos.org/build/295097441 at 2025-04-22 - tart # failure in job https://hydra.nixos.org/build/252723842 at 2024-03-16 - taskell # depends on old version of brick - - TaskMonad # failure in job https://hydra.nixos.org/build/233219257 at 2023-09-02 - - tasty-auto # failure in job https://hydra.nixos.org/build/233220008 at 2023-09-02 - tasty-fail-fast # failure in job https://hydra.nixos.org/build/233200040 at 2023-09-02 - tasty-grading-system # failure in job https://hydra.nixos.org/build/236673021 at 2023-10-04 - - tasty-hedgehog-coverage # failure in job https://hydra.nixos.org/build/233231332 at 2023-09-02 - tasty-mgolden # failure in job https://hydra.nixos.org/build/233248196 at 2023-09-02 - tasty-papi # failure in job https://hydra.nixos.org/build/302806735, https://github.com/Shimuuar/tasty-papi/issues/4#issuecomment-3123432375 at 2025-07-27 - tasty-process # failure in job https://hydra.nixos.org/build/253680638 at 2024-03-31 - - tasty-stats # failure in job https://hydra.nixos.org/build/233228752 at 2023-09-02 - tasty-test-reporter # failure in job https://hydra.nixos.org/build/233208181 at 2023-09-02 - - tasty-test-vector # failure in job https://hydra.nixos.org/build/233231957 at 2023-09-02 - tasty-travis # failure in job https://hydra.nixos.org/build/295097500 at 2025-04-22 - - TBC # failure in job https://hydra.nixos.org/build/233217773 at 2023-09-02 - - TBit # failure in job https://hydra.nixos.org/build/233232991 at 2023-09-02 - - tcache-AWS # failure in job https://hydra.nixos.org/build/233250577 at 2023-09-02 - - tcod-haskell # failure in job https://hydra.nixos.org/build/252730637 at 2024-03-16 - - tcp # failure in job https://hydra.nixos.org/build/233249662 at 2023-09-02 - - tcp-streams # failure in job https://hydra.nixos.org/build/252713034 at 2024-03-16 - - tcp-streams-openssl # failure in job https://hydra.nixos.org/build/233258076 at 2023-09-02 - - tdigest-Chart # failure in job https://hydra.nixos.org/build/233244784 at 2023-09-02 - - tdoc # failure in job https://hydra.nixos.org/build/233250532 at 2023-09-02 - - tds # failure in job https://hydra.nixos.org/build/233201528 at 2023-09-02 - - teams # failure in job https://hydra.nixos.org/build/233228277 at 2023-09-02 - technique # failure in job https://hydra.nixos.org/build/233196740 at 2023-09-02 - tedious-web # failure in job https://hydra.nixos.org/build/269665641 at 2024-08-19 - - tehepero # failure in job https://hydra.nixos.org/build/233245967 at 2023-09-02 - - telega # failure in job https://hydra.nixos.org/build/233239016 at 2023-09-02 - - telegram # failure in job https://hydra.nixos.org/build/233203974 at 2023-09-02 - telegram-api # failure in job https://hydra.nixos.org/build/233255927 at 2023-09-02 - - telegram-types # failure in job https://hydra.nixos.org/build/233598183 at 2023-09-02 - telegraph # failure in job https://hydra.nixos.org/build/233213772 at 2023-09-02 - - teleport # failure in job https://hydra.nixos.org/build/233194305 at 2023-09-02 - - teleshell # failure in job https://hydra.nixos.org/build/233225954 at 2023-09-02 - tell # failure in job https://hydra.nixos.org/build/252712899 at 2024-03-16 - - tellbot # failure in job https://hydra.nixos.org/build/233200225 at 2023-09-02 - - tempered # failure in job https://hydra.nixos.org/build/252732123 at 2024-03-16 - - template-default # failure in job https://hydra.nixos.org/build/233238125 at 2023-09-02 - template-haskell-optics # failure in job https://hydra.nixos.org/build/233203627 at 2023-09-02 - - template-haskell-util # failure in job https://hydra.nixos.org/build/233198104 at 2023-09-02 - - template-hsml # failure in job https://hydra.nixos.org/build/233203243 at 2023-09-02 - - template-toolkit # failure in job https://hydra.nixos.org/build/233195990 at 2023-09-02 - - template-yj # failure in job https://hydra.nixos.org/build/233236245 at 2023-09-02 - - templateify # failure in job https://hydra.nixos.org/build/233234863 at 2023-09-02 - - templatepg # failure in job https://hydra.nixos.org/build/233250442 at 2023-09-02 - templatise # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/237235933 at 2023-10-21 - - tempo # failure in job https://hydra.nixos.org/build/252731680 at 2024-03-16 - - tempodb # failure in job https://hydra.nixos.org/build/233205994 at 2023-09-02 - - temporal-csound # failure in job https://hydra.nixos.org/build/243818090 at 2024-01-01 - - tempus # failure in job https://hydra.nixos.org/build/233245670 at 2023-09-02 - ten # failure in job https://hydra.nixos.org/build/233216705 at 2023-09-02 - - tensor # failure in job https://hydra.nixos.org/build/233233707 at 2023-09-02 - - tensor-safe # failure in job https://hydra.nixos.org/build/233239719 at 2023-09-02 - - tensorflow # failure building python tensorflow dependency 2023-09-09 - - tensorflow-core-ops # failure building python tensorflow dependency 2023-09-09 - - tensorflow-logging # failure building python tensorflow dependency 2023-09-09 - - tensorflow-ops # failure building python tensorflow dependency 2023-09-09 - tensors # failure in job https://hydra.nixos.org/build/295097530 at 2025-04-22 - term-rewriting # failure in job https://hydra.nixos.org/build/295097520 at 2025-04-22 - - termbox-bindings # failure in job https://hydra.nixos.org/build/233257579 at 2023-09-02 - - termination-combinators # failure in job https://hydra.nixos.org/build/233202329 at 2023-09-02 - - termplot # failure in job https://hydra.nixos.org/build/233245692 at 2023-09-02 - - terntup # failure in job https://hydra.nixos.org/build/233203746 at 2023-09-02 - - tersmu # failure in job https://hydra.nixos.org/build/233253842 at 2023-09-02 - tesla # failure in job https://hydra.nixos.org/build/295097534 at 2025-04-22 - - test-fixture # failure in job https://hydra.nixos.org/build/233203103 at 2023-09-02 - - test-framework-doctest # failure in job https://hydra.nixos.org/build/233256232 at 2023-09-02 - - test-framework-golden # failure in job https://hydra.nixos.org/build/252724226 at 2024-03-16 - - test-framework-quickcheck # failure in job https://hydra.nixos.org/build/233199583 at 2023-09-02 - - test-framework-skip # failure in job https://hydra.nixos.org/build/233248465 at 2023-09-02 - - test-framework-testing-feat # failure in job https://hydra.nixos.org/build/233227290 at 2023-09-02 - test-framework-th-prime # failure in job https://hydra.nixos.org/build/233241423 at 2023-09-02 - test-lib # failure in job https://hydra.nixos.org/build/233195296 at 2023-09-02 - test-monad-laws # failure in job https://hydra.nixos.org/build/252739363 at 2024-03-16 - - test-pkg # failure in job https://hydra.nixos.org/build/233242918 at 2023-09-02 - - test-shouldbe # failure in job https://hydra.nixos.org/build/233209475 at 2023-09-02 - - testCom # failure in job https://hydra.nixos.org/build/233210118 at 2023-09-02 - TestExplode # failure in job https://hydra.nixos.org/build/233207327 at 2023-09-02 - testing-tensor # failure in job https://hydra.nixos.org/build/295097635 at 2025-04-22 - - testloop # failure in job https://hydra.nixos.org/build/233206527 at 2023-09-02 - - testpack # failure in job https://hydra.nixos.org/build/233194859 at 2023-09-02 - - testpattern # failure in job https://hydra.nixos.org/build/233225860 at 2023-09-02 - - testPkg # failure in job https://hydra.nixos.org/build/233221832 at 2023-09-02 - - testrunner # failure in job https://hydra.nixos.org/build/233243675 at 2023-09-02 - - tex-join-bib # failure in job https://hydra.nixos.org/build/233220994 at 2023-09-02 - TeX-my-math # failure in job https://hydra.nixos.org/build/233243992 at 2023-09-02 - - tex2txt # failure in job https://hydra.nixos.org/build/233253484 at 2023-09-02 - - texbuilder # failure in job https://hydra.nixos.org/build/233190830 at 2023-09-02 - - text-all # failure in job https://hydra.nixos.org/build/233229321 at 2023-09-02 - - text-and-plots # failure in job https://hydra.nixos.org/build/233205250 at 2023-09-02 - text-ascii # failure in job https://hydra.nixos.org/build/233247653 at 2023-09-02 - text-builder-lawful-conversions # failure in job https://hydra.nixos.org/build/299141710 at 2025-06-23 - text-builder-time # failure in job https://hydra.nixos.org/build/295458315 at 2025-05-02 - text-compression # failure in job https://hydra.nixos.org/build/233202733 at 2023-09-02 - - text-containers # failure in job https://hydra.nixos.org/build/233253948 at 2023-09-02 - text-format # failure in job https://hydra.nixos.org/build/295097568 at 2025-04-22 - - text-format-heavy # failure in job https://hydra.nixos.org/build/233213729 at 2023-09-02 - - text-generic-pretty # failure in job https://hydra.nixos.org/build/233223672 at 2023-09-02 - - text-icu-normalized # failure in job https://hydra.nixos.org/build/233234496 at 2023-09-02 - - text-icu-translit # failure in job https://hydra.nixos.org/build/233255876 at 2023-09-02 - - text-lens # failure in job https://hydra.nixos.org/build/233227419 at 2023-09-02 - - text-markup # failure in job https://hydra.nixos.org/build/233233739 at 2023-09-02 - - text-normal # failure in job https://hydra.nixos.org/build/233198509 at 2023-09-02 - - text-offset # failure in job https://hydra.nixos.org/build/233250030 at 2023-09-02 - - text-position # failure in job https://hydra.nixos.org/build/233241860 at 2023-09-02 - - text-register-machine # failure in job https://hydra.nixos.org/build/233239758 at 2023-09-02 - - text-render # failure in job https://hydra.nixos.org/build/252713121 at 2024-03-16 - text-replace # failure in job https://hydra.nixos.org/build/252727577 at 2024-03-16 - - text-stream-decode # failure in job https://hydra.nixos.org/build/233237533 at 2023-09-02 - - text-trie # failure in job https://hydra.nixos.org/build/233231841 at 2023-09-02 - - text-utf7 # failure in job https://hydra.nixos.org/build/233254420 at 2023-09-02 - - text-utf8 # failure in job https://hydra.nixos.org/build/233198812 at 2023-09-02 - - text-xml-qq # failure in job https://hydra.nixos.org/build/233240984 at 2023-09-02 - - text-zipper-monad # failure in job https://hydra.nixos.org/build/233207310 at 2023-09-02 - text1 # failure in job https://hydra.nixos.org/build/233252861 at 2023-09-02 - - textocat-api # failure in job https://hydra.nixos.org/build/233252736 at 2023-09-02 - - textual # failure in job https://hydra.nixos.org/build/233254230 at 2023-09-02 - - tfp-th # failure in job https://hydra.nixos.org/build/233238914 at 2023-09-02 - - tftp # failure in job https://hydra.nixos.org/build/233199412 at 2023-09-02 - - tga # failure in job https://hydra.nixos.org/build/233198921 at 2023-09-02 - - th-build # failure in job https://hydra.nixos.org/build/233224794 at 2023-09-02 - - th-dict-discovery # failure in job https://hydra.nixos.org/build/233204140 at 2023-09-02 - - th-fold # failure in job https://hydra.nixos.org/build/233196363 at 2023-09-02 - - th-format # failure in job https://hydra.nixos.org/build/233226394 at 2023-09-02 - - th-inline-io-action # failure in job https://hydra.nixos.org/build/233207225 at 2023-09-02 - - th-instance-reification # failure in job https://hydra.nixos.org/build/233227028 at 2023-09-02 - - th-kinds # failure in job https://hydra.nixos.org/build/233237247 at 2023-09-02 - - th-kinds-fork # failure in job https://hydra.nixos.org/build/233248565 at 2023-09-02 - - th-pprint # failure in job https://hydra.nixos.org/build/233200791 at 2023-09-02 - - th-sccs # failure in job https://hydra.nixos.org/build/233228878 at 2023-09-02 - - th-tc # failure in job https://hydra.nixos.org/build/233243402 at 2023-09-02 - - th-to-exp # failure in job https://hydra.nixos.org/build/233198437 at 2023-09-02 - - th-traced # failure in job https://hydra.nixos.org/build/233247762 at 2023-09-02 - - th-typegraph # failure in job https://hydra.nixos.org/build/295122914 at 2025-04-22 + - tga # previously transitively broken at 2025-09-08 - thank-you-stars # failure in job https://hydra.nixos.org/build/233219923 at 2023-09-02 - theatre # failure in job https://hydra.nixos.org/build/295097627 at 2025-04-22 - - THEff # failure in job https://hydra.nixos.org/build/233221239 at 2023-09-02 - themoviedb # failure in job https://hydra.nixos.org/build/233233008 at 2023-09-02 - - thentos-cookie-session # failure in job https://hydra.nixos.org/build/233234700 at 2023-09-02 - - Theora # failure in job https://hydra.nixos.org/build/233232413 at 2023-09-02 - - theoremquest # failure in job https://hydra.nixos.org/build/233248330 at 2023-09-02 - - thih # failure in job https://hydra.nixos.org/build/233245123 at 2023-09-02 - - Thingie # failure in job https://hydra.nixos.org/build/233251760 at 2023-09-02 - thock # failure in job https://hydra.nixos.org/build/233256198 at 2023-09-02 - - thorn # failure in job https://hydra.nixos.org/build/233242024 at 2023-09-02 - - threadmanager # failure in job https://hydra.nixos.org/build/233230492 at 2023-09-02 - - threepenny-editors # failure in job https://hydra.nixos.org/build/233248820 at 2023-09-02 - - threepenny-gui-contextmenu # failure in job https://hydra.nixos.org/build/233242035 at 2023-09-02 - - threepenny-gui-flexbox # failure in job https://hydra.nixos.org/build/233213545 at 2023-09-02 - - thrift # failure in job https://hydra.nixos.org/build/233194283 at 2023-09-02 - - Thrift # failure in job https://hydra.nixos.org/build/233221585 at 2023-09-02 - - throttle-io-stream # failure in job https://hydra.nixos.org/build/233228060 at 2023-09-02 - - throttled-io-loop # failure in job https://hydra.nixos.org/build/233221912 at 2023-09-02 - through-text # failure in job https://hydra.nixos.org/build/233217175 at 2023-09-02 - - throwable-exceptions # failure in job https://hydra.nixos.org/build/233206169 at 2023-09-02 - - thumbnail # failure in job https://hydra.nixos.org/build/233257110 at 2023-09-02 - - thumbnail-plus # failure in job https://hydra.nixos.org/build/233255464 at 2023-09-02 - - tianbar # failure in job https://hydra.nixos.org/build/233195811 at 2023-09-02 - ticket-management # failure in job https://hydra.nixos.org/build/233247134 at 2023-09-02 - - TicTacToe # failure in job https://hydra.nixos.org/build/233256784 at 2023-09-02 - - tictactoe3d # failure in job https://hydra.nixos.org/build/233193080 at 2023-09-02 - tidal-midi # failure in job https://hydra.nixos.org/build/233194389 at 2023-09-02 - - tidal-serial # failure in job https://hydra.nixos.org/build/265955616 at 2024-07-14 - - tidal-vis # failure in job https://hydra.nixos.org/build/234465445 at 2023-09-13 - - tie-knot # failure in job https://hydra.nixos.org/build/233201321 at 2023-09-02 - - tiempo # failure in job https://hydra.nixos.org/build/233250728 at 2023-09-02 - - tiger # failure in job https://hydra.nixos.org/build/233249333 at 2023-09-02 - - TigerHash # failure in job https://hydra.nixos.org/build/233208162 at 2023-09-02 - - tightrope # failure in job https://hydra.nixos.org/build/233215237 at 2023-09-02 - tikzsd # failure in job https://hydra.nixos.org/build/233224431 at 2023-09-02 - - time-extras # failure in job https://hydra.nixos.org/build/233204030 at 2023-09-02 - time-parsers # failure in job https://hydra.nixos.org/build/295097665 at 2025-04-22 - time-qq # failure in job https://hydra.nixos.org/build/233218378 at 2023-09-02 - - time-quote # failure in job https://hydra.nixos.org/build/233209453 at 2023-09-02 - - time-recurrence # failure in job https://hydra.nixos.org/build/233221759 at 2023-09-02 - - time-series # failure in job https://hydra.nixos.org/build/233231491 at 2023-09-02 - - time-series-lib # failure in job https://hydra.nixos.org/build/233247465 at 2023-09-02 - - time-w3c # failure in job https://hydra.nixos.org/build/233225902 at 2023-09-02 - - timecalc # failure in job https://hydra.nixos.org/build/233207970 at 2023-09-02 - - timemap # failure in job https://hydra.nixos.org/build/233250038 at 2023-09-02 - - timeout # failure in job https://hydra.nixos.org/build/233193307 at 2023-09-02 - - timeout-with-results # failure in job https://hydra.nixos.org/build/233212129 at 2023-09-02 - - timeparsers # failure in job https://hydra.nixos.org/build/233250789 at 2023-09-02 - - TimePiece # failure in job https://hydra.nixos.org/build/233213400 at 2023-09-02 - - timeplot # failure in job https://hydra.nixos.org/build/233207049 at 2023-09-02 - - timeseries # failure in job https://hydra.nixos.org/build/233216686 at 2023-09-02 - - timestamp # failure in job https://hydra.nixos.org/build/295097702 at 2025-04-22 - - timeutils # failure in job https://hydra.nixos.org/build/233230513 at 2023-09-02 + - timeplot # previously transitively broken at 2025-09-08 - timezone-detect # failure in job https://hydra.nixos.org/build/233205213 at 2023-09-02 - tini # failure in job https://hydra.nixos.org/build/252732072 at 2024-03-16 - - tiny-scheduler # failure in job https://hydra.nixos.org/build/233224849 at 2023-09-02 + - tinkoff-invest-sdk # previously transitively broken at 2025-09-08 - tinyapp # failure in job https://hydra.nixos.org/build/283207451 at 2024-12-31 - tinyid # failure in job https://hydra.nixos.org/build/233249999 at 2023-09-02 - - TinyLaunchbury # failure in job https://hydra.nixos.org/build/233233671 at 2023-09-02 - - tinylog # failure in job https://hydra.nixos.org/build/233198434 at 2023-09-02 - - tinyMesh # failure in job https://hydra.nixos.org/build/265955590 at 2024-07-14 - - tinytemplate # failure in job https://hydra.nixos.org/build/233208032 at 2023-09-02 - tinytools # failure in job https://hydra.nixos.org/build/295097699 at 2025-04-22 - - TinyURL # failure in job https://hydra.nixos.org/build/233200716 at 2023-09-02 - - tinyXml # failure in job https://hydra.nixos.org/build/233226725 at 2023-09-02 - - tiphys # failure in job https://hydra.nixos.org/build/233199377 at 2023-09-02 - - titan-debug-yampa # failure in job https://hydra.nixos.org/build/233258714 at 2023-09-02 - - titan-record-yampa # failure in job https://hydra.nixos.org/build/233204913 at 2023-09-02 - - Titim # failure in job https://hydra.nixos.org/build/233196143 at 2023-09-02 - - tkhs # failure in job https://hydra.nixos.org/build/233216589 at 2023-09-02 - - tkyprof # failure in job https://hydra.nixos.org/build/233205547 at 2023-09-02 - tlex-core # failure in job https://hydra.nixos.org/build/294586136 at 2025-04-09 - - tls-debug # failure in job https://hydra.nixos.org/build/233228426 at 2023-09-02 - TLT # failure in job https://hydra.nixos.org/build/233193495 at 2023-09-02 - tmp-postgres # failure in job https://hydra.nixos.org/build/252731301 at 2024-03-16 - tmp-proc-example # failure in job https://hydra.nixos.org/build/233223028 at 2023-09-02 - - to-haskell # failure in job https://hydra.nixos.org/build/233195321 at 2023-09-02 - - to-string-class # failure in job https://hydra.nixos.org/build/233244336 at 2023-09-02 - - tofromxml # failure in job https://hydra.nixos.org/build/233257072 at 2023-09-02 - - token-limiter # failure in job https://hydra.nixos.org/build/233255093 at 2023-09-02 - - token-search # failure in job https://hydra.nixos.org/build/233212111 at 2023-09-02 - - tokenify # failure in job https://hydra.nixos.org/build/233249392 at 2023-09-02 - tokenizer # failure in job https://hydra.nixos.org/build/233259112 at 2023-09-02 - - tokenizer-streaming # failure in job https://hydra.nixos.org/build/233232725 at 2023-09-02 - tokstyle # failure in job https://hydra.nixos.org/build/295097736 at 2025-04-22 - tokyocabinet-haskell # failure in job https://hydra.nixos.org/build/233193492 at 2023-09-02 - - tokyotyrant-haskell # failure in job https://hydra.nixos.org/build/233256228 at 2023-09-02 - toml # failure in job https://hydra.nixos.org/build/233223844 at 2023-09-02 - tonalude # failure in job https://hydra.nixos.org/build/233204874 at 2023-09-02 - tonaparser # failure in job https://hydra.nixos.org/build/233224261 at 2023-09-02 - - toodles # failure in job https://hydra.nixos.org/build/233245612 at 2023-09-02 - toolbox # failure in job https://hydra.nixos.org/build/237240871 at 2023-10-21 - - Top # failure in job https://hydra.nixos.org/build/233234827 at 2023-09-02 - - topkata # failure in job https://hydra.nixos.org/build/233231937 at 2023-09-02 - - torch # failure in job https://hydra.nixos.org/build/233222854 at 2023-09-02 - - TORCS # failure in job https://hydra.nixos.org/build/233192054 at 2023-09-02 - tostring # failure in job https://hydra.nixos.org/build/295097731 at 2025-04-22 - - total-maps # failure in job https://hydra.nixos.org/build/233242562 at 2023-09-02 - - TotalMap # failure in job https://hydra.nixos.org/build/233194327 at 2023-09-02 - - touched # failure in job https://hydra.nixos.org/build/233199113 at 2023-09-02 - - Tournament # failure in job https://hydra.nixos.org/build/233239014 at 2023-09-02 - - toxiproxy-haskell # failure in job https://hydra.nixos.org/build/233222810 at 2023-09-02 - - tpar # failure in job https://hydra.nixos.org/build/295097738 at 2025-04-22 + - TotalMap # previously transitively broken at 2025-09-08 - tptp # failure in job https://hydra.nixos.org/build/233195607 at 2023-09-02 - - trace # failure in job https://hydra.nixos.org/build/233196655 at 2023-09-02 - - trace-call # failure in job https://hydra.nixos.org/build/233250575 at 2023-09-02 - - trace-function-call # failure in job https://hydra.nixos.org/build/233243062 at 2023-09-02 - - traced # failure in job https://hydra.nixos.org/build/233229953 at 2023-09-02 - tracetree # failure in job https://hydra.nixos.org/build/233213937 at 2023-09-02 - - tracked-files # failure in job https://hydra.nixos.org/build/233256779 at 2023-09-02 - - tracker # failure in job https://hydra.nixos.org/build/233226925 at 2023-09-02 + - tracing-control # previously transitively broken at 2025-09-08 - trackit # failure in job https://hydra.nixos.org/build/233243891 at 2023-09-02 - - traction # failure in job https://hydra.nixos.org/build/233193894 at 2023-09-02 - - tracy # failure in job https://hydra.nixos.org/build/233210215 at 2023-09-02 - trade-journal # failure in job https://hydra.nixos.org/build/252737021 at 2024-03-16 - - traildb # failure in job https://hydra.nixos.org/build/233223153 at 2023-09-02 - - trans-fx-core # failure in job https://hydra.nixos.org/build/233219543 at 2023-09-02 - - transactional-events # failure in job https://hydra.nixos.org/build/233205740 at 2023-09-02 - - transf # failure in job https://hydra.nixos.org/build/233202251 at 2023-09-02 - - TransformeR # failure in job https://hydra.nixos.org/build/233255786 at 2023-09-02 - - transformers-bifunctors # failure in job https://hydra.nixos.org/build/233258007 at 2023-09-02 - - transformers-compose # failure in job https://hydra.nixos.org/build/233212861 at 2023-09-02 - - transformers-continue # failure in job https://hydra.nixos.org/build/252734162 at 2024-03-16 - - transformers-fix # failure in job https://hydra.nixos.org/build/252715911 at 2024-03-16 + - transf # previously transitively broken at 2025-09-08 - transformers-free # failure in job https://hydra.nixos.org/build/252717332 at 2024-03-16 - - transformers-lift # failure in job https://hydra.nixos.org/build/233223136 at 2023-09-02 - - transformers-runnable # failure in job https://hydra.nixos.org/build/233209164 at 2023-09-02 - - transformers-supply # failure in job https://hydra.nixos.org/build/252713362 at 2024-03-16 - - TransformersStepByStep # failure in job https://hydra.nixos.org/build/233243582 at 2023-09-02 - - transient # failure in job https://hydra.nixos.org/build/233221557 at 2023-09-02 - - translatable-intset # failure in job https://hydra.nixos.org/build/233252531 at 2023-09-02 - - translate # failure in job https://hydra.nixos.org/build/233239029 at 2023-09-02 - - trasa # failure in job https://hydra.nixos.org/build/294586179 at 2025-04-09 + - trasa-form # previously transitively broken at 2025-09-08 + - trasa-reflex # previously transitively broken at 2025-09-08 - traverse-code # failure in job https://hydra.nixos.org/build/233236749 at 2023-09-02 - - travis # failure in job https://hydra.nixos.org/build/233230706 at 2023-09-02 - - travis-meta-yaml # failure in job https://hydra.nixos.org/build/233251064 at 2023-09-02 - - trawl # failure in job https://hydra.nixos.org/build/233255726 at 2023-09-02 - - traypoweroff # failure in job https://hydra.nixos.org/build/233236313 at 2023-09-02 - treap # failure in job https://hydra.nixos.org/build/233248089 at 2023-09-02 - tree-monad # failure in job https://hydra.nixos.org/build/233212246 at 2023-09-02 - - tree-render-text # failure in job https://hydra.nixos.org/build/233240817 at 2023-09-02 - - treemap # failure in job https://hydra.nixos.org/build/233207063 at 2023-09-02 - - treemap-html # failure in job https://hydra.nixos.org/build/233248494 at 2023-09-02 - TreeStructures # failure in job https://hydra.nixos.org/build/233213685 at 2023-09-02 - - tremulous-query # failure in job https://hydra.nixos.org/build/233200947 at 2023-09-02 - - TrendGraph # failure in job https://hydra.nixos.org/build/233258651 at 2023-09-02 - - trhsx # failure in job https://hydra.nixos.org/build/233231297 at 2023-09-02 - - tries # timeout - - trim # failure in job https://hydra.nixos.org/build/233195034 at 2023-09-02 - triplesec # failure in job https://hydra.nixos.org/build/252718437 at 2024-03-16 - - tripLL # failure in job https://hydra.nixos.org/build/233217806 at 2023-09-02 - - trivia # failure in job https://hydra.nixos.org/build/233234176 at 2023-09-02 - - tropical # failure in job https://hydra.nixos.org/build/233212835 at 2023-09-02 - - tropical-geometry # failure in job https://hydra.nixos.org/build/234465815 at 2023-09-13 - trust-chain # failure in job https://hydra.nixos.org/build/233252622 at 2023-09-02 - - tsession # failure in job https://hydra.nixos.org/build/233259005 at 2023-09-02 - tslib # failure in job https://hydra.nixos.org/build/233225813 at 2023-09-02 - - tsp-viz # failure in job https://hydra.nixos.org/build/234446818 at 2023-09-13 - - tsparse # failure in job https://hydra.nixos.org/build/233195941 at 2023-09-02 - - tsuntsun # failure in job https://hydra.nixos.org/build/233259481 at 2023-09-02 - - tsvsql # failure in job https://hydra.nixos.org/build/233230566 at 2023-09-02 - - ttask # failure in job https://hydra.nixos.org/build/233227241 at 2023-09-02 - - ttl-hashtables # failure in job https://hydra.nixos.org/build/233251418 at 2023-09-02 + - ttl-hashtables # previously transitively broken at 2025-09-08 - ttn-client # failure in job https://hydra.nixos.org/build/233226059 at 2023-09-02 - - tttool # failure in job https://hydra.nixos.org/build/233234046 at 2023-09-02 - - tubes # failure in job https://hydra.nixos.org/build/233245507 at 2023-09-02 - - tuntap # failure in job https://hydra.nixos.org/build/233199575 at 2023-09-02 + - tuntap # previously transitively broken at 2025-09-08 - tuple-append-instances # failure in job https://hydra.nixos.org/build/233256201 at 2023-09-02 - tuple-fields # failure in job https://hydra.nixos.org/build/252721117 at 2024-03-16 - - tuple-hlist # failure in job https://hydra.nixos.org/build/295097798 at 2025-04-22 - - tuple-lenses # failure in job https://hydra.nixos.org/build/233239309 at 2023-09-02 - - tuple-morph # failure in job https://hydra.nixos.org/build/294628958 at 2025-04-10 - - tupleinstances # failure in job https://hydra.nixos.org/build/233208004 at 2023-09-02 - - turing-machines # failure in job https://hydra.nixos.org/build/233195604 at 2023-09-02 - - turing-music # failure in job https://hydra.nixos.org/build/233203435 at 2023-09-02 - - turtle-options # failure in job https://hydra.nixos.org/build/233255831 at 2023-09-02 - - tweak # failure in job https://hydra.nixos.org/build/233211020 at 2023-09-02 - twee # failure in job https://hydra.nixos.org/build/302807024 at 2025-07-27 - - twentefp-websockets # failure in job https://hydra.nixos.org/build/233207022 at 2023-09-02 - - twhs # failure in job https://hydra.nixos.org/build/233201182 at 2023-09-02 - - twilio # failure in job https://hydra.nixos.org/build/233199959 at 2023-09-02 - - twiml # failure in job https://hydra.nixos.org/build/233219327 at 2023-09-02 - - twine # failure in job https://hydra.nixos.org/build/233191924 at 2023-09-02 - twirp # failure in job https://hydra.nixos.org/build/252736228 at 2024-03-16 - - twisty # failure in job https://hydra.nixos.org/build/233212390 at 2023-09-02 - - twitch # failure in job https://hydra.nixos.org/build/233198940 at 2023-09-02 - twitchapi # failure in job https://hydra.nixos.org/build/233245126 at 2023-09-02 - - twitter # failure in job https://hydra.nixos.org/build/233244055 at 2023-09-02 - twitter-conduit # failure in job https://hydra.nixos.org/build/295097843 at 2025-04-22 - - twitter-feed # failure in job https://hydra.nixos.org/build/233251565 at 2023-09-02 - - tx # failure in job https://hydra.nixos.org/build/233223988 at 2023-09-02 - - txtblk # failure in job https://hydra.nixos.org/build/233219915 at 2023-09-02 - - TYB # failure in job https://hydra.nixos.org/build/233246075 at 2023-09-02 - - tyfam-witnesses # failure in job https://hydra.nixos.org/build/233191033 at 2023-09-02 - - typalyze # failure in job https://hydra.nixos.org/build/233246228 at 2023-09-02 - - type-combinators # failure in job https://hydra.nixos.org/build/233230024 at 2023-09-02 - type-compare # failure in job https://hydra.nixos.org/build/233207530 at 2023-09-02 - - type-eq # failure in job https://hydra.nixos.org/build/233214388 at 2023-09-02 - type-errors-pretty # failure in job https://hydra.nixos.org/build/233238808 at 2023-09-02 - - type-indexed-queues # failure in job https://hydra.nixos.org/build/233197833 at 2023-09-02 - - type-int # failure in job https://hydra.nixos.org/build/233245978 at 2023-09-02 - - type-interpreter # failure in job https://hydra.nixos.org/build/233192182 at 2023-09-02 - - type-level-bst # failure in job https://hydra.nixos.org/build/233202030 at 2023-09-02 - type-level-kv-list-esqueleto # failure in job https://hydra.nixos.org/build/295097863 at 2025-04-22 - type-level-kv-list-persistent # failure in job https://hydra.nixos.org/build/295097878 at 2025-04-22 - - type-level-natural-number-induction # failure in job https://hydra.nixos.org/build/233259499 at 2023-09-02 - - type-level-natural-number-operations # failure in job https://hydra.nixos.org/build/233198314 at 2023-09-02 - type-level-sets # failure in job https://hydra.nixos.org/build/233197419 at 2023-09-02 - - type-list # failure in job https://hydra.nixos.org/build/233234789 at 2023-09-02 - type-of-html-static # failure in job https://hydra.nixos.org/build/233226924 at 2023-09-02 - type-operators # failure in job https://hydra.nixos.org/build/233232802 at 2023-09-02 - - type-prelude # failure in job https://hydra.nixos.org/build/233221195 at 2023-09-02 - type-reflection # failure in job https://hydra.nixos.org/build/252719111 at 2024-03-16 - type-safe-avl # failure in job https://hydra.nixos.org/build/233203946 at 2023-09-02 - - type-settheory # failure in job https://hydra.nixos.org/build/233209513 at 2023-09-02 - - type-spine # failure in job https://hydra.nixos.org/build/233230265 at 2023-09-02 - - type-tree # failure in job https://hydra.nixos.org/build/233246842 at 2023-09-02 - type-unary # failure in job https://hydra.nixos.org/build/233251718 at 2023-09-02 - - typeable-th # failure in job https://hydra.nixos.org/build/233234377 at 2023-09-02 - typechain # failure in job https://hydra.nixos.org/build/252734998 at 2024-03-16 - TypeCompose # failure in job https://hydra.nixos.org/build/233212999 at 2023-09-02 - - typed-admin # failure in job https://hydra.nixos.org/build/296063081 at 2025-05-02 - - typed-digits # failure in job https://hydra.nixos.org/build/233198266 at 2023-09-02 - typed-encoding # failure in job https://hydra.nixos.org/build/233208093 at 2023-09-02 - typed-fsm # failure in job https://hydra.nixos.org/build/269663128 at 2024-08-19 - typed-process-effectful # failure in job https://hydra.nixos.org/build/236684332 at 2023-10-04 @@ -6372,599 +1881,176 @@ broken-packages: - typed-session-state-algorithm # failure in job https://hydra.nixos.org/build/273462641 at 2024-10-01 - typed-spreadsheet # failure in job https://hydra.nixos.org/build/233248967 at 2023-09-02 - typed-time # failure in job https://hydra.nixos.org/build/233246930 at 2023-09-02 - - typed-wire # failure in job https://hydra.nixos.org/build/233237626 at 2023-09-02 - - typedquery # failure in job https://hydra.nixos.org/build/233215307 at 2023-09-02 - - typehash # failure in job https://hydra.nixos.org/build/233207184 at 2023-09-02 - typelet # failure in job https://hydra.nixos.org/build/302807072 at 2025-07-27 - typelevel-rewrite-rules # failure in job https://hydra.nixos.org/build/233243365 at 2023-09-02 - - typelevel-tensor # failure in job https://hydra.nixos.org/build/233190827 at 2023-09-02 - - typeparams # failure in job https://hydra.nixos.org/build/233192078 at 2023-09-02 - - types-compat # failure in job https://hydra.nixos.org/build/233249850 at 2023-09-02 - typograffiti # failure in job https://hydra.nixos.org/build/233195076 at 2023-09-02 - typson-core # failure in job https://hydra.nixos.org/build/233257835 at 2023-09-02 - - tyro # failure in job https://hydra.nixos.org/build/233200171 at 2023-09-02 - - uacpid # failure in job https://hydra.nixos.org/build/252734266 at 2024-03-16 - - uAgda # failure in job https://hydra.nixos.org/build/233252487 at 2023-09-02 - - uberlast # failure in job https://hydra.nixos.org/build/233233074 at 2023-09-02 - - ucam-webauth-types # failure in job https://hydra.nixos.org/build/233260145 at 2023-09-02 - ucl # failure in job https://hydra.nixos.org/build/233246651 at 2023-09-02 - - uconv # failure in job https://hydra.nixos.org/build/233215580 at 2023-09-02 - - udbus # failure in job https://hydra.nixos.org/build/233237275 at 2023-09-02 - - udp-conduit # failure in job https://hydra.nixos.org/build/233252067 at 2023-09-02 - - udp-streaming # failure in job https://hydra.nixos.org/build/233217795 at 2023-09-02 - ueberzug # failure in job https://hydra.nixos.org/build/233205559 at 2023-09-02 - - uhexdump # failure in job https://hydra.nixos.org/build/233209647 at 2023-09-02 - - uhttpc # failure in job https://hydra.nixos.org/build/233232481 at 2023-09-02 - ui # failure in job https://hydra.nixos.org/build/295097879 at 2025-04-22 - ui-command # failure in job https://hydra.nixos.org/build/233223762 at 2023-09-02 - ukrainian-phonetics-basic-array # failure in job https://hydra.nixos.org/build/275136298 at 2024-10-21 - ukrainian-phonetics-basic-array-bytestring # failure in job https://hydra.nixos.org/build/233228787 at 2023-09-02 - unac-bindings # failure in job https://hydra.nixos.org/build/236686523 at 2023-10-04 - - unamb-custom # failure in job https://hydra.nixos.org/build/233197458 at 2023-09-02 - unbeliever # failure in job https://hydra.nixos.org/build/233221256 at 2023-09-02 - unbound-generics-unify # failure in job https://hydra.nixos.org/build/283205015 at 2024-12-31 - - unbounded-delays-units # failure in job https://hydra.nixos.org/build/233200989 at 2023-09-02 - - unboxed # failure in job https://hydra.nixos.org/build/233219555 at 2023-09-02 - - unboxed-containers # failure in job https://hydra.nixos.org/build/233200384 at 2023-09-02 - - unboxed-references # failure in job https://hydra.nixos.org/build/233192713 at 2023-09-02 - - unbreak # failure in job https://hydra.nixos.org/build/233242560 at 2023-09-02 - unescaping-print # failure in job https://hydra.nixos.org/build/252736030 at 2024-03-16 - - unfix-binders # failure in job https://hydra.nixos.org/build/233259262 at 2023-09-02 - unfoldable # failure in job https://hydra.nixos.org/build/252721990 at 2024-03-16 - unfree # failure in job https://hydra.nixos.org/build/295097900 at 2025-04-22 - uni-util # failure in job https://hydra.nixos.org/build/233219676 at 2023-09-02 - unicode-general-category # failure in job https://hydra.nixos.org/build/233250572 at 2023-09-02 - - unicode-prelude # failure in job https://hydra.nixos.org/build/233241723 at 2023-09-02 - - unicode-symbols # failure in job https://hydra.nixos.org/build/233241639 at 2023-09-02 - unicode-tricks # failure in job https://hydra.nixos.org/build/233258238 at 2023-09-02 + - uniform-watch # previously transitively broken at 2025-09-08 - unimap # failure in job https://hydra.nixos.org/build/299141969 at 2025-06-23 - union-find # failure in job https://hydra.nixos.org/build/233245476 at 2023-09-02 - - union-map # failure in job https://hydra.nixos.org/build/233222765 at 2023-09-02 - - uniprot-kb # failure in job https://hydra.nixos.org/build/233209692 at 2023-09-02 - unique-lang # failure in job https://hydra.nixos.org/build/295097999 at 2025-04-22 - - uniqueid # failure in job https://hydra.nixos.org/build/233251447 at 2023-09-02 - - uniquely-represented-sets # failure in job https://hydra.nixos.org/build/233242429 at 2023-09-02 - - uniqueness-periods-general # failure in job https://hydra.nixos.org/build/233208045 at 2023-09-02 - uniqueness-periods-vector # failure in job https://hydra.nixos.org/build/233243213 at 2023-09-02 - uniqueness-periods-vector-common # failure in job https://hydra.nixos.org/build/233210018 at 2023-09-02 - - units-attoparsec # failure in job https://hydra.nixos.org/build/233196308 at 2023-09-02 - - unittyped # failure in job https://hydra.nixos.org/build/233215159 at 2023-09-02 - - unitym # failure in job https://hydra.nixos.org/build/233246346 at 2023-09-02 - - universal-binary # failure in job https://hydra.nixos.org/build/233240583 at 2023-09-02 - universe-instances-base # failure in job https://hydra.nixos.org/build/233197845 at 2023-09-02 - universe-instances-trans # failure in job https://hydra.nixos.org/build/233235623 at 2023-09-02 - - unix-handle # failure in job https://hydra.nixos.org/build/233233273 at 2023-09-02 - - unix-memory # failure in job https://hydra.nixos.org/build/252735802 at 2024-03-16 - - unix-process-conduit # failure in job https://hydra.nixos.org/build/233191509 at 2023-09-02 - unix-recursive # failure in job https://hydra.nixos.org/build/233194742 at 2023-09-02 - unix-simple # failure in job https://hydra.nixos.org/build/295097959 at 2025-04-22 - unlift # failure in job https://hydra.nixos.org/build/233217875 at 2023-09-02 - unlift-stm # failure in job https://hydra.nixos.org/build/233202388 at 2023-09-02 - - unlifted-list # failure in job https://hydra.nixos.org/build/233205239 at 2023-09-02 - unliftio-messagebox # failure in job https://hydra.nixos.org/build/233200633 at 2023-09-02 - - unm-hip # failure in job https://hydra.nixos.org/build/233232865 at 2023-09-02 - - unordered-containers-rematch # failure in job https://hydra.nixos.org/build/233220800 at 2023-09-02 - - unordered-graphs # failure in job https://hydra.nixos.org/build/233190879 at 2023-09-02 - - unordered-intmap # failure in job https://hydra.nixos.org/build/233194954 at 2023-09-02 - - unpack-funcs # failure in job https://hydra.nixos.org/build/233196365 at 2023-09-02 - - unpacked-containers # failure in job https://hydra.nixos.org/build/295097979 at 2025-04-22 - - unpacked-either # failure in job https://hydra.nixos.org/build/233207731 at 2023-09-02 - - unpacked-maybe # failure in job https://hydra.nixos.org/build/233197926 at 2023-09-02 - unpacked-maybe-text # failure in job https://hydra.nixos.org/build/295097981 at 2025-04-22 - - unroll-ghc-plugin # failure in job https://hydra.nixos.org/build/233212728 at 2023-09-02 - - unsafely # failure in job https://hydra.nixos.org/build/233238669 at 2023-09-02 - unsatisfiable # failure in job https://hydra.nixos.org/build/233228680 at 2023-09-02 - - unsequential # failure in job https://hydra.nixos.org/build/233244400 at 2023-09-02 - - unused # failure in job https://hydra.nixos.org/build/233243602 at 2023-09-02 - uom-plugin # failure in job https://hydra.nixos.org/build/233228019 at 2023-09-02 - - update-monad # failure in job https://hydra.nixos.org/build/252724414 at 2024-03-16 - - Updater # failure in job https://hydra.nixos.org/build/233215373 at 2023-09-02 - updo # failure in job https://hydra.nixos.org/build/244399557 at 2024-01-01 - - uploadcare # failure in job https://hydra.nixos.org/build/233197403 at 2023-09-02 - - upskirt # failure in job https://hydra.nixos.org/build/233226983 at 2023-09-02 - - urbit-hob # failure in job https://hydra.nixos.org/build/233209231 at 2023-09-02 - - uri # failure in job https://hydra.nixos.org/build/233229150 at 2023-09-02 - - uri-conduit # failure in job https://hydra.nixos.org/build/233252949 at 2023-09-02 - - uri-encoder # failure in job https://hydra.nixos.org/build/233228287 at 2023-09-02 - - uri-parse # failure in job https://hydra.nixos.org/build/233258573 at 2023-09-02 - - uri-template # failure in job https://hydra.nixos.org/build/233243696 at 2023-09-02 - - uri-templater # failure in job https://hydra.nixos.org/build/233231885 at 2023-09-02 - url-bytes # failure in job https://hydra.nixos.org/build/233226116 at 2023-09-02 - - url-decoders # failure in job https://hydra.nixos.org/build/233245312 at 2023-09-02 - - url-generic # failure in job https://hydra.nixos.org/build/233221641 at 2023-09-02 - - URLb # failure in job https://hydra.nixos.org/build/233226766 at 2023-09-02 - - urlcheck # failure in job https://hydra.nixos.org/build/233211869 at 2023-09-02 - - urldecode # failure in job https://hydra.nixos.org/build/233258501 at 2023-09-02 - - urldisp-happstack # failure in job https://hydra.nixos.org/build/233194536 at 2023-09-02 - - urn # failure in job https://hydra.nixos.org/build/233228949 at 2023-09-02 - - urn-random # failure in job https://hydra.nixos.org/build/233243986 at 2023-09-02 - - urxml # failure in job https://hydra.nixos.org/build/233195104 at 2023-09-02 - - useragents # failure in job https://hydra.nixos.org/build/233203723 at 2023-09-02 - - users-mysql-haskell # failure in job https://hydra.nixos.org/build/295098002 at 2025-04-22 - - users-persistent # failure in job https://hydra.nixos.org/build/233258182 at 2023-09-02 - - users-postgresql-simple # failure in job https://hydra.nixos.org/build/252737462 at 2024-03-16 - - utc # failure in job https://hydra.nixos.org/build/233218307 at 2023-09-02 - - utf8-conversions # failure in job https://hydra.nixos.org/build/233245725 at 2023-09-02 - - utf8-prelude # failure in job https://hydra.nixos.org/build/233240100 at 2023-09-02 - - utf8-validator # failure in job https://hydra.nixos.org/build/233211712 at 2023-09-02 - util # failure in job https://hydra.nixos.org/build/233234741 at 2023-09-02 - - util-logict # failure in job https://hydra.nixos.org/build/233215338 at 2023-09-02 - - util-plus # failure in job https://hydra.nixos.org/build/233231591 at 2023-09-02 - - util-primitive # failure in job https://hydra.nixos.org/build/233258861 at 2023-09-02 - - uu-cco # failure in job https://hydra.nixos.org/build/233259027 at 2023-09-02 - - uuagc-bootstrap # failure in job https://hydra.nixos.org/build/233254123 at 2023-09-02 + - utxorpc-client # previously transitively broken at 2025-09-08 + - utxorpc-server # previously transitively broken at 2025-09-08 - uuagc-diagrams # failure in job https://hydra.nixos.org/build/233247645 at 2023-09-02 - - uuid-aeson # failure in job https://hydra.nixos.org/build/233219695 at 2023-09-02 - - uvector # failure in job https://hydra.nixos.org/build/233224782 at 2023-09-02 - - uxadt # failure in job https://hydra.nixos.org/build/233254972 at 2023-09-02 - - vabal-lib # failure in job https://hydra.nixos.org/build/233198776 at 2023-09-02 - - vacuum # failure in job https://hydra.nixos.org/build/233238529 at 2023-09-02 - vado # failure in job https://hydra.nixos.org/build/233202865 at 2023-09-02 - - valid-names # failure in job https://hydra.nixos.org/build/233213115 at 2023-09-02 - - validated-types # failure in job https://hydra.nixos.org/build/233258079 at 2023-09-02 - - Validation # failure in job https://hydra.nixos.org/build/233253977 at 2023-09-02 - - validations # failure in job https://hydra.nixos.org/build/233208976 at 2023-09-02 - validationt # failure in job https://hydra.nixos.org/build/252739235 at 2024-03-16 - - validators # failure in job https://hydra.nixos.org/build/233235532 at 2023-09-02 - - value-supply # failure in job https://hydra.nixos.org/build/233190936 at 2023-09-02 - ValveValueKeyvalue # failure in job https://hydra.nixos.org/build/252733320 at 2024-03-16 - - vampire # failure in job https://hydra.nixos.org/build/233216179 at 2023-09-02 - - var # failure in job https://hydra.nixos.org/build/233240303 at 2023-09-02 - var-monad # failure in job https://hydra.nixos.org/build/295098124 at 2025-04-22 - - varan # failure in job https://hydra.nixos.org/build/233232057 at 2023-09-02 - variable-media-field # failure in job https://hydra.nixos.org/build/233231573 at 2023-09-02 - - variables # failure in job https://hydra.nixos.org/build/233237682 at 2023-09-02 - variadic # failure in job https://hydra.nixos.org/build/233209743 at 2023-09-02 - - variation # failure in job https://hydra.nixos.org/build/233240549 at 2023-09-02 - - vault-tool # failure in job https://hydra.nixos.org/build/233217613 at 2023-09-02 - - vcache # failure in job https://hydra.nixos.org/build/233250925 at 2023-09-02 - - vcatt # failure in job https://hydra.nixos.org/build/233236976 at 2023-09-02 - - vcf # failure in job https://hydra.nixos.org/build/233246613 at 2023-09-02 - - vcswrapper # failure in job https://hydra.nixos.org/build/233228400 at 2023-09-02 - - Vec-Boolean # failure in job https://hydra.nixos.org/build/233218305 at 2023-09-02 - - Vec-OpenGLRaw # failure in job https://hydra.nixos.org/build/233230560 at 2023-09-02 - - vect-floating # failure in job https://hydra.nixos.org/build/233196146 at 2023-09-02 - - vect-opengl # failure in job https://hydra.nixos.org/build/233230142 at 2023-09-02 - - vector-bytestring # failure in job https://hydra.nixos.org/build/233209167 at 2023-09-02 - vector-circular # failure in job https://hydra.nixos.org/build/233230058 at 2023-09-02 - - vector-clock # failure in job https://hydra.nixos.org/build/233203491 at 2023-09-02 - - vector-conduit # failure in job https://hydra.nixos.org/build/233237284 at 2023-09-02 - - vector-doublezip # failure in job https://hydra.nixos.org/build/233252979 at 2023-09-02 - - vector-endian # failure in job https://hydra.nixos.org/build/233237355 at 2023-09-02 - - vector-functorlazy # failure in job https://hydra.nixos.org/build/233201658 at 2023-09-02 - - vector-heterogenous # failure in job https://hydra.nixos.org/build/233221627 at 2023-09-02 - - vector-random # failure in job https://hydra.nixos.org/build/233254910 at 2023-09-02 - - vector-read-instances # failure in job https://hydra.nixos.org/build/233220057 at 2023-09-02 - - vector-shuffling # failure in job https://hydra.nixos.org/build/233245999 at 2023-09-02 - - vector-space-map # failure in job https://hydra.nixos.org/build/233235784 at 2023-09-02 - - vector-space-opengl # failure in job https://hydra.nixos.org/build/233206443 at 2023-09-02 - - vector-space-points # failure in job https://hydra.nixos.org/build/233230506 at 2023-09-02 - - vector-static # failure in job https://hydra.nixos.org/build/233236346 at 2023-09-02 - velma # failure in job https://hydra.nixos.org/build/233252875 at 2023-09-02 - - Verba # failure in job https://hydra.nixos.org/build/233237824 at 2023-09-02 - - verbalexpressions # failure in job https://hydra.nixos.org/build/233247870 at 2023-09-02 - - verdict # failure in job https://hydra.nixos.org/build/233238835 at 2023-09-02 - - verify # failure in job https://hydra.nixos.org/build/233239874 at 2023-09-02 - - verilog # failure in job https://hydra.nixos.org/build/233211999 at 2023-09-02 - verismith # failure in job https://hydra.nixos.org/build/299186734 at 2025-06-23 - versioning # failure in job https://hydra.nixos.org/build/233205892 at 2023-09-02 - vformat # failure in job https://hydra.nixos.org/build/233222840 at 2023-09-02 - vgrep # failure in job https://hydra.nixos.org/build/233210982 at 2023-09-02 - - vhd # failure in job https://hydra.nixos.org/build/233230229 at 2023-09-02 - - vhdl # failure in job https://hydra.nixos.org/build/233244814 at 2023-09-02 - - vicinity # failure in job https://hydra.nixos.org/build/233240251 at 2023-09-02 - - viewprof # failure in job https://hydra.nixos.org/build/233257842 at 2023-09-02 - - views # failure in job https://hydra.nixos.org/build/233203371 at 2023-09-02 - vikunja-api # failure in job https://hydra.nixos.org/build/295098092 at 2025-04-22 - - Villefort # failure in job https://hydra.nixos.org/build/233224994 at 2023-09-02 - - vimus # failure in job https://hydra.nixos.org/build/233227980 at 2023-09-02 - - vintage-basic # failure in job https://hydra.nixos.org/build/233241073 at 2023-09-02 - - vinyl-generics # failure in job https://hydra.nixos.org/build/259973897 at 2024-05-19 - - vinyl-json # failure in job https://hydra.nixos.org/build/233207036 at 2023-09-02 - - vinyl-named-sugar # failure in job https://hydra.nixos.org/build/233205326 at 2023-09-02 - - vinyl-plus # failure in job https://hydra.nixos.org/build/233237873 at 2023-09-02 - - vinyl-utils # failure in job https://hydra.nixos.org/build/233209198 at 2023-09-02 - - vinyl-vectors # failure in job https://hydra.nixos.org/build/233209137 at 2023-09-02 - - virthualenv # failure in job https://hydra.nixos.org/build/233216281 at 2023-09-02 - - visibility # failure in job https://hydra.nixos.org/build/233206672 at 2023-09-02 - - visual-prof # failure in job https://hydra.nixos.org/build/233250080 at 2023-09-02 - visualize-cbn # failure in job https://hydra.nixos.org/build/295098135 at 2025-04-22 - - vitrea # failure in job https://hydra.nixos.org/build/233252038 at 2023-09-02 - - vk-aws-route53 # failure in job https://hydra.nixos.org/build/233250126 at 2023-09-02 - - VKHS # failure in job https://hydra.nixos.org/build/233246557 at 2023-09-02 - vocoder # failure in job https://hydra.nixos.org/build/295122919 at 2025-04-22 - - vowpal-utils # failure in job https://hydra.nixos.org/build/233251505 at 2023-09-02 - - voyeur # failure in job https://hydra.nixos.org/build/233234792 at 2023-09-02 - - VRML # failure in job https://hydra.nixos.org/build/233256643 at 2023-09-02 - - vt-utils # failure in job https://hydra.nixos.org/build/233244619 at 2023-09-02 - - vte # failure in job https://hydra.nixos.org/build/233234429 at 2023-09-02 - - vtegtk3 # failure in job https://hydra.nixos.org/build/233226713 at 2023-09-02 - - vty-examples # failure in job https://hydra.nixos.org/build/233235872 at 2023-09-02 - - vty-menu # failure in job https://hydra.nixos.org/build/233232391 at 2023-09-02 - - vty-ui # failure in job https://hydra.nixos.org/build/233200900 at 2023-09-02 - - wacom-daemon # failure in job https://hydra.nixos.org/build/233213077 at 2023-09-02 - - waddle # failure in job https://hydra.nixos.org/build/233239973 at 2023-09-02 - wai-control # failure in job https://hydra.nixos.org/build/295098171 at 2025-04-22 - - wai-git-http # failure in job https://hydra.nixos.org/build/233191513 at 2023-09-02 - - wai-graceful # failure in job https://hydra.nixos.org/build/233243180 at 2023-09-02 - - wai-handler-devel # failure in job https://hydra.nixos.org/build/233226033 at 2023-09-02 - - wai-handler-scgi # failure in job https://hydra.nixos.org/build/233246939 at 2023-09-02 - wai-handler-webkit # failure in job https://hydra.nixos.org/build/233236556 at 2023-09-02 - - wai-hmac-auth # failure in job https://hydra.nixos.org/build/233210044 at 2023-09-02 - wai-lambda # failure in job https://hydra.nixos.org/build/295098199 at 2025-04-22 - - wai-lens # failure in job https://hydra.nixos.org/build/233225852 at 2023-09-02 - - wai-lite # failure in job https://hydra.nixos.org/build/233234657 at 2023-09-02 - - wai-logger-buffered # failure in job https://hydra.nixos.org/build/233196102 at 2023-09-02 - - wai-logger-prefork # failure in job https://hydra.nixos.org/build/233202495 at 2023-09-02 - wai-middleware-auth # failure in job https://hydra.nixos.org/build/233199447 at 2023-09-02 - - wai-middleware-catch # failure in job https://hydra.nixos.org/build/233222782 at 2023-09-02 - wai-middleware-content-type # failure in job https://hydra.nixos.org/build/295098150 at 2025-04-22 - - wai-middleware-crowd # failure in job https://hydra.nixos.org/build/233237853 at 2023-09-02 - - wai-middleware-etag # failure in job https://hydra.nixos.org/build/233212107 at 2023-09-02 - - wai-middleware-headers # failure in job https://hydra.nixos.org/build/233229927 at 2023-09-02 - - wai-middleware-hmac-client # failure in job https://hydra.nixos.org/build/233249856 at 2023-09-02 - - wai-middleware-preprocessor # failure in job https://hydra.nixos.org/build/233227365 at 2023-09-02 - - wai-middleware-static-caching # failure in job https://hydra.nixos.org/build/233208386 at 2023-09-02 - - wai-middleware-travisci # failure in job https://hydra.nixos.org/build/233215805 at 2023-09-02 - wai-middleware-validation # failure in job https://hydra.nixos.org/build/252713056 at 2024-03-16 - - wai-middleware-verbs # failure in job https://hydra.nixos.org/build/295098205 at 2025-04-22 - wai-predicates # failure in job https://hydra.nixos.org/build/245788559 at 2024-01-07 - wai-problem-details # failure in job https://hydra.nixos.org/build/233227727 at 2023-09-02 - wai-rate-limit-postgres # failure in job https://hydra.nixos.org/build/233244097 at 2023-09-02 - wai-rate-limit-redis # failure in job https://hydra.nixos.org/build/233207860 at 2023-09-02 - - wai-request-spec # failure in job https://hydra.nixos.org/build/233252640 at 2023-09-02 - - wai-responsible # failure in job https://hydra.nixos.org/build/233248119 at 2023-09-02 - - wai-router # failure in job https://hydra.nixos.org/build/233253691 at 2023-09-02 - - wai-routes # failure in job https://hydra.nixos.org/build/233243854 at 2023-09-02 - wai-secure-cookies # failure in job https://hydra.nixos.org/build/233216416 at 2023-09-02 - - wai-session-alt # failure in job https://hydra.nixos.org/build/295098153 at 2025-04-22 - - wai-session-mysql # failure in job https://hydra.nixos.org/build/233206451 at 2023-09-02 - wai-session-postgresql # failure in job https://hydra.nixos.org/build/233229871 at 2023-09-02 - wai-session-redis # failure in job https://hydra.nixos.org/build/233218737 at 2023-09-02 - - wai-static-cache # failure in job https://hydra.nixos.org/build/233228597 at 2023-09-02 - - wai-throttler # failure in job https://hydra.nixos.org/build/233231002 at 2023-09-02 - - waitfree # failure in job https://hydra.nixos.org/build/233222583 at 2023-09-02 - - waitra # failure in job https://hydra.nixos.org/build/233222291 at 2023-09-02 - wakame # failure in job https://hydra.nixos.org/build/233254673 at 2023-09-02 - - wallpaper # failure in job https://hydra.nixos.org/build/233219027 at 2023-09-02 - warc # failure in job https://hydra.nixos.org/build/233215734 at 2023-09-02 - - warp-dynamic # failure in job https://hydra.nixos.org/build/233220479 at 2023-09-02 - - warp-static # failure in job https://hydra.nixos.org/build/233239581 at 2023-09-02 - - warp-tls-uid # failure in job https://hydra.nixos.org/build/252725883 at 2024-03-16 - wasm # failure in job https://hydra.nixos.org/build/233249877 at 2023-09-02 - - watcher # failure in job https://hydra.nixos.org/build/233245056 at 2023-09-02 - - watchit # failure in job https://hydra.nixos.org/build/233199573 at 2023-09-02 - wavefront # failure in job https://hydra.nixos.org/build/233248071 at 2023-09-02 - - wavefront-obj # failure in job https://hydra.nixos.org/build/233200951 at 2023-09-02 - - weak-bag # failure in job https://hydra.nixos.org/build/233198097 at 2023-09-02 - - Weather # failure in job https://hydra.nixos.org/build/233197934 at 2023-09-02 - - weather-api # failure in job https://hydra.nixos.org/build/233202108 at 2023-09-02 - - web-css # failure in job https://hydra.nixos.org/build/233195455 at 2023-09-02 - - web-encodings # failure in job https://hydra.nixos.org/build/233199718 at 2023-09-02 + - weave # previously transitively broken at 2025-09-08 - web-inv-route # failure in job https://hydra.nixos.org/build/252728701 at 2024-03-16 - - web-output # failure in job https://hydra.nixos.org/build/233191936 at 2023-09-02 - - web-page # failure in job https://hydra.nixos.org/build/233243334 at 2023-09-02 - web-plugins # failure in job https://hydra.nixos.org/build/233207596 at 2023-09-02 - - web-push # failure in job https://hydra.nixos.org/build/233206721 at 2023-09-02 - web-routes-happstack # failure in job https://hydra.nixos.org/build/295098198 at 2025-04-22 - - web-routes-quasi # failure in job https://hydra.nixos.org/build/233222454 at 2023-09-02 - - web-routes-transformers # failure in job https://hydra.nixos.org/build/233256428 at 2023-09-02 + - web-routes-hsp # previously transitively broken at 2025-09-08 - web-routes-wai # failure in job https://hydra.nixos.org/build/295098187 at 2025-04-22 - web-view # failure in job https://hydra.nixos.org/build/244678837 at 2024-01-01 - web3-ipfs # failure in job https://hydra.nixos.org/build/233235342 at 2023-09-02 - - webapi # failure in job https://hydra.nixos.org/build/233243522 at 2023-09-02 - - webapp # failure in job https://hydra.nixos.org/build/233201743 at 2023-09-02 - webauthn # failure in job https://hydra.nixos.org/build/233255527 at 2023-09-02 - - WebBits # failure in job https://hydra.nixos.org/build/233244872 at 2023-09-02 - webby # failure in job https://hydra.nixos.org/build/233221764 at 2023-09-02 - - webcloud # failure in job https://hydra.nixos.org/build/233239317 at 2023-09-02 - - webcrank # failure in job https://hydra.nixos.org/build/233212229 at 2023-09-02 - - webcrank-dispatch # failure in job https://hydra.nixos.org/build/233209191 at 2023-09-02 - - webdriver-angular # failure in job https://hydra.nixos.org/build/233212981 at 2023-09-02 - webdriver-precore # failure in job https://hydra.nixos.org/build/296523789 at 2025-05-14 - - webdriver-snoy # failure in job https://hydra.nixos.org/build/233251068 at 2023-09-02 - - WeberLogic # failure in job https://hydra.nixos.org/build/233209283 at 2023-09-02 - webfinger-client # failure in job https://hydra.nixos.org/build/233252528 at 2023-09-02 - - webkit-javascriptcore # failure in job https://hydra.nixos.org/build/233208424 at 2023-09-02 - - webkitgtk3 # failure in job https://hydra.nixos.org/build/233215712 at 2023-09-02 + - webify # previously transitively broken at 2025-09-08 - webmention # failure in job https://hydra.nixos.org/build/233208899 at 2023-09-02 - - Webrexp # failure in job https://hydra.nixos.org/build/233212376 at 2023-09-02 - - webshow # failure in job https://hydra.nixos.org/build/233243842 at 2023-09-02 - websockets-json # failure in job https://hydra.nixos.org/build/295098197 at 2025-04-22 - - websockets-rpc # failure in job https://hydra.nixos.org/build/295098230 at 2025-04-22 - - webwire # failure in job https://hydra.nixos.org/build/233233892 at 2023-09-02 - wedged # failure in job https://hydra.nixos.org/build/252739136 at 2024-03-16 - - WEditor # failure in job https://hydra.nixos.org/build/233215233 at 2023-09-02 - - weighted-regexp # failure in job https://hydra.nixos.org/build/233243077 at 2023-09-02 - - welshy # failure in job https://hydra.nixos.org/build/233224249 at 2023-09-02 - - werewolf # failure in job https://hydra.nixos.org/build/233250937 at 2023-09-02 + - weierstrass-functions # previously transitively broken at 2025-09-08 - wgpu-raw-hs # failure in job https://hydra.nixos.org/build/233221814 at 2023-09-02 - - Wheb # failure in job https://hydra.nixos.org/build/233258281 at 2023-09-02 - - while-lang-parser # failure in job https://hydra.nixos.org/build/233237507 at 2023-09-02 - - whim # failure in job https://hydra.nixos.org/build/234465317 at 2023-09-13 - - whiskers # failure in job https://hydra.nixos.org/build/233258941 at 2023-09-02 - - whois # failure in job https://hydra.nixos.org/build/233250022 at 2023-09-02 - - why3 # failure in job https://hydra.nixos.org/build/233235892 at 2023-09-02 - wide-word-instances # failure in job https://hydra.nixos.org/build/233253084 at 2023-09-02 - wikicfp-scraper # failure in job https://hydra.nixos.org/build/233198432 at 2023-09-02 - - WikimediaParser # failure in job https://hydra.nixos.org/build/233242393 at 2023-09-02 - willow # failure in job https://hydra.nixos.org/build/233215807 at 2023-09-02 - windns # failure in job https://hydra.nixos.org/build/233242724 at 2023-09-02 - - winerror # failure in job https://hydra.nixos.org/build/233196100 at 2023-09-02 - - wire-streams # failure in job https://hydra.nixos.org/build/299186735 at 2025-06-23 - wireguard-hs # failure in job https://hydra.nixos.org/build/233218722 at 2023-09-02 - - wires # failure in job https://hydra.nixos.org/build/233192321 at 2023-09-02 - - wiring # failure in job https://hydra.nixos.org/build/233191683 at 2023-09-02 - witherable-class # failure in job https://hydra.nixos.org/build/295098236 at 2025-04-22 - - witty # failure in job https://hydra.nixos.org/build/233194976 at 2023-09-02 - - wkt # failure in job https://hydra.nixos.org/build/233220848 at 2023-09-02 - wkt-geom # failure in job https://hydra.nixos.org/build/233199774 at 2023-09-02 - - wl-pprint-console # failure in job https://hydra.nixos.org/build/233204682 at 2023-09-02 - - wl-pprint-extras # failure in job https://hydra.nixos.org/build/233233369 at 2023-09-02 - - WL500gPLib # failure in job https://hydra.nixos.org/build/233203811 at 2023-09-02 - - WMSigner # failure in job https://hydra.nixos.org/build/233199780 at 2023-09-02 - - woe # failure in job https://hydra.nixos.org/build/233222792 at 2023-09-02 - - woffex # failure in job https://hydra.nixos.org/build/233210566 at 2023-09-02 - - wol # failure in job https://hydra.nixos.org/build/233237896 at 2023-09-02 + - wolf # previously transitively broken at 2025-09-08 - word16 # failure in job https://hydra.nixos.org/build/252737588 at 2024-03-16 - word24 # failure in job https://hydra.nixos.org/build/233259494 at 2023-09-02 - - word2vec-model # failure in job https://hydra.nixos.org/build/233209500 at 2023-09-02 - word8set # failure in job https://hydra.nixos.org/build/233246039 at 2023-09-02 - wordify # failure in job https://hydra.nixos.org/build/233229102 at 2023-09-02 - - Wordlint # failure in job https://hydra.nixos.org/build/233233123 at 2023-09-02 - wordlist # failure in job https://hydra.nixos.org/build/233199456 at 2023-09-02 - wordn # failure in job https://hydra.nixos.org/build/233238840 at 2023-09-02 - - WordNet # failure in job https://hydra.nixos.org/build/233201604 at 2023-09-02 - - WordNet-ghc74 # failure in job https://hydra.nixos.org/build/233192586 at 2023-09-02 - wordpass # failure in job https://hydra.nixos.org/build/233202954 at 2023-09-02 - wordpress-auth # failure in job https://hydra.nixos.org/build/252724354 at 2024-03-16 - - wordsearch # failure in job https://hydra.nixos.org/build/233203803 at 2023-09-02 - - work-time # failure in job https://hydra.nixos.org/build/233245304 at 2023-09-02 - - workdays # failure in job https://hydra.nixos.org/build/233209994 at 2023-09-02 - Workflow # failure in job https://hydra.nixos.org/build/233203463 at 2023-09-02 - - workflow-osx # failure in job https://hydra.nixos.org/build/233235315 at 2023-09-02 - - workflow-windows # failure in job https://hydra.nixos.org/build/233257774 at 2023-09-02 - world-peace # failure in job https://hydra.nixos.org/build/252710711 at 2024-03-16 - worldturtle # failure in job https://hydra.nixos.org/build/234448293 at 2023-09-13 - - wp-archivebot # failure in job https://hydra.nixos.org/build/233195749 at 2023-09-02 - wrapped # failure in job https://hydra.nixos.org/build/295098260 at 2025-04-22 - wrapped-generic-default # failure in job https://hydra.nixos.org/build/252718811 at 2024-03-16 - wreq-effectful # failure in job https://hydra.nixos.org/build/295098277 at 2025-04-22 - wreq-helper # failure in job https://hydra.nixos.org/build/233228914 at 2023-09-02 - - wreq-patchable # failure in job https://hydra.nixos.org/build/233237832 at 2023-09-02 - - wreq-sb # failure in job https://hydra.nixos.org/build/233259269 at 2023-09-02 - - write-buffer-core # failure in job https://hydra.nixos.org/build/252727715 at 2024-03-16 - - writer-cps-exceptions # failure in job https://hydra.nixos.org/build/252717755 at 2024-03-16 - - writer-cps-lens # failure in job https://hydra.nixos.org/build/233238466 at 2023-09-02 - - writer-cps-monads-tf # failure in job https://hydra.nixos.org/build/233218245 at 2023-09-02 - - writer-cps-morph # failure in job https://hydra.nixos.org/build/233241891 at 2023-09-02 - writer-cps-mtl # failure in job https://hydra.nixos.org/build/252713593 at 2024-03-16 - - wsdl # failure in job https://hydra.nixos.org/build/233208187 at 2023-09-02 - - wsedit # failure in job https://hydra.nixos.org/build/233232333 at 2023-09-02 - wsjtx-udp # failure in job https://hydra.nixos.org/build/299186736 at 2025-06-23 - - wss-client # timeout - - wtk # failure in job https://hydra.nixos.org/build/233220668 at 2023-09-02 - - wumpus-core # failure in job https://hydra.nixos.org/build/233244405 at 2023-09-02 - - wxdirect # failure in job https://hydra.nixos.org/build/233255519 at 2023-09-02 - - wybor # failure in job https://hydra.nixos.org/build/252729784 at 2024-03-16 - - X # failure in job https://hydra.nixos.org/build/233217783 at 2023-09-02 - - x-dsp # failure in job https://hydra.nixos.org/build/233218091 at 2023-09-02 - - X11-extras # failure in job https://hydra.nixos.org/build/233226031 at 2023-09-02 - - X11-rm # failure in job https://hydra.nixos.org/build/233242806 at 2023-09-02 - - X11-xdamage # failure in job https://hydra.nixos.org/build/233194342 at 2023-09-02 - - X11-xfixes # failure in job https://hydra.nixos.org/build/233256494 at 2023-09-02 - x86-64bit # failure in job https://hydra.nixos.org/build/252737465 at 2024-03-16 - xcffib # failure in job https://hydra.nixos.org/build/295098351 at 2025-04-22 - xcframework # failure in job https://hydra.nixos.org/build/302807506 at 2025-07-27 - - xchat-plugin # failure in job https://hydra.nixos.org/build/233238679 at 2023-09-02 - - xcp # failure in job https://hydra.nixos.org/build/233208926 at 2023-09-02 - - Xec # failure in job https://hydra.nixos.org/build/233191564 at 2023-09-02 - - xenstore # failure in job https://hydra.nixos.org/build/233234469 at 2023-09-02 - - xfconf # failure in job https://hydra.nixos.org/build/233234800 at 2023-09-02 - - xformat # failure in job https://hydra.nixos.org/build/233211918 at 2023-09-02 - - xgboost-haskell # failure in job https://hydra.nixos.org/build/295098374 at 2025-04-22 - - xhaskell-library # failure in job https://hydra.nixos.org/build/233221178 at 2023-09-02 - xhb # failure in job https://hydra.nixos.org/build/233204853 at 2023-09-02 - xilinx-lava # failure in job https://hydra.nixos.org/build/233247659 at 2023-09-02 - - xine # failure in job https://hydra.nixos.org/build/233255620 at 2023-09-02 - - xing-api # failure in job https://hydra.nixos.org/build/233220080 at 2023-09-02 - - xkbcommon # failure in job https://hydra.nixos.org/build/233237797 at 2023-09-02 - - xkcd # failure in job https://hydra.nixos.org/build/233211690 at 2023-09-02 - - xleb # failure in job https://hydra.nixos.org/build/233232785 at 2023-09-02 - xls # failure in job https://hydra.nixos.org/build/233201430 at 2023-09-02 - - xlsior # failure in job https://hydra.nixos.org/build/233199562 at 2023-09-02 - - xlsx-tabular # failure in job https://hydra.nixos.org/build/233199137 at 2023-09-02 - - xlsx-templater # failure in job https://hydra.nixos.org/build/233245940 at 2023-09-02 - - xml-conduit-decode # failure in job https://hydra.nixos.org/build/233191276 at 2023-09-02 - - xml-conduit-parse # failure in job https://hydra.nixos.org/build/233200360 at 2023-09-02 - xml-conduit-selectors # failure in job https://hydra.nixos.org/build/233223331 at 2023-09-02 - xml-conduit-stylist # failure in job https://hydra.nixos.org/build/233226507 at 2023-09-02 - xml-extractors # failure in job https://hydra.nixos.org/build/252718569 at 2024-03-16 - - xml-html-conduit-lens # failure in job https://hydra.nixos.org/build/233238471 at 2023-09-02 - xml-indexed-cursor # failure in job https://hydra.nixos.org/build/295098303 at 2025-04-22 - - xml-isogen # failure in job https://hydra.nixos.org/build/303231372 at 2025-07-27 - - xml-parsec # failure in job https://hydra.nixos.org/build/233208461 at 2023-09-02 - xml-parser # failure in job https://hydra.nixos.org/build/252721082 at 2024-03-16 - - xml-prettify # failure in job https://hydra.nixos.org/build/233225974 at 2023-09-02 - xml-prettify-text # failure in job https://hydra.nixos.org/build/233202586 at 2023-09-02 - xml-query # failure in job https://hydra.nixos.org/build/233194795 at 2023-09-02 - - xml-to-json # failure in job https://hydra.nixos.org/build/233197489 at 2023-09-02 - - xml-tydom-core # failure in job https://hydra.nixos.org/build/233206253 at 2023-09-02 - xml-verify # failure in job https://hydra.nixos.org/build/233237302 at 2023-09-02 - - xml2json # failure in job https://hydra.nixos.org/build/233254605 at 2023-09-02 - - XmlHtmlWriter # failure in job https://hydra.nixos.org/build/233213597 at 2023-09-02 - - XMMS # failure in job https://hydra.nixos.org/build/233196853 at 2023-09-02 - - xmonad-bluetilebranch # failure in job https://hydra.nixos.org/build/233221580 at 2023-09-02 - - xmonad-contrib-gpl # failure in job https://hydra.nixos.org/build/233251722 at 2023-09-02 - - xmonad-entryhelper # failure in job https://hydra.nixos.org/build/233249530 at 2023-09-02 - - xmonad-eval # failure in job https://hydra.nixos.org/build/233248519 at 2023-09-02 - - xmonad-screenshot # failure in job https://hydra.nixos.org/build/233233742 at 2023-09-02 - - xmonad-vanessa # failure in job https://hydra.nixos.org/build/233214303 at 2023-09-02 - xmonad-wallpaper # failure in job https://hydra.nixos.org/build/233217165 at 2023-09-02 - - xmonad-windownames # failure in job https://hydra.nixos.org/build/233258043 at 2023-09-02 - xnobar # failure in job https://hydra.nixos.org/build/302807518 at 2025-07-27 - - xorshift-plus # failure in job https://hydra.nixos.org/build/233255176 at 2023-09-02 - - Xorshift128Plus # failure in job https://hydra.nixos.org/build/233225679 at 2023-09-02 - - xsact # failure in job https://hydra.nixos.org/build/233221821 at 2023-09-02 - xsd # failure in job https://hydra.nixos.org/build/233209021 at 2023-09-02 - - xsha1 # failure in job https://hydra.nixos.org/build/233257136 at 2023-09-02 - - xslt # failure in job https://hydra.nixos.org/build/233225636 at 2023-09-02 - xtea # failure in job https://hydra.nixos.org/build/282175333 at 2024-12-23 - xxhash # failure in job https://hydra.nixos.org/build/233240335 at 2023-09-02 - xxhash-ffi # failure in job https://hydra.nixos.org/build/295098345 at 2025-04-22 - - y0l0bot # failure in job https://hydra.nixos.org/build/233212722 at 2023-09-02 - - yabi-muno # failure in job https://hydra.nixos.org/build/233246871 at 2023-09-02 - - yackage # failure in job https://hydra.nixos.org/build/233213393 at 2023-09-02 - - YACPong # failure in job https://hydra.nixos.org/build/233203317 at 2023-09-02 - - yahoo-finance-api # failure in job https://hydra.nixos.org/build/233248439 at 2023-09-02 - - yahoo-finance-conduit # failure in job https://hydra.nixos.org/build/233235625 at 2023-09-02 - yahoo-prices # failure in job https://hydra.nixos.org/build/233211650 at 2023-09-02 - - yahoo-web-search # failure in job https://hydra.nixos.org/build/233201427 at 2023-09-02 - - yajl # failure in job https://hydra.nixos.org/build/233242185 at 2023-09-02 - - yak # failure in job https://hydra.nixos.org/build/233207129 at 2023-09-02 - - yall # failure in job https://hydra.nixos.org/build/233254805 at 2023-09-02 - - yam-app # failure in job https://hydra.nixos.org/build/233250535 at 2023-09-02 - - yam-config # failure in job https://hydra.nixos.org/build/233194454 at 2023-09-02 - - yamemo # failure in job https://hydra.nixos.org/build/252739552 at 2024-03-16 - yaml-combinators # failure in job https://hydra.nixos.org/build/233225265 at 2023-09-02 - yaml-config # failure in job https://hydra.nixos.org/build/233242910 at 2023-09-02 - yaml-light-lens # failure in job https://hydra.nixos.org/build/233251688 at 2023-09-02 - - yaml-pretty-extras # failure in job https://hydra.nixos.org/build/233219040 at 2023-09-02 - - yaml-rpc # failure in job https://hydra.nixos.org/build/233192097 at 2023-09-02 - - yaml-union # failure in job https://hydra.nixos.org/build/233253896 at 2023-09-02 - - yamlkeysdiff # failure in job https://hydra.nixos.org/build/233234710 at 2023-09-02 - yamlparse-applicative # failure in job https://hydra.nixos.org/build/252718434 at 2024-03-16 - - YamlReference # failure in job https://hydra.nixos.org/build/233222700 at 2023-09-02 - - yampa-glfw # failure in job https://hydra.nixos.org/build/233215695 at 2023-09-02 - yampa-gloss # failure in job https://hydra.nixos.org/build/295098349 at 2025-04-22 - - yampa-glut # failure in job https://hydra.nixos.org/build/234458324 at 2023-09-13 - - yampa-sdl2 # failure in job https://hydra.nixos.org/build/233246927 at 2023-09-02 - yampa-test # failure in job https://hydra.nixos.org/build/252726579 at 2024-03-16 - - yampa2048 # failure in job https://hydra.nixos.org/build/234450231 at 2023-09-13 - - YampaSynth # failure in job https://hydra.nixos.org/build/233226486 at 2023-09-02 - - yandex-translate # failure in job https://hydra.nixos.org/build/233225152 at 2023-09-02 - - yaop # failure in job https://hydra.nixos.org/build/233215867 at 2023-09-02 - yapb # failure in job https://hydra.nixos.org/build/233246177 at 2023-09-02 - yarn2nix # failure in job https://hydra.nixos.org/build/233216079 at 2023-09-02 - - yarr # failure in job https://hydra.nixos.org/build/233209487 at 2023-09-02 - - yate # failure in job https://hydra.nixos.org/build/233231754 at 2023-09-02 - yaya-test # failure in job https://hydra.nixos.org/build/233254306 at 2023-09-02 - yaya-unsafe-test # failure in job https://hydra.nixos.org/build/233194827 at 2023-09-02 - - yeller # failure in job https://hydra.nixos.org/build/233240270 at 2023-09-02 - - yeshql-hdbc # failure in job https://hydra.nixos.org/build/233245733 at 2023-09-02 - - yeshql-postgresql-simple # failure in job https://hydra.nixos.org/build/233238128 at 2023-09-02 - - yesod-angular # failure in job https://hydra.nixos.org/build/233237689 at 2023-09-02 - - yesod-angular-ui # failure in job https://hydra.nixos.org/build/233233873 at 2023-09-02 - - yesod-auth-account # failure in job https://hydra.nixos.org/build/233252535 at 2023-09-02 - - yesod-auth-account-fork # failure in job https://hydra.nixos.org/build/233251662 at 2023-09-02 - - yesod-auth-bcrypt # failure in job https://hydra.nixos.org/build/233210341 at 2023-09-02 - - yesod-auth-bcryptdb # failure in job https://hydra.nixos.org/build/233209630 at 2023-09-02 - - yesod-auth-deskcom # failure in job https://hydra.nixos.org/build/233230640 at 2023-09-02 - - yesod-auth-fb # failure in job https://hydra.nixos.org/build/233224172 at 2023-09-02 - - yesod-auth-hmac-keccak # failure in job https://hydra.nixos.org/build/233224778 at 2023-09-02 - - yesod-auth-kerberos # failure in job https://hydra.nixos.org/build/233245920 at 2023-09-02 - - yesod-auth-ldap-mediocre # failure in job https://hydra.nixos.org/build/233195322 at 2023-09-02 - - yesod-auth-ldap-native # failure in job https://hydra.nixos.org/build/233218681 at 2023-09-02 - - yesod-auth-nopassword # failure in job https://hydra.nixos.org/build/233197722 at 2023-09-02 - yesod-auth-oidc # failure in job https://hydra.nixos.org/build/252727671 at 2024-03-16 - - yesod-auth-pam # failure in job https://hydra.nixos.org/build/233207688 at 2023-09-02 - - yesod-auth-smbclient # failure in job https://hydra.nixos.org/build/233234879 at 2023-09-02 - - yesod-auth-zendesk # failure in job https://hydra.nixos.org/build/233212653 at 2023-09-02 - - yesod-bootstrap # failure in job https://hydra.nixos.org/build/233205201 at 2023-09-02 - yesod-comments # failure in job https://hydra.nixos.org/build/233252703 at 2023-09-02 - - yesod-content-pdf # failure in job https://hydra.nixos.org/build/233210723 at 2023-09-02 - - yesod-crud # failure in job https://hydra.nixos.org/build/233218383 at 2023-09-02 - - yesod-crud-persist # failure in job https://hydra.nixos.org/build/233245131 at 2023-09-02 - - yesod-datatables # failure in job https://hydra.nixos.org/build/233197763 at 2023-09-02 - - yesod-dsl # failure in job https://hydra.nixos.org/build/233210879 at 2023-09-02 - - yesod-fast-devel # failure in job https://hydra.nixos.org/build/233209381 at 2023-09-02 - yesod-filter # failure in job https://hydra.nixos.org/build/233252569 at 2023-09-02 - - yesod-form-json # failure in job https://hydra.nixos.org/build/233210866 at 2023-09-02 - - yesod-form-richtext # failure in job https://hydra.nixos.org/build/233201156 at 2023-09-02 - yesod-gitrev # failure in job https://hydra.nixos.org/build/233197294 at 2023-09-02 - yesod-goodies # failure in job https://hydra.nixos.org/build/233223782 at 2023-09-02 - - yesod-ip # failure in job https://hydra.nixos.org/build/233254277 at 2023-09-02 - - yesod-job-queue # failure in job https://hydra.nixos.org/build/233259258 at 2023-09-02 - yesod-katip # failure in job https://hydra.nixos.org/build/233236143 at 2023-09-02 - yesod-links # failure in job https://hydra.nixos.org/build/233257763 at 2023-09-02 - - yesod-lucid # failure in job https://hydra.nixos.org/build/233231687 at 2023-09-02 - yesod-middleware-csp # failure in job https://hydra.nixos.org/build/295098382 at 2025-04-22 - - yesod-paginate # failure in job https://hydra.nixos.org/build/233218563 at 2023-09-02 - - yesod-pagination # failure in job https://hydra.nixos.org/build/233204022 at 2023-09-02 - - yesod-pnotify # failure in job https://hydra.nixos.org/build/233258047 at 2023-09-02 - - yesod-pure # failure in job https://hydra.nixos.org/build/233192121 at 2023-09-02 - - yesod-raml # failure in job https://hydra.nixos.org/build/233230699 at 2023-09-02 - - yesod-recaptcha # failure in job https://hydra.nixos.org/build/233235972 at 2023-09-02 - - yesod-routes # failure in job https://hydra.nixos.org/build/233233323 at 2023-09-02 - - yesod-rst # failure in job https://hydra.nixos.org/build/233201863 at 2023-09-02 - - yesod-s3 # failure in job https://hydra.nixos.org/build/233224000 at 2023-09-02 - - yesod-sass # failure in job https://hydra.nixos.org/build/233240621 at 2023-09-02 - - yesod-static-angular # failure in job https://hydra.nixos.org/build/233249261 at 2023-09-02 - - yesod-static-remote # failure in job https://hydra.nixos.org/build/233218340 at 2023-09-02 - yesod-static-streamly # failure in job https://hydra.nixos.org/build/233224664 at 2023-09-02 - - yesod-test-json # failure in job https://hydra.nixos.org/build/233227876 at 2023-09-02 - - yesod-text-markdown # failure in job https://hydra.nixos.org/build/233192278 at 2023-09-02 - - yesod-tls # failure in job https://hydra.nixos.org/build/233251484 at 2023-09-02 - - yesod-transloadit # failure in job https://hydra.nixos.org/build/233202132 at 2023-09-02 - - yesod-vend # failure in job https://hydra.nixos.org/build/233227545 at 2023-09-02 - - YFrob # failure in job https://hydra.nixos.org/build/233197612 at 2023-09-02 - - yggdrasil # failure in job https://hydra.nixos.org/build/233229923 at 2023-09-02 - yggdrasil-schema # failure in job https://hydra.nixos.org/build/275135174 at 2024-10-21 - - yhccore # failure in job https://hydra.nixos.org/build/233199669 at 2023-09-02 - - yhseq # failure in job https://hydra.nixos.org/build/233191724 at 2023-09-02 - - yi-contrib # failure in job https://hydra.nixos.org/build/276370855 at 2024-11-06 - - yi-monokai # failure in job https://hydra.nixos.org/build/276375617 at 2024-11-06 - - yi-solarized # failure in job https://hydra.nixos.org/build/276380211 at 2024-11-06 - - yi-spolsky # failure in job https://hydra.nixos.org/build/276371008 at 2024-11-06 - - yices # failure in job https://hydra.nixos.org/build/233242137 at 2023-09-02 - yoctoparsec # failure in job https://hydra.nixos.org/build/233192019 at 2023-09-02 - - Yogurt # failure in job https://hydra.nixos.org/build/233212103 at 2023-09-02 - yosys-rtl # failure in job https://hydra.nixos.org/build/269657756 at 2024-08-19 - - yu-core # failure in job https://hydra.nixos.org/build/233202551 at 2023-09-02 - - yu-tool # failure in job https://hydra.nixos.org/build/233216535 at 2023-09-02 - - yuiGrid # failure in job https://hydra.nixos.org/build/233223402 at 2023-09-02 - - yxdb-utils # failure in job https://hydra.nixos.org/build/233210232 at 2023-09-02 - Z-Data # failure in job https://hydra.nixos.org/build/233256080 at 2023-09-02 - - z3-encoding # failure in job https://hydra.nixos.org/build/233254155 at 2023-09-02 - - z85 # failure in job https://hydra.nixos.org/build/233235083 at 2023-09-02 - - zabt # failure in job https://hydra.nixos.org/build/233249170 at 2023-09-02 - - zampolit # failure in job https://hydra.nixos.org/build/233223270 at 2023-09-02 - zbar # failure in job https://hydra.nixos.org/build/233598222 at 2023-09-02 - - ZEBEDDE # failure in job https://hydra.nixos.org/build/233217131 at 2023-09-02 - - zendesk-api # failure in job https://hydra.nixos.org/build/233257269 at 2023-09-02 - - zeno # failure in job https://hydra.nixos.org/build/233218338 at 2023-09-02 - zeolite-lang # failure in job https://hydra.nixos.org/build/233217146 at 2023-09-02 - zephyr # failure in job https://hydra.nixos.org/build/267966227 at 2024-07-31 - - zero # failure in job https://hydra.nixos.org/build/233209286 at 2023-09-02 - - zeromq-haskell # failure in job https://hydra.nixos.org/build/233196050 at 2023-09-02 - - zeromq3-haskell # failure in job https://hydra.nixos.org/build/233215557 at 2023-09-02 - - zeromq4-clone-pattern # timeout - - zeromq4-conduit # failure in job https://hydra.nixos.org/build/233198244 at 2023-09-02 - zeromq4-patterns # timeout - zettelkast # failure in job https://hydra.nixos.org/build/233211485 at 2023-09-02 - - ZFS # failure in job https://hydra.nixos.org/build/233257824 at 2023-09-02 - - zifter # failure in job https://hydra.nixos.org/build/233196342 at 2023-09-02 - - zigbee-znet25 # failure in job https://hydra.nixos.org/build/233235729 at 2023-09-02 - zio # failure in job https://hydra.nixos.org/build/252730492 at 2024-03-16 - zip-conduit # failure in job https://hydra.nixos.org/build/233259721 at 2023-09-02 - - zipedit # failure in job https://hydra.nixos.org/build/233218886 at 2023-09-02 - - zipkin # failure in job https://hydra.nixos.org/build/233249243 at 2023-09-02 - - ziptastic-core # failure in job https://hydra.nixos.org/build/233220608 at 2023-09-02 - - zlib-lens # failure in job https://hydra.nixos.org/build/233197265 at 2023-09-02 - - ZMachine # failure in job https://hydra.nixos.org/build/233244623 at 2023-09-02 - - zmidi-score # failure in job https://hydra.nixos.org/build/233208041 at 2023-09-02 - - zmqat # failure in job https://hydra.nixos.org/build/233236300 at 2023-09-02 - - zoneinfo # failure in job https://hydra.nixos.org/build/233203677 at 2023-09-02 - - zoom # failure in job https://hydra.nixos.org/build/233210779 at 2023-09-02 - - zoom-refs # failure in job https://hydra.nixos.org/build/233247488 at 2023-09-02 - - zsdd # failure in job https://hydra.nixos.org/build/233236944 at 2023-09-02 - - zsh-battery # failure in job https://hydra.nixos.org/build/233206733 at 2023-09-02 - - zsyntax # failure in job https://hydra.nixos.org/build/233233753 at 2023-09-02 - ztail # failure in job https://hydra.nixos.org/build/233228534 at 2023-09-02 - zuul # failure in job https://hydra.nixos.org/build/233204205 at 2023-09-02 - - Zwaluw # failure in job https://hydra.nixos.org/build/233216701 at 2023-09-02 - zwirn-core # failure in job https://hydra.nixos.org/build/295098470 at 2025-04-22 - - zxcvbn-dvorak # failure in job https://hydra.nixos.org/build/233194326 at 2023-09-02 - zxcvbn-hs # failure in job https://hydra.nixos.org/build/295098457 at 2025-04-22 - zydiskell # failure in job https://hydra.nixos.org/build/233259592 at 2023-09-02 - zyre2 # failure in job https://hydra.nixos.org/build/233215215 at 2023-09-02 diff --git a/pkgs/development/haskell-modules/configuration-hackage2nix/excluded.json b/pkgs/development/haskell-modules/configuration-hackage2nix/excluded.json new file mode 100644 index 0000000000000..bb4dbd3de7a0f --- /dev/null +++ b/pkgs/development/haskell-modules/configuration-hackage2nix/excluded.json @@ -0,0 +1,7940 @@ +{ + "excluded-packages": [ + "# keep-sorted start case=no skip_lines=1 ", + "__insert-target-for-script__", + "3d-graphics-examples", + "3dmodels", + "4Blocks", + "a50", + "AAI", + "abacate", + "abcBridge", + "abcnotation", + "abeson", + "abides", + "abnf", + "AbortT-monadstf", + "AbortT-mtl", + "AbortT-transformers", + "abstract-par-accelerate", + "abt", + "AC-BuildPlatform", + "AC-EasyRaster-GTK", + "AC-HalfInteger", + "ac-machine", + "ac-machine-conduit", + "AC-MiniTest", + "AC-Terminal", + "AC-VanillaArray", + "accelerate-arithmetic", + "accelerate-fftw", + "accelerate-fourier", + "accelerate-llvm", + "accelerate-random", + "accelerate-typelits", + "accelerate-utility", + "accentuateus", + "access-time", + "access-token-provider", + "accuerr", + "acid-state-dist", + "acid-state-tls", + "acme-all-monad", + "acme-comonad", + "acme-dont", + "acme-flipping-tables", + "acme-hq9plus", + "acme-http", + "acme-inator", + "acme-io", + "acme-kitchen-sink", + "acme-left-pad", + "acme-memorandom", + "acme-miscorder", + "acme-mutable-package", + "acme-now", + "acme-numbersystem", + "acme-operators", + "acme-php", + "acme-safe", + "acme-schoenfinkel", + "acme-strfry", + "acme-stringly-typed", + "acme-strtok", + "acme-this", + "acme-zalgo", + "acme-zero", + "acousticbrainz-client", + "ActionKid", + "activehs", + "activehs-base", + "activitypub", + "activitystreams-aeson", + "actor", + "Adaptive", + "Adaptive-Blaisorblade", + "adaptive-containers", + "adaptive-tuple", + "adb", + "adhoc-network", + "adict", + "adjunction", + "adobe-swatch-exchange", + "adp-multi", + "adp-multi-monadiccp", + "ADPfusion", + "ADPfusionForest", + "ADPfusionSet", + "adtrees", + "Advgame", + "Advise-me", + "AERN-Basics", + "AERN-Net", + "AERN-Real", + "AERN-Real-Double", + "AERN-Real-Interval", + "AERN-RnToRm", + "AERN-RnToRm-Plot", + "aeson-applicative", + "aeson-bson", + "aeson-default", + "aeson-diff-generic", + "aeson-filthy", + "aeson-flat", + "aeson-flatten", + "aeson-json-ast", + "aeson-lens", + "aeson-native", + "aeson-options", + "aeson-parsec-picky", + "aeson-prefix", + "aeson-schema", + "aeson-smart", + "aeson-streams", + "aeson-t", + "aeson-toolkit", + "aeson-utils", + "affection", + "affine", + "affine-invariant-ensemble-mcmc", + "afis", + "afv", + "ag-pictgen", + "Agata", + "Agda-executable", + "agda-server", + "agda-snippets", + "agda-snippets-hakyll", + "agentx", + "AGI", + "aig", + "aip", + "air-extra", + "air-th", + "airbrake", + "airtable-api", + "ajhc", + "al", + "AlanDeniseEricLauren", + "alerta", + "alerts", + "alex-prelude", + "alfred", + "alga", + "algebra-dag", + "algebra-driven-design", + "algebra-sql", + "algebraic", + "algebraic-classes", + "algebraic-prelude", + "algo-s", + "algolia", + "AlgoRhythm", + "AlgorithmW", + "align-text", + "AlignmentAlgorithms", + "alloy", + "alloy-proxy-fd", + "ally-invest", + "alms", + "alpha", + "alpino-tools", + "alsa", + "alsa-gui", + "alsa-midi", + "alsa-pcm-tests", + "alsa-seq-tests", + "altcomposition", + "alternative-extra", + "alternative-io", + "altfloat", + "alto", + "alure", + "amazon-emailer", + "amazon-emailer-client-snap", + "amazon-products", + "amazonka-iam-policy", + "amby", + "AMI", + "ampersand", + "amqp-conduit", + "amrun", + "analyze", + "analyze-client", + "anansi", + "anansi-hscolour", + "anansi-pandoc", + "anatomy", + "android", + "android-lint-summary", + "AndroidViewHierarchyImporter", + "angel", + "angle", + "animalcase", + "Animas", + "animascii", + "animate", + "animate-example", + "animate-frames", + "animate-preview", + "animate-sdl2", + "anki-tools", + "annotated-fix", + "Annotations", + "anonymous-sums", + "anonymous-sums-tests", + "antagonist", + "antfarm", + "anticiv", + "antigate", + "antimirov", + "antiope-swf", + "antiquoter", + "antisplice", + "antlrc", + "anydbm", + "Aoide", + "aosd", + "apache-md5", + "apart", + "apelsin", + "api-builder", + "api-rpc-factom", + "api-rpc-pegnet", + "api-yoti", + "apiary", + "apiary-authenticate", + "apiary-clientsession", + "apiary-cookie", + "apiary-eventsource", + "apiary-helics", + "apiary-http-client", + "apiary-logger", + "apiary-memcached", + "apiary-mongoDB", + "apiary-persistent", + "apiary-purescript", + "apiary-redis", + "apiary-session", + "apiary-websockets", + "apis", + "apns-http2", + "apotiki", + "app-lens", + "app-settings", + "appc", + "ApplePush", + "AppleScript", + "applicative-fail", + "applicative-parsec", + "applicative-quoters", + "applicative-splice", + "approveapi", + "approx-rand-test", + "ApproxFun-hs", + "arb-fft", + "arbb-vm", + "arbor-lru-cache", + "arbor-monad-counter", + "arbor-monad-logger", + "arbor-monad-metric", + "arbor-monad-metric-datadog", + "archive-tar-bytestring", + "archiver", + "archlinux", + "archlinux-web", + "archnews", + "arena", + "arff", + "arghwxhaskell", + "argparser", + "arguedit", + "ariadne", + "arion", + "armada", + "arpa", + "arpack", + "array-forth", + "array-list", + "array-primops", + "arraylist", + "ArrayRef", + "arrow-improve", + "arrowapply-utils", + "arrowp", + "arrowp-qq", + "ArrowVHDL", + "artery", + "artifact", + "asap", + "ascii-cows", + "ascii-flatten", + "ascii-string", + "ascii-table", + "ascii-vector-avc", + "ascii85-conduit", + "asic", + "asif", + "asil", + "ASN1", + "asn1-codec", + "asn1-data", + "assert", + "assertions", + "asset-map", + "assimp", + "assumpta", + "assumpta-core", + "astar-monad", + "astrds", + "astview", + "async-ajax", + "async-combinators", + "async-dejafu", + "async-manager", + "async-timer", + "asynchronous-exceptions", + "aterm-utils", + "atmos-dimensional-tf", + "atndapi", + "atom-msp430", + "atomic-primops-foreign", + "atomic-primops-vector", + "atomo", + "ats-format", + "ats-setup", + "ats-storable", + "attempt", + "attic-schedule", + "atto-lisp", + "AttoBencode", + "AttoJson", + "attomail", + "attoparsec-csv", + "attoparsec-enumerator", + "attoparsec-iteratee", + "attoparsec-text", + "attoparsec-text-enumerator", + "attoparsec-trans", + "attosplit", + "Attrac", + "atuin", + "audiovisual", + "augeas", + "augur", + "aur-api", + "Aurochs", + "authenticate-ldap", + "authinfo-hs", + "authoring", + "auto", + "AutoForms", + "autom", + "automata", + "autonix-deps", + "autonix-deps-kf5", + "autopack", + "autoproc", + "avatar-generator", + "avers-api", + "avers-api-docs", + "avers-server", + "avl-static", + "AvlTree", + "avr-shake", + "avro-piper", + "avwx", + "awesome-prelude", + "awesomium", + "awesomium-glut", + "awesomium-raw", + "aws-cloudfront-signer", + "aws-configuration-tools", + "aws-dynamodb-conduit", + "aws-dynamodb-streams", + "aws-ec2", + "aws-ec2-knownhosts", + "aws-elastic-transcoder", + "aws-general", + "aws-kinesis", + "aws-kinesis-client", + "aws-kinesis-reshard", + "aws-lambda", + "aws-mfa-credentials", + "aws-performance-tests", + "aws-route53", + "aws-sdk", + "aws-sdk-text-converter", + "aws-sdk-xml-unordered", + "aws-ses-easy", + "aws-sign4", + "aws-simple", + "aws-sns", + "axiom", + "azimuth-hs", + "azubi", + "azure-acs", + "azure-email", + "azure-functions-worker", + "azure-service-api", + "azure-servicebus", + "azurify", + "babl", + "babylon", + "backblaze-b2-hs", + "backdropper", + "backstop", + "backtracking-exceptions", + "backward-state", + "bag", + "Baggins", + "bake", + "ballast", + "bamboo", + "bamboo-launcher", + "bamboo-plugin-highlight", + "bamboo-plugin-photo", + "bamboo-theme-blueprint", + "bamboo-theme-mini-html5", + "bamstats", + "Bang", + "banwords", + "barchart", + "barcodes-code128", + "barecheck", + "barley", + "Barracuda", + "barrie", + "barrier-monad", + "base-compat-migrate", + "base-feature-macros", + "base-generics", + "base-io-access", + "base32-bytestring", + "base58address", + "base64-conduit", + "basen", + "baserock-schema", + "basex-client", + "bash", + "BASIC", + "basic", + "baskell", + "battlenet", + "battlenet-yesod", + "battleplace", + "battleplace-api", + "battleships", + "bayes-stack", + "bazel-coverage-report-renderer", + "bbi", + "bdcs", + "bdcs-api", + "bdd", + "bdelta", + "bdo", + "beam", + "beam-mysql", + "beam-newtype-field", + "beam-th", + "beamable", + "beautifHOL", + "beeminder-api", + "Befunge93", + "bein", + "belka", + "bench-graph", + "BenchmarkHistory", + "bencodex", + "berkeleydb", + "BerkeleyDBXML", + "BerlekampAlgorithm", + "berp", + "bert", + "besout", + "bet", + "bff", + "bff-mono", + "bgmax", + "bgzf", + "bibdb", + "bidispec", + "bidispec-extras", + "bifunctor", + "BiGUL", + "billboard-parser", + "billeksah-forms", + "billeksah-main", + "billeksah-pane", + "billeksah-services", + "binary-bits", + "binary-communicator", + "binary-derive", + "binary-file", + "binary-indexed-tree", + "binary-protocol", + "binary-protocol-zmq", + "binary-streams", + "binary-strict", + "binary-tree", + "binary-typed", + "bind-marshal", + "BinderAnn", + "binding-core", + "binding-gtk", + "binding-wx", + "bindings-apr", + "bindings-apr-util", + "bindings-bfd", + "bindings-cctools", + "bindings-common", + "bindings-dc1394", + "bindings-directfb", + "bindings-eskit", + "bindings-EsounD", + "bindings-fann", + "bindings-fluidsynth", + "bindings-friso", + "bindings-gsl", + "bindings-hamlib", + "bindings-hdf5", + "bindings-K8055", + "bindings-levmar", + "bindings-libftdi", + "bindings-libg15", + "bindings-librrd", + "bindings-libstemmer", + "bindings-libusb", + "bindings-libv4l2", + "bindings-linux-videodev2", + "bindings-monetdb-mapi", + "bindings-mpdecimal", + "bindings-ppdev", + "bindings-sc3", + "bindings-sipc", + "bindings-wlc", + "bindynamic", + "binembed", + "binembed-example", + "bio", + "bio-sequence", + "bioace", + "bioalign", + "Biobase", + "BiobaseDotP", + "BiobaseEnsembl", + "BiobaseFR3D", + "BiobaseHTTP", + "BiobaseHTTPTools", + "BiobaseInfernal", + "BiobaseMAF", + "BiobaseTrainingData", + "BiobaseTurner", + "BiobaseVienna", + "biocore", + "biofasta", + "biofastq", + "biohazard", + "BioHMM", + "biophd", + "biopsl", + "biosff", + "biostockholm", + "bird", + "BirdPP", + "bisect-binary", + "bit-array", + "bit-stream", + "bitcoin-address", + "bitcoin-api", + "bitcoin-api-extra", + "bitcoin-block", + "bitcoin-hs", + "bitcoin-keys", + "bitcoin-rpc", + "bitcoin-script", + "bitcoin-tx", + "Bitly", + "bitly-cli", + "bits-atomic", + "bits-conduit", + "bits-extras", + "bitset", + "bitspeak", + "BitStringRandomMonad", + "bittorrent", + "bitx-bitcoin", + "bkr", + "bla", + "blakesum", + "blakesum-demo", + "blas", + "blastxml", + "blatex", + "blaze-builder-enumerator", + "blaze-html-contrib", + "blaze-html-hexpat", + "blaze-html-truncate", + "blaze-json", + "blaze-shields", + "blaze-textual-native", + "ble", + "blink1", + "blip", + "bliplib", + "Blobs", + "blockchain", + "blockhash", + "Blogdown", + "blogination", + "bloodhound-amazonka-auth", + "bloomfilter-redis", + "blosum", + "bloxorz", + "blubber", + "blubber-server", + "bludigon", + "Blueprint", + "bluetile", + "bluetileutils", + "blunk-hask-tests", + "blunt", + "bno055-haskell", + "bogocopy", + "bogre-banana", + "boltzmann-brain", + "bond-haskell", + "bond-haskell-compiler", + "bookkeeper", + "bookkeeper-permissions", + "bookkeeping", + "bookkeeping-jp", + "Bookshelf", + "boolean-like", + "boolean-normal-forms", + "boombox", + "boomslang", + "boots", + "boots-app", + "boots-cloud", + "boots-web", + "borel", + "boring-window-switcher", + "bot", + "botpp", + "bound-gen", + "bowntz", + "braid", + "brain-bleep", + "Bravo", + "breakout", + "brians-brain", + "brick-dropdownmenu", + "brick-filetree", + "bricks", + "bricks-internal", + "bricks-internal-test", + "bricks-parsec", + "bricks-rendering", + "bricks-syntax", + "brillig", + "broccoli", + "brok", + "broker-haskell", + "bronyradiogermany-common", + "bronyradiogermany-streaming", + "brotli-conduit", + "browscap", + "bsd-sysctl", + "bson-generic", + "bson-generics", + "bson-mapping", + "bsparse", + "btree", + "btree-concurrent", + "buchhaltung", + "buffer", + "BufferedSocket", + "buffon", + "buffon-machines", + "bugzilla", + "buildable", + "buildbox", + "buildbox-tools", + "builder", + "buildwrapper", + "bulletproofs", + "bulmex", + "bumper", + "bunz", + "burnt-explorer", + "burst-detection", + "bus-pirate", + "Buster", + "buster", + "buster-gtk", + "buster-network", + "bustle", + "butter", + "butterflies", + "bytable", + "bytearray-parsing", + "bytestring-arbitrary", + "bytestring-builder-varword", + "bytestring-class", + "bytestring-csv", + "bytestring-delta", + "bytestring-plain", + "bytestring-read", + "bytestring-rematch", + "bytestring-show", + "bytestring-substring", + "bytestring-time", + "bytestring-typenats", + "bytestringparser", + "bytestringparser-temporary", + "bytestringreadp", + "c-dsl", + "c-io", + "c-mosquitto", + "c2ats", + "ca", + "cabal-audit", + "cabal-build-programs", + "cabal-bundle-clib", + "cabal-constraints", + "cabal-dependency-licenses", + "cabal-dev", + "cabal-dir", + "cabal-edit", + "cabal-file-th", + "cabal-ghc-dynflags", + "cabal-ghci", + "cabal-graphdeps", + "cabal-helper", + "Cabal-ide-backend", + "cabal-install-bundle", + "cabal-install-ghc72", + "cabal-install-ghc74", + "cabal-meta", + "cabal-mon", + "cabal-nirvana", + "cabal-progdeps", + "cabal-query", + "cabal-setup", + "cabal-sign", + "cabal-src", + "cabal-test", + "cabal-test-quickcheck", + "cabal-toolkit", + "cabal-uninstall", + "cabal-upload", + "cabal2arch", + "cabal2doap", + "cabal2ebuild", + "cabal2ghci", + "cabalgraph", + "cabalish", + "cabalmdvrpm", + "cabalQuery", + "cabalrpmdeps", + "CabalSearch", + "cabalvchk", + "cabin", + "cabocha", + "cache-polysemy", + "caching", + "cafeteria-prelude", + "caffegraph", + "cairo-core", + "cake", + "cake3", + "cakyrespa", + "cal-layout", + "cal3d", + "cal3d-examples", + "cal3d-opengl", + "calc", + "calculator", + "caledon", + "calenderweek", + "call", + "call-haskell-from-anything", + "campfire", + "canon", + "canonical-filepath", + "canteven-http", + "canteven-listen-http", + "canteven-log", + "canteven-parsedate", + "cantor", + "cao", + "cap", + "Capabilities", + "capataz", + "capped-list", + "capri", + "caramia", + "carbonara", + "carboncopy", + "carettah", + "CarneadesDSL", + "CarneadesIntoDung", + "carte", + "cartel", + "Cartesian", + "cas-hashable", + "cas-hashable-s3", + "cas-store", + "casadi-bindings", + "casadi-bindings-control", + "casadi-bindings-core", + "casadi-bindings-ipopt-interface", + "casadi-bindings-snopt-interface", + "Cascade", + "cascading", + "case-insensitive-match", + "caseof", + "cash", + "casr-logbook-html", + "casr-logbook-meta", + "casr-logbook-meta-html", + "casr-logbook-reports", + "casr-logbook-reports-html", + "casr-logbook-reports-meta", + "casr-logbook-reports-meta-html", + "casr-logbook-types", + "cassandra-cql", + "cassandra-thrift", + "Cassava", + "cassava-records", + "cassy", + "castle", + "casui", + "catamorphism", + "Catana", + "catch-fd", + "categorical-algebra", + "category-extras", + "category-printf", + "category-traced", + "catnplus", + "cautious-file", + "cautious-gen", + "cayene-lpp", + "cblrepo", + "CBOR", + "CC-delcont", + "CC-delcont-alt", + "CC-delcont-cxe", + "CC-delcont-exc", + "CC-delcont-ref", + "CC-delcont-ref-tf", + "CCA", + "ccast", + "ccnx", + "cctools-workqueue", + "cedict", + "cef", + "cef3-raw", + "cef3-simple", + "ceilometer-common", + "cellrenderer-cairo", + "celtchar", + "cerberus", + "cereal-data-dword", + "cereal-derive", + "cereal-enumerator", + "cereal-ieee754", + "cereal-io-streams", + "cereal-plus", + "cereal-streams", + "cereal-uuid", + "certificate", + "cf", + "cfipu", + "cflp", + "cfopu", + "cg", + "cgen", + "cgi-utils", + "chalkboard", + "chalkboard-viewer", + "chalmers-lava2000", + "char-qq", + "charade", + "chart-cli", + "Chart-fltkhs", + "chart-histogram", + "Chart-simple", + "chart-svg-various", + "chart-unit", + "chaselev-deque", + "chatty-text", + "chatwork", + "cheapskate-highlight", + "cheapskate-terminal", + "check-pvp", + "Checked", + "checked", + "checkmate", + "chevalier-common", + "chitauri", + "Chitra", + "choose", + "choose-exe", + "chorale", + "chorale-geo", + "chp", + "chp-mtl", + "chp-plus", + "chp-spec", + "chp-transformers", + "chr-data", + "chr-parse", + "ChristmasTree", + "chromatin", + "chronograph", + "chronos-bench", + "chu2", + "chuchu", + "chunks", + "chunky", + "church", + "church-maybe", + "cielo", + "cil", + "cinvoke", + "cio", + "cipher-blowfish", + "cipher-des", + "circlehs", + "citation-resolve", + "citeproc-hs-pandoc-filter", + "cj-token", + "cjk", + "cl3-hmatrix-interface", + "cl3-linear-interface", + "clac", + "clafer", + "claferIG", + "claferwiki", + "clang-compilation-database", + "clang-pure", + "clanki", + "clarifai", + "CLASE", + "clash", + "clash-multisignal", + "clash-prelude-quickcheck", + "clash-systemverilog", + "clash-verilog", + "clash-vhdl", + "classify-frog", + "ClassLaws", + "classy-influxdb-simple", + "classy-miso", + "classy-parallel", + "classyplate", + "ClassyPrelude", + "clckwrks-dot-com", + "clckwrks-plugin-bugs", + "clckwrks-plugin-ircbot", + "clckwrks-plugin-mailinglist", + "clckwrks-theme-clckwrks", + "clckwrks-theme-geo-bootstrap", + "cld2", + "Clean", + "clean-unions", + "cless", + "clevercss", + "clexer", + "CLI", + "cli-builder", + "click-clack", + "clif", + "clifford", + "clifm", + "clingo", + "clippard", + "clipper", + "clippings", + "clisparkline", + "clit", + "cloben", + "clock-extras", + "clocked", + "clogparse", + "clone-all", + "closure", + "cloud-haskell", + "cloud-seeder", + "cloudfront-signer", + "cloudyfs", + "clr-bindings", + "clr-host", + "clr-inline", + "clr-typed", + "cltw", + "clua", + "cluss", + "clustering", + "clustertools", + "clutterhs", + "cmark-highlight", + "cmark-patterns", + "cmark-sections", + "cmath", + "cmathml3", + "CMCompare", + "cmd-item", + "cmdtheline", + "cmf", + "cmonad", + "cmph", + "cmptype", + "CMQ", + "cmt", + "cmv", + "cnc-spec-compiler", + "co-log-sys", + "Coadjute", + "cobot-tools", + "code-builder", + "codec", + "codec-libevent", + "codec-rpm", + "codecov-haskell", + "codemonitor", + "codepad", + "codex", + "codo-notation", + "coercion-extras", + "coformat", + "cognimeta-utils", + "coin", + "coinbase-exchange", + "colada", + "colchis", + "collada-output", + "collapse-duplication", + "collapse-util", + "collection-json", + "collections", + "collections-api", + "collections-base-instances", + "color-counter", + "colorless", + "colorless-http-client", + "colorless-scotty", + "coltrane", + "columbia", + "comark", + "comark-syntax", + "combinat-compat", + "combinat-diagrams", + "combinator-interactive", + "combinatorial-problems", + "Combinatorrent", + "combobuffer", + "Command", + "commander", + "Commando", + "commodities", + "commsec", + "commsec-keyexchange", + "comonad-extras", + "comonad-random", + "ComonadSheet", + "compact-list", + "compact-map", + "compact-mutable", + "compact-mutable-vector", + "compact-sequences", + "compact-socket", + "compact-string", + "compact-string-fix", + "Compactable", + "compdata-dags", + "compdata-param", + "competition", + "compilation", + "complex-generic", + "complexity", + "compose-trans", + "composite-aeson-throw", + "composite-xstep", + "composition-tree", + "comprehensions-ghc", + "compressed", + "compression", + "compstrat", + "comptrans", + "computational-algebra", + "computational-geometry", + "computations", + "concraft", + "concraft-hr", + "concraft-pl", + "concrete-haskell", + "concrete-haskell-autogen", + "concrete-relaxng-parser", + "concurrency-benchmarks", + "concurrent-buffer", + "Concurrent-Cache", + "concurrent-st", + "concurrent-state", + "Concurrential", + "Condor", + "condor", + "condorcet", + "conductive-base", + "conductive-hsc3", + "conductive-song", + "conduit-audio-lame", + "conduit-audio-samplerate", + "conduit-audio-sndfile", + "conduit-connection", + "conduit-iconv", + "conduit-network-stream", + "conduit-resumablesink", + "conduit-throttle", + "conduit-tokenize-attoparsec", + "conduit-vfs", + "conduit-vfs-zip", + "conf", + "confcrypt", + "conferer-provider-dhall", + "conferer-provider-json", + "conferer-provider-yaml", + "conferer-source-dhall", + "conferer-source-json", + "conferer-source-yaml", + "conffmt", + "confide", + "config-parser", + "config-select", + "config-value-getopt", + "ConfigFileTH", + "Configger", + "configifier", + "Configurable", + "configuration", + "configurator-ng", + "confsolve", + "congruence-relation", + "conjure", + "conkin", + "conlogger", + "connection-pool", + "connection-string", + "Conscript", + "consistent", + "console-program", + "console-style", + "const-math-ghc-plugin", + "constr-eq", + "constrained", + "constrained-category", + "constrained-dynamic", + "constrained-monads", + "constrained-platform-instances", + "constraint", + "constraint-manip", + "constraint-reflection", + "ConstraintKinds", + "constraints-emerge", + "constructive-algebra", + "consul-haskell", + "Consumer", + "container", + "containers-accelerate", + "containers-benchmark", + "containers-verified", + "ContArrow", + "content-store", + "context-stack", + "ContextAlgebra", + "contiguous-checked", + "contiguous-fft", + "continue", + "continued-fractions", + "Contract", + "control", + "control-iso", + "control-monad-attempt", + "control-monad-exception", + "control-monad-exception-monadsfd", + "control-monad-exception-monadstf", + "control-monad-exception-mtl", + "control-monad-failure", + "control-monad-failure-mtl", + "Control-Monad-MultiPass", + "Control-Monad-ST2", + "contstuff-monads-tf", + "contstuff-transformers", + "convert", + "convert-annotation", + "convertible-ascii", + "convertible-text", + "coordinate", + "copilot-cbmc", + "copilot-sbv", + "copr", + "core", + "core-compiler", + "core-haskell", + "corebot-bliki", + "CoreDump", + "CoreErlang", + "CoreFoundation", + "corenlp-parser", + "Coroutine", + "coroutine-enumerator", + "coroutine-iteratee", + "coroutine-object", + "couch-hs", + "couch-simple", + "CouchDB", + "couchdb-conduit", + "couchdb-enumerator", + "counter", + "country-codes", + "courier", + "court", + "coverage", + "cparsing", + "CPBrainfuck", + "cpio-conduit", + "CPL", + "cplusplus-th", + "cprng-aes-effect", + "cpuperf", + "cql-io-tinylog", + "cqrs-core", + "cqrs-example", + "cqrs-memory", + "cqrs-postgresql", + "cqrs-sqlite3", + "cqrs-test", + "cqrs-testkit", + "cr", + "crack", + "craft", + "craftwerk", + "craftwerk-cairo", + "craftwerk-gtk", + "crawlchain", + "craze", + "crc16", + "credential-store", + "credentials-cli", + "crf-chain1", + "crf-chain1-constrained", + "crf-chain2-generic", + "crf-chain2-tiers", + "criterion-plus", + "criterion-to-html", + "criu-rpc", + "criu-rpc-types", + "crjdt-haskell", + "crockford", + "crocodile", + "cron-compat", + "cronus", + "cruncher-types", + "crunghc", + "crypto-cipher-benchmarks", + "crypto-classical", + "crypto-conduit", + "crypto-multihash", + "crypto-numbers", + "crypto-pubkey", + "crypto-pubkey-openssh", + "crypto-random-effect", + "crypto-simple", + "cryptocipher", + "cryptoconditions", + "crystalfontz", + "csa", + "cse-ghc-plugin", + "csg", + "CSPM-cspm", + "CSPM-FiringRules", + "CSPM-Frontend", + "CSPM-Interpreter", + "CSPM-ToProlog", + "cspmchecker", + "cspretty", + "css", + "csv-enumerator", + "csv-nptools", + "ctemplate", + "ctkl", + "ctpl", + "cube", + "cubical", + "cuboid", + "cuckoo-filter", + "cudd", + "currency-convert", + "curry-base", + "CurryDB", + "curryrs", + "curves", + "custom-prelude", + "CV", + "cv-combinators", + "cypher", + "d-bus", + "d3js", + "daemonize-doublefork", + "dag", + "DAG-Tournament", + "damnpacket", + "Dangerous", + "danibot", + "Dao", + "dao", + "dapi", + "darcs-benchmark", + "darcs-beta", + "darcs-buildpackage", + "darcs-cabalized", + "darcs-fastconvert", + "darcs-graph", + "darcs-monitor", + "darcs2dot", + "darcsden", + "DarcsHelpers", + "darcswatch", + "darkplaces-demo", + "darkplaces-rcon", + "darkplaces-rcon-util", + "darkplaces-text", + "dash-haskell", + "data-accessor-monadLib", + "data-accessor-monads-fd", + "data-accessor-monads-tf", + "data-accessor-template", + "data-aviary", + "data-base", + "data-basic", + "data-check", + "data-combinator-gen", + "data-concurrent-queue", + "data-construction", + "data-constructors", + "data-cycle", + "data-default-extra", + "data-default-instances-bytestring", + "data-default-instances-case-insensitive", + "data-default-instances-new-base", + "data-default-instances-text", + "data-default-instances-unordered-containers", + "data-default-instances-vector", + "data-dispersal", + "data-diverse-lens", + "data-easy", + "data-emoticons", + "data-filepath", + "data-fin", + "data-fin-simple", + "data-flagset", + "data-index", + "data-ivar", + "data-kiln", + "data-layer", + "data-lens-fd", + "data-lens-ixset", + "data-lens-template", + "data-map-multikey", + "data-named", + "data-nat", + "data-object", + "data-object-json", + "data-object-yaml", + "data-quotientref", + "data-r-tree", + "data-reify-cse", + "data-repr", + "data-result", + "data-rev", + "Data-Rope", + "data-rope", + "data-rtuple", + "data-size", + "data-spacepart", + "data-standards", + "data-store", + "data-stringmap", + "data-structure-inferrer", + "data-type", + "data-util", + "data-variant", + "database-id-groundhog", + "database-migrate", + "database-study", + "datadog-tracing", + "datafix", + "dataflow", + "DataIndex", + "datalog", + "datapacker", + "datarobot", + "datasets", + "DataTreeView", + "date-conversions", + "datetime", + "datetime-sb", + "dawdle", + "dawg", + "dbf", + "dbjava", + "DBlimited", + "dbm", + "dbmigrations-mysql", + "dbmigrations-postgresql", + "dbmigrations-sqlite", + "DBus", + "dbus-client", + "dbus-core", + "dbus-qq", + "dclabel", + "dclabel-eci11", + "dcpu16", + "ddate", + "ddc-base", + "ddc-build", + "ddc-code", + "ddc-core", + "ddc-core-babel", + "ddc-core-eval", + "ddc-core-flow", + "ddc-core-llvm", + "ddc-core-salt", + "ddc-core-simpl", + "ddc-core-tetra", + "ddc-driver", + "ddc-interface", + "ddc-source-tetra", + "ddc-tools", + "ddc-war", + "ddci-core", + "dde", + "dead-code-detection", + "dead-simple-json", + "Deadpan-DDP", + "debug", + "debug-tracy", + "decepticons", + "decimal-arithmetic", + "DecisionTree", + "decoder-conduit", + "dedukti", + "DeepArrow", + "deepcontrol", + "DeepDarkFantasy", + "deeplearning-hs", + "deepseq-bounded", + "deepseq-instances", + "deepseq-magic", + "deepseq-th", + "deepzoom", + "defargs", + "DefendTheKing", + "definitive-base", + "definitive-filesystem", + "definitive-graphics", + "definitive-parser", + "definitive-reactive", + "definitive-sound", + "deiko-config", + "deka", + "deka-tests", + "delicious", + "delimited-text", + "delimiter-separated", + "delta", + "delta-h", + "Delta-Lambda", + "delude", + "demarcate", + "denominate", + "dense-int-set", + "dependent-hashmap", + "dependent-state", + "depends", + "dephd", + "deptrack-core", + "deptrack-devops", + "deptrack-dot", + "dequeue", + "derangement", + "derivation-trees", + "derive", + "derive-gadt", + "derive-IG", + "derive-monoid", + "derive-trie", + "derp-lib", + "describe", + "descript-lang", + "descriptive", + "deterministic-game-engine", + "detour-via-uom", + "detrospector", + "deunicode", + "devil", + "dewdrop", + "dfinity-radix-tree", + "Dflow", + "dfsbuild", + "dgim", + "dgs", + "dhall-check", + "dhall-fly", + "dhall-lex", + "dhall-to-cabal", + "dhcp-lease-parser", + "dhrun", + "dia-base", + "dia-functions", + "diagrams-boolean", + "diagrams-pdf", + "diagrams-qrcode", + "diagrams-rubiks-cube", + "diagrams-tikz", + "diagrams-wx", + "dialog", + "dib", + "dice2tex", + "dicom", + "dictionaries", + "dictparser", + "diet", + "diff", + "diff-gestalt", + "diffcabal", + "difference-monoid", + "DifferenceLogic", + "DifferentialEvolution", + "diffmap", + "difftodo", + "digest-pure", + "digestive-bootstrap", + "digestive-foundation-lucid", + "digestive-functors-aeson", + "digestive-functors-happstack", + "digestive-functors-heist", + "digestive-functors-hsp", + "digestive-functors-lucid", + "digestive-functors-scotty", + "digestive-functors-snap", + "DigitalOcean", + "digitalocean-kzs", + "dijkstra-simple", + "dimensional-tf", + "DimensionalHash", + "dingo-core", + "dingo-example", + "dingo-widgets", + "diophantine", + "diplomacy", + "diplomacy-server", + "direct-binary-files", + "direct-fastcgi", + "direct-http", + "direct-plugins", + "direct-rocksdb", + "directed-cubical", + "direm", + "dirfiles", + "discogs-haskell", + "discord-gateway", + "discord-hs", + "discord-rest", + "discord-types", + "discordian-calendar", + "discrete", + "DiscussionSupportSystem", + "Dish", + "disjoint-set", + "disjoint-set-stateful", + "diskhash", + "disposable", + "Dist", + "dist-upload", + "distance", + "DisTract", + "distributed-fork-aws-lambda", + "distributed-process-azure", + "distributed-process-fsm", + "distributed-process-lifted", + "distributed-process-p2p", + "distributed-process-platform", + "distributed-process-registry", + "distributed-process-task", + "distribution", + "distribution-plot", + "ditto-lucid", + "dixi", + "djembe", + "djinn-ghc", + "djinn-th", + "dmcc", + "dmenu", + "dmenu-pkill", + "dmenu-pmount", + "dmenu-search", + "DMuCheck", + "DnaProteinAlignment", + "dnscache", + "dnsrbl", + "dnssd", + "do-notation-dsl", + "dobutok", + "dobutokO", + "dobutokO-poetry", + "dobutokO-poetry-general", + "dobutokO-poetry-general-languages", + "dobutokO3", + "dobutokO4", + "doc-review", + "doccheck", + "docidx", + "docker-build-cacher", + "dockercook", + "DocTest", + "doctest-discover-configurator", + "doctest-prop", + "docusign-example", + "docvim", + "DOH", + "doi", + "DOM", + "dom-events", + "dom-selector", + "dominion", + "domplate", + "dot-linker", + "dotfs", + "doublify-toolkit", + "dow", + "download-media-content", + "downloader", + "dozenal", + "dozens", + "DP", + "dph-base", + "dph-examples", + "dph-lifted-base", + "dph-lifted-copy", + "dph-lifted-vseg", + "dph-prim-interface", + "dph-prim-par", + "dph-prim-seq", + "dpkg", + "DPM", + "dpor", + "dragen", + "DRBG", + "drClickOn", + "dresdner-verkehrsbetriebe", + "DrHylo", + "DrIFT", + "DrIFT-cabalized", + "drmaa", + "drone", + "dropbox-sdk", + "dropsolve", + "ds-kanren", + "DSA", + "dsc", + "DSH", + "dsh-sql", + "dsmc", + "dsmc-tools", + "dson", + "dson-parsec", + "DSTM", + "dstring", + "DTC", + "dtd", + "dtd-text", + "dtw", + "dual", + "duet", + "dunai-core", + "Dung", + "duplo", + "dura", + "Dust", + "Dust-crypto", + "Dust-tools", + "Dust-tools-pcap", + "dvault", + "dvda", + "dvdread", + "dvi-processing", + "dwarf", + "dyckword", + "dynamic-cabal", + "dynamic-graph", + "dynamic-graphs", + "dynamic-mvector", + "dynamic-object", + "dynamic-pp", + "DynamicTimeWarp", + "dynamodb-simple", + "dynloader", + "dynobud", + "DysFRP", + "DysFRP-Cairo", + "DysFRP-Craftwerk", + "dywapitchtrack", + "dzen-dhall", + "dzen-utils", + "each", + "eager-sockets", + "earclipper", + "earcut", + "easy-api", + "easy-bitcoin", + "easyjson", + "easyrender", + "easytest", + "ebeats", + "ebnf-bff", + "ec2-unikernel", + "ecdsa", + "ecma262", + "ecu", + "eddie", + "edenmodules", + "edenskel", + "edentv", + "edf", + "edge", + "edges", + "edis", + "edit", + "edit-lenses", + "editable", + "editline", + "EditTimeReport", + "effect-handlers", + "effect-monad", + "effective-aspects", + "effective-aspects-mzv", + "effin", + "egison-quote", + "ehaskell", + "ehs", + "eibd-client-simple", + "eigen", + "either-both", + "EitherT", + "ekg-bosun", + "ekg-carbon", + "ekg-cloudwatch", + "ekg-elastic", + "ekg-elasticsearch", + "ekg-log", + "ekg-push", + "ekg-rrd", + "elerea-examples", + "elevator", + "elision", + "elliptic-curve", + "Elm", + "elm-build-lib", + "elm-compiler", + "elm-get", + "elm-make", + "elm-package", + "elm-reactor", + "elm-repl", + "elm-server", + "elm-websocket", + "elm-yesod", + "elocrypt", + "emacs-keys", + "email", + "email-header", + "email-postmark", + "emailaddress", + "emailparse", + "embla", + "embroidery", + "emgm", + "Emping", + "Empty", + "empty-monad", + "enchant", + "Encode", + "encode-string", + "encoding-io", + "encryptable", + "endo", + "engine-io-growler", + "engine-io-snap", + "engine-io-wai", + "engine-io-yesod", + "entangle", + "EntrezHTTP", + "entwine", + "enum-text-rio", + "enum-utf8", + "EnumContainers", + "enumerate", + "enumerate-function", + "enumeration", + "enumerator", + "enumerator-fd", + "enumerator-tf", + "enumfun", + "EnumMap", + "enummapmap", + "enummaps", + "env-parser", + "envstatus", + "envy-extensible", + "epanet-haskell", + "epass", + "epic", + "epoll", + "eprocess", + "epubname", + "Eq", + "EqualitySolver", + "equational-reasoning-induction", + "equeue", + "erd", + "erf-native", + "erlang", + "eros", + "eros-client", + "errno", + "error-context", + "error-continuations", + "error-list", + "error-loc", + "error-message", + "error-util", + "ersaconcat", + "ert", + "escape-artist", + "escoger", + "esotericbot", + "EsounD", + "ess", + "estimators", + "EstProgress", + "estreps", + "Etage", + "Etage-Graph", + "EtaMOO", + "etc", + "etcd", + "Eternal10Seconds", + "eternity", + "eternity-timestamped", + "ether", + "Etherbunny", + "ethereum-analyzer", + "ethereum-analyzer-cli", + "ethereum-analyzer-deps", + "ethereum-analyzer-webui", + "ethereum-client-haskell", + "ethereum-merkle-patricia-db", + "ethereum-rlp", + "euphoria", + "eurofxref", + "eve-cli", + "event", + "event-driven", + "event-monad", + "eventful-core", + "eventful-dynamodb", + "eventful-memory", + "eventful-postgresql", + "eventful-sql-common", + "eventful-sqlite", + "eventful-test-helpers", + "eventloop", + "EventSocket", + "eventsource-api", + "eventsource-stub-store", + "eventsourced", + "every-bit-counts", + "ewe", + "exact-cover", + "exact-real-positional", + "except-exceptions", + "exception-monads-fd", + "exception-monads-tf", + "exceptional", + "exceptionfree-readfile", + "exchangerates", + "execs", + "executor", + "exference", + "exhaustive", + "exherbo-cabal", + "exif", + "exigo-schema", + "exinst-deepseq", + "exinst-hashable", + "exist", + "exists", + "exp-cache", + "expand", + "expat-enumerator", + "expiring-containers", + "explain", + "explicit-constraint-lens", + "explicit-determinant", + "explicit-iomodes", + "explicit-iomodes-bytestring", + "explicit-iomodes-text", + "explicit-sharing", + "explore", + "exposed-containers", + "expression-parser", + "expressions", + "expressions-z3", + "expresso", + "extcore", + "extemp", + "extended-categories", + "extended-containers-lens", + "extensible-data", + "external-sort", + "Extra", + "extract-dependencies", + "extractelf", + "ez-couch", + "ez3", + "f-algebra-gen", + "f-ree-hack-cheats-free-v-bucks-generator", + "faceted", + "Facts", + "facts", + "factual-api", + "fad", + "failable", + "failable-list", + "failure-detector", + "FailureT", + "fair", + "fake-type", + "falling-turnip", + "fallingblocks", + "family-tree", + "fast-combinatorics", + "fast-nats", + "fast-tagsoup-utf8-only", + "fastbayes", + "fastedit", + "fastirc", + "fastly", + "fastpbkdf2", + "FastPush", + "FastxPipe", + "fathead-util", + "fault-tree", + "fay-builder", + "fay-dom", + "fay-geoposition", + "fay-hsx", + "fay-jquery", + "fay-ref", + "fay-simplejson", + "fay-text", + "fay-uri", + "fay-websockets", + "fb-persistent", + "fbmessenger-api", + "fca", + "fcache", + "fcd", + "fcg", + "fckeditor", + "fclabels-monadlib", + "fcm-client", + "FComp", + "fdo-trash", + "feather", + "feature-flipper", + "feature-flipper-postgres", + "fedora-img-dl", + "fedora-packages", + "feed-cli", + "feed-collect", + "feed-crawl", + "feed-gipeda", + "feed-translator", + "feed2lj", + "feed2twitter", + "fei-dataiter", + "feldspar-compiler", + "feldspar-language", + "fenfire", + "FermatsLastMargin", + "fernet", + "FerryCore", + "festung", + "Feval", + "fez-conf", + "ffeed", + "ffunctor", + "fgl-extras-decompositions", + "fib", + "fibon", + "ficketed", + "fields", + "FieldTrip", + "fieldwise", + "fig", + "file-collection", + "file-command-qq", + "file-embed-poly", + "file-location", + "file-templates", + "filediff", + "FileManip", + "FileManipCompat", + "fileneglect", + "filepath-io-access", + "FilePather", + "Files", + "FileSystem", + "filesystem-abstractions", + "filesystem-conduit", + "filesystem-enumerator", + "filesystem-trees", + "fillit", + "Fin", + "final-pretty-printer", + "Finance-Quote-Yahoo", + "Finance-Treasury", + "find-clumpiness", + "find-conduit", + "find-source-files", + "fingertree-psqueue", + "fingertree-tf", + "FiniteMap", + "finito", + "firefly-example", + "first-and-last", + "first-class-patterns", + "firstify", + "FirstOrderTheory", + "fishfood", + "fit", + "fitsio", + "fix-parser-simple", + "fix-symbols-gitit", + "fixed-point", + "fixed-point-vector", + "fixed-point-vector-space", + "fixed-precision", + "fixed-storable-array", + "fixed-timestep", + "fixed-width", + "fixedprec", + "fixer", + "fixfile", + "fixhs", + "fixie", + "fizzbuzz", + "fizzbuzz-as-a-service", + "flaccuraterip", + "flamethrower", + "flamingra", + "flat-maybe", + "flexible-time", + "flexiwrap", + "flexiwrap-smallcheck", + "flickr", + "flight-kml", + "Flippi", + "flite", + "float-binstring", + "flow-er", + "flow2dot", + "flowdock", + "flowdock-api", + "flowdock-rest", + "flower", + "flowsim", + "flp", + "fltkhs", + "fltkhs-demos", + "fltkhs-fluid-demos", + "fltkhs-fluid-examples", + "fltkhs-hello-world", + "fltkhs-themes", + "fluent-logger", + "fluent-logger-conduit", + "fluffy-parser", + "fluid-idl", + "fluid-idl-http-client", + "fluidsynth", + "FM-SBLEX", + "fmark", + "FModExRaw", + "fmt-for-rio", + "fn-extra", + "foldl-incremental", + "foldl-statistics", + "foldl-transduce-attoparsec", + "folds-common", + "follow", + "follow-file", + "follower", + "font-opengl-basic4x6", + "foo", + "for-free", + "forbidden-fruit", + "fordo", + "forecast-io", + "foreign-var", + "forest", + "forest-fire", + "Forestry", + "forger", + "ForkableT", + "formal", + "FormalGrammars", + "format", + "format-status", + "forml", + "formlets", + "formlets-hsp", + "formura", + "ForSyDe", + "forsyde-deep", + "forth-hll", + "foscam-directory", + "foscam-filename", + "Foster", + "fpco-api", + "fplll", + "fpnla-examples", + "FPretty", + "fptest", + "fquery", + "Fractaler", + "fractals", + "fraction", + "frag", + "frame-markdown", + "Frames-beam", + "Frames-dsv", + "franchise", + "Frank", + "fraxl", + "freddy", + "free-concurrent", + "free-http", + "free-operational", + "free-theorems-counterexamples", + "free-theorems-seq", + "free-theorems-seq-webui", + "free-theorems-webui", + "free-v-bucks-generator-ps4-no-survey", + "freekick2", + "freelude", + "freer-converse", + "freer-effects", + "freer-simple-catching", + "freer-simple-http", + "freer-simple-profiling", + "freer-simple-random", + "freer-simple-time", + "freesect", + "freesound", + "freetype-simple", + "FreeTypeGL", + "freq", + "fresh", + "friday-devil", + "friday-juicypixels", + "friday-scale-dct", + "front", + "frown", + "frp-arduino", + "frpnow", + "frpnow-gloss", + "frpnow-gtk", + "frpnow-gtk3", + "frpnow-vty", + "fs-events", + "fsh-csv", + "FSM", + "fsmActions", + "fsnotify-conduit", + "fst", + "fsutils", + "fswatch", + "ft-generator", + "FTGL-bytestring", + "ftp-client-conduit", + "ftp-conduit", + "ftphs", + "FTPLine", + "ftree", + "ftshell", + "fugue", + "full-sessions", + "funbot", + "funbot-client", + "funcons-lambda-cbv-mp", + "funcons-simple", + "function-combine", + "function-instances-algebra", + "functional-arrow", + "functor", + "functor-combo", + "functor-friends", + "functor-utils", + "functorm", + "funflow", + "funflow-nix", + "Fungi", + "funion", + "funnyprint", + "funpat", + "funsat", + "fused-effects-resumable", + "fused-effects-squeal", + "fusion", + "futun", + "future", + "futures", + "fuzzy-parse", + "fuzzy-timings", + "fvars", + "fwgl", + "fwgl-glfw", + "fwgl-javascript", + "fx", + "g-npm", + "g2q", + "g4ip", + "gact", + "galois-fft", + "game-probability", + "gameclock", + "gamma", + "gang-of-threads", + "Ganymede", + "garepinoh", + "gas", + "gather", + "gbu", + "gc-monitoring-wai", + "gconf", + "gdax", + "gdiff-ig", + "gdiff-th", + "GeBoP", + "gedcom", + "geek", + "geek-server", + "gegl", + "gelatin", + "gelatin-freetype2", + "gelatin-fruity", + "gelatin-gl", + "gelatin-sdl2", + "gelatin-shaders", + "gemstone", + "gen-imports", + "gen-passwd", + "Genbank", + "gender", + "genders", + "Gene-CluEDO", + "general-prelude", + "GeneralTicTacToe", + "generator", + "generators", + "generic-binary", + "generic-church", + "generic-enum", + "generic-lens-labels", + "generic-lucid-scaffold", + "generic-maybe", + "generic-pretty", + "generic-records", + "generic-server", + "generic-storable", + "generic-tree", + "generic-xml", + "generic-xmlpickler", + "generics-mrsop", + "generics-mrsop-gdiff", + "genericserialize", + "genesis", + "genesis-test", + "genetics", + "GenI", + "geni-gui", + "geni-util", + "geniconvert", + "genifunctors", + "geniplate", + "geniserver", + "genprog", + "gentlemark", + "GenussFold", + "geo-resolver", + "geo-uk", + "geocode-google", + "GeocoderOpenCage", + "geodetic", + "geodetic-types", + "GeoIp", + "geojson-types", + "geolite-csv", + "geom2d", + "GeomPredicates-SSE", + "Get", + "getemx", + "getflag", + "GGg", + "ggtsTC", + "gh-labeler", + "ghc-clippy-plugin", + "ghc-core-smallstep", + "ghc-dump-tree", + "ghc-dup", + "ghc-events-parallel", + "ghc-generic-instances", + "ghc-hotswap", + "ghc-imported-from", + "ghc-instances", + "ghc-man-completion", + "ghc-mod", + "ghc-mtl", + "ghc-parmake", + "ghc-pkg-autofix", + "ghc-pkg-lib", + "ghc-proofs", + "ghc-session", + "ghc-simple", + "ghc-srcspan-plugin", + "ghc-syb", + "ghc-syb-utils", + "ghc-time-alloc-prof", + "ghc-usage", + "ghci-diagrams", + "ghci-haskeline", + "ghci-history-parser", + "ghci-lib", + "ghci-ng", + "ghcjs-ajax", + "ghcjs-base-stub", + "ghcjs-dom-webkit", + "ghcjs-fetch", + "ghcjs-hplay", + "ghcjs-promise", + "ghcjs-websockets", + "ghcjs-xhr", + "ghclive", + "ght", + "gi-cairo-again", + "giak", + "Gifcurry", + "gingersnap", + "ginsu", + "gipeda", + "giphy-api", + "GiST", + "gist", + "git-all", + "git-checklist", + "git-config", + "git-cuk", + "git-date", + "git-fmt", + "git-gpush", + "git-jump", + "git-object", + "git-remote-ipfs", + "git-vogue", + "gitdo", + "github-backup", + "github-data", + "github-post-receive", + "github-utils", + "github-webhook-handler", + "github-webhook-handler-snap", + "gitHUD", + "gitignore", + "gitlab-api", + "gitlib-cmdline", + "gitlib-cross", + "gitlib-s3", + "gitlib-utils", + "gitter", + "givegif", + "glade", + "gladexml-accessor", + "glambda", + "glapp", + "glaze", + "glazier", + "glazier-pipes", + "glazier-react", + "glazier-react-examples", + "glazier-react-widget", + "Gleam", + "GLFW-b-demo", + "GLFW-OGL", + "GLFW-task", + "gli", + "glider-nlp", + "GLMatrix", + "global", + "global-config", + "global-variables", + "glome-hs", + "GlomeTrace", + "GlomeView", + "gloss-accelerate", + "gloss-banana", + "gloss-devil", + "gloss-game", + "gloss-raster-accelerate", + "gloss-sodium", + "glue", + "gmap", + "gmndl", + "gnome-desktop", + "gnomevfs", + "gnss-converters", + "goa", + "goal-simulation", + "gochan", + "godot-haskell", + "gofer-prelude", + "goggles-gcs", + "gogol-admin-emailmigration", + "gogol-affiliates", + "gogol-autoscaler", + "gogol-cloudmonitoring", + "gogol-freebasesearch", + "gogol-latencytest", + "gogol-maps-coordinate", + "gogol-maps-engine", + "gogol-photoslibrary", + "gogol-prediction", + "gogol-resourceviews", + "gogol-taskqueue", + "gogol-useraccounts", + "gooey", + "google-cloud", + "google-html5-slide", + "google-mail-filters", + "google-oauth2", + "google-oauth2-easy", + "google-search", + "GoogleCodeJam", + "GoogleDirections", + "googleplus", + "googlepolyline", + "GoogleSB", + "GoogleTranslate", + "gopherbot", + "gore-and-ash", + "gore-and-ash-actor", + "gore-and-ash-async", + "gore-and-ash-demo", + "gore-and-ash-glfw", + "gore-and-ash-lambdacube", + "gore-and-ash-logging", + "gore-and-ash-network", + "gore-and-ash-sdl", + "gore-and-ash-sync", + "GotoT-transformers", + "gpah", + "GPipe", + "GPipe-Collada", + "GPipe-Examples", + "GPipe-TextureLoad", + "gps", + "gps2htmlReport", + "GPX", + "gpx-conduit", + "graceful", + "grafana", + "graflog", + "Grafos", + "grakn", + "grammar-combinators", + "GrammarProducts", + "grapefruit-examples", + "grapefruit-frp", + "grapefruit-records", + "grapefruit-ui", + "grapefruit-ui-gtk", + "graph-matchings", + "graph-rewriting-cl", + "graph-serialize", + "graph-utils", + "graph-visit", + "Graph500", + "Graphalyze", + "graphbuilder", + "graphene", + "GraphHammer", + "GraphHammer-examples", + "graphics-drawingcombinators", + "graphics-formats-collada", + "graphicsFormats", + "graphicstools", + "graphmod-plugin", + "graphql-api", + "graphted", + "graphtype", + "graql", + "grasp", + "gray-code", + "graylog", + "greencard-lib", + "greg-client", + "gremlin-haskell", + "Grempa", + "grenade", + "greplicate", + "gridbounds", + "gridfs", + "gridland", + "grids", + "grm", + "groot", + "gross", + "GroteTrap", + "groundhog-converters", + "groundhog-inspector", + "group-with", + "groupBy", + "Grow", + "growler", + "GrowlNotify", + "grpc-api-etcd", + "grpc-etcd-client", + "gruff", + "gruff-examples", + "gsc-weighting", + "gsl-random", + "gsl-random-fu", + "gstorable", + "gstreamer", + "GTALib", + "gtfs", + "gtfs-realtime", + "gtk-helpers", + "gtk-serialized-event", + "gtk-toy", + "gtk2hs-cast-glade", + "gtk2hs-cast-gnomevfs", + "gtk2hs-cast-gtk", + "gtk2hs-cast-gtkglext", + "gtk2hs-cast-gtksourceview2", + "gtk2hs-cast-th", + "gtk2hs-hello", + "gtk2hs-rpn", + "Gtk2hsGenerics", + "gtk3-helpers", + "gtkglext", + "GtkGLTV", + "gtkimageview", + "gtkrsync", + "gtksourceview2", + "gtksourceview3", + "GtkTV", + "guarded-rewriting", + "guess-combinator", + "GuiHaskell", + "GuiTV", + "gulcii", + "gw", + "gyah-bin", + "gym-http-api", + "h-booru", + "h-reversi", + "h2048", + "h2c", + "haar", + "habit", + "HABQT", + "Hach", + "hack-contrib", + "hack-contrib-press", + "hack-frontend-happstack", + "hack-handler-cgi", + "hack-handler-epoll", + "hack-handler-evhttp", + "hack-handler-fastcgi", + "hack-handler-happstack", + "hack-handler-hyena", + "hack-handler-kibro", + "hack-handler-simpleserver", + "hack-middleware-cleanpath", + "hack-middleware-clientsession", + "hack-middleware-jsonp", + "hack2-contrib", + "hack2-contrib-extra", + "hack2-handler-happstack-server", + "hack2-handler-mongrel2-http", + "hack2-handler-snap-server", + "hack2-handler-warp", + "hackage-mirror", + "hackage-processing", + "hackage-proxy", + "hackage-server", + "hackage-whatsnew", + "hackage2hwn", + "hackage2twitter", + "HackMail", + "hackmanager", + "hactor", + "hactors", + "haddock-leksah", + "haddock-test", + "haddocset", + "hadoop-formats", + "hadoop-rpc", + "hadoop-streaming", + "hadoop-tools", + "hafar", + "haggis", + "Haggressive", + "hahp", + "hailgun-send", + "hails-bin", + "hairy", + "hake", + "hakismet", + "hakka", + "hako", + "hakyll-blaze-templates", + "hakyll-contrib", + "hakyll-contrib-csv", + "hakyll-contrib-elm", + "hakyll-contrib-links", + "hakyll-dir-list", + "hakyll-elm", + "hakyll-ogmarkup", + "hakyll-R", + "hakyll-series", + "hakyll-shortcode", + "halberd", + "HaLeX", + "halfs", + "halipeto", + "halma-gui", + "halma-telegram-bot", + "hamilton", + "HaMinitel", + "hampp", + "hamsql", + "hamtmap", + "hamusic", + "handa-gdata", + "handle-like", + "HandlerSocketClient", + "handsy", + "hangman", + "hannahci", + "hans", + "hans-pcap", + "haphviz", + "happindicator", + "happindicator3", + "happlets", + "happlets-lib-gtk", + "happraise", + "HAppS-Data", + "happs-hsp", + "happs-hsp-template", + "HAppS-IxSet", + "HAppS-Server", + "HAppS-State", + "happs-tutorial", + "HAppS-Util", + "happstack", + "happstack-auth", + "happstack-contrib", + "happstack-data", + "happstack-dlg", + "happstack-facebook", + "happstack-fay", + "happstack-fay-ajax", + "happstack-hamlet", + "happstack-heist", + "happstack-helpers", + "happstack-hstringtemplate", + "happstack-ixset", + "happstack-monad-peel", + "happstack-plugins", + "happstack-server-tls-cryptonite", + "happstack-state", + "happstack-util", + "happstack-yui", + "happybara", + "happybara-webkit", + "happybara-webkit-server", + "HappyTree", + "hapstone", + "HaPy", + "haquery", + "haquil", + "harchive", + "hark", + "HARM", + "harmony", + "HarmTrace", + "HarmTrace-Base", + "haroonga", + "haroonga-httpd", + "harpy", + "harvest-api", + "has", + "has-th", + "hascar", + "hascas", + "hascat", + "hascat-lib", + "hascat-setup", + "hascat-system", + "Haschoo", + "HasGP", + "hash", + "hashable-extras", + "hashable-generics", + "hashabler", + "Hashell", + "hashflare", + "hashring", + "hashtables-plus", + "hasim", + "hask", + "hask-home", + "haskades", + "haskarrow", + "haskbot-core", + "haskdeep", + "haskeem", + "haskeline-class", + "haskelisp", + "haskell-abci", + "haskell-aliyun", + "haskell-bcrypt", + "haskell-bitmex-client", + "haskell-bitmex-rest", + "haskell-brainfuck", + "haskell-cnc", + "haskell-compression", + "haskell-conll", + "haskell-course-preludes", + "haskell-disque", + "haskell-docs", + "haskell-eigen-util", + "haskell-ftp", + "haskell-generate", + "haskell-go-checkers", + "haskell-holes-th", + "haskell-import-graph", + "haskell-in-space", + "haskell-kubernetes", + "haskell-lsp-client", + "haskell-ml", + "haskell-mpfr", + "haskell-mpi", + "haskell-neo4j-client", + "haskell-openflow", + "haskell-overridez", + "haskell-packages", + "haskell-pdf-presenter", + "haskell-platform-test", + "haskell-player", + "haskell-plot", + "haskell-postal", + "haskell-postgis", + "haskell-read-editor", + "haskell-reflect", + "haskell-rules", + "haskell-snake", + "haskell-spacegoo", + "haskell-src-exts-observe", + "haskell-src-exts-prisms", + "haskell-src-exts-qq", + "haskell-src-exts-sc", + "haskell-src-match", + "haskell-src-meta-mwotton", + "haskell-token-utils", + "haskell-tools-ast", + "haskell-tools-ast-fromghc", + "haskell-tools-ast-gen", + "haskell-tools-ast-trf", + "haskell-tools-backend-ghc", + "haskell-tools-builtin-refactorings", + "haskell-tools-cli", + "haskell-tools-daemon", + "haskell-tools-debug", + "haskell-tools-demo", + "haskell-tools-experimental-refactorings", + "haskell-tools-prettyprint", + "haskell-tools-refactor", + "haskell-tools-rewrite", + "haskell-tor", + "haskell-type-exts", + "haskell-typescript", + "haskell-tyrant", + "haskell2010", + "haskell2020", + "haskell98", + "haskell98libraries", + "HaskellAnalysisProgram", + "haskelldb", + "haskelldb-connect-hdbc", + "haskelldb-connect-hdbc-catchio-mtl", + "haskelldb-connect-hdbc-catchio-tf", + "haskelldb-connect-hdbc-catchio-transformers", + "haskelldb-connect-hdbc-lifted", + "haskelldb-dynamic", + "haskelldb-flat", + "haskelldb-hdbc", + "haskelldb-hdbc-mysql", + "haskelldb-hdbc-odbc", + "haskelldb-hdbc-postgresql", + "haskelldb-hdbc-sqlite3", + "haskelldb-hsql", + "haskelldb-hsql-mysql", + "haskelldb-hsql-odbc", + "haskelldb-hsql-postgresql", + "haskelldb-hsql-sqlite3", + "haskelldb-th", + "haskelldb-wx", + "HaskellLM", + "HaskellNN", + "Haskelloids", + "haskellscrabble", + "haskellscript", + "HaskellTorrent", + "HaskellTutorials", + "haskelm", + "haskelzinc", + "haskeme", + "haskey-mtl", + "haskgame", + "haskheap", + "haskhol-core", + "haskoin-bitcoind", + "haskoin-crypto", + "haskoon", + "haskoon-httpspec", + "haskoon-salvia", + "haskore-realtime", + "haskore-supercollider", + "haskore-synthesizer", + "haskore-vintage", + "HaskRel", + "hasktorch-codegen", + "hasktorch-ffi-th", + "hasktorch-ffi-thc", + "hasktorch-indef", + "hasktorch-signatures", + "hasktorch-signatures-partial", + "hasktorch-signatures-support", + "hasktorch-zoo", + "haskus-system-build", + "haskus-utils", + "haskus-utils-compat", + "haskus-web", + "haslo", + "hasloGUI", + "hasmin", + "hasparql-client", + "hasql-backend", + "hasql-class", + "hasql-generic", + "hasql-postgres", + "hasql-postgres-options", + "hasql-queue", + "hasql-simple", + "hasqly-mysql", + "hastache-aeson", + "haste", + "haste-app", + "haste-gapi", + "haste-lib", + "haste-markup", + "haste-perch", + "haste-prim", + "hat", + "Hate", + "hatex-guide", + "HaTeX-meta", + "HaTeX-qq", + "hatexmpp3", + "hats", + "hatt", + "haven", + "haverer", + "HaVSA", + "hawitter", + "Hawk", + "hax", + "haxl-amazonka", + "haxl-facebook", + "haxparse", + "haxr-th", + "haxy", + "hayland", + "Hayoo", + "hayoo-cli", + "hback", + "hbayes", + "hbb", + "hBDD-CMUBDD", + "hBDD-CUDD", + "hbeanstalk", + "hbeat", + "hbf", + "hblock", + "hbro", + "hbro-contrib", + "hburg", + "hcad", + "HCard", + "hcc", + "hcg-minus", + "hcg-minus-cairo", + "hcheat", + "hcltest", + "hcoap", + "hcobs", + "hcron", + "hCsound", + "hcube", + "hdaemonize-buildfix", + "hdbc-aeson", + "HDBC-mysql", + "HDBC-postgresql-hstore", + "hdbc-postgresql-hstore", + "hdbi", + "hdbi-conduit", + "hdbi-postgresql", + "hdbi-sqlite", + "hdbi-tests", + "hdevtools", + "hdf", + "hDFA", + "hdiff", + "hdigest", + "hdirect", + "hdis86", + "hdiscount", + "hdm", + "hdo", + "hdph", + "hdph-closure", + "hdr-histogram", + "headergen", + "heapsort", + "heart-app", + "heart-core", + "heatitup", + "heatitup-complete", + "heavy-log-shortcuts", + "heavy-logger-amazon", + "hecc", + "heckle", + "hedgehog-checkers", + "hedgehog-checkers-lens", + "hedgehog-gen", + "hedgehog-gen-json", + "hedgehog-generic", + "Hedi", + "hedis-config", + "hedis-monadic", + "hedis-namespace", + "hedis-pile", + "hedis-simple", + "hedis-tags", + "hedra", + "hein", + "heist-aeson", + "heist-async", + "helics", + "helics-wai", + "helisp", + "helium", + "helium-overture", + "helix", + "hellage", + "hellnet", + "helm", + "help-esb", + "hemkay", + "hemokit", + "hen", + "henet", + "hepevt", + "her-lexer-parsec", + "HERA", + "herbalizer", + "HerbiePlugin", + "Hermes", + "hermit", + "hermit-syb", + "herms", + "heroku-persistent", + "herringbone", + "herringbone-embed", + "herringbone-wai", + "hesh", + "hesql", + "hetero-dict", + "heterogeneous-list-literals", + "heterolist", + "hetris", + "heukarya", + "hevolisa", + "hevolisa-dph", + "HExcel", + "hexchat", + "hexif", + "hexmino", + "hexpat-iteratee", + "hexpat-lens", + "hexpat-pickle-generic", + "hexpr", + "hexpress", + "hexquote", + "hext", + "hextra", + "heyefi", + "hF2", + "hfann", + "hfd", + "hfiar", + "HFitUI", + "hfoil", + "hfov", + "hfractal", + "HFrequencyQueue", + "hfusion", + "hg-buildpackage", + "hgalib", + "HGamer3D", + "HGamer3D-API", + "HGamer3D-Audio", + "HGamer3D-Bullet-Binding", + "HGamer3D-CAudio-Binding", + "HGamer3D-CEGUI-Binding", + "HGamer3D-Common", + "HGamer3D-Data", + "HGamer3D-Enet-Binding", + "HGamer3D-Graphics3D", + "HGamer3D-GUI", + "HGamer3D-InputSystem", + "HGamer3D-Network", + "HGamer3D-Ogre-Binding", + "HGamer3D-OIS-Binding", + "HGamer3D-SDL2-Binding", + "HGamer3D-SFML-Binding", + "HGamer3D-WinEvent", + "HGamer3D-Wire", + "hgdbmi", + "HGE2D", + "hgearman", + "hGelf", + "hgen", + "hgeometric", + "hgeometry-svg", + "hgithub", + "hgom", + "hgopher", + "HGraphStorage", + "hgrep", + "hgrev", + "hgrib", + "hharp", + "HHDL", + "hhwloc", + "hi", + "hi3status", + "hiccup", + "hichi", + "hid", + "hid-examples", + "hidden-char", + "hie-core", + "hieraclus", + "hierarchical-clustering", + "hierarchical-clustering-diagrams", + "hierarchical-exceptions", + "hierarchical-spectral-clustering", + "hierarchy", + "hiernotify", + "Hieroglyph", + "hifi", + "HiggsSet", + "higher-leveldb", + "higherorder", + "highlight-versions", + "highlighter", + "highlighting-kate", + "highWaterMark", + "himg", + "himpy", + "hindley-milner", + "hinduce-classifier", + "hinduce-classifier-decisiontree", + "hinduce-examples", + "hinotify-bytestring", + "hinquire", + "hinstaller", + "hint-server", + "hinter", + "hinvaders", + "hinze-streams", + "hipbot", + "hipchat-hs", + "hipe", + "Hipmunk", + "Hipmunk-Utils", + "HipmunkPlayground", + "hips", + "hircules", + "hirt", + "Hish", + "hissmetrics", + "hist-pl", + "hist-pl-dawg", + "hist-pl-fusion", + "hist-pl-lexicon", + "hist-pl-lmf", + "hist-pl-types", + "historian", + "hit", + "hit-graph", + "hit-on", + "HJavaScript", + "hjcase", + "hjs", + "HJScript", + "hjson-query", + "hjsonpointer", + "hjsonschema", + "hjugement-cli", + "hjugement-protocol", + "HJVM", + "hkd-delta", + "hkd-lens", + "hkt", + "hlbfgsb", + "hlcm", + "hleap", + "HLearn-algebra", + "HLearn-approximation", + "HLearn-classification", + "HLearn-datastructures", + "HLearn-distributions", + "hledger-api", + "hledger-chart", + "hledger-diff", + "hledger-irr", + "hledger-makeitso", + "hledger-vty", + "hlibBladeRF", + "hlibev", + "hlibfam", + "hlivy", + "HLogger", + "hlogger", + "hlongurl", + "hls", + "hlwm", + "hly", + "hmark", + "HMarkov", + "hmarkup", + "hmatrix-banded", + "hmatrix-mmap", + "hmatrix-nipals", + "hmatrix-sparse", + "hmatrix-static", + "hmatrix-sundials", + "hmatrix-svdlibc", + "hmatrix-syntax", + "hmatrix-tests", + "hmeap", + "hmeap-utils", + "hmenu", + "hmep", + "hmk", + "HMM", + "hmm", + "hmm-hmatrix", + "hMollom", + "hmp3", + "Hmpf", + "hmt-diagrams", + "hmumps", + "hnetcdf", + "HNM", + "hnock", + "hnop", + "hnormalise", + "ho-rewriting", + "hoauth", + "hob", + "hobbes", + "hocker", + "hodatime", + "HODE", + "hoe", + "Hoed", + "hOff-display", + "hofix-mtl", + "hog", + "hogg", + "hoggl", + "hogre", + "hogre-examples", + "hold-em", + "hole", + "Holumbus-Distribution", + "Holumbus-MapReduce", + "Holumbus-Searchengine", + "Holumbus-Storage", + "holy-project", + "homeomorphic", + "hommage", + "homoiconic", + "HongoDB", + "honi", + "hoobuddy", + "hood", + "hood-off", + "hood2", + "hoodie", + "hoodle", + "hoodle-builder", + "hoodle-core", + "hoodle-extra", + "hoodle-parser", + "hoodle-publish", + "hoodle-render", + "hoodle-types", + "hoogle-index", + "hooks-dir", + "hoopl", + "hoovie", + "hopencc", + "hopencl", + "HOpenCV", + "hopfield", + "hopfli", + "hops", + "hoq", + "horizon", + "horname", + "hosc-json", + "hosts-server", + "hothasktags", + "hotswap", + "hourglass-fuzzy-parsing", + "houseman", + "hp2any-core", + "hp2any-graph", + "hp2any-manager", + "hpack-convert", + "hpaco", + "hpaco-lib", + "hpage", + "hpapi", + "hpaste", + "hpasteit", + "HPath", + "hpc-coveralls", + "hpc-tracer", + "hPDB", + "hPDB-examples", + "hpg", + "HPhone", + "hpio", + "hplayground", + "hplaylist", + "HPlot", + "hpodder", + "HPong", + "hprotoc-fork", + "hps", + "hps-cairo", + "hps-kmeans", + "hPushover", + "hpygments", + "hpylos", + "hpyrg", + "hpython", + "hquery", + "hR", + "hranker", + "HRay", + "hreq-client", + "hreq-conduit", + "hreq-core", + "hRESP", + "Hricket", + "hricket", + "hs-blake2", + "hs-brotli", + "hs-carbon", + "hs-carbon-examples", + "hs-di", + "hs-dotnet", + "hs-excelx", + "hs-ffmpeg", + "hs-fltk", + "hs-functors", + "hs-gen-iface", + "hs-gizapp", + "hs-ix", + "hs-java", + "hs-json-rpc", + "hs-logo", + "hs-nombre-generator", + "hs-pattrans", + "hs-pgms", + "hs-pkg-config", + "hs-profunctors", + "hs-re", + "hs-rqlite", + "hs-rs-notify", + "hs-scrape", + "hs-snowtify", + "hs-twitter", + "hs-twitterarchiver", + "hs-vcard", + "hs2ats", + "hs2bf", + "hs2dot", + "Hs2lib", + "hs2ps", + "hS3", + "hsakamai", + "hsay", + "hsbackup", + "hsbc", + "hsbencher", + "hsbencher-codespeed", + "hsbencher-fusion", + "hsc3-auditor", + "hsc3-cairo", + "hsc3-data", + "hsc3-db", + "hsc3-dot", + "hsc3-forth", + "hsc3-graphs", + "hsc3-lang", + "hsc3-lisp", + "hsc3-plot", + "hsc3-process", + "hsc3-rec", + "hsc3-rw", + "hsc3-server", + "hsc3-sf", + "hsc3-sf-hsndfile", + "hsc3-unsafe", + "hsc3-utils", + "hscaffold", + "hscamwire", + "hscassandra", + "hscd", + "hschema-aeson", + "hsclock", + "hscope", + "hScraper", + "hscuid", + "hsdif", + "hsdip", + "hsdns-cache", + "hsebaysdk", + "Hsed", + "hsenv", + "hsfacter", + "hsfcsh", + "HSFFIG", + "hsfilt", + "hsforce", + "HSGEP", + "hsgnutls", + "hsgnutls-yj", + "hsgsom", + "HsHaruPDF", + "HSHHelpers", + "HsHyperEstraier", + "hsI2C", + "hSimpleDB", + "hsimport", + "hsinspect-lsp", + "HsJudy", + "hskeleton", + "hslackbuilder", + "hslibsvm", + "hslinks", + "hslogger-reader", + "hslogger-template", + "hslogstash", + "hsluv-haskell", + "hsmagick", + "hsmodetweaks", + "Hsmtlib", + "hsmtpclient", + "hsnock", + "hsns", + "hsnsq", + "hsntp", + "hsoptions", + "HSoundFile", + "hsoz", + "hsp", + "hsp-cgi", + "HsParrot", + "hspec-expectations-match", + "hspec-expectations-pretty", + "hspec-experimental", + "hspec-jenkins", + "hspec-monad-control", + "hspec-setup", + "hspec-shouldbe", + "hspec-structured-formatter", + "hspec-tables", + "hspec2", + "HsPerl5", + "hspkcs11", + "hspread", + "hspresent", + "hsprocess", + "hsql-mysql", + "hsql-odbc", + "hsql-postgresql", + "hsql-sqlite3", + "hsreadability", + "hsseccomp", + "hssourceinfo", + "hsSqlite3", + "hssqlppp", + "hssqlppp-th", + "HsSVN", + "hstats", + "hstatsd", + "hstest", + "hstidy", + "HsTools", + "hstox", + "hstradeking", + "HStringTemplateHelpers", + "hstyle", + "hstzaar", + "hsubconvert", + "hsudoku", + "HsWebots", + "hswip", + "hsx", + "hsx-xhtml", + "hsXenCtrl", + "hsyscall", + "hsyslog-tcp", + "hsyslog-udp", + "hszephyr", + "HTab", + "htags", + "hTalos", + "htar", + "hTensor", + "htestu", + "HTicTacToe", + "htiled", + "htlset", + "html-kure", + "html-rules", + "html-tokenizer", + "html2hamlet", + "hts", + "htsn", + "htsn-import", + "htssets", + "http-attoparsec", + "http-client-auth", + "http-client-lens", + "http-client-request-modifiers", + "http-client-session", + "http-client-streams", + "http-conduit-browser", + "http-dispatch", + "http-encodings", + "http-enumerator", + "http-kinder", + "http-kit", + "http-listen", + "http-pony", + "http-pony-serve-wai", + "http-querystring", + "http-response-decoder", + "http-server", + "http-shed", + "http-test", + "http-wget", + "http2-client-exe", + "http2-client-grpc", + "http2-grpc-types", + "https-everywhere-rules", + "https-everywhere-rules-raw", + "httpspec", + "htune", + "htvm", + "htzaar", + "hub", + "hubris", + "huck", + "HueAPI", + "huff", + "huffman", + "hugs2yc", + "hulk", + "HulkImport", + "human-parse", + "human-text", + "humble-prelude", + "hums", + "hunch", + "Hungarian-Munkres", + "HUnit-Diff", + "hunit-gui", + "HUnit-Plus", + "hunit-rematch", + "hunp", + "hunt-searchengine", + "hunt-server", + "hurdle", + "hurriyet", + "husk-scheme-libs", + "husky", + "hutton", + "huttons-razor", + "huzzy", + "hVOIDP", + "hw-all", + "hw-ci-assist", + "hw-kafka-conduit", + "hw-succinct", + "hwall-auth-iitk", + "hwhile", + "hworker", + "hworker-ses", + "hwormhole", + "hws", + "hwsl2", + "hwsl2-bytevector", + "hwsl2-reducers", + "hx", + "HXMPP", + "hxmppc", + "hxournal", + "HXQ", + "hxt-binary", + "hxt-filter", + "hxt-pickle-utils", + "hxthelper", + "hxweb", + "hyakko", + "hybrid", + "hydra-hs", + "hydra-print", + "Hydrogen", + "hydrogen", + "hydrogen-cli", + "hydrogen-cli-args", + "hydrogen-data", + "hydrogen-multimap", + "hydrogen-parsing", + "hydrogen-prelude", + "hydrogen-prelude-parsec", + "hydrogen-syntax", + "hydrogen-util", + "hyena", + "hylide", + "hylolib", + "hylotab", + "hyloutils", + "hyperdrive", + "hyperfunctions", + "hyperion", + "hyperloglogplus", + "hyperpublic", + "hypher", + "hzulip", + "i18n", + "i3blocks-hs-contrib", + "i3ipc", + "iap-verifier", + "ib-api", + "iban", + "ical", + "icfpc2020-galaxy", + "IcoGrid", + "iconv-typed", + "ide-backend", + "ide-backend-common", + "ide-backend-server", + "ideas", + "ideas-math", + "ideas-math-types", + "ideas-statistics", + "idempotent", + "identifiers", + "idiii", + "idna", + "idna2008", + "IDynamic", + "ieee-utils", + "iException", + "iexcloud", + "ifcxt", + "IFS", + "ifscs", + "ig", + "ige", + "ige-mac-integration", + "ignore", + "igraph", + "igrf", + "ihaskell-charts", + "ihaskell-gnuplot", + "ihaskell-graphviz", + "ihaskell-inline-r", + "ihaskell-parsec", + "ihaskell-plot", + "ihaskell-rlangqq", + "ihttp", + "illuminate", + "image-type", + "imagemagick", + "imagepaste", + "imap", + "imapget", + "imgur", + "imgurder", + "imj-animation", + "imj-base", + "imj-game-hamazed", + "imj-measure-stdout", + "imj-prelude", + "imparse", + "imperative-edsl-vhdl", + "ImperativeHaskell", + "impl", + "implicit-logging", + "implicit-params", + "importify", + "imports", + "impossible", + "imprevu-happstack", + "imprint", + "improve", + "impure-containers", + "INblobs", + "inch", + "incremental-computing", + "incremental-maps", + "incremental-sat-solver", + "increments", + "indentation", + "indentation-core", + "indentation-parsec", + "indentation-trifecta", + "indexation", + "indexed-do-notation", + "indexed-extras", + "IndexedList", + "indextype", + "indices", + "inf-interval", + "infer-upstream", + "infernu", + "infinity", + "infix", + "InfixApplicative", + "inflist", + "informative", + "ini-qq", + "inilist", + "initialize", + "inj-base", + "inject-function", + "inserts", + "inspector-wrecker", + "instance-control", + "instance-map", + "instant-aeson", + "instant-bytes", + "instant-deepseq", + "instant-generics", + "instant-hashable", + "instant-zipper", + "instapaper-sender", + "instinct", + "int-multimap", + "integer-pure", + "integer-simple", + "integreat", + "intel-aes", + "intensional-datatys", + "interact", + "interactive-plot", + "interleavableGen", + "interleavableIO", + "interlude-l", + "intero", + "interp", + "interpol", + "interpolatedstring-qq", + "interpolatedstring-qq-mwotton", + "interpolatedstring-qq2", + "interpolator", + "interruptible", + "interspersed", + "interval", + "IntFormats", + "intrinsic-superclasses", + "intro", + "intro-prelude", + "introduction", + "introduction-test", + "intset", + "invertible-hlist", + "invertible-syntax", + "involutive-semigroups", + "io-capture", + "io-choice", + "io-reactive", + "ioctl", + "ion", + "IOR", + "IORefCAS", + "iostring", + "iothread", + "iotransaction", + "ip-quoter", + "ipatch", + "ipc", + "ipcvar", + "ipld-cid", + "ipopt-hs", + "iptables-helpers", + "iptadmin", + "Irc", + "irc-dcc", + "irc-fun-bot", + "irc-fun-client", + "irc-fun-color", + "irc-fun-messages", + "irc-fun-types", + "ireal", + "iridium", + "iron-mq", + "ironforge", + "irt", + "isdicom", + "isevaluated", + "ismtp", + "IsNull", + "isobmff", + "isobmff-builder", + "isohunt", + "isotope", + "it-has", + "itcli", + "itemfield", + "iter-stats", + "iteratee", + "iteratee-compress", + "iteratee-mtl", + "iteratee-parsec", + "iteratee-stm", + "iterIO", + "iterio-server", + "ival", + "ivor", + "ivory", + "ivory-backend-c", + "ivory-bitdata", + "ivory-eval", + "ivory-examples", + "ivory-hw", + "ivory-opts", + "ivory-quickcheck", + "ivory-serialize", + "ivory-stdlib", + "ivy-web", + "ix", + "ixdopp", + "ixmonad", + "ixshader", + "iyql", + "j2hs", + "jack-bindings", + "JackMiniMix", + "jackminimix", + "jacobi-roots", + "jaeger-flamegraph", + "jail", + "jalla", + "jammittools", + "jarfind", + "jarify", + "jason", + "java-bridge", + "java-bridge-extras", + "java-character", + "java-reflect", + "javaclass", + "javascript-bridge", + "javascript-extras", + "Javasf", + "javasf", + "Javav", + "javav", + "jbi", + "jcdecaux-vls", + "Jdh", + "jdi", + "jenga", + "jespresso", + "jinquantities", + "jmacro-rpc", + "jmacro-rpc-happstack", + "jmacro-rpc-snap", + "jml-web-service", + "jobqueue", + "jobs-ui", + "join", + "join-api", + "joinlist", + "jonathanscard", + "jort", + "jpeg", + "js-good-parts", + "jsc", + "JsContracts", + "jsmw", + "json-api", + "json-api-lib", + "json-assertions", + "json-ast-json-encoder", + "json-ast-quickcheck", + "json-autotype", + "json-b", + "json-builder", + "JSON-Combinator", + "JSON-Combinator-Examples", + "json-encoder", + "json-enumerator", + "json-extra", + "json-fu", + "json-incremental-decoder", + "json-litobj", + "json-pointer", + "json-pointer-aeson", + "json-pointer-hasql", + "json-pointy", + "json-python", + "json-qq", + "json-rpc-client", + "json-schema", + "json-state", + "json-togo", + "json-tokens", + "json-tools", + "json-tracer", + "json2", + "json2-hdbc", + "JSONb", + "jsonextfilter", + "JsonGrammar", + "jsonresume", + "jsons-to-schema", + "jsonschema-gen", + "jsonsql", + "jsontsv", + "jsonxlsx", + "jsop", + "jspath", + "judge", + "judy", + "JuicyPixels-canvas", + "JuicyPixels-util", + "JunkDB", + "JunkDB-driver-gdbm", + "JunkDB-driver-hashtables", + "jupyter", + "JuPyTer-notebook", + "JustParse", + "JYU-Utils", + "kademlia", + "kafka-client", + "kafka-client-sync", + "kafka-device", + "kafka-device-glut", + "kafka-device-joystick", + "kafka-device-leap", + "kafka-device-spacenav", + "kafka-device-vrpn", + "kaleidoscope", + "Kalman", + "kalman", + "kangaroo", + "kansas-lava", + "kansas-lava-cores", + "kansas-lava-papilio", + "kansas-lava-shake", + "karakuri", + "karps", + "katip-kafka", + "katip-rollbar", + "katip-scalyr-scribe", + "katt", + "katydid", + "kawa", + "kawaii", + "kawhi", + "kd-tree", + "kdesrc-build-extra", + "keccak", + "keenser", + "keera-posture", + "keiretsu", + "kerry", + "Ketchup", + "kevin", + "key", + "key-vault", + "keyed", + "keyring", + "keysafe", + "keyvaluehash", + "keyword-args", + "khph", + "kickass-torrents-dump-parser", + "kickchan", + "KiCS", + "KiCS-debugger", + "KiCS-prophecy", + "kif-parser", + "kit", + "kleene-list", + "kmeans-par", + "kmeans-vector", + "kmp-dfa", + "knead-arithmetic", + "knit-haskell", + "knots", + "koellner-phonetic", + "Konf", + "kontra-config", + "koofr-client", + "korea-holidays", + "korfu", + "kraken", + "krapsh", + "Kriens", + "krpc", + "ks-test", + "KSP", + "ktx", + "kubernetes-webhook-haskell", + "kuifje", + "kure-your-boilerplate", + "kurita", + "KyotoCabinet", + "l-bfgs-b", + "L-seed", + "l10n", + "labeled-graph", + "laborantin-hs", + "labsat", + "labyrinth", + "labyrinth-server", + "lagrangian", + "laika", + "lambda-bridge", + "lambda-canvas", + "lambda-devs", + "lambda-sampler", + "lambda-toolbox", + "lambda2js", + "lambdaBase", + "lambdabot-utils", + "lambdabot-zulip", + "lambdacat", + "lambdacms-core", + "lambdacms-media", + "lambdacube", + "lambdacube-bullet", + "lambdacube-compiler", + "lambdacube-core", + "lambdacube-edsl", + "lambdacube-engine", + "lambdacube-examples", + "lambdacube-gl", + "lambdacube-ir", + "lambdacube-samples", + "LambdaDesigner", + "lambdaFeed", + "LambdaINet", + "Lambdajudge", + "lambdaLit", + "LambdaNet", + "LambdaPrettyQuote", + "LambdaShell", + "lambdatex", + "lambdatwit", + "Lambdaya", + "lambdaya-bus", + "lambdiff", + "lame-tester", + "lang", + "language-asn", + "language-boogie", + "language-c-comments", + "language-c-inline", + "language-csharp", + "language-dart", + "language-dockerfile", + "language-ecmascript", + "language-ecmascript-analysis", + "language-eiffel", + "language-elm", + "language-fortran", + "language-gcl", + "language-go", + "language-guess", + "language-hcl", + "language-java-classfile", + "language-kort", + "language-lua-qq", + "language-lua2", + "language-mixal", + "language-ninja", + "language-objc", + "language-ocaml", + "language-openscad", + "language-pig", + "language-python-colour", + "language-python-test", + "language-qux", + "language-rust", + "language-sally", + "language-sh", + "language-spelling", + "language-sqlite", + "language-typescript", + "language-webidl", + "laop", + "LargeCardinalHierarchy", + "Lastik", + "lat", + "latest-npm-version", + "latex-formulae-hakyll", + "latex-formulae-image", + "latex-formulae-pandoc", + "latex-svg-hakyll", + "latex-svg-image", + "latex-svg-pandoc", + "LATS", + "Lattices", + "launchpad-control", + "lawless-concurrent-machines", + "layered-state", + "layers", + "layout", + "layout-bootstrap", + "layout-rules", + "layouting", + "lazy", + "lazy-hash", + "lazy-hash-cache", + "lazyarray", + "lazyboy", + "lazyset", + "lbfgs", + "lcs", + "ld-intervals", + "lda", + "ldapply", + "ldif", + "leaf", + "leaky", + "lean", + "leapseconds", + "learn", + "learn-physics-examples", + "Learning", + "learning-hmm", + "leetify", + "legion", + "legion-discovery", + "legion-discovery-client", + "legion-extra", + "leksah-server", + "lendingclub", + "lens-accelerate", + "lens-datetime", + "lens-labels", + "lens-prelude", + "lens-simple", + "lens-text-encoding", + "lens-th-rewrite", + "lens-time", + "lens-typelevel", + "lens-utils", + "lens-xml", + "lensref", + "lenz", + "lenz-mtl", + "lenz-template", + "level-monad", + "Level0", + "levmar", + "levmar-chart", + "lex-applicative", + "lfst", + "lgtk", + "lha", + "lhae", + "lhc", + "lhe", + "lhs2TeX-hl", + "lhslatex", + "LibClang", + "libconfig", + "libcspm", + "libexpect", + "libGenI", + "libgit", + "libgraph", + "libhbb", + "libinfluxdb", + "liblastfm", + "liblawless", + "liblinear-enumerator", + "libltdl", + "libmolude", + "liboleg", + "libpafe", + "libpq", + "libraft", + "librandomorg", + "librato", + "libstackexchange", + "libsystemd-daemon", + "libtagc", + "libxls", + "libxml-enumerator", + "libxslt", + "libzfs", + "LibZip", + "lie", + "life-sync", + "lifted-base-tf", + "lifted-protolude", + "lifter", + "ligature", + "light", + "lightning-haskell", + "lighttpd-conf", + "lighttpd-conf-qq", + "lilypond", + "Limit", + "limp-cbc", + "linda", + "linden", + "line", + "linear-accelerate", + "linear-algebra-cblas", + "linear-code", + "linear-maps", + "linear-socket", + "linear-vect", + "linearscan-hoopl", + "LinearSplit", + "lines-of-action", + "linguistic-ordinals", + "LinkChecker", + "linkchk", + "linkcore", + "linked-list-with-iterator", + "linkedhashmap", + "linklater", + "linnet", + "linnet-aeson", + "linnet-conduit", + "linode", + "linode-v4", + "linux-blkid", + "linux-cgroup", + "linux-evdev", + "linux-framebuffer", + "linux-kmod", + "linux-perf", + "linux-ptrace", + "linux-xattr", + "linx-gateway", + "lio-eci11", + "lio-simple", + "lipsum-gen", + "liquid", + "liquidhaskell-cabal", + "liquidhaskell-cabal-demo", + "Liquorice", + "list-mux", + "list-prompt", + "list-t-attoparsec", + "list-t-html-parser", + "list-t-http-client", + "list-t-libcurl", + "list-t-text", + "list-zip-def", + "listenbrainz-client", + "listlike-instances", + "ListT", + "liszt", + "lit", + "literals", + "LiterateMarkdown", + "ll-picosat", + "llsd", + "llvm", + "llvm-analysis", + "llvm-base", + "llvm-base-types", + "llvm-base-util", + "llvm-data-interop", + "llvm-extension", + "llvm-general", + "llvm-general-pure", + "llvm-general-quote", + "llvm-hs", + "llvm-hs-pretty", + "llvm-ht", + "llvm-tools", + "lmdb-high-level", + "lmdb-simple", + "lmonad", + "lmonad-yesod", + "load-balancing", + "load-font", + "local-address", + "local-search", + "located", + "located-monad-logger", + "loch", + "locked-poll", + "log", + "log-effect", + "log-effect-syslog", + "log-utils", + "log-warper", + "log2json", + "log4hs", + "logentries", + "logger", + "logging-effect-extra", + "logging-effect-extra-file", + "logging-effect-extra-handler", + "Logic", + "logic-classes", + "LogicGrowsOnTrees", + "LogicGrowsOnTrees-MPI", + "LogicGrowsOnTrees-network", + "LogicGrowsOnTrees-processes", + "logicst", + "logplex-parse", + "lojban", + "lojbanParser", + "lojbanXiragan", + "lojysamban", + "lol", + "lol-apps", + "lol-benches", + "lol-calculus", + "lol-cpp", + "lol-repa", + "lol-tests", + "lol-typing", + "loli", + "lookup-tables", + "loop-effin", + "loop-while", + "loopbreaker", + "loops", + "loopy", + "lord", + "lorem", + "loris", + "loshadka", + "lostcities", + "louis", + "loup", + "lowgl", + "lp-diagrams-svg", + "LRU", + "lrucaching-haxl", + "ls-usb", + "lscabal", + "LslPlus", + "lsystem", + "ltiv1p1", + "ltk", + "LTS", + "lua-bc", + "luachunk", + "luautils", + "lucienne", + "Lucu", + "luhn", + "lui", + "luis-client", + "luka", + "luminance", + "luminance-samples", + "lushtags", + "luthor", + "lvish", + "lvmrun", + "lxd-client", + "lxd-client-config", + "lye", + "Lykah", + "lz4-conduit", + "lzip", + "lzma-enumerator", + "lzma-streams", + "maam", + "macbeth-lib", + "machinecell", + "machines-amazonka", + "machines-bytestring", + "machines-encoding", + "machines-zlib", + "macho", + "mackerel-client", + "maclight", + "macos-corelibs", + "macosx-make-standalone", + "madlang", + "mage", + "magic-tyfams", + "mahoro", + "maid", + "mailchimp", + "mailchimp-subscribe", + "MailchimpSimple", + "mailgun", + "majordomo", + "majority", + "make-hard-links", + "make-monofoldable-foldable", + "make-package", + "makedo", + "makefile", + "mallard", + "manatee", + "manatee-all", + "manatee-anything", + "manatee-browser", + "manatee-core", + "manatee-curl", + "manatee-editor", + "manatee-filemanager", + "manatee-imageviewer", + "manatee-ircclient", + "manatee-mplayer", + "manatee-pdfviewer", + "manatee-processmanager", + "manatee-reader", + "manatee-template", + "manatee-terminal", + "manatee-welcome", + "mangopay", + "Map", + "map-exts", + "mapalgebra", + "Mapping", + "mappy", + "MapWith", + "marionetta", + "markdown-kate", + "markdown-pap", + "markdown2svg", + "marked-pretty", + "markov-realization", + "markup", + "marmalade-upload", + "marquise", + "mars", + "marvin", + "marvin-interpolate", + "marxup", + "masakazu-bot", + "MASMGen", + "massiv-scheduler", + "master-plan", + "matcher", + "matchers", + "math-grads", + "math-interpolate", + "math-metric", + "mathblog", + "mathflow", + "mathlink", + "matrix-lens", + "matrix-market", + "matrix-sized", + "matsuri", + "maude", + "maxent", + "maxent-learner-hw", + "maxent-learner-hw-gui", + "maxsharing", + "maybench", + "MaybeT", + "MaybeT-monads-tf", + "MaybeT-transformers", + "MazesOfMonad", + "MBot", + "mbox-tools", + "mbtiles", + "mbug", + "MC-Fold-DP", + "mcl", + "mcm", + "mcmaster-gloss-examples", + "mcmc-samplers", + "mcmc-synthesis", + "mcpi", + "mdapi", + "mdcat", + "mDNSResponder-client", + "mdp", + "MeanShift", + "Measure", + "mecab", + "mech", + "Mecha", + "Mechs", + "mechs", + "mediabus", + "mediabus-fdk-aac", + "mediabus-rtp", + "mediawiki", + "mediawiki2latex", + "medium-sdk-haskell", + "meep", + "megalisp", + "mellon-core", + "mellon-gpio", + "mellon-web", + "melody", + "membrain", + "memcache-conduit", + "memcache-haskell", + "memcached", + "memcached-binary", + "memis", + "memo-ptr", + "memo-sqlite", + "memoization-utils", + "memorable-bits", + "memorypool", + "menoh", + "menshen", + "merkle-patricia-db", + "messagepack-rpc", + "messente", + "meta-misc", + "meta-par", + "meta-par-accelerate", + "metadata", + "MetaHDBC", + "metaheuristics", + "MetaObject", + "metaplug", + "metar", + "metar-http", + "metric", + "Metrics", + "metricsd-client", + "metro-transport-tls", + "metronome", + "mezzo", + "mezzolens", + "MFlow", + "mgeneric", + "Mhailist", + "MHask", + "mi", + "Michelangelo", + "miconix-test", + "micro-recursion-schemes", + "microgroove", + "microlens-each", + "micrologger", + "microsoft-translator", + "MicrosoftTranslator", + "mida", + "midi-simple", + "midi-utils", + "midisurface", + "mighttpd", + "mikmod", + "mikrokosmos", + "miku", + "milena", + "mime-directory", + "minecraft-data", + "mines", + "minesweeper", + "mini-egison", + "miniforth", + "minilens", + "minilight", + "minilight-lua", + "minimung", + "minions", + "minioperational", + "miniplex", + "minirotate", + "ministg", + "minst-idx", + "mios", + "mirror-tweet", + "mismi-kernel", + "mismi-p", + "mismi-s3-core", + "miss", + "miss-porcelain", + "missing-py2", + "MissingPy", + "mix-arrows", + "mixed-strategies", + "mkbndl", + "mkcabal", + "ml-w", + "mlist", + "mltool", + "mm2", + "mmsyn7ukr", + "mmtf", + "mmtl", + "mmtl-base", + "moan", + "mockazo", + "modbus-tcp", + "model", + "modelicaparser", + "modify-fasta", + "modsplit", + "modular-prelude", + "modular-prelude-classy", + "modularity", + "module-management", + "modulespection", + "modulo", + "Moe", + "moe", + "MoeDict", + "moesocks", + "mole", + "mollie-api-haskell", + "monad-atom", + "monad-atom-simple", + "monad-branch", + "monad-choice", + "monad-connect", + "monad-exception", + "monad-fork", + "monad-gen", + "monad-http", + "monad-introspect", + "monad-journal", + "monad-levels", + "monad-lgbt", + "monad-log", + "monad-lrs", + "monad-mersenne-random", + "monad-mock", + "monad-open", + "monad-parallel-progressbar", + "monad-param", + "monad-persist", + "monad-primitive", + "monad-products", + "monad-ran", + "monad-recorder", + "monad-statevar", + "monad-stlike-io", + "monad-stlike-stm", + "monad-task", + "monad-timing", + "monad-tx", + "monad-unify", + "monad-wrap", + "monadacme", + "MonadCatchIO-mtl", + "MonadCatchIO-mtl-foreign", + "MonadCatchIO-transformers", + "MonadCatchIO-transformers-foreign", + "MonadCompose", + "monadcryptorandom", + "monadic-arrays", + "monadiccp", + "monadiccp-gecode", + "monadio-unwrappable", + "Monadius", + "MonadLab", + "monadLib-compose", + "monadloc", + "monadloc-pp", + "monadlog", + "MonadRandomLazy", + "monads-fd", + "MonadStack", + "monadtransform", + "monarch", + "Monaris", + "Monatron", + "Monatron-IO", + "mondo", + "monetdb-mapi", + "money", + "mongodb-queue", + "mongrel2-handler", + "monitor", + "monky", + "mono-foldable", + "Monocle", + "monoid", + "monoid-absorbing", + "monoid-owns", + "monoidplus", + "monoids", + "monopati", + "monte-carlo", + "monus", + "monzo", + "moo", + "morfette", + "morfeusz", + "morpheus-graphql-cli", + "morphisms-functors", + "morphisms-functors-inventory", + "morphisms-objects", + "mosaico-lib", + "motor", + "motor-diagrams", + "motor-reflection", + "mount", + "movie-monad", + "mp3decoder", + "mpdmate", + "mpppc", + "mpretty", + "mpris", + "mprover", + "mps", + "mpvguihs", + "mqtt", + "mqtt-hs", + "mrifk", + "mrm", + "ms", + "msgpack-aeson", + "msgpack-idl", + "msgpack-rpc", + "msh", + "msi-kb-backlit", + "MSQueue", + "MTGBuilder", + "mtgoxapi", + "mtl-c", + "mtl-evil-instances", + "mtl-extras", + "mtl-tf", + "mtl-unleashed", + "mtlx", + "mtp", + "mtree", + "mu-kafka", + "MuCheck-Hspec", + "MuCheck-HUnit", + "MuCheck-QuickCheck", + "MuCheck-SmallCheck", + "mud", + "mudbath", + "mulang", + "multext-east-msd", + "multi-cabal", + "multiaddr", + "multifocal", + "multihash", + "multihash-serialise", + "multilinear", + "multilinear-io", + "multipass", + "multipath", + "multiplate", + "multiplate-simplified", + "multiplicity", + "multipool", + "multipool-persistent", + "multipool-persistent-postgresql", + "multirec", + "multirec-alt-deriver", + "multirec-binary", + "multisetrewrite", + "multivariant", + "Munkres-simple", + "murder", + "murmur", + "murmurhash3", + "mushu", + "music-graphics", + "music-parts", + "music-pitch", + "music-preludes", + "music-score", + "music-sibelius", + "music-suite", + "music-util", + "musicbrainz-email", + "musicxml", + "musicxml2", + "mustache-haskell", + "mustache2hs", + "mutable", + "mutable-iter", + "MutationOrder", + "mute-unmute", + "mvclient", + "mwc-random-monad", + "mxnet", + "mxnet-dataiter", + "mxnet-examples", + "mxnet-nn", + "mxnet-nnvm", + "my-package-testing", + "myanimelist-export", + "myo", + "MyPrimes", + "mysnapsession", + "mysnapsession-example", + "mysql-effect", + "mysql-simple-quasi", + "mysql-simple-typed", + "mystem", + "myTestlll", + "mywatch", + "myxine-client", + "mzv", + "n-m", + "n2o-protocols", + "n2o-web", + "nagios-plugin-ekg", + "nakadi-client", + "named-formlet", + "named-sop", + "namelist", + "nano-cryptr", + "nano-hmac", + "nano-md5", + "nanoAgda", + "nanocurses", + "nanomsg", + "nanoparsec", + "NanoProlog", + "nanq", + "naperian", + "NaperianNetCDF", + "naqsha", + "narc", + "nationstates", + "nats-client", + "nats-queue", + "natural-number", + "NaturalLanguageAlphabets", + "NaturalSort", + "naver-translate", + "ncurses", + "ndjson-conduit", + "NearContextAlgebra", + "neat", + "needle", + "neet", + "nehe-tuts", + "neil", + "neither", + "neko-lib", + "neko-obfs", + "Neks", + "nemesis-titan", + "nerf", + "nero", + "nero-wai", + "nero-warp", + "nest", + "nested-sequence", + "NestedFunctor", + "nestedmap", + "netcore", + "netease-fm", + "netlines", + "netrium", + "netspec", + "netstring-enumerator", + "nettle-frp", + "nettle-netkit", + "nettle-openflow", + "netwire-input-javascript", + "netwire-vinylglfw-examples", + "network-address", + "network-anonymous-i2p", + "network-anonymous-tor", + "network-api-support", + "network-attoparsec", + "network-bitcoin", + "network-builder", + "network-bytestring", + "network-connection", + "network-dbus", + "network-enumerator", + "network-hans", + "network-interfacerequest", + "network-manager-tui", + "network-messagepack-rpc-websocket", + "network-metrics", + "network-minihttp", + "network-msg", + "network-msgpack-rpc", + "network-netpacket", + "network-pgi", + "network-rpca", + "network-server", + "network-service", + "network-simple-sockaddr", + "network-socket-options", + "network-stream", + "network-topic-models", + "network-transport-amqp", + "network-uri-json", + "network-voicetext", + "network-wai-router", + "network-websocket", + "networked-game", + "neural", + "neural-network-blashs", + "neural-network-hmatrix", + "newhope", + "newports", + "newsletter", + "newsletter-mailgun", + "newt", + "newtype-deriving", + "newtype-th", + "next-ref", + "nextstep-plist", + "NGrams", + "ngrams-loader", + "niagra", + "nibblestring", + "nice-html", + "nicovideo-translator", + "nikepub", + "Ninjas", + "nirum", + "nist-beacon", + "nitro", + "nix-delegate", + "nix-eval", + "nix-tools", + "nixdu", + "nixfromnpm", + "nkjp", + "nlp-scores", + "nlp-scores-scripts", + "nm", + "NMap", + "nme", + "nn", + "nntp", + "no-role-annots", + "noether", + "nofib-analyze", + "noise", + "noli", + "nom", + "Nomyx", + "nomyx-api", + "Nomyx-Core", + "nomyx-core", + "Nomyx-Language", + "nomyx-language", + "nomyx-library", + "Nomyx-Rules", + "nomyx-server", + "Nomyx-Web", + "non-empty-containers", + "non-empty-zipper", + "NonEmpty", + "nonempty-lift", + "NonEmptyList", + "nonemptymap", + "nonlinear-optimization", + "noodle", + "NoSlow", + "not-gloss", + "not-gloss-examples", + "notcpp", + "notmuch-haskell", + "notmuch-web", + "NoTrace", + "notzero", + "now-haskell", + "np-linear", + "nptools", + "ntha", + "ntp-control", + "ntrip-client", + "NTRU", + "null-canvas", + "nullary", + "nullpipe", + "NumberSieves", + "NumberTheory", + "numeric-ode", + "numeric-ranges", + "numerical", + "numhask-hedgehog", + "numhask-histogram", + "numhask-prelude", + "numhask-range", + "numhask-test", + "numtype-tf", + "nurbs", + "Nussinov78", + "Nutri", + "NXT", + "NXTDSL", + "nyan", + "nylas", + "nymphaea", + "nyx-game", + "oanda-rest-api", + "oasis-xrd", + "oauth2-jwt-bearer", + "obd", + "oberon0", + "obj", + "Object", + "objectid", + "ObjectIO", + "ocaml-export", + "ochan", + "ochintin-daicho", + "octane", + "octohat", + "octopus", + "Octree", + "oculus", + "odd-jobs", + "oden-go-packages", + "off-simple", + "OGL", + "ogmarkup", + "ohloh-hs", + "oi", + "ois-input-manager", + "old-version", + "olwrapper", + "om-actor", + "om-http-logging", + "omaketex", + "ombra", + "Omega", + "omega", + "omnifmt", + "on-a-horse", + "oneormore", + "online", + "online-csv", + "onpartitions", + "OnRmt", + "onu-course", + "op", + "opaleye-classy", + "open-adt", + "open-adt-tutorial", + "open-haddock", + "open-pandoc", + "open-signals", + "open-typerep", + "OpenAFP", + "OpenAFP-Utils", + "openapi-petstore", + "openapi-typed", + "opench-meteo", + "OpenCL", + "OpenCLRaw", + "OpenCLWrappers", + "opencog-atomspace", + "opencv", + "opencv-extra", + "opencv-raw", + "opendatatable", + "openflow", + "OpenGLCheck", + "opengles", + "OpenGLRaw21", + "openid", + "openpgp-Crypto", + "openpgp-crypto-api", + "OpenSCAD", + "opensoundcontrol-ht", + "openssh-github-keys", + "openssh-protocol", + "opentelemetry-http-client", + "opentheory-char", + "opentok", + "opentype", + "OpenVG", + "OpenVGRaw", + "Operads", + "operate-do", + "operational-class", + "operational-extra", + "opn", + "optimal-blocks", + "optimization", + "optimusprime", + "optional", + "options-time", + "optparse-applicative-simple", + "optparse-helper", + "orc", + "orchestrate", + "orchid", + "orchid-demo", + "order-maintenance", + "order-statistics", + "Ordinary", + "ordrea", + "oref", + "organize-imports", + "orgmode", + "orgmode-parse", + "origami", + "orion-hs", + "orizentic", + "OrPatterns", + "osc", + "oscpacking", + "oset", + "Oslo-Vectize", + "osm-conduit", + "osm-download", + "oso2pdf", + "osx-ar", + "ot", + "OTP", + "ottparse-pretty", + "overload", + "overloaded-records", + "overture", + "pack", + "package-o-tron", + "package-vt", + "packdeps", + "packed", + "packed-dawg", + "packed-multikey-map", + "packedstring", + "packer-messagepack", + "packman", + "packunused", + "pacman-memcache", + "padKONTROL", + "pads-haskell", + "pagarme", + "pagerduty", + "pagure-hook-receiver", + "Paillier", + "pairing", + "panda", + "pandoc-citeproc", + "pandoc-emphasize-code", + "pandoc-filter-graphviz", + "pandoc-highlighting-extensions", + "pandoc-include", + "pandoc-include-code", + "pandoc-japanese-filters", + "pandoc-markdown-ghci-filter", + "pandoc-placetable", + "pandoc-pyplot", + "pandoc-unlit", + "pandoc-utils", + "PandocAgda", + "pang-a-lambda", + "pangraph", + "panpipe", + "pansite", + "pantry-tmp", + "papa", + "papa-base", + "papa-base-export", + "papa-base-implement", + "papa-export", + "papa-include", + "papa-lens-export", + "papa-lens-implement", + "papa-prelude", + "papa-prelude-core", + "papa-prelude-lens", + "papa-prelude-semigroupoids", + "papa-prelude-semigroups", + "papa-semigroupoids", + "papa-semigroupoids-export", + "papa-semigroupoids-implement", + "paphragen", + "papillon", + "pappy", + "par-dual", + "paragon", + "Paraiso", + "Parallel-Arrows-BaseSpec", + "Parallel-Arrows-Definition", + "Parallel-Arrows-Eden", + "Parallel-Arrows-Multicore", + "Parallel-Arrows-ParMonad", + "parallel-tasks", + "parameterized-data", + "parco", + "parco-attoparsec", + "parco-parsec", + "parcom-lib", + "pareto", + "paripari", + "parquet-hs", + "PArrows", + "Parry", + "parse-gcstats", + "parse-help", + "parsec-extra", + "parsec-parsers", + "parsec-pratt", + "parsec2", + "parsec3", + "parseerror-eq", + "parsely", + "parser-helper", + "parser241", + "parsergen", + "parsestar", + "parsimony", + "parsix", + "partage", + "partial-lens", + "partial-records", + "partial-semigroup-test", + "partly", + "passage", + "passman-cli", + "passman-core", + "PasswordGenerator", + "passwords", + "pasta", + "pastis", + "pasty", + "patches-vector", + "Pathfinder", + "pathfindingcore", + "PathTree", + "patterns", + "paypal-adaptive-hoops", + "paypal-api", + "paypal-rest-client", + "pb", + "pb-next", + "PBKDF2", + "pcap-enumerator", + "pcd-loader", + "pcf-font-embed", + "pcgen", + "PCLT", + "PCLT-DB", + "pcre-light-extra", + "pdf-slave", + "pdf-slave-template", + "pdf-toolbox-viewer", + "pdfinfo", + "pdfname", + "pdfsplit", + "pdynload", + "PeanoWitnesses", + "pec", + "pecoff", + "pedestrian-dag", + "peg", + "peggy", + "pell", + "pencil", + "penntreebank-megaparsec", + "penny", + "penny-bin", + "penny-lib", + "penrose", + "peparser", + "percent-encoder", + "perceptron", + "perdure", + "perf-analysis", + "PerfectHash", + "perfecthash", + "perhaps", + "periodic", + "periodic-client-exe", + "periodic-common", + "periodic-polynomials", + "periodic-server", + "perm", + "permutation", + "permutations", + "permute", + "PermuteEffects", + "persist-state", + "persist2er", + "Persistence", + "persistent-audit", + "persistent-cereal", + "persistent-database-url", + "persistent-equivalence", + "persistent-generic", + "persistent-hssqlppp", + "persistent-map", + "persistent-mysql-haskell", + "persistent-protobuf", + "persistent-ratelimit", + "persistent-refs", + "persistent-relational-record", + "persona", + "persona-idp", + "pesca", + "peyotls", + "peyotls-codec", + "pez", + "pg-harness", + "pg-harness-server", + "pg-recorder", + "pg-store", + "pgp-wordlist", + "pgsql-simple", + "pgstream", + "phasechange", + "phash", + "phoityne", + "phoityne-vscode", + "phone-metadata", + "phone-numbers", + "phone-push", + "phooey", + "phraskell", + "Phsu", + "phybin", + "pi-calculus", + "pi-forall", + "pi-hoole", + "pi-lcd", + "pia-forward", + "pianola", + "picedit", + "pickle", + "picologic", + "picoparsec", + "picosat", + "pictikz", + "pidfile", + "pier", + "pier-core", + "piet", + "pig", + "pinchot", + "pine", + "pinpon", + "Pipe", + "pipe-enumerator", + "piped", + "pipes-async", + "pipes-attoparsec-streaming", + "pipes-bgzf", + "pipes-break", + "pipes-brotli", + "pipes-bzip", + "pipes-category", + "pipes-cereal", + "pipes-cereal-plus", + "pipes-conduit", + "pipes-core", + "pipes-courier", + "pipes-errors", + "pipes-extra", + "pipes-files", + "pipes-illumina", + "pipes-io", + "pipes-kafka", + "pipes-key-value-csv", + "pipes-lines", + "pipes-network-ws", + "pipes-p2p", + "pipes-p2p-examples", + "pipes-protolude", + "pipes-rt", + "pipes-s3", + "pipes-shell", + "pipes-sqlite-simple", + "pipes-transduce", + "pipes-vector", + "pipes-zeromq4", + "pisigma", + "Piso", + "pit", + "pitchtrack", + "pivotal-tracker", + "pixela", + "pixelated-avatar-generator", + "pkcs10", + "pkcs7", + "pkggraph", + "plailude", + "plan-applicative", + "plan-b", + "planar-graph", + "planb-token-introspection", + "planet-mitchell", + "planet-mitchell-test", + "plankton", + "plat", + "platinum-parsing", + "PlayingCards", + "playlists-http", + "plist", + "plist-buddy", + "plivo", + "plocketed", + "plot-gtk", + "plot-gtk-ui", + "plot-gtk3", + "Plot-ho-matic", + "plot-lab", + "PlslTools", + "plucky", + "plugins-auto", + "plugins-multistage", + "plumbers", + "plur", + "plural", + "ply-loader", + "plzwrk", + "png-file", + "pngload", + "pocket", + "point-octree", + "pointedalternative", + "pointful", + "pointless-haskell", + "pointless-lenses", + "pointless-rewrite", + "pokemon-go-protobuf-types", + "poker-eval", + "pokitdok", + "polar-configfile", + "polar-shader", + "polh-lexicon", + "policeman", + "Pollutocracy", + "poly-cont", + "poly-control", + "polydata", + "polydata-core", + "polynom", + "polynomial", + "polyseq", + "polysoup", + "polytypeable", + "polytypeable-utils", + "pomodoro", + "pomohoro", + "ponder", + "pong-server", + "pontarius-mediaserver", + "pontarius-xpmn", + "pool", + "pool-conduit", + "pop3-client", + "popenhs", + "poppler", + "porcupine-core", + "porcupine-http", + "portager", + "porte", + "PortFusion", + "ports", + "poseidon", + "poseidon-postgis", + "positron", + "posix-acl", + "posix-filelock", + "posix-realtime", + "posix-waitpid", + "postcodes", + "postgres-embedded", + "postgres-tmp", + "PostgreSQL", + "postgresql-common", + "postgresql-common-persistent", + "postgresql-config", + "postgresql-cube", + "postgresql-named", + "postgresql-orm", + "postgresql-simple-bind", + "postgresql-simple-opts", + "postgresql-simple-queue", + "postgresql-simple-sop", + "postgresql-simple-typed", + "postgresql-typed-lifted", + "postgrest-ws", + "postmark", + "postmaster", + "potato-tool", + "potoki", + "potoki-cereal", + "potoki-conduit", + "potoki-core", + "potoki-hasql", + "potoki-zlib", + "powermate", + "powerpc", + "powerqueue-levelmem", + "powerqueue-sqs", + "pprecord", + "PPrinter", + "pqc", + "pqueue-mtl", + "practice-room", + "praglude", + "preamble", + "precis", + "precursor", + "pred-trie", + "predicate-class", + "prednote", + "prednote-test", + "prefork", + "pregame", + "preliminaries", + "Prelude", + "prelude-generalize", + "prelude-plus", + "preprocess-haskell", + "preprocessor", + "presburger", + "present", + "press", + "presto-hdbc", + "pretty-ghci", + "pretty-loc", + "prettyprinter-vty", + "preview", + "prim", + "prim-array", + "prim-instances", + "prim-ref", + "primes-type", + "primitive-convenience", + "primitive-foreign", + "primitive-indexed", + "primitive-maybe", + "primitive-simd", + "primitive-stablename", + "PrimitiveArray-Pretty", + "primula-board", + "primula-bot", + "pringletons", + "print-debugger", + "print-info", + "printcess", + "Printf-TH", + "prints", + "priority-queue", + "PriorityChansConverger", + "ProbabilityMonads", + "probable", + "proc", + "process-conduit", + "process-iterio", + "process-leksah", + "process-listlike", + "process-progress", + "process-qq", + "process-streaming", + "processing", + "processmemory", + "procrastinating-structure", + "procrastinating-variable", + "procstat", + "producer", + "product", + "prof-flamegraph", + "prof2dot", + "prof2pretty", + "progress-meter", + "progress-reporting", + "progressbar", + "progression", + "progressive", + "proj4-hs-bindings", + "projectile", + "prolog", + "prolog-graph", + "prolog-graph-lib", + "prologue", + "prometheus-effect", + "prometheus-wai-middleware", + "promise", + "prompt", + "pronounce", + "propane", + "Proper", + "properties", + "property-list", + "proplang", + "prosidy", + "prosidyc", + "prosper", + "proto-lens-combinators", + "proto-lens-descriptors", + "protobuf-native", + "protocol", + "protocol-buffers-descriptor-fork", + "protocol-buffers-fork", + "protolude-lifted", + "proton-haskell", + "prototype", + "prove-everywhere-server", + "proxy-kindness", + "proxy-mapping", + "psc-ide", + "pseudo-trie", + "psi", + "pstemmer", + "PTQ", + "pub", + "publicsuffix", + "publicsuffixlist", + "publicsuffixlistcreate", + "pubnub", + "pubsub", + "puffytools", + "pugixml", + "Pugs", + "pugs-compat", + "pugs-DrIFT", + "pugs-hsregex", + "pugs-HsSyck", + "PUH-Project", + "punkt", + "punycode", + "Pup-Events", + "Pup-Events-Demo", + "Pup-Events-Server", + "puppetresources", + "pure-cdb", + "pure-io", + "pure-priority-queue", + "pure-priority-queue-tests", + "purescript-iso", + "purescript-tsd-gen", + "push-notifications", + "push-notify", + "push-notify-ccs", + "push-notify-general", + "pushbullet", + "pushbullet-types", + "pusher-haskell", + "pusher-ws", + "pushme", + "pushover", + "putlenses", + "puzzle-draw", + "pvd", + "pyffi", + "pyfi", + "q4c12-twofinger", + "qc-oi-testgenerator", + "qd", + "qd-vec", + "qed", + "qhull-simple", + "qif", + "QIO", + "QLearn", + "qlinear", + "qnap-decrypt", + "qr-imager", + "qr-repa", + "qrcode", + "qt", + "QuadEdge", + "QuadTree", + "quandl-api", + "quantfin", + "quantum-arrow", + "quantum-random", + "quarantimer", + "qudb", + "Quelea", + "quenya-verb", + "queryparser", + "queryparser-demo", + "queryparser-hive", + "queryparser-vertica", + "querystring-pickle", + "questioner", + "queuelike", + "quick-schema", + "QuickAnnotate", + "quickbooks", + "quickcheck-poly", + "quickcheck-property-comb", + "quickcheck-property-monad", + "quickcheck-regex", + "quickcheck-relaxng", + "quickcheck-rematch", + "quickcheck-report", + "quickcheck-state-machine-distributed", + "quickcheck-webdriver", + "QuickPlot", + "quickpull", + "quickset", + "Quickson", + "quickson", + "quicktest", + "quickwebapp", + "quipper", + "quipper-algorithms", + "quipper-all", + "quipper-cabal", + "quipper-core", + "quipper-demos", + "quipper-language", + "quipper-libraries", + "quipper-rendering", + "quipper-tools", + "quipper-utils", + "quiver", + "quiver-binary", + "quiver-bytestring", + "quiver-cell", + "quiver-csv", + "quiver-enumerator", + "quiver-groups", + "quiver-http", + "quiver-instances", + "quiver-interleave", + "quiver-sort", + "quokka", + "quoridor-hs", + "qux", + "R-pandoc", + "rad", + "radium", + "radium-formula-parser", + "radix", + "rados-haskell", + "raft", + "rail-compiler-editor", + "rainbow-tests", + "raketka", + "rakhana", + "rakuten", + "rallod", + "raml", + "rand-vars", + "randfile", + "random-access-file", + "random-access-list", + "random-derive", + "random-eff", + "random-effin", + "random-extras", + "random-fu-multivariate", + "random-hypergeometric", + "random-stream", + "random-string", + "Randometer", + "Range", + "range-space", + "rangemin", + "rank-product", + "Ranka", + "rapid-term", + "rasa", + "rasa-example-config", + "rasa-ext-bufs", + "rasa-ext-cmd", + "rasa-ext-cursors", + "rasa-ext-files", + "rasa-ext-logger", + "rasa-ext-slate", + "rasa-ext-status-bar", + "rasa-ext-style", + "rasa-ext-views", + "rasa-ext-vim", + "rascal", + "Rasenschach", + "rating-chgk-info", + "rational-list", + "rawr", + "raz", + "rbr", + "rbst", + "rc", + "rclient", + "rdioh", + "react-flux", + "react-flux-servant", + "react-haskell", + "react-tutorial-haskell-server", + "reaction-logic", + "reactive", + "reactive-bacon", + "reactive-banana-gi-gtk", + "reactive-banana-sdl", + "reactive-banana-sdl2", + "reactive-banana-threepenny", + "reactive-fieldtrip", + "reactive-glut", + "reactive-thread", + "reactor", + "read-ctags", + "read-io", + "readability", + "reader-soup", + "readline-statevar", + "readpyc", + "readshp", + "really-simple-xml-parser", + "reason-export", + "reasonable-lens", + "record", + "record-aeson", + "record-encode", + "record-gl", + "record-preprocessor", + "record-syntax", + "record-wrangler", + "records", + "records-th", + "recursion-schemes-ix", + "recursive-line-count", + "recursors", + "redHandlers", + "redis-hs", + "redis-simple", + "rediscaching-haxl", + "Redmine", + "reduce-equations", + "reedsolomon", + "reenact", + "Ref", + "ref", + "ref-extras", + "ref-mtl", + "refcount", + "Referees", + "references", + "refh", + "refined-http-api-data", + "reflection-extras", + "reflex-animation", + "reflex-backend-wai", + "reflex-basic-host", + "reflex-dom-contrib", + "reflex-dom-fragment-shader-canvas", + "reflex-dom-helpers", + "reflex-dom-svg", + "reflex-dynamic-containers", + "reflex-gloss-scene", + "reflex-jsx", + "reflex-orphans", + "reflex-transformers", + "reform-hamlet", + "reform-hsp", + "reform-lucid", + "reformat", + "refractor", + "refresht", + "refty", + "reg-alloc", + "reg-alloc-graph-color", + "regex-deriv", + "regex-dfa", + "regex-generator", + "regex-genex", + "regex-parsec", + "regex-pcre-text", + "regex-pderiv", + "regex-posix-unittest", + "regex-tdfa-pipes", + "regex-tdfa-quasiquoter", + "regex-tdfa-text", + "regex-tdfa-utf8", + "regex-tre", + "regex-type", + "regex-xmlschema", + "regexchar", + "regexdot", + "regexp-tries", + "regexpr", + "regexpr-symbolic", + "regexqq", + "regional-pointers", + "regions", + "regions-monadsfd", + "regions-monadstf", + "regions-mtl", + "register-machine-typelevel", + "regress", + "regular", + "regular-extras", + "regular-web", + "regular-xmlpickler", + "reheat", + "rehoo", + "rei", + "reified-records", + "reify", + "relacion", + "relational-postgresql8", + "relational-query-postgresql-pure", + "relative-date", + "relevant-time", + "reload", + "remark", + "remarks", + "remote", + "remote-debugger", + "remote-json", + "remote-json-client", + "remote-json-server", + "remote-monad", + "remotion", + "reorderable", + "repa-array", + "repa-bytestring", + "repa-devil", + "repa-flow", + "repa-linear-algebra", + "repa-plugin", + "repa-series", + "repa-stream", + "repa-v4l2", + "repl", + "repl-toolkit", + "RepLib", + "replica", + "replicant", + "ReplicateEffects", + "repo-based-blog", + "repr", + "representable-functors", + "representable-tries", + "reproject", + "req-url-extra", + "request-monad", + "reservoir", + "resin", + "resolve", + "resolve-trivial-conflicts", + "resource-effect", + "resource-embed", + "resource-pool-catchio", + "resource-pool-monad", + "resource-simple", + "respond", + "rest-client", + "rest-core", + "rest-example", + "rest-gen", + "rest-happstack", + "rest-snap", + "rest-stringmap", + "rest-types", + "rest-wai", + "RESTng", + "restricted-workers", + "restyle", + "resumable-exceptions", + "rethinkdb", + "rethinkdb-client-driver", + "rethinkdb-model", + "rethinkdb-wereHamster", + "retryer", + "reverse-geocoding", + "reversi", + "ReviewBoard", + "rewrite", + "rewrite-inspector", + "rewriting", + "rezoom", + "rfc", + "rfc-env", + "rfc-http-client", + "rfc-prelude", + "rfc-psql", + "rfc-redis", + "rfc-servant", + "rhythm-game-tutorial", + "ribosome-root", + "RichConditional", + "riemann", + "riff", + "rigel-viz", + "rings", + "riot", + "ripple", + "ripple-federation", + "risc-v", + "riscv-isa", + "rison", + "Ritt-Wu", + "rivers", + "rivet", + "rivet-migration", + "rivet-simple-deploy", + "RJson", + "rl-satton", + "Rlang-QQ", + "rlglue", + "RLP", + "rlwe-challenges", + "rmonad", + "RMP", + "RNAdesign", + "RNAdraw", + "RNAFold", + "RNAFoldProgs", + "RNAlien", + "RNAwolf", + "robin", + "robot", + "roc-cluster", + "roc-cluster-demo", + "roguestar", + "roguestar-engine", + "roguestar-gl", + "roguestar-glut", + "roku-api", + "rollbar-hs", + "roller", + "RollingDirectory", + "roman-numerals", + "ron-rdt", + "ron-schema", + "ron-storage", + "rope", + "rose-trees", + "rose-trie", + "roshask", + "rosmsg", + "rosmsg-bin", + "rospkg", + "rosso", + "rotating-log", + "rounding", + "roundtrip-aeson", + "roundtrip-xml", + "route-generator", + "route-planning", + "row", + "rowrecord", + "rpc", + "rpc-framework", + "rpf", + "rpm", + "rsagl", + "rsagl-frp", + "rsagl-math", + "rspp", + "rss2irc", + "rstream", + "rtcm", + "rtnetlink", + "rtorrent-state", + "rts-loader", + "rubberband", + "ruby-qq", + "ruff", + "ruin", + "ruler", + "ruler-core", + "runmany", + "runtime-arbitrary", + "rv", + "rws", + "RxHaskell", + "s-expression", + "S3", + "SableCC2Hs", + "safe-access", + "safe-buffer-monad", + "safe-coerce", + "safe-exceptions-checked", + "safe-failure", + "safe-failure-cme", + "safe-freeze", + "safe-globals", + "safe-lazy-io", + "safe-length", + "safe-money-xmlbf", + "safe-plugins", + "safe-printf", + "safecopy-migrate", + "safecopy-store", + "safeint", + "safepath", + "safer-file-handles", + "safer-file-handles-bytestring", + "safer-file-handles-text", + "saferoute", + "sai-shape-syb", + "sakuraio-platform", + "salak-toml", + "salak-yaml", + "Salsa", + "saltine-quickcheck", + "salvia", + "salvia-demo", + "salvia-extras", + "salvia-protocol", + "salvia-sessions", + "salvia-websocket", + "samtools", + "samtools-conduit", + "samtools-enumerator", + "samtools-iteratee", + "sandlib", + "sandman", + "sarasvati", + "sasl", + "sat", + "sat-micro-hs", + "satchmo-backends", + "satchmo-examples", + "satchmo-funsat", + "satchmo-minisat", + "Saturnin", + "savage", + "sax", + "SBench", + "sc2-lowlevel", + "sc2-proto", + "sc2-support", + "sc2hs", + "sc3-rdu", + "scalable-server", + "scaleimage", + "SCalendar", + "scalendar", + "scalp-webhooks", + "scan-metadata", + "scan-vector-machine", + "scgi", + "schedevr", + "schedule-planner", + "schedyield", + "schemas", + "scholdoc", + "scholdoc-citeproc", + "scholdoc-texmath", + "scholdoc-types", + "sci-ratio", + "scidb-hquery", + "SciFlow", + "SciFlow-drmaa", + "scion", + "scion-browser", + "scons2dot", + "scope", + "scope-cairo", + "scottish", + "scotty-binding-play", + "scotty-blaze", + "scotty-cookie", + "scotty-fay", + "scotty-format", + "scotty-hastache", + "scotty-haxl", + "scotty-params-parser", + "scotty-path-normalizer", + "scotty-rest", + "scotty-session", + "scotty-view", + "scp-streams", + "scrabble-bot", + "scrape-changes", + "ScratchFs", + "SCRIPTWriter", + "scrobble", + "scrz", + "Scurry", + "scythe", + "scyther-proof", + "sde-solver", + "sdl2-cairo-image", + "sdl2-compositor", + "sdl2-fps", + "sdl2-sprite", + "seacat", + "seakale", + "seakale-postgresql", + "seakale-tests", + "search", + "sec", + "secd", + "secdh", + "second-transfer", + "secp256k1", + "secp256k1-legacy", + "secret-santa", + "secret-sharing", + "secrm", + "secure-sockets", + "secureUDP", + "sednaDBXML", + "SegmentTree", + "seitz-symbol", + "selectors", + "SelectSequencesFromMSA", + "selenium", + "selenium-server", + "selinux", + "Semantique", + "semdoc", + "semi-iso", + "semialign-extras", + "Semigroup", + "semigroupoid-extras", + "semigroupoids-syntax", + "semigroups-actions", + "semiring", + "semiring-num", + "sendgrid-haskell", + "sensenet", + "sensu-run", + "sentence-jp", + "sentry", + "separated", + "seqaid", + "SeqAlign", + "seqloc", + "seqloc-datafiles", + "sequent-core", + "sequential-index", + "sequor", + "serf", + "serial", + "serialize-instances", + "serokell-util", + "serpentine", + "serv", + "serv-wai", + "servant-aeson-specs", + "servant-auth-cookie", + "servant-auth-hmac", + "servant-auth-token", + "servant-auth-token-acid", + "servant-auth-token-api", + "servant-auth-token-leveldb", + "servant-auth-token-persistent", + "servant-auth-token-rocksdb", + "servant-avro", + "servant-client-namedargs", + "servant-csharp", + "servant-db", + "servant-db-postgresql", + "servant-dhall", + "servant-ede", + "servant-ekg", + "servant-examples", + "servant-generate", + "servant-generic", + "servant-github", + "servant-github-webhook", + "servant-haxl-client", + "servant-http2-client", + "servant-jquery", + "servant-kotlin", + "servant-matrix-param", + "servant-mock", + "servant-namedargs", + "servant-nix", + "servant-pandoc", + "servant-pool", + "servant-postgresql", + "servant-proto-lens", + "servant-purescript", + "servant-pushbullet-client", + "servant-py", + "servant-reason", + "servant-reflex", + "servant-router", + "servant-ruby", + "servant-scotty", + "servant-server-namedargs", + "servant-smsc-ru", + "servant-stache", + "servant-streaming", + "servant-streaming-client", + "servant-streaming-docs", + "servant-streaming-server", + "servant-subscriber", + "servant-swagger-tags", + "servant-waargonaut", + "servant-wasm", + "servant-yaml", + "servant-zeppelin", + "servant-zeppelin-client", + "servant-zeppelin-server", + "servant-zeppelin-swagger", + "services", + "serviette", + "ses-html-snaplet", + "SessionLogger", + "sessions", + "sessiontypes", + "sessiontypes-distributed", + "Set", + "set-of", + "setdown", + "setgame", + "setoid", + "setters", + "sext", + "SFML", + "sfml-audio", + "SFML-control", + "sfmt", + "SFont", + "SG", + "sgd", + "SGdemo", + "SGplus", + "sgrep", + "sh2md", + "sha-streams", + "shade", + "shadower", + "shady-gen", + "shady-graphics", + "shake-ats", + "shake-bindist", + "shake-cabal-build", + "shake-dhall", + "shake-extras", + "shake-language-c", + "shake-minify", + "shake-minify-css", + "shake-pack", + "shake-path", + "shake-persist", + "shaker", + "shakespeare-babel", + "shakespeare-sass", + "shapefile", + "shapely-data", + "shapes", + "shapes-demo", + "shared-buffer", + "shared-fields", + "she", + "shelduck", + "shell-pipe", + "Shellac", + "Shellac-compatline", + "Shellac-editline", + "Shellac-haskeline", + "Shellac-readline", + "shellish", + "shellmate", + "shellmate-extras", + "shentong", + "shimmer", + "shine-examples", + "shine-varying", + "shivers-cfg", + "shoap", + "shopify", + "shorten-strings", + "ShortestPathProblems", + "show-prettyprint", + "show-type", + "showdown", + "Shpadoinkle-debug", + "shpider", + "shuffle", + "shwifty", + "si-clock", + "sibe", + "sifflet", + "sifflet-lib", + "sigma-ij", + "signals", + "signature", + "silvi", + "simd", + "simgi", + "simple-actors", + "simple-atom", + "simple-bluetooth", + "simple-c-value", + "simple-conduit", + "simple-config", + "simple-css", + "simple-download", + "simple-effects", + "simple-eval", + "simple-firewire", + "simple-form", + "simple-genetic-algorithm", + "simple-index", + "simple-log", + "simple-log-syslog", + "simple-logging", + "simple-money", + "simple-neural-networks", + "simple-nix", + "simple-pascal", + "simple-pipe", + "simple-rope", + "simple-server", + "simple-stacked-vm", + "simple-tabular", + "simple-tar", + "simple-zipper", + "simpleconfig", + "SimpleGL", + "SimpleH", + "simpleirc", + "simpleirc-lens", + "SimpleLog", + "simplenote", + "simpleprelude", + "SimpleServer", + "simplesmtpclient", + "simplessh", + "simplest-sqlite", + "simplex", + "simplistic-generics", + "simseq", + "singlethongs", + "singleton-dict", + "singleton-typelits", + "singnal", + "singular-factory", + "sink", + "siren-json", + "sirkel", + "sixfiguregroup", + "sixty-five-oh-two", + "sized-grid", + "sized-types", + "sized-vector", + "sjsp", + "skeletal-set", + "skeleton", + "skeletons", + "skell", + "skemmtun", + "skulk", + "skylark-client", + "skype4hs", + "slack", + "slack-api", + "slack-notify-haskell", + "slack-progressbar", + "slack-verify", + "slate", + "sliceofpy", + "slidemews", + "Slides", + "slim", + "slip32", + "sloane", + "slot-lambda", + "sloth", + "slug", + "smallarray", + "smallcaps", + "smallcheck-kind-generics", + "smallcheck-laws", + "smallcheck-lens", + "smallpt-hs", + "smallstring", + "smap", + "smartcheck", + "smartconstructor", + "smartGroup", + "smartword", + "sme", + "smerdyakov", + "smiles", + "smith-cli", + "smith-client", + "Smooth", + "smoothie", + "smsaero", + "smt", + "smt-lib", + "SmtLib", + "smtlib2-debug", + "smtlib2-pipe", + "smtlib2-quickcheck", + "smtlib2-timing", + "smtp-mail-ng", + "smtp2mta", + "SMTPClient", + "smtps-gmail", + "smuggler", + "snake", + "snake-game", + "snap-accept", + "snap-auth-cli", + "snap-blaze-clay", + "snap-configuration-utilities", + "snap-elm", + "snap-error-collector", + "snap-language", + "snap-predicates", + "snap-routes", + "snap-testing", + "snap-utils", + "snap-web-routes", + "snaplet-acid-state", + "snaplet-amqp", + "snaplet-auth-acid", + "snaplet-css-min", + "snaplet-environments", + "snaplet-fay", + "snaplet-hasql", + "snaplet-haxl", + "snaplet-hdbc", + "snaplet-hslogger", + "snaplet-influxdb", + "snaplet-lss", + "snaplet-mandrill", + "snaplet-mongoDB", + "snaplet-mongodb-minimalistic", + "snaplet-mysql-simple", + "snaplet-oauth", + "snaplet-postgresql-simple", + "snaplet-postmark", + "snaplet-recaptcha", + "snaplet-redson", + "snaplet-rest", + "snaplet-riak", + "snaplet-sass", + "snaplet-scoped-session", + "snaplet-sedna", + "snaplet-ses-html", + "snaplet-sqlite-simple", + "snaplet-sqlite-simple-jwt-auth", + "snaplet-stripe", + "snaplet-tasks", + "snaplet-typed-sessions", + "snaplet-wordpress", + "snappy-conduit", + "snappy-iteratee", + "sndfile-enumerators", + "sneakyterm", + "sneathlane-haste", + "SNet", + "snipcheck", + "snm", + "snmp", + "snorkels", + "snow-white", + "snowflake-core", + "snowflake-server", + "snowtify", + "Snusmumrik", + "SoccerFun", + "SoccerFunGL", + "sock2stream", + "socket-activation", + "socket-sctp", + "socketed", + "socketio", + "socketson", + "sodium", + "soegtk", + "softfloat-hs", + "solar", + "solga", + "solga-swagger", + "solr", + "sonic-visualiser", + "Sonnex", + "SoOSiM", + "sorted", + "sorting", + "sorty", + "source-code-server", + "SourceGraph", + "sousit", + "soyuz", + "spacepart", + "SpacePrivateers", + "spanout", + "sparrow", + "spars", + "sparse", + "sparse-lin-alg", + "sparsebit", + "sparsecheck", + "spata", + "spatial-math", + "special-functors", + "special-keys", + "specialize-th", + "spectral-clustering", + "speculation", + "speculation-transformers", + "speechmatics", + "spelling-suggest", + "sphero", + "sphinx-cli", + "sphinxesc", + "spice", + "SpinCounter", + "spiros", + "splay", + "splines", + "split-morphism", + "splitter", + "splot", + "Spock-auth", + "spoonutil", + "spoty", + "Sprig", + "sprinkles", + "spritz", + "sproxy", + "sproxy-web", + "sproxy2", + "spsa", + "spy", + "sql-simple", + "sql-simple-mysql", + "sql-simple-pool", + "sql-simple-postgresql", + "sql-simple-sqlite", + "sqlcipher", + "sqlcli", + "sqlcli-odbc", + "sqlite-simple-errors", + "sqlite-simple-typed", + "sqlvalue-list", + "sqsd-local", + "squeeze", + "srcinst", + "sscan", + "sscgi", + "ssh", + "ssh-tunnel", + "sshd-lint", + "sshtun", + "sssp", + "sstable", + "SSTG", + "stable-maps", + "stable-tree", + "Stack", + "stack-bump", + "stack-fix", + "stack-lib", + "stack-network", + "stack-prism", + "stack-run", + "stack-run-auto", + "stack-tag", + "stack-type", + "stack-wrapper", + "stack2nix", + "stackage", + "stackage-build-plan", + "stackage-cabal", + "stackage-cli", + "stackage-curator", + "stackage-metadata", + "stackage-query", + "stackage-sandbox", + "stackage-setup", + "stackage-to-hackage", + "stackage-types", + "stackage-upload", + "stackage2nix", + "standalone-derive-topdown", + "standalone-haddock", + "starling", + "starrover2", + "starter", + "stash", + "Stasis", + "state", + "state-bag", + "state-record", + "stateful-mtl", + "static", + "static-closure", + "static-resources", + "static-tensor", + "statistics-dirichlet", + "statistics-fusion", + "statistics-hypergeometric-genvar", + "stats", + "statsd", + "statsd-client", + "statsdi", + "statvfs", + "stb-image-redux", + "stdata", + "stdf", + "stdio", + "steambrowser", + "stego-uuid", + "stemmer", + "stemmer-german", + "stepwise", + "stern-brocot", + "stgi", + "STL", + "STLinkUSB", + "stm-chunked-queues", + "stm-firehose", + "stm-lifted", + "stm-promise", + "stm-stats", + "STM32-Zombie", + "stmcontrol", + "stochastic", + "StockholmAlignment", + "Stomp", + "storable", + "storablevector-streamfusion", + "stp", + "str", + "Strafunski-ATermLib", + "Strafunski-Sdf2Haskell", + "Strafunski-StrategyLib", + "StrappedTemplates", + "stratum-tool", + "stratux", + "stratux-demo", + "stratux-http", + "stratux-websockets", + "stream", + "stream-fusion", + "stream-monad", + "streamdeck", + "streamed", + "streaming-base64", + "streaming-brotli", + "streaming-concurrency", + "streaming-events", + "streaming-fft", + "streaming-lzma", + "streaming-osm", + "streaming-png", + "streaming-process", + "streaming-sort", + "streamly-binary", + "streamly-cassava", + "strelka", + "strelka-core", + "strelka-wai", + "strict-data", + "strict-ghc-plugin", + "strict-io", + "strict-writer", + "StrictBench", + "strictly", + "string-isos", + "string-quote", + "string-typelits", + "stringlike", + "stringtable-atom", + "stripe", + "stripe-core", + "stripe-haskell", + "stripe-http-client", + "stripe-http-streams", + "stripe-tests", + "strongswan-sql", + "structural-induction", + "structural-traversal", + "structured-haskell-mode", + "structured-mongoDB", + "structures", + "stt", + "stunclient", + "stunts", + "stutter", + "stylish-cabal", + "stylized", + "styx", + "sub-state", + "subhask", + "subleq-toolchain", + "subsample", + "substring-parser", + "subwordgraph", + "success", + "suffix-array", + "suffixarray", + "SuffixStructures", + "sugarhaskell", + "sum-type-boilerplate", + "summoner", + "summoner-tui", + "sump", + "sunlight", + "sunroof-compiler", + "sunroof-examples", + "sunroof-server", + "super-user-spark", + "superbubbles", + "supercollider-ht", + "supercollider-midi", + "superconstraints", + "superevent", + "supermonad", + "supero", + "supervisor", + "supplemented", + "surjective", + "sv", + "sv-cassava", + "sv-core", + "sv-svfactor", + "SVD2HS", + "svfactor", + "svg-builder-fork", + "SVG2Q", + "svg2q", + "svgutils", + "svm-light-utils", + "svm-simple", + "swagger", + "swagger-petstore", + "swagger-test", + "swapper", + "swearjure", + "swf", + "swift-lda", + "syb-extras", + "syb-with-class-instances-text", + "SybWidget", + "syfco", + "sylvia", + "symantic", + "symantic-atom", + "symantic-cli", + "symantic-http-client", + "symantic-http-demo", + "symantic-http-test", + "symantic-lib", + "symantic-xml", + "symbiote", + "symbolic-link", + "sync", + "sync-mht", + "syncthing-hs", + "syntax", + "syntax-attoparsec", + "syntax-example", + "syntax-example-json", + "syntax-pretty", + "syntax-printer", + "syntax-trees", + "syntax-trees-fork-bairyn", + "SyntaxMacros", + "syntaxnet-haskell", + "synthesizer", + "synthesizer-filter", + "sys-process", + "Sysmon", + "system-canonicalpath", + "system-command", + "system-extra", + "system-inotify", + "system-lifted", + "system-locale", + "system-random-effect", + "system-test", + "systemstats", + "t-regex", + "t3-client", + "t3-server", + "ta", + "table", + "table-tennis", + "Tables", + "tables", + "tablestorage", + "Tablify", + "tabloid", + "tabs", + "tag-bits", + "tag-stream", + "tagged-exception-core", + "tagged-list", + "tagged-th", + "tagged-timers", + "taglib-api", + "tagshare", + "tagsoup-ht", + "tagsoup-megaparsec", + "tagsoup-navigate", + "tagsoup-selection", + "Tahin", + "tai", + "tai64", + "Tainted", + "tak", + "tak-ai", + "takahashi", + "Takusen", + "takusen-oracle", + "tal", + "tamarin-prover", + "tamarin-prover-term", + "tamarin-prover-theory", + "tamarin-prover-utils", + "Tape", + "tapioca", + "tar-bytestring", + "target", + "task", + "task-distribution", + "TaskMonad", + "tasty-auto", + "tasty-bdd", + "tasty-groundhog-converters", + "tasty-hedgehog-coverage", + "tasty-integrate", + "tasty-jenkins-xml", + "tasty-laws", + "tasty-lens", + "tasty-stats", + "tasty-test-vector", + "tateti-tateti", + "TaxonomyTools", + "TBC", + "TBit", + "tbox", + "tcache-AWS", + "tccli", + "tcod-haskell", + "tcp", + "tcp-streams", + "tcp-streams-openssl", + "tdd-util", + "tdigest-Chart", + "tdoc", + "tds", + "TeaHS", + "teams", + "tehepero", + "telega", + "telegram", + "telegram-bot", + "telegram-raw-api", + "telegram-types", + "teleport", + "teleshell", + "tellbot", + "tempered", + "template-default", + "template-haskell-util", + "template-hsml", + "template-toolkit", + "template-yj", + "templateify", + "templatepg", + "tempo", + "tempodb", + "temporal-csound", + "tempus", + "tensor", + "tensor-safe", + "tensorflow", + "tensorflow-core-ops", + "tensorflow-logging", + "tensorflow-ops", + "termbox-bindings", + "terminal-text", + "termination-combinators", + "termplot", + "terntup", + "terrahs", + "tersmu", + "test-fixture", + "test-framework-doctest", + "test-framework-golden", + "test-framework-quickcheck", + "test-framework-skip", + "test-framework-testing-feat", + "test-pkg", + "test-sandbox-compose", + "test-shouldbe", + "test-simple", + "testbench", + "testCom", + "testloop", + "testpack", + "testpattern", + "testPkg", + "testrunner", + "tex-join-bib", + "tex2txt", + "texbuilder", + "text-all", + "text-and-plots", + "text-containers", + "text-format-heavy", + "text-generic-pretty", + "text-icu-normalized", + "text-icu-translit", + "text-json-qq", + "text-lens", + "text-locale-encoding", + "text-markup", + "text-normal", + "text-offset", + "text-plus", + "text-position", + "text-register-machine", + "text-render", + "text-stream-decode", + "text-trie", + "text-utf7", + "text-utf8", + "text-xml-generic", + "text-xml-qq", + "text-zipper-monad", + "textmatetags", + "textocat-api", + "textual", + "tfp-th", + "tftp", + "th-alpha", + "th-build", + "th-context", + "th-dict-discovery", + "th-fold", + "th-format", + "th-inline-io-action", + "th-instance-reification", + "th-instances", + "th-kinds", + "th-kinds-fork", + "th-pprint", + "th-sccs", + "th-tc", + "th-to-exp", + "th-traced", + "th-typegraph", + "THEff", + "thentos-cookie-session", + "Theora", + "theoremquest", + "theoremquest-client", + "thih", + "thimk", + "Thingie", + "thorn", + "threadmanager", + "threepenny-editors", + "threepenny-gui-contextmenu", + "threepenny-gui-flexbox", + "Thrift", + "thrift", + "throttle-io-stream", + "throttled-io-loop", + "throwable-exceptions", + "thumbnail", + "thumbnail-plus", + "thumbnail-polish", + "tianbar", + "tic-tac-toe", + "tickle", + "TicTacToe", + "tictactoe3d", + "tidal-serial", + "tidal-vis", + "tie-knot", + "tiempo", + "tiger", + "TigerHash", + "tightrope", + "tighttp", + "timberc", + "time-extras", + "time-exts", + "time-http", + "time-io-access", + "time-quote", + "time-recurrence", + "time-series", + "time-series-lib", + "time-w3c", + "time-warp", + "timecalc", + "timemap", + "timeout", + "timeout-with-results", + "timeparsers", + "TimePiece", + "timeprint", + "timeseries", + "timestamp", + "timeutils", + "timezone-unix", + "tintin", + "tiny-scheduler", + "TinyLaunchbury", + "tinylog", + "tinyMesh", + "tinytemplate", + "TinyURL", + "tinyXml", + "tip-haskell-frontend", + "tip-lib", + "tiphys", + "titan", + "titan-debug-yampa", + "titan-record-yampa", + "Titim", + "tkhs", + "tkyprof", + "tls-debug", + "tls-extra", + "tn", + "to-haskell", + "to-string-class", + "to-string-instances", + "toboggan", + "todos", + "tofromxml", + "token-limiter", + "token-search", + "tokenify", + "tokenizer-streaming", + "toktok", + "tokyotyrant-haskell", + "tomlcheck", + "toodles", + "Top", + "top", + "topkata", + "torch", + "TORCS", + "total-map", + "total-maps", + "touched", + "Tournament", + "toxcore", + "toxiproxy-haskell", + "tpar", + "tpb", + "trace", + "trace-call", + "trace-function-call", + "traced", + "tracked-files", + "tracker", + "traction", + "tracy", + "traildb", + "trajectory", + "trans-fx-core", + "trans-fx-data", + "trans-fx-io", + "transactional-events", + "transfer-db", + "transformations", + "TransformeR", + "transformers-bifunctors", + "transformers-compose", + "transformers-continue", + "transformers-convert", + "transformers-fix", + "transformers-lift", + "transformers-runnable", + "transformers-supply", + "TransformersStepByStep", + "transient", + "transient-universe", + "transient-universe-tls", + "translatable-intset", + "translate", + "translate-cli", + "trasa", + "trasa-client", + "trasa-extra", + "trasa-server", + "trasa-th", + "traversal-template", + "travis", + "travis-meta-yaml", + "trawl", + "traypoweroff", + "tree-render-text", + "TreeCounter", + "treemap", + "treemap-html", + "treemap-html-tools", + "treersec", + "Treiber", + "trek-app", + "trek-db", + "tremulous-query", + "TrendGraph", + "trhsx", + "triangulation", + "TrieMap", + "tries", + "trigger", + "trim", + "trimpolya", + "tripLL", + "trivia", + "tropical", + "tropical-geometry", + "trurl", + "tsession", + "tsession-happstack", + "tsp-viz", + "tsparse", + "tsuntsun", + "tsvsql", + "tsweb", + "ttask", + "tttool", + "tubes", + "tuntap-simple", + "tup-functor", + "tuple-gen", + "tuple-hlist", + "tuple-lenses", + "tuple-morph", + "tuple-ops", + "tupleinstances", + "turing-machines", + "turing-music", + "turingMachine", + "turtle-options", + "TV", + "tweak", + "twentefp-eventloop-graphics", + "twentefp-eventloop-trees", + "twentefp-graphs", + "twentefp-rosetree", + "twentefp-trees", + "twentefp-websockets", + "twfy-api-client", + "twhs", + "twidge", + "twilight-stm", + "twilio", + "twill", + "twiml", + "twine", + "twisty", + "twitch", + "twitter", + "twitter-enumerator", + "twitter-feed", + "tx", + "txt", + "txtblk", + "TYB", + "tyfam-witnesses", + "typalyze", + "type-assertions", + "type-cache", + "type-cereal", + "type-combinators", + "type-combinators-quote", + "type-combinators-singletons", + "type-digits", + "type-eq", + "type-indexed-queues", + "type-int", + "type-interpreter", + "type-level-bst", + "type-level-natural-number-induction", + "type-level-natural-number-operations", + "type-list", + "type-ord", + "type-ord-spine-cereal", + "type-prelude", + "type-sets", + "type-settheory", + "type-spine", + "type-structure", + "type-sub-th", + "type-tree", + "typeable-th", + "TypeClass", + "typed-admin", + "typed-digits", + "typed-encoding-encoding", + "typed-streams", + "typed-wire", + "typedflow", + "typedquery", + "typehash", + "TypeIlluminator", + "typelevel", + "typelevel-tensor", + "typeparams", + "types-compat", + "typescript-docs", + "tyro", + "u2f", + "uacpid", + "uAgda", + "uber", + "uberlast", + "ucam-webauth", + "ucam-webauth-types", + "ucd", + "uconv", + "udbus", + "udbus-model", + "udp-conduit", + "udp-streaming", + "uhc-light", + "uhc-util", + "uhexdump", + "uhttpc", + "UMM", + "unagi-bloomfilter", + "unamb-custom", + "unbound", + "unbounded-delays-units", + "unboxed", + "unboxed-containers", + "unboxed-references", + "unbreak", + "unfix-binders", + "unfoldable-restricted", + "uni-htk", + "uni-posixutil", + "uni-reactor", + "uni-uDrawGraph", + "unicode-normalization", + "unicode-prelude", + "unicode-symbols", + "unicoder", + "uniform-io", + "union-map", + "uniprot-kb", + "uniqueid", + "uniquely-represented-sets", + "uniqueness-periods", + "uniqueness-periods-general", + "units-attoparsec", + "unittyped", + "unitym", + "unitym-servant", + "unitym-yesod", + "universal", + "universal-binary", + "universe-th", + "unix-fcntl", + "unix-handle", + "unix-memory", + "unix-process-conduit", + "unlifted-list", + "unm-hip", + "unordered-containers-rematch", + "unordered-graphs", + "unordered-intmap", + "unpack-funcs", + "unpacked-containers", + "unpacked-either", + "unpacked-maybe", + "unpacked-these", + "unpacked-validation", + "unparse-attoparsec", + "unroll-ghc-plugin", + "unsafely", + "unscramble", + "unsequential", + "unused", + "update-monad", + "Updater", + "uploadcare", + "upskirt", + "urbit-hob", + "ureader", + "urembed", + "uri", + "uri-conduit", + "uri-encoder", + "uri-enumerator", + "uri-enumerator-file", + "uri-parse", + "uri-template", + "uri-templater", + "url-decoders", + "url-generic", + "URLb", + "urlcheck", + "urldecode", + "UrlDisp", + "urldisp-happstack", + "URLT", + "urn", + "urn-random", + "urxml", + "usb", + "usb-enumerator", + "usb-hid", + "usb-id-database", + "usb-iteratee", + "usb-safe", + "useragents", + "users-mysql-haskell", + "users-persistent", + "users-postgresql-simple", + "utc", + "utf", + "utf8-conversions", + "utf8-prelude", + "utf8-validator", + "UTFTConverter", + "util-exception", + "util-logict", + "util-plus", + "util-primitive", + "util-primitive-control", + "util-universe", + "uu-cco", + "uu-cco-examples", + "uu-cco-hut-parsing", + "uu-cco-uu-parsinglib", + "uu-options", + "uuagc-bootstrap", + "uuid-aeson", + "uvector", + "uvector-algorithms", + "uxadt", + "v4l2", + "v4l2-examples", + "vabal", + "vabal-lib", + "vacuum", + "vacuum-cairo", + "vacuum-graphviz", + "vacuum-opengl", + "vacuum-ubigraph", + "valid", + "valid-names", + "validated-types", + "Validation", + "validations", + "validators", + "value-supply", + "vampire", + "var", + "varan", + "variable-precision", + "variables", + "variation", + "vault-tool", + "vault-tool-server", + "vault-trans", + "vaultaire-common", + "vcache", + "vcache-trie", + "vcard", + "vcatt", + "vcf", + "vcsgui", + "vcswrapper", + "Vec-Boolean", + "Vec-OpenGLRaw", + "vect-floating", + "vect-floating-accelerate", + "vect-opengl", + "vector-bytestring", + "vector-clock", + "vector-conduit", + "vector-doublezip", + "vector-endian", + "vector-functorlazy", + "vector-heterogenous", + "vector-instances-collections", + "vector-random", + "vector-read-instances", + "vector-shuffling", + "vector-space-map", + "vector-space-opengl", + "vector-space-points", + "vector-static", + "vector-text", + "vectortiles", + "Verba", + "verbalexpressions", + "verdict", + "verdict-json", + "verify", + "verilog", + "versioning-servant", + "vflow-types", + "vformat-aeson", + "vfr-waypoints", + "vhd", + "vhdl", + "vicinity", + "ViennaRNA-extras", + "viewprof", + "views", + "vigilance", + "Villefort", + "vimus", + "vintage-basic", + "vinyl-generics", + "vinyl-json", + "vinyl-named-sugar", + "vinyl-operational", + "vinyl-plus", + "vinyl-utils", + "vinyl-vectors", + "virthualenv", + "visibility", + "vision", + "visual-graphrewrite", + "visual-prof", + "vitrea", + "vk-aws-route53", + "VKHS", + "voicebase", + "vorbiscomment", + "vowpal-utils", + "voyeur", + "vpq", + "VRML", + "vt-utils", + "vte", + "vtegtk3", + "vty-examples", + "vty-menu", + "vty-ui", + "vty-ui-extras", + "wacom-daemon", + "waddle", + "wahsp", + "wai-devel", + "wai-dispatch", + "wai-git-http", + "wai-graceful", + "wai-handler-devel", + "wai-handler-scgi", + "wai-handler-snap", + "wai-hastache", + "wai-hmac-auth", + "wai-lens", + "wai-lite", + "wai-logger-buffered", + "wai-logger-prefork", + "wai-middleware-brotli", + "wai-middleware-cache", + "wai-middleware-cache-redis", + "wai-middleware-catch", + "wai-middleware-consul", + "wai-middleware-crowd", + "wai-middleware-etag", + "wai-middleware-headers", + "wai-middleware-hmac-client", + "wai-middleware-preprocessor", + "wai-middleware-rollbar", + "wai-middleware-route", + "wai-middleware-static-caching", + "wai-middleware-travisci", + "wai-middleware-verbs", + "wai-request-spec", + "wai-responsible", + "wai-route", + "wai-router", + "wai-routes", + "wai-routing", + "wai-session-alt", + "wai-session-mysql", + "wai-session-tokyocabinet", + "wai-static-cache", + "wai-thrift", + "wai-throttler", + "waitfree", + "waitra", + "waldo", + "wallpaper", + "warp-dynamic", + "warp-grpc", + "warp-static", + "warp-tls-uid", + "warped", + "WashNGo", + "watcher", + "watchit", + "WaveFront", + "wavefront-obj", + "wavesurfer", + "wavy", + "weak-bag", + "Weather", + "weather-api", + "web-css", + "web-encodings", + "web-mongrel2", + "web-output", + "web-page", + "web-push", + "web-routes-quasi", + "web-routes-regular", + "web-routes-transformers", + "web-routing", + "webapi", + "webapp", + "WebBits", + "WebBits-Html", + "WebBits-multiplate", + "webcloud", + "WebCont", + "webcrank", + "webcrank-dispatch", + "webcrank-wai", + "webdriver-angular", + "webdriver-snoy", + "WeberLogic", + "webkit-javascriptcore", + "webkitgtk3", + "Webrexp", + "webserver", + "webshow", + "websockets-rpc", + "webwire", + "WEditor", + "WEditorBrick", + "WEditorHyphen", + "weekdaze", + "weighted", + "weighted-regexp", + "welshy", + "werewolf", + "werewolf-slack", + "Wheb", + "wheb-mongo", + "wheb-redis", + "wheb-strapped", + "while-lang-parser", + "whim", + "whiskers", + "whitespace", + "whois", + "wholepixels", + "why3", + "WikimediaParser", + "wikipedia4epub", + "windowslive", + "winerror", + "winio", + "wire-streams", + "Wired", + "wires", + "wiring", + "witty", + "wkt", + "wl-pprint-ansiterm", + "wl-pprint-console", + "wl-pprint-extras", + "wl-pprint-terminfo", + "WL500gPControl", + "WL500gPLib", + "wlc-hs", + "WMSigner", + "wobsurv", + "woe", + "woffex", + "wol", + "word", + "word2vec-model", + "WordAlignment", + "Wordlint", + "WordNet", + "WordNet-ghc74", + "wordsearch", + "work-time", + "workdays", + "workflow-extra", + "workflow-osx", + "workflow-pure", + "workflow-types", + "workflow-windows", + "wp-archivebot", + "wrecker", + "wrecker-ui", + "wreq-patchable", + "wreq-sb", + "wright", + "write-buffer-core", + "write-buffer-stm", + "writer-cps-exceptions", + "writer-cps-full", + "writer-cps-lens", + "writer-cps-monads-tf", + "writer-cps-morph", + "wsdl", + "wsedit", + "wss-client", + "wtk", + "wtk-gtk", + "wu-wei", + "wumpus-basic", + "wumpus-core", + "wumpus-drawing", + "wumpus-microprint", + "wumpus-tree", + "WURFL", + "wx", + "wxAsteroids", + "wxc", + "wxcore", + "WXDiffCtrl", + "wxdirect", + "wxFruit", + "WxGeneric", + "wxhnotepad", + "wxSimpleCanvas", + "wxturtle", + "wybor", + "wyvern", + "X", + "x-dsp", + "X11-extras", + "X11-rm", + "X11-xdamage", + "X11-xfixes", + "xchat-plugin", + "xcp", + "xdcc", + "Xec", + "xenstore", + "xfconf", + "xformat", + "xgboost-haskell", + "xhaskell-library", + "xhb-atom-cache", + "xhb-ewmh", + "xine", + "xing-api", + "xkbcommon", + "xkcd", + "xleb", + "xlsior", + "xlsx-tabular", + "xlsx-templater", + "XML", + "xml-catalog", + "xml-conduit-decode", + "xml-conduit-parse", + "xml-enumerator", + "xml-enumerator-combinators", + "xml-html-conduit-lens", + "xml-isogen", + "xml-monad", + "xml-parsec", + "xml-pipe", + "xml-prettify", + "xml-push", + "xml-query-xml-conduit", + "xml-query-xml-types", + "xml-to-json", + "xml-tydom-conduit", + "xml-tydom-core", + "xml2json", + "xml2x", + "XmlHtmlWriter", + "xmltv", + "XMMS", + "xmms2-client", + "xmms2-client-glib", + "xmonad-bluetilebranch", + "xmonad-contrib-bluetilebranch", + "xmonad-contrib-gpl", + "xmonad-entryhelper", + "xmonad-eval", + "xmonad-screenshot", + "xmonad-vanessa", + "xmonad-windownames", + "xmpipe", + "XMPP", + "xorshift-plus", + "Xorshift128Plus", + "xournal-builder", + "xournal-convert", + "xournal-parser", + "xournal-render", + "xournal-types", + "xsact", + "xsha1", + "xslt", + "xtc", + "y0l0bot", + "yabi-muno", + "Yablog", + "yackage", + "YACPong", + "yahoo-finance-api", + "yahoo-finance-conduit", + "yahoo-web-search", + "yajl", + "yajl-enumerator", + "yak", + "yall", + "yam", + "yam-app", + "yam-config", + "yam-datasource", + "yam-job", + "yam-logger", + "yam-redis", + "yam-servant", + "yam-transaction", + "yam-transaction-odbc", + "yam-transaction-postgresql", + "yam-web", + "yamemo", + "yaml-pretty-extras", + "yaml-rpc", + "yaml-rpc-scotty", + "yaml-rpc-snap", + "yaml-union", + "yamlkeysdiff", + "YamlReference", + "yampa-glfw", + "yampa-glut", + "yampa-sdl2", + "yampa2048", + "YampaSynth", + "yandex-translate", + "yaop", + "yarr", + "yarr-image-io", + "yate", + "yavie", + "ycextra", + "yeller", + "yeshql", + "yeshql-hdbc", + "yeshql-postgresql-simple", + "yesod-alerts", + "yesod-angular", + "yesod-angular-ui", + "yesod-articles", + "yesod-auth-account", + "yesod-auth-account-fork", + "yesod-auth-bcrypt", + "yesod-auth-bcryptdb", + "yesod-auth-deskcom", + "yesod-auth-fb", + "yesod-auth-hmac-keccak", + "yesod-auth-kerberos", + "yesod-auth-ldap", + "yesod-auth-ldap-mediocre", + "yesod-auth-ldap-native", + "yesod-auth-nopassword", + "yesod-auth-pam", + "yesod-auth-smbclient", + "yesod-auth-zendesk", + "yesod-bootstrap", + "yesod-content-pdf", + "yesod-continuations", + "yesod-crud", + "yesod-crud-persist", + "yesod-datatables", + "yesod-dsl", + "yesod-examples", + "yesod-fast-devel", + "yesod-fay", + "yesod-form-json", + "yesod-form-richtext", + "yesod-ip", + "yesod-job-queue", + "yesod-lucid", + "yesod-mangopay", + "yesod-paginate", + "yesod-pagination", + "yesod-paypal-rest", + "yesod-platform", + "yesod-pnotify", + "yesod-pure", + "yesod-purescript", + "yesod-raml", + "yesod-raml-bin", + "yesod-raml-docs", + "yesod-raml-mock", + "yesod-recaptcha", + "yesod-routes", + "yesod-routes-typescript", + "yesod-rst", + "yesod-s3", + "yesod-sass", + "yesod-session-redis", + "yesod-static-angular", + "yesod-static-remote", + "yesod-test-json", + "yesod-text-markdown", + "yesod-tls", + "yesod-transloadit", + "yesod-vend", + "yesod-worker", + "YFrob", + "yggdrasil", + "yhccore", + "yhseq", + "yi-contrib", + "yi-monokai", + "yi-solarized", + "yi-spolsky", + "yices", + "yjftp", + "yjftp-libs", + "Yogurt", + "Yogurt-Standalone", + "yoko", + "york-lava", + "yql", + "yu-core", + "yu-launch", + "yu-tool", + "yuiGrid", + "yuuko", + "yxdb-utils", + "z3-encoding", + "z85", + "zabt", + "zampolit", + "zasni-gerna", + "ZEBEDDE", + "zendesk-api", + "zeno", + "zero", + "zeromq-haskell", + "zeromq3-conduit", + "zeromq3-haskell", + "zeromq4-clone-pattern", + "zeromq4-conduit", + "zeroth", + "ZFS", + "zifter", + "zifter-cabal", + "zifter-git", + "zifter-google-java-format", + "zifter-hindent", + "zifter-hlint", + "zifter-stack", + "zigbee-znet25", + "zipedit", + "ZipFold", + "zipkin", + "zipper", + "zipper-extra", + "zippo", + "ziptastic-client", + "ziptastic-core", + "zlib-enum", + "zlib-lens", + "zm", + "ZMachine", + "zmcat", + "zmidi-score", + "zmqat", + "zoneinfo", + "zoom", + "zoom-cache", + "zoom-cache-pcm", + "zoom-cache-sndfile", + "zoom-refs", + "zsdd", + "zsh-battery", + "zsyntax", + "zuramaru", + "Zwaluw", + "zxcvbn-dvorak", + "# keep-sorted end" + ] +} diff --git a/pkgs/development/haskell-modules/configuration-hackage2nix/transitive-broken.yaml b/pkgs/development/haskell-modules/configuration-hackage2nix/transitive-broken.yaml index be10640b36f4c..1868f3e3438f0 100644 --- a/pkgs/development/haskell-modules/configuration-hackage2nix/transitive-broken.yaml +++ b/pkgs/development/haskell-modules/configuration-hackage2nix/transitive-broken.yaml @@ -4,515 +4,71 @@ # depend on a dependency marked as broken. dont-distribute-packages: - - 4Blocks - - a50 - - abcBridge - - AbortT-monadstf - - AbortT-mtl - - ac-machine-conduit - - accelerate-arithmetic - - accelerate-fourier - - accelerate-llvm - - accelerate-llvm-native - - accelerate-typelits - - access-token-provider - - acme-php - - acme-safe - - activehs - - actor - - adhoc-network - - adict - - adp-multi-monadiccp - - ADPfusion - - ADPfusionForest - - ADPfusionSet - - Advgame - - Advise-me - - AERN-Net - - AERN-Real - - AERN-Real-Double - - AERN-Real-Interval - - AERN-RnToRm - - AERN-RnToRm-Plot - - aeson-native - - affine - - afis - - afv - - agda-server - - agda-snippets-hakyll - - agentx - - aip - airgql - - alg - - algebra-checkers - - algebra-driven-design - - algebra-sql - - algolia - - AlgoRhythm - algorithmic-composition-additional - algorithmic-composition-basic - algorithmic-composition-complex - algorithmic-composition-frequency-shift - algorithmic-composition-overtones - - AlignmentAlgorithms - - alloy-proxy-fd - - alms - - alpha - - alsa-gui - - alsa-pcm-tests - - alsa-seq-tests - - alto - - amazon-emailer-client-snap - - amby - - ampersand - - analyze-client - - anansi-hscolour - - anatomy - - AndroidViewHierarchyImporter - - animate-example - - animate-frames - - animate-preview - - animate-sdl2 - annah - - Annotations - - anonymous-sums-tests - - antagonist - - anticiv - - antiope-contract - - antiope-core - - antiope-dynamodb - - antiope-s3 - - antiope-shell - - antlrc - - apelsin - - api-rpc-accumulate - - api-rpc-pegnet - - api-yoti - - apiary - - apiary-authenticate - - apiary-clientsession - - apiary-cookie - - apiary-eventsource - - apiary-helics - - apiary-http-client - - apiary-logger - - apiary-memcached - - apiary-mongoDB - - apiary-persistent - - apiary-purescript - - apiary-redis - - apiary-session - - apiary-websockets - - apis - - apotiki - - ApplePush - - approx-rand-test - - arbor-monad-metric-datadog - - archive-tar-bytestring - - archlinux-web - arduino-copilot - - arff - - arghwxhaskell - - argon - - ariadne - - arith-encode - - arithmetic-circuits - - array-forth - - arraylist - - ascii-cows - - ascii-table - - asic - - ASN1 - assert4hs - assert4hs-core - assert4hs-hspec - assert4hs-tasty - - assimp - ast-monad-json - - astview - - async-ajax - - aterm-utils - - atlassian-connect-core - - atmos-dimensional-tf - - atom-msp430 - - atomic-primops-foreign - atp - attenuation-profunctors - - AttoJson - - attoparsec-enumerator - - attoparsec-iteratee - - attoparsec-text-enumerator - - atuin - - audiovisual - aura - - authoring - - AutoForms - - autonix-deps-kf5 - - avers - - avers-api - - avers-api-docs - - avers-server - aviation-cessna172-diagrams - aviation-cessna172-weight-balance - aviation-navigation - aviation-weight-balance - - AvlTree - - awesomium - - awesomium-glut - - aws-configuration-tools - - aws-dynamodb-conduit - - aws-dynamodb-streams - - aws-elastic-transcoder - - aws-kinesis - - aws-kinesis-client - - aws-kinesis-reshard - - aws-lambda - - aws-mfa-credentials - - aws-sdk - - aws-sdk-xml-unordered - - aws-sign4 - - aws-sns - - axiom - - azimuth-hs - aztecs-sdl-image - aztecs-sdl-text - aztecs-transform - - azure-functions-worker - - azure-service-api - - azure-servicebus - b9 - - babylon - - backblaze-b2-hs - - backdropper - balkon - - ballast - - bamboo - - bamboo-launcher - - bamboo-plugin-highlight - - bamboo-plugin-photo - - bamboo-theme-blueprint - - bamboo-theme-mini-html5 - - bamstats - - barley - - Barracuda - - base32-bytestring - - baserock-schema - - BASIC - - basic - - batchd - - batchd-core - - batchd-docker - - batchd-libvirt - batching - - battlenet-yesod - - battleplace-api - - battleships - - bayes-stack - - bbi - - bdcs - - bdcs-api - beam-large-records - - beam-th - - beautifHOL - bech32-th - - bein - - belka - - BerlekampAlgorithm - - BesselJ - - bff - - bifunctor - - billboard-parser - - billeksah-forms - - billeksah-main - - billeksah-pane - - binary-file - - binary-protocol-zmq - - binary-streams - - binding-gtk - - binding-wx - - bindings-apr-util - - bindings-linux-videodev2 - - bindings-ppdev - - binembed-example - - bioace - - bioalign - - Biobase - BiobaseBlast - - BiobaseDotP - BiobaseENA - - BiobaseEnsembl - BiobaseFasta - - BiobaseFR3D - - BiobaseHTTP - - BiobaseHTTPTools - - BiobaseInfernal - - BiobaseMAF - - BiobaseTrainingData - - BiobaseTurner - BiobaseTypes - - BiobaseVienna - BiobaseXNA - - biofasta - - biofastq - - BioHMM - - bioinformatics-toolkit - - biophd - - biopsl - - biosff - - biostockholm - - bip32 - - birch-beer - - bird - - BirdPP - biscuit-servant - bishbosh - - bit-array - - bitcoin-address - - bitcoin-api - - bitcoin-api-extra - - bitcoin-block - - bitcoin-tx - bitcoind-regtest - - Bitly - - bitly-cli - - bitmaps - - bittorrent - - bla - - blakesum-demo - BlastHTTP - - blastxml - - blatex - - blaze-builder-enumerator - blaze-colonnade - - ble - - blink1 - - blip - - Blobs - blockio - - blogination - - BlogLiterately-diagrams - - bloxorz - - blubber - - bluetile - - blunt - - bno055-haskell - - bogre-banana - bond - - bond-haskell - - bond-haskell-compiler - - bookkeeper - - bookkeeper-permissions - - bookkeeping-jp - - Bookshelf - - boomslang - - boots-app - - boots-cloud - - boots-web - - borel - - both - - bound-gen - BPS - - breakout - - bricks - - bricks-internal-test - - bricks-parsec - - bricks-rendering - - bricks-syntax - - bronyradiogermany-streaming - - btc-lsp - - btree - - buchhaltung - - buildbox-tools - - buildwrapper - - bulletproofs - - bulmex - - burnt-explorer - - buster-gtk - - buster-network - - butterflies - - bytable - - bytestring-read - - bytetrie - - ca - cabal-cache - - cabal-query - - cabal-test - - cabal2arch - - cabalmdvrpm - - cabalrpmdeps - - caffegraph - - cake - - cakyrespa - - cal3d-examples - - cal3d-opengl - - calc - - calculator - - caldims - - call - camfort - - campfire - canadian-income-tax - - canteven-http - - cao - - cap - - capnp - - captcha-2captcha - - captcha-capmonster - - captcha-core - - car-pool - - carboncopy - cardano-addresses - - CarneadesIntoDung - - cartel - - cas-hashable-s3 - - cas-store - - casadi-bindings - - casadi-bindings-control - - casadi-bindings-ipopt-interface - - casadi-bindings-snopt-interface - - cash - - casr-logbook-html - - casr-logbook-meta - - casr-logbook-meta-html - - casr-logbook-reports - - casr-logbook-reports-html - - casr-logbook-reports-meta - - casr-logbook-reports-meta-html - - cassandra-thrift - - cassy - - casui - - categorical-algebra - - category - - category-extras - - cattrap - - CBOR - - CC-delcont-alt - - cctools-workqueue - - cef3-simple - - ceilometer-common - - celtchar - - cereal-enumerator - - cereal-io-streams - - cereal-streams - - certificate - - cfipu - - cflp - - cfopu - - chainweb-mining-client - - chalkboard-viewer - changeset-containers - changeset-lens - changeset-reflex - - chapelure - - charade - - chart-cli - - Chart-fltkhs - - chart-svg-various - - chart-unit - chassis - chatty - - cheapskate-highlight - - cheapskate-terminal - - check-pvp - - chevalier-common - chiasma-test - - chitauri - - choose-exe - - chorale-geo - - chp-mtl - - chp-plus - - chp-spec - - chp-transformers - - chr-core - - chr-data - - chr-lang - - chromatin - - chu2 - - chuchu - - chunks - - citation-resolve - - citeproc-hs-pandoc-filter - - clac - - clafer - - claferIG - - claferwiki - - clash - - classify-frog - classy-effects - classy-effects-th - - classy-miso - - clckwrks - - clckwrks-cli - - clckwrks-dot-com - - clckwrks-plugin-bugs - - clckwrks-plugin-ircbot - - clckwrks-plugin-mailinglist - - clckwrks-plugin-media - - clckwrks-plugin-page - - clckwrks-plugin-redirect - - clckwrks-theme-bootstrap - - clckwrks-theme-clckwrks - - clckwrks-theme-geo-bootstrap - cleff-plugin - - cless - - cleveland - - click-clack - clickhouse-haskell - - clifford - - clippings - clod - - cloud-haskell - - cloud-seeder - cloudevents-haskell - - cloudyfs - - clr-bindings - - clr-inline - - clua - ClustalParser - - clustering - - clustertools - - clutterhs - - cmathml3 - - CMCompare - - cmptype - - cmv - - cnc-spec-compiler - - co-feldspar - - Coadjute - cobot-io - - codec - - codec-libevent - - codec-rpm - - codemonitor - - coformat - - cognimeta-utils - - coinbase-exchange - coincident-root-loci - - colada - - collapse-duplication - - collection-json - - collections-base-instances - - color-counter - - colorless-http-client - - colorless-scotty - colour-space - - columbia - columnar - - comark - - combinat-diagrams - - Combinatorrent - comic - - commsec - - commsec-keyexchange - - comonad-random - - ComonadSheet - - compact-mutable - - compdoc - - compdoc-dhall-decoder - - complexity - composite-aeson - composite-aeson-cofree-list - - composite-aeson-throw - composite-aeson-writeonly - composite-binary - composite-hashable @@ -520,480 +76,75 @@ dont-distribute-packages: - composite-lens-extra - composite-tuple - composite-xml - - composite-xstep - - comprehensions-ghc - - computational-algebra - - concraft - - concraft-hr - - concraft-pl - - concrete-haskell - - concrete-haskell-autogen - - concurrency-benchmarks - - Condor - - condor - - conductive-hsc3 - - conductive-song - - conduit-throttle - - conduit-vfs-zip - - confcrypt - - conferer-provider-dhall - - conferer-provider-yaml - - conferer-source-dhall - - conferer-source-yaml - - conffmt - - confide - - config-select - - Configger - - configifier - - configurator-ng - conic-graphs - - constrained-category - - constrained-platform-instances - - constraint - - constraint-manip - - constraint-reflection - - constructible - consumers - consumers-metrics-prometheus - - container - - containers-accelerate - - content-store - - control - - control-monad-attempt - - control-monad-exception - - control-monad-exception-monadsfd - - control-monad-exception-monadstf - - control-monad-exception-mtl - - Control-Monad-MultiPass - conversion-text - conversions - - convert - - convert-annotation - - convertible-ascii - - convertible-text - - coordinate - - copilot-cbmc - - copilot-sbv - - CoreFoundation - - coroutine-enumerator - - coroutine-iteratee - - couch-simple - - couchdb-enumerator - - CPBrainfuck - cprng-aes - - cprng-aes-effect - - cql-io-tinylog - - cqrs-example - - cqrs-memory - - cqrs-postgresql - - cqrs-sqlite3 - - cqrs-test - - cqrs-testkit - crackNum - - craft - - craftwerk-cairo - - craftwerk-gtk - - craze - - credentials-cli - - crf-chain1 - - crf-chain1-constrained - - crf-chain2-generic - - crf-chain2-tiers - - criu-rpc - - cron-compat - - crypto-classical - - crypto-conduit - - crypto-pubkey - crypto-sodium - - cryptocipher - cryptoids - cryptoids-class - cryptol - cryptonite-cd - - crystalfontz - - CSPM-cspm - - CSPM-FiringRules - - CSPM-Interpreter - - CSPM-ToProlog - - cspmchecker - - csv-enumerator - - ctpl - - cube - curryer-rpc - - cv-combinators - - cypher - dahdit-audio - dahdit-midi - dahdit-test - - daino - - Dangerous - - dapi - - darcs-benchmark - - darcs-beta - - darcs-fastconvert - - darcsden - - DarcsHelpers - - darcswatch - - darkplaces-demo - - darkplaces-rcon-util - - dash-haskell - - data-basic - - data-cycle - - data-default-extra - - data-layer - - data-lens-ixset - - data-object-json - - data-object-yaml - - data-result - - data-rtuple - - data-structure-inferrer - - database-id-groundhog - - datadog-tracing - - datafix - - dataflow - - datasets - - date-conversions - - dbjava - - dbmigrations-mysql - - dbmigrations-postgresql - - dbmigrations-sqlite - - dbus-client - - ddate - - ddc-build - - ddc-core - - ddc-core-babel - - ddc-core-eval - - ddc-core-flow - - ddc-core-llvm - - ddc-core-salt - - ddc-core-simpl - - ddc-core-tetra - - ddc-driver - - ddc-interface - - ddc-source-tetra - - ddc-tools - - ddc-war - - ddci-core - - dde - - debug - - decimal-arithmetic - - dedukti - - DeepArrow - - deepzoom - - defargs - - DefendTheKing - - definitive-filesystem - - definitive-graphics - - definitive-parser - - definitive-reactive - - definitive-sound - - deka-tests - - delicious - - delimited-text - - delimiter-separated - - delta - - delta-h - dep-t-advice - dep-t-dynamic - dep-t-value - dependent-literals - dependent-literals-plugin - - dependent-state - - depends - - dephd - - deptrack-devops - - deptrack-dot - - dequeue - - derive-IG - - descript-lang - - detour-via-uom - devtools - - dewdrop - - dfinity-radix-tree - - dhall-lex - dhall-secret - - dia-functions + - dhscanner-kbgen - diagrams-html5 - - diagrams-wx - - dialog - - diff - - difference-monoid - - DifferenceLogic - differential - - digestive-foundation-lucid - - digestive-functors-hsp - - dimensional-tf - dimensions - - dingo-core - - dingo-example - - dingo-widgets - - diplomacy-server - - direct-rocksdb - - dirfiles - - discogs-haskell - - discord-gateway - discord-haskell-voice - - discord-hs - - discord-rest - - DisTract - - distributed-process-azure - - distribution-plot - - dixi - dl-fedora - - dmenu-pkill - - dmenu-pmount - - dmenu-search - - DMuCheck - - DnaProteinAlignment + - dl-fedora_2_1 - dnf-repo - - dobutokO-poetry - - dobutokO-poetry-general - - dobutokO-poetry-general-languages - - dobutokO3 - - dobutokO4 - - doc-review - - DocTest - dojang - - DOM - domaindriven - dormouse-client - dovetail - dovetail-aeson - - dow - - download-media-content - - DP - - dph-examples - - dph-lifted-base - - dph-lifted-copy - - dph-lifted-vseg - - dph-prim-interface - - dph-prim-par - - dph-prim-seq - - DRBG - - DrHylo - - dropbox-sdk - - dropsolve - - DSA - - DSH - - dsh-sql - - dsmc-tools - - DSTM - - dtd - - Dust - - Dust-crypto - - Dust-tools - - Dust-tools-pcap - - dvda - - dynamic-cabal - dynamic-plot - - dynamic-pp - - dynobud - - DysFRP-Cairo - - DysFRP-Craftwerk - e11y-otel - easytensor - easytensor-vulkan - ebird-cli - - ecdsa - - edenskel - - edentv - - edge - - edges - - editable - - EditTimeReport - - effect-monad - - effective-aspects-mzv - egison - - egison-quote - egison-tutorial - - ekg-carbon - elasticsearch-interchange - - electrs-client - - elerea-examples - - elliptic-curve - - elsa - ema-extra - - emacs-keys - - emailparse - - embroidery - - engine-io-growler - - engine-io-snap - - engine-io-wai - - engine-io-yesod - - entangle - - EntrezHTTP - - enum-text-rio - - enumerate - - enumerate-function - - enumeration - - enumerator-fd - - enumerator-tf - - enumfun - - ephemeral - - erf-native - - eros-client - - eros-http - - error-message - errors-ext - ersatz-toysat - - esotericbot - - EsounD - esqueleto-postgis - esqueleto-streaming - - estreps - - Etage-Graph - - EtaMOO - - Eternal10Seconds - - eternity - - eternity-timestamped - - ether - - Etherbunny - - ethereum-analyzer - - ethereum-analyzer-cli - - ethereum-analyzer-webui - - ethereum-client-haskell - - ethereum-merkle-patricia-db - - eths-rlp - - euphoria - - event-monad - - eventful-core - - eventful-dynamodb - - eventful-memory - - eventful-postgresql - - eventful-sql-common - - eventful-sqlite - - eventful-test-helpers - - EventSocket - - eventsource-geteventstore-store - - eventsource-store-specs - - eventsource-stub-store - eventuo11y-batteries - eventuo11y-json - eventuo11y-otel - eventuo11y-prometheus - - every-bit-counts - exact-kantorovich - - exference - - exist - - exist-instances - - expand - - expat-enumerator - - expiring-containers - - explicit-iomodes-bytestring - - explicit-iomodes-text - - explicit-sharing - - explore - - expressions-z3 - - extemp - - extended-containers-lens - extensible-skeleton - - extract-dependencies - - factual-api - - FailureT - - fair - - fallingblocks - - family-tree - fast-arithmetic - fast-bech32 - fastcdc - - fastirc - - fault-tree - - fay-base - - fay-builder - - fay-dom - - fay-geoposition - - fay-hsx - - fay-jquery - - fay-ref - - fay-simplejson - - fay-text - - fay-uri - - fay-websockets - fbrnch - - fcd - - FComp - - feature-flipper-postgres - fedora-composes - - fedora-img-dl - - feed-gipeda - - feed-translator - - feed2lj - - feed2twitter - - fei-base - - fei-dataiter - - fei-datasets - - fei-examples - - fei-modelzoo - - fei-nn - - feldspar-compiler - - feldspar-language - - FermatsLastMargin - - festung - - ffmpeg-tutorials - - ficketed - - FieldTrip - filepath-crypto - - filepath-io-access - - filesystem-enumerator - - Fin - fin-int - - Finance-Treasury - - find-clumpiness - findhttp - finitary-derive - finite-table - - FiniteMap - - firstify - - FirstOrderTheory - - fishfood - - fix-parser-simple - - fixed-point-vector - - fixed-point-vector-space - - fixhs - - flashblast - - flexiwrap - - flexiwrap-smallcheck - - flight-kml - Flint2-Examples - - Flippi - - flite - - flower - - flowsim - - fltkhs-demos - - fltkhs-fluid-demos - - fltkhs-fluid-examples - - fltkhs-hello-world - - fltkhs-themes - - fluent-logger - - fluent-logger-conduit - - fluid-idl-http-client - - fluid-idl-scotty - - FM-SBLEX - - fmt-for-rio - foldable1 - - foldl-transduce-attoparsec - - follower - - foo - - Forestry - - FormalGrammars - - format - - format-status - - formlets - - formlets-hsp - forms-data-format - - ForSyDe - - forsyde-deep - - forth-hll - - foscam-directory - - foscam-sort - - Foster - - fpco-api - - fplll - - fpnla-examples - - frame-markdown - - Frames-dsv - Frames-map-reduce - - Frank - freckle-app - freckle-ecs - freckle-http @@ -1001,166 +152,30 @@ dont-distribute-packages: - freckle-otel - freckle-stats - free-functors - - free-game - - free-theorems-seq-webui - - freekick2 - - freelude - - freer-converse - frequent-substring - fresnel-fused-effects - - friday-devil - - friday-juicypixels - - friday-scale-dct - - front - - frpnow-gloss - - frpnow-gtk - - frpnow-gtk3 - - frpnow-vty - - ftdi - - ftp-client-conduit - - FTPLine - - ftree - - ftshell - - funbot - - funbot-git-hook - - funcons-lambda-cbv-mp - - funcons-simple - - function-combine - - functor - - functor-combo - functor-monad - - funflow - - funflow-nix - - funion - - funsat - - fwgl-glfw - g2 - - g2q - - gact - - galois-fft - galois-field - - gamma - - gbs-downloader - - gbu - - gdax - - gdiff-ig - - GeBoP - - gedcom - - geek - - geek-server - - gegl - - gelatin-freetype2 - - gelatin-fruity - - gelatin-gl - - gelatin-sdl2 - - gelatin-shaders - - Genbank - gencheck - - Gene-CluEDO - - generic-accessors - generic-override-aeson - - generic-xml - - generics-mrsop-gdiff - - genesis - - genesis-test - - GenI - - geni-gui - - geni-util - - geniconvert - - geniserver - - GenussFold - - geodetic - - geolite-csv - - getemx - ghc-debugger - ghc-dump-util - - ghc-imported-from - - ghc-instances - - ghc-mod - ghc-plugs-out - - ghc-session - - ghcjs-dom-webkit - - ghcjs-hplay - - ght - - gi-cairo-again - gi-ges - gi-gstpbutils - - git-config - - git-fmt - - git-gpush - - git-object - - git-remote-ipfs - git-sanity - - gitdo - - github-data - - github-webhook-handler-snap - - gitlib-cross - - gitlib-s3 - gitson - - givegif - - gladexml-accessor - - glazier - - glazier-pipes - - glazier-react - - glazier-react-examples - - glazier-react-widget - glean - - GLFW-OGL - - GLFW-task - - global - - global-config - - glome-hs - - GlomeView - - gloss-accelerate - - gloss-devil - - gloss-raster-accelerate - - gloss-sodium - gltf-loader - - gmap - - gmndl - - gnome-desktop - - gnomevfs - - gnss-converters - goal-geometry - goal-graphical - goal-probability - - goal-simulation - goatee-gtk - - google-drive - - google-mail-filters - - GoogleDirections - - googleplus - - GoogleSB - - GoogleTranslate - - gore-and-ash-actor - - gore-and-ash-async - - gore-and-ash-demo - - gore-and-ash-glfw - - gore-and-ash-lambdacube - - gore-and-ash-logging - - gore-and-ash-network - - gore-and-ash-sdl - - gore-and-ash-sync - - GPipe-Collada - - GPipe-Examples - - GPipe-GLFW - GPipe-GLFW4 - - GPipe-TextureLoad - - gps - - gps2htmlReport - - GPX - grab-form - - graflog - - grammar-combinators - - GrammarProducts - - grapefruit-examples - - grapefruit-frp - - grapefruit-records - - grapefruit-ui - - grapefruit-ui-gtk - grapesy - grapesy-etcd - - graph-rewriting-cl - graph-rewriting-gl - graph-rewriting-lambdascope - graph-rewriting-layout @@ -1168,417 +183,61 @@ dont-distribute-packages: - graph-rewriting-strategies - graph-rewriting-trs - graph-rewriting-ww - - graph-visit - - GraphHammer - - GraphHammer-examples - - graphicsFormats - - graphicstools - - graphtype - graphula - - greencard-lib - grid-proto - - gridbounds - - gridland - grisette - grisette-monad-coroutine - - gross - - groundhog-converters - - groundhog-inspector - groundhog-mysql - groundhog-postgresql - groundhog-sqlite - groundhog-th - - Grow - - GrowlNotify - - grpc-etcd-client - grpc-haskell - - gruff - - gruff-examples - - gsc-weighting - - gscholar-rss - - gsl-random-fu - - gsmenu - - gstorable - - gtfs - - gtfs-realtime - - gtk-serialized-event - - gtk2hs-cast-glade - - gtk2hs-cast-gnomevfs - - gtk2hs-cast-gtk - - gtk2hs-cast-gtkglext - - gtk2hs-cast-gtksourceview2 - - Gtk2hsGenerics - - GtkGLTV - - gtkimageview - - gtkrsync - - GtkTV - - guarded-rewriting - - GuiHaskell - - GuiTV - H - h3spec - - habit - hablo - - Hach - - hack-contrib - - hack-contrib-press - - hack-handler-epoll - - hack-handler-evhttp - - hack-handler-fastcgi - - hack-handler-hyena - - hack-handler-simpleserver - - hack-middleware-cleanpath - - hack-middleware-clientsession - - hack-middleware-jsonp - - hack2-contrib-extra - - hack2-handler-happstack-server - - hack2-handler-mongrel2-http - - hack2-handler-snap-server - - hackage2twitter - - hackmanager - - haddock - - haddocset - - hadoop-tools - - haggis - - hails-bin - - hake - - hakyll-elm - - hakyll-ogmarkup - hakyll-shortcut-links - - halberd - halide-arrayfire - halide-JuicyPixels - hall-symbols - - halma-gui - - halma-telegram-bot - - hamusic - - hans-pcap - - happlets-lib-gtk - - HAppS-Data - - happs-hsp - - happs-hsp-template - - HAppS-IxSet - - HAppS-Server - - HAppS-State - - happs-tutorial - - happstack-auth - - happstack-authenticate - - happstack-contrib - - happstack-data - - happstack-dlg - - happstack-facebook - - happstack-fay - - happstack-fay-ajax - - happstack-foundation - - happstack-helpers - - happstack-hsp - - happstack-ixset - - happstack-plugins - - happstack-state - - happybara-webkit - - haquil - hardware-edsl - - HaRe - - hark - - harmony - - HarmTrace - - haroonga-httpd - - has-th - hasbolt - - hascat - - hascat-lib - - hascat-setup - - hascat-system - - HasGP - hash-addressed - hash-addressed-cli - - Hashell - - hashflare - - hask-home - haskanoid - - haskdeep - - haskeem - haskell-admin - haskell-admin-health - haskell-admin-managed-functions - - haskell-aliyun - - haskell-bitmex-client - haskell-debugger - - haskell-docs - - haskell-eigen-util - - haskell-ftp - haskell-lsp - - haskell-lsp-client - - haskell-pdf-presenter - - haskell-platform-test - - haskell-reflect - - haskell-src-exts-observe - - haskell-token-utils - - haskell-tools-ast - - haskell-tools-ast-fromghc - - haskell-tools-ast-gen - - haskell-tools-ast-trf - - haskell-tools-backend-ghc - - haskell-tools-builtin-refactorings - - haskell-tools-cli - - haskell-tools-daemon - - haskell-tools-debug - - haskell-tools-demo - - haskell-tools-experimental-refactorings - - haskell-tools-prettyprint - - haskell-tools-refactor - - haskell-tools-rewrite - - haskell-tor - - haskell-xmpp - - haskelldb-connect-hdbc - - haskelldb-connect-hdbc-catchio-mtl - - haskelldb-connect-hdbc-catchio-tf - - haskelldb-connect-hdbc-catchio-transformers - - haskelldb-connect-hdbc-lifted - - haskelldb-dynamic - - haskelldb-flat - - haskelldb-hdbc - - haskelldb-hdbc-mysql - - haskelldb-hdbc-odbc - - haskelldb-hdbc-postgresql - - haskelldb-hdbc-sqlite3 - - haskelldb-hsql - - haskelldb-hsql-mysql - - haskelldb-hsql-odbc - - haskelldb-hsql-postgresql - - haskelldb-hsql-sqlite3 - - haskelldb-th - - haskelm - haskey - - haskey-mtl - - haskgame - hasklepias - - haskoin-bitcoind - - haskoin-crypto - - haskoin-protocol - - haskoin-script - - haskoon - - haskoon-httpspec - - haskoon-salvia - - haskore-supercollider - - haskore-synthesizer - - hasktorch-ffi-thc - - hasktorch-indef - - hasktorch-signatures - - hasktorch-zoo - - haskus-binary - - haskus-system-build - - haskus-utils - - haskus-utils-compat - - haskus-web - - haslo - - hasloGUI - - hasql-postgres - - hasql-postgres-options - - hasql-queue - hasql-streams-example - - hastache-aeson - - haste-app - - haste-gapi - - haste-lib - - haste-markup - - haste-perch - - Hate - - HaTeX-meta - - HaTeX-qq - - hatexmpp3 - - HaVSA - - hawitter - - Hawk - - haxl-amazonka - - haxl-facebook - - haxy - - Hayoo - - hback - - hbayes - - hbb - - hbf - - hbro - - hbro-contrib - - hcg-minus-cairo - - hcheat - - hcheckers - - hcube - - hdbi - - hdbi-conduit - - hdbi-postgresql - - hdbi-sqlite - - hdbi-tests - - hdiff - - hdirect - hdocs - - hdph - - heart-app - - heatitup - - heavy-log-shortcuts - - heavy-logger - - heavy-logger-amazon - - heavy-logger-instances - - hecc - - hedgehog-checkers-lens - - hedgehog-gen-json - - Hedi - - hedis-pile - - heist-aeson - helic - - helics - - helics-wai - - helium - - hellage - - hellnet - - hemokit - - hen - - henet - - hepevt - - hermit - - hermit-syb - - herringbone - - herringbone-embed - - herringbone-wai - - hesh - - hesql - - heterolist - - hevolisa - - hevolisa-dph - hexpat-conduit - - hexpat-iteratee - - hfd - - hfiar - - hfractal - - hgalib - - HGamer3D-API - - HGamer3D-Audio - - HGamer3D-Bullet-Binding - - HGamer3D-CAudio-Binding - - HGamer3D-CEGUI-Binding - - HGamer3D-Common - - HGamer3D-Enet-Binding - - HGamer3D-Graphics3D - - HGamer3D-GUI - - HGamer3D-InputSystem - - HGamer3D-Network - - HGamer3D-Ogre-Binding - - HGamer3D-OIS-Binding - - HGamer3D-SDL2-Binding - - HGamer3D-SFML-Binding - - HGamer3D-WinEvent - - HGamer3D-Wire - - hgen - hgeometry - hgeometry-combinatorial - hgeometry-ipe - - hgeometry-svg - - hgithub - - hiccup - - hie-core - - hierarchical-clustering-diagrams - hierarchical-env - - hierarchical-spectral-clustering - - Hieroglyph - - HiggsSet - highjson-swagger - highjson-th - - himpy - - hinduce-classifier - - hinduce-classifier-decisiontree - - hinduce-examples - - hinvaders - - hinze-streams - - hipbot - - hipe - - Hipmunk-Utils - - HipmunkPlayground - hipsql-client - hipsql-server - hipsql-tx-simple - - hirt - - hist-pl - - hist-pl-dawg - - hist-pl-fusion - - hist-pl-lexicon - - hist-pl-lmf - - hit - - hit-graph - - HJScript - - hjsonschema - - hjugement-cli - - hlcm - - HLearn-algebra - - HLearn-approximation - - HLearn-classification - - HLearn-datastructures - - HLearn-distributions - - hls - hls-call-hierarchy-plugin - hls-exactprint-utils - hls-semantic-tokens-plugin - - hmark - - hmatrix-sundials - - hmeap - - hmeap-utils - - hmep - - hmt-diagrams - - HNM - - hnormalise - - hob - - Hoed - - hOff-display - - hogre - - hogre-examples - - Holumbus-Distribution - - Holumbus-MapReduce - - Holumbus-Storage - - holy-project - - hommage - - HongoDB - - hood - - hoodie - - hoodle - - hoodle-builder - - hoodle-core - - hoodle-extra - - hoodle-parser - - hoodle-publish - - hoodle-render - - hoovie - hoppy-docs - hoppy-runtime - hoppy-std - horde-ad - - hotswap - - hp2any-graph - - hp2any-manager - - hpaco - - hpaco-lib - - hpage - - hpaste - hpath-directory - hpath-io - - hpc-tracer - - hPDB - - hPDB-examples - - HPhone - - hplayground - - HPlot - - HPong - hpqtypes-effectful - hpqtypes-extras - hprotoc - - hprotoc-fork - - hps - - hps-cairo - - hpython - hq - HQu - - hranker - - HRay - - hreq-client - - hreq-conduit - hriemann - HROOT - HROOT-graf @@ -1588,96 +247,15 @@ dont-distribute-packages: - HROOT-net - HROOT-tree - hs - - hs-blake2 - - hs-ffmpeg - - hs-functors - - hs-gen-iface - - hs-ix - - hs-profunctors - hs-sdl-term-emulator - - hs2ats - - hs2dot - - Hs2lib - - hS3 - - hsbackup - - hsbencher-codespeed - - hsbencher-fusion - - hsc3-auditor - - hsc3-data - - hsc3-forth - - hsc3-graphs - - hsc3-lisp - - hsc3-plot - - hsc3-server - - hsc3-sf-hsndfile - - hsc3-utils - - hscassandra - - hscope - - hsdev - - Hsed - hsendxmpp - - hsfacter - - HSGEP - - HSHHelpers - - hsinspect-lsp - - hslogstash - - HSoundFile - - HsParrot - hspec-dirstream - - hspec-expectations-pretty - hspec-pg-transact - - hspec-setup - - hspec-shouldbe - hspecVariant - - hsprocess - - hsql-mysql - - hsql-odbc - - hsql-postgresql - - hsql-sqlite3 - - hsreadability - - hssourceinfo - - hssqlppp-th - hstar - - hstox - - hstradeking - - HStringTemplateHelpers - - hstzaar - - hsubconvert - - HsWebots - - hswip - - hsx-jmacro - - hsx-xhtml - - hsyslog-tcp - - HTab - - html-kure - - html2hamlet - htoml-parse - - htsn-import - - http-client-auth - http-client-rustls - - http-enumerator - - http-response-decoder - - http2-client-grpc - - http2-grpc-proto-lens - - http2-grpc-proto3-wire - http3 - - https-everywhere-rules - - https-everywhere-rules-raw - - httpspec - - hubris - - hugs2yc - - hulk - - Hungarian-Munkres - - hunit-gui - - hunp - - hunt-searchengine - - hunt-server - - hurdle - - hurl - - hurl-xml - - husk-scheme-libs - - huzzy - - hw-all - hw-balancedparens - hw-eliasfano - hw-excess @@ -1688,699 +266,129 @@ dont-distribute-packages: - hw-json-standard-cursor - hw-rankselect - hw-simd - - hw-succinct - - hw-uri - - hworker-ses - - hwormhole - - hws - - hwsl2-bytevector - - hwsl2-reducers - - HXMPP - - hxournal - - hxt-binary - - hxt-filter - - hxweb - - hybrid - - hydra-print - - Hydrogen - - hydrogen-cli - - hydrogen-cli-args - - hydrogen-data - - hydrogen-parsing - - hydrogen-prelude - - hydrogen-prelude-parsec - - hydrogen-syntax - - hydrogen-util - - hyena - - hylotab - - hyloutils - hyperbole - - hyperpublic - - ide-backend - - ide-backend-server - - ideas-math - - ideas-math-types - - ideas-statistics - identicon-style-squares - - idna - - iException - - ifscs - - ige-mac-integration - - igrf - - ihaskell-inline-r - - ihaskell-rlangqq - - ihttp - - imap - imbib - - imgurder - - imj-animation - - imj-base - - imj-game-hamazed - - imj-measure-stdout - - immutaball-core - - imparse - imperative-edsl - - imperative-edsl-vhdl - - importify - - imprevu-happstack - - improve - - INblobs - - inch - - incremental-computing - - incremental-maps - - increments - - indentation - - indentation-parsec - - indentation-trifecta - - indexation - - IndexedList - indieweb-algorithms - - indigo - - inferno-core - - inferno-lsp - inferno-vc - - infinity - - InfixApplicative - inline-java - - inspector-wrecker - - instant-aeson - - instant-bytes - - instant-deepseq - - instant-hashable - - instant-zipper - instrument-cloudwatch - - integreat - - intel-aes - intelli-monad - - interpolatedstring-qq - - interpolatedstring-qq-mwotton - - intro-prelude - - introduction-test - - intset - io-classes-mtl - - ion - - IORefCAS - - ipatch - - ipc - - ipld-cid - - iptadmin - - irc-fun-bot - - irc-fun-client - - irc-fun-color - - irc-fun-messages - iri-orphans - - ironforge - - isevaluated - - ismtp - - isobmff-builder - - isohunt - - iter-stats - - iteratee-compress - - iteratee-mtl - - iteratee-parsec - - iteratee-stm - - iterio-server - iterm-show-diagrams - iterm-show-JuicyPixels - - ival - - ivor - - ivory-avr-atmega328p-registers - - ivory-backend-c - - ivory-bitdata - - ivory-eval - - ivory-examples - - ivory-hw - - ivory-opts - - ivory-quickcheck - - ivory-serialize - - ivory-stdlib - - ivy-web - - ix - ixset - - ixset-typed-conversions - - iyql - - j2hs - jackpolynomials - - java-bridge-extras - - java-character - - java-reflect - - javaclass - - Javasf - - javasf - - jespresso - - jmacro-rpc-happstack - - jmacro-rpc-snap - - jobqueue - - jobs-ui - - join - jordan-openapi - jordan-servant - jordan-servant-client - jordan-servant-openapi - jordan-servant-server - - jsc - - JsContracts - - jsmw - - json-ast-json-encoder - - json-b - - JSON-Combinator - - JSON-Combinator-Examples - - json-enumerator - - json-incremental-decoder - - json-pointer-aeson - - json-pointer-hasql - json-query - - json-rpc-client - - json-state - - json-togo - - json2-hdbc - json2sg - - JsonGrammar - - jsons-to-schema - - jspath - - JunkDB-driver-gdbm - - JunkDB-driver-hashtables - - JuPyTer-notebook - jvm - jvm-batching - jvm-streaming - - kafka-device - - kafka-device-glut - - kafka-device-joystick - - kafka-device-leap - - kafka-device-spacenav - - kafka-device-vrpn - - kaleidoscope - - kansas-lava - - kansas-lava-cores - - kansas-lava-papilio - - kansas-lava-shake - - karakuri - - katip-rollbar - keelung - - keera-hails-mvc-environment-gtk - keera-hails-mvc-model-lightmodel - keera-hails-mvc-model-protectedmodel - - keera-hails-mvc-solutions-gtk - - keera-hails-mvc-view-gtk - keera-hails-reactive-cbmvar - keera-hails-reactive-fs - - keera-hails-reactive-gtk - keera-hails-reactive-htmldom - keera-hails-reactive-network - keera-hails-reactive-polling - - keera-hails-reactive-wx - keera-hails-reactive-yampa - keera-hails-reactivelenses - - keera-posture - keid-core - keid-frp-banana - keid-geometry - keid-resource-gltf - keid-sound-openal - - kerry - - kevin - - key-vault - - keyring - keystore - - keyvaluehash - - keyword-args - kicad-data - - KiCS - - KiCS-debugger - - KiCS-prophecy - - kif-parser - - kit - - kmeans-par - - kmeans-vector - knead - - knit-haskell - koji-install - koji-tool - - korfu - - ks-test - kubernetes-client - - kure-your-boilerplate - - kurita - - laborantin-hs - - labsat - - labyrinth - - labyrinth-server - - lagrangian - - laika - - lambda-devs - lambda-options - - lambdabot-zulip - - lambdacat - - lambdacms-media - - lambdacube - - lambdacube-bullet - - lambdacube-compiler - - lambdacube-edsl - - lambdacube-examples - - lambdacube-gl - - lambdacube-samples - - lambdaFeed - - LambdaINet - - lambdaLit - - LambdaPrettyQuote - - LambdaShell - - lambdaya-bus - - lambdiff - - lame-tester - landlock - - lang - langchain-hs - language-ats - - language-boogie - - language-ecmascript-analysis - - language-eiffel - - language-kort - language-Modula2 - - language-ninja - language-oberon - language-puppet - - language-python-colour - - language-python-test - - language-qux - - language-spelling - - lat - - latex-formulae-hakyll - - latex-formulae-pandoc - - latex-svg-hakyll - - latex-svg-pandoc - - Lattices - launchdarkly-server-sdk-redis-hedis - lawful-classes-hedgehog - lawful-classes-quickcheck - - layered-state - - layouting - - lazy-hash-cache - - lda - - ldap-scim-bridge - - ldapply - LDAPv3 - - leaky - - lean - leanpub-wreq - - learning-hmm - - legion - - legion-discovery - - legion-discovery-client - - legion-extra - - leksah-server - - lens-utils - - lenz - - lenz-mtl - - levmar-chart - - lex-applicative - - lgtk - - lha - - lhae - - lhe - - libconfig - - libcspm - - libgraph - - liblastfm - - liblawless - - liblinear-enumerator - - libmolude - - libraft - - librarian - - librato - - libxml-enumerator - - lifted-base-tf - - lightning-haskell - - lightstep-haskell - - lighttpd-conf - - lighttpd-conf-qq - - linear-code - linearEqSolver - - linearscan-hoopl - - LinearSplit - - LinkChecker - - linkchk - - linkcore - - linnet-aeson - - linnet-conduit - - linux-ptrace - - lio-eci11 - - liquidhaskell-cabal-demo - - list-t-attoparsec - - list-t-html-parser - - listenbrainz-client - - ListT - - liszt - - lit - - live-sequencer - - llvm - - llvm-analysis - - llvm-base-types - - llvm-base-util - - llvm-data-interop - llvm-dsl - - llvm-general - - llvm-general-quote - - llvm-hs-pretty - - llvm-tools - - lmonad-yesod - - lnd-client - lnurl-authenticator - loc - - local-search - - localize - - locked-poll - - log - - log-effect-syslog - log-postgres - - log-utils - - log4hs - - logging-effect-extra - - LogicGrowsOnTrees - - LogicGrowsOnTrees-MPI - - LogicGrowsOnTrees-network - - LogicGrowsOnTrees-processes - - lojban - - lojysamban - - lol - - lol-apps - - lol-benches - - lol-cpp - - lol-repa - - lol-tests - - lol-typing - - loli - looksee-trip - - loop-effin - - lorentz - - lostcities - - loup - LPPaver - - lrucaching-haxl - - ls-usb - - LslPlus - lsm-tree - - lsystem - - luachunk - lucid-colonnade - - lucienne - - Lucu - - lui - - luminance-samples - - lvish - - Lykah - - lz4-conduit - - lzma-enumerator - - macbeth-lib - - machines-amazonka - machines-directory - machines-process - - mackerel-client - - macosx-make-standalone - magic-wormhole - - mahoro - - maid - - MailchimpSimple - - mailgun - - majordomo - - majority - - make-package - - manatee - - manatee-all - - manatee-anything - - manatee-browser - - manatee-core - - manatee-curl - - manatee-editor - - manatee-filemanager - - manatee-imageviewer - - manatee-ircclient - - manatee-mplayer - - manatee-pdfviewer - - manatee-processmanager - - manatee-reader - - manatee-template - - manatee-terminal - - manatee-welcome - - mangopay - mangrove - manifold-random - - Map - - marionetta - - markdown-pap - - markdown2svg - - markov-processes - - marmalade-upload - - marquise - - marvin - - marxup - - masakazu-bot - massiv-persist - - matchers - math-programming-glpk - math-programming-tests - - mathblog - - mathlink - - matsuri - matterhorn - mattermost-api-qc - - maxent - - maxent-learner-hw-gui - - maxsharing - - MC-Fold-DP - - mcmc-samplers - - mDNSResponder-client - medea - - mediabus-fdk-aac - - mediabus-rtp - - mediawiki2latex - mello - - mellon-gpio - - mellon-web - - memcache-conduit - memory-cd - memory-hexstring - - merkle-patricia-db - message-db-temp - - meta-par-accelerate - - MetaObject - - metaplug - - metar - - metar-http - - Metrics - - metronome - - MFlow - - Mhailist - - Michelangelo - - micro-gateway - - microformats2-types - - MicrosoftTranslator - - midimory - mig-server - - mighttpd - - minecraft-data - - minesweeper - - minilight - - minilight-lua - - minimung - - minioperational - - minirotate - MIP-glpk - - mismi-kernel - - mismi-s3-core - - miss - - miss-porcelain - - missing-py2 - - MissingPy - - mixed-strategies - - mkbndl - - mlist - mmsyn6ukr - - mmsyn7h - mmsyn7s - - mmsyn7ukr - - mmtl-base - - moan - - modify-fasta - - modsplit - - modular-prelude-classy - - modularity - - modulo - moffy-samples-gtk3 - moffy-samples-gtk4 - - mole - - monad-connect - - monad-exception - - monad-http - - monad-state - - monad-stlike-stm - - MonadCatchIO-mtl-foreign - - monadiccp-gecode - - MonadLab - - monarch - - Monaris - - Monatron-IO - Mondrian - - monetdb-mapi - - mongrel2-handler - - monky - - Monocle - monomer-flatpak-example - - monte-carlo - - moo - moo-nad - - morley - - morley-client - morley-prelude - - morley-upgradeable - - morphisms-functors-inventory - - motor - - motor-diagrams - mp - - mp3decoder - - mpdmate - mprelude - - mpretty - - mprover - - mps - mptcpanalyzer - msgpack-arbitrary - msgpack-binary - - msgpack-idl - msgpack-persist - msgpack-rpc-conduit - msgpack-testsuite - - msi-kb-backlit - - MSQueue - mstate - - mtgoxapi - mu-avro - mu-graphql - - mu-grpc-client - - mu-grpc-common - - mu-grpc-server - - mu-kafka - mu-lens - mu-optics - mu-persistent - mu-prometheus - - mu-protobuf - mu-rpc - mu-servant-server - - mu-tracing - - MuCheck-Hspec - - MuCheck-HUnit - - MuCheck-QuickCheck - - MuCheck-SmallCheck - - multi-cabal - multibase - - multifocal - - multihash-serialise - - multilinear-io - - multiplicity - - multipool-persistent - - multipool-persistent-postgresql - - multipool-postgresql-simple - - multirec-alt-deriver - - multirec-binary - - multisetrewrite - - Munkres-simple - - murder - - murmurhash3 - - mushu - - music-graphics - - music-parts - - music-pitch - - music-preludes - - music-score - - music-sibelius - - music-suite - - musicbrainz-email - - musicxml2 - - mutable-iter - - MutationOrder - - mute-unmute - - mvclient - - mwc-random-monad - - mxnet-dataiter - - mxnet-examples - - mxnet-nn - - mysnapsession-example - - mysql-haskell-openssl - - mysql-simple-typed - - myTestlll - - mywatch + - muon - mywork - - n2o-web - NaCl - - nakadi-client - named-servant-client - named-servant-server - - nanq - - NaperianNetCDF - - national-australia-bank - - nats-queue - - natural-number - - NearContextAlgebra - - nemesis-titan - - nerf - - nero-wai - - nero-warp - - nested-routes - net-spider-cli - - net-spider-pangraph - net-spider-rpl - net-spider-rpl-cli - - netcore - - netlines - - netstring-enumerator - - nettle-frp - - nettle-netkit - - nettle-openflow - - network-anonymous-i2p - - network-anonymous-tor - - network-connection - - network-enumerator - - network-hans - - network-interfacerequest - - network-minihttp - - network-netpacket - Network-NineP - - network-pgi - network-protocol-xmpp - - network-rpca - - network-stream - - network-topic-models - - network-websocket - neuron - - newsletter-mailgun - - newsynth - NGLess - ngx-export-tools-extra - - nikepub - - Ninjas - - nirum - - nkjp - - nlp-scores-scripts - - nom - - Nomyx - - nomyx-api - - Nomyx-Core - - nomyx-core - - Nomyx-Language - - nomyx-language - - nomyx-library - - Nomyx-Rules - - nomyx-server - - Nomyx-Web - - NonEmptyList - - nonlinear-optimization-ad - - nonlinear-optimization-backprop - - NoSlow - - not-gloss - - not-gloss-examples - - notmuch-web - - now-haskell - nri-env-parser - nri-http - nri-kafka @@ -2389,145 +397,36 @@ dont-distribute-packages: - nri-prelude - nri-redis - nri-test-encoding - - NTRU - numeric-kinds - - numeric-ode - - numeric-optimization - - numeric-optimization-ad - - numerical - - numhask-hedgehog - - numhask-range - - numhask-test - - Nussinov78 - - nyan - nyan-interpolation - nyan-interpolation-simple - - nymphaea - - nyx-game - oalg-abg - - oath - - oauth2-jwt-bearer - obdd - - oberon0 - - obj - - objectid - objective - - ochan - - ochintin-daicho - - octane - - octohat - - octopus - - oculus - - odd-jobs - - off-simple - ogma-language-fret-cs - ogma-language-fret-reqs - - ois-input-manager - ollama-holes-plugin - - olwrapper - om-kubernetes - - online-csv - - OnRmt - oops-examples - opc-xml-da-client - - open-adt-tutorial - - open-typerep - - OpenAFP-Utils - - OpenGLCheck - - openpgp-Crypto - - openpgp-crypto-api - - OpenSCAD - - openssh-github-keys - opentelemetry-lightstep - - opentok - opentracing-jaeger - opentracing-zipkin-v1 - - OpenVG - - optimal-blocks - - optimusprime - optparse-enum - - orchid - - orchid-demo - - order-maintenance - org-mode-lucid - - orgstat - - osm-download - otp-authenticator - overeasy - - overload - pa-json - - package-o-tron - - padKONTROL - - PageIO - - Paillier - - pairing - - panda - - pandoc-highlighting-extensions - - pandoc-japanese-filters - pandora-io - panfiguration - - papa - - papa-base - - papa-base-implement - - papa-export - - papa-implement - - papa-lens - - papa-semigroupoids - - par-dual - - Paraiso - - Parallel-Arrows-BaseSpec - - Parallel-Arrows-Eden - - Parallel-Arrows-Multicore - - Parallel-Arrows-ParMonad - parallel-tree-search - - parco-attoparsec - - parco-parsec - parconc-examples - - parquet-hs - - parse-help - - parsestar - parsley - parsley-garnish - - partage - - partial-semigroup-test - - passman-cli - patch-image - - pathfindingcore - - patterns - - paypal-rest-client - - pcap-enumerator - - pcapng - - pcf - - PCLT-DB - - pdf-slave - - pdfname - - pdfsplit - - peakachu - - pec - - pell - - penny - - penny-bin - - penny-lib - - peparser - - perdure - - perf-analysis - - perfecthash - - periodic-client - - periodic-client-exe - - periodic-server - - perm - - permutations - - PermuteEffects - - persistent-audit - persistent-event-source - persistent-eventsource - - persistent-hssqlppp - persistent-iproute - - persistent-map - - persistent-protobuf - - persona-idp - - peyotls - - peyotls-codec - pg-entity - phladiprelio-general-shared - phladiprelio-general-simple @@ -2535,46 +434,17 @@ dont-distribute-packages: - phladiprelio-ukrainian-simple - phonetic-languages-common - phonetic-languages-constraints - - phonetic-languages-examples - - phonetic-languages-general - phonetic-languages-permutations - phonetic-languages-properties - phonetic-languages-simplified-common - phonetic-languages-simplified-examples-array - phonetic-languages-simplified-examples-common - phonetic-languages-simplified-generalized-examples-common - - phonetic-languages-simplified-lists-examples - phonetic-languages-simplified-properties-lists - phonetic-languages-simplified-properties-lists-double - phonetic-languages-ukrainian - - phooey - - phybin - - pianola - - pier - - pine - - pinpon - - pipe-enumerator - - pipes-attoparsec-streaming - - pipes-cereal-plus - - pipes-conduit - - pipes-courier - - pipes-extra - - pipes-files - - pipes-fluid - - pipes-illumina - - pipes-key-value-csv - - pipes-misc - - pipes-p2p - - pipes-p2p-examples - - pisigma - - pitchtrack - piyo - pkgtreediff - - planet-mitchell - - plocketed - - Plot-ho-matic - - PlslTools - - plugins-auto - pms-application-service - pms-domain-service - pms-infra-cmdrun @@ -2586,16 +456,8 @@ dont-distribute-packages: - pms-ui-notification - pms-ui-request - pms-ui-response - - png-file - - pngload - - pointless-lenses - - pointless-rewrite - poker - - polh-lexicon - poly-rec - - polydata - - polysemy-account - - polysemy-account-api - polysemy-db - polysemy-extra - polysemy-fskvstore @@ -2611,35 +473,15 @@ dont-distribute-packages: - polysemy-uncontrolled - polysemy-video - polysemy-vinyl - - polytypeable-utils - - pomodoro - - pontarius-mediaserver - - popenhs - - porcupine-core - - porcupine-http - - porcupine-s3 - portray-diff - portray-diff-hunit - portray-diff-quickcheck - portray-pretty - portray-prettyprinter - - ports - - poseidon - - poseidon-postgis - - postgresql-common-persistent - postgresql-simple-ltree - - postgresql-simple-queue - - postgresql-simple-typed - postgresql-tx-query - postgresql-tx-squeal - postgresql-tx-squeal-compat-simple - - postmark - - potoki - - potoki-cereal - - potoki-conduit - - potoki-hasql - - potoki-zlib - - powerqueue-sqs - ppad-base58 - ppad-bip32 - ppad-bip39 @@ -2647,69 +489,19 @@ dont-distribute-packages: - ppad-hmac-drbg - ppad-pbkdf - ppad-secp256k1 - - pqueue-mtl - - practice-room - - pred-trie - - prednote-test - - presto-hdbc - pretty-diff - - preview - primal-memory - - primula-board - - primula-bot - - Printf-TH - - ProbabilityMonads - - proc - - process-iterio - - process-progress - - process-qq - - process-streaming - - procrastinating-structure - - producer - - product - - prof2dot - - progressbar - project-m36 - - prolog-graph - - prolog-graph-lib - - prologue - prolude - - prometheus-proc - - propane - - proplang - - prosidyc - - proto-lens-descriptors - proto3-suite - - protobuf-native - protocol-buffers-descriptor - - protocol-buffers-descriptor-fork - proton - psql - ptera - ptera-th - pty-mcp-server - - publicsuffixlist - - puffytools - - Pugs - - pugs-compat - - pugs-hsregex - - punkt - - Pup-Events - - Pup-Events-Demo - - puppetresources - - pure-cdb - - pure-priority-queue-tests - - purescript-iso - - push-notify - - push-notify-ccs - - push-notify-general - - puzzle-draw-cmdline - - pvd - - qd-vec - qhs - qhull - - qnap-decrypt - - qr-repa - qrcode-juicypixels - qtah-cpp-qt5 - qtah-cpp-qt6 @@ -2717,289 +509,49 @@ dont-distribute-packages: - qtah-generator - qtah-qt5 - qtah-qt6 - - quantfin - - Quelea - - queryparser - - queryparser-demo - - queryparser-hive - - queryparser-presto - - queryparser-vertica - - queuelike - quick-process - - quickcheck-poly - - quickcheck-regex - - quickcheck-relaxng - - quicktest - - quipper - - quipper-algorithms - - quipper-all - - quipper-cabal - - quipper-demos - - quipper-language - - quipper-libraries - - quipper-rendering - - quipper-tools - - quipper-utils - - quiver-binary - - quiver-bytestring - - quiver-cell - - quiver-csv - - quiver-enumerator - - quiver-groups - - quiver-http - - quiver-instances - - quiver-interleave - - quiver-sort - - qux - - rail-compiler-editor - rails-session - - rainbow-tests - Raincat - - raketka - - rallod - - randfile - - random-access-file - random-class - - random-effin - - random-extras - - random-hypergeometric - - range-space - - Ranka - - rasa - - rasa-example-config - - rasa-ext-bufs - - rasa-ext-cmd - - rasa-ext-cursors - - rasa-ext-files - - rasa-ext-logger - - rasa-ext-slate - - rasa-ext-status-bar - - rasa-ext-style - - rasa-ext-views - - rasa-ext-vim - - rascal - raw-feldspar - - razom-text-util - - rbr - - rc - - rdioh - rds-data-polysemy - - react-flux-servant - - reactive - - reactive-banana-sdl - - reactive-banana-wx - - reactive-fieldtrip - - reactive-glut - - reactor - readline-in-other-words - - readpyc - reanimate - - record-aeson - - record-gl - - record-preprocessor - - record-syntax - - records-th - - recursion-schemes-ix - - reddit - - redHandlers - - redis-io - - rediscaching-haxl - - refh - - reflex-animation - - reflex-backend-wai - reflex-ghci - - reflex-gloss-scene - reflex-libtelnet - reflex-localize - reflex-monad-auth - reflex-process - reform-blaze - reform-happstack - - refractor - refurb - - reg-alloc-graph-color - - regex-deriv - - regex-genex - - regex-pcre-text - - regex-pderiv - - regex-xmlschema - - regexchar - - regexp-tries - - regional-pointers - - regions-monadsfd - - regions-monadstf - - regions-mtl - - regular-extras - - regular-web - - regular-xmlpickler - - reheat - rel8 - - relative-date - - remote-json - - remote-json-client - - remote-json-server - - remotion - - repa-array - - repa-flow - - repa-plugin - - repa-v4l2 - - replicant - - repo-based-blog - - repr - - representable-tries - - reserve - - resin - - resource-pool-catchio - - resource-simple - - rest-client - - rest-core - - rest-example - - rest-gen - - rest-happstack - - rest-snap - - rest-stringmap - - rest-types - - rest-wai - - restful-snap - - RESTng - - restricted-workers - - rethinkdb-model - - rethinkdb-wereHamster - retroclash-sim - - rewrite - - rewriting - - rezoom - - rfc-env - - rfc-http-client - - rfc-psql - - rfc-redis - - rfc-servant - - rhythm-game-tutorial - rib - ribosome - ribosome-app - ribosome-host - ribosome-host-test - - ribosome-root - ribosome-test - ridley-extras - rio-process-pool - - riot - - ripple - - ripple-federation - - risc-v - - rivet - - RJson - - rlwe-challenges - - rmonad - - RMP - - RNAdesign - - RNAdraw - - RNAFold - - RNAFoldProgs - - RNAlien - - RNAwolf - - rncryptor - rob - - robot - - roc-cluster-demo - - rock - - roguestar-engine - - roguestar-gl - - roguestar-glut - rollbar-cli - rollbar-wai - rollbar-yesod - - RollingDirectory - - ron-rdt - - ron-schema - - ron-storage - - rose-trie - - roshask - - rosmsg-bin - - roundtrip-xml - - route-generator - - route-planning - - row - - rpc - - rpf - - rsagl - - rsagl-frp - - rsagl-math - - rtcm - - ruler - - ruler-core - - runtime-arbitrary - - rv - - s-expression - - S3 - - safe-failure - - safe-failure-cme - - safe-plugins - - safer-file-handles - - safer-file-handles-bytestring - - safer-file-handles-text - - sai-shape-syb - sak - - salak-toml - - salak-yaml - - saltine-quickcheck - - salvia - - salvia-demo - - salvia-extras - - salvia-sessions - - salvia-websocket - - samtools - - samtools-conduit - - samtools-enumerator - - samtools-iteratee - sandwich-contexts-kubernetes - sandwich-contexts-minio - sandwich-webdriver - sandwich-webdriver_0_4_0_1 - sarsi - sasha - - sasl - - sat-micro-hs - - satchmo-examples - - satchmo-funsat - satchmo-toysat - sauron - - SBench - sbv-program - sbvPlugin - - sc2-lowlevel - - sc2-support - - sc2hs - - sc3-rdu - - scalable-server - - SCalendar - - scalp-webhooks - - scalpel-search - - scan-metadata - - scan-vector-machine - scheduling - - schematic - - scholdoc - - scholdoc-citeproc - - scholdoc-texmath - - SciFlow-drmaa - - scion - - scion-browser - - scope - - scope-cairo - - scotty-fay - - scotty-form - - scotty-hastache - - scotty-haxl - - scotty-params-parser - - scp-streams - - scrabble-bot - scrapbook - - SCRIPTWriter - - scroll - - Scurry - - sdl2-sprite - sdp-binary - sdp-deepseq - sdp-hashable @@ -3009,94 +561,22 @@ dont-distribute-packages: - sdp4text - sdp4unordered - sdp4vector - - seakale-postgresql - - seakale-tests - - secret-sharing - - secrm - - sednaDBXML - - seitz-symbol - - SelectSequencesFromMSA - - selenium-server - semantic-source - semantic-version - - semi-iso - - semialign-extras - - semiring - - semiring-num - - sensenet - - sentence-jp - - seqaid - - seqloc - - seqloc-datafiles - - sequor - serdoc-binary - - serpentine - - serv - - serv-wai - servant-aeson-generics-typescript - - servant-auth-token - - servant-auth-token-acid - - servant-auth-token-api - - servant-auth-token-leveldb - - servant-auth-token-persistent - - servant-auth-token-rocksdb - servant-auth-wordpress - servant-checked-exceptions - servant-checked-exceptions-core - - servant-client-namedargs - - servant-csharp - - servant-db-postgresql - - servant-ede - - servant-examples - - servant-haxl-client - - servant-js - - servant-matrix-param - servant-oauth2 - servant-oauth2-examples - - servant-postgresql - - servant-pushbullet-client - servant-rate-limit - - servant-reason - servant-serialization - - servant-server-namedargs - servant-snap - - servant-streaming-client - - servant-streaming-docs - - servant-streaming-server - - servant-swagger-tags - servant-util-beam-pg - - servant-waargonaut - - servant-zeppelin-client - - servant-zeppelin-server - - servant-zeppelin-swagger - - sessiontypes-distributed - - Set - - SFML-control - - SFont - - SGdemo - - sgrep - - shady-gen - - shady-graphics - - shake-ats - - shake-language-c - - shake-minify-css - - shakebook - - shaker - - shapefile - - shapely-data - - shapes-demo - sheets - - shelduck - - Shellac-compatline - - Shellac-editline - - Shellac-haskeline - - Shellac-readline - - shellmate-extras - - shine-varying - short-vec - short-vec-lens - - ShortestPathProblems - - showdown - Shpadoinkle-backend-pardiff - Shpadoinkle-backend-snabbdom - Shpadoinkle-backend-static @@ -3109,544 +589,95 @@ dont-distribute-packages: - Shpadoinkle-streaming - Shpadoinkle-template - Shpadoinkle-widgets - - shpider - - shuffle - - si-clock - - sibe - - sigma-ij - - signals - signify-hs - - silvi - - simgi - - simple-c-value - - simple-firewire - - simple-log-syslog - - simple-logging - - simple-nix - - simple-pascal - - simple-postgresql-orm - - SimpleGL - - simpleirc-lens - - SimpleLog - - SimpleServer - - simseq - singletons-base_3_5 - siphon - - siren-json - - sirkel - - skeleton - - skeletons - - skylark-client - - slate - - slip32 - - smallcheck-laws - - smallcheck-lens - - smallstring - - smartword - smash-aeson - smash-lens - smash-microlens - smash-optics - smcdel - - smith-cli - - smith-client - - Smooth - - smt - - smtlib2-debug - - smtlib2-pipe - - smtlib2-quickcheck - - smtlib2-timing - - smtp2mta - - snap-auth-cli - - snap-elm - - snap-extras - - snap-utils - - snaplet-actionlog - - snaplet-auth-acid - - snaplet-fay - - snaplet-hasql - - snaplet-haxl - - snaplet-hdbc - - snaplet-lss - - snaplet-mongoDB - - snaplet-mysql-simple - - snaplet-oauth - - snaplet-postmark - - snaplet-recaptcha - - snaplet-redson - - snaplet-rest - - snaplet-riak - - snaplet-sedna - - snaplet-sqlite-simple-jwt-auth - - snaplet-stripe - - snaplet-tasks - - snaplet-wordpress - - snappy-iteratee - - sndfile-enumerators - - sneakyterm - - sneathlane-haste - - snm - - snmp - - snow-white - - snowflake-core - - snowflake-server - snumber - - Snusmumrik - soap-openssl - soap-tls - - SoccerFun - - SoccerFunGL - - sock2stream - socket-io - sockets-and-pipes - - socketson - - solga-swagger - - solr - souffle-dsl - - source-code-server - - SourceGraph - - SpacePrivateers - spade - sparkle - - sparrow - - sparsebit - spartacon - - spata - - spatial-math - - specialize-th - - spectral-clustering - - speculation-transformers - - speechmatics - - spelling-suggest - - sphero - - spice - - SpinCounter - - splines - - sprinkles - - sproxy - - sql-simple-mysql - - sql-simple-pool - - sql-simple-postgresql - - sql-simple-sqlite - sqlc-hs - - sqlcli-odbc - sqlite-simple-interpolate - - sqlite-simple-typed - - squeeze - srt-dhall - srt-formatting - - sscgi - - sshd-lint - - sssp - - sstable - - stable-tree - - stack-network - - stack-run-auto - - stackage - - stackage-build-plan - - stackage-cabal - - stackage-query - - stackage-sandbox - - stackage-setup - - stackage-upload - - stackage2nix - stackctl - - starrover2 - - stateful-mtl - - static-closure - - statistics-dirichlet - - statsd-client - - statsdi - steeloverseer - - stern-brocot - - STLinkUSB - - STM32-Zombie - - stmcontrol - - StockholmAlignment - - storablevector-streamfusion - - Strafunski-Sdf2Haskell - - stratum-tool - - stratux - - stratux-demo - - stratux-http - - stratux-websockets - - streaming-base64 - - streaming-concurrency - - streaming-fft - - streaming-process - - streaming-sort - - strelka - - strelka-wai - - strict-data - - string-typelits - - stripe-haskell - - stripe-http-client - - stripe-http-streams - - stripe-tests - - strongswan-sql - - structural-induction - - structured-haskell-mode - - structured-mongoDB - - stunts - - stutter - - subhask - - substring-parser - sugar-data - sugar-json - sugar-scheme - - summoner-tui - - sunroof-examples - - sunroof-server - - supercollider-ht - - supercollider-midi - - superconstraints - - supernova - supply-chain - supply-next - - sv - - sv-cassava - - sv-svfactor - - SVG2Q - - svg2q - svgone - - swapper - - switch - - syb-with-class-instances-text - - SybWidget - sydtest-amqp - sydtest-webdriver-screenshot - sydtest-webdriver-yesod - - sylvia - - symantic-atom - - symantic-http-demo - - symantic-http-test - - symantic-lib - - symbiote - symmetry-operations-symbols - Synapse - synapse - - syncthing-hs - - syntax - - syntax-attoparsec - - syntax-example - - syntax-example-json - - syntax-pretty - - syntax-printer - - SyntaxMacros - - syntaxnet-haskell - - sys-process - - systemstats - - t3-client - - ta - - tag-stream - - tagged-list - - tagged-th - - tagsoup-navigate - tahoe-directory - - tahoe-great-black-swamp - tahoe-great-black-swamp-testing - tahoe-ssk - - tak-ai - - takahashi - - tal - - tamarin-prover - - tamarin-prover-term - - tamarin-prover-theory - - tar-bytestring - - target - - task - - task-distribution - tasklite - tasklite-core - - tasty-bdd - - tasty-groundhog-converters - - tasty-integrate - - tasty-jenkins-xml - - tasty-laws - - tasty-lens - TastyTLT - - tateti-tateti - Taxonomy - - TaxonomyTools - - tbox - - tccli - - tdd-util - - TeaHS - techlab - - telegram-bot - - telegram-raw-api - ten-lens - ten-unordered-containers - - terminal-text - - terrahs - - test-sandbox-compose - - test-simple - - testbench - - text-json-qq - - text-locale-encoding - - text-plus - - text-xml-generic - - textmatetags - - th-alpha - - th-context - - th-instances - - theoremquest-client - - thimk - thrift-compiler - thrift-haxl - thrift-http - thrift-lib - - thumbnail-polish - - tic-tac-toe - - tickle - - tighttp - - timberc - - time-exts - - time-http - - time-io-access - - time-warp - - timeprint - - timezone-unix - - tinkoff-invest-sdk - - tintin - tinytools-vty - - tip-haskell-frontend - - tip-lib - - titan - tlex - tlex-debug - tlex-encoding - tlex-th - - tls-extra - - tn - - to-string-instances - - toboggan - - todos - - toktok - - tomlcheck - tonatona - tonatona-google-server-api - tonatona-logger - tonatona-persistent-postgresql - tonatona-persistent-sqlite - tonatona-servant - - too-many-cells - - top - - total-map - - toxcore - toxcore-c - toysolver - - tpb - - tracing-control - - trajectory - - trans-fx-data - - trans-fx-io - - transfer-db - - transformations - - transformers-convert - - transient-universe - - transient-universe-tls - - translate-cli - - trasa-client - - trasa-extra - - trasa-form - - trasa-server - - trasa-th - - traversal-template - - TreeCounter - - treemap-html-tools - - treersec - - Treiber - - trek-app - - trek-db - - triangulation - - TrieMap - - trigger - - trimpolya - - trurl - - tsession-happstack - - tsweb - - tuntap-simple - - tup-functor - - tuple-gen - - tuple-ops - - turingMachine - - TV - tweet-hs - - twentefp-eventloop-graphics - - twentefp-eventloop-trees - - twentefp-graphs - - twentefp-rosetree - - twentefp-trees - - twfy-api-client - - twidge - - twilight-stm - - twill - twirl - - twitter-enumerator - - txt - - type-assertions - - type-cache - - type-cereal - - type-combinators-quote - - type-combinators-singletons - - type-digits - - type-ord - - type-ord-spine-cereal - - type-sets - - type-structure - - type-sub-th - - TypeClass - - typed-encoding-encoding - typed-gui - typed-protocols-doc - - typed-streams - - typedflow - - TypeIlluminator - - typelevel - - typescript-docs - - typson-beam - - typson-esqueleto - - typson-selda - - u2f - - uber - - ucam-webauth - - ucd - - udbus-model - - uhc-light - - uhc-util - ukrainian-phonetics-basic - - UMM - - unagi-bloomfilter - - unbound - - unfoldable-restricted - uni-events - - uni-graphs - - uni-htk - - uni-posixutil - - uni-reactor - - uni-uDrawGraph - - unicode-normalization - - unicoder - - uniform-io - - uniform-watch - - uniqueness-periods - - uniqueness-periods-vector-examples - uniqueness-periods-vector-filters - - uniqueness-periods-vector-general - uniqueness-periods-vector-properties - - unitym-servant - - unitym-yesod - - universal - - universe-th - - unix-fcntl - - unpacked-these - - unpacked-validation - - unparse-attoparsec - - unscramble - up - urbit-airlock - urbit-api - - ureader - - urembed - - uri-enumerator - - uri-enumerator-file - - UrlDisp - - URLT - - usb - - usb-enumerator - - usb-hid - - usb-id-database - - usb-iteratee - - usb-safe - - utf - - UTFTConverter - - util-exception - - util-primitive-control - - util-universe - - utxorpc-client - - utxorpc-server - - uu-cco-examples - - uu-cco-hut-parsing - - uu-cco-uu-parsinglib - - uu-options - uuid-crypto - - uvector-algorithms - - v4l2 - - v4l2-examples - - vabal - - vacuum-cairo - - vacuum-graphviz - - vacuum-opengl - - vacuum-ubigraph - - valid - validated-literals - variable-media-field-dhall - variable-media-field-optics - - variable-precision - - vault-tool-server - - vault-trans - - vaultaire-common - - vcache-trie - - vcard - - vcsgui - - vect-floating-accelerate - - vector-instances-collections - - vector-text - - vectortiles - venzone - - verdict-json - verifiable-expressions - - versioning-servant - vertexenum - - vflow-types - - vformat-aeson - vformat-time - - vfr-waypoints - - ViennaRNA-extras - - vigilance - vimeta - - vinyl-operational - - vision - - visual-graphrewrite - vocoder-audio - vocoder-conduit - vocoder-dunai - - voicebase - - vorbiscomment - - vpq - - vty-ui-extras - waargonaut - - wahsp - - wai-devel - - wai-dispatch - wai-handler-hal - - wai-handler-snap - - wai-hastache - - wai-middleware-brotli - - wai-middleware-cache - - wai-middleware-cache-redis - - wai-middleware-consul - - wai-middleware-rollbar - - wai-middleware-route - - wai-route - - wai-routing - - wai-session-tokyocabinet - - wai-thrift - - waldo - - warp-grpc - warp-quic - - warped - - WashNGo - - WaveFront - - wavesurfer - - wavy - weatherhs - - weave - - web-mongrel2 - - web-routes-hsp - - web-routes-regular - - web-routing - web-view-colonnade - web3 - web3-bignum @@ -3655,170 +686,25 @@ dont-distribute-packages: - web3-polkadot - web3-provider - web3-solidity - - WebBits-Html - - WebBits-multiplate - - WebCont - - webcrank-wai - webdriver-w3c - webdriver_0_13_0_0 - - webify - - webserver - - WEditorBrick - - WEditorHyphen - - weekdaze - - weierstrass-functions - - weighted - - werewolf-slack - wgpu-hs - - wheb-mongo - - wheb-redis - - wheb-strapped - - whitespace - - wholepixels - wikimusic-api - wikimusic-api-spec - wikimusic-ssr - - wikipedia4epub - - windowslive - winery - - winio - - Wired - - wl-pprint-ansiterm - - wl-pprint-terminfo - - WL500gPControl - - wlc-hs - - wobsurv - - wolf - - word - - WordAlignment - - workflow-extra - - workflow-pure - - workflow-types - - wrecker - - wrecker-ui - - wright - WringTwistree - - write-buffer-stm - - writer-cps-full - wstunnel - - wtk-gtk - - wu-wei - - wumpus-basic - - wumpus-drawing - - wumpus-microprint - - wumpus-tree - - WURFL - - wx - - wxAsteroids - - wxc - - wxcore - - WXDiffCtrl - - wxFruit - - WxGeneric - - wxhnotepad - - wxSimpleCanvas - - wxturtle - - wyvern - - xdcc - xdg-basedir-compliant - - xhb-atom-cache - - xhb-ewmh - - XML - - xml-catalog - - xml-enumerator - - xml-enumerator-combinators - - xml-monad - - xml-pipe - - xml-push - - xml-query-xml-conduit - - xml-query-xml-types - - xml-tydom-conduit - - xml2x - - xmltv - - xmms2-client - - xmms2-client-glib - - xmonad-contrib-bluetilebranch - - xmpipe - - XMPP - - xournal-builder - - xournal-convert - - xournal-parser - - xournal-render - - xournal-types - xrefcheck - - XSaiga - - xtc - - Yablog - - yajl-enumerator - - yam - - yam-datasource - - yam-job - - yam-logger - - yam-redis - - yam-servant - - yam-transaction - - yam-transaction-odbc - - yam-transaction-postgresql - - yam-web - - yaml-rpc-scotty - - yaml-rpc-snap - - yarr-image-io - - yavie - - ycextra - yeamer - - yeshql - - yesod-alerts - - yesod-articles - - yesod-auth-ldap - yesod-auth-lti13 - yesod-auth-simple - yesod-colonnade - - yesod-continuations - - yesod-examples - - yesod-fay - - yesod-mangopay - - yesod-paypal-rest - - yesod-platform - - yesod-purescript - - yesod-raml-bin - - yesod-raml-docs - - yesod-raml-mock - - yesod-routes-typescript - - yesod-session-redis - - yesod-worker - - yjftp - - yjftp-libs - - Yogurt-Standalone - - yoko - - york-lava - - yql - - yu-launch - - yuuko - Z-Botan - Z-IO - Z-MessagePack - Z-YAML - - zasni-gerna - zephyr-copilot - - zeromq3-conduit - - zeroth - - zifter-cabal - - zifter-git - - zifter-google-java-format - - zifter-hindent - - zifter-hlint - - zifter-stack - - ZipFold - - zipper - - zipper-extra - - zippo - - ziptastic-client - - zlib-enum - - zm - - zmcat - - zoom-cache - - zoom-cache-pcm - - zoom-cache-sndfile - zoovisitor - - zuramaru - zwirn diff --git a/pkgs/development/haskell-modules/configuration-nix.nix b/pkgs/development/haskell-modules/configuration-nix.nix index 8234aa829256b..933477929a02f 100644 --- a/pkgs/development/haskell-modules/configuration-nix.nix +++ b/pkgs/development/haskell-modules/configuration-nix.nix @@ -152,9 +152,6 @@ builtins.intersectAttrs super { }) super.spreadsheet ); - # fix errors caused by hardening flags - epanet-haskell = disableHardening [ "format" ] super.epanet-haskell; - # cabal2nix incorrectly resolves this to pkgs.zip (could be improved over there). streamly-zip = super.streamly-zip.override { zip = pkgs.libzip; }; @@ -251,9 +248,6 @@ builtins.intersectAttrs super { ''; }) super.jni; - # Won't find it's header files without help. - sfml-audio = appendConfigureFlag "--extra-include-dirs=${pkgs.openal}/include/AL" super.sfml-audio; - # avoid compiling twice by providing executable as a separate output (with small closure size) cabal-fmt = enableSeparateBinOutput super.cabal-fmt; hindent = enableSeparateBinOutput super.hindent; @@ -337,7 +331,6 @@ builtins.intersectAttrs super { if pkgs.stdenv.hostPlatform.isDarwin then [ (appendConfigureFlag "-fhave-quartz-gtk") ] else [ ] ) ); - gtksourceview2 = addPkgconfigDepend pkgs.gtk2 super.gtksourceview2; gtk-traymanager = addPkgconfigDepend pkgs.gtk3 super.gtk-traymanager; shelly = overrideCabal (drv: { @@ -375,16 +368,8 @@ builtins.intersectAttrs super { # These packages try to access the network. amqp = dontCheck super.amqp; - amqp-conduit = dontCheck super.amqp-conduit; - bitcoin-api = dontCheck super.bitcoin-api; - bitcoin-api-extra = dontCheck super.bitcoin-api-extra; - bitx-bitcoin = dontCheck super.bitx-bitcoin; # http://hydra.cryp.to/build/926187/log/raw concurrent-dns-cache = dontCheck super.concurrent-dns-cache; - digitalocean-kzs = dontCheck super.digitalocean-kzs; # https://github.com/KazumaSATO/digitalocean-kzs/issues/1 github-types = dontCheck super.github-types; # http://hydra.cryp.to/build/1114046/nixlog/1/raw - hadoop-rpc = dontCheck super.hadoop-rpc; # http://hydra.cryp.to/build/527461/nixlog/2/raw - hjsonschema = overrideCabal (drv: { testTargets = [ "local" ]; }) super.hjsonschema; - marmalade-upload = dontCheck super.marmalade-upload; # http://hydra.cryp.to/build/501904/nixlog/1/raw mongoDB = dontCheck super.mongoDB; network-transport-zeromq = dontCheck super.network-transport-zeromq; # https://github.com/tweag/network-transport-zeromq/issues/30 oidc-client = dontCheck super.oidc-client; # the spec runs openid against google.com @@ -392,25 +377,15 @@ builtins.intersectAttrs super { pipes-mongodb = dontCheck super.pipes-mongodb; # http://hydra.cryp.to/build/926195/log/raw pixiv = dontCheck super.pixiv; riak = dontCheck super.riak; # http://hydra.cryp.to/build/498763/log/raw - scotty-binding-play = dontCheck super.scotty-binding-play; - servant-router = dontCheck super.servant-router; serversession-backend-redis = dontCheck super.serversession-backend-redis; - slack-api = dontCheck super.slack-api; # https://github.com/mpickering/slack-api/issues/5 - stackage = dontCheck super.stackage; # http://hydra.cryp.to/build/501867/nixlog/1/raw - textocat-api = dontCheck super.textocat-api; # http://hydra.cryp.to/build/887011/log/raw wreq = dontCheck super.wreq; # http://hydra.cryp.to/build/501895/nixlog/1/raw - wreq-sb = dontCheck super.wreq-sb; # http://hydra.cryp.to/build/783948/log/raw download = dontCheck super.download; http-client = dontCheck super.http-client; http-client-openssl = dontCheck super.http-client-openssl; http-client-tls = dontCheck super.http-client-tls; http-conduit = dontCheck super.http-conduit; - transient-universe = dontCheck super.transient-universe; telegraph = dontCheck super.telegraph; js-jquery = dontCheck super.js-jquery; - hPDB-examples = dontCheck super.hPDB-examples; - tcp-streams = dontCheck super.tcp-streams; - holy-project = dontCheck super.holy-project; mustache = dontCheck super.mustache; arch-web = dontCheck super.arch-web; @@ -462,9 +437,6 @@ builtins.intersectAttrs super { # Tries to mess with extended POSIX attributes, but can't in our chroot environment. xattr = dontCheck super.xattr; - # Needs access to locale data, but looks for it in the wrong place. - scholdoc-citeproc = dontCheck super.scholdoc-citeproc; - # Disable tests because they require a mattermost server mattermost-api = dontCheck super.mattermost-api; @@ -482,11 +454,6 @@ builtins.intersectAttrs super { # Test suite requires running a docker container via testcontainers amqp-streamly = dontCheck super.amqp-streamly; - # wxc supports wxGTX >= 3.0, but our current default version points to 2.8. - # http://hydra.cryp.to/build/1331287/log/raw - wxc = (addBuildDepend self.split super.wxc).override { wxGTK = pkgs.wxGTK32; }; - wxcore = super.wxcore.override { wxGTK = pkgs.wxGTK32; }; - shellify = enableSeparateBinOutput super.shellify; specup = enableSeparateBinOutput super.specup; aws-spend-summary = self.generateOptparseApplicativeCompletions [ "aws-spend-summary" ] ( @@ -509,17 +476,6 @@ builtins.intersectAttrs super { # /homeless-shelter. Disabled. purescript = dontCheck super.purescript; - # Hardcoded include path - poppler = overrideCabal (drv: { - postPatch = '' - sed -i -e 's,glib/poppler.h,poppler.h,' poppler.cabal - sed -i -e 's,glib/poppler.h,poppler.h,' Graphics/UI/Gtk/Poppler/Structs.hsc - ''; - }) super.poppler; - - # Uses OpenGL in testing - caramia = dontCheck super.caramia; - # llvm-ffi needs a specific version of LLVM which we hard code here. Since we # can't use pkg-config (LLVM has no official .pc files), we need to pass the # `dev` and `lib` output in, or Cabal will have trouble finding the library. @@ -560,37 +516,9 @@ builtins.intersectAttrs super { ''; }) super.GlomeVec; - # Tries to run GUI in tests - leksah = dontCheck ( - overrideCabal (drv: { - executableSystemDepends = - (drv.executableSystemDepends or [ ]) - ++ (with pkgs; [ - adwaita-icon-theme # Fix error: Icon 'window-close' not present in theme ... - wrapGAppsHook3 # Fix error: GLib-GIO-ERROR **: No GSettings schemas are installed on the system - gtk3 # Fix error: GLib-GIO-ERROR **: Settings schema 'org.gtk.Settings.FileChooser' is not installed - ]); - postPatch = (drv.postPatch or "") + '' - for f in src/IDE/Leksah.hs src/IDE/Utils/ServerConnection.hs - do - substituteInPlace "$f" --replace "\"leksah-server\"" "\"${self.leksah-server}/bin/leksah-server\"" - done - ''; - }) super.leksah - ); - # dyre's tests appear to be trying to directly call GHC. dyre = dontCheck super.dyre; - # https://github.com/edwinb/EpiVM/issues/13 - # https://github.com/edwinb/EpiVM/issues/14 - epic = addExtraLibraries [ pkgs.boehmgc pkgs.gmp ] ( - addBuildTool self.buildHaskellPackages.happy super.epic - ); - - # https://github.com/ekmett/wl-pprint-terminfo/issues/7 - wl-pprint-terminfo = addExtraLibrary pkgs.ncurses super.wl-pprint-terminfo; - # https://github.com/bos/pcap/issues/5 pcap = addExtraLibrary pkgs.libpcap super.pcap; @@ -620,32 +548,10 @@ builtins.intersectAttrs super { prePatch = ''sed -i -e "/Extra-Lib-Dirs/d" -e "/Include-Dirs/d" "hcwiid.cabal"''; }) super.hcwiid; - # cabal2nix doesn't pick up some of the dependencies. - ginsu = - let - g = addBuildDepend pkgs.perl super.ginsu; - g' = overrideCabal (drv: { - executableSystemDepends = (drv.executableSystemDepends or [ ]) ++ [ - pkgs.ncurses - ]; - }) g; - in - g'; - # Tests require `docker` command in PATH # Tests require running docker service :on localhost docker = dontCheck super.docker; - # https://github.com/deech/fltkhs/issues/16 - fltkhs = overrideCabal (drv: { - libraryToolDepends = (drv.libraryToolDepends or [ ]) ++ [ pkgs.buildPackages.autoconf ]; - librarySystemDepends = (drv.librarySystemDepends or [ ]) ++ [ - pkgs.fltk13 - pkgs.libGL - pkgs.libjpeg - ]; - }) super.fltkhs; - # Select dependency discovery method and provide said dependency jpeg-turbo = enableCabalFlag "pkgconfig" ( addPkgconfigDepends [ pkgs.libjpeg_turbo ] super.jpeg-turbo @@ -654,9 +560,6 @@ builtins.intersectAttrs super { # https://github.com/skogsbaer/hscurses/pull/26 hscurses = addExtraLibrary pkgs.ncurses super.hscurses; - # Looks like Avahi provides the missing library - dnssd = super.dnssd.override { dns_sd = pkgs.avahi.override { withLibdnssdCompat = true; }; }; - # Tests execute goldplate goldplate = overrideCabal (drv: { preCheck = drv.preCheck or "" + '' @@ -719,21 +622,11 @@ builtins.intersectAttrs super { discount = super.discount.override { markdown = pkgs.discount; }; - # tests require working stack installation with all-cabal-hashes cloned in $HOME - stackage-curator = dontCheck super.stackage-curator; - stack = self.generateOptparseApplicativeCompletions [ "stack" ] super.stack; # hardcodes /usr/bin/tr: https://github.com/snapframework/io-streams/pull/59 io-streams = enableCabalFlag "NoInteractiveTests" super.io-streams; - # requires autotools to build - secp256k1 = addBuildTools [ - pkgs.buildPackages.autoconf - pkgs.buildPackages.automake - pkgs.buildPackages.libtool - ] super.secp256k1; - # requires libsecp256k1 in pkg-config-depends secp256k1-haskell = addPkgconfigDepend pkgs.secp256k1 super.secp256k1-haskell; @@ -743,17 +636,6 @@ builtins.intersectAttrs super { # This propagates this to everything depending on haskell-gi-base haskell-gi-base = addBuildDepend pkgs.gobject-introspection super.haskell-gi-base; - # requires valid, writeable $HOME - hatex-guide = overrideCabal (drv: { - preConfigure = '' - ${drv.preConfigure or ""} - export HOME=$PWD - ''; - }) super.hatex-guide; - - # https://github.com/plow-technologies/servant-streaming/issues/12 - servant-streaming-server = dontCheck super.servant-streaming-server; - # https://github.com/haskell-servant/servant/pull/1238 servant-client-core = if (pkgs.lib.getVersion super.servant-client-core) == "0.16" then @@ -761,14 +643,6 @@ builtins.intersectAttrs super { else super.servant-client-core; - # tests run executable, relying on PATH - # without this, tests fail with "Couldn't launch intero process" - intero = overrideCabal (drv: { - preCheck = '' - export PATH="$PWD/dist/build/intero:$PATH" - ''; - }) super.intero; - # Break infinite recursion cycle with criterion and network-uri. js-flot = dontCheck super.js-flot; @@ -888,9 +762,6 @@ builtins.intersectAttrs super { ''; }) super.sbv; - # The test-suite requires a running PostgreSQL server. - Frames-beam = dontCheck super.Frames-beam; - # Test suite requires yices to be in PATH crucible-symio = overrideCabal (drv: { testToolDepends = drv.testToolDepends or [ ] ++ [ @@ -1050,7 +921,6 @@ builtins.intersectAttrs super { HTTP = dontCheck super.HTTP; # Break infinite recursions. - Dust-crypto = dontCheck super.Dust-crypto; nanospec = dontCheck super.nanospec; options = dontCheck super.options; snap-server = dontCheck super.snap-server; @@ -1183,7 +1053,6 @@ builtins.intersectAttrs super { # The test suites fail because there's no PostgreSQL database running in our # build sandbox. - hasql-queue = dontCheck super.hasql-queue; postgresql-libpq-notify = dontCheck super.postgresql-libpq-notify; postgresql-pure = dontCheck super.postgresql-pure; @@ -1260,14 +1129,6 @@ builtins.intersectAttrs super { ''; }) super.ihaskell; - # tests need to execute the built executable - stutter = overrideCabal (drv: { - preCheck = '' - export PATH=dist/build/stutter:$PATH - '' - + (drv.preCheck or ""); - }) super.stutter; - # Install man page and generate shell completions pinboard-notes-backup = overrideCabal (drv: { postInstall = '' @@ -1471,35 +1332,6 @@ builtins.intersectAttrs super { })) ]; - # ats-format uses cli-setup in Setup.hs which is quite happy to write - # to arbitrary files in $HOME. This doesn't either not achieve anything - # or even fail, so we prevent it and install everything necessary ourselves. - # See also: https://hackage.haskell.org/package/cli-setup-0.2.1.4/docs/src/Distribution.CommandLine.html#setManpathGeneric - ats-format = self.generateOptparseApplicativeCompletions [ "atsfmt" ] ( - justStaticExecutables ( - overrideCabal (drv: { - # use vanilla Setup.hs - preCompileBuildDriver = '' - cat > Setup.hs << EOF - module Main where - import Distribution.Simple - main = defaultMain - EOF - '' - + (drv.preCompileBuildDriver or ""); - # install man page - buildTools = [ - pkgs.buildPackages.installShellFiles - ] - ++ (drv.buildTools or [ ]); - postInstall = '' - installManPage man/atsfmt.1 - '' - + (drv.postInstall or ""); - }) super.ats-format - ) - ); - # Some hash implementations are x86 only, but part of the test suite. # So executing and building it on non-x86 platforms will always fail. hashes = dontCheckIf (!pkgs.stdenv.hostPlatform.isx86) super.hashes; @@ -1716,9 +1548,6 @@ builtins.intersectAttrs super { keid-render-basic = addBuildTool pkgs.glslang super.keid-render-basic; - # Disable checks to break dependency loop with SCalendar - scalendar = dontCheck super.scalendar; - # Make sure we build xz against nixpkgs' xz package instead of # Hackage repackaging of the upstream sources. xz = enableCabalFlag "system-xz" super.xz; diff --git a/pkgs/development/haskell-modules/configuration-tensorflow.nix b/pkgs/development/haskell-modules/configuration-tensorflow.nix index 078dd8e535bb7..9a0ea6c487f53 100644 --- a/pkgs/development/haskell-modules/configuration-tensorflow.nix +++ b/pkgs/development/haskell-modules/configuration-tensorflow.nix @@ -25,15 +25,5 @@ in { tensorflow-proto = setTensorflowSourceRoot "tensorflow-proto" super.tensorflow-proto; - tensorflow = overrideCabal (drv: { - libraryHaskellDepends = drv.libraryHaskellDepends ++ [ self.vector-split ]; - }) (setTensorflowSourceRoot "tensorflow" super.tensorflow); - - tensorflow-core-ops = setTensorflowSourceRoot "tensorflow-core-ops" super.tensorflow-core-ops; - - tensorflow-logging = setTensorflowSourceRoot "tensorflow-logging" super.tensorflow-logging; - tensorflow-opgen = setTensorflowSourceRoot "tensorflow-opgen" super.tensorflow-opgen; - - tensorflow-ops = setTensorflowSourceRoot "tensorflow-ops" super.tensorflow-ops; } diff --git a/pkgs/development/haskell-modules/hackage-packages.nix b/pkgs/development/haskell-modules/hackage-packages.nix index 6b0f320da9e15..6d67108a33ea1 100644 --- a/pkgs/development/haskell-modules/hackage-packages.nix +++ b/pkgs/development/haskell-modules/hackage-packages.nix @@ -49,105 +49,6 @@ self: { } ) { }; - "3d-graphics-examples" = callPackage ( - { - mkDerivation, - base, - GLUT, - OpenGL, - random, - }: - mkDerivation { - pname = "3d-graphics-examples"; - version = "0.0.0.2"; - sha256 = "02d5q4vb6ilwgvqsgiw8pdc3cflsq495k7q27pyv2gyn0434rcgx"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - GLUT - OpenGL - random - ]; - description = "Examples of 3D graphics programming with OpenGL"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "3dmodels" = callPackage ( - { - mkDerivation, - attoparsec, - base, - bytestring, - linear, - packer, - }: - mkDerivation { - pname = "3dmodels"; - version = "0.3.0"; - sha256 = "00pp8g1b59950i5ik9ycimxd284vsv1hnfgxgg1mjvxwaj2pbyhr"; - libraryHaskellDepends = [ - attoparsec - base - bytestring - linear - packer - ]; - description = "3D model parsers"; - license = lib.licenses.lgpl3Only; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "4Blocks" = callPackage ( - { - mkDerivation, - base, - cairo, - containers, - gtk, - haskell98, - mtl, - }: - mkDerivation { - pname = "4Blocks"; - version = "0.2"; - sha256 = "1lya7320jf2cvd69prvjfwdlci2j17m21qcqaqxaczlrv4aykg6w"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - cairo - containers - gtk - haskell98 - mtl - ]; - description = "A tetris-like game (works with GHC 6.8.3 and Gtk2hs 0.9.13)"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "4Blocks"; - } - ) { }; - - "AAI" = callPackage ( - { mkDerivation, base }: - mkDerivation { - pname = "AAI"; - version = "0.2.0.1"; - sha256 = "0vdq0hscpbl5a9bpf8fiykmyg2c3yvivb0mzcdy99ha0j1p4rwfh"; - libraryHaskellDepends = [ base ]; - description = "Abstract Application Interface"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "ABList" = callPackage ( { mkDerivation, @@ -206,20 +107,6 @@ self: { } ) { }; - "AC-BuildPlatform" = callPackage ( - { mkDerivation, base }: - mkDerivation { - pname = "AC-BuildPlatform"; - version = "1.1.0"; - sha256 = "0vlhakc6mc4zzyvb54rgmskkj8hp43zy35giimk0g7i5068r2czh"; - libraryHaskellDepends = [ base ]; - description = "Detect which OS you're running on"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "AC-Colour" = callPackage ( { mkDerivation, base }: mkDerivation { @@ -232,68 +119,6 @@ self: { } ) { }; - "AC-EasyRaster-GTK" = callPackage ( - { - mkDerivation, - array, - base, - gtk, - }: - mkDerivation { - pname = "AC-EasyRaster-GTK"; - version = "1.1.3"; - sha256 = "082il76032biyan170p4qp13154nmkzil4v2wv7fmjn9z7v8w49b"; - libraryHaskellDepends = [ - array - base - gtk - ]; - description = "GTK+ pixel plotting"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "AC-HalfInteger" = callPackage ( - { mkDerivation, base }: - mkDerivation { - pname = "AC-HalfInteger"; - version = "1.2.1"; - sha256 = "0wwnb7a6dmzgh122qg322mi3vpyk93xw52cql6dx18sqdbxyxdbb"; - revision = "1"; - editedCabalFile = "02k1fg86iyzbb0bxfn8r6s7z8bkahr8y02wps1l5j958jpckd6c9"; - libraryHaskellDepends = [ base ]; - description = "Efficient half-integer type"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "AC-MiniTest" = callPackage ( - { - mkDerivation, - base, - transformers, - }: - mkDerivation { - pname = "AC-MiniTest"; - version = "1.1.1"; - sha256 = "0ish59q50npljgmfrcffcyx6scf99xdncmy1kpwy1i5622r1kcps"; - revision = "1"; - editedCabalFile = "0faw83njfarccnad1hgy1cf3wmihfghk3qhw2s7zf6p84v6zc27y"; - libraryHaskellDepends = [ - base - transformers - ]; - description = "A simple test framework"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "AC-PPM" = callPackage ( { mkDerivation, @@ -325,50 +150,6 @@ self: { } ) { }; - "AC-Terminal" = callPackage ( - { - mkDerivation, - ansi-terminal, - base, - }: - mkDerivation { - pname = "AC-Terminal"; - version = "1.0"; - sha256 = "0d0vdqf7i49d2hsdm7x9ad88l7kfc1wvkzppzhs8k9xf4gbrvl43"; - revision = "1"; - editedCabalFile = "1i9bjryhccdp8gfm9xs5bbfsy32hpyv2zckd95m7g6bc4jvp8cjm"; - libraryHaskellDepends = [ - ansi-terminal - base - ]; - description = "Trivial wrapper over ansi-terminal"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "AC-VanillaArray" = callPackage ( - { - mkDerivation, - base, - ghc-prim, - }: - mkDerivation { - pname = "AC-VanillaArray"; - version = "1.1.2"; - sha256 = "044kiwc5g2irky0k3fg9l2qqnvcnh9vdx0yz8m1awnkab6mk0i3v"; - libraryHaskellDepends = [ - base - ghc-prim - ]; - description = "Immutable arrays with plain integer indicies"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "AC-Vector" = callPackage ( { mkDerivation, base }: mkDerivation { @@ -433,476 +214,6 @@ self: { } ) { }; - "ADPfusion" = callPackage ( - { - mkDerivation, - base, - bits, - containers, - deepseq, - DPutils, - ghc-prim, - mmorph, - mtl, - OrderedBits, - primitive, - PrimitiveArray, - QuickCheck, - singletons, - strict, - tasty, - tasty-quickcheck, - tasty-th, - template-haskell, - th-orphans, - transformers, - tuple, - vector, - }: - mkDerivation { - pname = "ADPfusion"; - version = "0.6.0.0"; - sha256 = "093gg9s2rk2sqjpkyy9z4smlsjlxnn5afnasj1bklf09d2z324gn"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - bits - containers - deepseq - DPutils - ghc-prim - mmorph - mtl - OrderedBits - primitive - PrimitiveArray - QuickCheck - singletons - strict - template-haskell - th-orphans - transformers - tuple - vector - ]; - testHaskellDepends = [ - base - bits - containers - deepseq - DPutils - ghc-prim - mmorph - mtl - OrderedBits - primitive - PrimitiveArray - QuickCheck - singletons - strict - tasty - tasty-quickcheck - tasty-th - template-haskell - th-orphans - transformers - tuple - vector - ]; - description = "Efficient, high-level dynamic programming"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "ADPfusionForest" = callPackage ( - { - mkDerivation, - ADPfusion, - base, - containers, - criterion, - DPutils, - fgl, - ForestStructures, - GrammarProducts, - PrimitiveArray, - QuickCheck, - strict, - tasty, - tasty-quickcheck, - tasty-th, - text, - unordered-containers, - vector, - vector-algorithms, - vector-instances, - vector-th-unbox, - }: - mkDerivation { - pname = "ADPfusionForest"; - version = "0.0.0.1"; - sha256 = "1ikv9y1hs478s5ns8g42cnsga3kw8qxpn1yc3vi5ix95i6q6wi4v"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - ADPfusion - base - containers - DPutils - fgl - ForestStructures - GrammarProducts - PrimitiveArray - strict - text - unordered-containers - vector - vector-algorithms - vector-instances - vector-th-unbox - ]; - testHaskellDepends = [ - base - QuickCheck - tasty - tasty-quickcheck - tasty-th - ]; - benchmarkHaskellDepends = [ - base - criterion - ForestStructures - ]; - description = "Dynamic programming on tree and forest structures"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "ADPfusionSet" = callPackage ( - { - mkDerivation, - ADPfusion, - base, - bits, - containers, - DPutils, - mmorph, - mtl, - OrderedBits, - primitive, - PrimitiveArray, - QuickCheck, - smallcheck, - strict, - tasty, - tasty-quickcheck, - tasty-smallcheck, - tasty-th, - template-haskell, - th-orphans, - transformers, - tuple, - vector, - }: - mkDerivation { - pname = "ADPfusionSet"; - version = "0.0.0.2"; - sha256 = "05ziz4liywh2kawi4nk7ldh65k3yn3zcbmqk0vs9vy3jc2niyk7g"; - libraryHaskellDepends = [ - ADPfusion - base - bits - containers - DPutils - mmorph - mtl - OrderedBits - primitive - PrimitiveArray - QuickCheck - strict - template-haskell - th-orphans - transformers - tuple - vector - ]; - testHaskellDepends = [ - base - QuickCheck - smallcheck - tasty - tasty-quickcheck - tasty-smallcheck - tasty-th - ]; - description = "Dynamic programming for Set data structures"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "AERN-Basics" = callPackage ( - { - mkDerivation, - base, - containers, - criterion, - deepseq, - directory, - QuickCheck, - random, - test-framework, - test-framework-quickcheck2, - }: - mkDerivation { - pname = "AERN-Basics"; - version = "2011.1.0.1"; - sha256 = "1zzm6974mfwzswhx9dfh4w1qrlk44w5k8pajqmrgs8hwnx3k8awa"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - containers - criterion - deepseq - QuickCheck - random - test-framework - test-framework-quickcheck2 - ]; - executableHaskellDepends = [ - base - containers - directory - ]; - description = "foundational type classes for approximating exact real numbers"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "toolAERN-bench-csv-to-gnuplot"; - broken = true; - } - ) { }; - - "AERN-Net" = callPackage ( - { - mkDerivation, - AERN-Real, - AERN-RnToRm, - base, - binary, - containers, - html, - stm, - time, - }: - mkDerivation { - pname = "AERN-Net"; - version = "0.2.1.1"; - sha256 = "1h7yw85zp8dlyjfi5mr3zvb8cn3xbfxw19nqkz6r7v6s5hfg50qg"; - libraryHaskellDepends = [ - AERN-Real - AERN-RnToRm - base - binary - containers - html - stm - time - ]; - description = "Compositional lazy dataflow networks for exact real number computation"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "AERN-Real" = callPackage ( - { - mkDerivation, - AERN-Basics, - base, - criterion, - QuickCheck, - test-framework, - test-framework-quickcheck2, - }: - mkDerivation { - pname = "AERN-Real"; - version = "2011.1.0.1"; - sha256 = "1m8fc3agvm5r5vgzsxhjdmmxl679n68isa5cwbbfrv38c20s2p6v"; - libraryHaskellDepends = [ - AERN-Basics - base - criterion - QuickCheck - test-framework - test-framework-quickcheck2 - ]; - description = "arbitrary precision real interval arithmetic"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "AERN-Real-Double" = callPackage ( - { - mkDerivation, - AERN-Basics, - AERN-Real, - AERN-Real-Interval, - base, - criterion, - ieee-utils, - QuickCheck, - test-framework, - test-framework-quickcheck2, - }: - mkDerivation { - pname = "AERN-Real-Double"; - version = "2011.1.0.2"; - sha256 = "0hwbw2nibgfddqfhbq8fcm1anibdfa9kgbbxnsbxvkkl6l52cbg2"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - AERN-Basics - AERN-Real - AERN-Real-Interval - base - ieee-utils - QuickCheck - test-framework - test-framework-quickcheck2 - ]; - executableHaskellDepends = [ - AERN-Basics - AERN-Real - AERN-Real-Interval - base - criterion - ieee-utils - QuickCheck - test-framework - test-framework-quickcheck2 - ]; - description = "arbitrary precision real interval arithmetic"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "AERN-Real-Interval" = callPackage ( - { - mkDerivation, - AERN-Basics, - AERN-Real, - base, - deepseq, - QuickCheck, - test-framework, - test-framework-quickcheck2, - }: - mkDerivation { - pname = "AERN-Real-Interval"; - version = "2011.1.0.1"; - sha256 = "1myh6r2cg4sg7k21y3p415pwm2vjfggi92631wzcjxk8ygcafbwv"; - libraryHaskellDepends = [ - AERN-Basics - AERN-Real - base - deepseq - QuickCheck - test-framework - test-framework-quickcheck2 - ]; - description = "arbitrary precision real interval arithmetic"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "AERN-RnToRm" = callPackage ( - { - mkDerivation, - AERN-Real, - base, - binary, - containers, - directory, - filepath, - html, - QuickCheck, - time, - }: - mkDerivation { - pname = "AERN-RnToRm"; - version = "0.5.0.1"; - sha256 = "0rx93h1h303r4gf9jq32gl08lg4jkfc12kzjnjxampwx75b4lgjv"; - libraryHaskellDepends = [ - AERN-Real - base - binary - containers - directory - filepath - html - QuickCheck - time - ]; - description = "polynomial function enclosures (PFEs) approximating exact real functions"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "AERN-RnToRm-Plot" = callPackage ( - { - mkDerivation, - AERN-Real, - AERN-RnToRm, - base, - binary, - containers, - directory, - filepath, - glade, - glib, - gtk, - gtkglext, - mtl, - OpenGL, - stm, - time, - }: - mkDerivation { - pname = "AERN-RnToRm-Plot"; - version = "0.2.0.3"; - sha256 = "0zpp0s90q2jhpagf6iswbmm6hyi0x2hns8vqd5swwa8d258avrbq"; - libraryHaskellDepends = [ - AERN-Real - AERN-RnToRm - base - binary - containers - directory - filepath - glade - glib - gtk - gtkglext - mtl - OpenGL - stm - time - ]; - description = "GL plotting of polynomial function enclosures (PFEs)"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "AES" = callPackage ( { mkDerivation, @@ -944,37 +255,6 @@ self: { } ) { }; - "AGI" = callPackage ( - { - mkDerivation, - base, - mtl, - network, - parsec, - random, - syb, - unix, - }: - mkDerivation { - pname = "AGI"; - version = "1.3"; - sha256 = "1h0hcdvdjs635inq96fpyh2g3d482ilpqn474vk1xkycww0xgsnv"; - libraryHaskellDepends = [ - base - mtl - network - parsec - random - syb - unix - ]; - description = "A library for writing AGI scripts for Asterisk"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "ALUT" = callPackage ( { mkDerivation, @@ -1004,37 +284,6 @@ self: { } ) { inherit (pkgs) freealut; }; - "AMI" = callPackage ( - { - mkDerivation, - base, - bytestring, - containers, - mtl, - network, - pureMD5, - stm, - }: - mkDerivation { - pname = "AMI"; - version = "0.1"; - sha256 = "00w6kcikc5ac26786fwshwbh8ndj9aq1w7wz263j5rnhdf12irky"; - libraryHaskellDepends = [ - base - bytestring - containers - mtl - network - pureMD5 - stm - ]; - description = "Low-level bindings for Asterisk Manager Interface (AMI)"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "ANum" = callPackage ( { mkDerivation, base }: mkDerivation { @@ -1048,38 +297,6 @@ self: { } ) { }; - "ASN1" = callPackage ( - { - mkDerivation, - base, - containers, - HUnit, - mtl, - NewBinary, - old-time, - pretty, - QuickCheck, - }: - mkDerivation { - pname = "ASN1"; - version = "0.0.1.1"; - sha256 = "188mf1k8p4h8ryngpcs6ldz9n2590h9wfxzxsj396is5r8rxscmh"; - libraryHaskellDepends = [ - base - containers - HUnit - mtl - NewBinary - old-time - pretty - QuickCheck - ]; - description = "ASN.1 support for Haskell"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "AVar" = callPackage ( { mkDerivation, base }: mkDerivation { @@ -1114,295 +331,6 @@ self: { } ) { }; - "AbortT-monadstf" = callPackage ( - { - mkDerivation, - AbortT-transformers, - base, - monads-tf, - }: - mkDerivation { - pname = "AbortT-monadstf"; - version = "1.0"; - sha256 = "1ijv4bs299ijqbkspbg1kry627ra6p6qlkd74q4y2pvamrm4dn6f"; - libraryHaskellDepends = [ - AbortT-transformers - base - monads-tf - ]; - description = "Monads-tf instances for the AbortT monad transformer"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "AbortT-mtl" = callPackage ( - { - mkDerivation, - AbortT-transformers, - base, - mtl, - }: - mkDerivation { - pname = "AbortT-mtl"; - version = "1.0.0.1"; - sha256 = "1x2iw46nzfjj36pfdzv5n0q6f6l7kgz62gnxpsj2f5p7w10zlxai"; - libraryHaskellDepends = [ - AbortT-transformers - base - mtl - ]; - description = "mtl instances for the AbortT monad transformer"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "AbortT-transformers" = callPackage ( - { - mkDerivation, - base, - HUnit, - QuickCheck, - test-framework, - test-framework-hunit, - test-framework-quickcheck2, - transformers, - }: - mkDerivation { - pname = "AbortT-transformers"; - version = "1.0.1.3"; - sha256 = "14bv2bmd6fi1kf0id3ah7gfabbqzbpahws6zy11ji6h3j29pwk8y"; - libraryHaskellDepends = [ - base - transformers - ]; - testHaskellDepends = [ - base - HUnit - QuickCheck - test-framework - test-framework-hunit - test-framework-quickcheck2 - transformers - ]; - description = "A monad and monadic transformer providing \"abort\" functionality"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "ActionKid" = callPackage ( - { - mkDerivation, - base, - containers, - gloss, - gloss-juicy, - hspec, - lens, - mtl, - OpenGL, - StateVar, - template-haskell, - }: - mkDerivation { - pname = "ActionKid"; - version = "0.1.1.0"; - sha256 = "0dsfgclgx4kqjnvn54vvxcbn8l8jyy9gb06qp13hfm5l7lxfjzxq"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - containers - gloss - gloss-juicy - lens - mtl - OpenGL - StateVar - template-haskell - ]; - executableHaskellDepends = [ - base - containers - gloss - gloss-juicy - lens - mtl - OpenGL - StateVar - template-haskell - ]; - testHaskellDepends = [ - base - hspec - ]; - description = "An easy-to-use video game framework for Haskell"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "actionkid"; - broken = true; - } - ) { }; - - "Adaptive" = callPackage ( - { mkDerivation, base }: - mkDerivation { - pname = "Adaptive"; - version = "0.23"; - sha256 = "0n27d8dvk0qq68zp4l5bsj5y9xqmrk9d25psrrf29mmw1f43wp8c"; - revision = "1"; - editedCabalFile = "1db4p2bkwg27zcz9hdn2d4aj24f3mrjqwd86cglyv5didpwnrirn"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base ]; - description = "Library for incremental computing"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "spreadsheet"; - broken = true; - } - ) { }; - - "Adaptive-Blaisorblade" = callPackage ( - { mkDerivation, base }: - mkDerivation { - pname = "Adaptive-Blaisorblade"; - version = "0.23"; - sha256 = "08iblifpyi569zh55ha5bi0nfibz0zlqiibwaimx2k1nd6n6yv5a"; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ base ]; - description = "Library for incremental computing"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "spreadsheet"; - broken = true; - } - ) { }; - - "Advgame" = callPackage ( - { - mkDerivation, - base, - haskell98, - mtl, - }: - mkDerivation { - pname = "Advgame"; - version = "0.1.2"; - sha256 = "16grzya42pzn3zaahs77lw5n2ka138bs0g3vgi0qbxlvxwy5ikyy"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - haskell98 - mtl - ]; - description = "Lisperati's adventure game in Lisp translated to Haskell"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "advgame"; - } - ) { }; - - "Advise-me" = callPackage ( - { - mkDerivation, - base, - bytestring, - Cabal, - containers, - convertible, - directory, - filepath, - HDBC, - HDBC-sqlite3, - http-types, - ideas, - ideas-math-types, - lens, - mtl, - optparse-applicative, - parsec, - QuickCheck, - random, - semigroups, - sqlite-simple, - text, - time, - uniplate, - wai, - wai-extra, - wl-pprint, - xlsx, - }: - mkDerivation { - pname = "Advise-me"; - version = "0.1"; - sha256 = "1ddzzrbydx0xaqian1s8m4asj079c3vmhb0s7s05f9g1nm6a8qfq"; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base - bytestring - Cabal - containers - convertible - directory - filepath - HDBC - HDBC-sqlite3 - ideas - ideas-math-types - lens - mtl - parsec - QuickCheck - random - semigroups - sqlite-simple - text - time - uniplate - wl-pprint - xlsx - ]; - executableHaskellDepends = [ - base - bytestring - containers - convertible - directory - filepath - HDBC - HDBC-sqlite3 - http-types - ideas - ideas-math-types - mtl - optparse-applicative - parsec - QuickCheck - random - sqlite-simple - text - time - uniplate - wai - wai-extra - wl-pprint - ]; - description = "Assessment services for the Advise-Me project"; - license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "AesonBson" = callPackage ( { mkDerivation, @@ -1448,35 +376,6 @@ self: { } ) { }; - "Agata" = callPackage ( - { - mkDerivation, - base, - containers, - mtl, - QuickCheck, - tagged, - template-haskell, - }: - mkDerivation { - pname = "Agata"; - version = "0.2.1.1"; - sha256 = "0v8gy2gdbn9133yki7s71a7ph50xzawdvciiahr463apbn6439hm"; - libraryHaskellDepends = [ - base - containers - mtl - QuickCheck - tagged - template-haskell - ]; - description = "Generator-generator for QuickCheck"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "Agda" = callPackage ( { mkDerivation, @@ -1620,30 +519,6 @@ self: { } ) { inherit (pkgs) emacs; }; - "Agda-executable" = callPackage ( - { - mkDerivation, - Agda, - base, - }: - mkDerivation { - pname = "Agda-executable"; - version = "2.3.0.1"; - sha256 = "156nzvpmqi7yizjr4yym2ybc0iv4nqfp84qrpdxcha682k298ib1"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - Agda - base - ]; - description = "Command-line program for type-checking and compiling Agda programs"; - license = "unknown"; - hydraPlatforms = lib.platforms.none; - mainProgram = "agda"; - broken = true; - } - ) { }; - "AhoCorasick" = callPackage ( { mkDerivation, @@ -1680,191 +555,6 @@ self: { } ) { }; - "AlanDeniseEricLauren" = callPackage ( - { - mkDerivation, - base, - containers, - criterion, - hspec, - hspec-core, - MonadRandom, - mtl, - QuickCheck, - random, - random-shuffle, - transformers, - vector, - }: - mkDerivation { - pname = "AlanDeniseEricLauren"; - version = "0.1.0.1"; - sha256 = "10xhx6l9bmskqpxr18cyz14hfn1lzp2isg9ckahgrn4ajf386csj"; - libraryHaskellDepends = [ - base - containers - MonadRandom - mtl - random - random-shuffle - vector - ]; - testHaskellDepends = [ - base - containers - hspec - hspec-core - MonadRandom - QuickCheck - random - transformers - ]; - benchmarkHaskellDepends = [ - base - containers - criterion - ]; - description = "Find the minimal subset/submap satisfying some property"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "AlgoRhythm" = callPackage ( - { - mkDerivation, - base, - bytestring, - containers, - data-default, - derive, - directory, - Euterpea, - HCodecs, - HUnit, - kmeans, - lilypond, - midi, - mtl, - prettify, - QuickCheck, - random, - template-haskell, - test-framework, - test-framework-hunit, - test-framework-quickcheck2, - text, - transformers, - }: - mkDerivation { - pname = "AlgoRhythm"; - version = "0.1.0.0"; - sha256 = "03rmcafbnbb43fww1y6rfi8dpbl85yi71rjxmz7mqxh4zn5c9jwz"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - containers - data-default - derive - Euterpea - HCodecs - kmeans - lilypond - midi - mtl - prettify - QuickCheck - random - template-haskell - text - transformers - ]; - executableHaskellDepends = [ base ]; - testHaskellDepends = [ - base - bytestring - derive - directory - Euterpea - HCodecs - HUnit - lilypond - QuickCheck - random - test-framework - test-framework-hunit - test-framework-quickcheck2 - transformers - ]; - description = "Algorithmic music composition"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "music-exe"; - } - ) { }; - - "AlgorithmW" = callPackage ( - { - mkDerivation, - base, - containers, - mtl, - pretty, - }: - mkDerivation { - pname = "AlgorithmW"; - version = "0.1.1.0"; - sha256 = "0avkxhw5hp00znhmqw3kqxx165ba5y5kgq8b9ahp679p0qf84a3c"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - containers - mtl - pretty - ]; - description = "Example implementation of Algorithm W for Hindley-Milner type inference"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "AlgorithmW"; - broken = true; - } - ) { }; - - "AlignmentAlgorithms" = callPackage ( - { - mkDerivation, - ADPfusion, - base, - containers, - fmlist, - FormalGrammars, - GrammarProducts, - PrimitiveArray, - vector, - }: - mkDerivation { - pname = "AlignmentAlgorithms"; - version = "0.1.0.0"; - sha256 = "0k6wljkj7ffjbfhclgfbij5wh9p3zjnchrnh3cwbw4s1cf2gsk78"; - libraryHaskellDepends = [ - ADPfusion - base - containers - fmlist - FormalGrammars - GrammarProducts - PrimitiveArray - vector - ]; - description = "Collection of alignment algorithms"; - license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "Allure" = callPackage ( { mkDerivation, @@ -1931,102 +621,6 @@ self: { } ) { }; - "AndroidViewHierarchyImporter" = callPackage ( - { - mkDerivation, - base, - bytestring, - cmdtheline, - containers, - mtl, - network, - opml, - pretty, - process, - QuickCheck, - split, - transformers, - xml, - }: - mkDerivation { - pname = "AndroidViewHierarchyImporter"; - version = "0.1.0.1"; - sha256 = "1ksmxhriqy8z3fymnvhg7bwaj032nrsvq3gygfwkg3m8538v9xyc"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - bytestring - cmdtheline - containers - mtl - network - opml - pretty - process - QuickCheck - split - transformers - xml - ]; - description = "Android view hierarchy importer"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "AndroidViewHierarchyImporter"; - } - ) { }; - - "Animas" = callPackage ( - { - mkDerivation, - base, - random, - }: - mkDerivation { - pname = "Animas"; - version = "0.2"; - sha256 = "01vpw9s93qq8c0zymp4qzv0ljn9jrnwi3x68qx9lcjr6spa0rkvm"; - libraryHaskellDepends = [ - base - random - ]; - description = "Updated version of Yampa: a library for programming hybrid systems"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "Annotations" = callPackage ( - { - mkDerivation, - base, - mtl, - multirec, - parsec, - }: - mkDerivation { - pname = "Annotations"; - version = "0.2.2"; - sha256 = "070ncq7na8vljjkgdhh9jq9n1a7x50c54f1b1vgj2pdsb9vd9h1i"; - libraryHaskellDepends = [ - base - mtl - multirec - parsec - ]; - testHaskellDepends = [ - base - mtl - multirec - parsec - ]; - description = "Constructing, analyzing and destructing annotated trees"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "Ansi2Html" = callPackage ( { mkDerivation, @@ -2053,137 +647,6 @@ self: { } ) { }; - "Aoide" = callPackage ( - { - mkDerivation, - base, - bytestring, - mtl, - process, - template-haskell, - }: - mkDerivation { - pname = "Aoide"; - version = "0.1.0.2"; - sha256 = "1nldvg8fwgbvn50prar3vs1nh704s1603fikyg2lhpz754yp0qbc"; - libraryHaskellDepends = [ - base - bytestring - mtl - process - template-haskell - ]; - description = "A simple music library with the capability of generating .ly and .mid files."; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "ApplePush" = callPackage ( - { - mkDerivation, - base, - binary, - bytestring, - haskell98, - json, - mtl, - network, - }: - mkDerivation { - pname = "ApplePush"; - version = "0.1"; - sha256 = "0dw52pj17fggi605zf4px852479yc6m6ksbidyw84lkys5dyll3r"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - binary - bytestring - haskell98 - json - mtl - network - ]; - executableHaskellDepends = [ base ]; - description = "Library for Apple Push Notification Service"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "applepushtest"; - } - ) { }; - - "AppleScript" = callPackage ( - { mkDerivation }: - mkDerivation { - pname = "AppleScript"; - version = "0.2.0.1"; - sha256 = "1jmwixyv5msb3lmza7dljvm3l0x5mx8r93zr607sx9m5x9yhlsvr"; - doHaddock = false; - description = "Call AppleScript from Haskell, and then call back into Haskell"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "ApproxFun-hs" = callPackage ( - { - mkDerivation, - base, - vector, - }: - mkDerivation { - pname = "ApproxFun-hs"; - version = "0.1.0.0"; - sha256 = "1s7amy8ij5bgv8afbjdzqd3lflvhzrrh3cs3krl1rf73y8b1nqpy"; - libraryHaskellDepends = [ - base - vector - ]; - description = "Function approximation"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "ArrayRef" = callPackage ( - { mkDerivation, base }: - mkDerivation { - pname = "ArrayRef"; - version = "0.1.3.1"; - sha256 = "1yb209v3lab3knggplmwih1ww6qalf8v86j8ggv1gkhm5jkwz1yq"; - libraryHaskellDepends = [ base ]; - description = "Unboxed references, dynamic arrays and more"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "ArrowVHDL" = callPackage ( - { - mkDerivation, - base, - process, - }: - mkDerivation { - pname = "ArrowVHDL"; - version = "1.1"; - sha256 = "1lv76m4qc1sabagllaagi7bpqf1mnmzsra333a77b6134mk2f9hb"; - libraryHaskellDepends = [ - base - process - ]; - description = "A library to generate Netlist code from Arrow descriptions"; - license = lib.licenses.publicDomain; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "AspectAG" = callPackage ( { mkDerivation, @@ -2254,214 +717,6 @@ self: { } ) { }; - "AttoBencode" = callPackage ( - { - mkDerivation, - attoparsec, - base, - blaze-builder, - blaze-textual, - bytestring, - containers, - QuickCheck, - test-framework, - test-framework-quickcheck2, - }: - mkDerivation { - pname = "AttoBencode"; - version = "0.3.1.0"; - sha256 = "0rzzi4asfmkg8nqlxdyq3gwg0q10hqrnvlmq4fjcxvxgvz1ys9hb"; - libraryHaskellDepends = [ - attoparsec - base - blaze-builder - blaze-textual - bytestring - containers - ]; - testHaskellDepends = [ - base - bytestring - containers - QuickCheck - test-framework - test-framework-quickcheck2 - ]; - description = "Fast Bencode encoding and parsing library"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "AttoJson" = callPackage ( - { - mkDerivation, - attoparsec, - base, - bytestring, - bytestring-show, - containers, - mtl, - utf8-string, - }: - mkDerivation { - pname = "AttoJson"; - version = "0.5.10"; - sha256 = "0mavq6akhx7pjdz15ckgnmgf8z9zhi5fm97lvjpjdfiggfy191d2"; - libraryHaskellDepends = [ - attoparsec - base - bytestring - bytestring-show - containers - mtl - utf8-string - ]; - description = "Simple lightweight JSON parser, generator & manipulator based on ByteString"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "Attrac" = callPackage ( - { - mkDerivation, - array, - base, - colour, - GLUT, - OpenGL, - random, - }: - mkDerivation { - pname = "Attrac"; - version = "0.1.3"; - sha256 = "0spvvgkf33km969l524580kwn7y43rjm2k0lqp9bl60nbvlsw760"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - array - base - colour - GLUT - OpenGL - random - ]; - description = "Visualisation of Strange Attractors in 3-Dimensions"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "Attrac"; - broken = true; - } - ) { }; - - "Aurochs" = callPackage ( - { - mkDerivation, - base, - containers, - parsec, - pretty, - }: - mkDerivation { - pname = "Aurochs"; - version = "0.1"; - sha256 = "0n51j50qlpkgkq64n7w96qkv270lwxac1h7ariqq7w70zgdgiqf5"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - containers - parsec - pretty - ]; - description = "Yet another parser generator for C/C++"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "Aurochs"; - broken = true; - } - ) { }; - - "AutoForms" = callPackage ( - { - mkDerivation, - array, - base, - haskell98, - mtl, - syb-with-class, - template-haskell, - wx, - wxcore, - }: - mkDerivation { - pname = "AutoForms"; - version = "0.4.2"; - sha256 = "14dd6s3j9w738dvhyhxb9q8w9m0xhd6fm0d40b3gzl5sjb6g16zf"; - libraryHaskellDepends = [ - array - base - haskell98 - mtl - syb-with-class - template-haskell - wx - wxcore - ]; - description = "GUI library based upon generic programming (SYB3)"; - license = "LGPL"; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "AvlTree" = callPackage ( - { - mkDerivation, - base, - COrdering, - }: - mkDerivation { - pname = "AvlTree"; - version = "4.2"; - sha256 = "0bw6856h75wks0mfvvqqm5i31sici1hacyl5zfj225jf9gn5q7dx"; - libraryHaskellDepends = [ - base - COrdering - ]; - description = "Balanced binary trees using the AVL algorithm"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "BASIC" = callPackage ( - { - mkDerivation, - base, - containers, - llvm, - random, - timeit, - }: - mkDerivation { - pname = "BASIC"; - version = "0.1.5.0"; - sha256 = "1ypq7m09ki5wbwkvmqdl7ch40cbdfhb91kq8n17im184r5liyxlc"; - libraryHaskellDepends = [ - base - containers - llvm - random - timeit - ]; - description = "Embedded BASIC"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "BCMtools" = callPackage ( { mkDerivation, @@ -2697,223 +952,6 @@ self: { } ) { }; - "Baggins" = callPackage ( - { - mkDerivation, - base, - cairo, - containers, - mtl, - }: - mkDerivation { - pname = "Baggins"; - version = "1.0"; - sha256 = "0mgxq8zqyfmwkvn91y91c2vjhrni3br0vgiih2ynlafnas1ji0bc"; - revision = "1"; - editedCabalFile = "16206xd8lm8fkvpxbm19h403264xyjki07s9lam3pgq985xbqk35"; - libraryHaskellDepends = [ - base - cairo - containers - mtl - ]; - description = "Tools for self-assembly"; - license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "Bang" = callPackage ( - { - mkDerivation, - base, - bifunctors, - hmidi, - mtl, - stm, - time, - transformers, - }: - mkDerivation { - pname = "Bang"; - version = "0.1.1.1"; - sha256 = "0vw7p7iknk7inzmcx9vvdmzi05i5h4djsgr5wqwk3jayshcl0m5a"; - libraryHaskellDepends = [ - base - bifunctors - hmidi - mtl - stm - time - transformers - ]; - description = "A Drum Machine DSL for Haskell"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "Barracuda" = callPackage ( - { - mkDerivation, - adhoc-network, - array, - base, - bytestring, - containers, - Crypto, - dataenc, - directory, - filepath, - gtk, - HaXml, - heap, - hsgnutls, - mtl, - network, - old-locale, - parsec, - pkcs1, - random, - regex-compat, - stm, - time, - unix, - utf8-string, - xml-parsec, - }: - mkDerivation { - pname = "Barracuda"; - version = "1.0.2"; - sha256 = "0i8b6g2jvwg5r5gi1q3fgckh675pc6viqdvncl4ycr4zf72r4jj3"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - adhoc-network - array - base - bytestring - containers - Crypto - dataenc - directory - filepath - gtk - HaXml - heap - hsgnutls - mtl - network - old-locale - parsec - pkcs1 - random - regex-compat - stm - time - unix - utf8-string - xml-parsec - ]; - executableHaskellDepends = [ - adhoc-network - array - base - bytestring - containers - Crypto - dataenc - directory - filepath - gtk - HaXml - heap - hsgnutls - mtl - network - old-locale - parsec - pkcs1 - random - regex-compat - stm - time - unix - utf8-string - xml-parsec - ]; - description = "An ad-hoc P2P chat program"; - license = "GPL"; - hydraPlatforms = lib.platforms.none; - mainProgram = "Barracuda"; - } - ) { }; - - "Befunge93" = callPackage ( - { - mkDerivation, - array, - base, - mtl, - random, - }: - mkDerivation { - pname = "Befunge93"; - version = "0.1"; - sha256 = "1hs4p5s30ml97yrr91ahy7275jh4vyvh2l5p0p3jvpfysvg9sl6l"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - array - base - mtl - random - ]; - description = "An interpreter for the Befunge-93 Programming Language"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "Befunge93"; - broken = true; - } - ) { }; - - "BenchmarkHistory" = callPackage ( - { - mkDerivation, - base, - bytestring, - cassava, - deepseq, - directory, - statistics, - time, - vector, - }: - mkDerivation { - pname = "BenchmarkHistory"; - version = "0.0.0.2"; - sha256 = "0ggsac4gyw8w0nhlvya29ghwa4i369bdja7yicxhrrwh1bilvax3"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - bytestring - cassava - deepseq - directory - statistics - time - vector - ]; - description = "Benchmark functions with history"; - license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "BerkeleyDB" = callPackage ( { mkDerivation, @@ -2937,67 +975,6 @@ self: { } ) { inherit (pkgs) db; }; - "BerkeleyDBXML" = - callPackage - ( - { - mkDerivation, - base, - BerkeleyDB, - bytestring, - db, - dbxml, - xercesc, - xqilla, - }: - mkDerivation { - pname = "BerkeleyDBXML"; - version = "0.7.2"; - sha256 = "1ymdi5qi4hxaikqf8min830r1rs1z4bvy9bdybsq378v7mrgfihp"; - libraryHaskellDepends = [ - base - BerkeleyDB - bytestring - ]; - librarySystemDepends = [ - db - dbxml - xercesc - xqilla - ]; - description = "Berkeley DB XML binding"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) - { - inherit (pkgs) db; - inherit (pkgs) dbxml; - inherit (pkgs) xercesc; - inherit (pkgs) xqilla; - }; - - "BerlekampAlgorithm" = callPackage ( - { - mkDerivation, - base, - besout, - }: - mkDerivation { - pname = "BerlekampAlgorithm"; - version = "0.1.0.0"; - sha256 = "14wjpfr9d8fpgl1jkpm2123lprr3hf3a6smkaflzkgxqlgcrkmyr"; - libraryHaskellDepends = [ - base - besout - ]; - description = "Factorization of polynomials over finite field"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "BesselJ" = callPackage ( { mkDerivation, @@ -3027,32 +1004,6 @@ self: { description = "Bessel J-function, Anger J-function, Weber E-function, and Anger-Weber function"; license = lib.licenses.bsd3; hydraPlatforms = lib.platforms.none; - } - ) { }; - - "BiGUL" = callPackage ( - { - mkDerivation, - base, - containers, - mtl, - template-haskell, - th-extras, - }: - mkDerivation { - pname = "BiGUL"; - version = "1.0.1"; - sha256 = "0n9z72ids27m5fw26576cxhyqilsxvazfvmjkhzzh55413j7nwli"; - libraryHaskellDepends = [ - base - containers - mtl - template-haskell - th-extras - ]; - description = "The Bidirectional Generic Update Language"; - license = lib.licenses.publicDomain; - hydraPlatforms = lib.platforms.none; broken = true; } ) { }; @@ -3085,49 +1036,6 @@ self: { } ) { }; - "BinderAnn" = callPackage ( - { - mkDerivation, - base, - containers, - ghc, - ghc-prim, - mtl, - split, - syb, - transformers, - }: - mkDerivation { - pname = "BinderAnn"; - version = "0.1.0.0"; - sha256 = "0fv5xrgqh7scbkzjisrh112zpggwl3rxfjzfqhx2rzdjgda3m41g"; - libraryHaskellDepends = [ - base - containers - ghc - ghc-prim - mtl - split - syb - transformers - ]; - testHaskellDepends = [ - base - containers - ghc - ghc-prim - mtl - split - syb - transformers - ]; - description = "Source-to-source plugin for enhancing EDSLs with static annotations"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "Binpack" = callPackage ( { mkDerivation, base }: mkDerivation { @@ -3140,110 +1048,6 @@ self: { } ) { }; - "BioHMM" = callPackage ( - { - mkDerivation, - base, - colour, - diagrams-cairo, - diagrams-lib, - directory, - either-unwrap, - filepath, - parsec, - ParsecTools, - StockholmAlignment, - SVGFonts, - text, - vector, - }: - mkDerivation { - pname = "BioHMM"; - version = "1.2.0"; - sha256 = "1mrk5w10601gvfghmmrkmxvnr5jcwnlnk05q1bfb8akiyc2d4pbh"; - libraryHaskellDepends = [ - base - colour - diagrams-cairo - diagrams-lib - directory - either-unwrap - filepath - parsec - ParsecTools - StockholmAlignment - SVGFonts - text - vector - ]; - description = "Libary for Hidden Markov Models in HMMER3 format"; - license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "Biobase" = callPackage ( - { - mkDerivation, - array, - base, - bytestring, - containers, - deepseq, - directory, - either-unwrap, - file-embed, - filemanip, - filepath, - ghc-prim, - HsTools, - mtl, - parsec, - ParsecTools, - primitive, - PrimitiveArray, - split, - tuple, - utility-ht, - vector, - vector-read-instances, - zlib, - }: - mkDerivation { - pname = "Biobase"; - version = "0.3.1.1"; - sha256 = "1zrslhf3aiwc3y0b628j1w93z78v9apcjm2sxyw5qcq6r48zrmcc"; - libraryHaskellDepends = [ - array - base - bytestring - containers - deepseq - directory - either-unwrap - file-embed - filemanip - filepath - ghc-prim - HsTools - mtl - parsec - ParsecTools - primitive - PrimitiveArray - split - tuple - utility-ht - vector - vector-read-instances - zlib - ]; - description = "Base library for bioinformatics"; - license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "BiobaseBlast" = callPackage ( { mkDerivation, @@ -3322,28 +1126,6 @@ self: { } ) { }; - "BiobaseDotP" = callPackage ( - { - mkDerivation, - base, - bytestring, - iteratee, - }: - mkDerivation { - pname = "BiobaseDotP"; - version = "0.1.0.0"; - sha256 = "0m7n3c2ly6kly146xrxzx41g3pv0cylrmzpdgv5c54x9gvb1hg7w"; - libraryHaskellDepends = [ - base - bytestring - iteratee - ]; - description = "Vienna / DotBracket / ExtSS parsers"; - license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "BiobaseENA" = callPackage ( { mkDerivation, @@ -3406,78 +1188,6 @@ self: { } ) { }; - "BiobaseEnsembl" = callPackage ( - { - mkDerivation, - aeson, - attoparsec, - base, - binary, - bytestring, - cereal, - containers, - deepseq, - directory, - either-unwrap, - text, - vector, - word8, - }: - mkDerivation { - pname = "BiobaseEnsembl"; - version = "0.2.0.1"; - sha256 = "0mypz8q4cj8fjma3pjgp6klhsnlbc6xzvbajhh85c3q3q41cn95w"; - libraryHaskellDepends = [ - aeson - attoparsec - base - binary - bytestring - cereal - containers - deepseq - directory - either-unwrap - text - vector - word8 - ]; - description = "Ensembl related datastructures and functions"; - license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "BiobaseFR3D" = callPackage ( - { - mkDerivation, - base, - BiobaseXNA, - bytestring, - containers, - filemanip, - iteratee, - tuple, - }: - mkDerivation { - pname = "BiobaseFR3D"; - version = "0.2.3.0"; - sha256 = "1y8aqxb8gq4k4l0i2wcrn2yi6f7lcmbhbvs4n063r4hgda6xfgch"; - libraryHaskellDepends = [ - base - BiobaseXNA - bytestring - containers - filemanip - iteratee - tuple - ]; - description = "Importer for FR3D resources"; - license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "BiobaseFasta" = callPackage ( { mkDerivation, @@ -3557,122 +1267,99 @@ self: { } ) { }; - "BiobaseHTTP" = callPackage ( + "BiobaseNewick" = callPackage ( { mkDerivation, aeson, + attoparsec, base, - BiobaseEnsembl, - bytestring, - conduit, - either-unwrap, - HTTP, - http-conduit, - hxt, - mtl, - network, - Taxonomy, + binary, + cereal, + cereal-text, + cmdargs, + containers, + fgl, + ForestStructures, + QuickCheck, + test-framework, + test-framework-quickcheck2, + test-framework-th, text, - transformers, + text-binary, + vector, }: mkDerivation { - pname = "BiobaseHTTP"; - version = "1.2.0"; - sha256 = "1m6lfs08zyk2xcxcmapcdfqp7afmzz3n2r3rr3qzlibwc6w7pj1d"; + pname = "BiobaseNewick"; + version = "0.0.0.2"; + sha256 = "1g8kdmraxv0qf3nzm7hi36nhw0j8kyjmjlwslp7a5n2zly2gcck4"; + revision = "1"; + editedCabalFile = "0q5r5ywb66inl3pmdyd62bfr34rgcaiyw51aycqki1q7vixv695h"; + isLibrary = true; + isExecutable = true; libraryHaskellDepends = [ aeson + attoparsec base - BiobaseEnsembl - bytestring - conduit - either-unwrap - HTTP - http-conduit - hxt - mtl - network - Taxonomy + binary + cereal + cereal-text + containers + fgl + ForestStructures + QuickCheck text - transformers + text-binary + vector ]; - description = "Libary to interface with the Bioinformatics HTTP services - Entrez Ensembl"; - license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "BiobaseHTTPTools" = callPackage ( - { - mkDerivation, - base, - BiobaseFasta, - BiobaseHTTP, - bytestring, - cmdargs, - containers, - either-unwrap, - hxt, - text, - }: - mkDerivation { - pname = "BiobaseHTTPTools"; - version = "1.0.0"; - sha256 = "1sbwhil0d0118nwx7wsryk6j8a7rysdxqksphvyrlxfdm7pd3l1z"; - revision = "1"; - editedCabalFile = "1aibwdw1bh0gl4czff4n8jkf79ma3isqwqgnjh186xn1rbnibvmw"; - isLibrary = false; - isExecutable = true; executableHaskellDepends = [ base - BiobaseFasta - BiobaseHTTP - bytestring cmdargs - containers - either-unwrap - hxt + ForestStructures text + vector ]; - description = "Tools to query Bioinformatics HTTP services e.g. Entrez, Ensembl."; - license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; + testHaskellDepends = [ + aeson + base + binary + cereal + QuickCheck + test-framework + test-framework-quickcheck2 + test-framework-th + ]; + description = "Newick file format parser"; + license = lib.licenses.bsd3; + mainProgram = "TestForestStructure"; } ) { }; - "BiobaseInfernal" = callPackage ( + "BiobaseTypes" = callPackage ( { mkDerivation, aeson, attoparsec, base, + bimaps, binary, - BiobaseTypes, - BiobaseXNA, bytestring, cereal, cereal-text, cereal-vector, - cmdargs, containers, - criterion, data-default, deepseq, DPutils, - filepath, + ForestStructures, hashable, - HUnit, + intern, lens, - parallel, - pipes, - pipes-attoparsec, - pipes-bytestring, - pipes-parse, - pipes-safe, - pipes-zlib, + mtl, primitive, PrimitiveArray, QuickCheck, - strict, + SciBaseTypes, + streaming, string-conversions, tasty, tasty-hunit, @@ -3680,27 +1367,21 @@ self: { tasty-th, text, text-binary, - transformers, - tuple, - unordered-containers, utf8-string, vector, + vector-binary-instances, vector-th-unbox, - zlib, }: mkDerivation { - pname = "BiobaseInfernal"; - version = "0.8.1.0"; - sha256 = "0y6g4prgd4k342ziblcpl7mj4yaf916r0psk9dzm6p3rq6masr0g"; - isLibrary = true; - isExecutable = true; + pname = "BiobaseTypes"; + version = "0.2.1.0"; + sha256 = "0gm5nlh8xbww614386vhm2lz118w9c6lcj3pbx5k256mzm7j5yba"; libraryHaskellDepends = [ aeson attoparsec base + bimaps binary - BiobaseTypes - BiobaseXNA bytestring cereal cereal-text @@ -3709,323 +1390,45 @@ self: { data-default deepseq DPutils - filepath + ForestStructures hashable + intern lens - parallel - pipes - pipes-attoparsec - pipes-bytestring - pipes-parse - pipes-safe - pipes-zlib + mtl primitive PrimitiveArray - strict + QuickCheck + SciBaseTypes + streaming string-conversions text text-binary - transformers - tuple - unordered-containers utf8-string vector + vector-binary-instances vector-th-unbox - zlib - ]; - executableHaskellDepends = [ - base - cmdargs ]; testHaskellDepends = [ + aeson + attoparsec base - HUnit + bimaps + binary + bytestring + cereal + cereal-text + cereal-vector + containers + data-default + deepseq + DPutils + ForestStructures + hashable + intern lens - QuickCheck - tasty - tasty-hunit - tasty-quickcheck - tasty-th - ]; - benchmarkHaskellDepends = [ - base - criterion - lens - text - transformers - ]; - description = "Infernal data structures and tools"; - license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - mainProgram = "cmsearchFilter"; - } - ) { }; - - "BiobaseMAF" = callPackage ( - { - mkDerivation, - base, - bytestring, - containers, - iteratee, - }: - mkDerivation { - pname = "BiobaseMAF"; - version = "0.5.0.0"; - sha256 = "0mwyyb7n232wgjipn9jsbqpcbxqms07adi5a6v14qaiynsjz4n1r"; - libraryHaskellDepends = [ - base - bytestring - containers - iteratee - ]; - description = "Multiple Alignment Format"; - license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "BiobaseNewick" = callPackage ( - { - mkDerivation, - aeson, - attoparsec, - base, - binary, - cereal, - cereal-text, - cmdargs, - containers, - fgl, - ForestStructures, - QuickCheck, - test-framework, - test-framework-quickcheck2, - test-framework-th, - text, - text-binary, - vector, - }: - mkDerivation { - pname = "BiobaseNewick"; - version = "0.0.0.2"; - sha256 = "1g8kdmraxv0qf3nzm7hi36nhw0j8kyjmjlwslp7a5n2zly2gcck4"; - revision = "1"; - editedCabalFile = "0q5r5ywb66inl3pmdyd62bfr34rgcaiyw51aycqki1q7vixv695h"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson - attoparsec - base - binary - cereal - cereal-text - containers - fgl - ForestStructures - QuickCheck - text - text-binary - vector - ]; - executableHaskellDepends = [ - base - cmdargs - ForestStructures - text - vector - ]; - testHaskellDepends = [ - aeson - base - binary - cereal - QuickCheck - test-framework - test-framework-quickcheck2 - test-framework-th - ]; - description = "Newick file format parser"; - license = lib.licenses.bsd3; - mainProgram = "TestForestStructure"; - } - ) { }; - - "BiobaseTrainingData" = callPackage ( - { - mkDerivation, - base, - BiobaseDotP, - BiobaseFR3D, - BiobaseXNA, - bytestring, - cmdargs, - either-unwrap, - iteratee, - vector, - }: - mkDerivation { - pname = "BiobaseTrainingData"; - version = "0.1.2.3"; - sha256 = "0qqyj3y2ivxj4d1c4bl5mdi7xm649dvksl57ba0wl0awimi5xn2s"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - BiobaseDotP - BiobaseFR3D - BiobaseXNA - bytestring - either-unwrap - iteratee - vector - ]; - executableHaskellDepends = [ cmdargs ]; - description = "RNA folding training data"; - license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - mainProgram = "MkTrainingData"; - } - ) { }; - - "BiobaseTurner" = callPackage ( - { - mkDerivation, - base, - BiobaseXNA, - bytestring, - bytestring-lexing, - conduit, - containers, - filepath, - lens, - primitive, - PrimitiveArray, - repa, - split, - vector, - }: - mkDerivation { - pname = "BiobaseTurner"; - version = "0.3.1.1"; - sha256 = "1h6yn6nwl8ifbz8y1rq5xklhmnbbjibfi9qz4n79xmv7y9bgkbxf"; - libraryHaskellDepends = [ - base - BiobaseXNA - bytestring - bytestring-lexing - conduit - containers - filepath - lens - primitive - PrimitiveArray - repa - split - vector - ]; - description = "Import Turner RNA parameters"; - license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "BiobaseTypes" = callPackage ( - { - mkDerivation, - aeson, - attoparsec, - base, - bimaps, - binary, - bytestring, - cereal, - cereal-text, - cereal-vector, - containers, - data-default, - deepseq, - DPutils, - ForestStructures, - hashable, - intern, - lens, - mtl, - primitive, - PrimitiveArray, - QuickCheck, - SciBaseTypes, - streaming, - string-conversions, - tasty, - tasty-hunit, - tasty-quickcheck, - tasty-th, - text, - text-binary, - utf8-string, - vector, - vector-binary-instances, - vector-th-unbox, - }: - mkDerivation { - pname = "BiobaseTypes"; - version = "0.2.1.0"; - sha256 = "0gm5nlh8xbww614386vhm2lz118w9c6lcj3pbx5k256mzm7j5yba"; - libraryHaskellDepends = [ - aeson - attoparsec - base - bimaps - binary - bytestring - cereal - cereal-text - cereal-vector - containers - data-default - deepseq - DPutils - ForestStructures - hashable - intern - lens - mtl - primitive - PrimitiveArray - QuickCheck - SciBaseTypes - streaming - string-conversions - text - text-binary - utf8-string - vector - vector-binary-instances - vector-th-unbox - ]; - testHaskellDepends = [ - aeson - attoparsec - base - bimaps - binary - bytestring - cereal - cereal-text - cereal-vector - containers - data-default - deepseq - DPutils - ForestStructures - hashable - intern - lens - mtl - primitive - PrimitiveArray + mtl + primitive + PrimitiveArray QuickCheck SciBaseTypes streaming @@ -4047,34 +1450,6 @@ self: { } ) { }; - "BiobaseVienna" = callPackage ( - { - mkDerivation, - base, - BiobaseTurner, - BiobaseXNA, - primitive, - PrimitiveArray, - vector, - }: - mkDerivation { - pname = "BiobaseVienna"; - version = "0.3.0.0"; - sha256 = "0bv100rmr04w8wbzabihv43lxilr0b2rm97rx54bhln1sy0ih1wj"; - libraryHaskellDepends = [ - base - BiobaseTurner - BiobaseXNA - primitive - PrimitiveArray - vector - ]; - description = "Import Vienna energy parameters"; - license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "BiobaseXNA" = callPackage ( { mkDerivation, @@ -4227,75 +1602,6 @@ self: { } ) { }; - "BirdPP" = callPackage ( - { - mkDerivation, - base, - haskell98, - }: - mkDerivation { - pname = "BirdPP"; - version = "1.1"; - sha256 = "14wbnxjyg75vc7zwg42cpk8a1cb7gm4881c52yaq1bq053g5dsz2"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - haskell98 - ]; - description = "A preprocessor for Bird-style Literate Haskell comments with Haddock markup"; - license = "GPL"; - hydraPlatforms = lib.platforms.none; - mainProgram = "BirdPP"; - } - ) { }; - - "BitStringRandomMonad" = callPackage ( - { - mkDerivation, - base, - bitstring, - bytestring, - deepseq, - mtl, - parallel, - primitive, - QuickCheck, - transformers, - vector, - }: - mkDerivation { - pname = "BitStringRandomMonad"; - version = "1.1.0.2"; - sha256 = "1g19c1dl80chmxlqqpja19y1np7xnfwspyrp895wnrzi2zydh2jm"; - libraryHaskellDepends = [ - base - bitstring - bytestring - deepseq - mtl - parallel - primitive - transformers - vector - ]; - testHaskellDepends = [ - base - bitstring - bytestring - mtl - parallel - primitive - QuickCheck - transformers - vector - ]; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "BitSyntax" = callPackage ( { mkDerivation, @@ -4321,28 +1627,6 @@ self: { } ) { }; - "Bitly" = callPackage ( - { - mkDerivation, - base, - HTTP, - json2, - }: - mkDerivation { - pname = "Bitly"; - version = "0.1.0"; - sha256 = "1pmmgg6n6pc0qvp5r4qxan32887132si0cayd0xh1g5v98fa9ari"; - libraryHaskellDepends = [ - base - HTTP - json2 - ]; - description = "A library to access bit.ly URL shortener."; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "Blammo" = callPackage ( { mkDerivation, @@ -4502,52 +1786,6 @@ self: { } ) { }; - "Blobs" = callPackage ( - { - mkDerivation, - base, - containers, - directory, - HaXml, - polyparse, - pretty, - wx, - wxcore, - }: - mkDerivation { - pname = "Blobs"; - version = "0.3"; - sha256 = "09mpf3qwr38x0ljz4ziyhdcwl5j37i353wc2dkpc6hjki9p08rgl"; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base - containers - directory - HaXml - polyparse - pretty - wx - wxcore - ]; - executableHaskellDepends = [ - base - containers - directory - HaXml - polyparse - pretty - wx - wxcore - ]; - description = "Diagram editor"; - license = "LGPL"; - hydraPlatforms = lib.platforms.none; - mainProgram = "blobs"; - } - ) { }; - "BlogLiterately" = callPackage ( { mkDerivation, @@ -4672,71 +1910,10 @@ self: { ]; description = "Include images in blog posts with inline diagrams code"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "BlogLiteratelyD"; } ) { }; - "Blogdown" = callPackage ( - { - mkDerivation, - base, - Cabal, - containers, - criterion, - MissingH, - network-uri, - parsec, - }: - mkDerivation { - pname = "Blogdown"; - version = "0.2.4"; - sha256 = "04ll74z2yqb99jydz9bw4p602hvpmk03sgix8rzwg0qb38lwvjvm"; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; - setupHaskellDepends = [ - base - Cabal - MissingH - ]; - libraryHaskellDepends = [ - base - containers - MissingH - network-uri - parsec - ]; - executableHaskellDepends = [ - base - containers - MissingH - network-uri - parsec - ]; - testHaskellDepends = [ - base - containers - MissingH - network-uri - parsec - ]; - benchmarkHaskellDepends = [ - base - containers - criterion - MissingH - network-uri - parsec - ]; - description = "A markdown-like markup language designed for blog posts"; - license = lib.licenses.agpl3Only; - hydraPlatforms = lib.platforms.none; - mainProgram = "Blogdown"; - broken = true; - } - ) { }; - "BluePrintCSS" = callPackage ( { mkDerivation, @@ -4756,61 +1933,6 @@ self: { } ) { }; - "Blueprint" = callPackage ( - { mkDerivation }: - mkDerivation { - pname = "Blueprint"; - version = "0.1"; - sha256 = "16cfmy4ndc15p6jdmyy08nqgv143dvs9xf4qg4mxa6x5r326pi94"; - doHaddock = false; - description = "Preview of a new build system"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "Bookshelf" = callPackage ( - { - mkDerivation, - base, - containers, - directory, - filepath, - pandoc, - pandoc-citeproc, - pandoc-types, - parseargs, - process, - }: - mkDerivation { - pname = "Bookshelf"; - version = "0.6"; - sha256 = "1a1g8ipppwrb42fvli27qi4i78vgdk3wwxsjhqy0p6pwpa0hvcaq"; - isLibrary = false; - isExecutable = true; - enableSeparateDataOutput = true; - executableHaskellDepends = [ - base - containers - directory - filepath - pandoc - pandoc-citeproc - pandoc-types - parseargs - ]; - testHaskellDepends = [ - base - process - ]; - description = "A simple document organizer with some wiki functionality"; - license = "GPL"; - hydraPlatforms = lib.platforms.none; - mainProgram = "bookshelf"; - } - ) { }; - "Boolean" = callPackage ( { mkDerivation, base }: mkDerivation { @@ -4844,126 +1966,6 @@ self: { } ) { }; - "Bravo" = callPackage ( - { - mkDerivation, - base, - haskell-src-exts, - haskell-src-meta, - mtl, - parsec, - syb, - template-haskell, - }: - mkDerivation { - pname = "Bravo"; - version = "0.1.0.1"; - sha256 = "16li42rl77jvhyp14fjic66c7d6qm2fjln93gyw4bqbykai291in"; - libraryHaskellDepends = [ - base - haskell-src-exts - haskell-src-meta - mtl - parsec - syb - template-haskell - ]; - description = "Static text template generation library"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "BufferedSocket" = callPackage ( - { - mkDerivation, - base, - bytestring, - network, - text, - }: - mkDerivation { - pname = "BufferedSocket"; - version = "0.2.1.0"; - sha256 = "13wwi7x898p51crzzp5rdrjgmsxsgbx7dgzgbaxdikxyrh216lmz"; - libraryHaskellDepends = [ - base - bytestring - network - text - ]; - description = "A socker wrapper that makes the IO of sockets much cleaner"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "Buster" = callPackage ( - { - mkDerivation, - base, - bytestring, - conduit, - data-default, - errors, - hinotify, - hslogger, - hspec, - hspec-expectations, - http-conduit, - http-types, - string-qq, - temporary, - transformers, - unbounded-delays, - unix, - yaml, - }: - mkDerivation { - pname = "Buster"; - version = "0.1.1"; - sha256 = "12zchy3sqdcqdgbb7d29jrsqifz4hfdx94s514v2mmyzzr0m8xqd"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - bytestring - conduit - data-default - errors - hinotify - hslogger - http-conduit - http-types - transformers - unbounded-delays - unix - yaml - ]; - testHaskellDepends = [ - base - bytestring - errors - hslogger - hspec - hspec-expectations - http-conduit - http-types - string-qq - temporary - unix - yaml - ]; - description = "Hits a set of urls periodically to bust caches"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - mainProgram = "buster"; - broken = true; - } - ) { }; - "C-structs" = callPackage ( { mkDerivation, @@ -5003,226 +2005,6 @@ self: { } ) { }; - "CBOR" = callPackage ( - { - mkDerivation, - base, - binary, - binary-bits, - bytestring, - data-binary-ieee754, - doctest, - QuickCheck, - test-framework, - test-framework-quickcheck2, - }: - mkDerivation { - pname = "CBOR"; - version = "0.1.0.1"; - sha256 = "03h8lp5sm8prbphq98c7ar93rl9yfy29pvwrkrskdjhx79pd1w6q"; - libraryHaskellDepends = [ - base - binary - binary-bits - bytestring - data-binary-ieee754 - ]; - testHaskellDepends = [ - base - binary - binary-bits - bytestring - data-binary-ieee754 - doctest - QuickCheck - test-framework - test-framework-quickcheck2 - ]; - description = "Encode/Decode values to/from CBOR"; - license = lib.licenses.lgpl3Only; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "CC-delcont" = callPackage ( - { - mkDerivation, - base, - mtl, - }: - mkDerivation { - pname = "CC-delcont"; - version = "0.2.1.0"; - sha256 = "00v2xjh5a7z87i0hvdflrqmnwi9lb2061d6s0xrp563xpjvkcsvc"; - libraryHaskellDepends = [ - base - mtl - ]; - description = "Delimited continuations and dynamically scoped variables"; - license = "unknown"; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "CC-delcont-alt" = callPackage ( - { - mkDerivation, - base, - CC-delcont-cxe, - CC-delcont-exc, - CC-delcont-ref, - doctest, - mtl, - }: - mkDerivation { - pname = "CC-delcont-alt"; - version = "0.1.1.1"; - sha256 = "0s6z5bcxmcx1vzgjc6r2i4898j6s3ngjjdqhggp893hmhpxlbgsv"; - libraryHaskellDepends = [ - base - CC-delcont-cxe - CC-delcont-exc - CC-delcont-ref - mtl - ]; - testHaskellDepends = [ - base - doctest - mtl - ]; - doHaddock = false; - description = "Three new monad transformers for multi-prompt delimited control"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "CC-delcont-cxe" = callPackage ( - { - mkDerivation, - base, - mtl, - }: - mkDerivation { - pname = "CC-delcont-cxe"; - version = "0.1.0.2"; - sha256 = "1s6bql9r78yfzgarm3i4f2glhc5w8qq91adhs15cnqj6h7768a5c"; - libraryHaskellDepends = [ - base - mtl - ]; - description = "A monad transformers for multi-prompt delimited control"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "CC-delcont-exc" = callPackage ( - { - mkDerivation, - base, - mtl, - }: - mkDerivation { - pname = "CC-delcont-exc"; - version = "0.1.0.0"; - sha256 = "07v388bzs8x9k1p677310rbh8baj1fdq3bhbqyvxqzx93kv8g381"; - libraryHaskellDepends = [ - base - mtl - ]; - description = "A monad transformers for multi-prompt delimited control"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "CC-delcont-ref" = callPackage ( - { - mkDerivation, - base, - mtl, - }: - mkDerivation { - pname = "CC-delcont-ref"; - version = "0.1.0.0"; - sha256 = "0fzjr73id8rlrcmf0j3y1qn4jnc8incqhhkp9wl35lig20kqy82m"; - libraryHaskellDepends = [ - base - mtl - ]; - description = "A monad transformers for multi-prompt delimited control using refercence cells"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "CC-delcont-ref-tf" = callPackage ( - { - mkDerivation, - base, - ref-tf, - transformers, - }: - mkDerivation { - pname = "CC-delcont-ref-tf"; - version = "0.1.0.2"; - sha256 = "0zavw824xcr1jhmlpz9hmabhhi459y0s7z434lxalzha01j1wfih"; - libraryHaskellDepends = [ - base - ref-tf - transformers - ]; - description = "A monad transformers for multi-prompt delimited control using refercence cells"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "CCA" = callPackage ( - { - mkDerivation, - array, - base, - containers, - ghc-prim, - happy, - haskell-src, - syb, - template-haskell, - }: - mkDerivation { - pname = "CCA"; - version = "0.1.5.3"; - sha256 = "05zv1vha31fgw4ddvrnbvk5pzhq8lkvfx1xrgja5ggy451zrs6aw"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - ghc-prim - syb - template-haskell - ]; - executableHaskellDepends = [ - array - base - containers - haskell-src - ]; - executableToolDepends = [ happy ]; - description = "preprocessor and library for Causal Commutative Arrows (CCA)"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "ccap"; - broken = true; - } - ) { }; - "CHXHtml" = callPackage ( { mkDerivation, @@ -5246,135 +2028,6 @@ self: { } ) { }; - "CLASE" = callPackage ( - { - mkDerivation, - base, - containers, - filepath, - mtl, - parsec, - template-haskell, - }: - mkDerivation { - pname = "CLASE"; - version = "2009.2.11"; - sha256 = "10jab7jxlhppmqqw31g653l8jmz4vz8f9h9wr2i9fjf6bipvgfi3"; - libraryHaskellDepends = [ - base - containers - filepath - mtl - parsec - template-haskell - ]; - description = "Cursor Library for A Structured Editor"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "CLI" = callPackage ( - { - mkDerivation, - base, - directory, - doctest, - split, - time, - }: - mkDerivation { - pname = "CLI"; - version = "0.1.0.0"; - sha256 = "1g271n7z6xndqylwxwcaa1xscgd36wzb2apbmrilv42v7ii4aall"; - libraryHaskellDepends = [ - base - directory - split - time - ]; - testHaskellDepends = [ - base - doctest - ]; - description = "CLI tools"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "CMCompare" = callPackage ( - { - mkDerivation, - array, - base, - BiobaseInfernal, - BiobaseXNA, - cmdargs, - containers, - lens, - }: - mkDerivation { - pname = "CMCompare"; - version = "0.0.1.5"; - sha256 = "1ccjyn0cc8yx7fgnvsjap0swlxql3gdygb5mabzvkgk84zc3bh2b"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - array - base - BiobaseInfernal - BiobaseXNA - containers - lens - ]; - executableHaskellDepends = [ cmdargs ]; - description = "Infernal covariance model comparison"; - license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - mainProgram = "CMCompare"; - } - ) { }; - - "CMQ" = callPackage ( - { - mkDerivation, - base, - bytestring, - cereal, - containers, - iproute, - mtl, - network, - PSQueue, - stm, - time, - }: - mkDerivation { - pname = "CMQ"; - version = "0.0.12"; - sha256 = "0zskbcjdd4s8bkll7jvb8qzyq8pa52li4db9r5wg16pd2l3m0fpb"; - libraryHaskellDepends = [ - base - bytestring - cereal - containers - iproute - mtl - network - PSQueue - stm - time - ]; - description = "cwmwl udp message queue"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "COrdering" = callPackage ( { mkDerivation, base }: mkDerivation { @@ -5391,62 +2044,6 @@ self: { } ) { }; - "CPBrainfuck" = callPackage ( - { - mkDerivation, - base, - haskell98, - }: - mkDerivation { - pname = "CPBrainfuck"; - version = "1.1"; - sha256 = "041bm02xar8g6ppz6g0fdgs4ywavlcn4pqkncydx0lw5wp9ygwwn"; - isLibrary = false; - isExecutable = true; - enableSeparateDataOutput = true; - executableHaskellDepends = [ - base - haskell98 - ]; - description = "A simple Brainfuck interpretter"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "bf"; - } - ) { }; - - "CPL" = callPackage ( - { - mkDerivation, - array, - base, - containers, - mtl, - parsec, - readline, - }: - mkDerivation { - pname = "CPL"; - version = "0.0.9"; - sha256 = "0pa0iqaflj8h0w3wcwrc27vmg4k7n0x8ck5sjscxvxdbbrwjg6z1"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - array - base - containers - mtl - parsec - readline - ]; - description = "An interpreter of Hagino's Categorical Programming Language (CPL)"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "cpl"; - broken = true; - } - ) { }; - "CSPM-CoreLanguage" = callPackage ( { mkDerivation, base }: mkDerivation { @@ -5459,198 +2056,6 @@ self: { } ) { }; - "CSPM-FiringRules" = callPackage ( - { - mkDerivation, - base, - containers, - CSPM-CoreLanguage, - mtl, - parallel-tree-search, - QuickCheck, - random, - tree-monad, - }: - mkDerivation { - pname = "CSPM-FiringRules"; - version = "0.4.4.0"; - sha256 = "11j4f9za74x9f0l8jbf7mvjnmd6gyx02zb31jjrhza3y4hpcj412"; - libraryHaskellDepends = [ - base - containers - CSPM-CoreLanguage - mtl - parallel-tree-search - QuickCheck - random - tree-monad - ]; - description = "Firing rules semantic of CSPM"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "CSPM-Frontend" = callPackage ( - { - mkDerivation, - alex, - array, - base, - containers, - dlist, - either, - mtl, - parsec, - prettyclass, - syb, - transformers, - }: - mkDerivation { - pname = "CSPM-Frontend"; - version = "0.12.1.0"; - sha256 = "17i5app854vb4mghf9l0laldbgraqbq08w36hh61j5n161ypb1s5"; - libraryHaskellDepends = [ - array - base - containers - dlist - either - mtl - parsec - prettyclass - syb - transformers - ]; - libraryToolDepends = [ alex ]; - description = "A CSP-M parser compatible with FDR-2.91"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "CSPM-Interpreter" = callPackage ( - { - mkDerivation, - array, - base, - containers, - CSPM-CoreLanguage, - CSPM-Frontend, - mtl, - prettyclass, - syb, - }: - mkDerivation { - pname = "CSPM-Interpreter"; - version = "0.7.1.0"; - sha256 = "01byczl4109mwmxflmnflxxh4pnfj4anqsfgng5q664a8rjzqfwy"; - libraryHaskellDepends = [ - array - base - containers - CSPM-CoreLanguage - CSPM-Frontend - mtl - prettyclass - syb - ]; - description = "An interpreter for CSPM"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "CSPM-ToProlog" = callPackage ( - { - mkDerivation, - array, - base, - containers, - CSPM-Frontend, - pretty, - }: - mkDerivation { - pname = "CSPM-ToProlog"; - version = "0.5.5.0"; - sha256 = "1jr4q8jyai53g4yps1377q7wv9c52mg50yikycyirrpz46giiy2r"; - libraryHaskellDepends = [ - array - base - containers - CSPM-Frontend - pretty - ]; - description = "some modules specific for the ProB tool"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "CSPM-cspm" = callPackage ( - { - mkDerivation, - base, - cmdargs, - containers, - CSPM-CoreLanguage, - CSPM-FiringRules, - CSPM-Frontend, - CSPM-Interpreter, - CSPM-ToProlog, - hslua, - parallel, - prettyclass, - syb, - transformers, - xml, - }: - mkDerivation { - pname = "CSPM-cspm"; - version = "0.8.1.0"; - sha256 = "0brgzzhkqk8pvdniqwzcfwwr9v7y3kw3zdhsw053lxs0dcb191n0"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - cmdargs - containers - CSPM-CoreLanguage - CSPM-FiringRules - CSPM-Frontend - CSPM-Interpreter - CSPM-ToProlog - hslua - parallel - prettyclass - syb - transformers - xml - ]; - executableHaskellDepends = [ - base - cmdargs - containers - CSPM-CoreLanguage - CSPM-FiringRules - CSPM-Frontend - CSPM-Interpreter - CSPM-ToProlog - hslua - parallel - prettyclass - syb - transformers - xml - ]; - description = "cspm command line tool for analyzing CSPM specifications"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "cspm"; - } - ) { }; - "CTRex" = callPackage ( { mkDerivation, @@ -5677,105 +2082,6 @@ self: { } ) { }; - "CV" = - callPackage - ( - { - mkDerivation, - array, - base, - binary, - bindings-DSL, - c2hs, - carray, - containers, - deepseq, - directory, - filepath, - lazysmallcheck, - mtl, - mwc-random, - opencv_calib3d, - opencv_contrib, - opencv_core, - opencv_features2d, - opencv_flann, - opencv_gpu, - opencv_highgui, - opencv_imgproc, - opencv_legacy, - opencv_ml, - opencv_objdetect, - opencv_video, - parallel, - parallel-io, - primitive, - QuickCheck, - storable-complex, - storable-tuple, - vector, - }: - mkDerivation { - pname = "CV"; - version = "0.3.7"; - sha256 = "0c200jn6q4y744k39jll7xw418js7y86vvihz49i8kk2316vakmr"; - libraryHaskellDepends = [ - array - base - binary - bindings-DSL - carray - containers - deepseq - directory - filepath - lazysmallcheck - mtl - mwc-random - parallel - parallel-io - primitive - QuickCheck - storable-complex - storable-tuple - vector - ]; - librarySystemDepends = [ - opencv_calib3d - opencv_contrib - opencv_core - opencv_features2d - opencv_flann - opencv_gpu - opencv_highgui - opencv_imgproc - opencv_legacy - opencv_ml - opencv_objdetect - opencv_video - ]; - libraryToolDepends = [ c2hs ]; - description = "OpenCV based machine vision library"; - license = "GPL"; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) - { - opencv_calib3d = null; - opencv_contrib = null; - opencv_core = null; - opencv_features2d = null; - opencv_flann = null; - opencv_gpu = null; - opencv_highgui = null; - opencv_imgproc = null; - opencv_legacy = null; - opencv_ml = null; - opencv_objdetect = null; - opencv_video = null; - }; - "Cabal_3_10_3_0" = callPackage ( { mkDerivation, @@ -6009,74 +2315,6 @@ self: { } ) { }; - "Cabal-ide-backend" = callPackage ( - { - mkDerivation, - array, - base, - binary, - bytestring, - Cabal, - containers, - deepseq, - directory, - extensible-exceptions, - filepath, - HUnit, - old-time, - pretty, - process, - QuickCheck, - regex-posix, - test-framework, - test-framework-hunit, - test-framework-quickcheck2, - time, - unix, - }: - mkDerivation { - pname = "Cabal-ide-backend"; - version = "1.23.0.0"; - sha256 = "07s9gkq2d4sz8nrjayrnb3gbjm58sp7gfl3hnl8n1gsxsfbl2cgw"; - libraryHaskellDepends = [ - array - base - binary - bytestring - containers - deepseq - directory - filepath - pretty - process - time - unix - ]; - testHaskellDepends = [ - base - bytestring - Cabal - containers - directory - extensible-exceptions - filepath - HUnit - old-time - process - QuickCheck - regex-posix - test-framework - test-framework-hunit - test-framework-quickcheck2 - unix - ]; - description = "A framework for packaging Haskell software"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "Cabal-syntax_3_6_0_0" = callPackage ( { mkDerivation, Cabal }: mkDerivation { @@ -6323,69 +2561,6 @@ self: { } ) { }; - "CabalSearch" = callPackage ( - { - mkDerivation, - base, - bytestring, - directory, - filepath, - HDBC, - HDBC-sqlite3, - process, - unix, - }: - mkDerivation { - pname = "CabalSearch"; - version = "0.0.2"; - sha256 = "181k2rybbyhjmwf1fq69hiaf14a0rzcvnv4j9w03n2v7cal4k08b"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - bytestring - directory - filepath - HDBC - HDBC-sqlite3 - process - unix - ]; - description = "Search cabal packages by name"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "cabalsearch"; - broken = true; - } - ) { }; - - "Capabilities" = callPackage ( - { - mkDerivation, - base, - compdata, - directory, - free, - unix, - }: - mkDerivation { - pname = "Capabilities"; - version = "0.1.0.0"; - sha256 = "0nd5yvhbxmabs0890y9gjjiq37h8c3blpplv2m13k29zkijwad04"; - libraryHaskellDepends = [ - base - compdata - directory - free - unix - ]; - description = "Separate and contain effects of IO monad"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "Cardinality" = callPackage ( { mkDerivation, @@ -6407,202 +2582,6 @@ self: { } ) { }; - "CarneadesDSL" = callPackage ( - { - mkDerivation, - base, - containers, - fgl, - parsec, - }: - mkDerivation { - pname = "CarneadesDSL"; - version = "1.3"; - sha256 = "06ri47cfskvpm65zb63kjrwwhzlmcp2f0z99hqkfw216p85648a3"; - libraryHaskellDepends = [ - base - containers - fgl - parsec - ]; - description = "An implementation and DSL for the Carneades argumentation model"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "CarneadesIntoDung" = callPackage ( - { - mkDerivation, - base, - CarneadesDSL, - cmdargs, - containers, - Dung, - fgl, - }: - mkDerivation { - pname = "CarneadesIntoDung"; - version = "1.0"; - sha256 = "0gmrc778zan5rrkb7rip61736rzx13abfzyjcj4bgdvc3fhih1rx"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - CarneadesDSL - cmdargs - containers - Dung - fgl - ]; - description = "A translation from the Carneades argumentation model into Dung's AFs"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "caell"; - } - ) { }; - - "Cartesian" = callPackage ( - { - mkDerivation, - base, - lens, - linear, - template-haskell, - }: - mkDerivation { - pname = "Cartesian"; - version = "0.6.0.0"; - sha256 = "1g2da90bna28hla9akpqsg5d2ag4p59zwxr6vqdizjbcpy4d7xkl"; - libraryHaskellDepends = [ - base - lens - linear - template-haskell - ]; - description = "Coordinate systems"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "Cascade" = callPackage ( - { - mkDerivation, - base, - comonad, - ghc-prim, - mtl, - void, - }: - mkDerivation { - pname = "Cascade"; - version = "0.1.0.0"; - sha256 = "1ih8ydc29axckgidc5xvsdac5558gprscw667msh8qh41j9sshng"; - libraryHaskellDepends = [ - base - comonad - ghc-prim - mtl - void - ]; - description = "Playing with reified categorical composition"; - license = lib.licenses.publicDomain; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "Cassava" = callPackage ( - { - mkDerivation, - array, - attoparsec, - base, - bytestring, - bytestring-builder, - containers, - deepseq, - hashable, - HUnit, - Only, - QuickCheck, - quickcheck-instances, - scientific, - test-framework, - test-framework-hunit, - test-framework-quickcheck2, - text, - unordered-containers, - vector, - }: - mkDerivation { - pname = "Cassava"; - version = "0.5.1.0"; - sha256 = "1z9y8vzsb0qxfx72w0nb77n0ibha48dv4sg3wv02xrrbz95nwlrh"; - revision = "3"; - editedCabalFile = "15wwzmp1000jrg3kpyk2zh3k8ja21pdrqj2ghrwwish6lzpsk3v0"; - libraryHaskellDepends = [ - array - attoparsec - base - bytestring - bytestring-builder - containers - deepseq - hashable - Only - scientific - text - unordered-containers - vector - ]; - testHaskellDepends = [ - attoparsec - base - bytestring - hashable - HUnit - QuickCheck - quickcheck-instances - scientific - test-framework - test-framework-hunit - test-framework-quickcheck2 - text - unordered-containers - vector - ]; - description = "A CSV parsing and encoding library"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "Catana" = callPackage ( - { - mkDerivation, - base, - mtl, - }: - mkDerivation { - pname = "Catana"; - version = "0.3"; - sha256 = "10m7l701p3a2w0kxi2b93g2ii6s4s71zyjypqk3mi79siv8yilif"; - libraryHaskellDepends = [ - base - mtl - ]; - description = "A monad for complex manipulation of a stream"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "ChannelT" = callPackage ( { mkDerivation, @@ -6762,47 +2741,6 @@ self: { } ) { }; - "Chart-fltkhs" = callPackage ( - { - mkDerivation, - base, - Cabal, - Chart, - colour, - data-default-class, - filepath, - fltkhs, - operational, - text, - vector, - }: - mkDerivation { - pname = "Chart-fltkhs"; - version = "0.1.0.6"; - sha256 = "0wj0im5y76ag10li9ra285z1hdbsx467p2q72clpqa1whasfja2q"; - isLibrary = true; - isExecutable = true; - setupHaskellDepends = [ - base - Cabal - filepath - ]; - libraryHaskellDepends = [ - base - Chart - colour - data-default-class - fltkhs - operational - text - vector - ]; - description = "A backend for the Chart library for FLTKHS"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "Chart-gtk" = callPackage ( { mkDerivation, @@ -6881,47 +2819,6 @@ self: { } ) { }; - "Chart-simple" = callPackage ( - { - mkDerivation, - array, - base, - cairo, - Chart, - Chart-cairo, - Chart-gtk, - colour, - data-default-class, - gtk, - mtl, - old-locale, - time, - }: - mkDerivation { - pname = "Chart-simple"; - version = "1.3.3"; - sha256 = "0kk81jz4lciga8qc78gm9khw02n84snyclzf5lcmlz9rs50z3v5r"; - libraryHaskellDepends = [ - array - base - cairo - Chart - Chart-cairo - Chart-gtk - colour - data-default-class - gtk - mtl - old-locale - time - ]; - description = "A wrapper for the chart library to assist with basic plots (Deprecated - use the Easy module instead)"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "Chart-tests" = callPackage ( { mkDerivation, @@ -7061,27 +2958,6 @@ self: { } ) { }; - "Checked" = callPackage ( - { - mkDerivation, - base, - text, - }: - mkDerivation { - pname = "Checked"; - version = "0.0.0.2"; - sha256 = "1mr323rhh3lr6a5ni60n2kxz2k57763a3rrf7c6i18hxs9d4w2s4"; - libraryHaskellDepends = [ - base - text - ]; - description = "Inbuilt checking for ultra reliable computing"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "ChibiHash" = callPackage ( { mkDerivation, @@ -7116,65 +2992,6 @@ self: { } ) { }; - "Chitra" = callPackage ( - { - mkDerivation, - base, - binary, - bytestring, - mtl, - network, - }: - mkDerivation { - pname = "Chitra"; - version = "0.2.2"; - sha256 = "0qf6a1xmpv29hpwcrn3acfvpcx0f95dq980mv5mijzfsznz4d43k"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - binary - bytestring - mtl - network - ]; - description = "A platform independent mechanism to render graphics using vnc"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "Chitra"; - broken = true; - } - ) { }; - - "ChristmasTree" = callPackage ( - { - mkDerivation, - base, - containers, - fgl, - template-haskell, - TTTAS, - uulib, - }: - mkDerivation { - pname = "ChristmasTree"; - version = "0.2.1.1"; - sha256 = "1xng99msiyck127zv12cbksgyprwr6i6nwwjplc9c0jdfiisa9n8"; - libraryHaskellDepends = [ - base - containers - fgl - template-haskell - TTTAS - uulib - ]; - description = "Alternative approach of 'read' that composes grammars instead of parsers"; - license = "LGPL"; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "CirruParser" = callPackage ( { mkDerivation, @@ -7249,31 +3066,6 @@ self: { } ) { }; - "ClassLaws" = callPackage ( - { - mkDerivation, - base, - ChasingBottoms, - mtl, - QuickCheck, - }: - mkDerivation { - pname = "ClassLaws"; - version = "0.3.1.0"; - sha256 = "1277vn384hpxd7xnzg0gpr7ilnw5cqhsi11c24g9zsfqa36llwgk"; - libraryHaskellDepends = [ - base - ChasingBottoms - mtl - QuickCheck - ]; - description = "Stating and checking laws for type class methods"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "ClasshSS" = callPackage ( { mkDerivation, @@ -7301,48 +3093,6 @@ self: { } ) { }; - "ClassyPrelude" = callPackage ( - { - mkDerivation, - base, - strict, - }: - mkDerivation { - pname = "ClassyPrelude"; - version = "0.1"; - sha256 = "1yvkrzd3l7ijh3fqvkbzqv5vp4nv5z26fbxy91sfwh3zqlscpim9"; - libraryHaskellDepends = [ - base - strict - ]; - description = "Prelude replacement using classes instead of concrete types where reasonable"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "Clean" = callPackage ( - { - mkDerivation, - base, - containers, - }: - mkDerivation { - pname = "Clean"; - version = "0.6"; - sha256 = "0kr9i13ch2wbcnxchrnx562r8ar7kb84gmk3cqxc40x5w416205f"; - libraryHaskellDepends = [ - base - containers - ]; - description = "A light, clean and powerful utility library"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "ClickHaskell" = callPackage ( { mkDerivation, @@ -7446,50 +3196,6 @@ self: { } ) { }; - "Coadjute" = callPackage ( - { - mkDerivation, - array, - base, - bytestring, - bytestring-csv, - containers, - directory, - fgl, - filepath, - mtl, - old-time, - pretty, - pureMD5, - safe, - utf8-string, - }: - mkDerivation { - pname = "Coadjute"; - version = "0.1.1"; - sha256 = "1crbs8dk93cff252c3nj2brdbjbfygpvlrm4lrp7vpnwfz2709b3"; - libraryHaskellDepends = [ - array - base - bytestring - bytestring-csv - containers - directory - fgl - filepath - mtl - old-time - pretty - pureMD5 - safe - utf8-string - ]; - description = "A generic build tool"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "Codec-Compression-LZF" = callPackage ( { mkDerivation, base }: mkDerivation { @@ -7577,212 +3283,6 @@ self: { } ) { }; - "Combinatorrent" = callPackage ( - { - mkDerivation, - array, - attoparsec, - base, - bytestring, - cereal, - containers, - deepseq, - directory, - filepath, - hopenssl, - hslogger, - HTTP, - HUnit, - mtl, - network, - network-bytestring, - parsec, - pretty, - PSQueue, - QuickCheck, - random, - random-shuffle, - stm, - test-framework, - test-framework-hunit, - test-framework-quickcheck2, - time, - }: - mkDerivation { - pname = "Combinatorrent"; - version = "0.3.2"; - sha256 = "0dx5pysxyk5c0fa33khjr86zgm43jz7nwhgl0w8jngyai8b1rbra"; - isLibrary = false; - isExecutable = true; - enableSeparateDataOutput = true; - executableHaskellDepends = [ - array - attoparsec - base - bytestring - cereal - containers - deepseq - directory - filepath - hopenssl - hslogger - HTTP - HUnit - mtl - network - network-bytestring - parsec - pretty - PSQueue - QuickCheck - random - random-shuffle - stm - test-framework - test-framework-hunit - test-framework-quickcheck2 - time - ]; - description = "A concurrent bittorrent client"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "Combinatorrent"; - } - ) { }; - - "Command" = callPackage ( - { - mkDerivation, - base, - directory, - process, - }: - mkDerivation { - pname = "Command"; - version = "0.0.7"; - sha256 = "043dwvjkc1m2cz0rgiib7gv19ds1vn4cmf27lyw68nmc0lcm2v3d"; - libraryHaskellDepends = [ - base - directory - process - ]; - description = "A replacement for System.Exit and System.Process"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "Commando" = callPackage ( - { - mkDerivation, - base, - data-default, - fsnotify, - optparse-applicative, - process, - system-fileio, - system-filepath, - text, - }: - mkDerivation { - pname = "Commando"; - version = "1.0.0.4"; - sha256 = "1wfpxaj9j68knf1fp3zngxrc1acqvhzrzbblar4ckq9y5kxjwwsj"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - data-default - fsnotify - optparse-applicative - process - system-fileio - system-filepath - text - ]; - executableHaskellDepends = [ - base - data-default - fsnotify - optparse-applicative - process - system-fileio - system-filepath - text - ]; - description = "Watch some files; Rerun a command"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - mainProgram = "commando"; - broken = true; - } - ) { }; - - "ComonadSheet" = callPackage ( - { - mkDerivation, - applicative-numbers, - base, - comonad, - containers, - distributive, - IndexedList, - NestedFunctor, - PeanoWitnesses, - Stream, - Tape, - transformers, - }: - mkDerivation { - pname = "ComonadSheet"; - version = "0.3.0.0"; - sha256 = "1jpxc5ymhjdk18nggw9fjr6dmqhlz0jwwailyw9i8yzs5dzbn67z"; - libraryHaskellDepends = [ - applicative-numbers - base - comonad - containers - distributive - IndexedList - NestedFunctor - PeanoWitnesses - Stream - Tape - transformers - ]; - description = "A library for expressing spreadsheet-like computations as the fixed-points of comonads"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "Compactable" = callPackage ( - { - mkDerivation, - base, - containers, - transformers, - vector, - }: - mkDerivation { - pname = "Compactable"; - version = "0.1.0.2"; - sha256 = "0gizrl90jn5cmadxzpdvfg7h11pkb0l12k891xw9v36j5yf4saj0"; - libraryHaskellDepends = [ - base - containers - transformers - vector - ]; - description = "A generalization for containers that can be stripped of Nothing"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "ConClusion" = callPackage ( { mkDerivation, @@ -7836,92 +3336,6 @@ self: { } ) { }; - "Concurrent-Cache" = callPackage ( - { mkDerivation, base }: - mkDerivation { - pname = "Concurrent-Cache"; - version = "0.2.2.3"; - sha256 = "0mca09afj36zm3b7q3xn4gzkj4ggrlaz2g0zpssy4siam5rlc208"; - libraryHaskellDepends = [ base ]; - description = "A Cached variable for IO functions"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "Concurrential" = callPackage ( - { - mkDerivation, - async, - base, - }: - mkDerivation { - pname = "Concurrential"; - version = "0.5.0.1"; - sha256 = "0xnnkz67hh4mqx09wh17jpr9isgpcrc5xwp28afn3n8sz2y2mnxd"; - libraryHaskellDepends = [ - async - base - ]; - description = "Mix concurrent and sequential computation"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "Condor" = callPackage ( - { - mkDerivation, - base, - binary, - Cabal, - containers, - directory, - filepath, - glider-nlp, - HUnit, - text, - }: - mkDerivation { - pname = "Condor"; - version = "0.3"; - sha256 = "0vrflmjyc1h0mfvc07p3p3wqfscyza7pyxxp7bn1glprg6c9ph5p"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - binary - containers - glider-nlp - text - ]; - executableHaskellDepends = [ - base - binary - containers - directory - filepath - glider-nlp - text - ]; - testHaskellDepends = [ - base - binary - Cabal - containers - glider-nlp - HUnit - text - ]; - description = "Information retrieval library"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "condor"; - } - ) { }; - "ConfigFile" = callPackage ( { mkDerivation, @@ -7953,71 +3367,6 @@ self: { } ) { }; - "ConfigFileTH" = callPackage ( - { - mkDerivation, - base, - ConfigFile, - parsec, - template-haskell, - }: - mkDerivation { - pname = "ConfigFileTH"; - version = "0.2"; - sha256 = "1349vkrnl2z0cfcvdalqf77jajhz0izmnlsbiv84vvj23n04rj9h"; - libraryHaskellDepends = [ - base - ConfigFile - parsec - template-haskell - ]; - description = "Template haskell for reading ConfigFiles"; - license = "LGPL"; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "Configger" = callPackage ( - { - mkDerivation, - base, - Dangerous, - MissingH, - mtl, - parsec, - }: - mkDerivation { - pname = "Configger"; - version = "0.1"; - sha256 = "0fk7165abh4rw4jk6wy4f6y0qpakxlrs4mwrs3r2q7lz03jsyig2"; - libraryHaskellDepends = [ - base - Dangerous - MissingH - mtl - parsec - ]; - description = "Parse config files"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "Configurable" = callPackage ( - { mkDerivation, base }: - mkDerivation { - pname = "Configurable"; - version = "0.1.0.0"; - sha256 = "1if0hff6fn7zjj1vh16gxf2kldibh1dkscm8n33d1admvpjpw9sb"; - libraryHaskellDepends = [ base ]; - description = "Declare types as Configurable then specialize them all in one place"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "ConsStream" = callPackage ( { mkDerivation, @@ -8037,30 +3386,6 @@ self: { } ) { }; - "Conscript" = callPackage ( - { - mkDerivation, - base, - process, - }: - mkDerivation { - pname = "Conscript"; - version = "0.1.0.0"; - sha256 = "0hiz3wjnvfp9n440kmwq7a88k7m7vq5s49nq85v520j7qnf4y82n"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - process - ]; - description = "Restart a command on STDIN activity"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - mainProgram = "conscript"; - broken = true; - } - ) { }; - "ConsoleAsk" = callPackage ( { mkDerivation, @@ -8086,598 +3411,100 @@ self: { } ) { }; - "ConstraintKinds" = callPackage ( + "Control-Engine" = callPackage ( { mkDerivation, base, - dlist, - ghc-prim, - vector, + BoundedChan, + stm, }: mkDerivation { - pname = "ConstraintKinds"; - version = "1.3.0"; - sha256 = "0rhy5wq3v5hdryjn8pcsgqy4k772agj1rgq3021pjki7n3zm3dza"; + pname = "Control-Engine"; + version = "1.1.0.1"; + sha256 = "1jyj42xrja8ic3lajgrfmign9n2bdfkaplnlhzcifd5wf30qj6fa"; libraryHaskellDepends = [ base - dlist - ghc-prim - vector + BoundedChan + stm ]; - description = "Repackages standard type classes with the ConstraintKinds extension"; + description = "A parallel producer/consumer engine (thread pool)"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; } ) { }; - "Consumer" = callPackage ( + "Craft3e" = callPackage ( { mkDerivation, base, + HUnit, mtl, + old-locale, + open-browser, + QuickCheck, + time, }: mkDerivation { - pname = "Consumer"; - version = "1.2"; - sha256 = "03ham35vh49h780h7dxb6zs85rkdlry0nwi8wp6p9iamw952xi6i"; + pname = "Craft3e"; + version = "0.2.0.2"; + sha256 = "1i0w6sxzi0v1vc5nd72q4pvqk9wcckhm7nmbrvh7ib3vjfyngsjb"; + isLibrary = true; + isExecutable = true; libraryHaskellDepends = [ base + HUnit mtl + old-locale + open-browser + QuickCheck + time ]; - description = "A monad and monad transformer for consuming streams"; - license = lib.licenses.bsd3; + executableHaskellDepends = [ base ]; + description = "Code for Haskell: the Craft of Functional Programming, 3rd ed"; + license = lib.licenses.mit; hydraPlatforms = lib.platforms.none; broken = true; } ) { }; - "ContArrow" = callPackage ( + "Crypto" = callPackage ( { mkDerivation, - arrows, + array, base, + HUnit, + pretty, + QuickCheck, + random, }: mkDerivation { - pname = "ContArrow"; - version = "0.0.5"; - sha256 = "1paj8wx2k86i5xb11scbyca4fb2fnxgln5d661mcwxvs0i91jj1b"; + pname = "Crypto"; + version = "4.2.5.2"; + sha256 = "0nsv3vvlik76vdncnh771ki95903gdfsg3iyfdinm3rkhybz30m6"; libraryHaskellDepends = [ - arrows + array + base + pretty + random + ]; + testHaskellDepends = [ base + HUnit + pretty + QuickCheck ]; - description = "Control.Arrow.Transformer.Cont"; - license = lib.licenses.bsd3; + description = "Common Cryptographic Algorithms in Pure Haskell"; + license = "BSD-3-Clause AND GPL-2.0-or-later"; hydraPlatforms = lib.platforms.none; broken = true; } ) { }; - "ContextAlgebra" = callPackage ( + "DAV" = callPackage ( { mkDerivation, base, - containers, - criterion, - multiset, - QuickCheck, - statistics, - vector, - }: - mkDerivation { - pname = "ContextAlgebra"; - version = "1.0.0.0"; - sha256 = "1xi2grzbgh4w6bmv6alkfcpv67hrv7zn1ckq4f8jgxmmq44r4bi7"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - containers - criterion - multiset - QuickCheck - statistics - vector - ]; - description = "Implementation of the context algebra"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "ContextAlgebra"; - broken = true; - } - ) { }; - - "Contract" = callPackage ( - { - mkDerivation, - base, - template-haskell, - }: - mkDerivation { - pname = "Contract"; - version = "0.1"; - sha256 = "027dv53jrfk46dmiidnnrrdvhyin60i862znp414213w72yjrbhh"; - libraryHaskellDepends = [ - base - template-haskell - ]; - description = "Practical typed lazy contracts"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "Control-Engine" = callPackage ( - { - mkDerivation, - base, - BoundedChan, - stm, - }: - mkDerivation { - pname = "Control-Engine"; - version = "1.1.0.1"; - sha256 = "1jyj42xrja8ic3lajgrfmign9n2bdfkaplnlhzcifd5wf30qj6fa"; - libraryHaskellDepends = [ - base - BoundedChan - stm - ]; - description = "A parallel producer/consumer engine (thread pool)"; - license = lib.licenses.bsd3; - } - ) { }; - - "Control-Monad-MultiPass" = callPackage ( - { - mkDerivation, - array, - base, - containers, - Control-Monad-ST2, - mtl, - QuickCheck, - test-framework, - test-framework-hunit, - test-framework-quickcheck2, - }: - mkDerivation { - pname = "Control-Monad-MultiPass"; - version = "0.1.0.0"; - sha256 = "0pdayn1v9dw5600fgzlag2bqy1p68i4yzpxzqna9p7jk0iyvfy0i"; - libraryHaskellDepends = [ - array - base - containers - Control-Monad-ST2 - mtl - ]; - testHaskellDepends = [ - array - base - containers - Control-Monad-ST2 - mtl - QuickCheck - test-framework - test-framework-hunit - test-framework-quickcheck2 - ]; - description = "A Library for Writing Multi-Pass Algorithms"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "Control-Monad-ST2" = callPackage ( - { - mkDerivation, - array, - base, - mtl, - QuickCheck, - SafeSemaphore, - test-framework, - test-framework-hunit, - test-framework-quickcheck2, - }: - mkDerivation { - pname = "Control-Monad-ST2"; - version = "0.1.0.1"; - sha256 = "02nl4dbh7lk2gx5vacnn9mlcbs5j4b68jj0db94j51mqwj22y0zk"; - libraryHaskellDepends = [ - array - base - QuickCheck - SafeSemaphore - ]; - testHaskellDepends = [ - array - base - mtl - QuickCheck - SafeSemaphore - test-framework - test-framework-hunit - test-framework-quickcheck2 - ]; - description = "A variation on the ST monad with two type parameters"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "CoreDump" = callPackage ( - { - mkDerivation, - base, - ghc, - pretty, - pretty-show, - }: - mkDerivation { - pname = "CoreDump"; - version = "0.1.2.0"; - sha256 = "1r70whihxczscp8j406sr4qqkf0abn125azald4cshqnp81rl2i4"; - libraryHaskellDepends = [ - base - ghc - pretty - pretty-show - ]; - description = "A GHC plugin for printing GHC's internal Core data structures"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "CoreErlang" = callPackage ( - { - mkDerivation, - base, - parsec, - pretty, - }: - mkDerivation { - pname = "CoreErlang"; - version = "0.0.4"; - sha256 = "034g6c7dxdp13v1x16gvwgagpc7mw33hwd16cbb8yd3i91vf1w8z"; - libraryHaskellDepends = [ - base - parsec - pretty - ]; - description = "Manipulating Core Erlang source code"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "CoreFoundation" = callPackage ( - { - mkDerivation, - base, - bytestring, - c2hs, - containers, - deepseq, - filepath, - network, - property-list, - tagged, - text, - time, - transformers, - vector, - }: - mkDerivation { - pname = "CoreFoundation"; - version = "0.1"; - sha256 = "0mra2aswl0gfic19l55i63a6il6i13caph56fdk8g7shcw3j605l"; - libraryHaskellDepends = [ - base - bytestring - containers - deepseq - filepath - network - property-list - tagged - text - time - transformers - vector - ]; - libraryToolDepends = [ c2hs ]; - description = "Bindings to Mac OSX's CoreFoundation framework"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "Coroutine" = callPackage ( - { mkDerivation, base }: - mkDerivation { - pname = "Coroutine"; - version = "0.1.0.0"; - sha256 = "1cad9j7ivd6mfcff44773v8z3z2ilparxfikbnv0gab6csc9p1nw"; - libraryHaskellDepends = [ base ]; - description = "Type-safe coroutines using lightweight session types"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "CouchDB" = callPackage ( - { - mkDerivation, - base, - bytestring, - containers, - HTTP, - HUnit, - json, - mtl, - network, - network-uri, - utf8-string, - }: - mkDerivation { - pname = "CouchDB"; - version = "1.2.3"; - sha256 = "064savpqn5ppj3sg0jsaqq5625zf0ml6wa0k7x058pmsp9i93c4m"; - libraryHaskellDepends = [ - base - bytestring - containers - HTTP - json - mtl - network - network-uri - utf8-string - ]; - testHaskellDepends = [ - base - bytestring - containers - HTTP - HUnit - json - mtl - network - network-uri - utf8-string - ]; - description = "CouchDB interface"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "Craft3e" = callPackage ( - { - mkDerivation, - base, - HUnit, - mtl, - old-locale, - open-browser, - QuickCheck, - time, - }: - mkDerivation { - pname = "Craft3e"; - version = "0.2.0.2"; - sha256 = "1i0w6sxzi0v1vc5nd72q4pvqk9wcckhm7nmbrvh7ib3vjfyngsjb"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - HUnit - mtl - old-locale - open-browser - QuickCheck - time - ]; - executableHaskellDepends = [ base ]; - description = "Code for Haskell: the Craft of Functional Programming, 3rd ed"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "Crypto" = callPackage ( - { - mkDerivation, - array, - base, - HUnit, - pretty, - QuickCheck, - random, - }: - mkDerivation { - pname = "Crypto"; - version = "4.2.5.2"; - sha256 = "0nsv3vvlik76vdncnh771ki95903gdfsg3iyfdinm3rkhybz30m6"; - libraryHaskellDepends = [ - array - base - pretty - random - ]; - testHaskellDepends = [ - base - HUnit - pretty - QuickCheck - ]; - description = "Common Cryptographic Algorithms in Pure Haskell"; - license = "BSD-3-Clause AND GPL-2.0-or-later"; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "CurryDB" = callPackage ( - { - mkDerivation, - array, - async, - attoparsec, - attoparsec-conduit, - base, - binary, - blaze-builder, - blaze-textual, - bytestring, - conduit, - containers, - data-default, - directory, - doctest, - fast-logger, - filepath, - hashable, - hspec, - lens, - lifted-base, - mersenne-random-pure64, - monad-control, - monad-logger, - mtl, - network, - network-conduit, - optparse-applicative, - stm, - system-fileio, - system-filepath, - template-haskell, - text, - time, - transformers, - transformers-base, - unordered-containers, - }: - mkDerivation { - pname = "CurryDB"; - version = "0.1.1.0"; - sha256 = "1mjgxbmwf37wqbdbhfbq3pj4mmgkf1w0lv49gagx1m5yny21q3l3"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - array - async - attoparsec - attoparsec-conduit - base - binary - blaze-builder - blaze-textual - bytestring - conduit - containers - data-default - fast-logger - hashable - lens - lifted-base - monad-control - monad-logger - mtl - network - network-conduit - stm - system-fileio - system-filepath - template-haskell - text - time - transformers - transformers-base - unordered-containers - ]; - executableHaskellDepends = [ - base - network-conduit - optparse-applicative - system-filepath - ]; - testHaskellDepends = [ - base - conduit - directory - doctest - filepath - hspec - lifted-base - mtl - stm - ]; - benchmarkHaskellDepends = [ - base - bytestring - mersenne-random-pure64 - mtl - ]; - description = "CurryDB: In-memory Key/Value Database"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "DAG-Tournament" = callPackage ( - { - mkDerivation, - base, - cairo, - containers, - directory, - filepath, - gtk, - mtl, - time, - }: - mkDerivation { - pname = "DAG-Tournament"; - version = "0.1"; - sha256 = "1yyr63r6ziljvcxacs7zn66lnkzgmlvcr36ic60c3z1r2rd2nflk"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - cairo - containers - directory - filepath - gtk - mtl - time - ]; - description = "Real-Time Game Tournament Evaluator"; - license = "GPL"; - hydraPlatforms = lib.platforms.none; - mainProgram = "DAG-Tournament"; - broken = true; - } - ) { }; - - "DAV" = callPackage ( - { - mkDerivation, - base, - bytestring, - case-insensitive, + bytestring, + case-insensitive, containers, data-default, exceptions, @@ -8821,53 +3648,6 @@ self: { } ) { }; - "DBlimited" = callPackage ( - { - mkDerivation, - base, - containers, - parsec, - }: - mkDerivation { - pname = "DBlimited"; - version = "0.1.1"; - sha256 = "1lic2ml1q16idg9rk2ky2xi030kln4m8nz1vyvy7w37qxhddvl2f"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - containers - parsec - ]; - description = "A command-line SQL interface for flat files (tdf,csv,etc.)"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "DBlimited"; - broken = true; - } - ) { }; - - "DBus" = callPackage ( - { - mkDerivation, - base, - bytestring, - }: - mkDerivation { - pname = "DBus"; - version = "0.5.1"; - sha256 = "0l212yy40w8sjkv5m7rnd24fkihvnadv7szf10g9n5r34m4jb6lh"; - libraryHaskellDepends = [ - base - bytestring - ]; - description = "D-Bus bindings"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "DCFL" = callPackage ( { mkDerivation, @@ -8893,222 +3673,6 @@ self: { } ) { }; - "DMuCheck" = callPackage ( - { - mkDerivation, - base, - MuCheck, - }: - mkDerivation { - pname = "DMuCheck"; - version = "0.3.0.2"; - sha256 = "00dhky0hnda85lvrs155jgwxnpqfm36cqakj3wp0yrn2xlz383ad"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - MuCheck - ]; - description = "Distributed Mutation Analysis framework for MuCheck"; - license = lib.licenses.gpl2Only; - hydraPlatforms = lib.platforms.none; - mainProgram = "dummy"; - } - ) { }; - - "DOH" = callPackage ( - { - mkDerivation, - aeson, - aeson-casing, - base, - bytestring, - containers, - filepath, - http-client, - http-client-tls, - http-types, - interpolatedstring-perl6, - lens, - mtl, - network-uri, - QuickCheck, - quickcheck-instances, - text, - time, - unordered-containers, - }: - mkDerivation { - pname = "DOH"; - version = "0.1.4.0"; - sha256 = "1rpmsl07m4qy33axhw39qxay6bw299cs4zqa8nq6w4bcqz44fqav"; - libraryHaskellDepends = [ - aeson - aeson-casing - base - bytestring - containers - filepath - http-client - http-client-tls - http-types - lens - mtl - network-uri - text - time - unordered-containers - ]; - testHaskellDepends = [ - aeson - aeson-casing - base - bytestring - containers - filepath - http-client - http-client-tls - http-types - interpolatedstring-perl6 - lens - mtl - network-uri - QuickCheck - quickcheck-instances - text - time - unordered-containers - ]; - description = "Complete API bindings for DigitalOcean API V2"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "DOM" = callPackage ( - { - mkDerivation, - base, - mtl, - WebBits, - }: - mkDerivation { - pname = "DOM"; - version = "2.0.1"; - sha256 = "13zj4jg78y5s05gfi3j83izxw6d2csbvznd7mq900zlv4xwddw2b"; - libraryHaskellDepends = [ - base - mtl - WebBits - ]; - description = "DOM Level 2 bindings for the WebBits package"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "DP" = callPackage ( - { - mkDerivation, - array, - base, - containers, - list-tries, - mtl, - QuickCheck, - safe, - semiring, - }: - mkDerivation { - pname = "DP"; - version = "0.1.1"; - sha256 = "03gjwkzna2mf0a103g0kiwnbd9ra6hss6vm73i7vhl87zgrwsh8z"; - libraryHaskellDepends = [ - array - base - containers - list-tries - mtl - QuickCheck - safe - semiring - ]; - description = "Pragmatic framework for dynamic programming"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "DPM" = callPackage ( - { - mkDerivation, - alex, - array, - base, - bytestring, - containers, - convertible, - darcs, - directory, - filepath, - happy, - HSH, - HTF, - HTTP, - mtl, - network, - old-locale, - pretty, - process, - regex-posix, - split, - syb, - time, - unix, - }: - mkDerivation { - pname = "DPM"; - version = "0.3.0.0"; - sha256 = "03rf2s9qinfahqsc870cxv5117g4hmqza2dbj7s5hi50sh32xkjc"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - array - base - bytestring - containers - convertible - darcs - directory - filepath - HSH - HTF - HTTP - mtl - network - old-locale - pretty - process - regex-posix - split - syb - time - unix - ]; - libraryToolDepends = [ - alex - happy - ]; - executableHaskellDepends = [ base ]; - description = "Darcs Patch Manager"; - license = "GPL"; - hydraPlatforms = lib.platforms.none; - mainProgram = "dpm"; - broken = true; - } - ) { }; - "DPutils" = callPackage ( { mkDerivation, @@ -9216,4422 +3780,1112 @@ self: { } ) { }; - "DRBG" = callPackage ( + "Data-Angle" = callPackage ( + { mkDerivation, base }: + mkDerivation { + pname = "Data-Angle"; + version = "0.9"; + sha256 = "0lk0w64hyqkg99r9ccn5k1nh6rmd99z8d925px4cl09nin7hnm71"; + libraryHaskellDepends = [ base ]; + description = "Geometric angles"; + license = lib.licenses.bsd3; + } + ) { }; + + "Data-Hash-Consistent" = callPackage ( { mkDerivation, base, - binary, bytestring, - cereal, - cipher-aes128, - crypto-api, - crypto-api-tests, - cryptohash-cryptoapi, - entropy, - HUnit, - mtl, - parallel, - prettyclass, - QuickCheck, - tagged, - test-framework, - test-framework-hunit, + digest, + utf8-string, + vector, + vector-algorithms, }: mkDerivation { - pname = "DRBG"; - version = "0.5.5"; - sha256 = "1z9vqc1nw0mf2sqgddcipmlkz6mckq9wnrzqqdy3rj3c90135pr1"; - enableSeparateDataOutput = true; + pname = "Data-Hash-Consistent"; + version = "0.1.1"; + sha256 = "1vblfzndfzb458j6ygfcq0mfzzc5c87gwpmcx31v10fxpqnfmm65"; libraryHaskellDepends = [ base bytestring - cereal - cipher-aes128 - crypto-api - cryptohash-cryptoapi - entropy - mtl - parallel - prettyclass - tagged - ]; - testHaskellDepends = [ - base - binary - bytestring - cereal - cipher-aes128 - crypto-api - crypto-api-tests - cryptohash-cryptoapi - entropy - HUnit - mtl - parallel - prettyclass - QuickCheck - tagged - test-framework - test-framework-hunit + digest + utf8-string + vector + vector-algorithms ]; - description = "Deterministic random bit generator (aka RNG, PRNG) based HMACs, Hashes, and Ciphers"; + description = "Provide a simple consistent hashing mechanism"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; } ) { }; - "DSA" = callPackage ( + "DataVersion" = callPackage ( { mkDerivation, base, - binary, - bytestring, - crypto-api, - crypto-pubkey-types, - DRBG, - ghc-prim, - HUnit, - integer-gmp, + generic-lens, + hspec, + microlens, QuickCheck, - SHA, - tagged, - test-framework, - test-framework-hunit, - test-framework-quickcheck2, }: mkDerivation { - pname = "DSA"; - version = "1.0.2"; - sha256 = "07gb9lcl5lr1c17d40269h37z3dky7dkssv9whjlrgk1zvjrskww"; + pname = "DataVersion"; + version = "0.1.0.1"; + sha256 = "051fmlydjqhp67b1ivb7rhaz1vwya6g6r6akwwms1lkhl6d95yda"; libraryHaskellDepends = [ base - binary - bytestring - crypto-api - crypto-pubkey-types - ghc-prim - integer-gmp - SHA - tagged + generic-lens + microlens ]; testHaskellDepends = [ base - binary - bytestring - crypto-api - crypto-pubkey-types - DRBG - ghc-prim - HUnit - integer-gmp + hspec QuickCheck - SHA - tagged - test-framework - test-framework-hunit - test-framework-quickcheck2 ]; - description = "Implementation of DSA, based on the description of FIPS 186-4"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; + description = "Type safe data migrations"; + license = lib.licenses.mit; } ) { }; - "DSH" = callPackage ( + "DebugTraceHelpers" = callPackage ( { mkDerivation, - aeson, - algebra-dag, - ansi-wl-pprint, base, - bytestring, - containers, - Decimal, - dlist, - either, - hashable, - HUnit, - kure, mtl, - process, - QuickCheck, - random, - semigroups, - template-haskell, - test-framework, - test-framework-hunit, - test-framework-quickcheck2, - text, - time, - unordered-containers, - vector, }: mkDerivation { - pname = "DSH"; - version = "0.12.0.1"; - sha256 = "1m69phqjrb4wg6fji5plw1mghyz7jzzqixljaa5gb5s0cy5gfkfy"; - isLibrary = true; - isExecutable = true; + pname = "DebugTraceHelpers"; + version = "0.12"; + sha256 = "0yjv3awhp3jsfqqn36xc0jpisp4hfypx3hkibad3yqrrn61bkzy8"; libraryHaskellDepends = [ - aeson - algebra-dag - ansi-wl-pprint - base - bytestring - containers - Decimal - dlist - either - hashable - HUnit - kure - mtl - process - QuickCheck - random - semigroups - template-haskell - test-framework - test-framework-hunit - test-framework-quickcheck2 - text - time - unordered-containers - vector - ]; - executableHaskellDepends = [ - aeson - algebra-dag - ansi-wl-pprint base - bytestring - containers - Decimal mtl - semigroups - template-haskell - text - time - vector ]; - description = "Database Supported Haskell"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "vldot"; + description = "Convenience functions and instances for Debug.Trace"; + license = "GPL"; } ) { }; - "DSTM" = callPackage ( + "Decimal" = callPackage ( { mkDerivation, base, - containers, - haskell98, - network, - process, - unix, + deepseq, + HUnit, + QuickCheck, + test-framework, + test-framework-hunit, + test-framework-quickcheck2, }: mkDerivation { - pname = "DSTM"; - version = "0.1.2"; - sha256 = "084yscqbwypkb32avjm2b92a7s4qpvps3pjfgpy14sligww3hifb"; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; + pname = "Decimal"; + version = "0.5.2"; + sha256 = "19w7i9f0lbiyzwa0v3bm95233vi7f1688f0xms6cnjsf88h04ym3"; libraryHaskellDepends = [ base - containers - haskell98 - network - process - unix - ]; - executableHaskellDepends = [ - base - containers - haskell98 - network - process - unix + deepseq ]; - description = "A framework for using STM within distributed systems"; - license = "LGPL"; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "DTC" = callPackage ( - { - mkDerivation, - base, - haskell-src-exts, - }: - mkDerivation { - pname = "DTC"; - version = "1.1.0.1"; - sha256 = "0m3697zw0j2l9fxx8flr83n8x03pva1hn74rgilgxdrsrifhds5l"; - libraryHaskellDepends = [ + testHaskellDepends = [ base - haskell-src-exts + deepseq + HUnit + QuickCheck + test-framework + test-framework-hunit + test-framework-quickcheck2 ]; - description = "Data To Class transformation"; + description = "Decimal numbers with variable precision"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; } ) { }; - "Dangerous" = callPackage ( + "DescriptiveKeys" = callPackage ( { mkDerivation, base, - MaybeT, - mtl, + containers, + xmonad, + xmonad-contrib, }: mkDerivation { - pname = "Dangerous"; - version = "0.3.2"; - sha256 = "0pnywhva7s5xp9xlxk6h56n3fjflna6zhk5qdb8wax7i1qbp85vs"; + pname = "DescriptiveKeys"; + version = "0.0.4"; + sha256 = "0ywipcmnr3ysmx8m61yrymyn10lnizjfkk2q2scdfkrkgh7ayj7v"; libraryHaskellDepends = [ base - MaybeT - mtl + containers + xmonad + xmonad-contrib ]; - description = "Monads for operations that can exit early and produce warnings"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; + description = "A library for specifying xmonad key bindings with functionality"; + license = lib.licenses.bsd3; } ) { }; - "Dao" = callPackage ( + "Diff" = callPackage ( { mkDerivation, array, base, - binary, - bytestring, - containers, - Crypto, - data-binary-ieee754, - deepseq, directory, - filepath, - mtl, + pretty, process, - random, - time, - transformers, - utf8-string, + QuickCheck, + test-framework, + test-framework-quickcheck2, }: mkDerivation { - pname = "Dao"; - version = "0.1.0.2"; - sha256 = "1f7svqvlywj0jgzssdgrhvbbfm0yjnq0qr2c7xqc501y6wr3msym"; - isLibrary = true; - isExecutable = true; + pname = "Diff"; + version = "1.0.2"; + sha256 = "11ad6ng3pqjb9dixnqk35bpgzjzva7ifnnjjlz0z5xzbsp9jcznd"; libraryHaskellDepends = [ array base - binary - bytestring - containers - Crypto - data-binary-ieee754 - deepseq - directory - filepath - mtl - process - random - time - transformers - utf8-string - ]; - executableHaskellDepends = [ - array - base - binary - bytestring - containers - Crypto - data-binary-ieee754 - deepseq - directory - filepath - mtl - process - random - time - transformers - utf8-string + pretty ]; testHaskellDepends = [ array base - binary - bytestring - containers - Crypto - data-binary-ieee754 - deepseq directory - filepath - mtl + pretty process - random - time - transformers - utf8-string + QuickCheck + test-framework + test-framework-quickcheck2 ]; - description = "Dao is meta programming language with its own built-in interpreted language, designed with artificial intelligence applications in mind"; - license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - mainProgram = "dao"; - broken = true; + description = "Diff algorithm in pure Haskell"; + license = lib.licenses.bsd3; } ) { }; - "DarcsHelpers" = callPackage ( + "Digit" = callPackage ( { mkDerivation, base, - HaXml, - mtl, - parsec, - safe, - xml-parsec, + HUnit, + QuickCheck, + test-framework, + test-framework-hunit, + test-framework-quickcheck2, }: mkDerivation { - pname = "DarcsHelpers"; - version = "0.1"; - sha256 = "02nqaphxd3xlh191wxpx3rcixms70v8d6h4a3lxg24d7lcyf82n3"; + pname = "Digit"; + version = "0.0.3"; + sha256 = "0cdsmy9km9wpywqprdymn9bd982ba859px2giswz41xh6pbjri8w"; libraryHaskellDepends = [ base - HaXml - mtl - parsec - safe - xml-parsec + HUnit + QuickCheck + test-framework + test-framework-hunit + test-framework-quickcheck2 ]; - description = "Code used by Patch-Shack that seemed sensible to open for reusability"; - license = "GPL"; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "Data-Angle" = callPackage ( - { mkDerivation, base }: - mkDerivation { - pname = "Data-Angle"; - version = "0.9"; - sha256 = "0lk0w64hyqkg99r9ccn5k1nh6rmd99z8d925px4cl09nin7hnm71"; - libraryHaskellDepends = [ base ]; - description = "Geometric angles"; + description = "A data-type representing digits 0-9"; license = lib.licenses.bsd3; } ) { }; - "Data-Hash-Consistent" = callPackage ( + "DigitGroup" = callPackage ( { mkDerivation, base, - bytestring, - digest, - utf8-string, - vector, - vector-algorithms, + split, }: mkDerivation { - pname = "Data-Hash-Consistent"; - version = "0.1.1"; - sha256 = "1vblfzndfzb458j6ygfcq0mfzzc5c87gwpmcx31v10fxpqnfmm65"; + pname = "DigitGroup"; + version = "0.1.0.0"; + sha256 = "1g9bxrawx2ard4pm6rs9li0kk3wj5f5ll0b2l2dwc74i23anb9lz"; libraryHaskellDepends = [ base - bytestring - digest - utf8-string - vector - vector-algorithms + split ]; - description = "Provide a simple consistent hashing mechanism"; + description = "Group the digits of numbers by lots"; license = lib.licenses.bsd3; } ) { }; - "Data-Rope" = callPackage ( + "DirectSound" = callPackage ( { mkDerivation, base, - bytestring, - unix, + dsound, + Win32, }: mkDerivation { - pname = "Data-Rope"; - version = "0.2"; - sha256 = "0zvp9h06f2ylkn325d35cap3y67zpfyc70nqad3426p64p1xmnrw"; + pname = "DirectSound"; + version = "0.0.0"; + sha256 = "1x78y1na375nwgk4izsjprj3yrg0xbrhqv6nrzfbvbfdyqlf5kyz"; libraryHaskellDepends = [ base - bytestring - unix + Win32 ]; - description = "Ropes, an alternative to (Byte)Strings"; - license = "GPL"; - hydraPlatforms = lib.platforms.none; - broken = true; + librarySystemDepends = [ dsound ]; + description = "Partial binding to the Microsoft DirectSound API"; + license = lib.licenses.bsd3; + platforms = lib.platforms.windows; } - ) { }; + ) { dsound = null; }; - "DataIndex" = callPackage ( + "DistanceTransform" = callPackage ( { mkDerivation, base, - criterion, - tasty, - tasty-hspec, + HUnit, + primitive, + test-framework, + test-framework-hunit, + vector, }: mkDerivation { - pname = "DataIndex"; - version = "0.1.1"; - sha256 = "1wzd3gr82sw6pn1ss7xw9x6b89ns3p13m7lz6dw5bipyzbjsdpb0"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base ]; - executableHaskellDepends = [ base ]; - testHaskellDepends = [ + pname = "DistanceTransform"; + version = "0.1.2"; + sha256 = "0c77sbx6qls8wfhv0wbappbkgfab046ls8mqs32qj02k549s6fk5"; + libraryHaskellDepends = [ base - tasty - tasty-hspec + primitive + vector ]; - benchmarkHaskellDepends = [ + testHaskellDepends = [ base - criterion + HUnit + test-framework + test-framework-hunit + vector ]; - description = "A package for adding index column to data files"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - mainProgram = "DataIndex"; - broken = true; + description = "Distance transform function"; + license = lib.licenses.bsd3; + } + ) { }; + + "DistanceUnits" = callPackage ( + { mkDerivation, base }: + mkDerivation { + pname = "DistanceUnits"; + version = "0.1.0.1"; + sha256 = "0ls6rq4nqn3z9h9lagl8sff9q94zfm6gssa2jj1zfyfxl5869bas"; + libraryHaskellDepends = [ base ]; + description = "A comprehensive distance library"; + license = lib.licenses.bsd3; } ) { }; - "DataTreeView" = callPackage ( + "Docs" = callPackage ( { mkDerivation, base, - bytestring, - containers, - deepseq, - glib, - gtk, - lifted-base, - ListLike, - MissingH, - monad-control, - mtl, - syb, - transformers-base, + html, }: mkDerivation { - pname = "DataTreeView"; - version = "0.1.1"; - sha256 = "0z54kr79bjv8w1gnsrxq9vkwdhasdwzrsi48q7ndsg8x7k30gpdj"; + pname = "Docs"; + version = "1.0.0"; + sha256 = "1hjdznp29kwj9cca0jxr3dds9cnfbss6sgn52wym2380az3jcvnz"; libraryHaskellDepends = [ base - bytestring - containers - deepseq - glib - gtk - lifted-base - ListLike - MissingH - monad-control - mtl - syb - transformers-base + html ]; - description = "A GTK widget for displaying arbitrary Data.Data.Data instances"; + description = "Documentation types library"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; } ) { }; - "DataVersion" = callPackage ( + "EEConfig" = callPackage ( { mkDerivation, base, - generic-lens, - hspec, - microlens, - QuickCheck, + containers, }: mkDerivation { - pname = "DataVersion"; - version = "0.1.0.1"; - sha256 = "051fmlydjqhp67b1ivb7rhaz1vwya6g6r6akwwms1lkhl6d95yda"; + pname = "EEConfig"; + version = "1.0"; + sha256 = "1bkkzj1d0j4nisdl9jfmadjx32w35ipdw3k12krhzzlf5aiwnrf1"; libraryHaskellDepends = [ base - generic-lens - microlens - ]; - testHaskellDepends = [ - base - hspec - QuickCheck + containers ]; - description = "Type safe data migrations"; - license = lib.licenses.mit; + description = "ExtremlyEasyConfig - Extremly Simple parser for config files"; + license = lib.licenses.bsd3; } ) { }; - "Deadpan-DDP" = callPackage ( + "ENIG" = callPackage ( { mkDerivation, - aeson, base, - base64-bytestring, - bytestring, - containers, - doctest, - filemanip, - hashable, - haskeline, - lens, - mtl, - network, - network-uri, + HUnit, QuickCheck, - random, - safe, - scientific, - stm, + test-framework, + test-framework-hunit, + test-framework-quickcheck2, + test-framework-th, text, - time, - transformers, - unordered-containers, + unicode-transforms, vector, - websockets, }: mkDerivation { - pname = "Deadpan-DDP"; - version = "0.9.6.0"; - sha256 = "1ikqaxnm5npa4wfplw2nd44h3ny7jmmn691m9brzxrn38wrn1f6w"; - isLibrary = true; - isExecutable = true; + pname = "ENIG"; + version = "0.0.1.0"; + sha256 = "1zv6dybsnj3kssiyyg69lxyj5wvi5qjx0xp7skg362xzqmi97ch3"; libraryHaskellDepends = [ - aeson - base - base64-bytestring - bytestring - containers - hashable - lens - mtl - network - network-uri - random - safe - scientific - stm - text - time - transformers - unordered-containers - vector - websockets - ]; - executableHaskellDepends = [ - aeson base - base64-bytestring - bytestring - containers - hashable - haskeline - lens - mtl - network - network-uri - random - safe - scientific - stm text - time - transformers - unordered-containers + unicode-transforms vector - websockets ]; testHaskellDepends = [ base - doctest - filemanip + HUnit QuickCheck + test-framework + test-framework-hunit + test-framework-quickcheck2 + test-framework-th + text + unicode-transforms ]; - description = "Write clients for Meteor's DDP Protocol"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - mainProgram = "deadpan"; - broken = true; + description = "Auto Korean conjugator/adjustor/adopter/converter"; + license = lib.licenses.bsd3; } ) { }; - "DebugTraceHelpers" = callPackage ( + "EVP" = callPackage ( { mkDerivation, base, - mtl, + containers, + data-default-class, + text, + yaml, }: mkDerivation { - pname = "DebugTraceHelpers"; - version = "0.12"; - sha256 = "0yjv3awhp3jsfqqn36xc0jpisp4hfypx3hkibad3yqrrn61bkzy8"; + pname = "EVP"; + version = "0.1"; + sha256 = "02xvxykxn4ishy12sscssdj9xnpvirpq7fk0jg7wvgrmm2ya7mkv"; libraryHaskellDepends = [ base - mtl + containers + data-default-class + text + yaml ]; - description = "Convenience functions and instances for Debug.Trace"; - license = "GPL"; + testHaskellDepends = [ + base + text + ]; + description = "Environment Variable Parser"; + license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; } ) { }; - "Decimal" = callPackage ( + "Earley" = callPackage ( { mkDerivation, base, + criterion, deepseq, - HUnit, + ListLike, + parsec, QuickCheck, - test-framework, - test-framework-hunit, - test-framework-quickcheck2, + tasty, + tasty-hunit, + tasty-quickcheck, }: mkDerivation { - pname = "Decimal"; - version = "0.5.2"; - sha256 = "19w7i9f0lbiyzwa0v3bm95233vi7f1688f0xms6cnjsf88h04ym3"; + pname = "Earley"; + version = "0.13.0.1"; + sha256 = "169qjicjj09wg879vp86ali4rrqpw0ikazvdi3i1qi6pl3yvqq0y"; + isLibrary = true; + isExecutable = true; libraryHaskellDepends = [ base - deepseq + ListLike ]; testHaskellDepends = [ base - deepseq - HUnit QuickCheck - test-framework - test-framework-hunit - test-framework-quickcheck2 + tasty + tasty-hunit + tasty-quickcheck ]; - description = "Decimal numbers with variable precision"; + benchmarkHaskellDepends = [ + base + criterion + deepseq + ListLike + parsec + ]; + description = "Parsing all context-free grammars using Earley's algorithm"; license = lib.licenses.bsd3; } ) { }; - "DecisionTree" = callPackage ( + "Ebnf2ps" = callPackage ( { mkDerivation, + array, base, containers, + directory, + happy, + old-time, + unix, }: mkDerivation { - pname = "DecisionTree"; - version = "0.0"; - sha256 = "14yprfh2b5x7dswp6kyaym3z2f32nqvgrfhvwsiv7brxq80cfvbd"; - libraryHaskellDepends = [ + pname = "Ebnf2ps"; + version = "1.0.15"; + sha256 = "0jrbxanhp81n3nabdw5s1gh8a78hy4bgnv5slqzrkj6n47bygk0f"; + isLibrary = false; + isExecutable = true; + executableHaskellDepends = [ + array base containers + directory + old-time + unix ]; - description = "A very simple implementation of decision trees for discrete attributes"; - license = "LGPL"; - hydraPlatforms = lib.platforms.none; - broken = true; + executableToolDepends = [ happy ]; + description = "Peter's Syntax Diagram Drawing Tool"; + license = lib.licenses.bsd3; + mainProgram = "ebnf2ps"; + } + ) { }; + + "EdisonAPI" = callPackage ( + { mkDerivation, base }: + mkDerivation { + pname = "EdisonAPI"; + version = "1.3.3.2"; + sha256 = "0cqcji5lsyd0n60qy76d18vmfamabdvybd6d4v1y658cqylsnrgn"; + libraryHaskellDepends = [ base ]; + description = "A library of efficient, purely-functional data structures (API)"; + license = lib.licenses.mit; } ) { }; - "DeepArrow" = callPackage ( + "EdisonCore" = callPackage ( { mkDerivation, + array, base, - haskell-src, - mtl, - TypeCompose, + containers, + EdisonAPI, + QuickCheck, }: mkDerivation { - pname = "DeepArrow"; - version = "0.4.0"; - sha256 = "1jbvb8yk291iimpqi8h302r8554k4j2p3k42znzppv1wqrbhvjyc"; + pname = "EdisonCore"; + version = "1.3.3.2"; + sha256 = "1d7nq6zmxnd2h1zdzpql2k48cqxsr8hncd8xarb8g27709qlgyag"; libraryHaskellDepends = [ + array base - haskell-src - mtl - TypeCompose + containers + EdisonAPI + QuickCheck ]; - description = "Arrows for \"deep application\""; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; + description = "A library of efficient, purely-functional data structures (Core Implementations)"; + license = lib.licenses.mit; } ) { }; - "DeepDarkFantasy" = callPackage ( + "Eight-Ball-Pool-Hack-Cheats" = callPackage ( { mkDerivation, base, - bimap, - constraints, - containers, - mtl, + Cabal, + cabal-doctest, + doctest, + hspec, + hspec-discover, + lens, QuickCheck, - random, - recursion-schemes, + servant, + servant-auth, + servant-auth-docs, + servant-docs, template-haskell, + text, }: mkDerivation { - pname = "DeepDarkFantasy"; - version = "0.2017.8.19"; - sha256 = "1hsmxb961jvlv77y3ajrd2gjfr84z2kq451fwwm4q6p28grjvj8l"; - libraryHaskellDepends = [ + pname = "Eight-Ball-Pool-Hack-Cheats"; + version = "1.0.1"; + sha256 = "0k620c0ia441rfvxaw2q5n43g5pnml4sn1cr1vzclc9iz0mfdy72"; + revision = "2"; + editedCabalFile = "13dkqc5pa7sjf3xfwgs7kajb7f1ai187w35p8pzni5is0hnaxfmz"; + setupHaskellDepends = [ base - bimap - constraints - containers - mtl - random - recursion-schemes - template-haskell + Cabal + cabal-doctest ]; + libraryHaskellDepends = [ base ]; testHaskellDepends = [ base - constraints - mtl + doctest + hspec + lens QuickCheck - random + servant + servant-auth + servant-auth-docs + servant-docs + template-haskell + text ]; - description = "A DSL for creating neural network"; - license = lib.licenses.asl20; + testToolDepends = [ hspec-discover ]; + description = "spam"; + license = lib.licenses.bsd3; hydraPlatforms = lib.platforms.none; broken = true; } ) { }; - "DefendTheKing" = callPackage ( + "Enum" = callPackage ( { mkDerivation, base, - binary, + smallcheck, + tasty, + tasty-hunit, + }: + mkDerivation { + pname = "Enum"; + version = "0.2.0.0"; + sha256 = "0bk44zim92b5qb95byvcyy8cmbgzbxf06mp0nr765p9v48rjkr91"; + libraryHaskellDepends = [ base ]; + testHaskellDepends = [ + base + smallcheck + tasty + tasty-hunit + ]; + description = "Non-crashing `Enum` operations"; + license = lib.licenses.bsd3; + } + ) { }; + + "EuroIT" = callPackage ( + { mkDerivation, base }: + mkDerivation { + pname = "EuroIT"; + version = "2010.2.5"; + sha256 = "1a6bvi0y1pnzpx0x3arrardgkbs0m8ssfwcyxf6fim87wcb0jcgv"; + libraryHaskellDepends = [ base ]; + description = "Library for using euro currency, italian language"; + license = lib.licenses.bsd3; + } + ) { }; + + "Euterpea" = callPackage ( + { + mkDerivation, + array, + arrows, + base, bytestring, containers, - GLUT, - HTTP, - MaybeT, - mtl, - network, - peakachu, + deepseq, + ghc-prim, + HCodecs, + heap, + PortMidi, random, - time, - utility-ht, - zlib, + stm, }: mkDerivation { - pname = "DefendTheKing"; - version = "0.3.1"; - sha256 = "09wzab0343m55xq4dxfv0f9lwpd5v97mymd6408s6p82xa2vqlzw"; - isLibrary = false; - isExecutable = true; - enableSeparateDataOutput = true; - executableHaskellDepends = [ + pname = "Euterpea"; + version = "2.0.7"; + sha256 = "0kxdilxzg0dgz1684csbyfv4cifh9d92ac6pwp6dnrcwwpwskiw8"; + revision = "2"; + editedCabalFile = "05z8vn26yr8hl2dh23g80fpxj8s90hdaajjfnpblrkzhczz7317s"; + libraryHaskellDepends = [ + array + arrows base - binary bytestring containers - GLUT - HTTP - MaybeT - mtl - network - peakachu + deepseq + ghc-prim + HCodecs + heap + PortMidi random - time - utility-ht - zlib + stm ]; - description = "A simple RTS game"; - license = "GPL"; - hydraPlatforms = lib.platforms.none; + description = "Library for computer music research and education"; + license = lib.licenses.bsd3; + badPlatforms = lib.platforms.darwin; } ) { }; - "Delta-Lambda" = callPackage ( + "FAI" = callPackage ( { mkDerivation, base, - bytestring, - Cabal, - cereal, - cpphs, - filepath, - haskeline, - megaparsec, - mtl, - options, - parallel, - text, - wl-pprint, + hspec, + inline-c, }: mkDerivation { - pname = "Delta-Lambda"; - version = "0.3.0.0"; - sha256 = "1z354aa181dka2sr4q6vzix4y0lgm5821l2ma0dlyypxk74a3xqq"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ + pname = "FAI"; + version = "0.1.0.20"; + sha256 = "0w0fygy7vj2fgvgg2fmw24sb75rsv24bhanly5m067sjdcqaj5cy"; + libraryHaskellDepends = [ base - bytestring - Cabal - cereal - cpphs - filepath - haskeline - megaparsec - mtl - options - parallel - text - wl-pprint + inline-c ]; testHaskellDepends = [ base - bytestring - Cabal - cereal - cpphs - filepath - haskeline - megaparsec - mtl - options - parallel - text - wl-pprint + hspec + inline-c ]; - description = "A demonstration interpreter for type system delta-lambda (of N.G. De-bruijn)"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - mainProgram = "Delta-Lambda"; - broken = true; + description = "Haskell Foreign Accelerate Interface"; + license = lib.licenses.lgpl3Only; } ) { }; - "DescriptiveKeys" = callPackage ( + "FTGL" = callPackage ( { mkDerivation, base, - containers, - xmonad, - xmonad-contrib, + ftgl, }: mkDerivation { - pname = "DescriptiveKeys"; - version = "0.0.4"; - sha256 = "0ywipcmnr3ysmx8m61yrymyn10lnizjfkk2q2scdfkrkgh7ayj7v"; - libraryHaskellDepends = [ - base - containers - xmonad - xmonad-contrib - ]; - description = "A library for specifying xmonad key bindings with functionality"; + pname = "FTGL"; + version = "2.1"; + sha256 = "0b76798bxxivjrjx92qiv8ghsg3j8rhvfms8sl19ji6fip2h3fw2"; + libraryHaskellDepends = [ base ]; + librarySystemDepends = [ ftgl ]; + description = "Portable TrueType font rendering for OpenGL using the Freetype2 library"; license = lib.licenses.bsd3; + badPlatforms = lib.platforms.darwin; } - ) { }; + ) { inherit (pkgs) ftgl; }; - "Dflow" = callPackage ( + "FULE" = callPackage ( { mkDerivation, base, containers, - HUnit, - QuickCheck, - stm, - test-framework, - test-framework-quickcheck2, - time, + deepseq, + mtl, + transformers, }: mkDerivation { - pname = "Dflow"; - version = "0.0.1"; - sha256 = "00gzs5fdybfrvqidw4qzk6i69qzq4jaljzhb49ah2hsv3gqjr1iq"; - enableSeparateDataOutput = true; + pname = "FULE"; + version = "0.3.1.2"; + sha256 = "07i0bzindm64fczhblzirrjhal09c0hfwn1zw1fcrbllk958m2z4"; libraryHaskellDepends = [ base containers - QuickCheck - stm - time + deepseq + mtl + transformers ]; testHaskellDepends = [ base - HUnit - QuickCheck - test-framework - test-framework-quickcheck2 + containers + deepseq + mtl + transformers ]; - description = "Processing Real-time event streams"; + description = "Functional UI Layout Engine"; license = lib.licenses.bsd3; hydraPlatforms = lib.platforms.none; broken = true; } ) { }; - "Diff" = callPackage ( + "Facebook-Password-Hacker-Online-Latest-Version" = callPackage ( { mkDerivation, - array, base, - directory, - pretty, - process, + Cabal, + cabal-doctest, + doctest, + hspec, + hspec-discover, + lens, QuickCheck, - test-framework, - test-framework-quickcheck2, + servant, + servant-auth, + servant-auth-docs, + servant-docs, + template-haskell, + text, }: mkDerivation { - pname = "Diff"; - version = "1.0.2"; - sha256 = "11ad6ng3pqjb9dixnqk35bpgzjzva7ifnnjjlz0z5xzbsp9jcznd"; + pname = "Facebook-Password-Hacker-Online-Latest-Version"; + version = "1.0.1"; + sha256 = "0xvr2bj800i7ssbn6gbz4pknhakrgifkirf3rsn6ln4g35h29m07"; + revision = "1"; + editedCabalFile = "0p70xim6ay9ffs5s69nw64znridyb7fzdfawh3gp0fzlybzmjypy"; + setupHaskellDepends = [ + base + Cabal + cabal-doctest + ]; libraryHaskellDepends = [ - array base - pretty + lens + servant + servant-auth + servant-docs + text ]; testHaskellDepends = [ - array base - directory - pretty - process + doctest + hspec + lens QuickCheck - test-framework - test-framework-quickcheck2 + servant + servant-auth + servant-auth-docs + servant-docs + template-haskell + text ]; - description = "Diff algorithm in pure Haskell"; + testToolDepends = [ hspec-discover ]; + description = "spam"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; } ) { }; - "DifferenceLogic" = callPackage ( + "FailT" = callPackage ( { mkDerivation, base, - containers, - fgl, - FirstOrderTheory, - HUnit, + doctest, + exceptions, + hspec, + mtl, + QuickCheck, + quickcheck-classes, + text, }: mkDerivation { - pname = "DifferenceLogic"; - version = "0.1.0.4"; - sha256 = "0ylpn6bksf6alxzk45cg88ff8xgffh88x3csvjlhb6zn8ik0w99a"; + pname = "FailT"; + version = "0.1.2.0"; + sha256 = "1hvn1bzkaazzc6hdyq27kfd99jbvj9wbsfajahsf3rzp9mqxbqzi"; libraryHaskellDepends = [ base - containers - fgl - FirstOrderTheory - HUnit + exceptions + mtl + text + ]; + testHaskellDepends = [ + base + doctest + exceptions + hspec + mtl + QuickCheck + quickcheck-classes ]; - description = "A theory solver for conjunctions of literals in difference logic"; + description = "A 'FailT' monad transformer that plays well with 'MonadFail'"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; } ) { }; - "DifferentialEvolution" = callPackage ( + "FenwickTree" = callPackage ( { mkDerivation, base, - deepseq, - fclabels, - mtl, - mwc-random, - parallel, - primitive, - vector, + QuickCheck, + template-haskell, }: mkDerivation { - pname = "DifferentialEvolution"; - version = "0.0.2"; - sha256 = "0z16g40n369d2wqljnrkmpd18149ny8nh2pd13hkkjnq5n6k209w"; + pname = "FenwickTree"; + version = "0.1.2.1"; + sha256 = "0g7hhkim16wsjf8l79hqkiv1lain6jm8wpiml1iycra3n9i2s5ww"; + enableSeparateDataOutput = true; libraryHaskellDepends = [ base - deepseq - fclabels - mtl - mwc-random - parallel - primitive - vector + QuickCheck + template-haskell ]; - description = "Global optimization using Differential Evolution"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; + testHaskellDepends = [ + base + QuickCheck + template-haskell + ]; + description = "Data structure for fast query and update of cumulative sums"; + license = lib.licenses.bsd3; } ) { }; - "Digit" = callPackage ( + "FindBin" = callPackage ( { mkDerivation, base, - HUnit, - QuickCheck, - test-framework, - test-framework-hunit, - test-framework-quickcheck2, + directory, + filepath, }: mkDerivation { - pname = "Digit"; - version = "0.0.3"; - sha256 = "0cdsmy9km9wpywqprdymn9bd982ba859px2giswz41xh6pbjri8w"; + pname = "FindBin"; + version = "0.0.5"; + sha256 = "197xvn05yysmibm1p5wzxfa256lvpbknr5d1l2ws6g40w1kpk717"; libraryHaskellDepends = [ base - HUnit - QuickCheck - test-framework - test-framework-hunit - test-framework-quickcheck2 + directory + filepath ]; - description = "A data-type representing digits 0-9"; + description = "Locate directory of original program"; license = lib.licenses.bsd3; } ) { }; - "DigitGroup" = callPackage ( + "FiniteCategories" = callPackage ( { mkDerivation, base, - split, + containers, + directory, + filepath, + random, + text, + WeakSets, }: mkDerivation { - pname = "DigitGroup"; - version = "0.1.0.0"; - sha256 = "1g9bxrawx2ard4pm6rs9li0kk3wj5f5ll0b2l2dwc74i23anb9lz"; + pname = "FiniteCategories"; + version = "0.6.5.1"; + sha256 = "0wjq5z9rh7c1c08s0vqr45nkvqlimlllh5bdpqi6pajyf3x58504"; libraryHaskellDepends = [ base - split + containers + directory + filepath + random + text + WeakSets ]; - description = "Group the digits of numbers by lots"; - license = lib.licenses.bsd3; + testHaskellDepends = [ + base + containers + directory + filepath + random + text + WeakSets + ]; + description = "Finite categories and usual categorical constructions on them"; + license = lib.licenses.gpl3Plus; } ) { }; - "DigitalOcean" = callPackage ( + "FiniteCategoriesGraphViz" = callPackage ( { mkDerivation, - aeson, base, - bytestring, containers, - exceptions, - hspec, - lens, - mtl, + directory, + fgl, + filepath, + FiniteCategories, + graphviz, + process, + random, text, - transformers, - unordered-containers, - vector, - wreq, + WeakSets, }: mkDerivation { - pname = "DigitalOcean"; - version = "0.1.1.0"; - sha256 = "09sh0j1dk366nkq3pwgsxi8zcka9p3f38bsw6nfzr7q4chjjblz4"; + pname = "FiniteCategoriesGraphViz"; + version = "0.2.0.0"; + sha256 = "1ff4mqbqlpki959d9qcq6h91v4p93iq4llac47kgzv98mcwvy146"; libraryHaskellDepends = [ - aeson base - bytestring containers - exceptions - lens - mtl + directory + fgl + filepath + FiniteCategories + graphviz + process + random text - transformers - unordered-containers - vector - wreq + WeakSets ]; testHaskellDepends = [ base - hspec - lens - mtl + containers + directory + fgl + filepath + FiniteCategories + graphviz + process + random text + WeakSets ]; - description = "A client library for the DigitalOcean API"; - license = lib.licenses.agpl3Only; + description = "Transform objects of the package FiniteCategories into graphs using GraphViz"; + license = lib.licenses.gpl3Plus; hydraPlatforms = lib.platforms.none; broken = true; } ) { }; - "DimensionalHash" = callPackage ( + "FirstPrelude" = callPackage ( { mkDerivation, base }: mkDerivation { - pname = "DimensionalHash"; - version = "0.1.5.2"; - sha256 = "0bbg9w5n3b296g884y8qvgzsndqhzwh0mkn3dlp9nx4a7i321c97"; + pname = "FirstPrelude"; + version = "0.1.2.0"; + sha256 = "00qv9h9i3yy7rh6wl8qs2r00z9hqpm56y9g717qh0skrl1fdk3yk"; libraryHaskellDepends = [ base ]; - description = "An n-dimensional hash using Morton numbers"; + description = "A version of Prelude suitable for teaching"; license = lib.licenses.bsd3; hydraPlatforms = lib.platforms.none; broken = true; } ) { }; - "DirectSound" = callPackage ( + "FixedPoint-simple" = callPackage ( { mkDerivation, base, - dsound, - Win32, + deepseq, + template-haskell, }: mkDerivation { - pname = "DirectSound"; - version = "0.0.0"; - sha256 = "1x78y1na375nwgk4izsjprj3yrg0xbrhqv6nrzfbvbfdyqlf5kyz"; + pname = "FixedPoint-simple"; + version = "0.6.1"; + sha256 = "0qfys17q3i56l20wzkpr8inq130j67kya022ynf0sgbc86avlrcn"; libraryHaskellDepends = [ base - Win32 + deepseq + template-haskell ]; - librarySystemDepends = [ dsound ]; - description = "Partial binding to the Microsoft DirectSound API"; + description = "Fixed point, large word, and large int numerical representations (types and common class instances)"; license = lib.licenses.bsd3; - platforms = lib.platforms.windows; } - ) { dsound = null; }; + ) { }; + + "Flint2" = + callPackage + ( + { + mkDerivation, + base, + containers, + flint, + gmp, + groups, + QuickCheck, + }: + mkDerivation { + pname = "Flint2"; + version = "0.1.0.5"; + sha256 = "0hldi7kknhb4kl228b658skn2irakmshb84dqmdgpy76v5b7klxx"; + libraryHaskellDepends = [ + base + containers + groups + QuickCheck + ]; + librarySystemDepends = [ flint ]; + libraryPkgconfigDepends = [ + flint + gmp + ]; + testHaskellDepends = [ base ]; + description = "Haskell bindings for the flint library for number theory"; + license = lib.licenses.gpl2Only; + hydraPlatforms = lib.platforms.none; + broken = true; + } + ) + { + inherit (pkgs) flint; + inherit (pkgs) gmp; + }; - "DisTract" = callPackage ( + "Flint2-Examples" = callPackage ( { mkDerivation, base, - Cabal, - chunks, containers, - directory, filepath, - hinstaller, - old-locale, - parsec, - pretty, - process, - template-haskell, + Flint2, + gloss, + gloss-juicy, + JuicyPixels, + mtl, + optparse-applicative, time, - xhtml, + timeit, }: mkDerivation { - pname = "DisTract"; - version = "0.2.5"; - sha256 = "0pnlk09jsallyparwdfcy7jmqjjiprp2pqlg9agp6xbw5xmnkzwb"; - isLibrary = true; + pname = "Flint2-Examples"; + version = "0.1.0.2"; + sha256 = "1dyy1wfllxrx56aws4s55bpyiw89ad2jm033pa7zhv9628g8ymar"; + isLibrary = false; isExecutable = true; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ + executableHaskellDepends = [ base - Cabal - chunks containers - directory filepath - hinstaller - old-locale - parsec - pretty - process - template-haskell + Flint2 + gloss + gloss-juicy + JuicyPixels + mtl + optparse-applicative time - xhtml + timeit ]; - description = "Distributed Bug Tracking System"; - license = lib.licenses.bsd3; + testHaskellDepends = [ + base + containers + Flint2 + mtl + optparse-applicative + timeit + ]; + description = "Examples for the Flint2 library"; + license = lib.licenses.gpl2Only; hydraPlatforms = lib.platforms.none; } ) { }; - "DiscussionSupportSystem" = callPackage ( + "FloatingHex" = callPackage ( { mkDerivation, base, - blaze-html, - blaze-markup, - doctest, - html, - parsers, + template-haskell, }: mkDerivation { - pname = "DiscussionSupportSystem"; - version = "0.11.0.3"; - sha256 = "0iqcv3b06r9sqj1adxfq08vq5mlq4b7z88c2cw4qa7l9xw2p2js3"; + pname = "FloatingHex"; + version = "0.5"; + sha256 = "0c38062vnjmy3fc5nxwg7sgbfabikaakgdsl34ka229s6w7pm8x3"; libraryHaskellDepends = [ base - blaze-html - blaze-markup - html - parsers - ]; - testHaskellDepends = [ - base - doctest + template-haskell ]; - description = "Discussion support system"; - license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - broken = true; + description = "Read and write hexadecimal floating point numbers"; + license = lib.licenses.bsd3; } ) { }; - "Dish" = callPackage ( + "Focus" = callPackage ( { mkDerivation, base, - bytestring, + MissingH, + split, }: mkDerivation { - pname = "Dish"; - version = "0.0.0.6"; - sha256 = "1adrlc00assbr7sl0bvnkl452k7hnf663y32ih4wdg3p2sb0dhci"; - isLibrary = true; - isExecutable = true; + pname = "Focus"; + version = "0.1.2"; + sha256 = "1f1ch6mxgaam1i4ryd1av879y2f8wn3wmg47h23w2l0pvgmxgrj1"; libraryHaskellDepends = [ base - bytestring - ]; - executableHaskellDepends = [ - base - bytestring + MissingH + split ]; - description = "Hash modules (currently Murmur3)"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "Dish"; - broken = true; - } - ) { }; - - "Dist" = callPackage ( - { - mkDerivation, - base, - containers, - MonadRandom, - }: - mkDerivation { - pname = "Dist"; - version = "0.5.0"; - sha256 = "1x4yg2hhccx7mpa1fch609ibcqz2b1vmg5fiik4qimq5yw9j7g99"; - libraryHaskellDepends = [ - base - containers - MonadRandom - ]; - testHaskellDepends = [ - base - containers - MonadRandom - ]; - description = "A Haskell library for probability distributions"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "DistanceTransform" = callPackage ( - { - mkDerivation, - base, - HUnit, - primitive, - test-framework, - test-framework-hunit, - vector, - }: - mkDerivation { - pname = "DistanceTransform"; - version = "0.1.2"; - sha256 = "0c77sbx6qls8wfhv0wbappbkgfab046ls8mqs32qj02k549s6fk5"; - libraryHaskellDepends = [ - base - primitive - vector - ]; - testHaskellDepends = [ - base - HUnit - test-framework - test-framework-hunit - vector - ]; - description = "Distance transform function"; - license = lib.licenses.bsd3; - } - ) { }; - - "DistanceUnits" = callPackage ( - { mkDerivation, base }: - mkDerivation { - pname = "DistanceUnits"; - version = "0.1.0.1"; - sha256 = "0ls6rq4nqn3z9h9lagl8sff9q94zfm6gssa2jj1zfyfxl5869bas"; - libraryHaskellDepends = [ base ]; - description = "A comprehensive distance library"; - license = lib.licenses.bsd3; - } - ) { }; - - "DnaProteinAlignment" = callPackage ( - { - mkDerivation, - ADPfusion, - ansi-wl-pprint, - array, - base, - BiobaseBlast, - BiobaseFasta, - BiobaseXNA, - biocore, - bytestring, - cmdargs, - conduit, - dlist, - parallel, - PrimitiveArray, - repa, - split, - vector, - }: - mkDerivation { - pname = "DnaProteinAlignment"; - version = "0.0.0.1"; - sha256 = "00c74anpm3varyf0man1i213dksxvh2p32xsp4rqijkbnxpkjbx3"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - ADPfusion - ansi-wl-pprint - array - base - BiobaseBlast - BiobaseFasta - BiobaseXNA - biocore - bytestring - cmdargs - conduit - dlist - parallel - PrimitiveArray - repa - split - vector - ]; - executableHaskellDepends = [ - ADPfusion - ansi-wl-pprint - array - base - BiobaseBlast - BiobaseFasta - BiobaseXNA - biocore - bytestring - cmdargs - conduit - dlist - parallel - PrimitiveArray - repa - split - vector - ]; - description = "Frameshift-aware alignment of protein sequences with DNA sequences"; - license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - mainProgram = "DnaProteinAlignment"; - } - ) { }; - - "DocTest" = callPackage ( - { - mkDerivation, - base, - containers, - ghc, - ghc-paths, - haddock, - HUnit, - process, - }: - mkDerivation { - pname = "DocTest"; - version = "0.2.0.1"; - sha256 = "1w9r50cyiz31fn4dmlh3qmmpv9qapxgg70c10a86m6sxdl75q827"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - containers - ghc - ghc-paths - haddock - HUnit - process - ]; - description = "Test interactive Haskell examples"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - mainProgram = "doctest"; - } - ) { }; - - "Docs" = callPackage ( - { - mkDerivation, - base, - html, - }: - mkDerivation { - pname = "Docs"; - version = "1.0.0"; - sha256 = "1hjdznp29kwj9cca0jxr3dds9cnfbss6sgn52wym2380az3jcvnz"; - libraryHaskellDepends = [ - base - html - ]; - description = "Documentation types library"; - license = lib.licenses.bsd3; - } - ) { }; - - "DrHylo" = callPackage ( - { - mkDerivation, - array, - base, - containers, - haskell-src-exts, - mtl, - pointless-haskell, - pretty, - syb, - }: - mkDerivation { - pname = "DrHylo"; - version = "0.0.2"; - sha256 = "1cs7zqz0yzdyj3vn38cfh1lj90xnxm24q8lml457f2yia4z7l6h7"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - haskell-src-exts - mtl - pointless-haskell - syb - ]; - executableHaskellDepends = [ - array - base - containers - pretty - ]; - description = "A tool for deriving hylomorphisms"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "DrHylo"; - } - ) { }; - - "DrIFT" = callPackage ( - { - mkDerivation, - base, - filepath, - old-time, - process, - random, - }: - mkDerivation { - pname = "DrIFT"; - version = "2.4.2"; - sha256 = "1w0wfmrjifidl2qz998ig07afd4p6yp890lwl8as57bay490nakl"; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ base ]; - executableHaskellDepends = [ - base - filepath - old-time - process - random - ]; - description = "Program to derive type class instances"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "DrIFT-cabalized" = callPackage ( - { - mkDerivation, - base, - old-time, - process, - random, - }: - mkDerivation { - pname = "DrIFT-cabalized"; - version = "2.3.0"; - sha256 = "0jk7qmlgjw69w38hm91bnyp8gyi1mjmrq4vyv7jv3y69rk0fi6wl"; - isLibrary = false; - isExecutable = true; - enableSeparateDataOutput = true; - executableHaskellDepends = [ - base - old-time - process - random - ]; - description = "Program to derive type class instances"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "Dung" = callPackage ( - { - mkDerivation, - base, - cmdargs, - containers, - parsec, - }: - mkDerivation { - pname = "Dung"; - version = "1.1"; - sha256 = "1higdpqg599lfc92m7dd4zy98l9vjg5xr4n4qjv0wifszj8lrsgb"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - cmdargs - containers - parsec - ]; - description = "An implementation of the Dung argumentation frameworks"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "dungell"; - broken = true; - } - ) { }; - - "Dust" = callPackage ( - { - mkDerivation, - base, - binary, - bytestring, - cereal, - containers, - crypto-api, - directory, - Dust-crypto, - entropy, - ghc-prim, - HUnit, - network, - QuickCheck, - random, - random-extras, - random-fu, - random-source, - split, - test-framework, - test-framework-hunit, - test-framework-quickcheck2, - test-framework-th, - threefish, - }: - mkDerivation { - pname = "Dust"; - version = "2.3.1"; - sha256 = "0j2pm2ram7idh46mi6jv0whk4rx0bicvsvayrn3arnq65zk2mavj"; - libraryHaskellDepends = [ - base - binary - bytestring - cereal - containers - crypto-api - directory - Dust-crypto - entropy - ghc-prim - network - random - random-extras - random-fu - random-source - split - threefish - ]; - testHaskellDepends = [ - base - bytestring - cereal - Dust-crypto - ghc-prim - HUnit - QuickCheck - test-framework - test-framework-hunit - test-framework-quickcheck2 - test-framework-th - threefish - ]; - description = "Polymorphic protocol engine"; - license = "GPL"; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "Dust-crypto" = callPackage ( - { - mkDerivation, - base, - binary, - bytestring, - cereal, - containers, - crypto-api, - cryptohash, - directory, - Dust, - entropy, - ghc-prim, - HUnit, - network, - openssl, - QuickCheck, - random, - random-extras, - random-fu, - random-source, - skein, - split, - test-framework, - test-framework-hunit, - test-framework-quickcheck2, - threefish, - }: - mkDerivation { - pname = "Dust-crypto"; - version = "0.1"; - sha256 = "112prydwsjd32aiv3kg8wsxwaj95p6x7jhxcf118fxgrrg202z9w"; - libraryHaskellDepends = [ - base - binary - bytestring - cereal - containers - crypto-api - cryptohash - directory - entropy - ghc-prim - network - random - random-extras - random-fu - random-source - skein - split - threefish - ]; - librarySystemDepends = [ openssl ]; - testHaskellDepends = [ - base - bytestring - cereal - Dust - ghc-prim - HUnit - QuickCheck - test-framework - test-framework-hunit - test-framework-quickcheck2 - threefish - ]; - description = "Cryptographic operations"; - license = "GPL"; - hydraPlatforms = lib.platforms.none; - } - ) { inherit (pkgs) openssl; }; - - "Dust-tools" = callPackage ( - { - mkDerivation, - base, - binary, - bytestring, - cereal, - containers, - csv, - directory, - Dust, - Dust-crypto, - entropy, - ghc-prim, - network, - random, - random-extras, - random-fu, - random-source, - split, - }: - mkDerivation { - pname = "Dust-tools"; - version = "1.3.2"; - sha256 = "1g1l7h5400f9qckhj4yw2zwwjjkqz5w1fgnc9gxa7rdl37wgxwn4"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - binary - bytestring - cereal - containers - directory - Dust - Dust-crypto - entropy - ghc-prim - network - random - random-extras - random-fu - random-source - split - ]; - executableHaskellDepends = [ - base - binary - bytestring - cereal - containers - csv - directory - Dust - entropy - ghc-prim - network - random - random-extras - random-fu - random-source - split - ]; - description = "Network filtering exploration tools"; - license = "GPL"; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "Dust-tools-pcap" = callPackage ( - { - mkDerivation, - base, - binary, - bytestring, - cereal, - containers, - csv, - directory, - Dust, - Dust-crypto, - Dust-tools, - entropy, - ghc-prim, - network, - pcap, - random, - random-extras, - random-fu, - random-source, - split, - }: - mkDerivation { - pname = "Dust-tools-pcap"; - version = "1.3.1"; - sha256 = "1swykscl17qy17qy38y6zc47sbiyaszh9m4qwn7d9sckfa6azsdr"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - binary - bytestring - cereal - containers - csv - directory - Dust - Dust-crypto - Dust-tools - entropy - ghc-prim - network - pcap - random - random-extras - random-fu - random-source - split - ]; - description = "Network filtering exploration tools that rely on pcap"; - license = "GPL"; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "DynamicTimeWarp" = callPackage ( - { - mkDerivation, - array, - base, - criterion, - QuickCheck, - random, - vector, - }: - mkDerivation { - pname = "DynamicTimeWarp"; - version = "0.1.0.0"; - sha256 = "0m58bq2jvnr17kdapfydd063af6w5vdyzxad5izk0cj0gids5hk7"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - array - base - vector - ]; - executableHaskellDepends = [ - array - base - criterion - QuickCheck - random - vector - ]; - description = "Dynamic time warping of sequences"; - license = lib.licenses.lgpl3Only; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "DysFRP" = callPackage ( - { - mkDerivation, - base, - contravariant, - mtl, - time, - transformers, - }: - mkDerivation { - pname = "DysFRP"; - version = "0.1"; - sha256 = "1jw1s2imd2qhh9i0m7sm1zhy876bgp1pcrh4jcf5dilvqnhvv4j1"; - libraryHaskellDepends = [ - base - contravariant - mtl - time - transformers - ]; - description = "dysFunctional Reactive Programming"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "DysFRP-Cairo" = callPackage ( - { - mkDerivation, - base, - cairo, - DysFRP, - gtk, - mtl, - }: - mkDerivation { - pname = "DysFRP-Cairo"; - version = "0.1"; - sha256 = "1pg6gwyrlvp6z08ab1qp783z9gm0xhnh337shf443f1bwbcz9m7f"; - libraryHaskellDepends = [ - base - cairo - DysFRP - gtk - mtl - ]; - description = "dysFunctional Reactive Programming on Cairo"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "DysFRP-Craftwerk" = callPackage ( - { - mkDerivation, - base, - cairo, - containers, - craftwerk, - craftwerk-gtk, - DysFRP, - DysFRP-Cairo, - gtk, - }: - mkDerivation { - pname = "DysFRP-Craftwerk"; - version = "0.1"; - sha256 = "0rhm7ya1h43dwa83fcvnc8nd9da7ji6qlwzsa9ngv7pqvs7aamy1"; - libraryHaskellDepends = [ - base - cairo - containers - craftwerk - craftwerk-gtk - DysFRP - DysFRP-Cairo - gtk - ]; - description = "dysFunctional Reactive Programming on Craftwerk"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "EEConfig" = callPackage ( - { - mkDerivation, - base, - containers, - }: - mkDerivation { - pname = "EEConfig"; - version = "1.0"; - sha256 = "1bkkzj1d0j4nisdl9jfmadjx32w35ipdw3k12krhzzlf5aiwnrf1"; - libraryHaskellDepends = [ - base - containers - ]; - description = "ExtremlyEasyConfig - Extremly Simple parser for config files"; - license = lib.licenses.bsd3; - } - ) { }; - - "ENIG" = callPackage ( - { - mkDerivation, - base, - HUnit, - QuickCheck, - test-framework, - test-framework-hunit, - test-framework-quickcheck2, - test-framework-th, - text, - unicode-transforms, - vector, - }: - mkDerivation { - pname = "ENIG"; - version = "0.0.1.0"; - sha256 = "1zv6dybsnj3kssiyyg69lxyj5wvi5qjx0xp7skg362xzqmi97ch3"; - libraryHaskellDepends = [ - base - text - unicode-transforms - vector - ]; - testHaskellDepends = [ - base - HUnit - QuickCheck - test-framework - test-framework-hunit - test-framework-quickcheck2 - test-framework-th - text - unicode-transforms - ]; - description = "Auto Korean conjugator/adjustor/adopter/converter"; - license = lib.licenses.bsd3; - } - ) { }; - - "EVP" = callPackage ( - { - mkDerivation, - base, - containers, - data-default-class, - text, - yaml, - }: - mkDerivation { - pname = "EVP"; - version = "0.1"; - sha256 = "02xvxykxn4ishy12sscssdj9xnpvirpq7fk0jg7wvgrmm2ya7mkv"; - libraryHaskellDepends = [ - base - containers - data-default-class - text - yaml - ]; - testHaskellDepends = [ - base - text - ]; - description = "Environment Variable Parser"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "Earley" = callPackage ( - { - mkDerivation, - base, - criterion, - deepseq, - ListLike, - parsec, - QuickCheck, - tasty, - tasty-hunit, - tasty-quickcheck, - }: - mkDerivation { - pname = "Earley"; - version = "0.13.0.1"; - sha256 = "169qjicjj09wg879vp86ali4rrqpw0ikazvdi3i1qi6pl3yvqq0y"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - ListLike - ]; - testHaskellDepends = [ - base - QuickCheck - tasty - tasty-hunit - tasty-quickcheck - ]; - benchmarkHaskellDepends = [ - base - criterion - deepseq - ListLike - parsec - ]; - description = "Parsing all context-free grammars using Earley's algorithm"; - license = lib.licenses.bsd3; - } - ) { }; - - "Ebnf2ps" = callPackage ( - { - mkDerivation, - array, - base, - containers, - directory, - happy, - old-time, - unix, - }: - mkDerivation { - pname = "Ebnf2ps"; - version = "1.0.15"; - sha256 = "0jrbxanhp81n3nabdw5s1gh8a78hy4bgnv5slqzrkj6n47bygk0f"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - array - base - containers - directory - old-time - unix - ]; - executableToolDepends = [ happy ]; - description = "Peter's Syntax Diagram Drawing Tool"; - license = lib.licenses.bsd3; - mainProgram = "ebnf2ps"; - } - ) { }; - - "EdisonAPI" = callPackage ( - { mkDerivation, base }: - mkDerivation { - pname = "EdisonAPI"; - version = "1.3.3.2"; - sha256 = "0cqcji5lsyd0n60qy76d18vmfamabdvybd6d4v1y658cqylsnrgn"; - libraryHaskellDepends = [ base ]; - description = "A library of efficient, purely-functional data structures (API)"; - license = lib.licenses.mit; - } - ) { }; - - "EdisonCore" = callPackage ( - { - mkDerivation, - array, - base, - containers, - EdisonAPI, - QuickCheck, - }: - mkDerivation { - pname = "EdisonCore"; - version = "1.3.3.2"; - sha256 = "1d7nq6zmxnd2h1zdzpql2k48cqxsr8hncd8xarb8g27709qlgyag"; - libraryHaskellDepends = [ - array - base - containers - EdisonAPI - QuickCheck - ]; - description = "A library of efficient, purely-functional data structures (Core Implementations)"; - license = lib.licenses.mit; - } - ) { }; - - "EditTimeReport" = callPackage ( - { - mkDerivation, - array, - base, - containers, - csv, - directory, - editline, - filepath, - haskell98, - html, - pretty, - xhtml, - }: - mkDerivation { - pname = "EditTimeReport"; - version = "1.0"; - sha256 = "11a922535h6jvg79cv03jz6sn93h7jhqfrf9wi9x8arak9l06j70"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - array - base - containers - csv - directory - editline - filepath - haskell98 - html - pretty - xhtml - ]; - description = "Query language and report generator for edit logs"; - license = "GPL"; - hydraPlatforms = lib.platforms.none; - mainProgram = "report"; - } - ) { }; - - "Eight-Ball-Pool-Hack-Cheats" = callPackage ( - { - mkDerivation, - base, - Cabal, - cabal-doctest, - doctest, - hspec, - hspec-discover, - lens, - QuickCheck, - servant, - servant-auth, - servant-auth-docs, - servant-docs, - template-haskell, - text, - }: - mkDerivation { - pname = "Eight-Ball-Pool-Hack-Cheats"; - version = "1.0.1"; - sha256 = "0k620c0ia441rfvxaw2q5n43g5pnml4sn1cr1vzclc9iz0mfdy72"; - revision = "2"; - editedCabalFile = "13dkqc5pa7sjf3xfwgs7kajb7f1ai187w35p8pzni5is0hnaxfmz"; - setupHaskellDepends = [ - base - Cabal - cabal-doctest - ]; - libraryHaskellDepends = [ base ]; - testHaskellDepends = [ - base - doctest - hspec - lens - QuickCheck - servant - servant-auth - servant-auth-docs - servant-docs - template-haskell - text - ]; - testToolDepends = [ hspec-discover ]; - description = "spam"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "EitherT" = callPackage ( - { - mkDerivation, - base, - monad-control, - transformers, - transformers-base, - }: - mkDerivation { - pname = "EitherT"; - version = "0.2.0"; - sha256 = "1vry479zdq1fw7bd4d373c7wf2gg0aibkyb03710w7z2x86chssw"; - revision = "1"; - editedCabalFile = "0vlcdqjkpljsqhwhpjvaqp2rj43qs7jxxm56703syya3ka6ggim1"; - libraryHaskellDepends = [ - base - monad-control - transformers - transformers-base - ]; - description = "EitherT monad transformer"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "Elm" = callPackage ( - { - mkDerivation, - aeson, - aeson-pretty, - base, - binary, - blaze-html, - blaze-markup, - bytestring, - cheapskate, - cmdargs, - containers, - directory, - filemanip, - filepath, - highlighting-kate, - HUnit, - indents, - language-ecmascript, - language-glsl, - mtl, - parsec, - pretty, - process, - QuickCheck, - test-framework, - test-framework-hunit, - test-framework-quickcheck2, - text, - transformers, - union-find, - unordered-containers, - }: - mkDerivation { - pname = "Elm"; - version = "0.13"; - sha256 = "1l6p00h0717blwvia0gvqpsakq8jy44fxc6brr4qxs5g4yjcjnmh"; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - aeson - aeson-pretty - base - binary - blaze-html - blaze-markup - bytestring - cheapskate - cmdargs - containers - directory - filepath - highlighting-kate - indents - language-ecmascript - language-glsl - mtl - parsec - pretty - text - transformers - union-find - unordered-containers - ]; - executableHaskellDepends = [ - aeson - aeson-pretty - base - binary - blaze-html - blaze-markup - bytestring - cheapskate - cmdargs - containers - directory - filepath - highlighting-kate - indents - language-ecmascript - language-glsl - mtl - parsec - pretty - text - transformers - union-find - unordered-containers - ]; - testHaskellDepends = [ - aeson - aeson-pretty - base - binary - blaze-html - blaze-markup - bytestring - cheapskate - cmdargs - containers - directory - filemanip - filepath - highlighting-kate - HUnit - indents - language-ecmascript - language-glsl - mtl - parsec - pretty - process - QuickCheck - test-framework - test-framework-hunit - test-framework-quickcheck2 - text - transformers - union-find - unordered-containers - ]; - description = "The Elm language module"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "Emping" = callPackage ( - { - mkDerivation, - array, - base, - containers, - fgl, - gtk, - mtl, - parsec, - }: - mkDerivation { - pname = "Emping"; - version = "0.6"; - sha256 = "131h71fgn0zbsmbqmvbfl57is0dbm37xsi5g87gpjgq0k2cq0nkr"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - array - base - containers - fgl - gtk - mtl - parsec - ]; - description = "derives heuristic rules from nominal data"; - license = "GPL"; - hydraPlatforms = lib.platforms.none; - mainProgram = "emping"; - broken = true; - } - ) { }; - - "Empty" = callPackage ( - { - mkDerivation, - base, - containers, - }: - mkDerivation { - pname = "Empty"; - version = "0.1.0.1"; - sha256 = "0gcm29iafh3gpiqg34gcvyx2pyvgarp4kxl928c6f7x27hzbibv2"; - libraryHaskellDepends = [ - base - containers - ]; - description = "A type class for empty containers"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "Encode" = callPackage ( - { - mkDerivation, - base, - Cabal, - containers, - mtl, - }: - mkDerivation { - pname = "Encode"; - version = "1.3.8"; - sha256 = "1488d5c5snxnl75lrqzzl8h45xw75rczimn1lixzs4zlfmz66z4z"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - Cabal - containers - mtl - ]; - executableHaskellDepends = [ - base - Cabal - containers - mtl - ]; - description = "Encoding character data"; - license = "GPL"; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "EntrezHTTP" = callPackage ( - { - mkDerivation, - base, - biocore, - bytestring, - conduit, - HTTP, - http-conduit, - hxt, - mtl, - network, - Taxonomy, - text, - transformers, - }: - mkDerivation { - pname = "EntrezHTTP"; - version = "1.0.4"; - sha256 = "1gp5g3r05rwayk1gdb9dfzjmywwlr5d236dygryzmga9q13gwvxq"; - libraryHaskellDepends = [ - base - biocore - bytestring - conduit - HTTP - http-conduit - hxt - mtl - network - Taxonomy - text - transformers - ]; - description = "Libary to interface with the NCBI Entrez REST service"; - license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "Enum" = callPackage ( - { - mkDerivation, - base, - smallcheck, - tasty, - tasty-hunit, - }: - mkDerivation { - pname = "Enum"; - version = "0.2.0.0"; - sha256 = "0bk44zim92b5qb95byvcyy8cmbgzbxf06mp0nr765p9v48rjkr91"; - libraryHaskellDepends = [ base ]; - testHaskellDepends = [ - base - smallcheck - tasty - tasty-hunit - ]; - description = "Non-crashing `Enum` operations"; - license = lib.licenses.bsd3; - } - ) { }; - - "EnumContainers" = callPackage ( - { - mkDerivation, - base, - containers, - deepseq, - }: - mkDerivation { - pname = "EnumContainers"; - version = "0.1"; - sha256 = "14ckpgaviny3c0d1jn3blkkpri0cm8ac264y7kak965knjccq0k8"; - libraryHaskellDepends = [ - base - containers - deepseq - ]; - description = "Simple Enum-class-based int containers"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "EnumMap" = callPackage ( - { - mkDerivation, - base, - containers, - }: - mkDerivation { - pname = "EnumMap"; - version = "0.0.2"; - sha256 = "1v3jp1l95kybvdlpvp6bd0ryihxrvlnpkqz7fl1n4vazhkqk6zjz"; - libraryHaskellDepends = [ - base - containers - ]; - description = "More general IntMap replacement"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "Eq" = callPackage ( - { - mkDerivation, - array, - base, - containers, - filepath, - HaXml, - mtl, - parsec, - template-haskell, - transformers, - }: - mkDerivation { - pname = "Eq"; - version = "1.1.3"; - sha256 = "0hcfjzlirw11jl752g2jncb71i8sk2w3nqjm4ykc64f5awj1hi23"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - array - base - containers - filepath - HaXml - mtl - parsec - template-haskell - transformers - ]; - description = "Render math formula in ASCII, and perform some simplifications"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "eq"; - broken = true; - } - ) { }; - - "EqualitySolver" = callPackage ( - { - mkDerivation, - base, - containers, - HUnit, - mtl, - union-find-array, - }: - mkDerivation { - pname = "EqualitySolver"; - version = "0.1.0.2"; - sha256 = "0ynzzl9mmn5hxkcndx60lnxn455nm065v7nk7rhpq1yigwz0cl1g"; - libraryHaskellDepends = [ - base - containers - HUnit - mtl - union-find-array - ]; - description = "A theory solver for conjunctions of literals in the theory of uninterpreted functions with equality"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "EsounD" = callPackage ( - { - mkDerivation, - base, - base-unicode-symbols, - bindings-EsounD, - monad-control, - network, - regions, - safer-file-handles, - storablevector, - transformers, - unix, - }: - mkDerivation { - pname = "EsounD"; - version = "0.2"; - sha256 = "1d22k3836c92xd6qg5pvjhgrhbajd438z3pfjvi0bl2wdrkzddjr"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - base-unicode-symbols - bindings-EsounD - monad-control - network - regions - safer-file-handles - storablevector - transformers - unix - ]; - description = "Type-safe bindings to EsounD (ESD; Enlightened Sound Daemon)"; - license = lib.licenses.publicDomain; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "EstProgress" = callPackage ( - { - mkDerivation, - ansi-terminal, - base, - mtl, - }: - mkDerivation { - pname = "EstProgress"; - version = "0.3.0.0"; - sha256 = "15xijkc23sqakwa4qmf2hvcn07kd9ahx3z15a6lr18cs43pbjw93"; - libraryHaskellDepends = [ - ansi-terminal - base - mtl - ]; - description = "Methods for estimating the progress of functions"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "EtaMOO" = - callPackage - ( - { - mkDerivation, - array, - async, - base, - bytestring, - case-insensitive, - containers, - cryptonite, - hashable, - haskeline, - libxcrypt, - memory, - mtl, - network, - parsec, - pcre, - pipes, - pipes-bytestring, - pipes-concurrency, - pipes-network, - random, - stm, - stm-chans, - text, - time, - transformers, - unix, - unordered-containers, - vcache, - vector, - }: - mkDerivation { - pname = "EtaMOO"; - version = "0.3.0.0"; - sha256 = "0z656y40p51xxmmcvajxyfbx9mzfhpblg8ips5zl7v79vyvl84sh"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - array - async - base - bytestring - case-insensitive - containers - cryptonite - hashable - haskeline - memory - mtl - network - parsec - pipes - pipes-bytestring - pipes-concurrency - pipes-network - random - stm - stm-chans - text - time - transformers - unix - unordered-containers - vcache - vector - ]; - executableSystemDepends = [ libxcrypt ]; - executablePkgconfigDepends = [ pcre ]; - description = "A new implementation of the LambdaMOO server"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "etamoo"; - } - ) - { - inherit (pkgs) libxcrypt; - inherit (pkgs) pcre; - }; - - "Etage" = callPackage ( - { - mkDerivation, - base, - containers, - ghc, - mtl, - operational, - random, - SafeSemaphore, - time, - unix, - }: - mkDerivation { - pname = "Etage"; - version = "0.1.12"; - sha256 = "1ik8j7s1z64dpdg251m8dr7k7llkhxydlf6l6dhyv9ra55dg4n20"; - libraryHaskellDepends = [ - base - containers - ghc - mtl - operational - random - SafeSemaphore - time - unix - ]; - description = "A general data-flow framework"; - license = lib.licenses.lgpl3Only; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "Etage-Graph" = callPackage ( - { - mkDerivation, - array, - base, - containers, - deepseq, - Etage, - fgl, - mtl, - parallel, - random, - time, - }: - mkDerivation { - pname = "Etage-Graph"; - version = "0.1.8"; - sha256 = "0xzsvah4nhxv5hw8p0sv1pjy4p30xa3f2afs8jncx20n918mk9l2"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - containers - Etage - fgl - mtl - ]; - executableHaskellDepends = [ - array - base - containers - deepseq - Etage - fgl - mtl - parallel - random - time - ]; - description = "Data-flow based graph algorithms"; - license = lib.licenses.lgpl3Only; - hydraPlatforms = lib.platforms.none; - mainProgram = "etage-graph-test"; - } - ) { }; - - "Eternal10Seconds" = callPackage ( - { - mkDerivation, - base, - haskell98, - SDL, - SDL-mixer, - }: - mkDerivation { - pname = "Eternal10Seconds"; - version = "0.2"; - sha256 = "0kh1zjqr9cmx7xyfk2y3iwr3x3zvh3pb4ghfjz3xr2wwg2rmymxp"; - isLibrary = false; - isExecutable = true; - enableSeparateDataOutput = true; - executableHaskellDepends = [ - base - haskell98 - SDL - SDL-mixer - ]; - description = "A 2-D shooting game"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "Eternal10Seconds"; - } - ) { }; - - "Etherbunny" = callPackage ( - { - mkDerivation, - base, - binary, - bytestring, - haskell98, - libpcap, - network, - pcap, - }: - mkDerivation { - pname = "Etherbunny"; - version = "0.3"; - sha256 = "0cm98x626cqwri9qsfhwi6s50kg433a1p78y9na70z868p6n27nj"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - binary - bytestring - haskell98 - network - pcap - ]; - executableHaskellDepends = [ - base - binary - bytestring - haskell98 - network - pcap - ]; - executableSystemDepends = [ libpcap ]; - description = "A network analysis toolkit for Haskell"; - license = "GPL"; - hydraPlatforms = lib.platforms.none; - mainProgram = "etherbunny"; - } - ) { inherit (pkgs) libpcap; }; - - "EuroIT" = callPackage ( - { mkDerivation, base }: - mkDerivation { - pname = "EuroIT"; - version = "2010.2.5"; - sha256 = "1a6bvi0y1pnzpx0x3arrardgkbs0m8ssfwcyxf6fim87wcb0jcgv"; - libraryHaskellDepends = [ base ]; - description = "Library for using euro currency, italian language"; - license = lib.licenses.bsd3; - } - ) { }; - - "Euterpea" = callPackage ( - { - mkDerivation, - array, - arrows, - base, - bytestring, - containers, - deepseq, - ghc-prim, - HCodecs, - heap, - PortMidi, - random, - stm, - }: - mkDerivation { - pname = "Euterpea"; - version = "2.0.7"; - sha256 = "0kxdilxzg0dgz1684csbyfv4cifh9d92ac6pwp6dnrcwwpwskiw8"; - revision = "2"; - editedCabalFile = "05z8vn26yr8hl2dh23g80fpxj8s90hdaajjfnpblrkzhczz7317s"; - libraryHaskellDepends = [ - array - arrows - base - bytestring - containers - deepseq - ghc-prim - HCodecs - heap - PortMidi - random - stm - ]; - description = "Library for computer music research and education"; - license = lib.licenses.bsd3; - badPlatforms = lib.platforms.darwin; - } - ) { }; - - "EventSocket" = callPackage ( - { - mkDerivation, - base, - bytestring, - containers, - haskell98, - mtl, - network, - }: - mkDerivation { - pname = "EventSocket"; - version = "0.1"; - sha256 = "03wf8msjcpj8bpnjr7f1wcbag018kap544jwz9a7vnllamps92xd"; - libraryHaskellDepends = [ - base - bytestring - containers - haskell98 - mtl - network - ]; - description = "Interfaces with FreeSwitch Event Socket"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "Extra" = callPackage ( - { - mkDerivation, - base, - bytestring, - bzlib, - containers, - directory, - filepath, - HUnit, - mtl, - network-uri, - old-locale, - old-time, - pretty, - process, - pureMD5, - QuickCheck, - random, - regex-compat, - time, - unix, - Unixutils, - zlib, - }: - mkDerivation { - pname = "Extra"; - version = "1.46.3"; - sha256 = "1xmwp9cp905nzx5x858wyacjpppn76mkfpkxksdhlq9zhmkp5yyh"; - libraryHaskellDepends = [ - base - bytestring - bzlib - containers - directory - filepath - HUnit - mtl - network-uri - old-locale - old-time - pretty - process - pureMD5 - QuickCheck - random - regex-compat - time - unix - Unixutils - zlib - ]; - description = "A grab bag of modules"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "FAI" = callPackage ( - { - mkDerivation, - base, - hspec, - inline-c, - }: - mkDerivation { - pname = "FAI"; - version = "0.1.0.20"; - sha256 = "0w0fygy7vj2fgvgg2fmw24sb75rsv24bhanly5m067sjdcqaj5cy"; - libraryHaskellDepends = [ - base - inline-c - ]; - testHaskellDepends = [ - base - hspec - inline-c - ]; - description = "Haskell Foreign Accelerate Interface"; - license = lib.licenses.lgpl3Only; - } - ) { }; - - "FComp" = callPackage ( - { - mkDerivation, - array, - base, - binary, - deepseq, - ghc-prim, - HarmTrace-Base, - haskore, - instant-generics, - ListLike, - midi, - mtl, - QuickCheck, - random, - template-haskell, - time, - uu-parsinglib, - }: - mkDerivation { - pname = "FComp"; - version = "1.0.2"; - sha256 = "0hkmh3vjibbzkh004b4zig2rvvnh6l2cdqsmxbpyjbwqryzraxrn"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - array - base - binary - deepseq - ghc-prim - HarmTrace-Base - haskore - instant-generics - ListLike - midi - mtl - QuickCheck - random - template-haskell - time - uu-parsinglib - ]; - executableHaskellDepends = [ - array - base - binary - deepseq - ghc-prim - HarmTrace-Base - haskore - instant-generics - ListLike - midi - mtl - QuickCheck - random - template-haskell - time - uu-parsinglib - ]; - description = "Compose music"; - license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - mainProgram = "fcomp"; - } - ) { }; - - "FM-SBLEX" = callPackage ( - { - mkDerivation, - array, - base, - containers, - haskell98, - }: - mkDerivation { - pname = "FM-SBLEX"; - version = "3.0.1"; - sha256 = "1cb3qq8yqn19xpsjbczxs8rablkczaigs6hp2vypsjyw5s8sqza8"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - array - base - containers - haskell98 - ]; - description = "A set of computational morphology tools for Swedish diachronic lexicons"; - license = "GPL"; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "FModExRaw" = callPackage ( - { - mkDerivation, - base, - fmodex64, - }: - mkDerivation { - pname = "FModExRaw"; - version = "0.2.0.0"; - sha256 = "0l2zhlxh88wy9y9gk1aa03yy65iw8zigr4pgp63mn2mqcrskfszl"; - libraryHaskellDepends = [ base ]; - librarySystemDepends = [ fmodex64 ]; - description = "The Haskell FModEx raw API"; - license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { fmodex64 = null; }; - - "FPretty" = callPackage ( - { - mkDerivation, - base, - containers, - }: - mkDerivation { - pname = "FPretty"; - version = "1.1"; - sha256 = "0hpbm11z95wfh0i1dp2c35maksnz0zxpz9vbxq6f5c13x4i03b5q"; - revision = "1"; - editedCabalFile = "0d6mjr7b37f5bgjijjgx4x4fgfmkbhksphzkaf0p5jyzxp45fasc"; - libraryHaskellDepends = [ - base - containers - ]; - description = "Efficient simple pretty printing combinators"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "FSM" = callPackage ( - { - mkDerivation, - base, - containers, - matrix, - vector, - }: - mkDerivation { - pname = "FSM"; - version = "1.0.0"; - sha256 = "0gsrfzk5g499r7xdhsaag53207bd015jwcrl2f9izmpa6gli5las"; - libraryHaskellDepends = [ - base - containers - matrix - vector - ]; - description = "Basic concepts of finite state machines"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "FTGL" = callPackage ( - { - mkDerivation, - base, - ftgl, - }: - mkDerivation { - pname = "FTGL"; - version = "2.1"; - sha256 = "0b76798bxxivjrjx92qiv8ghsg3j8rhvfms8sl19ji6fip2h3fw2"; - libraryHaskellDepends = [ base ]; - librarySystemDepends = [ ftgl ]; - description = "Portable TrueType font rendering for OpenGL using the Freetype2 library"; - license = lib.licenses.bsd3; - badPlatforms = lib.platforms.darwin; - } - ) { inherit (pkgs) ftgl; }; - - "FTGL-bytestring" = callPackage ( - { - mkDerivation, - base, - bytestring, - ftgl, - StateVar-transformer, - transformers, - }: - mkDerivation { - pname = "FTGL-bytestring"; - version = "2.0"; - sha256 = "11y8g2gi4g6x639c9wfj2224f9vgaf88hdd1f981al53kzf7y2y2"; - libraryHaskellDepends = [ - base - bytestring - StateVar-transformer - transformers - ]; - librarySystemDepends = [ ftgl ]; - description = "Portable TrueType font rendering for OpenGL using the Freetype2 library"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { inherit (pkgs) ftgl; }; - - "FTPLine" = callPackage ( - { - mkDerivation, - ansi-terminal, - base, - bytestring, - directory, - ftphs, - haskeline, - mtl, - network, - strict, - }: - mkDerivation { - pname = "FTPLine"; - version = "1.4.1.1"; - sha256 = "106jhy936xdi2cfbch7js57a2zhd9kj303zzd83mqh3vbdi599ml"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - ansi-terminal - base - bytestring - directory - ftphs - haskeline - mtl - network - strict - ]; - description = "A command-line FTP client"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "FTPLine"; - } - ) { }; - - "FULE" = callPackage ( - { - mkDerivation, - base, - containers, - deepseq, - mtl, - transformers, - }: - mkDerivation { - pname = "FULE"; - version = "0.3.1.2"; - sha256 = "07i0bzindm64fczhblzirrjhal09c0hfwn1zw1fcrbllk958m2z4"; - libraryHaskellDepends = [ - base - containers - deepseq - mtl - transformers - ]; - testHaskellDepends = [ - base - containers - deepseq - mtl - transformers - ]; - description = "Functional UI Layout Engine"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "Facebook-Password-Hacker-Online-Latest-Version" = callPackage ( - { - mkDerivation, - base, - Cabal, - cabal-doctest, - doctest, - hspec, - hspec-discover, - lens, - QuickCheck, - servant, - servant-auth, - servant-auth-docs, - servant-docs, - template-haskell, - text, - }: - mkDerivation { - pname = "Facebook-Password-Hacker-Online-Latest-Version"; - version = "1.0.1"; - sha256 = "0xvr2bj800i7ssbn6gbz4pknhakrgifkirf3rsn6ln4g35h29m07"; - revision = "1"; - editedCabalFile = "0p70xim6ay9ffs5s69nw64znridyb7fzdfawh3gp0fzlybzmjypy"; - setupHaskellDepends = [ - base - Cabal - cabal-doctest - ]; - libraryHaskellDepends = [ - base - lens - servant - servant-auth - servant-docs - text - ]; - testHaskellDepends = [ - base - doctest - hspec - lens - QuickCheck - servant - servant-auth - servant-auth-docs - servant-docs - template-haskell - text - ]; - testToolDepends = [ hspec-discover ]; - description = "spam"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "Facts" = callPackage ( - { - mkDerivation, - AC-Angle, - base, - containers, - digits, - QuickCheck, - template-haskell, - }: - mkDerivation { - pname = "Facts"; - version = "0.1.2"; - sha256 = "018g9qj6nmabjbl4rakqjp32vwfyak1wk5cx3s0amm53wnf2mz75"; - libraryHaskellDepends = [ - AC-Angle - base - containers - digits - QuickCheck - template-haskell - ]; - description = "A collection of facts about the real world"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "FailT" = callPackage ( - { - mkDerivation, - base, - doctest, - exceptions, - hspec, - mtl, - QuickCheck, - quickcheck-classes, - text, - }: - mkDerivation { - pname = "FailT"; - version = "0.1.2.0"; - sha256 = "1hvn1bzkaazzc6hdyq27kfd99jbvj9wbsfajahsf3rzp9mqxbqzi"; - libraryHaskellDepends = [ - base - exceptions - mtl - text - ]; - testHaskellDepends = [ - base - doctest - exceptions - hspec - mtl - QuickCheck - quickcheck-classes - ]; - description = "A 'FailT' monad transformer that plays well with 'MonadFail'"; - license = lib.licenses.bsd3; - } - ) { }; - - "FailureT" = callPackage ( - { - mkDerivation, - base, - base-unicode-symbols, - mmtl, - }: - mkDerivation { - pname = "FailureT"; - version = "15778.1"; - sha256 = "1qhjqswx4qyfan3rpvvl1hgmf369krqprlr6x20hp34r2qw9s135"; - libraryHaskellDepends = [ - base - base-unicode-symbols - mmtl - ]; - description = "Failure Monad Transformer"; - license = lib.licenses.publicDomain; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "FastPush" = callPackage ( - { - mkDerivation, - base, - STMonadTrans, - vector, - }: - mkDerivation { - pname = "FastPush"; - version = "0.1.0.3"; - sha256 = "0yxaqyn6nxbyfkn5pmd7wh951dhdvkg1xgh5757f7hn00bx87wv1"; - libraryHaskellDepends = [ - base - STMonadTrans - vector - ]; - description = "A monad and monad transformer for pushing things onto a stack very fast"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "FastxPipe" = callPackage ( - { - mkDerivation, - attoparsec, - base, - blaze-builder, - bytestring, - pipes, - pipes-attoparsec, - pipes-bytestring, - }: - mkDerivation { - pname = "FastxPipe"; - version = "0.2.0.0"; - sha256 = "1img1aivadrdljsixzll3qpdzvbjqy18mcwanli6w70ch556jsa9"; - libraryHaskellDepends = [ - attoparsec - base - blaze-builder - bytestring - pipes - pipes-attoparsec - pipes-bytestring - ]; - description = "Fasta and Fastq streaming"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "FenwickTree" = callPackage ( - { - mkDerivation, - base, - QuickCheck, - template-haskell, - }: - mkDerivation { - pname = "FenwickTree"; - version = "0.1.2.1"; - sha256 = "0g7hhkim16wsjf8l79hqkiv1lain6jm8wpiml1iycra3n9i2s5ww"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base - QuickCheck - template-haskell - ]; - testHaskellDepends = [ - base - QuickCheck - template-haskell - ]; - description = "Data structure for fast query and update of cumulative sums"; - license = lib.licenses.bsd3; - } - ) { }; - - "FermatsLastMargin" = callPackage ( - { - mkDerivation, - base, - HAppS-Data, - HAppS-IxSet, - HAppS-Server, - HAppS-State, - HAppS-Util, - haskell98, - HaXml, - mtl, - old-time, - random, - syb-with-class, - template-haskell, - }: - mkDerivation { - pname = "FermatsLastMargin"; - version = "0.1"; - sha256 = "07sryfn26afisrsgnzrp0vjshspa40pvl4214mzb5mdm9h5c63f8"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - HAppS-Data - HAppS-IxSet - HAppS-Server - HAppS-State - HAppS-Util - haskell98 - HaXml - mtl - old-time - random - syb-with-class - template-haskell - ]; - description = "Annotate ps and pdf documents"; - license = "GPL"; - hydraPlatforms = lib.platforms.none; - mainProgram = "flm"; - } - ) { }; - - "FerryCore" = callPackage ( - { - mkDerivation, - base, - containers, - HaXml, - mtl, - parsec, - pretty, - TableAlgebra, - template-haskell, - }: - mkDerivation { - pname = "FerryCore"; - version = "0.4.6.4"; - sha256 = "1dxhbrmcl36dg14lyihpy8fd8sdsmawh70fykllcjk3fh7a11wgp"; - libraryHaskellDepends = [ - base - containers - HaXml - mtl - parsec - pretty - TableAlgebra - template-haskell - ]; - description = "Ferry Core Components"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "Feval" = callPackage ( - { - mkDerivation, - base, - containers, - mtl, - parsec, - }: - mkDerivation { - pname = "Feval"; - version = "1.0.0.1"; - sha256 = "0mlbgfjmh7kdk10kcbnm88b89jnsl84kc2k9gyximqnwvlpd5n2p"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - containers - mtl - parsec - ]; - description = "Evaluation using F-Algebras"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - mainProgram = "Feval"; - broken = true; - } - ) { }; - - "FieldTrip" = callPackage ( - { - mkDerivation, - base, - GLUT, - graphicsFormats, - MemoTrie, - old-time, - OpenGL, - TypeCompose, - vector-space, - }: - mkDerivation { - pname = "FieldTrip"; - version = "0.2.7"; - sha256 = "1161mz8443j1jr8pnkh6gz6w99cd16hk94ypsh8vzmpbfp40i5rb"; - libraryHaskellDepends = [ - base - GLUT - graphicsFormats - MemoTrie - old-time - OpenGL - TypeCompose - vector-space - ]; - description = "Functional 3D"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "FileManip" = callPackage ( - { - mkDerivation, - base, - bytestring, - directory, - extensible-exceptions, - filepath, - mtl, - unix, - }: - mkDerivation { - pname = "FileManip"; - version = "0.3.3.1"; - sha256 = "0dhl7zkyy4p0pgmraci82krph6hqrq1bwmx7wgm9agrnpdyg4dxi"; - libraryHaskellDepends = [ - base - bytestring - directory - extensible-exceptions - filepath - mtl - unix - ]; - description = "Expressive file and directory manipulation for Haskell"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "FileManipCompat" = callPackage ( - { - mkDerivation, - base, - bytestring, - directory, - filepath, - mtl, - unix-compat, - }: - mkDerivation { - pname = "FileManipCompat"; - version = "0.18"; - sha256 = "0c017r7bzgf1mdbk0iyr2amhm41q89mcq69fkszskjhy4z9wl6v0"; - libraryHaskellDepends = [ - base - bytestring - directory - filepath - mtl - unix-compat - ]; - description = "Expressive file and directory manipulation for Haskell"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "FilePather" = callPackage ( - { - mkDerivation, - base, - comonad, - comonad-transformers, - data-lens, - directory, - filepath, - mtl, - transformers, - }: - mkDerivation { - pname = "FilePather"; - version = "0.2.0"; - sha256 = "1rwj8hqys01cn14d754wyl2vr19mvh4vsg2f3hrqjqiafkij90xd"; - libraryHaskellDepends = [ - base - comonad - comonad-transformers - data-lens - directory - filepath - mtl - transformers - ]; - description = "Functions on System.FilePath"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "FileSystem" = callPackage ( - { - mkDerivation, - base, - binary, - bytestring, - directory, - filepath, - mtl, - old-time, - }: - mkDerivation { - pname = "FileSystem"; - version = "1.0.0"; - sha256 = "0qyzwpvajvqywbnfhj3vzb5xl4wjjywyqr4szywd8qwb7kly29w6"; - libraryHaskellDepends = [ - base - binary - bytestring - directory - filepath - mtl - old-time - ]; - description = "File system data structure and monad transformer"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "Files" = callPackage ( - { - mkDerivation, - base, - hspec, - }: - mkDerivation { - pname = "Files"; - version = "0.1.1.1"; - sha256 = "00sv8dd323lwyw6597xyza12h8m1pdp63b2jlqfsjgnxn2rb60lm"; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ base ]; - executableHaskellDepends = [ base ]; - testHaskellDepends = [ - base - hspec - ]; - description = "File content extraction/rearrangement"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - mainProgram = "Files"; - broken = true; - } - ) { }; - - "Fin" = callPackage ( - { - mkDerivation, - alg, - base, - foldable1, - natural-induction, - peano, - universe-base, - }: - mkDerivation { - pname = "Fin"; - version = "0.2.9.0"; - sha256 = "1wkbdjrpb7ydc659h76yrrhyv7akwx64k7cxv5fmjrwn4vgd0r8a"; - revision = "2"; - editedCabalFile = "0d8zdfkndkyb3ygv4sfy57k4h875b639p3s5jn60krlvd1vx81ql"; - libraryHaskellDepends = [ - alg - base - foldable1 - natural-induction - peano - universe-base - ]; - description = "Finite totally-ordered sets"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "Finance-Quote-Yahoo" = callPackage ( - { - mkDerivation, - base, - bytestring, - http-conduit, - network, - old-locale, - time, - }: - mkDerivation { - pname = "Finance-Quote-Yahoo"; - version = "0.8.0"; - sha256 = "1d786xkrj0h270mfwxxkfxysmk78xkz2jdj8w1iin3hgy3ramifz"; - libraryHaskellDepends = [ - base - bytestring - http-conduit - network - old-locale - time - ]; - description = "Obtain quote data from finance.yahoo.com"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "Finance-Treasury" = callPackage ( - { - mkDerivation, - base, - containers, - HTTP, - HTTP-Simple, - hxt, - hxt-filter, - network, - old-locale, - time, - }: - mkDerivation { - pname = "Finance-Treasury"; - version = "0.1.2"; - sha256 = "17wxdwj8162c0yawz4anjs6d3fjbhs3b05wk319acblksjx60sal"; - libraryHaskellDepends = [ - base - containers - HTTP - HTTP-Simple - hxt - hxt-filter - network - old-locale - time - ]; - description = "Obtain Treasury yield curve data"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "FindBin" = callPackage ( - { - mkDerivation, - base, - directory, - filepath, - }: - mkDerivation { - pname = "FindBin"; - version = "0.0.5"; - sha256 = "197xvn05yysmibm1p5wzxfa256lvpbknr5d1l2ws6g40w1kpk717"; - libraryHaskellDepends = [ - base - directory - filepath - ]; - description = "Locate directory of original program"; - license = lib.licenses.bsd3; - } - ) { }; - - "FiniteCategories" = callPackage ( - { - mkDerivation, - base, - containers, - directory, - filepath, - random, - text, - WeakSets, - }: - mkDerivation { - pname = "FiniteCategories"; - version = "0.6.5.1"; - sha256 = "0wjq5z9rh7c1c08s0vqr45nkvqlimlllh5bdpqi6pajyf3x58504"; - libraryHaskellDepends = [ - base - containers - directory - filepath - random - text - WeakSets - ]; - testHaskellDepends = [ - base - containers - directory - filepath - random - text - WeakSets - ]; - description = "Finite categories and usual categorical constructions on them"; - license = lib.licenses.gpl3Plus; - } - ) { }; - - "FiniteCategoriesGraphViz" = callPackage ( - { - mkDerivation, - base, - containers, - directory, - fgl, - filepath, - FiniteCategories, - graphviz, - process, - random, - text, - WeakSets, - }: - mkDerivation { - pname = "FiniteCategoriesGraphViz"; - version = "0.2.0.0"; - sha256 = "1ff4mqbqlpki959d9qcq6h91v4p93iq4llac47kgzv98mcwvy146"; - libraryHaskellDepends = [ - base - containers - directory - fgl - filepath - FiniteCategories - graphviz - process - random - text - WeakSets - ]; - testHaskellDepends = [ - base - containers - directory - fgl - filepath - FiniteCategories - graphviz - process - random - text - WeakSets - ]; - description = "Transform objects of the package FiniteCategories into graphs using GraphViz"; - license = lib.licenses.gpl3Plus; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "FiniteMap" = callPackage ( - { - mkDerivation, - base, - haskell98, - }: - mkDerivation { - pname = "FiniteMap"; - version = "0.1"; - sha256 = "1kf638h5gsc8fklhaw2jiad1r0ssgj8zkfmzywp85lrx5z529gky"; - libraryHaskellDepends = [ - base - haskell98 - ]; - description = "A finite map implementation, derived from the paper: Efficient sets: a balancing act, S. Adams, Journal of functional programming 3(4) Oct 1993, pp553-562"; - license = lib.licenses.bsdOriginal; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "FirstOrderTheory" = callPackage ( - { - mkDerivation, - base, - containers, - Proper, - }: - mkDerivation { - pname = "FirstOrderTheory"; - version = "0.1.0.6"; - sha256 = "1941ickx8aj3qbkry4gz8ni6snh26gkdrgabpx9z588518q4x27i"; - libraryHaskellDepends = [ - base - containers - Proper - ]; - description = "Grammar and typeclass for first order theories"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "FirstPrelude" = callPackage ( - { mkDerivation, base }: - mkDerivation { - pname = "FirstPrelude"; - version = "0.1.2.0"; - sha256 = "00qv9h9i3yy7rh6wl8qs2r00z9hqpm56y9g717qh0skrl1fdk3yk"; - libraryHaskellDepends = [ base ]; - description = "A version of Prelude suitable for teaching"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "FixedPoint-simple" = callPackage ( - { - mkDerivation, - base, - deepseq, - template-haskell, - }: - mkDerivation { - pname = "FixedPoint-simple"; - version = "0.6.1"; - sha256 = "0qfys17q3i56l20wzkpr8inq130j67kya022ynf0sgbc86avlrcn"; - libraryHaskellDepends = [ - base - deepseq - template-haskell - ]; - description = "Fixed point, large word, and large int numerical representations (types and common class instances)"; - license = lib.licenses.bsd3; - } - ) { }; - - "Flint2" = - callPackage - ( - { - mkDerivation, - base, - containers, - flint, - gmp, - groups, - QuickCheck, - }: - mkDerivation { - pname = "Flint2"; - version = "0.1.0.5"; - sha256 = "0hldi7kknhb4kl228b658skn2irakmshb84dqmdgpy76v5b7klxx"; - libraryHaskellDepends = [ - base - containers - groups - QuickCheck - ]; - librarySystemDepends = [ flint ]; - libraryPkgconfigDepends = [ - flint - gmp - ]; - testHaskellDepends = [ base ]; - description = "Haskell bindings for the flint library for number theory"; - license = lib.licenses.gpl2Only; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) - { - inherit (pkgs) flint; - inherit (pkgs) gmp; - }; - - "Flint2-Examples" = callPackage ( - { - mkDerivation, - base, - containers, - filepath, - Flint2, - gloss, - gloss-juicy, - JuicyPixels, - mtl, - optparse-applicative, - time, - timeit, - }: - mkDerivation { - pname = "Flint2-Examples"; - version = "0.1.0.2"; - sha256 = "1dyy1wfllxrx56aws4s55bpyiw89ad2jm033pa7zhv9628g8ymar"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - containers - filepath - Flint2 - gloss - gloss-juicy - JuicyPixels - mtl - optparse-applicative - time - timeit - ]; - testHaskellDepends = [ - base - containers - Flint2 - mtl - optparse-applicative - timeit - ]; - description = "Examples for the Flint2 library"; - license = lib.licenses.gpl2Only; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "Flippi" = callPackage ( - { - mkDerivation, - base, - cgi, - containers, - directory, - haskell98, - old-time, - parsec, - xhtml, - }: - mkDerivation { - pname = "Flippi"; - version = "0.0.5"; - sha256 = "1w25h3n3cnsl9dvr5s94jzf5qxyx0dl0v8dmqv2rkwwm7s2hdbl9"; - isLibrary = false; - isExecutable = true; - enableSeparateDataOutput = true; - executableHaskellDepends = [ - base - cgi - containers - directory - haskell98 - old-time - parsec - xhtml - ]; - description = "Wiki"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "flippi"; - } - ) { }; - - "FloatingHex" = callPackage ( - { - mkDerivation, - base, - template-haskell, - }: - mkDerivation { - pname = "FloatingHex"; - version = "0.5"; - sha256 = "0c38062vnjmy3fc5nxwg7sgbfabikaakgdsl34ka229s6w7pm8x3"; - libraryHaskellDepends = [ - base - template-haskell - ]; - description = "Read and write hexadecimal floating point numbers"; - license = lib.licenses.bsd3; - } - ) { }; - - "Focus" = callPackage ( - { - mkDerivation, - base, - MissingH, - split, - }: - mkDerivation { - pname = "Focus"; - version = "0.1.2"; - sha256 = "1f1ch6mxgaam1i4ryd1av879y2f8wn3wmg47h23w2l0pvgmxgrj1"; - libraryHaskellDepends = [ - base - MissingH - split - ]; - description = "Tools for focusing in on locations within numbers"; - license = lib.licenses.mit; + description = "Tools for focusing in on locations within numbers"; + license = lib.licenses.mit; } ) { }; @@ -13700,53 +4954,6 @@ self: { } ) { }; - "ForSyDe" = callPackage ( - { - mkDerivation, - array, - base, - containers, - directory, - filepath, - mtl, - old-time, - parameterized-data, - pretty, - process, - random, - regex-posix, - template-haskell, - type-level, - }: - mkDerivation { - pname = "ForSyDe"; - version = "3.1.1"; - sha256 = "0ggwskyxpdrjny0rz61zdp20r5vzig8ggmqxf0qa8gljvvfp6bhp"; - revision = "2"; - editedCabalFile = "1aqgir67890wknbrjk1lj3f8kgdvr6abxrhzam1wh7n9jy3i5d68"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - array - base - containers - directory - filepath - mtl - old-time - parameterized-data - pretty - process - random - regex-posix - template-haskell - type-level - ]; - description = "ForSyDe's Haskell-embedded Domain Specific Language"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "ForestStructures" = callPackage ( { mkDerivation, @@ -13801,162 +5008,6 @@ self: { } ) { }; - "Forestry" = callPackage ( - { - mkDerivation, - ADPfusion, - ADPfusionForest, - base, - BiobaseNewick, - BiobaseTypes, - containers, - criterion, - ForestStructures, - FormalGrammars, - lens, - log-domain, - PrimitiveArray, - PrimitiveArray-Pretty, - QuickCheck, - tasty, - tasty-quickcheck, - tasty-th, - text, - vector, - }: - mkDerivation { - pname = "Forestry"; - version = "0.0.0.1"; - sha256 = "0l56ajrdxkpk59ahrdzr5qk4vxp8j3i0w6n6vpp1cl414rwg51qz"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - ADPfusion - ADPfusionForest - base - BiobaseNewick - BiobaseTypes - containers - ForestStructures - FormalGrammars - lens - log-domain - PrimitiveArray - PrimitiveArray-Pretty - text - vector - ]; - testHaskellDepends = [ - base - QuickCheck - tasty - tasty-quickcheck - tasty-th - ]; - benchmarkHaskellDepends = [ - base - criterion - ]; - description = "Comparison of trees and forests"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "ForkableT" = callPackage ( - { - mkDerivation, - base, - monad-control, - mtl, - resourcet, - }: - mkDerivation { - pname = "ForkableT"; - version = "0.1.0.2"; - sha256 = "0lzrggy1j15cajb6k5qhz2s8ddngr3hhhsj781ya45fcx82mngvj"; - libraryHaskellDepends = [ - base - monad-control - mtl - resourcet - ]; - description = "Forkable monad transformers"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "FormalGrammars" = callPackage ( - { - mkDerivation, - ADPfusion, - ansi-wl-pprint, - base, - bytestring, - containers, - data-default, - lens, - mtl, - parsers, - PrimitiveArray, - semigroups, - template-haskell, - text, - transformers, - trifecta, - unordered-containers, - vector, - }: - mkDerivation { - pname = "FormalGrammars"; - version = "0.4.0.0"; - sha256 = "1gl0z40g8vc52zhjzdysrzgjyj5qrwhh6dnzkpfj83m13zahhy1p"; - libraryHaskellDepends = [ - ADPfusion - ansi-wl-pprint - base - bytestring - containers - data-default - lens - mtl - parsers - PrimitiveArray - semigroups - template-haskell - text - transformers - trifecta - unordered-containers - vector - ]; - testHaskellDepends = [ - ADPfusion - ansi-wl-pprint - base - bytestring - containers - data-default - lens - mtl - parsers - PrimitiveArray - semigroups - template-haskell - text - transformers - trifecta - unordered-containers - vector - ]; - description = "(Context-free) grammars in formal language theory"; - license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "Fortnite-Hack-Cheats-Free-V-Bucks-Generator" = callPackage ( { mkDerivation, @@ -14008,47 +5059,6 @@ self: { } ) { }; - "Foster" = callPackage ( - { - mkDerivation, - array, - base, - cmdtheline, - containers, - criterion, - random, - strict, - }: - mkDerivation { - pname = "Foster"; - version = "1.1.2"; - sha256 = "0w4jnxk32c0pvrh2k7y93fckvrkcj3q8w4yi12zsgj9k1ic7yb6a"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - array - base - cmdtheline - containers - random - strict - ]; - benchmarkHaskellDepends = [ - array - base - cmdtheline - containers - criterion - random - strict - ]; - description = "Utilities to generate and solve puzzles"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - mainProgram = "foster"; - } - ) { }; - "FpMLv53" = callPackage ( { mkDerivation, @@ -14104,39 +5114,6 @@ self: { } ) { inherit (pkgs.xorg) libX11; }; - "Fractaler" = callPackage ( - { - mkDerivation, - base, - FTGL, - GLFW-b, - OpenGLRaw, - parallel, - random, - time, - }: - mkDerivation { - pname = "Fractaler"; - version = "3"; - sha256 = "0h6jlrd5wz40pjkqy75mvcgb8bqpqlq7vypy1062kb2cngl8235f"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - FTGL - GLFW-b - OpenGLRaw - parallel - random - time - ]; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - mainProgram = "Fractaler"; - broken = true; - } - ) { }; - "Frames" = callPackage ( { mkDerivation, @@ -14235,116 +5212,6 @@ self: { } ) { }; - "Frames-beam" = callPackage ( - { - mkDerivation, - base, - beam-core, - beam-migrate, - beam-postgres, - bytestring, - conduit, - Frames, - generics-sop, - hspec, - hspec-core, - monad-control, - postgresql-simple, - process, - QuickCheck, - scientific, - template-haskell, - text, - time, - uuid-types, - vinyl, - }: - mkDerivation { - pname = "Frames-beam"; - version = "0.2.0.0"; - sha256 = "1fzd41zwx5zmbysk49z2r9ga11z8c0vqqfvb4zgbcm3ivhkn48yi"; - libraryHaskellDepends = [ - base - beam-core - beam-migrate - beam-postgres - bytestring - conduit - Frames - generics-sop - monad-control - postgresql-simple - process - scientific - template-haskell - text - time - uuid-types - vinyl - ]; - testHaskellDepends = [ - base - beam-core - beam-migrate - beam-postgres - bytestring - conduit - Frames - generics-sop - hspec - hspec-core - QuickCheck - text - vinyl - ]; - description = "A library for accessing Postgres tables as in-memory data structures"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "Frames-dsv" = callPackage ( - { - mkDerivation, - base, - bytestring, - Frames, - hspec, - hw-dsv, - pipes, - template-haskell, - text, - vector, - vinyl, - }: - mkDerivation { - pname = "Frames-dsv"; - version = "0.1.2"; - sha256 = "0zdcbysiai7lskm8lmf454022ad0kgwl0v0kzj9596fvbdx0gdi2"; - libraryHaskellDepends = [ - base - bytestring - Frames - hw-dsv - pipes - template-haskell - text - vector - vinyl - ]; - testHaskellDepends = [ - base - Frames - hspec - pipes - ]; - description = "Alternative CSV parser for the Frames package"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "Frames-map-reduce" = callPackage ( { mkDerivation, @@ -14508,61 +5375,6 @@ self: { } ) { }; - "Frank" = callPackage ( - { - mkDerivation, - base, - mtl, - newtype, - she, - void, - }: - mkDerivation { - pname = "Frank"; - version = "0.3"; - sha256 = "1p99ab5qgvyh13iy9wgv0a8lqx6s2mygx0s6z51m5mzi9nxf0qw1"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - mtl - newtype - she - void - ]; - description = "An experimental programming language with typed algebraic effects"; - license = lib.licenses.publicDomain; - hydraPlatforms = lib.platforms.none; - mainProgram = "frank"; - } - ) { }; - - "FreeTypeGL" = callPackage ( - { - mkDerivation, - base, - freetype2, - OpenGL, - }: - mkDerivation { - pname = "FreeTypeGL"; - version = "0.0.4"; - sha256 = "10sivjxppn138805iwka54cfby59nc39ja30nx2w3762fybz71af"; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base - freetype2 - OpenGL - ]; - description = "Loadable texture fonts for OpenGL"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "FunGEn" = callPackage ( { mkDerivation, @@ -14597,52 +5409,6 @@ self: { } ) { }; - "Fungi" = callPackage ( - { - mkDerivation, - base, - bytestring, - containers, - directory, - filepath, - ListZipper, - mtl, - mwc-random, - old-time, - process, - random, - transformers, - tuple, - }: - mkDerivation { - pname = "Fungi"; - version = "1.0.6"; - sha256 = "181m78c0m1ldnkpng0sps9fbkpq5j4p57j0km34g5kwasxhmwfcc"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - bytestring - containers - directory - filepath - ListZipper - mtl - mwc-random - old-time - process - random - transformers - tuple - ]; - description = "Funge-98 interpreter written in Haskell"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "fungi"; - broken = true; - } - ) { }; - "GA" = callPackage ( { mkDerivation, @@ -14666,30 +5432,6 @@ self: { } ) { }; - "GGg" = callPackage ( - { - mkDerivation, - base, - bimap, - }: - mkDerivation { - pname = "GGg"; - version = "0.1.0.2"; - sha256 = "129z0391zm7v4ixwwq2irqhpb43s5pd0imgh3i9i5l9ahq9lk1h7"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - bimap - ]; - description = "GGg cipher"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - mainProgram = "GGg"; - broken = true; - } - ) { }; - "GHood" = callPackage ( { mkDerivation, @@ -14753,41 +5495,6 @@ self: { inherit (pkgs.xorg) libXfixes; }; - "GLFW-OGL" = - callPackage - ( - { - mkDerivation, - base, - libX11, - libXrandr, - mtl, - OGL, - }: - mkDerivation { - pname = "GLFW-OGL"; - version = "0.0"; - sha256 = "118hpgdp8rb0jlvlibxcaia4jjjdrn8xpzyvj109piw63g44n910"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base - mtl - OGL - ]; - librarySystemDepends = [ - libX11 - libXrandr - ]; - description = "A binding for GLFW (OGL)"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) - { - inherit (pkgs.xorg) libX11; - inherit (pkgs.xorg) libXrandr; - }; - "GLFW-b" = callPackage ( { mkDerivation, @@ -14823,66 +5530,6 @@ self: { } ) { }; - "GLFW-b-demo" = callPackage ( - { - mkDerivation, - base, - GLFW-b, - mtl, - OpenGL, - pretty, - stm, - transformers, - }: - mkDerivation { - pname = "GLFW-b-demo"; - version = "1.0.6"; - sha256 = "01qf0bsv3q60m3as763q49hd3nm5lkady48nc214zjsx31x8by59"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - GLFW-b - mtl - OpenGL - pretty - stm - transformers - ]; - description = "GLFW-b demo"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "GLFW-b-demo"; - broken = true; - } - ) { }; - - "GLFW-task" = callPackage ( - { - mkDerivation, - base, - GLFW, - monad-task, - OpenGL, - transformers, - }: - mkDerivation { - pname = "GLFW-task"; - version = "0.3.0"; - sha256 = "1il8npm7ygg0j8byczlxadlnnf6xxy5hn307k75drbhn4z8swcqg"; - libraryHaskellDepends = [ - base - GLFW - monad-task - OpenGL - transformers - ]; - description = "GLFW utility functions to use together with monad-task"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "GLHUI" = callPackage ( @@ -14976,27 +5623,6 @@ self: { } ) { }; - "GLMatrix" = callPackage ( - { - mkDerivation, - base, - OpenGLRaw, - }: - mkDerivation { - pname = "GLMatrix"; - version = "0.1.0.1"; - sha256 = "13n80rplyl73ahk8cxgvs9gf655l063sd55spx0zvhw774vvxwv4"; - libraryHaskellDepends = [ - base - OpenGLRaw - ]; - description = "Utilities for working with OpenGL matrices"; - license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "GLURaw" = callPackage ( @@ -15133,102 +5759,6 @@ self: { } ) { }; - "GPX" = callPackage ( - { - mkDerivation, - base, - comonad, - comonad-transformers, - containers, - data-lens, - hxt, - newtype, - xsd, - }: - mkDerivation { - pname = "GPX"; - version = "0.8.0"; - sha256 = "08qvl4l81bgjx40nmlrmb0csxa3xjj4l0dbq9bzcq65p403xs1pk"; - libraryHaskellDepends = [ - base - comonad - comonad-transformers - containers - data-lens - hxt - newtype - xsd - ]; - description = "Parse GPX files"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "GPipe" = callPackage ( - { - mkDerivation, - base, - Boolean, - containers, - exception-transformers, - gl, - hashtables, - linear, - transformers, - }: - mkDerivation { - pname = "GPipe"; - version = "2.2.5"; - sha256 = "1k4hxgd5vpdl9fqjk3i81rcyqn53giahcpygb9lm3nyfvxzzwg3z"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base - Boolean - containers - exception-transformers - gl - hashtables - linear - transformers - ]; - description = "Typesafe functional GPU graphics programming"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "GPipe-Collada" = callPackage ( - { - mkDerivation, - array, - base, - containers, - GPipe, - HaXml, - mtl, - Vec, - }: - mkDerivation { - pname = "GPipe-Collada"; - version = "0.1.4"; - sha256 = "0aqvyv50gx0qx7icp70pw73gr3p6y05dkn347nqx82jc9dyxjghw"; - libraryHaskellDepends = [ - array - base - containers - GPipe - HaXml - mtl - Vec - ]; - description = "Load GPipe meshes from Collada files"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "GPipe-Core" = callPackage ( { mkDerivation, @@ -15281,38 +5811,6 @@ self: { } ) { }; - "GPipe-Examples" = callPackage ( - { - mkDerivation, - base, - GLUT, - GPipe, - GPipe-TextureLoad, - haskell98, - Vec, - Vec-Transform, - }: - mkDerivation { - pname = "GPipe-Examples"; - version = "0.1"; - sha256 = "0ir32fx0mk5hmmqilv6z89453rqcsgbs13a6ln4cydlkw5lbgv1k"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - GLUT - GPipe - GPipe-TextureLoad - haskell98 - Vec - Vec-Transform - ]; - description = "Examples for the GPipes package"; - license = "GPL"; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "GPipe-GLFW" = callPackage ( { mkDerivation, @@ -15339,6 +5837,7 @@ self: { description = "GLFW OpenGL context creation for GPipe"; license = lib.licenses.mit; hydraPlatforms = lib.platforms.none; + broken = true; } ) { }; @@ -15403,66 +5902,6 @@ self: { } ) { }; - "GPipe-TextureLoad" = callPackage ( - { - mkDerivation, - base, - bitmap, - GPipe, - stb-image, - }: - mkDerivation { - pname = "GPipe-TextureLoad"; - version = "1.0.4"; - sha256 = "1yf74k3yvpj42ynivlkacp5zwxwsx3yyfxb2436ljrv3339kjkb4"; - libraryHaskellDepends = [ - base - bitmap - GPipe - stb-image - ]; - description = "Load GPipe textures from filesystem"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "GTALib" = callPackage ( - { - mkDerivation, - base, - containers, - deepseq, - HUnit, - parallel, - template-haskell, - test-framework, - test-framework-hunit, - }: - mkDerivation { - pname = "GTALib"; - version = "0.0.6"; - sha256 = "10l72wn8wdgcvpbcj10hmib6z0175ihsgvmwpp9akx4d6vpf2dz8"; - libraryHaskellDepends = [ - base - containers - deepseq - parallel - template-haskell - ]; - testHaskellDepends = [ - base - HUnit - test-framework - test-framework-hunit - ]; - description = "A library for GTA programming"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "Gamgine" = callPackage ( { mkDerivation, @@ -15519,40 +5958,6 @@ self: { } ) { }; - "Ganymede" = callPackage ( - { - mkDerivation, - base, - containers, - directory, - filepath, - mtl, - parsec, - transformers, - }: - mkDerivation { - pname = "Ganymede"; - version = "0.0.0.5"; - sha256 = "1fmb6fpdfk21yxrvlgdg32qymzirfbygsq6p4jvm925kvpwqbcwk"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - containers - directory - filepath - mtl - parsec - transformers - ]; - description = "An Io interpreter in Haskell"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "ganymede"; - broken = true; - } - ) { }; - "GaussQuadIntegration" = callPackage ( { mkDerivation, base }: mkDerivation { @@ -15565,131 +5970,6 @@ self: { } ) { }; - "GeBoP" = callPackage ( - { - mkDerivation, - array, - base, - directory, - random, - wx, - wxcore, - }: - mkDerivation { - pname = "GeBoP"; - version = "1.7.5"; - sha256 = "14shcs5wfkf4q473hsdgh7ky1fsrb59nf0g2ff4viyw1diyakw7x"; - isLibrary = false; - isExecutable = true; - enableSeparateDataOutput = true; - executableHaskellDepends = [ - array - base - directory - random - wx - wxcore - ]; - description = "Several games"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "gebop"; - } - ) { }; - - "GenI" = callPackage ( - { - mkDerivation, - base, - binary, - bytestring, - containers, - deepseq, - directory, - errors, - filepath, - hslogger, - HUnit, - json, - mtl, - ordered, - parsec, - process, - QuickCheck, - smallcheck, - syb, - test-framework, - test-framework-hunit, - test-framework-quickcheck2, - test-framework-smallcheck, - text, - time, - transformers, - yaml-light, - }: - mkDerivation { - pname = "GenI"; - version = "0.25.0.1"; - sha256 = "0jdalwm1qhr0adlxfbmw7valqiqmfziv4xrlyprw2nycic99p7gm"; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base - binary - bytestring - containers - deepseq - directory - filepath - hslogger - json - mtl - ordered - parsec - process - syb - text - time - transformers - yaml-light - ]; - executableHaskellDepends = [ - base - containers - directory - filepath - hslogger - json - mtl - process - yaml-light - ]; - testHaskellDepends = [ - base - containers - errors - filepath - HUnit - json - mtl - parsec - QuickCheck - smallcheck - test-framework - test-framework-hunit - test-framework-quickcheck2 - test-framework-smallcheck - text - transformers - ]; - description = "A natural language generator (specifically, an FB-LTAG surface realiser)"; - license = "GPL"; - hydraPlatforms = lib.platforms.none; - mainProgram = "geni"; - } - ) { }; - "GenSmsPdu" = callPackage ( { mkDerivation, @@ -15726,120 +6006,6 @@ self: { } ) { }; - "Genbank" = callPackage ( - { - mkDerivation, - base, - biocore, - biofasta, - bytestring, - cmdargs, - parsec, - split, - }: - mkDerivation { - pname = "Genbank"; - version = "1.0.3"; - sha256 = "14rbknlc1bxrld04i7dc5dklng5sp0b1rbiilndw5cair0d67brb"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - biocore - biofasta - bytestring - parsec - split - ]; - executableHaskellDepends = [ - base - cmdargs - ]; - description = "Libary for processing the NCBI genbank format"; - license = "GPL"; - hydraPlatforms = lib.platforms.none; - mainProgram = "GenbankTest"; - } - ) { }; - - "Gene-CluEDO" = callPackage ( - { - mkDerivation, - ADPfusion, - ADPfusionSet, - base, - cmdargs, - containers, - filepath, - FormalGrammars, - log-domain, - PrimitiveArray, - PrimitiveArray-Pretty, - QuickCheck, - ShortestPathProblems, - tasty, - tasty-quickcheck, - tasty-th, - text, - vector, - }: - mkDerivation { - pname = "Gene-CluEDO"; - version = "0.0.0.2"; - sha256 = "1gl5walv8mslb5rz9lf5s882ij4596shklqgjybckqajqwimblpd"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - ADPfusion - ADPfusionSet - base - containers - filepath - FormalGrammars - log-domain - PrimitiveArray - PrimitiveArray-Pretty - ShortestPathProblems - text - vector - ]; - executableHaskellDepends = [ - base - cmdargs - filepath - ]; - testHaskellDepends = [ - base - QuickCheck - tasty - tasty-quickcheck - tasty-th - vector - ]; - description = "Hox gene clustering"; - license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - mainProgram = "GeneCluEDO"; - } - ) { }; - - "GeneralTicTacToe" = callPackage ( - { mkDerivation, base }: - mkDerivation { - pname = "GeneralTicTacToe"; - version = "0.1.0.1"; - sha256 = "0dng5shk5zs4j6lyjz971axrqziv6davpcyv509mz8fvdjn8q4kg"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ base ]; - description = "A general TicTacToe game implementation"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - mainProgram = "GeneralTicTacToe"; - broken = true; - } - ) { }; - "GenericPretty" = callPackage ( { mkDerivation, @@ -15861,127 +6027,6 @@ self: { } ) { }; - "GenussFold" = callPackage ( - { - mkDerivation, - ADPfusion, - ansi-wl-pprint, - base, - bytestring, - cmdargs, - containers, - data-default, - FormalGrammars, - lens, - mtl, - PrimitiveArray, - QuickCheck, - semigroups, - template-haskell, - test-framework, - test-framework-quickcheck2, - test-framework-th, - text, - transformers, - unordered-containers, - vector, - }: - mkDerivation { - pname = "GenussFold"; - version = "0.0.0.2"; - sha256 = "1byshl3wa637nnvwxa80r9p1azgvgbczp5j77hpqaxacxkx1q0sm"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - ADPfusion - ansi-wl-pprint - base - bytestring - containers - data-default - FormalGrammars - lens - mtl - PrimitiveArray - semigroups - template-haskell - text - transformers - unordered-containers - vector - ]; - executableHaskellDepends = [ - base - cmdargs - FormalGrammars - ]; - testHaskellDepends = [ - base - QuickCheck - test-framework - test-framework-quickcheck2 - test-framework-th - ]; - description = "MCFGs for Genus-1 RNA Pseudoknots"; - license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - mainProgram = "GenussFold"; - } - ) { }; - - "GeoIp" = callPackage ( - { - mkDerivation, - base, - bytestring, - bytestring-mmap, - syb, - }: - mkDerivation { - pname = "GeoIp"; - version = "0.3"; - sha256 = "1q3km52w7qcrawbgaxvglb3x6rgc8f22c8rw8705lgcxxn9pjxm1"; - libraryHaskellDepends = [ - base - bytestring - bytestring-mmap - syb - ]; - description = "Pure bindings for the MaxMind IP database"; - license = "unknown"; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "GeocoderOpenCage" = callPackage ( - { - mkDerivation, - aeson, - base, - bytestring, - HTTP, - text, - }: - mkDerivation { - pname = "GeocoderOpenCage"; - version = "0.1.0.1"; - sha256 = "1c5sww3lvwkijsxg37zj77rxx021wlwjwsadiknvci9xlzccnw5b"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - aeson - base - bytestring - HTTP - text - ]; - description = "Geocoder and Reverse Geocoding Service Wrapper"; - license = "GPL"; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "Geodetic" = callPackage ( { mkDerivation, base }: mkDerivation { @@ -15991,1399 +6036,207 @@ self: { libraryHaskellDepends = [ base ]; description = "Geodetic calculations"; license = lib.licenses.bsd3; - } - ) { }; - - "GeomPredicates" = callPackage ( - { mkDerivation, base }: - mkDerivation { - pname = "GeomPredicates"; - version = "0.1"; - sha256 = "19scirh2hy9y9kv16pcp44v31cs3868ig28r8blj39gdv4wqxwcy"; - libraryHaskellDepends = [ base ]; - description = "Geometric predicates"; - license = lib.licenses.bsd3; - } - ) { }; - - "GeomPredicates-SSE" = callPackage ( - { - mkDerivation, - base, - GeomPredicates, - }: - mkDerivation { - pname = "GeomPredicates-SSE"; - version = "0.2"; - sha256 = "18mdaf2j1svklka5ms9ihj07d9l92ivqjk0y8jv0l9ni44hrhxcq"; - libraryHaskellDepends = [ - base - GeomPredicates - ]; - description = "Geometric predicates (Intel SSE)"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "Get" = callPackage ( - { - mkDerivation, - base, - constraints, - singletons, - }: - mkDerivation { - pname = "Get"; - version = "0.2018.1.10"; - sha256 = "18i6ags8acgi651453g7axw7isiqivjhb4s0nh3lyl87ynqsch6l"; - libraryHaskellDepends = [ - base - constraints - singletons - ]; - testHaskellDepends = [ - base - constraints - singletons - ]; - description = "get stuff out of stuff"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "GiST" = callPackage ( - { - mkDerivation, - base, - text, - }: - mkDerivation { - pname = "GiST"; - version = "0.0.1"; - sha256 = "0ykvsjqpi7pd81857n2gqycgpnm0j8dxnpf345h7pgzrkz10qi9f"; - libraryHaskellDepends = [ - base - text - ]; - description = "A Haskell implementation of a Generalized Search Tree (GiST)"; - license = "GPL"; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "Gifcurry" = callPackage ( - { - mkDerivation, - base, - bytestring, - cairo, - cmdargs, - directory, - filepath, - gi-cairo, - gi-gdk, - gi-glib, - gi-gobject, - gi-gst, - gi-gstvideo, - gi-gtk, - haskell-gi, - haskell-gi-base, - process, - temporary, - text, - transformers, - }: - mkDerivation { - pname = "Gifcurry"; - version = "3.0.0.1"; - sha256 = "0c6wk6kngrpmjwxwixynxfvr92ycvxmivvcvbk171x4a47zcg4sq"; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base - directory - filepath - process - temporary - text - ]; - executableHaskellDepends = [ - base - bytestring - cairo - cmdargs - directory - filepath - gi-cairo - gi-gdk - gi-glib - gi-gobject - gi-gst - gi-gstvideo - gi-gtk - haskell-gi - haskell-gi-base - process - temporary - text - transformers - ]; - description = "GIF creation utility"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "GiveYouAHead" = callPackage ( - { - mkDerivation, - base, - directory, - extra, - old-time, - process, - }: - mkDerivation { - pname = "GiveYouAHead"; - version = "0.2.2.3"; - sha256 = "10f9yl62gwnjmb0mbfffdzhwscpwpvq9gj52zsrz8w6z6sbkijbf"; - libraryHaskellDepends = [ - base - directory - extra - old-time - process - ]; - description = "to auto-do somethings"; - license = lib.licenses.mit; - } - ) { }; - - "Gleam" = callPackage ( - { - mkDerivation, - base, - mtl, - split, - threepenny-gui, - }: - mkDerivation { - pname = "Gleam"; - version = "0.1.1.0"; - sha256 = "08nabgn7v0rw4aihbihbijqgajrvyc7z7nl67jmka39fh5zm6blm"; - libraryHaskellDepends = [ - base - mtl - split - threepenny-gui - ]; - description = "HTML Canvas graphics, animations and simulations"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "Glob" = callPackage ( - { - mkDerivation, - base, - containers, - directory, - dlist, - filepath, - HUnit, - QuickCheck, - test-framework, - test-framework-hunit, - test-framework-quickcheck2, - transformers, - transformers-compat, - }: - mkDerivation { - pname = "Glob"; - version = "0.10.2"; - sha256 = "1h3kh46qds4nqvixm4myy1kb5slg53f44hfn8aymrlr7hjn75xka"; - revision = "3"; - editedCabalFile = "1080rd5073g87rfm5whimb72b75105lqanybrbsfi14gmvndnbfx"; - libraryHaskellDepends = [ - base - containers - directory - dlist - filepath - transformers - transformers-compat - ]; - testHaskellDepends = [ - base - containers - directory - dlist - filepath - HUnit - QuickCheck - test-framework - test-framework-hunit - test-framework-quickcheck2 - transformers - transformers-compat - ]; - description = "Globbing library"; - license = lib.licenses.bsd3; - } - ) { }; - - "GlomeTrace" = callPackage ( - { - mkDerivation, - array, - base, - GlomeVec, - }: - mkDerivation { - pname = "GlomeTrace"; - version = "0.3"; - sha256 = "0n1290ls68fsky3a80fvfdq6bycvmpn3i3kmflq6yn45qa959f0k"; - libraryHaskellDepends = [ - array - base - GlomeVec - ]; - description = "Ray Tracing Library"; - license = "GPL"; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "GlomeVec" = callPackage ( - { - mkDerivation, - array, - base, - }: - mkDerivation { - pname = "GlomeVec"; - version = "0.2"; - sha256 = "08hyiadkbkmcsd1g51xvxqzp6l94hnqqbz4r6yk0zk29iawq8610"; - libraryHaskellDepends = [ - array - base - ]; - description = "Simple 3D vector library"; - license = "GPL"; - } - ) { }; - - "GlomeView" = callPackage ( - { - mkDerivation, - base, - deepseq, - GlomeTrace, - GlomeVec, - monad-par, - random, - SDL, - time, - vector, - }: - mkDerivation { - pname = "GlomeView"; - version = "0.3"; - sha256 = "0plglb289gadk8mqxgqj8n25xa6dql2jl0b8cm9v7q5rwykx0kbq"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - deepseq - GlomeTrace - GlomeVec - monad-par - random - SDL - time - vector - ]; - description = "SDL Frontend for Glome ray tracer"; - license = "GPL"; - hydraPlatforms = lib.platforms.none; - mainProgram = "Glome"; - } - ) { }; - - "GoogleChart" = callPackage ( - { mkDerivation, base }: - mkDerivation { - pname = "GoogleChart"; - version = "0.2"; - sha256 = "0wfabsdn4agmg459srnknkwqb7ri5knj9npzgzhilybwrrqq46v9"; - libraryHaskellDepends = [ base ]; - description = "Generate web-based charts using the Google Chart API"; - license = lib.licenses.bsd3; - } - ) { }; - - "GoogleCodeJam" = callPackage ( - { - mkDerivation, - array, - base, - containers, - mtl, - parallel, - safe, - split, - transformers, - }: - mkDerivation { - pname = "GoogleCodeJam"; - version = "0.0.3"; - sha256 = "1p5b3jmj86z5skv25pabiari16f0b4h45hagik75fir6bfwhk0p0"; - libraryHaskellDepends = [ - array - base - containers - mtl - parallel - safe - split - transformers - ]; - description = "A monad for flexible parsing of Google Code Jam input files with automatic parallelization"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "GoogleDirections" = callPackage ( - { - mkDerivation, - AttoJson, - base, - bytestring, - containers, - dataenc, - download-curl, - }: - mkDerivation { - pname = "GoogleDirections"; - version = "0.3.0.1"; - sha256 = "1x7k72iy8aa6r60p3hrqb8a4p5avyjh8czymrkarc3wpkc73bjb3"; - libraryHaskellDepends = [ - AttoJson - base - bytestring - containers - dataenc - download-curl - ]; - description = "Haskell Interface to Google Directions API"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "GoogleSB" = callPackage ( - { - mkDerivation, - base, - binary, - Crypto, - haskell98, - HTTP, - mtl, - network, - split, - }: - mkDerivation { - pname = "GoogleSB"; - version = "0.1"; - sha256 = "1gfjpxcjr9xqinha3wzdk101avjzyvji2xs5abkj9pj8lsrbh2w8"; - libraryHaskellDepends = [ - base - binary - Crypto - haskell98 - HTTP - mtl - network - split - ]; - description = "Interface to Google Safe Browsing API"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "GoogleSuggest" = callPackage ( - { - mkDerivation, - base, - dataenc, - download-curl, - utf8-string, - xml, - }: - mkDerivation { - pname = "GoogleSuggest"; - version = "0.0.4"; - sha256 = "1jqfd9zi4yp0kr506v71dlg5zgmvzqbxdsfjr2574ajx5xp2fjrb"; - libraryHaskellDepends = [ - base - dataenc - download-curl - utf8-string - xml - ]; - description = "Interface to Google Suggest API"; - license = lib.licenses.gpl3Only; - } - ) { }; - - "GoogleTranslate" = callPackage ( - { - mkDerivation, - AttoJson, - base, - bytestring, - dataenc, - download-curl, - }: - mkDerivation { - pname = "GoogleTranslate"; - version = "0.0.5"; - sha256 = "0hr0rjz7nx5rcy4h5pcbvh8sh9v4qvl9ffrqhnrcslh7ibvwbca6"; - libraryHaskellDepends = [ - AttoJson - base - bytestring - dataenc - download-curl - ]; - description = "Interface to Google Translate API"; - license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "GotoT-transformers" = callPackage ( - { - mkDerivation, - base, - transformers, - }: - mkDerivation { - pname = "GotoT-transformers"; - version = "1.0.0.1"; - sha256 = "1w1w1p2cpndiilr002whm58bzqjh9cp9lw3jl7khdxh20c1dfzhy"; - libraryHaskellDepends = [ - base - transformers - ]; - description = "A monad and monadic transformer providing \"goto\" functionality"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "Grafos" = callPackage ( - { mkDerivation, base }: - mkDerivation { - pname = "Grafos"; - version = "0.1.0.0"; - sha256 = "167lr6ps5yy3243zfa4nl1jq369xcrrspcglz9xgnx2q1z305w8x"; - libraryHaskellDepends = [ base ]; - description = "Grafos Haskell"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "GrammarProducts" = callPackage ( - { - mkDerivation, - ADPfusion, - ansi-wl-pprint, - base, - bytestring, - containers, - data-default, - FormalGrammars, - lens, - newtype, - parsers, - PrimitiveArray, - semigroups, - template-haskell, - transformers, - trifecta, - }: - mkDerivation { - pname = "GrammarProducts"; - version = "0.2.0.0"; - sha256 = "15iqga816zkc9fwfb4aiab6xjs84z56v9fm2jxbhvigvadd153bj"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - ADPfusion - ansi-wl-pprint - base - bytestring - containers - data-default - FormalGrammars - lens - newtype - parsers - PrimitiveArray - semigroups - template-haskell - transformers - trifecta - ]; - testHaskellDepends = [ base ]; - description = "Grammar products and higher-dimensional grammars"; - license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "Graph500" = callPackage ( - { - mkDerivation, - array, - base, - containers, - mersenne-random-pure64, - mtl, - random, - }: - mkDerivation { - pname = "Graph500"; - version = "0.4.0"; - sha256 = "0lhn2r54488949gh5m5fgwrj2z30r9pf34860sikb6zq07gjz759"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - array - base - containers - mersenne-random-pure64 - mtl - random - ]; - executableHaskellDepends = [ - array - base - mtl - ]; - description = "Graph500 benchmark-related definitions and data set generator"; - license = lib.licenses.gpl2Only; - hydraPlatforms = lib.platforms.none; - mainProgram = "graph500gen"; - broken = true; - } - ) { }; - - "GraphHammer" = callPackage ( - { - mkDerivation, - array, - base, - containers, - Graph500, - mtl, - stm, - time, - }: - mkDerivation { - pname = "GraphHammer"; - version = "0.3"; - sha256 = "0fga3g2y38ylvmkgi57h4j5brc7gjxh8d183qfa2vhx8i4sr3pzm"; - libraryHaskellDepends = [ - array - base - containers - Graph500 - mtl - stm - time - ]; - description = "GraphHammer Haskell graph analyses framework inspired by STINGER"; - license = lib.licenses.gpl2Only; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "GraphHammer-examples" = callPackage ( - { - mkDerivation, - array, - base, - containers, - Graph500, - GraphHammer, - mtl, - }: - mkDerivation { - pname = "GraphHammer-examples"; - version = "0.3"; - sha256 = "18p1dr08nq8dnvghkshihzra0p9ja0qa9bxbkm561jkrdpk3zndv"; - isLibrary = true; - isExecutable = true; - executableHaskellDepends = [ - array - base - containers - Graph500 - GraphHammer - mtl - ]; - description = "Test harness for TriangleCount analysis"; - license = lib.licenses.gpl2Only; - hydraPlatforms = lib.platforms.none; - mainProgram = "TriangleCountTest"; - } - ) { }; - - "GraphSCC" = callPackage ( - { - mkDerivation, - array, - base, - containers, - }: - mkDerivation { - pname = "GraphSCC"; - version = "1.0.4"; - sha256 = "1wbcx3wb02adb7l4nchxla3laliz0h5q074vfw4z0ic833k977bq"; - libraryHaskellDepends = [ - array - base - containers - ]; - description = "Tarjan's algorithm for computing the strongly connected components of a graph"; - license = lib.licenses.bsd3; - } - ) { }; - - "Graphalyze" = callPackage ( - { - mkDerivation, - array, - base, - bktrees, - containers, - directory, - fgl, - filepath, - graphviz, - pandoc, - process, - random, - text, - time, - }: - mkDerivation { - pname = "Graphalyze"; - version = "0.15.0.0"; - sha256 = "1hw635fnpiylwf5vhxbxy9wrcp6qnadb1npi9zhk42akbnvzqh5c"; - libraryHaskellDepends = [ - array - base - bktrees - containers - directory - fgl - filepath - graphviz - pandoc - process - random - text - time - ]; - description = "Graph-Theoretic Analysis library"; - license = "unknown"; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "Grempa" = callPackage ( - { - mkDerivation, - array, - base, - containers, - mtl, - QuickCheck, - template-haskell, - th-lift, - }: - mkDerivation { - pname = "Grempa"; - version = "0.2.2"; - sha256 = "0w0apbk8hw555cbpprvxpnxviyzmbsxzlc6qpf6w0cfsybkkiv1f"; - libraryHaskellDepends = [ - array - base - containers - mtl - QuickCheck - template-haskell - th-lift - ]; - description = "Embedded grammar DSL and LALR parser generator"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "GroteTrap" = callPackage ( - { - mkDerivation, - base, - mtl, - parsec, - QuickCheck, - syb, - test-framework, - test-framework-quickcheck2, - }: - mkDerivation { - pname = "GroteTrap"; - version = "0.5.2"; - sha256 = "0w72b9jama9f5c26867xndrsqixygmvhrwgny3gcjms2vfv9flcw"; - libraryHaskellDepends = [ - base - mtl - parsec - syb - ]; - testHaskellDepends = [ - base - mtl - parsec - QuickCheck - test-framework - test-framework-quickcheck2 - ]; - description = "Parser and selection library for expression languages"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "Grow" = callPackage ( - { - mkDerivation, - array, - base, - bytestring, - clock, - containers, - deepseq, - definitive-base, - definitive-filesystem, - definitive-parser, - definitive-reactive, - directory, - filepath, - old-locale, - primitive, - process, - time, - unix, - vector, - }: - mkDerivation { - pname = "Grow"; - version = "1.1.0.3"; - sha256 = "1vc4ln5fzvcv68qlanyw8mc6qchnjn1kj9rpz661n8ia1x8gkb3l"; - revision = "3"; - editedCabalFile = "0spkl7nsxs7452r8d8fx14q9snih101vdq5s3nzjnqgwxswam6g5"; - libraryHaskellDepends = [ - array - base - bytestring - clock - containers - deepseq - definitive-base - definitive-filesystem - definitive-parser - definitive-reactive - directory - filepath - old-locale - primitive - process - time - unix - vector - ]; - description = "A declarative make-like interpreter"; - license = "unknown"; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "GrowlNotify" = callPackage ( - { - mkDerivation, - base, - binary, - bytestring, - Crypto, - haskell98, - network, - }: - mkDerivation { - pname = "GrowlNotify"; - version = "0.4"; - sha256 = "13m213d6l81k0iwjbbwg8n2xz960dhfnrs1il48xvlc8z25y6nh5"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - binary - bytestring - Crypto - haskell98 - network - ]; - executableHaskellDepends = [ - base - binary - bytestring - Crypto - haskell98 - network - ]; - description = "Notification utility for Growl"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "growlnotify"; - } - ) { }; - - "Gtk2hsGenerics" = callPackage ( - { - mkDerivation, - array, - base, - cairo, - containers, - glib, - gtk, - haskell98, - mtl, - }: - mkDerivation { - pname = "Gtk2hsGenerics"; - version = "0.1"; - sha256 = "1gj775yny73qvi3inc38c6yy1av503m5ilbz7ch0xx4a3ywnw5l9"; - libraryHaskellDepends = [ - array - base - cairo - containers - glib - gtk - haskell98 - mtl - ]; - description = "Convenience functions to extend Gtk2hs"; - license = "GPL"; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "GtkGLTV" = callPackage ( - { - mkDerivation, - base, - bitmap, - bitmap-opengl, - gtk, - gtkglext, - GtkTV, - OpenGL, - stb-image, - time, - }: - mkDerivation { - pname = "GtkGLTV"; - version = "0.2.0"; - sha256 = "1xkc3ga65prffjzlymimwmfnmvf0lc42h2rm4b72rlmm8316kmp2"; - libraryHaskellDepends = [ - base - bitmap - bitmap-opengl - gtk - gtkglext - GtkTV - OpenGL - stb-image - time - ]; - description = "OpenGL support for Gtk-based GUIs for Tangible Values"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "GtkTV" = callPackage ( - { - mkDerivation, - base, - gtk, - time, - TV, - TypeCompose, - vector-space, - }: - mkDerivation { - pname = "GtkTV"; - version = "0.2.0"; - sha256 = "0jxx8lgg533kjvq1sxr4jvqvxj9pcpabsy2mvbpsd2lwv2ffr618"; - libraryHaskellDepends = [ - base - gtk - time - TV - TypeCompose - vector-space - ]; - description = "Gtk-based GUIs for Tangible Values"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "GuiHaskell" = callPackage ( - { - mkDerivation, - base, - containers, - directory, - filepath, - glade, - gtk, - parsec, - process, - proplang, - }: - mkDerivation { - pname = "GuiHaskell"; - version = "0.1.1"; - sha256 = "1rgyrbnlbvsqgd8m36fccq7qzxj2n682lz2rdq04j35zsgajyk11"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - containers - directory - filepath - glade - gtk - parsec - process - proplang - ]; - description = "A graphical REPL and development environment for Haskell"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "guihaskell"; - } - ) { }; - - "GuiTV" = callPackage ( - { - mkDerivation, - base, - DeepArrow, - phooey, - TV, - TypeCompose, - }: - mkDerivation { - pname = "GuiTV"; - version = "0.4"; - sha256 = "15mndbxm83q0d8ci3vj51zwrmzl0f5i5yqv0caw05vlzfsr4ib5i"; - libraryHaskellDepends = [ - base - DeepArrow - phooey - TV - TypeCompose - ]; - description = "GUIs for Tangible Values"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "H" = callPackage ( - { - mkDerivation, - base, - bytestring, - cmdargs, - file-embed, - inline-r, - pretty, - process, - temporary, - vector, - }: - mkDerivation { - pname = "H"; - version = "1.0.0"; - sha256 = "1xnv8a097pidh4q9ngrsha0vm9sgsbggblizcjz449iwwsb8yg9g"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - bytestring - cmdargs - file-embed - inline-r - pretty - process - temporary - vector - ]; - description = "The Haskell/R mixed programming environment"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "H"; - } - ) { }; - - "HABQT" = callPackage ( - { - mkDerivation, - base, - hmatrix, - hmatrix-gsl, - mtl, - mwc-random, - newtype-generics, - optparse-applicative, - QuickCheck, - streaming, - utility-ht, - validation, - vector, - }: - mkDerivation { - pname = "HABQT"; - version = "0.1.0.0"; - sha256 = "02lni851v2997im77izycl3x2yw84sm8lsa1alpb0yp6y2f1ghay"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - hmatrix - hmatrix-gsl - mtl - mwc-random - newtype-generics - streaming - utility-ht - validation - vector - ]; - executableHaskellDepends = [ - base - optparse-applicative - streaming - ]; - testHaskellDepends = [ - base - hmatrix - mwc-random - newtype-generics - QuickCheck - streaming - utility-ht - vector - ]; - description = "Hierarchical adaptive Bayesian quantum tomography for quantum bits"; + } + ) { }; + + "GeomPredicates" = callPackage ( + { mkDerivation, base }: + mkDerivation { + pname = "GeomPredicates"; + version = "0.1"; + sha256 = "19scirh2hy9y9kv16pcp44v31cs3868ig28r8blj39gdv4wqxwcy"; + libraryHaskellDepends = [ base ]; + description = "Geometric predicates"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "HABQT-simulation"; - broken = true; } ) { }; - "HARM" = callPackage ( + "GiveYouAHead" = callPackage ( { mkDerivation, - array, base, + directory, + extra, + old-time, + process, }: mkDerivation { - pname = "HARM"; - version = "0.1.4"; - sha256 = "0mld40jm0qnsr9flbip3s2lxwd43nhzs11v23bm5m2s83y6j33jn"; - isLibrary = true; - isExecutable = true; + pname = "GiveYouAHead"; + version = "0.2.2.3"; + sha256 = "10f9yl62gwnjmb0mbfffdzhwscpwpvq9gj52zsrz8w6z6sbkijbf"; libraryHaskellDepends = [ - array - base - ]; - executableHaskellDepends = [ - array base + directory + extra + old-time + process ]; - description = "A simple ARM emulator in haskell"; - license = "unknown"; - hydraPlatforms = lib.platforms.none; - broken = true; + description = "to auto-do somethings"; + license = lib.licenses.mit; } ) { }; - "HAppS-Data" = callPackage ( + "Glob" = callPackage ( { mkDerivation, base, - binary, - bytestring, containers, - HAppS-Util, - HaXml, - mtl, - pretty, - syb, - syb-with-class, - template-haskell, + directory, + dlist, + filepath, + HUnit, + QuickCheck, + test-framework, + test-framework-hunit, + test-framework-quickcheck2, + transformers, + transformers-compat, }: mkDerivation { - pname = "HAppS-Data"; - version = "0.9.3"; - sha256 = "0df3bcvqpmjrg2c28jny20r52f3x7gf1wy7r8x71j9wrji56yg5j"; + pname = "Glob"; + version = "0.10.2"; + sha256 = "1h3kh46qds4nqvixm4myy1kb5slg53f44hfn8aymrlr7hjn75xka"; + revision = "3"; + editedCabalFile = "1080rd5073g87rfm5whimb72b75105lqanybrbsfi14gmvndnbfx"; libraryHaskellDepends = [ base - binary - bytestring containers - HAppS-Util - HaXml - mtl - pretty - syb - syb-with-class - template-haskell + directory + dlist + filepath + transformers + transformers-compat + ]; + testHaskellDepends = [ + base + containers + directory + dlist + filepath + HUnit + QuickCheck + test-framework + test-framework-hunit + test-framework-quickcheck2 + transformers + transformers-compat ]; - description = "HAppS data manipulation libraries"; + description = "Globbing library"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; } ) { }; - "HAppS-IxSet" = callPackage ( + "GlomeVec" = callPackage ( { mkDerivation, + array, base, - containers, - HAppS-Data, - HAppS-State, - HAppS-Util, - hslogger, - mtl, - syb, - syb-with-class, - template-haskell, }: mkDerivation { - pname = "HAppS-IxSet"; - version = "0.9.3"; - sha256 = "0wm3apqsqb2p9cqxikz9j6lzi66ya1sn1yplifqszg1v2lpdgb7b"; + pname = "GlomeVec"; + version = "0.2"; + sha256 = "08hyiadkbkmcsd1g51xvxqzp6l94hnqqbz4r6yk0zk29iawq8610"; libraryHaskellDepends = [ + array base - containers - HAppS-Data - HAppS-State - HAppS-Util - hslogger - mtl - syb - syb-with-class - template-haskell ]; + description = "Simple 3D vector library"; + license = "GPL"; + } + ) { }; + + "GoogleChart" = callPackage ( + { mkDerivation, base }: + mkDerivation { + pname = "GoogleChart"; + version = "0.2"; + sha256 = "0wfabsdn4agmg459srnknkwqb7ri5knj9npzgzhilybwrrqq46v9"; + libraryHaskellDepends = [ base ]; + description = "Generate web-based charts using the Google Chart API"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; } ) { }; - "HAppS-Server" = callPackage ( + "GoogleSuggest" = callPackage ( { mkDerivation, base, - bytestring, - containers, - directory, - HAppS-Data, - HAppS-IxSet, - HAppS-State, - HAppS-Util, - HaXml, - hslogger, - html, - HTTP, - mtl, - network, - old-locale, - old-time, - parsec, - process, - random, - syb, - template-haskell, - unix, - xhtml, + dataenc, + download-curl, + utf8-string, + xml, }: mkDerivation { - pname = "HAppS-Server"; - version = "0.9.3.1"; - sha256 = "0f10qp2aiv036izzdpfpgmja5kqx68kccazkn1cdap636brjjcdh"; + pname = "GoogleSuggest"; + version = "0.0.4"; + sha256 = "1jqfd9zi4yp0kr506v71dlg5zgmvzqbxdsfjr2574ajx5xp2fjrb"; libraryHaskellDepends = [ base - bytestring - containers - directory - HAppS-Data - HAppS-IxSet - HAppS-State - HAppS-Util - HaXml - hslogger - html - HTTP - mtl - network - old-locale - old-time - parsec - process - random - syb - template-haskell - unix - xhtml + dataenc + download-curl + utf8-string + xml ]; - description = "Web related tools and services"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; + description = "Interface to Google Suggest API"; + license = lib.licenses.gpl3Only; } ) { }; - "HAppS-State" = callPackage ( + "GraphSCC" = callPackage ( { mkDerivation, + array, base, - binary, - bytestring, containers, - directory, - filepath, - HAppS-Data, - HAppS-Util, - HaXml, - hslogger, - hspread, - mtl, - network, - old-locale, - old-time, - random, - stm, - syb, - template-haskell, - unix, }: mkDerivation { - pname = "HAppS-State"; - version = "0.9.3"; - sha256 = "1r1ing4c8s91d9p41q7yv6v6xaqs9si438j7b5vnzxgwz0syd6ah"; + pname = "GraphSCC"; + version = "1.0.4"; + sha256 = "1wbcx3wb02adb7l4nchxla3laliz0h5q074vfw4z0ic833k977bq"; libraryHaskellDepends = [ + array base - binary - bytestring containers - directory - filepath - HAppS-Data - HAppS-Util - HaXml - hslogger - hspread - mtl - network - old-locale - old-time - random - stm - syb - template-haskell - unix ]; - description = "Event-based distributed state"; + description = "Tarjan's algorithm for computing the strongly connected components of a graph"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; } ) { }; - "HAppS-Util" = callPackage ( + "H" = callPackage ( { mkDerivation, - array, base, bytestring, - directory, - hslogger, - mtl, - old-time, + cmdargs, + file-embed, + inline-r, + pretty, process, - template-haskell, + temporary, + vector, }: mkDerivation { - pname = "HAppS-Util"; - version = "0.9.3"; - sha256 = "0mg6p14xv6f9b1rb77mvadzchf6limcypi6z0di1n49pdqjhs4pr"; - libraryHaskellDepends = [ - array + pname = "H"; + version = "1.0.0"; + sha256 = "1xnv8a097pidh4q9ngrsha0vm9sgsbggblizcjz449iwwsb8yg9g"; + isLibrary = false; + isExecutable = true; + executableHaskellDepends = [ base bytestring - directory - hslogger - mtl - old-time + cmdargs + file-embed + inline-r + pretty process - template-haskell + temporary + vector ]; - description = "Web framework"; + description = "The Haskell/R mixed programming environment"; license = lib.licenses.bsd3; hydraPlatforms = lib.platforms.none; - broken = true; + mainProgram = "H"; } ) { }; @@ -17447,33 +6300,6 @@ self: { } ) { }; - "HCard" = callPackage ( - { - mkDerivation, - base, - mtl, - QuickCheck, - random, - random-shuffle, - }: - mkDerivation { - pname = "HCard"; - version = "0.0"; - sha256 = "0bvj1vc8m69bsnjz8xb4nbbpbd4xbqp4kfab0bmk6a4ixgnqk14b"; - libraryHaskellDepends = [ - base - mtl - QuickCheck - random - random-shuffle - ]; - description = "A library for implementing a Deck of Cards"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "HCodecs" = callPackage ( { mkDerivation, @@ -17547,53 +6373,6 @@ self: { } ) { }; - "HDBC-mysql" = - callPackage - ( - { - mkDerivation, - base, - bytestring, - Cabal, - HDBC, - mysqlclient, - openssl, - time, - utf8-string, - zlib, - }: - mkDerivation { - pname = "HDBC-mysql"; - version = "0.7.1.0"; - sha256 = "1kx73pgh1mjg0526i2szk1kbm6d7bhbv64ml1y9nbja3lba8bjc1"; - setupHaskellDepends = [ - base - Cabal - ]; - libraryHaskellDepends = [ - base - bytestring - HDBC - time - utf8-string - ]; - librarySystemDepends = [ - mysqlclient - openssl - zlib - ]; - description = "MySQL driver for HDBC"; - license = "LGPL"; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) - { - mysqlclient = null; - inherit (pkgs) openssl; - inherit (pkgs) zlib; - }; - "HDBC-odbc" = callPackage ( { mkDerivation, @@ -17669,33 +6448,6 @@ self: { } ) { inherit (pkgs) libpq; }; - "HDBC-postgresql-hstore" = callPackage ( - { - mkDerivation, - attoparsec, - base, - containers, - HDBC, - text, - }: - mkDerivation { - pname = "HDBC-postgresql-hstore"; - version = "0.0.1.2"; - sha256 = "0657a1qy51bihh9gvpwpqpm4gch68rw32plnjcfdbc37yjq5dj1d"; - libraryHaskellDepends = [ - attoparsec - base - containers - HDBC - text - ]; - description = "Manipulate data in PostgreSQL \"hstore\" columns"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "HDBC-session" = callPackage ( { mkDerivation, @@ -17775,129 +6527,6 @@ self: { } ) { inherit (pkgs) pfstools; }; - "HERA" = callPackage ( - { - mkDerivation, - base, - mpfr, - }: - mkDerivation { - pname = "HERA"; - version = "0.2"; - sha256 = "08lry7w4zb7j81q9d7rjpz0chcbr9laxi4h9dz327pfcgmy083sy"; - libraryHaskellDepends = [ base ]; - librarySystemDepends = [ mpfr ]; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { inherit (pkgs) mpfr; }; - - "HExcel" = - callPackage - ( - { - mkDerivation, - base, - microlens, - microlens-th, - time, - transformers, - xlsxwriter, - zlib, - }: - mkDerivation { - pname = "HExcel"; - version = "0.1.0.1"; - sha256 = "0pa33yh2sqslhdr94bi17kysmf0j3gqhplcxrcafgip2gab9j626"; - libraryHaskellDepends = [ - base - microlens - microlens-th - time - transformers - ]; - librarySystemDepends = [ - xlsxwriter - zlib - ]; - description = "Create Excel files with Haskell"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) - { - xlsxwriter = null; - inherit (pkgs) zlib; - }; - - "HFitUI" = callPackage ( - { - mkDerivation, - base, - blaze-html, - blaze-markup, - MissingH, - mtl, - process, - random, - shakespeare, - template-haskell, - text, - uuid, - }: - mkDerivation { - pname = "HFitUI"; - version = "0.1.1.0"; - sha256 = "03v03adcqyf0ppbhx8jxmp1f4pzmqs5s43as21add2yl13rkwzm7"; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base - blaze-html - blaze-markup - MissingH - mtl - process - random - shakespeare - template-haskell - text - uuid - ]; - executableHaskellDepends = [ base ]; - testHaskellDepends = [ base ]; - description = "The library for generating a graphical interface on the web"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "HFitUI-exe"; - broken = true; - } - ) { }; - - "HFrequencyQueue" = callPackage ( - { - mkDerivation, - base, - c-storable-deriving, - }: - mkDerivation { - pname = "HFrequencyQueue"; - version = "0.2.0.0"; - sha256 = "09h6wfalziw39c2sghj8qw82vyvnl01qlsam6ngkfkdirgj5sg5h"; - libraryHaskellDepends = [ - base - c-storable-deriving - ]; - description = "A Queue with a random (weighted) pick function"; - license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "HFuse" = callPackage ( { mkDerivation, @@ -17927,43 +6556,6 @@ self: { } ) { inherit (pkgs) fuse; }; - "HGE2D" = callPackage ( - { - mkDerivation, - base, - GLUT, - hspec, - OpenGL, - QuickCheck, - safe, - time, - }: - mkDerivation { - pname = "HGE2D"; - version = "0.1.9.2"; - sha256 = "0rbwa17z96d14kgxm3fvixzkiisshr3bs2pq8hrc0q4ybghgl6bv"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - GLUT - OpenGL - safe - time - ]; - executableHaskellDepends = [ base ]; - testHaskellDepends = [ - base - hspec - QuickCheck - ]; - description = "2D game engine written in Haskell"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "HGL" = callPackage ( { mkDerivation, @@ -17989,1051 +6581,6 @@ self: { } ) { }; - "HGamer3D" = callPackage ( - { - mkDerivation, - base, - binary-serialise-cbor, - bytestring, - cereal, - clock, - containers, - directory, - filepath, - fresco-binding, - text, - vect, - }: - mkDerivation { - pname = "HGamer3D"; - version = "0.9.5"; - sha256 = "094jq36n6j8k6gxyqm6gpkn1qxadj93m3bn3nrkg3n0nkqpcjcsb"; - libraryHaskellDepends = [ - base - binary-serialise-cbor - bytestring - cereal - clock - containers - directory - filepath - fresco-binding - text - vect - ]; - description = "Toolset for the Haskell Game Programmer"; - license = "unknown"; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "HGamer3D-API" = callPackage ( - { - mkDerivation, - base, - haskell98, - HGamer3D-Data, - HGamer3D-Ogre-Binding, - HGamer3D-SFML-Binding, - }: - mkDerivation { - pname = "HGamer3D-API"; - version = "0.1.6"; - sha256 = "14wji303z3frjr4rc675pcispbpbpm1ilj6g3cb1fxm5wmi30q5l"; - libraryHaskellDepends = [ - base - haskell98 - HGamer3D-Data - HGamer3D-Ogre-Binding - HGamer3D-SFML-Binding - ]; - description = "Library to enable 3D game development for Haskell - API"; - license = "unknown"; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "HGamer3D-Audio" = callPackage ( - { - mkDerivation, - base, - containers, - HGamer3D-Common, - HGamer3D-Data, - HGamer3D-SFML-Binding, - }: - mkDerivation { - pname = "HGamer3D-Audio"; - version = "0.5.0"; - sha256 = "0zfzk0vjn2w127dxcsg64d8j6jw1an3i0a2v32sx05l6whrnhabd"; - libraryHaskellDepends = [ - base - containers - HGamer3D-Common - HGamer3D-Data - HGamer3D-SFML-Binding - ]; - description = "Toolset for the Haskell Game Programmer - Audio Functionality"; - license = "unknown"; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "HGamer3D-Bullet-Binding" = callPackage ( - { - mkDerivation, - base, - HGamer3D-Data, - }: - mkDerivation { - pname = "HGamer3D-Bullet-Binding"; - version = "0.2.1"; - sha256 = "1ilj8p1gm56dffics90qj6gspnam56s84wvaig9s0cwjbwxqi4hy"; - libraryHaskellDepends = [ - base - HGamer3D-Data - ]; - description = "Windows Game Engine for the Haskell Programmer - Bullet Bindings"; - license = "unknown"; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "HGamer3D-CAudio-Binding" = callPackage ( - { - mkDerivation, - base, - haskell98, - HGamer3D-Data, - HGamer3DCAudio015, - }: - mkDerivation { - pname = "HGamer3D-CAudio-Binding"; - version = "0.1.5"; - sha256 = "1q69ffhnnh4iaghb1g8s6bqlsry7jy5sbp5vpg4lprnr4wna5ya1"; - libraryHaskellDepends = [ - base - haskell98 - HGamer3D-Data - ]; - librarySystemDepends = [ HGamer3DCAudio015 ]; - description = "Library to enable 3D game development for Haskell - cAudio Bindings"; - license = "unknown"; - hydraPlatforms = lib.platforms.none; - } - ) { HGamer3DCAudio015 = null; }; - - "HGamer3D-CEGUI-Binding" = - callPackage - ( - { - mkDerivation, - base, - CEGUIBase, - CEGUIOgreRenderer, - hg3dcegui050, - HGamer3D-Data, - }: - mkDerivation { - pname = "HGamer3D-CEGUI-Binding"; - version = "0.5.0"; - sha256 = "1lh7gajn69l8yh2lvv552spf31g4br05cvpb2cwrpkijcnq6x8d0"; - libraryHaskellDepends = [ - base - HGamer3D-Data - ]; - librarySystemDepends = [ - CEGUIBase - CEGUIOgreRenderer - hg3dcegui050 - ]; - description = "A Toolset for the Haskell Game Programmer - CEGUI Bindings"; - license = "unknown"; - hydraPlatforms = lib.platforms.none; - } - ) - { - CEGUIBase = null; - CEGUIOgreRenderer = null; - hg3dcegui050 = null; - }; - - "HGamer3D-Common" = callPackage ( - { - mkDerivation, - base, - clock, - containers, - directory, - filepath, - FindBin, - HGamer3D-Data, - stm, - vect, - }: - mkDerivation { - pname = "HGamer3D-Common"; - version = "0.5.0"; - sha256 = "1klb8974hlsbjg06jwg1akl3pvbp6wr17apmdn69x8zarmb84skh"; - libraryHaskellDepends = [ - base - clock - containers - directory - filepath - FindBin - HGamer3D-Data - stm - vect - ]; - description = "Toolset for the Haskell Game Programmer - Game Engine and Utilities"; - license = "unknown"; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "HGamer3D-Data" = callPackage ( - { - mkDerivation, - base, - clock, - containers, - directory, - filepath, - FindBin, - stm, - vect, - }: - mkDerivation { - pname = "HGamer3D-Data"; - version = "0.5.0"; - sha256 = "0361153939v63qy204fxpajkgij7f8kfcz93y38jikqcz6nh7bgz"; - libraryHaskellDepends = [ - base - clock - containers - directory - filepath - FindBin - stm - vect - ]; - description = "Toolset for the Haskell Game Programmer - Data Definitions"; - license = "unknown"; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "HGamer3D-Enet-Binding" = - callPackage - ( - { - mkDerivation, - base, - enet, - hg3denet050, - HGamer3D-Data, - }: - mkDerivation { - pname = "HGamer3D-Enet-Binding"; - version = "0.5.0"; - sha256 = "0a5na073ysmcvr9nkbg7jgrkapzbd22wn7p09s2kpxzl9fr8axwd"; - libraryHaskellDepends = [ - base - HGamer3D-Data - ]; - librarySystemDepends = [ - enet - hg3denet050 - ]; - description = "Enet Binding for HGamer3D"; - license = "unknown"; - hydraPlatforms = lib.platforms.none; - } - ) - { - inherit (pkgs) enet; - hg3denet050 = null; - }; - - "HGamer3D-GUI" = callPackage ( - { - mkDerivation, - base, - HGamer3D-CEGUI-Binding, - HGamer3D-Data, - HGamer3D-WinEvent, - split, - }: - mkDerivation { - pname = "HGamer3D-GUI"; - version = "0.4.0"; - sha256 = "006j6g6w990il30kgpwvls77hsmlbg2haiwckrpq3mcywxrhrbsd"; - libraryHaskellDepends = [ - base - HGamer3D-CEGUI-Binding - HGamer3D-Data - HGamer3D-WinEvent - split - ]; - description = "GUI Functionality for HGamer3D"; - license = "unknown"; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "HGamer3D-Graphics3D" = callPackage ( - { - mkDerivation, - base, - containers, - directory, - filepath, - HGamer3D-CEGUI-Binding, - HGamer3D-Common, - HGamer3D-Data, - HGamer3D-Ogre-Binding, - HGamer3D-SDL2-Binding, - mtl, - split, - transformers, - }: - mkDerivation { - pname = "HGamer3D-Graphics3D"; - version = "0.5.0"; - sha256 = "1a6fizaf0l6271407z8kzlzd8yhh9ky2l9n10xcns0a1asvdkj5y"; - libraryHaskellDepends = [ - base - containers - directory - filepath - HGamer3D-CEGUI-Binding - HGamer3D-Common - HGamer3D-Data - HGamer3D-Ogre-Binding - HGamer3D-SDL2-Binding - mtl - split - transformers - ]; - description = "Toolset for the Haskell Game Programmer - 3D Graphics Functionality"; - license = "unknown"; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "HGamer3D-InputSystem" = callPackage ( - { - mkDerivation, - base, - HGamer3D-Common, - HGamer3D-Data, - HGamer3D-SDL2-Binding, - HGamer3D-SFML-Binding, - }: - mkDerivation { - pname = "HGamer3D-InputSystem"; - version = "0.5.0"; - sha256 = "1dpc5zncc9fayf3gqqpki7chimq5cjpvnpjswapllsmykginlyfh"; - libraryHaskellDepends = [ - base - HGamer3D-Common - HGamer3D-Data - HGamer3D-SDL2-Binding - HGamer3D-SFML-Binding - ]; - description = "Joystick, Mouse and Keyboard Functionality for HGamer3D"; - license = "unknown"; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "HGamer3D-Network" = callPackage ( - { - mkDerivation, - base, - HGamer3D-Common, - HGamer3D-Data, - HGamer3D-Enet-Binding, - }: - mkDerivation { - pname = "HGamer3D-Network"; - version = "0.5.0"; - sha256 = "105m6k112qs96cih9jp0s9l24s671a3hlnsv4jm893mdk28zvznl"; - libraryHaskellDepends = [ - base - HGamer3D-Common - HGamer3D-Data - HGamer3D-Enet-Binding - ]; - description = "Networking Functionality for HGamer3D"; - license = "unknown"; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "HGamer3D-OIS-Binding" = callPackage ( - { - mkDerivation, - base, - haskell98, - HGamer3D-Data, - HGamer3D-Ogre-Binding, - HGamer3DOIS015, - }: - mkDerivation { - pname = "HGamer3D-OIS-Binding"; - version = "0.1.5"; - sha256 = "1n00s6vpwyw8zcasqzg6ycgc98w6hh3sylxjh05w1pya9v853syf"; - libraryHaskellDepends = [ - base - haskell98 - HGamer3D-Data - HGamer3D-Ogre-Binding - ]; - librarySystemDepends = [ HGamer3DOIS015 ]; - description = "Library to enable 3D game development for Haskell - OIS Bindings"; - license = "unknown"; - hydraPlatforms = lib.platforms.none; - } - ) { HGamer3DOIS015 = null; }; - - "HGamer3D-Ogre-Binding" = - callPackage - ( - { - mkDerivation, - base, - hg3dogre050, - HGamer3D-Data, - mtl, - OgreMain, - OgrePaging, - OgreProperty, - OgreRTShaderSystem, - OgreTerrain, - transformers, - }: - mkDerivation { - pname = "HGamer3D-Ogre-Binding"; - version = "0.5.0"; - sha256 = "1m2mgqky2bswwskgkmp7xmnm4df5i3rdkshlxkhihglgx3z1wy1w"; - libraryHaskellDepends = [ - base - HGamer3D-Data - mtl - transformers - ]; - librarySystemDepends = [ - hg3dogre050 - OgreMain - OgrePaging - OgreProperty - OgreRTShaderSystem - OgreTerrain - ]; - description = "Ogre Binding for HGamer3D"; - license = "unknown"; - hydraPlatforms = lib.platforms.none; - } - ) - { - OgreMain = null; - OgrePaging = null; - OgreProperty = null; - OgreRTShaderSystem = null; - OgreTerrain = null; - hg3dogre050 = null; - }; - - "HGamer3D-SDL2-Binding" = - callPackage - ( - { - mkDerivation, - base, - bytestring, - hg3dsdl2050, - HGamer3D-Data, - libX11, - SDL2, - utf8-string, - }: - mkDerivation { - pname = "HGamer3D-SDL2-Binding"; - version = "0.5.0"; - sha256 = "11j9gysd6sc8wvia7hgf3qvzbxmpqkj7hv65iza474yig2dcr5hh"; - libraryHaskellDepends = [ - base - bytestring - HGamer3D-Data - utf8-string - ]; - librarySystemDepends = [ - hg3dsdl2050 - libX11 - SDL2 - ]; - description = "SDL2 Binding for HGamer3D"; - license = "unknown"; - hydraPlatforms = lib.platforms.none; - } - ) - { - inherit (pkgs) SDL2; - hg3dsdl2050 = null; - inherit (pkgs.xorg) libX11; - }; - - "HGamer3D-SFML-Binding" = - callPackage - ( - { - mkDerivation, - base, - hg3dsfml050, - HGamer3D-Data, - sfml-audio, - sfml-network, - sfml-system, - sfml-window, - }: - mkDerivation { - pname = "HGamer3D-SFML-Binding"; - version = "0.5.0"; - sha256 = "1087g60dxg8pzxvx7bh72ws5slf4mfqmya8cnv11vxl6hk04vc4v"; - libraryHaskellDepends = [ - base - HGamer3D-Data - ]; - librarySystemDepends = [ - hg3dsfml050 - sfml-audio - sfml-network - sfml-system - sfml-window - ]; - description = "SFML Binding for HGamer3D"; - license = "unknown"; - hydraPlatforms = lib.platforms.none; - } - ) - { - hg3dsfml050 = null; - sfml-audio = null; - sfml-network = null; - sfml-system = null; - sfml-window = null; - }; - - "HGamer3D-WinEvent" = callPackage ( - { - mkDerivation, - base, - HGamer3D-Data, - HGamer3D-SDL2-Binding, - text, - }: - mkDerivation { - pname = "HGamer3D-WinEvent"; - version = "0.4.0"; - sha256 = "0d3vjlgpzzb473dmhllxvi05lnh010vgfdbizlj4yxywrp6aas9a"; - libraryHaskellDepends = [ - base - HGamer3D-Data - HGamer3D-SDL2-Binding - text - ]; - description = "Windowing and Event Functionality for HGamer3D"; - license = "unknown"; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "HGamer3D-Wire" = callPackage ( - { - mkDerivation, - base, - containers, - HGamer3D, - HGamer3D-Audio, - HGamer3D-Data, - HGamer3D-GUI, - HGamer3D-InputSystem, - HGamer3D-WinEvent, - mtl, - netwire, - transformers, - }: - mkDerivation { - pname = "HGamer3D-Wire"; - version = "0.3.3"; - sha256 = "0w5iafs9ldafc3kzq13alnk1ng766p9w97nak3aijpxfrc4m6z77"; - libraryHaskellDepends = [ - base - containers - HGamer3D - HGamer3D-Audio - HGamer3D-Data - HGamer3D-GUI - HGamer3D-InputSystem - HGamer3D-WinEvent - mtl - netwire - transformers - ]; - description = "Wire Functionality for HGamer3D"; - license = "unknown"; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "HGraphStorage" = callPackage ( - { - mkDerivation, - base, - binary, - bytestring, - Cabal, - containers, - criterion, - data-default, - directory, - filepath, - HUnit, - lifted-base, - monad-control, - monad-logger, - QuickCheck, - resourcet, - tar, - tasty, - tasty-hunit, - tasty-quickcheck, - text, - text-binary, - transformers, - transformers-base, - zlib, - }: - mkDerivation { - pname = "HGraphStorage"; - version = "0.0.3"; - sha256 = "1qbhzrw8sjxaz95b34w3w71dv79wlkmqjgvcsr79vxxfn4c83dfc"; - libraryHaskellDepends = [ - base - binary - bytestring - containers - data-default - directory - filepath - lifted-base - monad-control - monad-logger - resourcet - text - transformers - transformers-base - ]; - testHaskellDepends = [ - base - bytestring - containers - data-default - directory - filepath - HUnit - lifted-base - monad-control - monad-logger - QuickCheck - resourcet - tasty - tasty-hunit - tasty-quickcheck - text - transformers - transformers-base - ]; - benchmarkHaskellDepends = [ - base - binary - bytestring - Cabal - containers - criterion - data-default - directory - filepath - monad-logger - resourcet - tar - text - text-binary - transformers - zlib - ]; - description = "Graph database stored on disk"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "HHDL" = callPackage ( - { - mkDerivation, - base, - containers, - mtl, - template-haskell, - }: - mkDerivation { - pname = "HHDL"; - version = "0.1.0.0"; - sha256 = "1215nz6l3bbkld2fqqsc494xw4qw4vqavznaqxgja2p60w9mwg0q"; - libraryHaskellDepends = [ - base - containers - mtl - template-haskell - ]; - description = "Hardware Description Language embedded in Haskell"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "HJScript" = callPackage ( - { - mkDerivation, - base, - HJavaScript, - hsp, - mtl, - text, - }: - mkDerivation { - pname = "HJScript"; - version = "0.7.0"; - sha256 = "0xvhzmsl1z6im36svjhcl4zlbnmpknlfn0m426cj5l06a3c5mfa8"; - libraryHaskellDepends = [ - base - HJavaScript - hsp - mtl - text - ]; - description = "HJScript is a Haskell EDSL for writing JavaScript programs"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "HJVM" = callPackage ( - { - mkDerivation, - base, - Cabal, - containers, - filepath, - haskell-src-exts, - HUnit, - jdk, - mtl, - parsec, - process, - test-framework, - test-framework-hunit, - transformers, - }: - mkDerivation { - pname = "HJVM"; - version = "0.1"; - sha256 = "0ixzhgrb2jj7np8gmfwca724w5n26i5xalppm5idnhxw6k4jbklr"; - libraryHaskellDepends = [ - base - containers - filepath - haskell-src-exts - mtl - parsec - process - transformers - ]; - librarySystemDepends = [ jdk ]; - testHaskellDepends = [ - base - Cabal - haskell-src-exts - HUnit - mtl - parsec - test-framework - test-framework-hunit - transformers - ]; - description = "A library to create a Java Virtual Machine and manipulate Java objects"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { inherit (pkgs) jdk; }; - - "HJavaScript" = callPackage ( - { - mkDerivation, - base, - pretty, - }: - mkDerivation { - pname = "HJavaScript"; - version = "0.4.7"; - sha256 = "0sb2wqbf6kml5d414xi6jk0gr31673djqxa5wg1mxl40vwn14pvh"; - revision = "1"; - editedCabalFile = "05m2kgz0laxv9jl1qfc1sxndan9503010y3aadvfcsxi9cyg3j1j"; - libraryHaskellDepends = [ - base - pretty - ]; - description = "HJavaScript is an abstract syntax for a typed subset of JavaScript"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "HLearn-algebra" = callPackage ( - { - mkDerivation, - base, - ConstraintKinds, - containers, - deepseq, - hashable, - MonadRandom, - parallel, - random, - template-haskell, - vector, - vector-heterogenous, - }: - mkDerivation { - pname = "HLearn-algebra"; - version = "1.1.0.1"; - sha256 = "1k0a01cqaay4wp6i603yvcjpmap7inyjxiblqkbpifk9mwjxf15a"; - revision = "2"; - editedCabalFile = "12cqv3spyjawayk8znhfp1vcdwcb885r2hq5a9xvl8y56p80l2v4"; - libraryHaskellDepends = [ - base - ConstraintKinds - containers - deepseq - hashable - MonadRandom - parallel - random - template-haskell - vector - vector-heterogenous - ]; - description = "Algebraic foundation for homomorphic learning"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "HLearn-approximation" = callPackage ( - { - mkDerivation, - base, - ConstraintKinds, - containers, - heap, - HLearn-algebra, - HLearn-datastructures, - HLearn-distributions, - list-extras, - vector, - }: - mkDerivation { - pname = "HLearn-approximation"; - version = "1.1.0"; - sha256 = "1gqrpnliy4jqjlhdhi7vygvq2lnfgwl2hr5hlkzgqmz2gjyib8vn"; - revision = "1"; - editedCabalFile = "1qf5c6dlr93caypdb9048hxvjj8ha54qygylkvhd9da1i7s3f23v"; - libraryHaskellDepends = [ - base - ConstraintKinds - containers - heap - HLearn-algebra - HLearn-datastructures - HLearn-distributions - list-extras - vector - ]; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "HLearn-classification" = callPackage ( - { - mkDerivation, - base, - binary, - bytestring, - ConstraintKinds, - containers, - deepseq, - dlist, - hashable, - HLearn-algebra, - HLearn-distributions, - list-extras, - logfloat, - math-functions, - MonadRandom, - normaldistribution, - parsec, - primitive, - QuickCheck, - statistics, - vector, - vector-th-unbox, - }: - mkDerivation { - pname = "HLearn-classification"; - version = "1.0.1.3"; - sha256 = "11c1016nhhckmdrzlazz5b7iabl0iz0g2245bwws3alnnn74svhd"; - revision = "1"; - editedCabalFile = "1hgdrfrdjk1vpcpj68cxywnazvdsd3i1plik1n6vqp84s708r9d9"; - libraryHaskellDepends = [ - base - binary - bytestring - ConstraintKinds - containers - deepseq - dlist - hashable - HLearn-algebra - HLearn-distributions - list-extras - logfloat - math-functions - MonadRandom - normaldistribution - parsec - primitive - QuickCheck - statistics - vector - vector-th-unbox - ]; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "HLearn-datastructures" = callPackage ( - { - mkDerivation, - base, - ConstraintKinds, - containers, - deepseq, - HLearn-algebra, - list-extras, - MonadRandom, - QuickCheck, - vector, - }: - mkDerivation { - pname = "HLearn-datastructures"; - version = "1.1.0"; - sha256 = "06kbscd7nbbb6dlsgyigyag851bbvhiz6p05gdawpb7y0fh8f3wb"; - libraryHaskellDepends = [ - base - ConstraintKinds - containers - deepseq - HLearn-algebra - list-extras - MonadRandom - QuickCheck - vector - ]; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "HLearn-distributions" = callPackage ( - { - mkDerivation, - array, - base, - ConstraintKinds, - containers, - deepseq, - erf, - gamma, - graphviz, - HLearn-algebra, - HLearn-datastructures, - hmatrix, - list-extras, - math-functions, - MonadRandom, - normaldistribution, - process, - QuickCheck, - statistics, - template-haskell, - vector, - vector-th-unbox, - }: - mkDerivation { - pname = "HLearn-distributions"; - version = "1.1.0.2"; - sha256 = "19v9askkccbv405bchq5h72jahsbivj2s31ajwi316kksan2iwzf"; - revision = "1"; - editedCabalFile = "1ispp5nf8pynb9yr8xbbm92sdasad6l4hq9zdlkbm3rdssfjxfsq"; - libraryHaskellDepends = [ - array - base - ConstraintKinds - containers - deepseq - erf - gamma - graphviz - HLearn-algebra - HLearn-datastructures - hmatrix - list-extras - math-functions - MonadRandom - normaldistribution - process - QuickCheck - statistics - template-haskell - vector - vector-th-unbox - ]; - description = "Distributions for use with the HLearn library"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "HList" = callPackage ( { mkDerivation, @@ -19115,50 +6662,6 @@ self: { } ) { }; - "HLogger" = callPackage ( - { - mkDerivation, - base, - old-locale, - time, - }: - mkDerivation { - pname = "HLogger"; - version = "0.0.1.0"; - sha256 = "0amxyg9j6fh58g2wh9k0231mxmvi6j96z7ykd3rm3jzs96fhlncp"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - old-locale - time - ]; - executableHaskellDepends = [ - base - old-locale - time - ]; - description = "Simple, concurrent and easy-to-use logging library"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "logger-0.0.1.0-test"; - broken = true; - } - ) { }; - - "HMM" = callPackage ( - { mkDerivation }: - mkDerivation { - pname = "HMM"; - version = "0.2.1"; - sha256 = "01y8l76c56gysynbilp32yq0wfc129hl24siw8s9fmpn98qa71s6"; - description = "A hidden markov model library"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "HMap" = callPackage ( { mkDerivation, @@ -19185,48 +6688,6 @@ self: { } ) { }; - "HMarkov" = callPackage ( - { - mkDerivation, - base, - lens, - mtl, - QuickCheck, - random, - tasty, - tasty-hunit, - tasty-quickcheck, - vector, - }: - mkDerivation { - pname = "HMarkov"; - version = "1.0.1.1"; - sha256 = "00wxm07ng9kz1xm94n8dm44c08lmnpqk3pxpsa3q8d6734q7bcpp"; - libraryHaskellDepends = [ - base - lens - mtl - random - vector - ]; - testHaskellDepends = [ - base - lens - mtl - QuickCheck - random - tasty - tasty-hunit - tasty-quickcheck - vector - ]; - description = "Markov-generated sequences"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "HMock" = callPackage ( { mkDerivation, @@ -19294,57 +6755,6 @@ self: { } ) { }; - "HNM" = callPackage ( - { - mkDerivation, - base, - containers, - directory, - glib, - gtk, - haskell98, - mtl, - process, - regex-posix, - unix, - }: - mkDerivation { - pname = "HNM"; - version = "0.1.2"; - sha256 = "04325gwmlrx4iy9609vzaw2dhs4kg3ydr4r6af6rllrf500f6w9j"; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base - containers - directory - glib - gtk - haskell98 - mtl - process - regex-posix - unix - ]; - executableHaskellDepends = [ - base - containers - glib - gtk - haskell98 - mtl - process - regex-posix - unix - ]; - description = "Happy Network Manager"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "HNM"; - } - ) { }; - "HNumeric" = callPackage ( { mkDerivation, @@ -19377,59 +6787,6 @@ self: { } ) { }; - "HODE" = callPackage ( - { - mkDerivation, - array, - base, - ode, - }: - mkDerivation { - pname = "HODE"; - version = "2008.10.27"; - sha256 = "0fr3bivmlciicba1brhm86l8diadb765ff1s8g6ylygs8l7lingv"; - libraryHaskellDepends = [ - array - base - ]; - librarySystemDepends = [ ode ]; - description = "Binding to libODE"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { inherit (pkgs) ode; }; - - "HOpenCV" = callPackage ( - { - mkDerivation, - allocated-processor, - base, - opencv, - vector-space, - }: - mkDerivation { - pname = "HOpenCV"; - version = "0.4.0.1"; - sha256 = "1ixykkjsfbps5l66hv578w45v2hfrcpja8xqc3mmqrvf8s9f8yvy"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - allocated-processor - base - vector-space - ]; - libraryPkgconfigDepends = [ opencv ]; - executableHaskellDepends = [ base ]; - executablePkgconfigDepends = [ opencv ]; - description = "A binding for the OpenCV computer vision library"; - license = lib.licenses.gpl2Only; - hydraPlatforms = lib.platforms.none; - mainProgram = "cannyVideo"; - broken = true; - } - ) { inherit (pkgs) opencv; }; - "HPDF" = callPackage ( { mkDerivation, @@ -19566,84 +6923,6 @@ self: { } ) { }; - "HPath" = callPackage ( - { - mkDerivation, - base, - Cabal, - containers, - directory, - filepath, - haskell-src-exts, - mtl, - parsec, - utf8-string, - }: - mkDerivation { - pname = "HPath"; - version = "0.0.2"; - sha256 = "10hlqyhcpgnkiqwjwb3d10wrhzc82jcbz1qvxa0mzzif36rys1wk"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - Cabal - containers - directory - filepath - haskell-src-exts - mtl - parsec - utf8-string - ]; - executableHaskellDepends = [ - base - Cabal - containers - directory - filepath - haskell-src-exts - mtl - parsec - utf8-string - ]; - description = "Extract Haskell declarations by name"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "hpath"; - broken = true; - } - ) { }; - - "HPhone" = callPackage ( - { - mkDerivation, - base, - containers, - hspec, - phone-metadata, - regex-pcre, - }: - mkDerivation { - pname = "HPhone"; - version = "0.0.1.2"; - sha256 = "0f8gi2i9ag80r4cdl8zhcfwlfjk8g6plyjbp012brrs24020b6xm"; - libraryHaskellDepends = [ - base - containers - phone-metadata - regex-pcre - ]; - testHaskellDepends = [ - base - hspec - ]; - description = "Phone number parser and validator - This is now DEPRECATED!"; - license = "unknown"; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "HPi" = callPackage ( { mkDerivation, @@ -19667,74 +6946,6 @@ self: { } ) { bcm2835 = null; }; - "HPlot" = callPackage ( - { - mkDerivation, - base, - c2hs, - glade, - glib, - gtk, - plplotd-gnome2, - }: - mkDerivation { - pname = "HPlot"; - version = "0.3"; - sha256 = "022642xp13fl34y854n4j7kxn0nyxhrz4gxgn3nfqs67m13bcsqy"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - glade - glib - gtk - ]; - libraryPkgconfigDepends = [ plplotd-gnome2 ]; - libraryToolDepends = [ c2hs ]; - executableHaskellDepends = [ - base - glade - glib - gtk - ]; - executablePkgconfigDepends = [ plplotd-gnome2 ]; - description = "A minimal monadic PLplot interface for Haskell"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "Example"; - } - ) { plplotd-gnome2 = null; }; - - "HPong" = callPackage ( - { - mkDerivation, - base, - data-accessor, - data-accessor-template, - GLFW, - OpenGL, - }: - mkDerivation { - pname = "HPong"; - version = "0.1.2"; - sha256 = "0dzzq4ksny537b151g6c1jgj2ns143klhdjfbq84srs026pvpvzi"; - isLibrary = false; - isExecutable = true; - enableSeparateDataOutput = true; - executableHaskellDepends = [ - base - data-accessor - data-accessor-template - GLFW - OpenGL - ]; - description = "A simple OpenGL Pong game based on GLFW"; - license = "GPL"; - hydraPlatforms = lib.platforms.none; - mainProgram = "hpong"; - } - ) { }; - "HQu" = callPackage ( { mkDerivation, @@ -20093,115 +7304,6 @@ self: { } ) { }; - "HRay" = callPackage ( - { - mkDerivation, - array, - base, - directory, - haskell98, - }: - mkDerivation { - pname = "HRay"; - version = "1.2.3"; - sha256 = "0bg0b8260cd2l8q7ccijwqg1yz49mkifv1r0a5q1hrbsagvac4nf"; - isLibrary = false; - isExecutable = true; - enableSeparateDataOutput = true; - executableHaskellDepends = [ - array - base - directory - haskell98 - ]; - description = "Haskell raytracer"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "HRay"; - } - ) { }; - - "HSFFIG" = callPackage ( - { - mkDerivation, - array, - base, - Cabal, - containers, - directory, - filepath, - parsec, - process, - unix, - }: - mkDerivation { - pname = "HSFFIG"; - version = "1.1.3"; - sha256 = "10zkg2lhvzxi6csyrah8kw3xd1da60im0whpg884hpnf5h220086"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - array - base - Cabal - containers - directory - filepath - parsec - process - unix - ]; - executableHaskellDepends = [ - array - base - Cabal - containers - directory - filepath - parsec - process - unix - ]; - description = "Generate FFI import declarations from C include files"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "HSGEP" = callPackage ( - { - mkDerivation, - base, - csv, - mersenne-random-pure64, - monad-mersenne-random, - mtl, - split, - vector, - }: - mkDerivation { - pname = "HSGEP"; - version = "0.1.5"; - sha256 = "16k853180smf2smw8ch3mzjv14imj9w2ssh61hcc23carhrsbg9p"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - mersenne-random-pure64 - monad-mersenne-random - mtl - split - vector - ]; - executableHaskellDepends = [ csv ]; - description = "Gene Expression Programming evolutionary algorithm in Haskell"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "HSGEP_Regression"; - } - ) { }; - "HSH" = callPackage ( { mkDerivation, @@ -20243,44 +7345,6 @@ self: { } ) { }; - "HSHHelpers" = callPackage ( - { - mkDerivation, - base, - bytestring, - DebugTraceHelpers, - directory, - filepath, - HSH, - HStringTemplateHelpers, - MissingH, - mtl, - regex-pcre, - unix, - }: - mkDerivation { - pname = "HSHHelpers"; - version = "0.24"; - sha256 = "0mz25xak9fkircdxcpzrf3rym9l5ivhifk7dqm2xki3mv6fw214d"; - libraryHaskellDepends = [ - base - bytestring - DebugTraceHelpers - directory - filepath - HSH - HStringTemplateHelpers - MissingH - mtl - regex-pcre - unix - ]; - description = "Convenience functions that use HSH, instances for HSH"; - license = "GPL"; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "HSet" = callPackage ( { mkDerivation, @@ -20406,36 +7470,6 @@ self: { } ) { }; - "HSoundFile" = callPackage ( - { - mkDerivation, - base, - binary, - bytestring, - filepath, - haskell98, - mtl, - parallel, - }: - mkDerivation { - pname = "HSoundFile"; - version = "0.2.2"; - sha256 = "0qlz17dzlysj36zz3s8dzwvfdr9rdfp6gnabc262iraidqapshzb"; - libraryHaskellDepends = [ - base - binary - bytestring - filepath - haskell98 - mtl - parallel - ]; - description = "Audio file reading/writing"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "HStringTemplate" = callPackage ( { mkDerivation, @@ -20499,42 +7533,6 @@ self: { } ) { }; - "HStringTemplateHelpers" = callPackage ( - { - mkDerivation, - base, - containers, - directory, - FileManipCompat, - filepath, - HSH, - HStringTemplate, - mtl, - safe, - strict, - }: - mkDerivation { - pname = "HStringTemplateHelpers"; - version = "0.0.14"; - sha256 = "1dgr28hxm9zlxl13ms9mn63rbm5ya6bkyys6q0kbns2y2zwmkswh"; - libraryHaskellDepends = [ - base - containers - directory - FileManipCompat - filepath - HSH - HStringTemplate - mtl - safe - strict - ]; - description = "Convenience functions and instances for HStringTemplate"; - license = "GPL"; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "HSvm" = callPackage ( { mkDerivation, @@ -20735,77 +7733,6 @@ self: { } ) { }; - "HTab" = callPackage ( - { - mkDerivation, - base, - cmdargs, - containers, - deepseq, - hylolib, - mtl, - random, - strict, - }: - mkDerivation { - pname = "HTab"; - version = "1.7.3"; - sha256 = "0w5zjd9q87a79vaslxs4r7xllq37vyg546ramgfnw43l1cmkica6"; - isLibrary = false; - isExecutable = true; - enableSeparateDataOutput = true; - executableHaskellDepends = [ - base - cmdargs - containers - deepseq - hylolib - mtl - random - strict - ]; - description = "Tableau based theorem prover for hybrid logics"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "htab"; - } - ) { }; - - "HTicTacToe" = callPackage ( - { - mkDerivation, - array, - base, - mtl, - random, - SDL, - SDL-image, - SDL-ttf, - }: - mkDerivation { - pname = "HTicTacToe"; - version = "0.2"; - sha256 = "0h3pr4lyx14zndwbas5ba8sg3s84sq19qhh6pcqpy4v2ajfyyfqc"; - isLibrary = false; - isExecutable = true; - enableSeparateDataOutput = true; - executableHaskellDepends = [ - array - base - mtl - random - SDL - SDL-image - SDL-ttf - ]; - description = "An SDL tic-tac-toe game"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - mainProgram = "HTicTacToe"; - broken = true; - } - ) { }; - "HUnit" = callPackage ( { mkDerivation, @@ -20834,90 +7761,6 @@ self: { } ) { }; - "HUnit-Diff" = callPackage ( - { - mkDerivation, - ansi-terminal, - base, - Diff, - groom, - HUnit, - }: - mkDerivation { - pname = "HUnit-Diff"; - version = "0.1"; - sha256 = "0dlsx6qicnrqkhb52jbgh31f0y6lxh32yl5gr6bg3fnqr36vc6x6"; - libraryHaskellDepends = [ - ansi-terminal - base - Diff - groom - HUnit - ]; - description = "Assertions for HUnit with difference reporting"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "HUnit-Plus" = callPackage ( - { - mkDerivation, - base, - bytestring, - Cabal, - cmdargs, - directory, - hashable, - hexpat, - hostname, - parsec, - text, - time, - timeit, - unordered-containers, - }: - mkDerivation { - pname = "HUnit-Plus"; - version = "2.0.0"; - sha256 = "1xbnpd2mxw7dbbix5sdhpdvfq79ssq40pi99wxrda0z5xdyy09dj"; - libraryHaskellDepends = [ - base - bytestring - Cabal - cmdargs - hashable - hexpat - hostname - parsec - text - time - timeit - unordered-containers - ]; - testHaskellDepends = [ - base - bytestring - Cabal - cmdargs - directory - hashable - hexpat - hostname - parsec - text - time - timeit - unordered-containers - ]; - description = "A test framework building on HUnit"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "HUnit-approx" = callPackage ( { mkDerivation, @@ -20944,109 +7787,6 @@ self: { } ) { }; - "HXMPP" = callPackage ( - { - mkDerivation, - base, - base64-string, - binary, - bytestring, - crypto-api, - enumerator, - HLogger, - network, - pureMD5, - random, - regex-posix, - text, - transformers, - utf8-string, - xml-enumerator, - xml-types, - }: - mkDerivation { - pname = "HXMPP"; - version = "0.0.1.0"; - sha256 = "094j5bafrwr0d5sz3fidz7k328w6f4nqhja2c9gf89759nc470ss"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - base64-string - binary - bytestring - crypto-api - enumerator - HLogger - network - pureMD5 - random - regex-posix - text - transformers - utf8-string - xml-enumerator - xml-types - ]; - executableHaskellDepends = [ - base - base64-string - binary - bytestring - crypto-api - enumerator - HLogger - network - pureMD5 - random - regex-posix - text - transformers - utf8-string - xml-enumerator - xml-types - ]; - description = "A (prototyped) easy to use XMPP library"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "hxmpp-0.0.1.0-test"; - } - ) { }; - - "HXQ" = callPackage ( - { - mkDerivation, - array, - base, - haskeline, - HTTP, - mtl, - regex-base, - regex-compat, - template-haskell, - }: - mkDerivation { - pname = "HXQ"; - version = "0.20.1"; - sha256 = "1ba3b7a91h1qc5g9g9cw591mvsp711myijpzxr4c1wg6yapqbhxp"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - array - base - haskeline - HTTP - mtl - regex-base - regex-compat - template-haskell - ]; - description = "A Compiler from XQuery to Haskell"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "HaGL" = callPackage ( { mkDerivation, @@ -21103,83 +7843,6 @@ self: { } ) { }; - "HaLeX" = callPackage ( - { - mkDerivation, - base, - HUnit, - mtl, - QuickCheck, - }: - mkDerivation { - pname = "HaLeX"; - version = "1.2.6"; - sha256 = "1mvxzcq42h823gq025w86z03jigk271fj20r7yfjydj7yvn24kjv"; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base - HUnit - mtl - QuickCheck - ]; - description = "HaLeX enables modelling, manipulation and visualization of regular languages"; - license = lib.licenses.publicDomain; - hydraPlatforms = lib.platforms.none; - mainProgram = "halex"; - broken = true; - } - ) { }; - - "HaMinitel" = callPackage ( - { - mkDerivation, - base, - bytestring, - serialport, - stm, - }: - mkDerivation { - pname = "HaMinitel"; - version = "0.1.0.0"; - sha256 = "0q7fq5z0wrk2qg9n715033yp25dpl73g6iqkbvxbg2ahp9caq458"; - libraryHaskellDepends = [ - base - bytestring - serialport - stm - ]; - description = "An Haskell library to drive the french Minitel through a serial port"; - license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "HaPy" = callPackage ( - { - mkDerivation, - base, - template-haskell, - th-lift, - }: - mkDerivation { - pname = "HaPy"; - version = "0.1.1.1"; - sha256 = "0li04k27pkq7ci1dfx4sl022ivl4gjqy5ny25jszifwrx4n4pmwz"; - libraryHaskellDepends = [ - base - template-haskell - th-lift - ]; - description = "Haskell bindings for Python"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "HaRe" = callPackage ( { mkDerivation, @@ -21275,7 +7938,6 @@ self: { ]; description = "the Haskell Refactorer"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "ghc-hare"; } ) { }; @@ -21305,129 +7967,25 @@ self: { base bibtex bytestring - containers - hashable - matrix - parsec - prettyprinter - QuickCheck - text - transformers - ]; - testHaskellDepends = [ - base - parsec - QuickCheck - tasty - tasty-quickcheck - text - ]; - description = "The Haskell LaTeX library"; - license = lib.licenses.bsd3; - } - ) { }; - - "HaTeX-meta" = callPackage ( - { - mkDerivation, - base, - Cabal, - containers, - directory, - filepath, - ghc, - haddock, - haskell-src-exts, - mtl, - parsec, - }: - mkDerivation { - pname = "HaTeX-meta"; - version = "1.2.1"; - sha256 = "1cfn823xfp4962x4ww3dawm017nkg00wxa20b8nbq3pmjjnpb2xl"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - Cabal - containers - directory - filepath - ghc - haddock - haskell-src-exts - mtl - parsec - ]; - description = "This package is deprecated. From version 3, HaTeX does not need this anymore."; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "metahatex"; - } - ) { }; - - "HaTeX-qq" = callPackage ( - { - mkDerivation, - antiquoter, - base, - haskell-src-meta, - HaTeX, - template-haskell, - text, - }: - mkDerivation { - pname = "HaTeX-qq"; - version = "0.1.0.1"; - sha256 = "192gjv2289mfflwii3wf7q3aih8a99072n9adv3vx360mh08wbd8"; - libraryHaskellDepends = [ - antiquoter - base - haskell-src-meta - HaTeX - template-haskell - text - ]; - description = "Quasiquoters for HaTeX"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "HaVSA" = callPackage ( - { - mkDerivation, - base, - HUnit, - logict, - QuickCheck, - test-framework, - test-framework-hunit, - test-framework-quickcheck, - }: - mkDerivation { - pname = "HaVSA"; - version = "0.1.0.2"; - sha256 = "1hh324i7gvazlkm3vfmzah41h2hlxwb2k8g1z8dmfbif6pmp0apk"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - logict + containers + hashable + matrix + parsec + prettyprinter + QuickCheck + text + transformers ]; - executableHaskellDepends = [ + testHaskellDepends = [ base - HUnit - logict + parsec QuickCheck - test-framework - test-framework-hunit - test-framework-quickcheck + tasty + tasty-quickcheck + text ]; - description = "An implementation of the Version Space Algebra learning framework"; + description = "The Haskell LaTeX library"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "tests"; } ) { }; @@ -21499,159 +8057,6 @@ self: { } ) { }; - "Hach" = callPackage ( - { - mkDerivation, - base, - containers, - network, - old-locale, - text, - time, - vty, - vty-ui, - }: - mkDerivation { - pname = "Hach"; - version = "0.1.2"; - sha256 = "1bp7ngsh655x0iamb8bhn2sqkpg3p6mhg0n0fgqz5k4pjskjyavy"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - containers - network - old-locale - ]; - executableHaskellDepends = [ - text - time - vty - vty-ui - ]; - description = "Simple chat"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "HackMail" = callPackage ( - { - mkDerivation, - base, - Crypto, - directory, - hdaemonize, - hint, - mtl, - old-time, - parsec, - }: - mkDerivation { - pname = "HackMail"; - version = "0.0.1"; - sha256 = "1j8lw1c5asx40fag9gd6ni19c0z0q46f55yry5cj94v4s5m2gzbw"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - Crypto - directory - hint - mtl - old-time - parsec - ]; - executableHaskellDepends = [ - base - Crypto - directory - hdaemonize - hint - mtl - old-time - parsec - ]; - description = "A Procmail Replacement as Haskell EDSL"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "hackmail"; - broken = true; - } - ) { }; - - "Haggressive" = callPackage ( - { - mkDerivation, - base, - bytestring, - Cabal, - cassava, - containers, - directory, - HUnit, - PSQueue, - text, - tokenize, - tuple, - vector, - }: - mkDerivation { - pname = "Haggressive"; - version = "0.1.0.4"; - sha256 = "08f8i8bmnjv255xzpasa7drd83fh82qjm49mscn6dmiw6yp47vz1"; - libraryHaskellDepends = [ - base - bytestring - Cabal - cassava - containers - directory - HUnit - PSQueue - text - tokenize - tuple - vector - ]; - testHaskellDepends = [ - base - Cabal - containers - HUnit - tuple - vector - ]; - description = "Aggression analysis for Tweets on Twitter"; - license = lib.licenses.gpl2Only; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "HandlerSocketClient" = callPackage ( - { - mkDerivation, - base, - bytestring, - network, - }: - mkDerivation { - pname = "HandlerSocketClient"; - version = "0.0.5"; - sha256 = "1jp8cwlp6h1wvvkh71813i3lzxc7ckxzc7nvvcsjvcz0apxcl7vv"; - libraryHaskellDepends = [ - base - bytestring - network - ]; - description = "Haskell implementation of a HandlerSocket client (API)"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "HandsomeSoup" = callPackage ( { mkDerivation, @@ -21745,144 +8150,6 @@ self: { } ) { }; - "HappyTree" = callPackage ( - { - mkDerivation, - base, - constraints, - generics-sop, - safe, - singletons, - }: - mkDerivation { - pname = "HappyTree"; - version = "0.2018.1.8"; - sha256 = "01mc5qh786aw2vbpj5h8kzarhwi5h73bd65m51x7xiyabwfmln0b"; - libraryHaskellDepends = [ - base - constraints - generics-sop - safe - singletons - ]; - testHaskellDepends = [ - base - constraints - generics-sop - safe - singletons - ]; - description = "Type Safe and End to End Decision Tree"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "HarmTrace" = callPackage ( - { - mkDerivation, - array, - base, - binary, - cmdargs, - deepseq, - Diff, - directory, - filepath, - ghc-prim, - HarmTrace-Base, - instant-generics, - ListLike, - matrix, - mtl, - parallel, - process, - sox, - template-haskell, - uu-parsinglib, - vector, - }: - mkDerivation { - pname = "HarmTrace"; - version = "2.2.1"; - sha256 = "1f0m154fqal44i16bq9lxzsxj1810rmjvg7a17q5p80phg3dzarj"; - revision = "2"; - editedCabalFile = "0n1qh6bn1r7hwa7aafgs7pvjh8c1qavq2s9vc56989p73llwl1qr"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - array - base - binary - cmdargs - deepseq - Diff - directory - filepath - ghc-prim - HarmTrace-Base - instant-generics - ListLike - matrix - mtl - parallel - process - sox - template-haskell - uu-parsinglib - vector - ]; - description = "Harmony Analysis and Retrieval of Music"; - license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - mainProgram = "harmtrace"; - } - ) { }; - - "HarmTrace-Base" = callPackage ( - { - mkDerivation, - base, - binary, - containers, - ghc-prim, - ListLike, - QuickCheck, - random, - uu-parsinglib, - }: - mkDerivation { - pname = "HarmTrace-Base"; - version = "1.6.0.0"; - sha256 = "03rma29wkrcixvd5whmmlqkhiznxgff3dq8jmw6w7xzr9fn72f9b"; - revision = "1"; - editedCabalFile = "0fldc14b2lj8pvkmxly0ld9mmx33yvswh7sg85g62w4yixsr6fdl"; - libraryHaskellDepends = [ - base - binary - containers - ghc-prim - ListLike - uu-parsinglib - ]; - testHaskellDepends = [ - base - binary - containers - ghc-prim - ListLike - QuickCheck - random - uu-parsinglib - ]; - description = "Parsing and unambiguously representing musical chords"; - license = lib.licenses.lgpl3Only; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "HasBigDecimal" = callPackage ( { mkDerivation, @@ -22004,208 +8271,6 @@ self: { } ) { }; - "HasGP" = callPackage ( - { - mkDerivation, - base, - haskell98, - hmatrix, - hmatrix-special, - mtl, - parsec, - random, - }: - mkDerivation { - pname = "HasGP"; - version = "0.1"; - sha256 = "1sw5l74p2md4whq0c1xifcnwbb525i84n1razjxs7cpf8gicgggx"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base - haskell98 - hmatrix - hmatrix-special - mtl - parsec - random - ]; - description = "A Haskell library for inference using Gaussian processes"; - license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "Haschoo" = callPackage ( - { - mkDerivation, - array, - base, - list-tries, - monad-loops, - mtl, - numbers, - parsec, - }: - mkDerivation { - pname = "Haschoo"; - version = "0.1.2"; - sha256 = "0jh506p0clwyb5wwrhlgbc5xp7w6smz5vky3lc8vhnwvwk324qcj"; - isLibrary = false; - isExecutable = true; - enableSeparateDataOutput = true; - executableHaskellDepends = [ - array - base - list-tries - monad-loops - mtl - numbers - parsec - ]; - description = "Minimalist R5RS Scheme interpreter"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "haschoo"; - broken = true; - } - ) { }; - - "Hashell" = callPackage ( - { - mkDerivation, - base, - directory, - ghc, - haskell98, - parsec, - process, - readline, - regex-compat, - unix, - }: - mkDerivation { - pname = "Hashell"; - version = "1.0"; - sha256 = "0yn525sr7i2nwf4y44va00aswnphn89072zaqjr2i0f1n1jjaxpl"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - directory - ghc - haskell98 - parsec - process - readline - regex-compat - unix - ]; - description = "Simple shell written in Haskell"; - license = "GPL"; - hydraPlatforms = lib.platforms.none; - mainProgram = "hashell"; - } - ) { }; - - "HaskRel" = callPackage ( - { - mkDerivation, - base, - containers, - directory, - ghc-prim, - HList, - tagged, - }: - mkDerivation { - pname = "HaskRel"; - version = "0.1.0.2"; - sha256 = "19q7x459g9s6g7kd9bmhh8lj2khbbmaafmcmm3ggrf4ijxmh5kp7"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base - containers - directory - ghc-prim - HList - tagged - ]; - description = "HaskRel, Haskell as a DBMS with support for the relational algebra"; - license = lib.licenses.gpl2Only; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "HaskellAnalysisProgram" = callPackage ( - { - mkDerivation, - base, - bytestring, - cassava, - containers, - csv, - directory, - fgl, - filepath, - graphviz, - haskell-src-exts, - HUnit, - pretty, - split, - syb, - text, - vector, - }: - mkDerivation { - pname = "HaskellAnalysisProgram"; - version = "0.1.0"; - sha256 = "14z8nwvx306822nlna0p7vihrldk87z518c23aka17h3fxwfzzma"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - bytestring - cassava - containers - csv - directory - fgl - filepath - graphviz - haskell-src-exts - pretty - split - syb - text - vector - ]; - testHaskellDepends = [ - base - bytestring - cassava - containers - csv - directory - fgl - filepath - graphviz - haskell-src-exts - HUnit - pretty - split - syb - text - vector - ]; - description = "Haskell source code analysis program"; - license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; - mainProgram = "HaskellAnalysisProgram"; - broken = true; - } - ) { }; - "HaskellForMaths" = callPackage ( { mkDerivation, @@ -22231,50 +8296,6 @@ self: { } ) { }; - "HaskellLM" = callPackage ( - { - mkDerivation, - base, - hmatrix, - }: - mkDerivation { - pname = "HaskellLM"; - version = "0.1.2"; - sha256 = "0baqn15zdhlinf4v3c244005nb3wm63gpr0w6fy7g9gmn8a00scq"; - libraryHaskellDepends = [ - base - hmatrix - ]; - description = "Pure Haskell implementation of the Levenberg-Marquardt algorithm"; - license = "GPL"; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "HaskellNN" = callPackage ( - { - mkDerivation, - base, - hmatrix, - random, - }: - mkDerivation { - pname = "HaskellNN"; - version = "0.1.3"; - sha256 = "0i5jqhkxna1kq361hh66830x4z5m782pp898g9ggfvdiwpp8phmr"; - libraryHaskellDepends = [ - base - hmatrix - random - ]; - description = "High Performance Neural Network in Haskell"; - license = "GPL"; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "HaskellNet" = callPackage ( { mkDerivation, @@ -22351,129 +8372,6 @@ self: { } ) { }; - "HaskellTorrent" = callPackage ( - { - mkDerivation, - base, - bytestring, - cereal, - cml, - containers, - directory, - hopenssl, - hslogger, - HTTP, - HUnit, - mtl, - network, - parsec, - pretty, - QuickCheck, - random, - random-shuffle, - test-framework, - test-framework-hunit, - test-framework-quickcheck2, - time, - }: - mkDerivation { - pname = "HaskellTorrent"; - version = "0.1.1"; - sha256 = "0dy9irl085jw7wz6y50566rwsj05ymp8g2xp2444vg12ryd5dra1"; - isLibrary = false; - isExecutable = true; - enableSeparateDataOutput = true; - executableHaskellDepends = [ - base - bytestring - cereal - cml - containers - directory - hopenssl - hslogger - HTTP - HUnit - mtl - network - parsec - pretty - QuickCheck - random - random-shuffle - test-framework - test-framework-hunit - test-framework-quickcheck2 - time - ]; - description = "A concurrent bittorrent client"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "HaskellTorrent"; - broken = true; - } - ) { }; - - "HaskellTutorials" = callPackage ( - { - mkDerivation, - base, - cmdargs, - text, - }: - mkDerivation { - pname = "HaskellTutorials"; - version = "0.0.0.1"; - sha256 = "0gnf8x4dqz3bwyhrcn17qci2rzmms3r0cyr7cgf593jlkxiq287q"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - cmdargs - text - ]; - description = "Haskell Tutorials by Evgeny Ukhanov"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - mainProgram = "Haskell.Tutorials"; - broken = true; - } - ) { }; - - "Haskelloids" = callPackage ( - { - mkDerivation, - base, - containers, - HGL, - hmatrix, - MonadRandom, - random, - Yampa, - }: - mkDerivation { - pname = "Haskelloids"; - version = "0.1.1"; - sha256 = "0v171rzpbh4w5kxzbc9h2x4kha1ykw4vk69scfpmdz5iqih2bqz8"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - containers - HGL - hmatrix - MonadRandom - random - Yampa - ]; - description = "A reproduction of the Atari 1979 classic \"Asteroids\""; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "Haskelloids"; - broken = true; - } - ) { }; - "Hastodon" = callPackage ( { mkDerivation, @@ -22713,221 +8611,6 @@ self: { } ) { }; - "Hate" = callPackage ( - { - mkDerivation, - base, - bytestring, - GLFW-b, - GLUtil, - hpp, - JuicyPixels, - JuicyPixels-util, - lens, - mtl, - multimap, - OpenGL, - random, - stm, - transformers, - vect, - vect-opengl, - vector, - }: - mkDerivation { - pname = "Hate"; - version = "0.1.4.3"; - sha256 = "0vjfyd149hbshnxyf8w9jap6x4a7hibzp1il2bs3q481yk1j0yaj"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - bytestring - GLFW-b - GLUtil - hpp - JuicyPixels - JuicyPixels-util - mtl - multimap - OpenGL - stm - transformers - vect - vect-opengl - vector - ]; - executableHaskellDepends = [ - base - GLFW-b - GLUtil - JuicyPixels - JuicyPixels-util - lens - mtl - OpenGL - random - transformers - vect - vect-opengl - vector - ]; - description = "A small 2D game framework"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "Hawk" = callPackage ( - { - mkDerivation, - base, - bytestring, - bytestring-trie, - cgi, - containers, - convertible, - data-default, - dataenc, - directory, - filepath, - hack, - HDBC, - HDBC-sqlite3, - hslogger, - hslogger-template, - HTTP, - hxt, - json-b, - MonadCatchIO-mtl, - mtl, - network, - regex-posix, - SHA, - template-haskell, - time, - utf8-string, - }: - mkDerivation { - pname = "Hawk"; - version = "0.0.2"; - sha256 = "0g7dgj3asxwcjg43nzhjp7agvnzv882xhgbrr7jnpdckywkgacgq"; - libraryHaskellDepends = [ - base - bytestring - bytestring-trie - cgi - containers - convertible - data-default - dataenc - directory - filepath - hack - HDBC - HDBC-sqlite3 - hslogger - hslogger-template - HTTP - hxt - json-b - MonadCatchIO-mtl - mtl - network - regex-posix - SHA - template-haskell - time - utf8-string - ]; - description = "Haskell Web Application Kit"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "Hayoo" = callPackage ( - { - mkDerivation, - base, - binary, - bytestring, - bzlib, - containers, - deepseq, - enummapset, - filepath, - Holumbus-Searchengine, - hxt, - hxt-cache, - hxt-charproperties, - hxt-curl, - hxt-http, - hxt-regex-xmlschema, - hxt-unicode, - hxt-xpath, - json, - MonadCatchIO-transformers, - mtl, - network, - old-time, - parsec, - process, - snap, - snap-core, - snap-server, - tar, - text, - transformers, - xhtml-combinators, - zlib, - }: - mkDerivation { - pname = "Hayoo"; - version = "1.2.3"; - sha256 = "0bpkkdwgwf7xagp4rda1g07mdglzvl4hzq2jif7c3s8j7f6zq48c"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - binary - bytestring - bzlib - containers - deepseq - enummapset - filepath - Holumbus-Searchengine - hxt - hxt-cache - hxt-charproperties - hxt-curl - hxt-http - hxt-regex-xmlschema - hxt-unicode - hxt-xpath - json - MonadCatchIO-transformers - mtl - network - old-time - parsec - process - snap - snap-core - snap-server - tar - text - transformers - xhtml-combinators - zlib - ]; - description = "The Hayoo! search engine for Haskell API search on hackage"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "Hclip" = callPackage ( { mkDerivation, @@ -22951,360 +8634,6 @@ self: { } ) { }; - "Hedi" = callPackage ( - { - mkDerivation, - base, - editline, - mtl, - parsec, - pretty, - process, - QuickCheck, - regex-posix, - }: - mkDerivation { - pname = "Hedi"; - version = "0.1.1"; - sha256 = "0z0sa658fngv68611k76ncf5j59v517xchhw2y84blj97fl6jkn9"; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base - editline - mtl - parsec - pretty - process - QuickCheck - regex-posix - ]; - executableHaskellDepends = [ - base - editline - mtl - parsec - pretty - process - QuickCheck - regex-posix - ]; - description = "Line oriented editor"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "hedi"; - } - ) { }; - - "HerbiePlugin" = callPackage ( - { - mkDerivation, - base, - deepseq, - directory, - ghc, - linear, - mtl, - process, - split, - sqlite-simple, - subhask, - template-haskell, - text, - }: - mkDerivation { - pname = "HerbiePlugin"; - version = "0.2.0.0"; - sha256 = "1vrlx1b85fvdcbcjn2mfhkznvvqag3pxhvkqsk80pyqiwf8xfgw7"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base - deepseq - directory - ghc - mtl - process - split - sqlite-simple - template-haskell - text - ]; - testHaskellDepends = [ - base - linear - subhask - ]; - description = "automatically improve your code's numeric stability"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "Hermes" = callPackage ( - { - mkDerivation, - AES, - base, - bytestring, - cereal, - containers, - hslogger, - monads-tf, - network, - old-time, - random, - random-shuffle, - RSA, - SHA2, - stm, - syb, - time, - transformers, - unamb, - yjtools, - }: - mkDerivation { - pname = "Hermes"; - version = "0.0.4"; - sha256 = "0j5vg3rvf4hbvg6jan4im7ijqffy6k9dvijfwxjcn164qjzh6xb3"; - libraryHaskellDepends = [ - AES - base - bytestring - cereal - containers - hslogger - monads-tf - network - old-time - random - random-shuffle - RSA - SHA2 - stm - syb - time - transformers - unamb - yjtools - ]; - description = "Message-based middleware layer"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "Hieroglyph" = callPackage ( - { - mkDerivation, - array, - base, - buster, - bytestring, - cairo, - colour, - containers, - glib, - GLUT, - gtk, - gtkglext, - IfElse, - mtl, - OpenGL, - parallel, - pretty, - random, - }: - mkDerivation { - pname = "Hieroglyph"; - version = "3.89"; - sha256 = "0dkvvk3qwn72vn4kc0q2iv6raxslrxf0ypr0sn7i0fjds3cjxs6s"; - libraryHaskellDepends = [ - array - base - buster - bytestring - cairo - colour - containers - glib - GLUT - gtk - gtkglext - IfElse - mtl - OpenGL - parallel - pretty - random - ]; - description = "Purely functional 2D graphics for visualization"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "HiggsSet" = callPackage ( - { - mkDerivation, - base, - bytestring, - containers, - deepseq, - mtl, - text, - th-expand-syns, - TrieMap, - vector, - }: - mkDerivation { - pname = "HiggsSet"; - version = "0.1.1"; - sha256 = "1k0qlpm4akzx820b0j3g3f562ailxa56sa41268xyq3046xdpyl1"; - libraryHaskellDepends = [ - base - bytestring - containers - deepseq - mtl - text - th-expand-syns - TrieMap - vector - ]; - description = "A multi-index set with advanced query capabilites"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "Hipmunk" = callPackage ( - { - mkDerivation, - array, - base, - containers, - StateVar, - transformers, - }: - mkDerivation { - pname = "Hipmunk"; - version = "5.2.0.17"; - sha256 = "1yxs1v9pzb35g3zlvycsx762dk8swrbry7ajr50zlq667j20n4a8"; - libraryHaskellDepends = [ - array - base - containers - StateVar - transformers - ]; - description = "A Haskell binding for Chipmunk"; - license = "unknown"; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "Hipmunk-Utils" = callPackage ( - { - mkDerivation, - base, - Hipmunk, - linear, - StateVar, - }: - mkDerivation { - pname = "Hipmunk-Utils"; - version = "0.1.1.1"; - sha256 = "1nql9101c1philljk20idllpxgq79hlihkk3kyl57bk4cb4iyr2h"; - libraryHaskellDepends = [ - base - Hipmunk - linear - StateVar - ]; - testHaskellDepends = [ base ]; - description = "Useful functions for Hipmunk"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "HipmunkPlayground" = callPackage ( - { - mkDerivation, - base, - containers, - GLFW, - Hipmunk, - OpenGL, - StateVar, - transformers, - }: - mkDerivation { - pname = "HipmunkPlayground"; - version = "5.2.1.1"; - sha256 = "075am1d0hjbhnibk2x56fbh4ybw5pavfmqk2dz4yjw7yh264vcs7"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - containers - GLFW - Hipmunk - OpenGL - StateVar - transformers - ]; - description = "A playground for testing Hipmunk"; - license = "unknown"; - hydraPlatforms = lib.platforms.none; - mainProgram = "HipmunkPlayground"; - } - ) { }; - - "Hish" = callPackage ( - { - mkDerivation, - base, - directory, - MissingH, - process, - regex-tdfa, - time, - }: - mkDerivation { - pname = "Hish"; - version = "0.1.2.4"; - sha256 = "1vdllvcx43r8r4rsk9y8i59qwk3n5rpmwhpj62277jrrzysj7xx9"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - directory - MissingH - process - regex-tdfa - time - ]; - executableHaskellDepends = [ - base - directory - MissingH - process - regex-tdfa - time - ]; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "hish"; - broken = true; - } - ) { }; - "Histogram" = callPackage ( { mkDerivation, @@ -23325,121 +8654,6 @@ self: { } ) { }; - "Hmpf" = callPackage ( - { - mkDerivation, - base, - ConfigFile, - Crypto, - HTTP, - mtl, - network, - time, - unix, - utf8-string, - }: - mkDerivation { - pname = "Hmpf"; - version = "0.1"; - sha256 = "0lw2d9yv3zxqv20v96czx0msahbyk0rc5d68gj567dxnyb377yx7"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - ConfigFile - Crypto - HTTP - mtl - network - time - unix - utf8-string - ]; - description = "An MPD client designed for a Home Theatre PC"; - license = "GPL"; - hydraPlatforms = lib.platforms.none; - mainProgram = "hmpf"; - broken = true; - } - ) { }; - - "Hoed" = callPackage ( - { - mkDerivation, - array, - base, - bytestring, - cereal, - cereal-text, - cereal-vector, - clock, - containers, - deepseq, - directory, - hashable, - libgraph, - open-browser, - primitive, - process, - QuickCheck, - regex-tdfa, - regex-tdfa-text, - semigroups, - strict, - template-haskell, - terminal-size, - text, - transformers, - uniplate, - unordered-containers, - vector, - vector-th-unbox, - }: - mkDerivation { - pname = "Hoed"; - version = "0.5.1"; - sha256 = "1rzlqd1sha6p1cw5w0gpf1w7qsmc6088sjnq1kq44mp12ybxrxm8"; - libraryHaskellDepends = [ - array - base - bytestring - cereal - cereal-text - cereal-vector - clock - containers - deepseq - directory - hashable - libgraph - open-browser - primitive - process - QuickCheck - regex-tdfa - regex-tdfa-text - semigroups - strict - template-haskell - terminal-size - text - transformers - uniplate - unordered-containers - vector - vector-th-unbox - ]; - testHaskellDepends = [ - base - process - QuickCheck - ]; - description = "Lightweight algorithmic debugging"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "HoleyMonoid" = callPackage ( { mkDerivation, base }: mkDerivation { @@ -23452,209 +8666,6 @@ self: { } ) { }; - "Holumbus-Distribution" = callPackage ( - { - mkDerivation, - array, - base, - binary, - bytestring, - containers, - deepseq, - haskell98, - hslogger, - hxt, - network, - random, - readline, - stm, - time, - unix, - }: - mkDerivation { - pname = "Holumbus-Distribution"; - version = "0.1.1"; - sha256 = "1mhljxyfv02pfy2lyh10nlv5x05qvv37ij9i6c8c17f5b5qcgc78"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - array - base - binary - bytestring - containers - deepseq - haskell98 - hslogger - hxt - network - random - readline - stm - time - unix - ]; - description = "intra- and inter-program communication"; - license = "unknown"; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "Holumbus-MapReduce" = callPackage ( - { - mkDerivation, - base, - binary, - bytestring, - containers, - deepseq, - directory, - extensible-exceptions, - haskell98, - Holumbus-Distribution, - Holumbus-Storage, - hslogger, - hxt, - network, - readline, - time, - unix, - }: - mkDerivation { - pname = "Holumbus-MapReduce"; - version = "0.1.1"; - sha256 = "0dqwj7xpw1lidv7ixfm1wzfx6psrzl2q08x3scyiskpm3a2l67q8"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - binary - bytestring - containers - deepseq - directory - extensible-exceptions - haskell98 - Holumbus-Distribution - Holumbus-Storage - hslogger - hxt - network - readline - time - unix - ]; - description = "a distributed MapReduce framework"; - license = "unknown"; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "Holumbus-Searchengine" = callPackage ( - { - mkDerivation, - base, - binary, - bytestring, - bzlib, - containers, - deepseq, - directory, - enummapset, - filepath, - hslogger, - hxt, - hxt-cache, - hxt-curl, - hxt-regex-xmlschema, - hxt-unicode, - mtl, - network, - parallel, - parsec, - process, - SHA, - unix, - }: - mkDerivation { - pname = "Holumbus-Searchengine"; - version = "1.2.3"; - sha256 = "1kx0j4f13fj6k3xlhh5cmlb7lz35vyqd0sp913yy8yc2h56ybbqq"; - libraryHaskellDepends = [ - base - binary - bytestring - bzlib - containers - deepseq - directory - enummapset - filepath - hslogger - hxt - hxt-cache - hxt-curl - hxt-regex-xmlschema - hxt-unicode - mtl - network - parallel - parsec - process - SHA - unix - ]; - description = "A search and indexing engine"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "Holumbus-Storage" = callPackage ( - { - mkDerivation, - base, - binary, - bytestring, - containers, - directory, - haskell98, - Holumbus-Distribution, - hslogger, - hxt, - network, - random, - time, - unix, - }: - mkDerivation { - pname = "Holumbus-Storage"; - version = "0.1.0"; - sha256 = "1zs6m3rsxh3886idcn0qm056bzv9yllgf3n2qsfa97cpbzhah54q"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - binary - bytestring - containers - directory - haskell98 - Holumbus-Distribution - hslogger - hxt - network - random - time - unix - ]; - description = "a distributed storage system"; - license = "unknown"; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "Homology" = callPackage ( { mkDerivation, @@ -23676,55 +8687,6 @@ self: { } ) { }; - "HongoDB" = callPackage ( - { - mkDerivation, - attoparsec, - attoparsec-binary, - base, - blaze-builder, - bytestring, - directory, - enumerator, - hashable, - monad-control, - mtl, - process, - random, - unix, - unix-bytestring, - unordered-containers, - }: - mkDerivation { - pname = "HongoDB"; - version = "0.0.1"; - sha256 = "19dwxv7fjk2k55mxgsc2gjx5jp9vr77yg01292gdj1piwmxx459v"; - libraryHaskellDepends = [ - attoparsec - attoparsec-binary - base - blaze-builder - bytestring - directory - enumerator - hashable - monad-control - mtl - unix - unix-bytestring - unordered-containers - ]; - testHaskellDepends = [ - base - process - random - ]; - description = "A Simple Key Value Store"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "HostAndPort" = callPackage ( { mkDerivation, @@ -23756,102 +8718,6 @@ self: { } ) { }; - "Hricket" = callPackage ( - { - mkDerivation, - base, - containers, - }: - mkDerivation { - pname = "Hricket"; - version = "0.1"; - sha256 = "0cmmhljlgb23kr6v8as2cma3cpgr6zpkb11qg6hmq1ilbi363282"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - containers - ]; - description = "A Cricket scoring application"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "hricket"; - broken = true; - } - ) { }; - - "Hs2lib" = callPackage ( - { - mkDerivation, - array, - base, - cereal, - containers, - cpphs, - directory, - filepath, - ghc, - ghc-paths, - haddock, - haskell-src-exts, - mtl, - old-locale, - process, - QuickCheck, - random, - syb, - time, - }: - mkDerivation { - pname = "Hs2lib"; - version = "0.6.3"; - sha256 = "0yjkghshbdbajib35hy3qr8x608i9qi2pgffpi59118krcw6k8mn"; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base - directory - filepath - ghc - haskell-src-exts - old-locale - random - syb - time - ]; - libraryToolDepends = [ cpphs ]; - executableHaskellDepends = [ - array - base - cereal - containers - directory - filepath - ghc - ghc-paths - haddock - haskell-src-exts - mtl - old-locale - process - QuickCheck - random - syb - time - ]; - testHaskellDepends = [ - base - directory - filepath - process - ]; - description = "A Library and Preprocessor that makes it easier to create shared libs from Haskell programs"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "HsASA" = callPackage ( { mkDerivation, @@ -23916,85 +8782,6 @@ self: { } ) { inherit (pkgs) zlib; }; - "HsHaruPDF" = callPackage ( - { mkDerivation, base }: - mkDerivation { - pname = "HsHaruPDF"; - version = "0.0.0"; - sha256 = "1yifhxk1m3z2i7gaxgwlmk6cv2spbpx8fny4sn59ybca8wd9z7ps"; - libraryHaskellDepends = [ base ]; - description = "Haskell binding to libharu (http://libharu.sourceforge.net/)"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "HsHyperEstraier" = - callPackage - ( - { - mkDerivation, - base, - base-unicode-symbols, - bytestring, - hyperestraier, - network, - qdbm, - text, - }: - mkDerivation { - pname = "HsHyperEstraier"; - version = "0.4"; - sha256 = "0q7nngghplw97q5cmayqkkixa5lbprilvkcv0260yaz7wg5xpqk8"; - libraryHaskellDepends = [ - base - base-unicode-symbols - bytestring - network - text - ]; - libraryPkgconfigDepends = [ - hyperestraier - qdbm - ]; - description = "HyperEstraier binding for Haskell"; - license = lib.licenses.publicDomain; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) - { - hyperestraier = null; - qdbm = null; - }; - - "HsJudy" = callPackage ( - { - mkDerivation, - base, - bytestring, - containers, - Judy, - }: - mkDerivation { - pname = "HsJudy"; - version = "0.2"; - sha256 = "1ypdsjy7gn6b3ynn17fcpirgwq3017jahm3pj5fh4qr6zr1cljkh"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base - bytestring - containers - ]; - librarySystemDepends = [ Judy ]; - description = "Judy bindings, and some nice APIs"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { Judy = null; }; - "HsOpenSSL" = callPackage ( { mkDerivation, @@ -24047,72 +8834,6 @@ self: { } ) { }; - "HsParrot" = callPackage ( - { - mkDerivation, - base, - bytestring, - HsSyck, - pretty, - pugs-DrIFT, - }: - mkDerivation { - pname = "HsParrot"; - version = "0.0.2.20150805"; - sha256 = "0d1xkfl5zbr2q60igl9092lr6zgh1jq10c0b7yd6i0jxs66d767a"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base - bytestring - HsSyck - pretty - pugs-DrIFT - ]; - description = "Haskell integration with Parrot virtual machine"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "HsPerl5" = callPackage ( - { mkDerivation, base }: - mkDerivation { - pname = "HsPerl5"; - version = "0.0.6.20150815"; - sha256 = "15j8zm12lcp4gm8kmciw3xy7qckqmlygn0d2difsdb598y5ijz2z"; - libraryHaskellDepends = [ base ]; - description = "Haskell interface to embedded Perl 5 interpreter"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "HsSVN" = callPackage ( - { - mkDerivation, - base, - bytestring, - mtl, - stm, - }: - mkDerivation { - pname = "HsSVN"; - version = "0.4.3.3"; - sha256 = "1yx4dzcjmykk4nzrh888jhikb8x635dpx7g27rgnlaiy5nid3pc7"; - libraryHaskellDepends = [ - base - bytestring - mtl - stm - ]; - description = "Partial Subversion (SVN) binding for Haskell"; - license = lib.licenses.publicDomain; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "HsSyck" = callPackage ( { mkDerivation, @@ -24139,90 +8860,6 @@ self: { } ) { }; - "HsTools" = callPackage ( - { - mkDerivation, - base, - ghc-prim, - }: - mkDerivation { - pname = "HsTools"; - version = "0.0.1.1"; - sha256 = "0banfivx4xc0j3c1qmda31gvvrqqsg12fzizcpman2fvdlk7kn5l"; - libraryHaskellDepends = [ - base - ghc-prim - ]; - description = "Haskell helper functions"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "HsWebots" = - callPackage - ( - { - mkDerivation, - base, - bytestring, - Controller, - driver, - hspec, - hspec-discover, - inline-c, - inline-c-cpp, - JuicyPixels, - process, - safe-exceptions, - template-haskell, - vector, - VRML, - }: - mkDerivation { - pname = "HsWebots"; - version = "0.1.1.3"; - sha256 = "0ddbg63wfjwmrziaq0472iz7yhlcfsh2hrjqj02r1qavba35hzwa"; - libraryHaskellDepends = [ - base - bytestring - inline-c - inline-c-cpp - JuicyPixels - safe-exceptions - template-haskell - vector - ]; - librarySystemDepends = [ - Controller - driver - ]; - testHaskellDepends = [ - base - bytestring - hspec - hspec-discover - inline-c - inline-c-cpp - JuicyPixels - process - safe-exceptions - template-haskell - vector - VRML - ]; - testToolDepends = [ hspec-discover ]; - description = "Webots bindings for Haskell"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - } - ) - { - Controller = null; - driver = null; - }; - "HsYAML" = callPackage ( { mkDerivation, @@ -24308,240 +8945,6 @@ self: { } ) { }; - "Hsed" = callPackage ( - { - mkDerivation, - array, - base, - bytestring, - cmdargs, - data-accessor, - data-accessor-template, - data-accessor-transformers, - directory, - filepath, - Glob, - GotoT-transformers, - haskell98, - mtl, - parsec, - regex-base, - regex-compat, - regex-posix, - }: - mkDerivation { - pname = "Hsed"; - version = "0.2.2"; - sha256 = "09v2gcazqlmw7j7sqzzzmsz1jr3mrnfy3p30w9hnp2g430w10r2a"; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - array - base - bytestring - cmdargs - data-accessor - data-accessor-template - data-accessor-transformers - directory - filepath - Glob - GotoT-transformers - haskell98 - mtl - parsec - regex-base - regex-compat - regex-posix - ]; - description = "Stream Editor in Haskell"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "Hsed"; - } - ) { }; - - "Hsmtlib" = callPackage ( - { - mkDerivation, - base, - containers, - parsec, - pretty, - process, - smtLib, - transformers, - }: - mkDerivation { - pname = "Hsmtlib"; - version = "2.8.8.8"; - sha256 = "1zb5s5rwcqc90c3zv332k44p7l13ngp9nqci8qalnlbxbypx3hab"; - revision = "1"; - editedCabalFile = "12ca7x8xr0cqjjkpfqqcy7kl8cf2z3hs2nq7dxjqlr78rihhbwq1"; - libraryHaskellDepends = [ - base - containers - parsec - pretty - process - smtLib - transformers - ]; - description = "Haskell library for easy interaction with SMT-LIB 2 compliant solvers"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "HueAPI" = callPackage ( - { - mkDerivation, - aeson, - base, - containers, - lens, - lens-aeson, - mtl, - transformers, - wreq, - }: - mkDerivation { - pname = "HueAPI"; - version = "0.2.7"; - sha256 = "005rfd95v1ryxjww1lpy490qmnm4z79mykghjv2fmbdd5wkhh6h4"; - libraryHaskellDepends = [ - aeson - base - containers - lens - lens-aeson - mtl - transformers - wreq - ]; - description = "API for controlling Philips Hue lights"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "HulkImport" = callPackage ( - { - mkDerivation, - attoparsec, - base, - pretty, - tasty, - tasty-golden, - text, - }: - mkDerivation { - pname = "HulkImport"; - version = "0.1.0.3"; - sha256 = "1kcnjk9vym3sjlna90qbs1fwcph05wgl5k4jhpqc5cyshsha5l3h"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - attoparsec - base - pretty - text - ]; - executableHaskellDepends = [ - base - text - ]; - testHaskellDepends = [ - base - tasty - tasty-golden - ]; - description = "Easily bulk import CSV data to SQL Server"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "HulkImport-exe"; - broken = true; - } - ) { }; - - "Hungarian-Munkres" = callPackage ( - { - mkDerivation, - array, - base, - criterion, - Munkres, - random, - tasty, - tasty-quickcheck, - }: - mkDerivation { - pname = "Hungarian-Munkres"; - version = "0.1.5"; - sha256 = "0g2hgcrsfwqp4w3mzg6vwi7lypgqd0b6axaff81wbi27h9n8q4qd"; - libraryHaskellDepends = [ base ]; - testHaskellDepends = [ - array - base - Munkres - random - tasty - tasty-quickcheck - ]; - benchmarkHaskellDepends = [ - array - base - criterion - Munkres - random - ]; - description = "A Linear Sum Assignment Problem (LSAP) solver"; - license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "Hydrogen" = callPackage ( - { - mkDerivation, - aeson, - base, - binary, - directory, - HFitUI, - MissingH, - shakespeare, - yaml, - }: - mkDerivation { - pname = "Hydrogen"; - version = "0.1.0.0"; - sha256 = "10n45j8ri1svxhplpfj88riqk4qigzl02cqxkk3mrsahhgn6bkmp"; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - aeson - base - binary - directory - HFitUI - MissingH - shakespeare - yaml - ]; - executableHaskellDepends = [ base ]; - testHaskellDepends = [ base ]; - description = "The library for generating a WebGL scene for the web"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "Hydrogen-exe"; - } - ) { }; - "HyloDP" = callPackage ( { mkDerivation, @@ -24608,156 +9011,6 @@ self: { } ) { }; - "IDynamic" = callPackage ( - { - mkDerivation, - base, - containers, - directory, - }: - mkDerivation { - pname = "IDynamic"; - version = "0.1"; - sha256 = "1p4h2hxwzp0bxkzh864vkqbwychi0j2c3rqck9vk5kfax5i1jfz8"; - libraryHaskellDepends = [ - base - containers - directory - ]; - description = "Indexable, serializable form of Data.Dynamic"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "IFS" = callPackage ( - { - mkDerivation, - array, - base, - bytestring, - containers, - random, - }: - mkDerivation { - pname = "IFS"; - version = "0.1.1"; - sha256 = "1r2dbpsmmsgxb43ycsz54zxcyfwanp72r9ry645mjlshg4q360xr"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - array - base - bytestring - containers - random - ]; - description = "Iterated Function System generation for Haskell"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "IFS"; - broken = true; - } - ) { }; - - "INblobs" = callPackage ( - { - mkDerivation, - base, - containers, - directory, - haskell98, - HaXml, - polyparse, - pretty, - process, - wx, - wxcore, - }: - mkDerivation { - pname = "INblobs"; - version = "0.1.1"; - sha256 = "04il63xafq20jn3m4hahn93xxfrp6whrjvsz974zczxqm41ygb10"; - isLibrary = false; - isExecutable = true; - enableSeparateDataOutput = true; - executableHaskellDepends = [ - base - containers - directory - haskell98 - HaXml - polyparse - pretty - process - wx - wxcore - ]; - description = "Editor and interpreter for Interaction Nets"; - license = "LGPL"; - hydraPlatforms = lib.platforms.none; - mainProgram = "INblobs"; - } - ) { }; - - "IOR" = callPackage ( - { - mkDerivation, - base, - mtl, - }: - mkDerivation { - pname = "IOR"; - version = "0.1"; - sha256 = "0iinsva0pwparpg4lkgx8mw8l49rnl1h3zzblp89nkqk5i7qhq8a"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base - mtl - ]; - description = "Region based resource management for the IO monad"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "IORefCAS" = callPackage ( - { - mkDerivation, - base, - bits-atomic, - ghc-prim, - HUnit, - QuickCheck, - time, - }: - mkDerivation { - pname = "IORefCAS"; - version = "0.2.0.1"; - sha256 = "06vfck59x30mqa9h2ljd4r2cx1ks91b9gwcr928brp7filsq9fdb"; - revision = "1"; - editedCabalFile = "0s01hpvl0dqb6lszp1s76li1i1k57j1bzhwhfwz552w85pxpv7ib"; - libraryHaskellDepends = [ - base - bits-atomic - ghc-prim - ]; - testHaskellDepends = [ - base - bits-atomic - ghc-prim - HUnit - QuickCheck - time - ]; - description = "Atomic compare and swap for IORefs and STRefs"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "IOSpec" = callPackage ( { mkDerivation, @@ -24898,29 +9151,6 @@ self: { } ) { }; - "IcoGrid" = callPackage ( - { - mkDerivation, - array, - base, - GlomeVec, - }: - mkDerivation { - pname = "IcoGrid"; - version = "0.1.2"; - sha256 = "0ryb2q5xfddcx2qg019jajac7xvaw2ci5wi094gbrqhhflj7wc8n"; - libraryHaskellDepends = [ - array - base - GlomeVec - ]; - description = "Library for generating grids of hexagons and pentagons mapped to a sphere"; - license = "GPL"; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "IfElse" = callPackage ( { mkDerivation, @@ -25008,114 +9238,22 @@ self: { } ) { }; - "ImperativeHaskell" = callPackage ( - { - mkDerivation, - base, - mtl, - template-haskell, - }: - mkDerivation { - pname = "ImperativeHaskell"; - version = "2.0.0.1"; - sha256 = "06px87hc6gz7n372lvpbq0g2v2s0aghd3k5a1ajgn5hbxirhnpwb"; - libraryHaskellDepends = [ - base - mtl - template-haskell - ]; - description = "A library for writing Imperative style haskell"; - license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "IndentParser" = callPackage ( - { - mkDerivation, - base, - parsec, - }: - mkDerivation { - pname = "IndentParser"; - version = "0.2.1"; - sha256 = "0l9k8md2n0vhjqlvxcaf43i4cv09lnbbbw8vfz7bkbzhbwirs32j"; - libraryHaskellDepends = [ - base - parsec - ]; - description = "Combinators for parsing indentation based syntatic structures"; - license = "GPL"; - } - ) { }; - - "IndexedList" = callPackage ( - { - mkDerivation, - base, - PeanoWitnesses, - }: - mkDerivation { - pname = "IndexedList"; - version = "0.1.0.1"; - sha256 = "1i7gv3iqjj4j026k0ywmksbpjyqxlgb0f6bq2v0p9pkrj5q3jxfm"; - libraryHaskellDepends = [ - base - PeanoWitnesses - ]; - description = "Length- and element-indexed lists sitting somewhere between homogeneous and fully heterogeneous"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "InfixApplicative" = callPackage ( - { - mkDerivation, - base, - haskell98, - }: - mkDerivation { - pname = "InfixApplicative"; - version = "1.1"; - sha256 = "03c0jlnlnqm6faiandfg0kzajffk03aazkrqwav3g4vc3cdqwfgp"; - libraryHaskellDepends = [ - base - haskell98 - ]; - description = "liftA2 for infix operators"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "IntFormats" = callPackage ( + "IndentParser" = callPackage ( { mkDerivation, base, - hspec, parsec, - QuickCheck, }: mkDerivation { - pname = "IntFormats"; - version = "0.1.0.0"; - sha256 = "1w8frx6w29lxwq094vx7bk1pxi48m3qva3h2wxyl4f6w2k0l3hck"; + pname = "IndentParser"; + version = "0.2.1"; + sha256 = "0l9k8md2n0vhjqlvxcaf43i4cv09lnbbbw8vfz7bkbzhbwirs32j"; libraryHaskellDepends = [ base parsec - QuickCheck ]; - testHaskellDepends = [ - base - hspec - QuickCheck - ]; - description = "Convert integers in various bases to and from strings"; - license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; - broken = true; + description = "Combinators for parsing indentation based syntatic structures"; + license = "GPL"; } ) { }; @@ -25301,38 +9439,6 @@ self: { } ) { }; - "Irc" = callPackage ( - { - mkDerivation, - base, - data-default, - doctest, - mtl, - network, - transformers, - }: - mkDerivation { - pname = "Irc"; - version = "0.1.0.2"; - sha256 = "0qh1j9zy0yfpzdjxn6mypsw555pq2gm5nzys08zj5ilqn5z2r2pi"; - libraryHaskellDepends = [ - base - data-default - mtl - network - transformers - ]; - testHaskellDepends = [ - base - doctest - ]; - description = "DSL for IRC bots"; - license = lib.licenses.gpl2Only; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "IrrHaskell" = callPackage ( { mkDerivation, @@ -25355,119 +9461,6 @@ self: { } ) { }; - "IsNull" = callPackage ( - { - mkDerivation, - base, - bytestring, - containers, - hspec, - HUnit, - QuickCheck, - quickcheck-instances, - system-filepath, - text, - unordered-containers, - vector, - }: - mkDerivation { - pname = "IsNull"; - version = "0.4.0.0"; - sha256 = "06f03b9my7hix5fvcv9cc0saf9zfwgkvn3210vymlyc1rj450ykm"; - libraryHaskellDepends = [ - base - bytestring - containers - text - ]; - testHaskellDepends = [ - base - bytestring - containers - hspec - HUnit - QuickCheck - quickcheck-instances - system-filepath - text - unordered-containers - vector - ]; - description = "A typeclass to determine if a given value is null"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "JSON-Combinator" = callPackage ( - { - mkDerivation, - aeson, - attoparsec, - base, - bytestring, - bytestring-trie, - containers, - failure, - hjson, - json, - JSONb, - parsec, - text, - vector, - }: - mkDerivation { - pname = "JSON-Combinator"; - version = "0.2.8"; - sha256 = "0rdiva15wspaz33dh1g7x6llswsx1l4j51wqyvszzcjzifx2ly6q"; - libraryHaskellDepends = [ - aeson - attoparsec - base - bytestring - bytestring-trie - containers - failure - hjson - json - JSONb - parsec - text - vector - ]; - description = "A combinator library on top of a generalised JSON type"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "JSON-Combinator-Examples" = callPackage ( - { - mkDerivation, - base, - bytestring, - json, - JSON-Combinator, - JSONb, - }: - mkDerivation { - pname = "JSON-Combinator-Examples"; - version = "0.0.1"; - sha256 = "1s5grfgnklnwh55yn5mlg2ibdm7mx2i7hwqs7649gkapda054ywg"; - libraryHaskellDepends = [ - base - bytestring - json - JSON-Combinator - JSONb - ]; - description = "Example uses of the JSON-Combinator library"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "JSONParser" = callPackage ( { mkDerivation, @@ -25487,161 +9480,6 @@ self: { } ) { }; - "JSONb" = callPackage ( - { - mkDerivation, - attoparsec, - base, - bytestring, - bytestring-nums, - bytestring-trie, - containers, - utf8-string, - }: - mkDerivation { - pname = "JSONb"; - version = "1.0.8"; - sha256 = "16gjdlajqvwvq1znyq3vqxfa9vq4xs0ywxpm93v0y1rgmzcfqzj7"; - revision = "1"; - editedCabalFile = "06l6w3kcskfcy9i52m9d8chxxrk6dk5dvsmlvggylsapkid8bcj7"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - attoparsec - base - bytestring - bytestring-nums - bytestring-trie - containers - utf8-string - ]; - description = "JSON parser that uses byte strings"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "JYU-Utils" = callPackage ( - { - mkDerivation, - array, - base, - binary, - bytestring, - containers, - deepseq, - directory, - filepath, - lazysmallcheck, - mtl, - mwc-random, - parallel, - process, - QuickCheck, - random, - stm, - template-haskell, - unix, - zlib, - }: - mkDerivation { - pname = "JYU-Utils"; - version = "0.1.1.2"; - sha256 = "1c3cxdzbdvmvy1qvy4xvg10zijm8vw48pgh9c8a6mykgncwq6pw9"; - libraryHaskellDepends = [ - array - base - binary - bytestring - containers - deepseq - directory - filepath - lazysmallcheck - mtl - mwc-random - parallel - process - QuickCheck - random - stm - template-haskell - unix - zlib - ]; - description = "Some utility functions for JYU projects"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "JackMiniMix" = callPackage ( - { - mkDerivation, - base, - hosc, - }: - mkDerivation { - pname = "JackMiniMix"; - version = "0.1"; - sha256 = "0ivqfk1rac1hv5j6nlsbpcm5yjqwpic34mdq9gf2m63lygqkbwqp"; - libraryHaskellDepends = [ - base - hosc - ]; - description = "control JackMiniMix"; - license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "Javasf" = callPackage ( - { - mkDerivation, - base, - binary, - bytestring, - language-java-classfile, - }: - mkDerivation { - pname = "Javasf"; - version = "0.0.1"; - sha256 = "14v0skqf1s54jkscgdcxjh1yv5lcrc5ni44bizx0kw35vf07faah"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - binary - bytestring - language-java-classfile - ]; - description = "A utility to print the SourceFile attribute of one or more Java class files"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "javasf"; - } - ) { }; - - "Javav" = callPackage ( - { mkDerivation, base }: - mkDerivation { - pname = "Javav"; - version = "0.0.4"; - sha256 = "06aiiq1bhl8gvhk2agk2rsmqrqf6ac5ym194bm5aq47hmdwi33h9"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ base ]; - description = "A utility to print the target version of Java class files"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "javav"; - broken = true; - } - ) { }; - "Jazzkell" = callPackage ( { mkDerivation, @@ -25664,20 +9502,6 @@ self: { } ) { }; - "Jdh" = callPackage ( - { mkDerivation, base }: - mkDerivation { - pname = "Jdh"; - version = "0.1.0.1"; - sha256 = "0zg7xh3apm7x3c9gz876k5cis5jpng1bzf6g9ywbmmndry6dn1c0"; - libraryHaskellDepends = [ base ]; - description = "A Json implementation for Haskell, with JavaScript Values and Encoding/Decoding"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "Jikka" = callPackage ( { mkDerivation, @@ -25759,140 +9583,6 @@ self: { } ) { }; - "JsContracts" = callPackage ( - { - mkDerivation, - base, - containers, - directory, - filepath, - mtl, - parsec, - pretty, - syb, - WebBits, - WebBits-Html, - }: - mkDerivation { - pname = "JsContracts"; - version = "0.5.3"; - sha256 = "17l6kdpdc7lrpd9j4d2b6vklkpclshcjy6hzpi442b7pj96sn589"; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base - containers - directory - filepath - mtl - parsec - pretty - syb - WebBits - WebBits-Html - ]; - executableHaskellDepends = [ - base - containers - mtl - parsec - pretty - syb - WebBits - WebBits-Html - ]; - description = "Design-by-contract for JavaScript"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "jscc"; - } - ) { }; - - "JsonGrammar" = callPackage ( - { - mkDerivation, - aeson, - attoparsec, - base, - bytestring, - containers, - HUnit, - language-typescript, - mtl, - stack-prism, - test-framework, - test-framework-hunit, - text, - unordered-containers, - vector, - }: - mkDerivation { - pname = "JsonGrammar"; - version = "1.0.5"; - sha256 = "12p1y9cmqhk49g84mz8l6j4c8vladwc9868sjn6pn0q70jl7d915"; - libraryHaskellDepends = [ - aeson - attoparsec - base - bytestring - containers - language-typescript - mtl - stack-prism - text - unordered-containers - vector - ]; - testHaskellDepends = [ - aeson - base - HUnit - language-typescript - stack-prism - test-framework - test-framework-hunit - text - ]; - description = "Combinators for bidirectional JSON parsing"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "JuPyTer-notebook" = callPackage ( - { - mkDerivation, - aeson, - base, - bytestring, - json-autotype, - text, - }: - mkDerivation { - pname = "JuPyTer-notebook"; - version = "0.1.0.0"; - sha256 = "1bmnwi0z68fzlzjf2599xs6rzi89p1jpv1gmnsi05cfsh1bysda7"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - json-autotype - ]; - executableHaskellDepends = [ - aeson - base - bytestring - json-autotype - text - ]; - description = "JuPyTer notebook parser"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "jupyter-extract"; - } - ) { }; - "JuicyCairo" = callPackage ( { mkDerivation, @@ -26074,29 +9764,6 @@ self: { } ) { }; - "JuicyPixels-canvas" = callPackage ( - { - mkDerivation, - base, - containers, - JuicyPixels, - }: - mkDerivation { - pname = "JuicyPixels-canvas"; - version = "0.1.0.0"; - sha256 = "0y791kwg9gc3nlz5sbpszd7wiqr5b5bwmgvafyjzk9xnlxlc7xcm"; - libraryHaskellDepends = [ - base - containers - JuicyPixels - ]; - description = "Functions for drawing lines, squares and so on pixel by pixel"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "JuicyPixels-extra" = callPackage ( { mkDerivation, @@ -26255,143 +9922,6 @@ self: { } ) { }; - "JuicyPixels-util" = callPackage ( - { - mkDerivation, - base, - JuicyPixels, - vector, - }: - mkDerivation { - pname = "JuicyPixels-util"; - version = "0.2"; - sha256 = "1b2rx5g8kd83hl50carr02mz21gvkasnsddw1f3pfvfsyfv3yyrc"; - libraryHaskellDepends = [ - base - JuicyPixels - vector - ]; - description = "Convert JuicyPixel images into RGBA format, flip, trim and so on"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "JunkDB" = callPackage ( - { - mkDerivation, - aeson, - base, - binary, - bytestring, - conduit, - data-default, - directory, - filepath, - mtl, - network, - resourcet, - }: - mkDerivation { - pname = "JunkDB"; - version = "0.1.1.0"; - sha256 = "0g68khpfiwknqwwa7hv7db0563hsnd3hczfd0p4nx777xqrkh2dx"; - libraryHaskellDepends = [ - aeson - base - binary - bytestring - conduit - data-default - directory - filepath - mtl - network - resourcet - ]; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "JunkDB-driver-gdbm" = callPackage ( - { - mkDerivation, - base, - bytestring, - conduit, - directory, - filepath, - JunkDB, - mtl, - resourcet, - }: - mkDerivation { - pname = "JunkDB-driver-gdbm"; - version = "0.1.1.0"; - sha256 = "1q8sa4w60pv7mgf17zg8yjpjvbzrg2xlpn30myp66vq2kdv293jj"; - libraryHaskellDepends = [ - base - bytestring - conduit - directory - filepath - JunkDB - mtl - resourcet - ]; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "JunkDB-driver-hashtables" = callPackage ( - { - mkDerivation, - base, - bytestring, - conduit, - hashable, - hashtables, - JunkDB, - mtl, - resourcet, - }: - mkDerivation { - pname = "JunkDB-driver-hashtables"; - version = "0.1.1.0"; - sha256 = "0385f0vpp4dy9r9cqh2rr7gpx07fazzqjk9bwrbs4nka4wfnqbv0"; - libraryHaskellDepends = [ - base - bytestring - conduit - hashable - hashtables - JunkDB - mtl - resourcet - ]; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "JustParse" = callPackage ( - { mkDerivation, base }: - mkDerivation { - pname = "JustParse"; - version = "2.1"; - sha256 = "16il25s1fb4b6ih6njsqxx7p7x0fc0kcwa5vqn7n7knqph6vvjaa"; - libraryHaskellDepends = [ base ]; - description = "A simple and comprehensive Haskell parsing library"; - license = lib.licenses.publicDomain; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "KMP" = callPackage ( { mkDerivation, @@ -26416,41 +9946,6 @@ self: { } ) { }; - "KSP" = callPackage ( - { mkDerivation, base }: - mkDerivation { - pname = "KSP"; - version = "0.1"; - sha256 = "19sjr9vavxnbv5yp2c01gy6iz1q2abllcsf378n15f3z064ffqn6"; - libraryHaskellDepends = [ base ]; - description = "A library with the kerbal space program universe and demo code"; - license = lib.licenses.publicDomain; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "Kalman" = callPackage ( - { - mkDerivation, - base, - hmatrix, - }: - mkDerivation { - pname = "Kalman"; - version = "0.1.0.1"; - sha256 = "1mzdaj6h21is3fwnckzq5zcxd4zqahsdppsx65bv5vdplsiadrw5"; - libraryHaskellDepends = [ - base - hmatrix - ]; - description = "A slightly extended Kalman filter"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "Kawaii-Parser" = callPackage ( { mkDerivation, @@ -26505,173 +10000,6 @@ self: { } ) { }; - "Ketchup" = callPackage ( - { - mkDerivation, - base, - base64-bytestring, - bytestring, - directory, - mime-types, - network, - text, - }: - mkDerivation { - pname = "Ketchup"; - version = "0.4.3"; - sha256 = "1f5dnxfch3xrhxbgn74adzj7lalx1fpz3cicnhvvxj2aay62a7d1"; - libraryHaskellDepends = [ - base - base64-bytestring - bytestring - directory - mime-types - network - text - ]; - description = "A super small web framework for those who don't like big and fancy codebases"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "KiCS" = callPackage ( - { - mkDerivation, - base, - containers, - curry-base, - curry-frontend, - directory, - filepath, - ghc-paths, - kics, - network, - old-time, - process, - random, - readline, - syb, - unix, - }: - mkDerivation { - pname = "KiCS"; - version = "0.9.3"; - sha256 = "0z5ps5apr436dbm5wkfnpqksnqi3jsqmp2zkmy37crzzinlilzvn"; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base - containers - curry-frontend - directory - filepath - network - old-time - process - random - syb - unix - ]; - libraryToolDepends = [ kics ]; - executableHaskellDepends = [ - base - containers - curry-base - curry-frontend - directory - filepath - ghc-paths - old-time - process - readline - ]; - description = "A compiler from Curry to Haskell"; - license = "unknown"; - hydraPlatforms = lib.platforms.none; - } - ) { inherit (pkgs) kics; }; - - "KiCS-debugger" = callPackage ( - { - mkDerivation, - base, - containers, - curry-base, - directory, - filepath, - haskell-src, - haskell98, - KiCS, - KiCS-prophecy, - mtl, - readline, - syb, - }: - mkDerivation { - pname = "KiCS-debugger"; - version = "0.1.1"; - sha256 = "1hvdqil8lfybcp2j04ig03270q5fy29cbmg8jmv38dpcgjsx6mk1"; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base - containers - filepath - haskell98 - KiCS - mtl - readline - syb - ]; - executableHaskellDepends = [ - base - curry-base - directory - haskell-src - KiCS - KiCS-prophecy - ]; - description = "debug features for kics"; - license = "unknown"; - hydraPlatforms = lib.platforms.none; - mainProgram = "mkstrict"; - } - ) { }; - - "KiCS-prophecy" = callPackage ( - { - mkDerivation, - base, - filepath, - KiCS, - }: - mkDerivation { - pname = "KiCS-prophecy"; - version = "0.1.1"; - sha256 = "0l278x2gavm0ndbm4k0197cwyvamz37vzy7nz35lb7n5sc5b2gsr"; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base - filepath - KiCS - ]; - executableHaskellDepends = [ - base - KiCS - ]; - description = "a transformation used by the kics debugger"; - license = "unknown"; - hydraPlatforms = lib.platforms.none; - mainProgram = "prophecy"; - } - ) { }; - "Kleislify" = callPackage ( { mkDerivation, base }: mkDerivation { @@ -26684,43 +10012,6 @@ self: { } ) { }; - "Konf" = callPackage ( - { - mkDerivation, - base, - containers, - parsec, - }: - mkDerivation { - pname = "Konf"; - version = "0.1.0.0"; - sha256 = "113jxbaw8b17j91aakxli3r3zdvnx3gvf2m57sx5d7mfk2qx28r6"; - libraryHaskellDepends = [ - base - containers - parsec - ]; - description = "A configuration language and a parser"; - license = "unknown"; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "Kriens" = callPackage ( - { mkDerivation, base }: - mkDerivation { - pname = "Kriens"; - version = "0.1.0.1"; - sha256 = "1b6r4860qnnszs4giaidd8z1xch8vvq8qdyb9linrdhxpf5ad3sw"; - libraryHaskellDepends = [ base ]; - description = "Category for Continuation Passing Style"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "Kulitta" = callPackage ( { mkDerivation, @@ -26751,95 +10042,6 @@ self: { } ) { }; - "KyotoCabinet" = callPackage ( - { - mkDerivation, - base, - bytestring, - extensible-exceptions, - kyotocabinet, - }: - mkDerivation { - pname = "KyotoCabinet"; - version = "0.1"; - sha256 = "1l7cpppjfz5nd8k67ss959g8sg5kbsfl4zy80a3yrlwbivyrg58n"; - libraryHaskellDepends = [ - base - bytestring - extensible-exceptions - ]; - librarySystemDepends = [ kyotocabinet ]; - description = "Kyoto Cabinet DB bindings"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { inherit (pkgs) kyotocabinet; }; - - "L-seed" = callPackage ( - { - mkDerivation, - base, - cairo, - containers, - gtk, - mtl, - old-time, - parsec, - random, - }: - mkDerivation { - pname = "L-seed"; - version = "0.2"; - sha256 = "1dj4320fpwmlqv5jzzi7x218mrsacdmmk3czb1szzq44pmfmpy32"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - cairo - containers - gtk - mtl - old-time - parsec - random - ]; - description = "Plant growing programming game"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "LATS" = callPackage ( - { - mkDerivation, - base, - constraint-classes, - hmatrix, - openblasCompat, - semigroups, - vector, - }: - mkDerivation { - pname = "LATS"; - version = "0.4.2"; - sha256 = "1dx3z575sjpaf34qja792c7r39gcl9fq83hxczrc3984b3i0gss3"; - libraryHaskellDepends = [ - base - constraint-classes - hmatrix - semigroups - vector - ]; - librarySystemDepends = [ openblasCompat ]; - description = "Linear Algebra on Typed Spaces"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { inherit (pkgs) openblasCompat; }; - "LC3" = callPackage ( { mkDerivation, @@ -27074,1962 +10276,505 @@ self: { ]; testHaskellDepends = [ aern2-mfun - aern2-mp - base - collect-errors - containers - directory - mixed-types-num - optparse-applicative - parallel - pqueue - PropaFP - simplex-method - ]; - description = "An automated prover targeting problems that involve nonlinear real arithmetic"; - license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; - mainProgram = "lppaver"; - } - ) { }; - - "LParse" = callPackage ( - { - mkDerivation, - base, - containers, - }: - mkDerivation { - pname = "LParse"; - version = "0.3.1.0"; - sha256 = "1fw5s0688d5x2i2qarac2r96pj13b2fhla0212fzwlsgpbmg7g8z"; - libraryHaskellDepends = [ - base - containers - ]; - testHaskellDepends = [ base ]; - description = "A continuation-based parser library"; - license = lib.licenses.mit; - } - ) { }; - - "LRU" = callPackage ( - { - mkDerivation, - base, - containers, - QuickCheck, - }: - mkDerivation { - pname = "LRU"; - version = "0.1.1"; - sha256 = "0yppxz78y5myh9f53yqz6naqj15vk2h7fl3h8h8dps72zw9c5aqn"; - libraryHaskellDepends = [ - base - containers - QuickCheck - ]; - description = "Implements an LRU data structure"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "LTS" = callPackage ( - { - mkDerivation, - base, - criterion, - fin, - QuickCheck, - smallcheck, - tasty, - tasty-hunit, - tasty-smallcheck, - time, - }: - mkDerivation { - pname = "LTS"; - version = "0.1.0.0"; - sha256 = "0wiyly7yhpdsbpnv1lkbyy3b5p3vsri5zhr6d7bcrhmrn3wbc0hb"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - fin - ]; - executableHaskellDepends = [ base ]; - testHaskellDepends = [ - base - QuickCheck - smallcheck - tasty - tasty-hunit - tasty-smallcheck - ]; - benchmarkHaskellDepends = [ - base - criterion - time - ]; - description = "LTS: Labelled Transition System"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - mainProgram = "LTS"; - broken = true; - } - ) { }; - - "LTree" = callPackage ( - { - mkDerivation, - base, - transformers, - }: - mkDerivation { - pname = "LTree"; - version = "0.1"; - sha256 = "0liqz3n2ycidwmg8iz7mbm0d087fcfgphvbip8bsn0hpwlf10dvw"; - libraryHaskellDepends = [ - base - transformers - ]; - description = "Tree with only leaves carrying the data"; - license = lib.licenses.publicDomain; - } - ) { }; - - "LambdaCalculator" = callPackage ( - { - mkDerivation, - base, - binary, - bytestring, - haskeline, - mtl, - parsec, - pretty, - }: - mkDerivation { - pname = "LambdaCalculator"; - version = "0.2"; - sha256 = "108synzx9h3k30sn9a8rhdwgskiv0xi7qf41jkdrg6c7ca95wp6i"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - binary - bytestring - haskeline - mtl - parsec - pretty - ]; - description = "A basic lambda calculator with beta reduction and a REPL"; - license = lib.licenses.bsd3; - mainProgram = "LambdaCalculator"; - } - ) { }; - - "LambdaDB" = callPackage ( - { - mkDerivation, - base, - containers, - QuickCheck, - transformers, - }: - mkDerivation { - pname = "LambdaDB"; - version = "0.0.0.6"; - sha256 = "10dzjbgb8l0yp8drhkfpww798xa9wvv3hl1z8iq04xz5h910m803"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - containers - transformers - ]; - executableHaskellDepends = [ base ]; - testHaskellDepends = [ - base - QuickCheck - ]; - description = "On-memory Database using Lambda Function environment"; - license = lib.licenses.bsd3; - mainProgram = "LambdaDB-exe"; - } - ) { }; - - "LambdaDesigner" = callPackage ( - { - mkDerivation, - aeson, - base, - bytestring, - bytestring-trie, - containers, - hosc, - lens, - lens-aeson, - matrix, - text, - transformers, - vector, - }: - mkDerivation { - pname = "LambdaDesigner"; - version = "0.1.0.0"; - sha256 = "1lgplxb546f7bdrwnmivb8zwix4rqhkrhv83ni90hzf4nx5fpjcy"; - libraryHaskellDepends = [ - aeson - base - bytestring - bytestring-trie - containers - hosc - lens - lens-aeson - matrix - text - transformers - vector - ]; - description = "A type-safe EDSL for TouchDesigner written in Haskell"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "LambdaHack" = callPackage ( - { - mkDerivation, - ansi-terminal, - assert-failure, - async, - base, - base-compat, - binary, - bytestring, - containers, - deepseq, - directory, - enummapset, - file-embed, - filepath, - ghc-compact, - hashable, - hsini, - keys, - miniutter, - open-browser, - optparse-applicative, - pretty-show, - primitive, - QuickCheck, - sdl2, - sdl2-ttf, - splitmix, - stm, - tasty, - tasty-hunit, - tasty-quickcheck, - template-haskell, - text, - th-lift-instances, - time, - transformers, - unordered-containers, - vector, - vector-binary-instances, - witch, - zlib, - }: - mkDerivation { - pname = "LambdaHack"; - version = "0.11.0.1"; - sha256 = "1qmjcz59qcvfwqpqqfy6xqmzkqx415xr5y5sdvrk0g8l8kdi30bm"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - ansi-terminal - assert-failure - async - base - base-compat - binary - bytestring - containers - deepseq - directory - enummapset - file-embed - filepath - ghc-compact - hashable - hsini - keys - miniutter - open-browser - optparse-applicative - pretty-show - primitive - QuickCheck - sdl2 - sdl2-ttf - splitmix - stm - template-haskell - text - th-lift-instances - time - transformers - unordered-containers - vector - vector-binary-instances - witch - zlib - ]; - executableHaskellDepends = [ - async - base - filepath - optparse-applicative - ]; - testHaskellDepends = [ - base - containers - enummapset - optparse-applicative - splitmix - tasty - tasty-hunit - tasty-quickcheck - text - transformers - vector - ]; - description = "A game engine library for tactical squad ASCII roguelike dungeon crawlers"; - license = lib.licenses.bsd3; - badPlatforms = lib.platforms.darwin; - mainProgram = "LambdaHack"; - } - ) { }; - - "LambdaINet" = callPackage ( - { - mkDerivation, - base, - containers, - GLFW, - GLFW-task, - monad-task, - mtl, - OpenGL, - transformers, - vector, - }: - mkDerivation { - pname = "LambdaINet"; - version = "0.2.0.0"; - sha256 = "1hdl25dzv19gjr8dzpq1r267v3jj2c2yiskbg0kzdcrh4cj7jcwk"; - isLibrary = false; - isExecutable = true; - enableSeparateDataOutput = true; - executableHaskellDepends = [ - base - containers - GLFW - GLFW-task - monad-task - mtl - OpenGL - transformers - vector - ]; - description = "Graphical Interaction Net Evaluator for Optimal Evaluation"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "LambdaINet"; - } - ) { }; - - "LambdaNet" = callPackage ( - { - mkDerivation, - base, - binary, - bytestring, - hmatrix, - random, - random-shuffle, - split, - }: - mkDerivation { - pname = "LambdaNet"; - version = "0.2.0.0"; - sha256 = "06sg360vbayz1314djlg6z885yrknd7gz15s355kna21xjqydmz4"; - libraryHaskellDepends = [ - base - binary - bytestring - hmatrix - random - random-shuffle - split - ]; - description = "A configurable and extensible neural network library"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "LambdaPrettyQuote" = callPackage ( - { - mkDerivation, - base, - checkers, - DebugTraceHelpers, - derive, - HUnit, - lambda-ast, - mtl, - parsec, - QuickCheck, - syb, - template-haskell, - test-framework, - test-framework-hunit, - test-framework-quickcheck2, - th-instances, - transformers, - tuple, - uniplate, - }: - mkDerivation { - pname = "LambdaPrettyQuote"; - version = "0.0.0.8"; - sha256 = "0rxh9gxsd0qh76nzib9pqgzh10gdc629ypnhbg8fjgdiaza7hyal"; - libraryHaskellDepends = [ - base - DebugTraceHelpers - HUnit - lambda-ast - mtl - parsec - QuickCheck - syb - template-haskell - test-framework - test-framework-hunit - test-framework-quickcheck2 - transformers - tuple - uniplate - ]; - testHaskellDepends = [ - base - checkers - DebugTraceHelpers - derive - HUnit - lambda-ast - mtl - parsec - QuickCheck - syb - template-haskell - test-framework - test-framework-hunit - test-framework-quickcheck2 - th-instances - transformers - tuple - uniplate - ]; - description = "Quasiquoter, and Arbitrary helpers for the lambda calculus"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "LambdaShell" = callPackage ( - { - mkDerivation, - base, - containers, - mtl, - parsec, - Shellac, - Shellac-compatline, - }: - mkDerivation { - pname = "LambdaShell"; - version = "0.9.3"; - sha256 = "1nqzlnw3fchgqn9bvlvbjma1m0wwssrip2mwb2kiv4rbhqdbfijv"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - containers - mtl - parsec - Shellac - Shellac-compatline - ]; - description = "Simple shell for evaluating lambda expressions"; - license = "GPL"; - hydraPlatforms = lib.platforms.none; - mainProgram = "lambdaShell"; - } - ) { }; - - "Lambdajudge" = callPackage ( - { - mkDerivation, - base, - filepath, - hspec, - mtl, - process, - text, - }: - mkDerivation { - pname = "Lambdajudge"; - version = "1.0.0.4"; - sha256 = "0va3scw7s24wsxkbybwahy7g32sdx3a2pipx0pa6bz6haz4c0b35"; - libraryHaskellDepends = [ - base - filepath - hspec - mtl - process - text - ]; - testHaskellDepends = [ - base - filepath - hspec - mtl - process - text - ]; - description = "A library to easily host Haskell based programming competitions"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "Lambdaya" = callPackage ( - { - mkDerivation, - base, - binary, - mtl, - network, - pipes, - pipes-binary, - pipes-network, - pipes-parse, - }: - mkDerivation { - pname = "Lambdaya"; - version = "0.3.0.0.0"; - sha256 = "0lpw6nrs6j87zscgzzg3n7iha6g7jvvcdhk4px2as3795wn22m4s"; - libraryHaskellDepends = [ - base - binary - mtl - network - pipes - pipes-binary - pipes-network - pipes-parse - ]; - description = "Library for RedPitaya"; - license = lib.licenses.lgpl3Only; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "LargeCardinalHierarchy" = callPackage ( - { mkDerivation, base }: - mkDerivation { - pname = "LargeCardinalHierarchy"; - version = "0.0.1"; - sha256 = "0agq2593h5yb9r3jqnycis9fdizwij3and61ljc4prnhhyxv48g2"; - libraryHaskellDepends = [ base ]; - description = "A transfinite cardinal arithmetic library including all known large cardinals"; - license = "unknown"; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "Lastik" = callPackage ( - { - mkDerivation, - base, - bytestring, - containers, - directory, - filemanip, - filepath, - process, - pureMD5, - SHA, - zip-archive, - }: - mkDerivation { - pname = "Lastik"; - version = "0.7.0"; - sha256 = "1bq8az2lrdqszn1aicvxj0spmwpxphvcvgkl6p0mnz8878hyxsdm"; - libraryHaskellDepends = [ - base - bytestring - containers - directory - filemanip - filepath - process - pureMD5 - SHA - zip-archive - ]; - description = "A library for compiling programs in a variety of languages"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "Lattices" = callPackage ( - { - mkDerivation, - array, - base, - HaskellForMaths, - HUnit, - test-framework, - test-framework-hunit, - }: - mkDerivation { - pname = "Lattices"; - version = "0.0.3"; - sha256 = "08v41np4v4v7dcv5959vvrg0l60xqk5wzi6y1gnm9q1i641r129k"; - libraryHaskellDepends = [ - array - base - HaskellForMaths - ]; - testHaskellDepends = [ - array - base - HaskellForMaths - HUnit - test-framework - test-framework-hunit - ]; - description = "A library for lattices"; - license = "GPL"; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "Lazy-Pbkdf2" = callPackage ( - { - mkDerivation, - base, - base16-bytestring, - binary, - byteable, - bytestring, - criterion, - cryptonite, - memory, - }: - mkDerivation { - pname = "Lazy-Pbkdf2"; - version = "3.1.1"; - sha256 = "0hvjgw52rm5kl8v4aafzmafqzg34x6a6jdvdx8fxl9arlxzpba87"; - libraryHaskellDepends = [ - base - binary - bytestring - ]; - testHaskellDepends = [ - base - base16-bytestring - binary - bytestring - cryptonite - memory - ]; - benchmarkHaskellDepends = [ - base - binary - byteable - bytestring - criterion - cryptonite - memory - ]; - description = "Lazy PBKDF2 generator"; - license = lib.licenses.mit; - } - ) { }; - - "Learning" = callPackage ( - { - mkDerivation, - base, - containers, - hmatrix, - vector, - }: - mkDerivation { - pname = "Learning"; - version = "0.1.0"; - sha256 = "14hlr86c605bpfcawvi4vy0hcwph4ji38ql8pic6bawyvcn7pybn"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - containers - hmatrix - vector - ]; - executableHaskellDepends = [ - base - containers - hmatrix - vector - ]; - testHaskellDepends = [ - base - containers - hmatrix - vector - ]; - description = "The most frequently used machine learning tools"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "LetsBeRational" = callPackage ( - { mkDerivation, base }: - mkDerivation { - pname = "LetsBeRational"; - version = "1.0.0.0"; - sha256 = "1rj5n931370nxrnqj1728p38mcqbpswmxc73c5g1mlh66k0gqqk4"; - libraryHaskellDepends = [ base ]; - description = "European option implied vol calculation"; - license = lib.licenses.mit; - } - ) { }; - - "Level0" = callPackage ( - { - mkDerivation, - base, - directory, - random, - SDL, - SDL-ttf, - }: - mkDerivation { - pname = "Level0"; - version = "1.0"; - sha256 = "1kpz8qpm2xj5nm0sav5439flyj3zdx6ha9lgg3c7ky4sjqvwwzxv"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - directory - random - SDL - SDL-ttf - ]; - description = "A Snake II clone written using SDL"; - license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - mainProgram = "Level0"; - broken = true; - } - ) { }; - - "LibClang" = - callPackage - ( - { - mkDerivation, - base, - bytestring, - c2hs, - filepath, - hashable, - libclang, - mtl, - ncurses, - resourcet, - text, - time, - transformers, - transformers-base, - vector, - }: - mkDerivation { - pname = "LibClang"; - version = "3.8.0"; - sha256 = "1p5r1m65gfdf7zkx2wbcbi5bfmlry1wllhqsxrdfi5xs9vq56p4l"; - libraryHaskellDepends = [ - base - bytestring - filepath - hashable - mtl - resourcet - text - time - transformers - transformers-base - vector - ]; - librarySystemDepends = [ libclang ]; - libraryPkgconfigDepends = [ ncurses ]; - libraryToolDepends = [ c2hs ]; - description = "Haskell bindings for libclang (a C++ parsing library)"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) - { - inherit (pkgs) libclang; - inherit (pkgs) ncurses; - }; - - "LibZip" = callPackage ( - { - mkDerivation, - base, - bindings-libzip, - bytestring, - directory, - filepath, - HUnit, - mtl, - time, - utf8-string, - }: - mkDerivation { - pname = "LibZip"; - version = "1.0.1"; - sha256 = "0ps2psza80jz566c9k377cqn536g6jcbs558jkc60gra5lhf0dm6"; - libraryHaskellDepends = [ - base - bindings-libzip - bytestring - filepath - mtl - time - utf8-string - ]; - testHaskellDepends = [ - base - bindings-libzip - bytestring - directory - filepath - HUnit - mtl - time - utf8-string - ]; - description = "Bindings to libzip, a library for manipulating zip archives"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "Limit" = callPackage ( - { mkDerivation, base }: - mkDerivation { - pname = "Limit"; - version = "1.0"; - sha256 = "1yd8c443ql17daicn3r9jiwxxjlpqnpnvkbxcszjha4i4ar94zq1"; - libraryHaskellDepends = [ base ]; - description = "Wrapper for data that can be unbounded"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "LinearSplit" = callPackage ( - { - mkDerivation, - array, - base, - cmdargs, - haskell98, - QuickCheck, - }: - mkDerivation { - pname = "LinearSplit"; - version = "0.2.1"; - sha256 = "05rdlxsl5zpnczahaw2fdycqyryd3y7bccizjbn5sap23spwd7di"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - array - base - cmdargs - haskell98 - QuickCheck - ]; - description = "Partition the sequence of items to the subsequences in the order given"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "LinguisticsTypes" = callPackage ( - { - mkDerivation, - aeson, - base, - bimaps, - binary, - bytestring, - cereal, - cereal-text, - containers, - criterion, - deepseq, - hashable, - intern, - log-domain, - QuickCheck, - string-conversions, - tasty, - tasty-quickcheck, - tasty-th, - text, - text-binary, - utf8-string, - vector-th-unbox, - }: - mkDerivation { - pname = "LinguisticsTypes"; - version = "0.0.0.3"; - sha256 = "19s2xjzapkg8k8mcasv9llx825z12a5arai7crjfa6wx7l6v3d1d"; - libraryHaskellDepends = [ - aeson - base - bimaps - binary - bytestring - cereal - cereal-text - deepseq - hashable - intern - log-domain - QuickCheck - string-conversions - text - text-binary - utf8-string - vector-th-unbox - ]; - testHaskellDepends = [ - aeson - base - binary - cereal - QuickCheck - string-conversions - tasty - tasty-quickcheck - tasty-th - ]; - benchmarkHaskellDepends = [ - base - bytestring - containers - criterion - deepseq - text - ]; - description = "Collection of types for natural language"; - license = lib.licenses.bsd3; - } - ) { }; - - "LinkChecker" = callPackage ( - { - mkDerivation, - base, - containers, - haskell98, - HTTP, - mtl, - network, - tagsoup, - }: - mkDerivation { - pname = "LinkChecker"; - version = "0.1"; - sha256 = "00wlyqclmzn03y86ba64pkc85kndnakgj8spv4vm7z0k8dsphnfq"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - containers - haskell98 - HTTP - mtl - network - tagsoup - ]; - description = "Check a bunch of local html files for broken links"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "linkchecker"; - } - ) { }; - - "Liquorice" = callPackage ( - { - mkDerivation, - base, - binary, - bytestring, - HTF, - mtl, - }: - mkDerivation { - pname = "Liquorice"; - version = "0.0.1"; - sha256 = "067vnmm74wrdjpy4syabn8l2gr11s4pfarn6156mfhf981svnzqd"; - libraryHaskellDepends = [ - base - binary - bytestring - HTF - mtl - ]; - testHaskellDepends = [ - base - binary - bytestring - HTF - mtl - ]; - description = "Algorithmic Doom map generation"; - license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "List" = callPackage ( - { - mkDerivation, - base, - transformers, - }: - mkDerivation { - pname = "List"; - version = "0.6.2"; - sha256 = "0y5qk6pzpcha01pa9133qgmmk9nkgjqxaxlg04993i9g43hjpff4"; - revision = "1"; - editedCabalFile = "11ws93cdzz7k4nvcld2d74155mdgcvyi6f6an7gpf9z4k523c11n"; - libraryHaskellDepends = [ - base - transformers - ]; - description = "List monad transformer and class"; - license = lib.licenses.bsd3; - } - ) { }; - - "ListLike" = callPackage ( - { - mkDerivation, - array, - base, - bytestring, - containers, - deepseq, - dlist, - fmlist, - HUnit, - QuickCheck, - text, - utf8-string, - vector, - }: - mkDerivation { - pname = "ListLike"; - version = "4.7.8.4"; - sha256 = "1i397ig6pz1aa404gfjz2s340mlc97x9yywprx3hp684q81ybirv"; - libraryHaskellDepends = [ - array - base - bytestring - containers - deepseq - dlist - fmlist - text - utf8-string - vector - ]; - testHaskellDepends = [ - array - base - bytestring - containers - dlist - fmlist - HUnit - QuickCheck - text - utf8-string - vector - ]; - description = "Generalized support for list-like structures"; - license = lib.licenses.bsd3; - } - ) { }; - - "ListT" = callPackage ( - { - mkDerivation, - base, - smallcheck, - tasty, - tasty-smallcheck, - transformers, - util, - }: - mkDerivation { - pname = "ListT"; - version = "0.1.2.0"; - sha256 = "0ygj695w1xrv0kkpnm55gfjnks7xdbw6vrlqx1a5as4s36hq11zr"; - revision = "3"; - editedCabalFile = "037gbqvqqlqh1b18z4y24rcgkmn3yh0yg3p1aqq1frm3cbkawcps"; - libraryHaskellDepends = [ - base - transformers - util - ]; - testHaskellDepends = [ - base - smallcheck - tasty - tasty-smallcheck - transformers - util - ]; - description = "List transformer"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "ListTree" = callPackage ( - { - mkDerivation, - base, - directory, - filepath, - List, - transformers, - }: - mkDerivation { - pname = "ListTree"; - version = "0.2.3"; - sha256 = "1k301z2s7z7qjghcllg6x2aibavr39lfmzja1gwzgnck879s2fhb"; - libraryHaskellDepends = [ - base - directory - filepath - List - transformers - ]; - description = "Trees and monadic trees expressed as monadic lists where the underlying monad is a list"; - license = lib.licenses.bsd3; - } - ) { }; - - "ListWriter" = callPackage ( - { - mkDerivation, - base, - hspec, - mtl, - }: - mkDerivation { - pname = "ListWriter"; - version = "0.1.0.0"; - sha256 = "1hq0ymraa8fpj81n5v0znc1r98zd46rg4mgarg7zaiwvlv88mk28"; - libraryHaskellDepends = [ - base - mtl - ]; - testHaskellDepends = [ - base - hspec - ]; - description = "define a list constant using Monadic syntax other than overhead [,]"; - license = lib.licenses.bsd3; - } - ) { }; - - "ListZipper" = callPackage ( - { - mkDerivation, - base, - QuickCheck, - }: - mkDerivation { - pname = "ListZipper"; - version = "1.2.0.2"; - sha256 = "0z3izxpl21fxz43jpx7zqs965anb3gp5vidv3pwwznr88ss2j6a9"; - libraryHaskellDepends = [ - base - QuickCheck - ]; - description = "Simple zipper for lists"; - license = lib.licenses.bsd3; - } - ) { }; - - "LiterateMarkdown" = callPackage ( - { mkDerivation, base }: - mkDerivation { - pname = "LiterateMarkdown"; - version = "0.1.0.1"; - sha256 = "0rgjf6blrg8rq75872bpwp6cn3bg89718cy6ik2m22881zfvr2m7"; - isLibrary = false; - isExecutable = true; - libraryHaskellDepends = [ base ]; - executableHaskellDepends = [ base ]; - testHaskellDepends = [ base ]; - doHaddock = false; - description = "Converter to convert from .lhs to .md and vice versa."; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - mainProgram = "lhsc"; - broken = true; - } - ) { }; - - "Logic" = callPackage ( - { mkDerivation, base }: - mkDerivation { - pname = "Logic"; - version = "0.1.0.0"; - sha256 = "0jplyy09i2rr5l8qzkyd41wwi7yj3sxlrz8f36ygdwxnwqfk2w01"; - libraryHaskellDepends = [ base ]; - description = "Logic"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "LogicGrowsOnTrees" = callPackage ( - { - mkDerivation, - AbortT-mtl, - AbortT-transformers, - base, - bytestring, - cereal, - cmdtheline, - composition, - containers, - criterion, - data-ivar, - deepseq, - derive, - directory, - hslogger, - hslogger-template, - HUnit, - lens, - MonadCatchIO-transformers, - monoid-statistics, - mtl, - multiset, - old-locale, - operational, - prefix-units, - pretty, - PSQueue, - QuickCheck, - quickcheck-instances, - random, - sequential-index, - smallcheck, - split, - stm, - test-framework, - test-framework-hunit, - test-framework-quickcheck2, - test-framework-smallcheck, - time, - transformers, - uuid, - void, - yjtools, - }: - mkDerivation { - pname = "LogicGrowsOnTrees"; - version = "1.1.0.2"; - sha256 = "1yqnrzcmx8ch9xcpg07if9cs4z1sdpyjfpgzkqkhv9i263pfgxpk"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - AbortT-mtl - AbortT-transformers - base - bytestring - cereal - cmdtheline - composition - containers - data-ivar - derive - directory - hslogger - hslogger-template - lens - MonadCatchIO-transformers - monoid-statistics - mtl - multiset - old-locale - operational - prefix-units - pretty - PSQueue - sequential-index - split - stm - time - transformers - void - yjtools - ]; - testHaskellDepends = [ - base - bytestring - cereal - composition - containers - data-ivar - directory - hslogger - hslogger-template - HUnit - lens - MonadCatchIO-transformers - operational - QuickCheck - quickcheck-instances - random - smallcheck - stm - test-framework - test-framework-hunit - test-framework-quickcheck2 - test-framework-smallcheck - time - transformers - uuid - void - ]; - benchmarkHaskellDepends = [ - base - cereal - criterion - deepseq - ]; - description = "a parallel implementation of logic programming using distributed tree exploration"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "LogicGrowsOnTrees-MPI" = callPackage ( - { - mkDerivation, - base, - bytestring, - cereal, - cmdtheline, - containers, - data-ivar, - derive, - hslogger, - hslogger-template, - LogicGrowsOnTrees, - MonadCatchIO-transformers, - openmpi, - stm, - transformers, - }: - mkDerivation { - pname = "LogicGrowsOnTrees-MPI"; - version = "1.0.0.1.1"; - sha256 = "0sqlx06i9f3wxzpk7mivbnn2k4z5n141vbkn1bj886bk5srbrx92"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ + aern2-mp base - bytestring - cereal - cmdtheline + collect-errors containers - data-ivar - derive - hslogger - hslogger-template - LogicGrowsOnTrees - MonadCatchIO-transformers - stm - transformers + directory + mixed-types-num + optparse-applicative + parallel + pqueue + PropaFP + simplex-method ]; - librarySystemDepends = [ openmpi ]; - description = "an adapter for LogicGrowsOnTrees that uses MPI"; - license = lib.licenses.bsd3; + description = "An automated prover targeting problems that involve nonlinear real arithmetic"; + license = lib.licenses.mpl20; hydraPlatforms = lib.platforms.none; + mainProgram = "lppaver"; } - ) { inherit (pkgs) openmpi; }; + ) { }; - "LogicGrowsOnTrees-network" = callPackage ( + "LParse" = callPackage ( { mkDerivation, base, - cereal, - cmdtheline, - composition, containers, - hslogger, - hslogger-template, - HUnit, - lens, - LogicGrowsOnTrees, - MonadCatchIO-transformers, - mtl, - network, - pretty, - random, - stm, - test-framework, - test-framework-hunit, - transformers, }: mkDerivation { - pname = "LogicGrowsOnTrees-network"; - version = "1.0.0.4"; - sha256 = "0wxrv610msqfmb52a5101xivpxq49agd88zvrjzi0n3vz10fn0bs"; - isLibrary = true; - isExecutable = true; + pname = "LParse"; + version = "0.3.1.0"; + sha256 = "1fw5s0688d5x2i2qarac2r96pj13b2fhla0212fzwlsgpbmg7g8z"; libraryHaskellDepends = [ base - cereal - cmdtheline - composition containers - hslogger - hslogger-template - lens - LogicGrowsOnTrees - MonadCatchIO-transformers - mtl - network - pretty - transformers ]; - testHaskellDepends = [ - base - hslogger - hslogger-template - HUnit - LogicGrowsOnTrees - network - random - stm - test-framework - test-framework-hunit - transformers - ]; - description = "an adapter for LogicGrowsOnTrees that uses multiple processes running in a network"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; + testHaskellDepends = [ base ]; + description = "A continuation-based parser library"; + license = lib.licenses.mit; } ) { }; - "LogicGrowsOnTrees-processes" = callPackage ( + "LTree" = callPackage ( { mkDerivation, base, - bytestring, - cereal, - cmdtheline, - containers, - criterion, - filepath, - FindBin, - hslogger, - hslogger-template, - HUnit, - LogicGrowsOnTrees, - MonadCatchIO-transformers, - process, - random, - test-framework, - test-framework-hunit, transformers, }: mkDerivation { - pname = "LogicGrowsOnTrees-processes"; - version = "1.0.0.2"; - sha256 = "0d1kz5d83frn1591vgk33d0rw2s4z98lp993rnvhl3k5zqpr2svn"; - isLibrary = true; - isExecutable = true; + pname = "LTree"; + version = "0.1"; + sha256 = "0liqz3n2ycidwmg8iz7mbm0d087fcfgphvbip8bsn0hpwlf10dvw"; libraryHaskellDepends = [ base - bytestring - cereal - cmdtheline - containers - filepath - FindBin - hslogger - hslogger-template - LogicGrowsOnTrees - MonadCatchIO-transformers - process - transformers - ]; - testHaskellDepends = [ - base - cereal - hslogger - hslogger-template - HUnit - LogicGrowsOnTrees - random - test-framework - test-framework-hunit transformers ]; - benchmarkHaskellDepends = [ - base - criterion - LogicGrowsOnTrees - ]; - description = "an adapter for LogicGrowsOnTrees that uses multiple processes for parallelism"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; + description = "Tree with only leaves carrying the data"; + license = lib.licenses.publicDomain; } ) { }; - "LslPlus" = callPackage ( + "LambdaCalculator" = callPackage ( { mkDerivation, - array, base, + binary, bytestring, - containers, - directory, - filepath, - haskell98, - HaXml, + haskeline, mtl, - network, - old-time, parsec, - pureMD5, - random, - syb, - template-haskell, - utf8-string, + pretty, }: mkDerivation { - pname = "LslPlus"; - version = "0.4.3"; - sha256 = "0dwsx23fibgj36181rfwfj1kl6sgdkf8bk4dd9cwia0rbjrl4qyk"; + pname = "LambdaCalculator"; + version = "0.2"; + sha256 = "108synzx9h3k30sn9a8rhdwgskiv0xi7qf41jkdrg6c7ca95wp6i"; isLibrary = false; isExecutable = true; executableHaskellDepends = [ - array base + binary bytestring - containers - directory - filepath - haskell98 - HaXml + haskeline mtl - network - old-time parsec - pureMD5 - random - syb - template-haskell - utf8-string + pretty ]; - description = "An execution and testing framework for the Linden Scripting Language (LSL)"; + description = "A basic lambda calculator with beta reduction and a REPL"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "LslPlus"; + mainProgram = "LambdaCalculator"; } ) { }; - "Lucu" = callPackage ( + "LambdaDB" = callPackage ( { mkDerivation, base, - base-unicode-symbols, - base64-bytestring, - bytestring, containers, - directory, - filepath, - haskell-src, - HsOpenSSL, - hxt, - mtl, - network, - stm, - time, - time-http, - unix, - zlib, + QuickCheck, + transformers, }: mkDerivation { - pname = "Lucu"; - version = "0.7.0.3"; - sha256 = "09vhz5gc9nmlwlxn6vk5whq6lpqbidqifx4i4lvp4n21gib64v9b"; + pname = "LambdaDB"; + version = "0.0.0.6"; + sha256 = "10dzjbgb8l0yp8drhkfpww798xa9wvv3hl1z8iq04xz5h910m803"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ base - base-unicode-symbols - base64-bytestring - bytestring containers - directory - filepath - haskell-src - HsOpenSSL - hxt - mtl - network - stm - time - time-http - unix - zlib + transformers ]; - description = "HTTP Daemonic Library"; - license = lib.licenses.publicDomain; - hydraPlatforms = lib.platforms.none; - mainProgram = "lucu-implant-file"; + executableHaskellDepends = [ base ]; + testHaskellDepends = [ + base + QuickCheck + ]; + description = "On-memory Database using Lambda Function environment"; + license = lib.licenses.bsd3; + mainProgram = "LambdaDB-exe"; } ) { }; - "Lykah" = callPackage ( + "LambdaHack" = callPackage ( { mkDerivation, - array, + ansi-terminal, + assert-failure, + async, base, - blaze-markup, - blazeT, - clay, + base-compat, + binary, + bytestring, containers, + deepseq, directory, + enummapset, + file-embed, filepath, - filesystem-trees, - formatting, - ListLike, - mtl, - old-locale, - pandoc, - regex-compat, - regex-posix, - safe, - split, + ghc-compact, + hashable, + hsini, + keys, + miniutter, + open-browser, + optparse-applicative, + pretty-show, + primitive, + QuickCheck, + sdl2, + sdl2-ttf, + splitmix, + stm, + tasty, + tasty-hunit, + tasty-quickcheck, template-haskell, text, + th-lift-instances, time, transformers, + unordered-containers, + vector, + vector-binary-instances, + witch, + zlib, }: mkDerivation { - pname = "Lykah"; - version = "0.0.2"; - sha256 = "1mcw34kamqllkc8296jyg0g131rd9cy9hq1dybvqr8vqh8svly0r"; + pname = "LambdaHack"; + version = "0.11.0.1"; + sha256 = "1qmjcz59qcvfwqpqqfy6xqmzkqx415xr5y5sdvrk0g8l8kdi30bm"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ - array + ansi-terminal + assert-failure + async base - blaze-markup - blazeT - clay + base-compat + binary + bytestring containers + deepseq directory + enummapset + file-embed filepath - filesystem-trees - formatting - ListLike - mtl - old-locale - pandoc - regex-compat - regex-posix - safe - split + ghc-compact + hashable + hsini + keys + miniutter + open-browser + optparse-applicative + pretty-show + primitive + QuickCheck + sdl2 + sdl2-ttf + splitmix + stm template-haskell text + th-lift-instances time transformers + unordered-containers + vector + vector-binary-instances + witch + zlib ]; executableHaskellDepends = [ - array + async base - blaze-markup - blazeT - clay - containers - directory filepath - filesystem-trees - formatting - ListLike - mtl - old-locale - pandoc - regex-compat - regex-posix - safe - split - template-haskell + optparse-applicative + ]; + testHaskellDepends = [ + base + containers + enummapset + optparse-applicative + splitmix + tasty + tasty-hunit + tasty-quickcheck text - time transformers + vector ]; - description = "A static website and blog generator"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - mainProgram = "lykah"; + description = "A game engine library for tactical squad ASCII roguelike dungeon crawlers"; + license = lib.licenses.bsd3; + badPlatforms = lib.platforms.darwin; + mainProgram = "LambdaHack"; } ) { }; - "MASMGen" = callPackage ( + "Lazy-Pbkdf2" = callPackage ( { mkDerivation, base, - containers, - mtl, + base16-bytestring, + binary, + byteable, + bytestring, + criterion, + cryptonite, + memory, }: mkDerivation { - pname = "MASMGen"; - version = "0.7.0.0"; - sha256 = "0b5vscpdf252gqi7qpsz9ia4101iik3bgrcdawz1mlinlv1zaccv"; + pname = "Lazy-Pbkdf2"; + version = "3.1.1"; + sha256 = "0hvjgw52rm5kl8v4aafzmafqzg34x6a6jdvdx8fxl9arlxzpba87"; libraryHaskellDepends = [ base - containers - mtl + binary + bytestring ]; testHaskellDepends = [ base - containers - mtl + base16-bytestring + binary + bytestring + cryptonite + memory ]; - description = "Generate MASM code from haskell"; - license = lib.licenses.lgpl3Only; - hydraPlatforms = lib.platforms.none; - broken = true; + benchmarkHaskellDepends = [ + base + binary + byteable + bytestring + criterion + cryptonite + memory + ]; + description = "Lazy PBKDF2 generator"; + license = lib.licenses.mit; + } + ) { }; + + "LetsBeRational" = callPackage ( + { mkDerivation, base }: + mkDerivation { + pname = "LetsBeRational"; + version = "1.0.0.0"; + sha256 = "1rj5n931370nxrnqj1728p38mcqbpswmxc73c5g1mlh66k0gqqk4"; + libraryHaskellDepends = [ base ]; + description = "European option implied vol calculation"; + license = lib.licenses.mit; } ) { }; - "MBot" = callPackage ( + "LinguisticsTypes" = callPackage ( { mkDerivation, + aeson, base, + bimaps, + binary, bytestring, - hidapi, - mtl, + cereal, + cereal-text, + containers, + criterion, + deepseq, + hashable, + intern, + log-domain, + QuickCheck, + string-conversions, + tasty, + tasty-quickcheck, + tasty-th, + text, + text-binary, + utf8-string, + vector-th-unbox, }: mkDerivation { - pname = "MBot"; - version = "0.2.4.1"; - sha256 = "0yh84vybrxs6bv3z4qx4n9m4xwsb4kw21l35s5v4gg8yllgbb79r"; + pname = "LinguisticsTypes"; + version = "0.0.0.3"; + sha256 = "19s2xjzapkg8k8mcasv9llx825z12a5arai7crjfa6wx7l6v3d1d"; libraryHaskellDepends = [ + aeson base + bimaps + binary bytestring - hidapi - mtl + cereal + cereal-text + deepseq + hashable + intern + log-domain + QuickCheck + string-conversions + text + text-binary + utf8-string + vector-th-unbox ]; - description = "Haskell interface for controlling the mBot educational robot"; - license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - broken = true; + testHaskellDepends = [ + aeson + base + binary + cereal + QuickCheck + string-conversions + tasty + tasty-quickcheck + tasty-th + ]; + benchmarkHaskellDepends = [ + base + bytestring + containers + criterion + deepseq + text + ]; + description = "Collection of types for natural language"; + license = lib.licenses.bsd3; } ) { }; - "MC-Fold-DP" = callPackage ( + "List" = callPackage ( { mkDerivation, base, - Biobase, - cmdargs, - PrimitiveArray, - split, - tuple, - vector, + transformers, }: mkDerivation { - pname = "MC-Fold-DP"; - version = "0.1.1.0"; - sha256 = "0h76xsh4p4zbxnbk7hszwm1gj44p6349d4bkbixn7fyiyp4f0pvh"; - isLibrary = true; - isExecutable = true; + pname = "List"; + version = "0.6.2"; + sha256 = "0y5qk6pzpcha01pa9133qgmmk9nkgjqxaxlg04993i9g43hjpff4"; + revision = "1"; + editedCabalFile = "11ws93cdzz7k4nvcld2d74155mdgcvyi6f6an7gpf9z4k523c11n"; libraryHaskellDepends = [ base - Biobase - PrimitiveArray - tuple - vector - ]; - executableHaskellDepends = [ - cmdargs - split + transformers ]; - description = "Folding algorithm based on nucleotide cyclic motifs"; - license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - mainProgram = "MCFoldDP"; + description = "List monad transformer and class"; + license = lib.licenses.bsd3; } ) { }; - "MFlow" = callPackage ( + "ListLike" = callPackage ( { mkDerivation, + array, base, - blaze-html, - blaze-markup, bytestring, - case-insensitive, - clientsession, - conduit, - conduit-extra, containers, - cpphs, - directory, - extensible-exceptions, - http-types, - monadloc, - mtl, - old-time, - parsec, - pwstore-fast, - random, - RefSerialize, - resourcet, - stm, - TCache, + deepseq, + dlist, + fmlist, + HUnit, + QuickCheck, text, - time, - transformers, utf8-string, vector, - wai, - wai-extra, - warp, - warp-tls, - Workflow, }: mkDerivation { - pname = "MFlow"; - version = "0.4.6.0"; - sha256 = "0hm3y606z4qdnp8kqbr69ll8hrx95qn782hhzmcq7n2jh54gg4sf"; + pname = "ListLike"; + version = "4.7.8.4"; + sha256 = "1i397ig6pz1aa404gfjz2s340mlc97x9yywprx3hp684q81ybirv"; libraryHaskellDepends = [ + array base - blaze-html - blaze-markup bytestring - case-insensitive - clientsession - conduit - conduit-extra containers - directory - extensible-exceptions - http-types - monadloc - mtl - old-time - parsec - pwstore-fast - random - RefSerialize - resourcet - stm - TCache + deepseq + dlist + fmlist text - time - transformers utf8-string vector - wai - wai-extra - warp - warp-tls - Workflow ]; - libraryToolDepends = [ cpphs ]; - description = "stateful, RESTful web framework"; + testHaskellDepends = [ + array + base + bytestring + containers + dlist + fmlist + HUnit + QuickCheck + text + utf8-string + vector + ]; + description = "Generalized support for list-like structures"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; } ) { }; - "MHask" = callPackage ( + "ListTree" = callPackage ( { mkDerivation, base, + directory, + filepath, + List, transformers, }: mkDerivation { - pname = "MHask"; - version = "0.3.0.0"; - sha256 = "0nlj914ahipyfqv1l7qr66pa0a8g4g6ks6mipc38z5f1jy0kjrva"; + pname = "ListTree"; + version = "0.2.3"; + sha256 = "1k301z2s7z7qjghcllg6x2aibavr39lfmzja1gwzgnck879s2fhb"; libraryHaskellDepends = [ base + directory + filepath + List transformers ]; - description = "The category of monads"; + description = "Trees and monadic trees expressed as monadic lists where the underlying monad is a list"; + license = lib.licenses.bsd3; + } + ) { }; + + "ListWriter" = callPackage ( + { + mkDerivation, + base, + hspec, + mtl, + }: + mkDerivation { + pname = "ListWriter"; + version = "0.1.0.0"; + sha256 = "1hq0ymraa8fpj81n5v0znc1r98zd46rg4mgarg7zaiwvlv88mk28"; + libraryHaskellDepends = [ + base + mtl + ]; + testHaskellDepends = [ + base + hspec + ]; + description = "define a list constant using Monadic syntax other than overhead [,]"; + license = lib.licenses.bsd3; + } + ) { }; + + "ListZipper" = callPackage ( + { + mkDerivation, + base, + QuickCheck, + }: + mkDerivation { + pname = "ListZipper"; + version = "1.2.0.2"; + sha256 = "0z3izxpl21fxz43jpx7zqs965anb3gp5vidv3pwwznr88ss2j6a9"; + libraryHaskellDepends = [ + base + QuickCheck + ]; + description = "Simple zipper for lists"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; } ) { }; @@ -29174,60 +10919,6 @@ self: { } ) { inherit (pkgs) glpk; }; - "MSQueue" = callPackage ( - { - mkDerivation, - base, - ghc-prim, - monad-loops, - ref-mtl, - stm, - }: - mkDerivation { - pname = "MSQueue"; - version = "0.0.1"; - sha256 = "04yvf4a07cy47qzl9p8x45qbk2i6yapfps7hx85p589338s8b72y"; - libraryHaskellDepends = [ - base - ghc-prim - monad-loops - ref-mtl - stm - ]; - description = "Michael-Scott queue"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "MTGBuilder" = callPackage ( - { - mkDerivation, - base, - containers, - mtl, - parsec, - }: - mkDerivation { - pname = "MTGBuilder"; - version = "0.2.0.1"; - sha256 = "0hr8cw77ymb2djj71kk889mz3yh94axxgbax794zdklrvqr6xakp"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - containers - mtl - parsec - ]; - description = "Builds decks out of a meta"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - mainProgram = "mtg-builder"; - broken = true; - } - ) { }; - "MagicHaskeller" = callPackage ( { mkDerivation, @@ -29324,54 +11015,6 @@ self: { } ) { }; - "MailchimpSimple" = callPackage ( - { - mkDerivation, - aeson, - aeson-lens, - base, - base16-bytestring, - bytestring, - cryptohash, - directory, - filepath, - http-conduit, - http-types, - lens, - safe, - text, - time, - transformers, - vector, - }: - mkDerivation { - pname = "MailchimpSimple"; - version = "0.2.0.0"; - sha256 = "13f9znxm28y0h9wr7zvjsym1nhykia63879xbay6h0a0fkm2bxb0"; - libraryHaskellDepends = [ - aeson - aeson-lens - base - base16-bytestring - bytestring - cryptohash - directory - filepath - http-conduit - http-types - lens - safe - text - time - transformers - vector - ]; - description = "Haskell library to interact with Mailchimp JSON API Version 3.0"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "Mantissa" = callPackage ( { mkDerivation, @@ -29392,262 +11035,6 @@ self: { } ) { }; - "Map" = callPackage ( - { - mkDerivation, - base, - containers, - either-both, - filtrable, - smallcheck, - tasty, - tasty-smallcheck, - util, - }: - mkDerivation { - pname = "Map"; - version = "0.1.3.3"; - sha256 = "060b50hjl79ikzff1i65xakq8vkqr6pssc5kvw5j6vrd46y4ami4"; - libraryHaskellDepends = [ - base - containers - either-both - filtrable - util - ]; - testHaskellDepends = [ - base - smallcheck - tasty - tasty-smallcheck - ]; - description = "Class of key-value maps"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "MapWith" = callPackage ( - { mkDerivation, base }: - mkDerivation { - pname = "MapWith"; - version = "0.2.0.0"; - sha256 = "1xkyaj83yblf42qawv4nyi8miaynydd8b3ysx62f9y10bqxk7dja"; - libraryHaskellDepends = [ base ]; - testHaskellDepends = [ base ]; - benchmarkHaskellDepends = [ base ]; - description = "mapWith: like fmap, but with additional parameters (isFirst, isLast, etc)"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "Mapping" = callPackage ( - { mkDerivation, base }: - mkDerivation { - pname = "Mapping"; - version = "2.0.0.0"; - sha256 = "1yz7dgmhlkqmf3fc2y32j9lr01zfjjqy9pnnj3bh03b9khblw0pn"; - libraryHaskellDepends = [ base ]; - description = "Mapping"; - license = lib.licenses.agpl3Only; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "MaybeT" = callPackage ( - { - mkDerivation, - base, - mtl, - }: - mkDerivation { - pname = "MaybeT"; - version = "0.1.2"; - sha256 = "0cmnfs22ldai0z172rdsvryzsh33a70yax21v03nhr92a4b62plr"; - revision = "1"; - editedCabalFile = "1045p10l7smabidysk52m16sgqgfpa70ny8nwyn56238i02cd7ir"; - libraryHaskellDepends = [ - base - mtl - ]; - description = "MaybeT monad transformer"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "MaybeT-monads-tf" = callPackage ( - { - mkDerivation, - base, - monads-tf, - transformers, - }: - mkDerivation { - pname = "MaybeT-monads-tf"; - version = "0.2.0.1"; - sha256 = "034v9n6ldjn1hsv4rphvysbykm8x0jqa2prbw7k28fkp6m30j74x"; - libraryHaskellDepends = [ - base - monads-tf - transformers - ]; - description = "MaybeT monad transformer compatible with monads-tf (deprecated)"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "MaybeT-transformers" = callPackage ( - { - mkDerivation, - base, - monads-fd, - transformers, - }: - mkDerivation { - pname = "MaybeT-transformers"; - version = "0.2"; - sha256 = "189w8dpxyq7gksca6k08hb4vpanpz06c99akgzpcpjy0i7k22ily"; - libraryHaskellDepends = [ - base - monads-fd - transformers - ]; - description = "MaybeT monad transformer using transformers instead of mtl"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "MazesOfMonad" = callPackage ( - { - mkDerivation, - array, - base, - containers, - directory, - filepath, - HUnit, - mtl, - old-locale, - pretty, - random, - regex-posix, - time, - }: - mkDerivation { - pname = "MazesOfMonad"; - version = "1.0.9"; - sha256 = "041kqz5j8xaa2ciyrfnwz6p9gcx4il5s6f34kzv9kp0s07hmn1q2"; - isLibrary = false; - isExecutable = true; - enableSeparateDataOutput = true; - executableHaskellDepends = [ - array - base - containers - directory - filepath - HUnit - mtl - old-locale - pretty - random - regex-posix - time - ]; - description = "Console-based Role Playing Game"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "mazesofmonad"; - broken = true; - } - ) { }; - - "MeanShift" = callPackage ( - { - mkDerivation, - base, - vector, - }: - mkDerivation { - pname = "MeanShift"; - version = "0.1"; - sha256 = "0rnbg7w3qc3xsbzpw5is7w7qdjl2kqbr1acc744aggwlibazl59w"; - libraryHaskellDepends = [ - base - vector - ]; - description = "Mean shift algorithm"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "Measure" = callPackage ( - { mkDerivation, base }: - mkDerivation { - pname = "Measure"; - version = "0.0.2"; - sha256 = "1vy8ykjy9cpv661byqv21775zbyciqx2hf77c1nl58nn34x0s2ds"; - libraryHaskellDepends = [ base ]; - description = "A library for units of measurement"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "Mecha" = callPackage ( - { - mkDerivation, - base, - machines, - }: - mkDerivation { - pname = "Mecha"; - version = "0.0.0.0"; - sha256 = "1qqdvrhqm187gi9dj78z9ijcrrk6wv0a9cx060aa0278nayr4b2w"; - libraryHaskellDepends = [ - base - machines - ]; - description = "mecha are the most complex composite machines known to humanity, lets build them well!"; - license = lib.licenses.bsd2; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "Mechs" = callPackage ( - { - mkDerivation, - base, - machines, - }: - mkDerivation { - pname = "Mechs"; - version = "0.0.0.0"; - sha256 = "00vmxrydynn8kjqn48q6kmd802m4q4y1n7cqq33vsi482ijrjak1"; - libraryHaskellDepends = [ - base - machines - ]; - description = "mecha are the most complex composite machines known to humanity, lets build them well!"; - license = lib.licenses.bsd2; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "MemoTrie" = callPackage ( { mkDerivation, @@ -29669,152 +11056,6 @@ self: { } ) { }; - "MetaHDBC" = callPackage ( - { - mkDerivation, - base, - convertible, - hashtables, - HDBC, - HDBC-odbc, - mtl, - template-haskell, - }: - mkDerivation { - pname = "MetaHDBC"; - version = "0.1.4"; - sha256 = "0l47v2cpbngxrq1r6p95rfcs16jqwr8l1sy4bcg9liazz50i8lyr"; - libraryHaskellDepends = [ - base - convertible - hashtables - HDBC - HDBC-odbc - mtl - template-haskell - ]; - description = "Statically checked database access"; - license = "LGPL"; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "MetaObject" = callPackage ( - { - mkDerivation, - base, - containers, - stringtable-atom, - }: - mkDerivation { - pname = "MetaObject"; - version = "0.0.6.20150815"; - sha256 = "0gbxayv4wv7zk53iqvsvsbby1js5zlwf6802rix6h3fx4xpzllab"; - libraryHaskellDepends = [ - base - containers - stringtable-atom - ]; - description = "A meta-object system for Haskell based on Perl 6"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "Metrics" = callPackage ( - { - mkDerivation, - base, - hstats, - }: - mkDerivation { - pname = "Metrics"; - version = "0.1.2"; - sha256 = "1ks5h3vlla2d86wvf2a4z1qifsinya2skq8ygdk45ynnwk735y4x"; - libraryHaskellDepends = [ - base - hstats - ]; - description = "Evaluation metrics commonly used in supervised machine learning"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "Mhailist" = callPackage ( - { - mkDerivation, - base, - binary, - bytestring, - directory, - filepath, - haskell98, - mtl, - old-locale, - process, - time, - }: - mkDerivation { - pname = "Mhailist"; - version = "0.0"; - sha256 = "1vxsaw2kfrx6g5y57lchcs1xwj0jnanw9svg59mjnasw53z674ck"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - binary - bytestring - directory - filepath - haskell98 - mtl - old-locale - process - time - ]; - description = "Haskell mailing list manager"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "mhailist"; - } - ) { }; - - "Michelangelo" = callPackage ( - { - mkDerivation, - base, - bytestring, - containers, - GLUtil, - lens, - linear, - OpenGL, - OpenGLRaw, - WaveFront, - }: - mkDerivation { - pname = "Michelangelo"; - version = "0.2.4.0"; - sha256 = "0fy9r9hglfd306xfgb009gvyhigrn8749maf8wy999gdbj14b1py"; - libraryHaskellDepends = [ - base - bytestring - containers - GLUtil - lens - linear - OpenGL - OpenGLRaw - WaveFront - ]; - description = "OpenGL for dummies"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "MicroCabal" = callPackage ( { mkDerivation, @@ -29882,46 +11123,6 @@ self: { } ) { }; - "MicrosoftTranslator" = callPackage ( - { - mkDerivation, - aeson, - base, - bytestring, - datetime, - exceptions, - http-client, - lens, - text, - transformers, - url, - wreq, - xml, - }: - mkDerivation { - pname = "MicrosoftTranslator"; - version = "0.1.0.1"; - sha256 = "081i7p9570p8983qsrzyd73cn9f3w8blxj68134mq357slqcym88"; - libraryHaskellDepends = [ - aeson - base - bytestring - datetime - exceptions - http-client - lens - text - transformers - url - wreq - xml - ]; - description = "Interface for Microsoft Translator"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "MiniAgda" = callPackage ( { mkDerivation, @@ -30085,28 +11286,6 @@ self: { } ) { }; - "MissingPy" = callPackage ( - { - mkDerivation, - anydbm, - base, - MissingH, - }: - mkDerivation { - pname = "MissingPy"; - version = "0.10.6"; - sha256 = "0390ap25qj6a37jllsih39q5apgvwdjdw5m7jgfrllkp5bng6yj6"; - libraryHaskellDepends = [ - anydbm - base - MissingH - ]; - description = "Haskell interface to Python"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "Mobile-Legends-Hack-Cheats" = callPackage ( { mkDerivation, @@ -30177,223 +11356,6 @@ self: { } ) { }; - "Moe" = callPackage ( - { - mkDerivation, - base, - GLUT, - random, - }: - mkDerivation { - pname = "Moe"; - version = "0.1"; - sha256 = "1nk767nywssg5p50wd6czcbhi61v5gcncyy3d59a90slzic8n5b3"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - GLUT - random - ]; - executableHaskellDepends = [ - base - GLUT - random - ]; - description = "A FRP library based on signal functions"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "MoeExample"; - broken = true; - } - ) { }; - - "MoeDict" = callPackage ( - { - mkDerivation, - aeson, - base, - bytestring, - containers, - text, - unordered-containers, - }: - mkDerivation { - pname = "MoeDict"; - version = "0.0.4"; - sha256 = "0vpnxrzjykwc3a801ipjkw01hck1lc72dz31nigvb0g03hpd55k8"; - libraryHaskellDepends = [ - aeson - base - bytestring - containers - text - unordered-containers - ]; - description = "Utilities working with MoeDict.tw JSON dataset"; - license = lib.licenses.publicDomain; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "MonadCatchIO-mtl" = callPackage ( - { - mkDerivation, - base, - extensible-exceptions, - MonadCatchIO-transformers, - }: - mkDerivation { - pname = "MonadCatchIO-mtl"; - version = "0.3.1.0"; - sha256 = "0qarf73c8zq8dgvxdiwqybpjfy8gba9vf4k0skiwyk5iphilxhhq"; - libraryHaskellDepends = [ - base - extensible-exceptions - MonadCatchIO-transformers - ]; - description = "Monad-transformer version of the Control.Exception module"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "MonadCatchIO-mtl-foreign" = callPackage ( - { - mkDerivation, - base, - MonadCatchIO-mtl, - mtl, - primitive, - }: - mkDerivation { - pname = "MonadCatchIO-mtl-foreign"; - version = "0.1"; - sha256 = "0jfq5v1jigxl9mnnvpqph9ayq840s9nyb5srym04mbicri4gbjan"; - libraryHaskellDepends = [ - base - MonadCatchIO-mtl - mtl - primitive - ]; - description = "Polymorphic combinators for working with foreign functions"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "MonadCatchIO-transformers" = callPackage ( - { - mkDerivation, - base, - extensible-exceptions, - monads-tf, - transformers, - }: - mkDerivation { - pname = "MonadCatchIO-transformers"; - version = "0.3.1.3"; - sha256 = "1g840h7whsvgyrh4v58mdmsb7hinq785irbz6x9y08r1q8r9r90h"; - libraryHaskellDepends = [ - base - extensible-exceptions - monads-tf - transformers - ]; - description = "Monad-transformer compatible version of the Control.Exception module"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "MonadCatchIO-transformers-foreign" = callPackage ( - { - mkDerivation, - base, - MonadCatchIO-transformers, - primitive, - transformers, - }: - mkDerivation { - pname = "MonadCatchIO-transformers-foreign"; - version = "0.1"; - sha256 = "070ifw78z2si3l1hqqvx236spdf61p3bf1qspd54fzq2dm89i1yw"; - libraryHaskellDepends = [ - base - MonadCatchIO-transformers - primitive - transformers - ]; - description = "Polymorphic combinators for working with foreign functions"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "MonadCompose" = callPackage ( - { - mkDerivation, - base, - free, - mmorph, - mtl, - transformers, - }: - mkDerivation { - pname = "MonadCompose"; - version = "0.9.0.0"; - sha256 = "1jq8ms16karqqa6qxp4n24f2v4bcc8n8mzfjm6b6q3n8hg7dj8yd"; - libraryHaskellDepends = [ - base - free - mmorph - mtl - transformers - ]; - description = "Methods for composing monads"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "MonadLab" = callPackage ( - { - mkDerivation, - base, - haskell98, - parsec, - process, - template-haskell, - }: - mkDerivation { - pname = "MonadLab"; - version = "0.0.2"; - sha256 = "1p8xhxxjhwr93as98pvp1z25ypgj7arka8bw75r0q46948h7nxf7"; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base - parsec - template-haskell - ]; - executableHaskellDepends = [ - base - haskell98 - process - ]; - description = "Automatically generate layered monads"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "mlab"; - } - ) { }; - "MonadPrompt" = callPackage ( { mkDerivation, @@ -30440,83 +11402,6 @@ self: { } ) { }; - "MonadRandomLazy" = callPackage ( - { - mkDerivation, - base, - MonadRandom, - mtl, - random, - }: - mkDerivation { - pname = "MonadRandomLazy"; - version = "0.1.1.1"; - sha256 = "0zqw3g69dx72rjmmbjjgvv06jr7j64fy4c4zkqyra4h5hxflb282"; - libraryHaskellDepends = [ - base - MonadRandom - mtl - random - ]; - description = "Lazy monad for psuedo random-number generation"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "MonadStack" = callPackage ( - { - mkDerivation, - base, - mtl, - }: - mkDerivation { - pname = "MonadStack"; - version = "0.1.0.3"; - sha256 = "0fsnc17dxmv3qnmz54gw3wy2camgp23ip9jfi543xqks0l8n7gcz"; - libraryHaskellDepends = [ - base - mtl - ]; - description = "Generalizing lift to monad stacks"; - license = lib.licenses.bsd2; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "Monadius" = callPackage ( - { - mkDerivation, - array, - base, - directory, - GLUT, - OpenGL, - }: - mkDerivation { - pname = "Monadius"; - version = "0.99"; - sha256 = "0jq59nnnydllqpvg3h2d1ylz3g58hwi0m08lmw2bv0ajzgn5mc8x"; - isLibrary = false; - isExecutable = true; - enableSeparateDataOutput = true; - executableHaskellDepends = [ - array - base - directory - GLUT - OpenGL - ]; - description = "2-D arcade scroller"; - license = "GPL"; - hydraPlatforms = lib.platforms.none; - mainProgram = "monadius"; - broken = true; - } - ) { }; - "Monadoro" = callPackage ( { mkDerivation, @@ -30556,76 +11441,6 @@ self: { } ) { }; - "Monaris" = callPackage ( - { - mkDerivation, - array, - base, - containers, - directory, - free, - free-game, - mtl, - }: - mkDerivation { - pname = "Monaris"; - version = "0.1.8"; - sha256 = "0myghw0w122n1czpaaqmpiyv0nragjkwnja8kb4agrwhcjfk3icb"; - isLibrary = false; - isExecutable = true; - enableSeparateDataOutput = true; - executableHaskellDepends = [ - array - base - containers - directory - free - free-game - mtl - ]; - description = "A simple tetris clone"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "Monaris"; - } - ) { }; - - "Monatron" = callPackage ( - { mkDerivation, base }: - mkDerivation { - pname = "Monatron"; - version = "0.3.1"; - sha256 = "0250xqc5fgl8mg9yb0ykbfmxnyxacqbvi692irgfw89gf9vkh886"; - libraryHaskellDepends = [ base ]; - description = "Monad transformer library with uniform liftings"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "Monatron-IO" = callPackage ( - { - mkDerivation, - base, - Monatron, - transformers, - }: - mkDerivation { - pname = "Monatron-IO"; - version = "1.0"; - sha256 = "0svdyfzv4xlwjnc61wwik8a60a5667lhsys49sgry65a1v2csnv0"; - libraryHaskellDepends = [ - base - Monatron - transformers - ]; - description = "MonadIO instances for the Monatron transformers"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "Mondrian" = callPackage ( { mkDerivation, @@ -30684,30 +11499,6 @@ self: { } ) { }; - "Monocle" = callPackage ( - { - mkDerivation, - base, - containers, - haskell98, - mtl, - }: - mkDerivation { - pname = "Monocle"; - version = "0.0.4"; - sha256 = "1p8s2agsni56h7vlydbhy7qhi0qkwafpcrsfafrlg44gvpwff15y"; - libraryHaskellDepends = [ - base - containers - haskell98 - mtl - ]; - description = "Symbolic computations in strict monoidal categories with LaTeX output"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "MorseCode" = callPackage ( { mkDerivation, @@ -30782,129 +11573,6 @@ self: { } ) { }; - "MuCheck-HUnit" = callPackage ( - { - mkDerivation, - base, - HUnit, - MuCheck, - }: - mkDerivation { - pname = "MuCheck-HUnit"; - version = "0.3.0.4"; - sha256 = "05x5sfwlzzis29sps93ypsn53y2vs4cjmxifjqn7wd5lmhaxjbhj"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - HUnit - MuCheck - ]; - executableHaskellDepends = [ - base - HUnit - MuCheck - ]; - description = "Automated Mutation Testing for HUnit tests"; - license = lib.licenses.gpl2Only; - hydraPlatforms = lib.platforms.none; - mainProgram = "mucheck-hunit"; - } - ) { }; - - "MuCheck-Hspec" = callPackage ( - { - mkDerivation, - base, - hspec, - hspec-core, - MuCheck, - }: - mkDerivation { - pname = "MuCheck-Hspec"; - version = "0.3.0.4"; - sha256 = "0c8sd6ns8hnhc7577j0y7iqyhf7ld51zmrr3jgpckgpcghycw5mw"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - hspec - hspec-core - MuCheck - ]; - executableHaskellDepends = [ - base - hspec - hspec-core - MuCheck - ]; - description = "Automated Mutation Testing for Hspec tests"; - license = lib.licenses.gpl2Only; - hydraPlatforms = lib.platforms.none; - mainProgram = "mucheck-hspec"; - } - ) { }; - - "MuCheck-QuickCheck" = callPackage ( - { - mkDerivation, - base, - MuCheck, - QuickCheck, - }: - mkDerivation { - pname = "MuCheck-QuickCheck"; - version = "0.3.0.4"; - sha256 = "1q242vw70jccfj19jn6wx1fm74mshd60lay9ql4379mgcl2lf6qk"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - MuCheck - QuickCheck - ]; - executableHaskellDepends = [ - base - MuCheck - QuickCheck - ]; - description = "Automated Mutation Testing for QuickCheck tests"; - license = lib.licenses.gpl2Only; - hydraPlatforms = lib.platforms.none; - mainProgram = "mucheck-quickcheck"; - } - ) { }; - - "MuCheck-SmallCheck" = callPackage ( - { - mkDerivation, - base, - MuCheck, - smallcheck, - }: - mkDerivation { - pname = "MuCheck-SmallCheck"; - version = "0.3.0.4"; - sha256 = "19brgllnbsbbg57jgwgd745iial53ykn7c329x9lq6gd82siavii"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - MuCheck - smallcheck - ]; - executableHaskellDepends = [ - base - MuCheck - smallcheck - ]; - description = "Automated Mutation Testing for SmallCheck tests"; - license = lib.licenses.gpl2Only; - hydraPlatforms = lib.platforms.none; - mainProgram = "mucheck-smallcheck"; - } - ) { }; - "MultiChor" = callPackage ( { mkDerivation, @@ -30986,32 +11654,6 @@ self: { } ) { }; - "Munkres-simple" = callPackage ( - { - mkDerivation, - array, - base, - bimap, - containers, - Munkres, - }: - mkDerivation { - pname = "Munkres-simple"; - version = "0.1.0.1"; - sha256 = "0k5v37qrhb8i5hfx9jvkggjmry2jrzw967s17l2x561qmm59c2rb"; - libraryHaskellDepends = [ - array - base - bimap - containers - Munkres - ]; - description = "Simple and typesafe layer over the Munkres package"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "MusicBrainz" = callPackage ( { mkDerivation, @@ -31084,153 +11726,6 @@ self: { } ) { }; - "MutationOrder" = callPackage ( - { - mkDerivation, - ADPfusion, - ADPfusionSet, - aeson, - attoparsec, - base, - bimaps, - BiobaseXNA, - bytestring, - bytestring-trie, - cereal, - cereal-vector, - cmdargs, - containers, - deepseq, - directory, - DPutils, - errors, - file-embed, - filemanip, - filepath, - FormalGrammars, - hashable, - lens, - log-domain, - mtl, - OrderedBits, - parallel, - PrimitiveArray, - PrimitiveArray-Pretty, - QuickCheck, - serialize-instances, - ShortestPathProblems, - split, - tasty, - tasty-quickcheck, - tasty-th, - text, - unordered-containers, - vector, - vector-strategies, - ViennaRNA-bindings, - zlib, - }: - mkDerivation { - pname = "MutationOrder"; - version = "0.0.1.0"; - sha256 = "0zk0cwjapsinnadwk8ss5cv3g81c6cz1dcqq47g53bfi0m9aly9q"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - ADPfusion - ADPfusionSet - aeson - attoparsec - base - bimaps - BiobaseXNA - bytestring - bytestring-trie - cereal - cereal-vector - containers - deepseq - directory - DPutils - errors - filemanip - filepath - FormalGrammars - hashable - lens - log-domain - mtl - OrderedBits - parallel - PrimitiveArray - PrimitiveArray-Pretty - serialize-instances - ShortestPathProblems - split - text - unordered-containers - vector - vector-strategies - ViennaRNA-bindings - zlib - ]; - executableHaskellDepends = [ - base - bytestring - cmdargs - directory - errors - file-embed - filepath - ]; - testHaskellDepends = [ - base - QuickCheck - tasty - tasty-quickcheck - tasty-th - vector - ]; - description = "Most likely order of mutation events in RNA"; - license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - mainProgram = "MutationOrder"; - } - ) { }; - - "MyPrimes" = callPackage ( - { - mkDerivation, - base, - containers, - time, - }: - mkDerivation { - pname = "MyPrimes"; - version = "0.1.0.0"; - sha256 = "1bwq0fwhkw4i2kjx9xbdfn0y86j9s78kyrw9vlxq7zmv4pddazly"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - containers - ]; - executableHaskellDepends = [ - base - containers - ]; - benchmarkHaskellDepends = [ - base - time - ]; - description = "Generate all primes"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - mainProgram = "PrimesList"; - broken = true; - } - ) { }; - "NGLess" = callPackage ( { mkDerivation, @@ -31573,624 +12068,159 @@ self: { tar-conduit template-haskell text - time - transformers - unix - unix-compat - unliftio - unliftio-core - vector - vector-algorithms - yaml - zlib - ]; - description = "NGLess implements ngless, a DSL for processing sequencing data"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - mainProgram = "ngless"; - } - ) { }; - - "NGrams" = callPackage ( - { - mkDerivation, - base, - HCL, - HTTP, - network, - regex-compat, - }: - mkDerivation { - pname = "NGrams"; - version = "1.1"; - sha256 = "1niwh0ndkzgd38phx5527i14nb9swvybdjwjwbndkpb21x5j82nc"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - HCL - HTTP - network - regex-compat - ]; - description = "Simple application for calculating n-grams using Google"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "ngrams"; - broken = true; - } - ) { }; - - "NMap" = callPackage ( - { - mkDerivation, - base, - containers, - }: - mkDerivation { - pname = "NMap"; - version = "0.12"; - sha256 = "1d8s5224kpg2rqlzjb991pn2yj3qygf1jzcazm4z5xim54b3n4w4"; - libraryHaskellDepends = [ - base - containers - ]; - description = "A transparent nested Map structure"; - license = "LGPL"; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "NTRU" = callPackage ( - { - mkDerivation, - base, - bytestring, - containers, - crypto-api, - integer-gmp, - poly, - random, - SHA, - split, - }: - mkDerivation { - pname = "NTRU"; - version = "1.1.0.0"; - sha256 = "0hslzmkhinv3yjzbp2l8d2gbjispikj1mbgjpy2f6qx4k8dgq8f5"; - libraryHaskellDepends = [ - base - bytestring - containers - crypto-api - integer-gmp - poly - random - SHA - split - ]; - description = "NTRU Cryptography"; - license = "GPL"; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "NXT" = callPackage ( - { - mkDerivation, - base, - bluetooth, - bytestring, - filepath, - HUnit, - mtl, - QuickCheck, - serialport, - test-framework, - test-framework-hunit, - test-framework-quickcheck2, - time, - unix, - }: - mkDerivation { - pname = "NXT"; - version = "0.2.5"; - sha256 = "04qcz85lmsm9wy9qfgs35f10nrwjmwxnx2x05xjg8aqmdav4yr7w"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - bytestring - mtl - serialport - time - unix - ]; - librarySystemDepends = [ bluetooth ]; - executableHaskellDepends = [ - base - bytestring - filepath - mtl - ]; - testHaskellDepends = [ - base - bytestring - filepath - HUnit - mtl - QuickCheck - test-framework - test-framework-hunit - test-framework-quickcheck2 - time - ]; - description = "A Haskell interface to Lego Mindstorms NXT"; - license = lib.licenses.lgpl3Only; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { bluetooth = null; }; - - "NXTDSL" = callPackage ( - { - mkDerivation, - attoparsec, - base, - hashable, - mtl, - resourcet, - stm, - text, - unordered-containers, - }: - mkDerivation { - pname = "NXTDSL"; - version = "0.4"; - sha256 = "117ngz15j5chnyrhj1da3r4z11vqx5g70wan7zblwr3s6n006485"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - attoparsec - base - hashable - mtl - resourcet - stm - text - unordered-containers - ]; - description = "Generate NXC Code from DSL"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "legoDSL"; - broken = true; - } - ) { }; - - "NaCl" = callPackage ( - { - mkDerivation, - base, - base16, - bytestring, - hedgehog, - HUnit, - libsodium, - memory, - safe-exceptions, - tasty, - tasty-discover, - tasty-hedgehog, - tasty-hunit, - }: - mkDerivation { - pname = "NaCl"; - version = "0.0.5.0"; - sha256 = "1q6wr6a3q0w594z8lrldmvzc1fs4krds8nbady8ymz2vll71q1kz"; - revision = "1"; - editedCabalFile = "00p3brf458lwfjlzmr43hv7c8bi28bq2z1nqzwf121ljnf5vhvpb"; - libraryHaskellDepends = [ - base - bytestring - libsodium - memory - safe-exceptions - ]; - testHaskellDepends = [ - base - base16 - bytestring - hedgehog - HUnit - libsodium - memory - safe-exceptions - tasty - tasty-hedgehog - tasty-hunit - ]; - testToolDepends = [ tasty-discover ]; - description = "Easy-and-safe-to-use high-level Haskell bindings to NaCl"; - license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "NameGenerator" = callPackage ( - { - mkDerivation, - base, - containers, - random, - }: - mkDerivation { - pname = "NameGenerator"; - version = "0.0.2"; - sha256 = "1rnn3i9rvb9z7iqd0hx730gv3n5hc1gbsdqsa0hlq3qxffg3sr8x"; - revision = "1"; - editedCabalFile = "01ma6068mnwn9f7jpa5g8kkl7lyhl5wnpw9ad44zz9gki1mrw37i"; - libraryHaskellDepends = [ - base - containers - random - ]; - description = "A name generator written in Haskell"; - license = lib.licenses.gpl3Only; - } - ) { }; - - "NanoID" = callPackage ( - { - mkDerivation, - aeson, - base, - bytestring, - bytestring-encodings, - cereal, - extra, - mwc-random, - optparse-applicative, - text, - }: - mkDerivation { - pname = "NanoID"; - version = "3.4.1.1"; - sha256 = "1dfl5vj6fwxwrhgx11vzxij2p19q3kqri130fxgw2l6ajlckyh8x"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson - base - bytestring - cereal - extra - mwc-random - text - ]; - executableHaskellDepends = [ - base - bytestring - bytestring-encodings - mwc-random - optparse-applicative - ]; - description = "NanoID generator"; - license = lib.licenses.bsd3; - mainProgram = "nanoid"; - } - ) { }; - - "NanoProlog" = callPackage ( - { - mkDerivation, - base, - containers, - ListLike, - uu-parsinglib, - }: - mkDerivation { - pname = "NanoProlog"; - version = "0.3"; - sha256 = "0wjjwzzc78sj7nsaq1hgxiwv0pc069mxns425lhmrlxcm0vf8fmn"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - containers - ListLike - uu-parsinglib - ]; - executableHaskellDepends = [ - base - uu-parsinglib - ]; - description = "Very small interpreter for a Prolog-like language"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "nano-prolog"; - broken = true; - } - ) { }; - - "Naperian" = callPackage ( - { - mkDerivation, - base, - containers, - ghc-prim, - vector, - }: - mkDerivation { - pname = "Naperian"; - version = "0.1.1.0"; - sha256 = "1i9hc1pdp9mg9x1xd4wrv06cbhjxw0yhyk2xhsm8jz6rgksa22j7"; - revision = "1"; - editedCabalFile = "0njjyn54cda1j2rmxhmz9hnbg5rwd5f8qcdgfk2z9bq1aiv3h61q"; - libraryHaskellDepends = [ - base - containers - ghc-prim - vector - ]; - description = "Naperian Functors for APL-like programming"; - license = "unknown"; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "NaperianNetCDF" = callPackage ( - { - mkDerivation, - base, - hnetcdf, - Naperian, - split, - vector, - }: - mkDerivation { - pname = "NaperianNetCDF"; - version = "0.1.0.1"; - sha256 = "0hyx9lg9hs124h9a666ym6cpnd3amdcl3v727shzc5v3hzwbvqgj"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - hnetcdf - Naperian - vector - ]; - executableHaskellDepends = [ - base - hnetcdf - Naperian - split - ]; - description = "Instances of NcStore for hypercuboids"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "Main"; - } - ) { }; - - "NaturalLanguageAlphabets" = callPackage ( - { - mkDerivation, - aeson, - ansi-wl-pprint, - base, - binary, - bytestring, - cereal, - containers, - criterion, - deepseq, - errors, - file-embed, - hashable, - hashtables, - InternedData, - lens, - mtl, - mwc-random, - parsers, - QuickCheck, - random, - tasty, - tasty-hunit, - tasty-quickcheck, - tasty-th, - text, - transformers, - trifecta, - unordered-containers, - utf8-string, - vector, - }: - mkDerivation { - pname = "NaturalLanguageAlphabets"; - version = "0.2.1.0"; - sha256 = "11iybvgzzpaxlwgq71hqpl24f5xymzvnbb7m530wwg3fb9wdkd1y"; - libraryHaskellDepends = [ - aeson - ansi-wl-pprint - base - bytestring - containers - errors - file-embed - hashable - InternedData - lens - mtl - parsers - text - transformers - trifecta - unordered-containers - utf8-string - ]; - testHaskellDepends = [ - aeson - base - binary - cereal - InternedData - mtl - QuickCheck - tasty - tasty-hunit - tasty-quickcheck - tasty-th - text - unordered-containers - ]; - benchmarkHaskellDepends = [ - base - containers - criterion - deepseq - hashtables - InternedData - mwc-random - random - unordered-containers + time + transformers + unix + unix-compat + unliftio + unliftio-core vector + vector-algorithms + yaml + zlib ]; - description = "Simple scoring schemes for word alignments"; - license = lib.licenses.bsd3; + description = "NGLess implements ngless, a DSL for processing sequencing data"; + license = lib.licenses.mit; hydraPlatforms = lib.platforms.none; - broken = true; + mainProgram = "ngless"; } ) { }; - "NaturalSort" = callPackage ( + "NaCl" = callPackage ( { mkDerivation, base, + base16, bytestring, - strict, + hedgehog, + HUnit, + libsodium, + memory, + safe-exceptions, + tasty, + tasty-discover, + tasty-hedgehog, + tasty-hunit, }: mkDerivation { - pname = "NaturalSort"; - version = "0.2.1"; - sha256 = "1xjhmjxp7w0nxvphnfh2phfpg4aqhjyg2f8q99qqavf8cq2k3za9"; - isLibrary = true; - isExecutable = true; + pname = "NaCl"; + version = "0.0.5.0"; + sha256 = "1q6wr6a3q0w594z8lrldmvzc1fs4krds8nbady8ymz2vll71q1kz"; + revision = "1"; + editedCabalFile = "00p3brf458lwfjlzmr43hv7c8bi28bq2z1nqzwf121ljnf5vhvpb"; libraryHaskellDepends = [ base bytestring - strict + libsodium + memory + safe-exceptions ]; - description = "Natural sorting for strings"; - license = lib.licenses.bsd3; + testHaskellDepends = [ + base + base16 + bytestring + hedgehog + HUnit + libsodium + memory + safe-exceptions + tasty + tasty-hedgehog + tasty-hunit + ]; + testToolDepends = [ tasty-discover ]; + description = "Easy-and-safe-to-use high-level Haskell bindings to NaCl"; + license = lib.licenses.mpl20; hydraPlatforms = lib.platforms.none; - broken = true; } ) { }; - "NearContextAlgebra" = callPackage ( + "NameGenerator" = callPackage ( { mkDerivation, base, containers, - ContextAlgebra, - lattices, - multiset, - QuickCheck, + random, }: mkDerivation { - pname = "NearContextAlgebra"; - version = "0.1.0.2"; - sha256 = "0nwvc982kziwj062lb75iyyjwabq9z89ijicqwq8gg09nrnbvrkp"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ + pname = "NameGenerator"; + version = "0.0.2"; + sha256 = "1rnn3i9rvb9z7iqd0hx730gv3n5hc1gbsdqsa0hlq3qxffg3sr8x"; + revision = "1"; + editedCabalFile = "01ma6068mnwn9f7jpa5g8kkl7lyhl5wnpw9ad44zz9gki1mrw37i"; + libraryHaskellDepends = [ base containers - ContextAlgebra - lattices - multiset - QuickCheck + random ]; - description = "Context Algebra of near"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "NearContextAlgebra"; + description = "A name generator written in Haskell"; + license = lib.licenses.gpl3Only; } ) { }; - "Neks" = callPackage ( + "NanoID" = callPackage ( { mkDerivation, + aeson, base, bytestring, + bytestring-encodings, cereal, - containers, - directory, - hashable, - messagepack, - network, - stm, - vector, + extra, + mwc-random, + optparse-applicative, + text, }: mkDerivation { - pname = "Neks"; - version = "0.5.0.0"; - sha256 = "083hkcgmrk42pyjm1xz1amdjpmccw0c72axmkk163ar6ir7aznc8"; + pname = "NanoID"; + version = "3.4.1.1"; + sha256 = "1dfl5vj6fwxwrhgx11vzxij2p19q3kqri130fxgw2l6ajlckyh8x"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ + aeson base bytestring cereal - containers - directory - hashable - messagepack - network - stm - vector + extra + mwc-random + text ]; executableHaskellDepends = [ base bytestring - cereal - containers - directory - hashable - messagepack - network - stm - vector + bytestring-encodings + mwc-random + optparse-applicative ]; - description = "Simple networked key/value store"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; + description = "NanoID generator"; + license = lib.licenses.bsd3; + mainProgram = "nanoid"; } ) { }; - "NestedFunctor" = callPackage ( + "Naperian" = callPackage ( { mkDerivation, base, - comonad, - distributive, + containers, + ghc-prim, + vector, }: mkDerivation { - pname = "NestedFunctor"; - version = "0.2.0.2"; - sha256 = "1kmv20haxkqn1cwy9g59nmjpn5x1rng2rrd8y3gwxfdwn8blc735"; + pname = "Naperian"; + version = "0.1.1.0"; + sha256 = "1i9hc1pdp9mg9x1xd4wrv06cbhjxw0yhyk2xhsm8jz6rgksa22j7"; + revision = "1"; + editedCabalFile = "0njjyn54cda1j2rmxhmz9hnbg5rwd5f8qcdgfk2z9bq1aiv3h61q"; libraryHaskellDepends = [ base - comonad - distributive + containers + ghc-prim + vector ]; - description = "Nested composition of functors with a type index tracking nesting"; - license = lib.licenses.bsd3; + description = "Naperian Functors for APL-like programming"; + license = "unknown"; hydraPlatforms = lib.platforms.none; broken = true; } @@ -32342,44 +12372,6 @@ self: { } ) { }; - "Ninjas" = callPackage ( - { - mkDerivation, - base, - binary, - bytestring, - containers, - filepath, - gloss, - network, - networked-game, - random, - }: - mkDerivation { - pname = "Ninjas"; - version = "0.1.0.0"; - sha256 = "0wz80cv7m7m4q6y6rd07y422b97hyhnb9yl6bj68pi1nxmjzcjhm"; - isLibrary = false; - isExecutable = true; - enableSeparateDataOutput = true; - executableHaskellDepends = [ - base - binary - bytestring - containers - filepath - gloss - network - networked-game - random - ]; - description = "Ninja game"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "Ninjas"; - } - ) { }; - "NoHoed" = callPackage ( { mkDerivation, @@ -32399,61 +12391,6 @@ self: { } ) { }; - "NoSlow" = callPackage ( - { - mkDerivation, - array, - base, - containers, - criterion, - dph-base, - dph-prim-seq, - statistics, - storablevector, - template-haskell, - uvector, - vector, - }: - mkDerivation { - pname = "NoSlow"; - version = "0.2"; - sha256 = "1pr1v8xxnhd7yxbhjqhlkwlsfzbk425bmxn99d80w8p4biag104x"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - array - base - containers - criterion - dph-base - dph-prim-seq - statistics - storablevector - template-haskell - uvector - vector - ]; - description = "Microbenchmarks for various array libraries"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "NoTrace" = callPackage ( - { mkDerivation, base }: - mkDerivation { - pname = "NoTrace"; - version = "0.3.0.4"; - sha256 = "0nb7cqqd7p62gnmcp1hhjv113faihwps6m8xds5ng6zi7jdzz6n1"; - libraryHaskellDepends = [ base ]; - testHaskellDepends = [ base ]; - description = "Remove all the functions come from Debug.Trace after debugging"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "Noise" = callPackage ( { mkDerivation, @@ -32477,339 +12414,6 @@ self: { } ) { }; - "Nomyx" = callPackage ( - { - mkDerivation, - base, - directory, - exceptions, - filepath, - hint-server, - mtl, - network, - Nomyx-Core, - Nomyx-Language, - Nomyx-Web, - safe, - stm, - time, - }: - mkDerivation { - pname = "Nomyx"; - version = "0.7.6"; - sha256 = "1zbrirplcgff9z75lmamh0i5749m22kvnwcr3s51wajnvh982qi3"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - directory - exceptions - filepath - hint-server - mtl - network - Nomyx-Core - Nomyx-Language - Nomyx-Web - safe - stm - time - ]; - description = "A Nomic game in haskell"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "Nomyx"; - } - ) { }; - - "Nomyx-Core" = callPackage ( - { - mkDerivation, - acid-state, - aeson, - base, - blaze-html, - blaze-markup, - bytestring, - data-lens, - data-lens-fd, - data-lens-template, - DebugTraceHelpers, - deepseq, - directory, - either-unwrap, - exceptions, - filepath, - happstack-authenticate, - hint, - hint-server, - hscolour, - ixset, - mime-mail, - MissingH, - mtl, - network, - Nomyx-Language, - old-locale, - random, - safe, - safecopy, - stm, - tar, - template-haskell, - temporary, - text, - time, - unix, - }: - mkDerivation { - pname = "Nomyx-Core"; - version = "0.7.6"; - sha256 = "16s60gap32kjs62zxjddppxyg9jhamzgm4d41mfg3vviadlacdrq"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - acid-state - aeson - base - blaze-html - blaze-markup - bytestring - data-lens - data-lens-fd - data-lens-template - DebugTraceHelpers - deepseq - directory - either-unwrap - exceptions - filepath - happstack-authenticate - hint - hint-server - hscolour - ixset - mime-mail - MissingH - mtl - network - Nomyx-Language - old-locale - random - safe - safecopy - stm - tar - template-haskell - temporary - text - time - unix - ]; - description = "A Nomic game in haskell"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "Nomyx-Language" = callPackage ( - { - mkDerivation, - base, - Boolean, - containers, - data-lens, - data-lens-fd, - data-lens-template, - DebugTraceHelpers, - ghc, - mtl, - old-locale, - random, - safe, - time, - time-recurrence, - }: - mkDerivation { - pname = "Nomyx-Language"; - version = "0.7.6"; - sha256 = "0na9nm6qnayip2lx3nd3if4c1iyp7zs89jp2dgb7zkmbiwvax3l9"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base - Boolean - containers - data-lens - data-lens-fd - data-lens-template - DebugTraceHelpers - ghc - mtl - old-locale - random - safe - time - time-recurrence - ]; - description = "Language to express rules for Nomic"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "Nomyx-Rules" = callPackage ( - { - mkDerivation, - base, - containers, - ghc, - hint-server, - hslogger, - mtl, - old-locale, - safe, - stm, - time, - time-recurrence, - }: - mkDerivation { - pname = "Nomyx-Rules"; - version = "0.1.0"; - sha256 = "16kzpdvn57sdmpqkwswgixm6pnyi01vj44yvzczn9sy4azwd10q5"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base - containers - ghc - hint-server - hslogger - mtl - old-locale - safe - stm - time - time-recurrence - ]; - description = "Language to express rules for Nomic"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "Nomyx-Web" = callPackage ( - { - mkDerivation, - base, - blaze-html, - blaze-markup, - bytestring, - data-lens, - data-lens-fd, - fb, - filepath, - happstack-authenticate, - happstack-server, - hscolour, - mtl, - Nomyx-Core, - Nomyx-Language, - old-locale, - reform, - reform-blaze, - reform-happstack, - safe, - split, - stm, - text, - time, - web-routes, - web-routes-happstack, - web-routes-regular, - web-routes-th, - }: - mkDerivation { - pname = "Nomyx-Web"; - version = "0.7.6"; - sha256 = "193v967bzhs0linqvh93w7viwdrlmsbdpnr8asigqhp5905zdjb7"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base - blaze-html - blaze-markup - bytestring - data-lens - data-lens-fd - fb - filepath - happstack-authenticate - happstack-server - hscolour - mtl - Nomyx-Core - Nomyx-Language - old-locale - reform - reform-blaze - reform-happstack - safe - split - stm - text - time - web-routes - web-routes-happstack - web-routes-regular - web-routes-th - ]; - description = "Web gui for Nomyx"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "NonEmpty" = callPackage ( - { mkDerivation, base }: - mkDerivation { - pname = "NonEmpty"; - version = "0.1"; - sha256 = "0nycv791c6b5bcaz5y9wm3wxn1p930p163qs1rpdiix04fnaxgxl"; - libraryHaskellDepends = [ base ]; - description = "Library providing a non-empty list datatype, and total functions operating on it"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "NonEmptyList" = callPackage ( - { - mkDerivation, - base, - category-extras, - QuickCheck, - Semigroup, - test-framework, - test-framework-hunit, - test-framework-quickcheck2, - }: - mkDerivation { - pname = "NonEmptyList"; - version = "0.0.9"; - sha256 = "09515y7ax4vndsj1828b6xxnnkml4vg9x29rn3lrw3rc65fi11x2"; - libraryHaskellDepends = [ - base - category-extras - QuickCheck - Semigroup - test-framework - test-framework-hunit - test-framework-quickcheck2 - ]; - description = "A list with a length of at least one"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "NumInstances" = callPackage ( { mkDerivation, base }: mkDerivation { @@ -32843,57 +12447,6 @@ self: { } ) { }; - "NumberSieves" = callPackage ( - { - mkDerivation, - array, - base, - }: - mkDerivation { - pname = "NumberSieves"; - version = "0.1.2"; - sha256 = "1w8y46ivli37rlhkdrnw13qv6f0m13a88w0qkfw949b09vdp2nw2"; - libraryHaskellDepends = [ - array - base - ]; - description = "Number Theoretic Sieves: primes, factorization, and Euler's Totient"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "NumberTheory" = callPackage ( - { - mkDerivation, - base, - containers, - HUnit, - primes, - }: - mkDerivation { - pname = "NumberTheory"; - version = "0.1.0.1"; - sha256 = "1a8xxqvmaja2r6sy9idc805n4kmhwks6xsf38sw1kmxl01aivk70"; - libraryHaskellDepends = [ - base - containers - primes - ]; - testHaskellDepends = [ - base - containers - HUnit - primes - ]; - description = "A library for number theoretic computations, written in Haskell"; - license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "Numbers" = callPackage ( { mkDerivation, @@ -32913,53 +12466,6 @@ self: { } ) { }; - "Nussinov78" = callPackage ( - { - mkDerivation, - ADPfusion, - base, - ghc-prim, - mtl, - primitive, - PrimitiveArray, - vector, - }: - mkDerivation { - pname = "Nussinov78"; - version = "0.1.0.0"; - sha256 = "1j9qmin7fqwfy69f7wi1is1nawhh46phda6na20am7r8cjzdnjsh"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - ADPfusion - base - ghc-prim - mtl - primitive - PrimitiveArray - vector - ]; - description = "Nussinov78 using the ADPfusion library"; - license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - mainProgram = "Nussinov78"; - } - ) { }; - - "Nutri" = callPackage ( - { mkDerivation, base }: - mkDerivation { - pname = "Nutri"; - version = "0.1"; - sha256 = "1m7qx5zydz5jpk6a55k7rzchlwmkd91gsiqmn26qqn50ab3di35j"; - libraryHaskellDepends = [ base ]; - description = "A little library to calculate nutrition values of food items"; - license = lib.licenses.publicDomain; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "OGDF" = callPackage ( @@ -32997,27 +12503,6 @@ self: { OGDF = null; }; - "OGL" = callPackage ( - { - mkDerivation, - base, - mtl, - }: - mkDerivation { - pname = "OGL"; - version = "0.0.3"; - sha256 = "1w8lpi2r315b4ry234gi4rq09j92zvhr9ibxwsig6544cbb5g8qm"; - libraryHaskellDepends = [ - base - mtl - ]; - description = "A context aware binding for the OpenGL graphics system"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "ONC-RPC" = callPackage ( { mkDerivation, @@ -33111,118 +12596,6 @@ self: { } ) { }; - "OTP" = callPackage ( - { - mkDerivation, - base, - bytestring, - cryptohash-sha1, - cryptohash-sha256, - cryptohash-sha512, - tasty, - tasty-hunit, - time, - }: - mkDerivation { - pname = "OTP"; - version = "0.1.0.0"; - sha256 = "1r7vpc0bv89d70j6pc3z3vam93gahl4j0y5w8smknxwjliwqxkcb"; - revision = "2"; - editedCabalFile = "012yi2pvjjlk6vri5zj8a7pipscsfc6rgkw7s5qldqmvvwvrk64s"; - libraryHaskellDepends = [ - base - bytestring - cryptohash-sha1 - cryptohash-sha256 - cryptohash-sha512 - time - ]; - testHaskellDepends = [ - base - bytestring - tasty - tasty-hunit - time - ]; - description = "HMAC-Based and Time-Based One-Time Passwords (HOTP & TOTP)"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "Object" = callPackage ( - { - mkDerivation, - base, - containers, - ghc, - template-haskell, - }: - mkDerivation { - pname = "Object"; - version = "1.0"; - sha256 = "05lrqq4008vnfs2x8kxlyrgdvxmzk04rqvn0w65b691bp3vwnbf9"; - libraryHaskellDepends = [ - base - containers - ghc - template-haskell - ]; - description = "Object oriented programming for haskell using multiparameter typeclasses"; - license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "ObjectIO" = - callPackage - ( - { - mkDerivation, - comctl32, - comdlg32, - gdi32, - kernel32, - ole32, - shell32, - user32, - winmm, - winspool, - }: - mkDerivation { - pname = "ObjectIO"; - version = "1.0.1.1"; - sha256 = "1f8ac7dk1ls6xla3w0wy2qr164kv67k5ilj7niakfr9x74mpp6jy"; - librarySystemDepends = [ - comctl32 - comdlg32 - gdi32 - kernel32 - ole32 - shell32 - user32 - winmm - winspool - ]; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) - { - comctl32 = null; - comdlg32 = null; - gdi32 = null; - kernel32 = null; - ole32 = null; - shell32 = null; - user32 = null; - winmm = null; - winspool = null; - }; - "ObjectName" = callPackage ( { mkDerivation, @@ -33282,51 +12655,6 @@ self: { } ) { }; - "Octree" = callPackage ( - { - mkDerivation, - base, - criterion, - deepseq, - ghc-prim, - lens, - linear, - QuickCheck, - }: - mkDerivation { - pname = "Octree"; - version = "0.6.0.1"; - sha256 = "00f4ck5ln8svjjs5by6k82dg9xrjfckg6whccncmd86rql59n74z"; - libraryHaskellDepends = [ - base - deepseq - lens - linear - QuickCheck - ]; - testHaskellDepends = [ - base - deepseq - lens - linear - QuickCheck - ]; - benchmarkHaskellDepends = [ - base - criterion - deepseq - ghc-prim - lens - linear - QuickCheck - ]; - description = "Simple unbalanced Octree for storing data about 3D points"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "OddWord" = callPackage ( { mkDerivation, @@ -33358,151 +12686,6 @@ self: { } ) { }; - "Omega" = callPackage ( - { - mkDerivation, - base, - containers, - HUnit, - }: - mkDerivation { - pname = "Omega"; - version = "1.0.3"; - sha256 = "05dax2r7rrdbsvxszxn13xcf24zq87xq8scxzvl2ccr2y29n0f5j"; - libraryHaskellDepends = [ - base - containers - ]; - testHaskellDepends = [ - base - containers - HUnit - ]; - description = "Integer sets and relations using Presburger arithmetic"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "OnRmt" = callPackage ( - { - mkDerivation, - async, - base, - brick, - bytestring, - conduit, - conduit-extra, - containers, - control-monad-loop, - data-default, - HUnit, - itemfield, - listsafe, - microlens, - mtl, - old-locale, - process, - repl-toolkit, - ssh-known-hosts, - string-conversions, - test-framework, - test-framework-hunit, - text, - text-zipper, - time, - transformers, - vector, - void, - vty, - }: - mkDerivation { - pname = "OnRmt"; - version = "1.0.0.0"; - sha256 = "061j03ld96zkx1pfg7caxkyknj91b3maijx52610zmc9kfcjg5jd"; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - async - base - brick - bytestring - conduit - conduit-extra - containers - control-monad-loop - data-default - itemfield - listsafe - microlens - mtl - old-locale - process - repl-toolkit - string-conversions - text - text-zipper - time - transformers - vector - void - vty - ]; - executableHaskellDepends = [ - async - base - brick - bytestring - conduit - conduit-extra - containers - control-monad-loop - data-default - itemfield - listsafe - microlens - mtl - old-locale - process - repl-toolkit - ssh-known-hosts - string-conversions - text - text-zipper - time - transformers - vector - void - vty - ]; - testHaskellDepends = [ - async - base - brick - bytestring - conduit - conduit-extra - HUnit - itemfield - old-locale - string-conversions - test-framework - test-framework-hunit - text - text-zipper - time - transformers - vector - vty - ]; - description = "Text UI library for performing parallel remote SSH operations"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "OneTuple" = callPackage ( { mkDerivation, @@ -33553,91 +12736,6 @@ self: { } ) { }; - "OpenAFP" = callPackage ( - { - mkDerivation, - array, - base, - binary, - bytestring, - containers, - directory, - hashable, - hashtables, - mtl, - process, - regex-compat, - }: - mkDerivation { - pname = "OpenAFP"; - version = "1.4.3"; - sha256 = "0ziwg4l5ycmymimbwm4qrf1pqwkjy39nl302ld6z33flpmcrs1s7"; - libraryHaskellDepends = [ - array - base - binary - bytestring - containers - directory - hashable - hashtables - mtl - process - regex-compat - ]; - description = "IBM AFP document format parser and generator"; - license = lib.licenses.publicDomain; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "OpenAFP-Utils" = callPackage ( - { - mkDerivation, - base, - binary, - bytestring, - containers, - directory, - filepath, - hashable, - line2pdf, - OpenAFP, - regex-base, - regex-posix, - text, - text-locale-encoding, - xhtml, - }: - mkDerivation { - pname = "OpenAFP-Utils"; - version = "1.4.1.3"; - sha256 = "160qlcjh0pgslql9f4zv2asw8kb9kl7wd6dk5958dv0n9p96pay0"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - binary - bytestring - containers - directory - filepath - hashable - line2pdf - OpenAFP - regex-base - regex-posix - text - text-locale-encoding - xhtml - ]; - description = "Assorted utilities to work with AFP data streams"; - license = lib.licenses.publicDomain; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "OpenAL" = callPackage ( { mkDerivation, @@ -33669,84 +12767,6 @@ self: { } ) { inherit (pkgs) openal; }; - "OpenCL" = callPackage ( - { - mkDerivation, - base, - bytestring, - c2hs, - mtl, - OpenCL, - QuickCheck, - }: - mkDerivation { - pname = "OpenCL"; - version = "1.0.3.4"; - sha256 = "04cqddhn4b5m0rj2f6i3gr62yhlfgffmkplb4599sd3qbgx0g27x"; - libraryHaskellDepends = [ - base - bytestring - mtl - ]; - librarySystemDepends = [ OpenCL ]; - libraryToolDepends = [ c2hs ]; - testHaskellDepends = [ - base - QuickCheck - ]; - description = "Haskell high-level wrapper for OpenCL"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { OpenCL = null; }; - - "OpenCLRaw" = callPackage ( - { - mkDerivation, - base, - bytestring, - mtl, - }: - mkDerivation { - pname = "OpenCLRaw"; - version = "1.0.1001"; - sha256 = "1a9nlrmxp3jwc3hbj79xm35aypfby04qy01fk4vyrp19diiinl07"; - libraryHaskellDepends = [ - base - bytestring - mtl - ]; - description = "The OpenCL Standard for heterogenous data-parallel computing"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "OpenCLWrappers" = callPackage ( - { - mkDerivation, - base, - bytestring, - mtl, - }: - mkDerivation { - pname = "OpenCLWrappers"; - version = "0.1.0.3"; - sha256 = "0xlm26jksp4jf1dhkpg4708r1ak5mjdc5x5fjp4fhizmzlk3348s"; - libraryHaskellDepends = [ - base - bytestring - mtl - ]; - description = "The OpenCL Standard for heterogenous data-parallel computing"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "OpenGL" = callPackage ( { mkDerivation, @@ -33782,32 +12802,6 @@ self: { } ) { }; - "OpenGLCheck" = callPackage ( - { - mkDerivation, - base, - checkers, - haskell98, - OpenGL, - QuickCheck, - }: - mkDerivation { - pname = "OpenGLCheck"; - version = "1.0"; - sha256 = "0zjgwd9h6jncvp7x4nn049878jagcajsc63ch5i1ynndnrr1cfar"; - libraryHaskellDepends = [ - base - checkers - haskell98 - OpenGL - QuickCheck - ]; - description = "Quickcheck instances for various data structures"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "OpenGLRaw" = callPackage ( { mkDerivation, @@ -33841,137 +12835,6 @@ self: { } ) { inherit (pkgs) libGL; }; - "OpenGLRaw21" = callPackage ( - { mkDerivation, OpenGLRaw }: - mkDerivation { - pname = "OpenGLRaw21"; - version = "2.0.0.2"; - sha256 = "1kfgwwjnwl5dzwf8bpxcs4q241zap29pjhh4ih5k2cdrnbbn1bz1"; - libraryHaskellDepends = [ OpenGLRaw ]; - description = "The intersection of OpenGL 2.1 and OpenGL 3.1 Core"; - license = "unknown"; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "OpenSCAD" = callPackage ( - { - mkDerivation, - base, - Cabal, - colour, - containers, - deepseq, - filepath, - HUnit, - semigroups, - tasty, - tasty-hunit, - testpack, - }: - mkDerivation { - pname = "OpenSCAD"; - version = "0.3.0.2"; - sha256 = "04b7n6905qvvz8az8zhsjjg8jcf71y5yby7svy2mqzavq2azjm8x"; - libraryHaskellDepends = [ - base - colour - containers - filepath - semigroups - ]; - testHaskellDepends = [ - base - Cabal - colour - containers - deepseq - filepath - HUnit - semigroups - tasty - tasty-hunit - testpack - ]; - description = "ADT wrapper and renderer for OpenSCAD models"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "OpenVG" = callPackage ( - { - mkDerivation, - base, - GLUT, - OpenGL, - OpenGLRaw, - OpenVGRaw, - }: - mkDerivation { - pname = "OpenVG"; - version = "0.7.0"; - sha256 = "0ad96lbwcwl7vvk5vx1mmb0wj28c541jwd9nsm7l5na9qdxfhzvj"; - libraryHaskellDepends = [ - base - GLUT - OpenGL - OpenGLRaw - OpenVGRaw - ]; - description = "OpenVG (ShivaVG-0.2.1) binding"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "OpenVGRaw" = callPackage ( - { - mkDerivation, - base, - OpenGLRaw, - }: - mkDerivation { - pname = "OpenVGRaw"; - version = "0.4.0"; - sha256 = "1fdg5b8f2x36x6gmdkazkmhqgknagd0kzr70hydygsmqbf2im5x2"; - libraryHaskellDepends = [ - base - OpenGLRaw - ]; - description = "Raw binding to OpenVG (ShivaVG-0.2.1 implementation)."; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "Operads" = callPackage ( - { - mkDerivation, - array, - base, - containers, - mtl, - }: - mkDerivation { - pname = "Operads"; - version = "1.0"; - sha256 = "1b880lrzdxww3j19zspnj49ifsn89n0ac1h5xf7nn83847k8q2qk"; - libraryHaskellDepends = [ - array - base - containers - mtl - ]; - description = "Groebner basis computation for Operads"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "OptDir" = callPackage ( { mkDerivation, @@ -33995,39 +12858,6 @@ self: { } ) { }; - "OrPatterns" = callPackage ( - { - mkDerivation, - base, - containers, - haskell-src-exts, - haskell-src-meta, - mtl, - split, - syb, - template-haskell, - }: - mkDerivation { - pname = "OrPatterns"; - version = "0.1"; - sha256 = "0fkg2bnk7gh8lzf8i0bffj6qbbpq15sf8yw88rqpzghsz7xrr111"; - libraryHaskellDepends = [ - base - containers - haskell-src-exts - haskell-src-meta - mtl - split - syb - template-haskell - ]; - description = "A quasiquoter for or-patterns"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "OrchestrateDB" = callPackage ( { mkDerivation, @@ -34125,174 +12955,6 @@ self: { } ) { }; - "Ordinary" = callPackage ( - { - mkDerivation, - base, - safe, - threepenny-gui, - }: - mkDerivation { - pname = "Ordinary"; - version = "0.2018.1.8"; - sha256 = "0n4mk28cdcj71qxifh1prib2a83fjk4dzw6h5dm8a81z6ijribb1"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - safe - threepenny-gui - ]; - executableHaskellDepends = [ - base - safe - threepenny-gui - ]; - testHaskellDepends = [ - base - safe - threepenny-gui - ]; - description = "A Programming Language in Construction"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "Ordinary-exe"; - broken = true; - } - ) { }; - - "Oslo-Vectize" = callPackage ( - { mkDerivation, base }: - mkDerivation { - pname = "Oslo-Vectize"; - version = "0.2"; - sha256 = "05lgpaw6glwflczsa3400fhih717ry4sikhs9ypyd7xlqvraad57"; - revision = "2"; - editedCabalFile = "0axdqcpl3rl9lh9rvd5cn4llvglca8y82p1l3rvka97b33lfj8ky"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ base ]; - description = "spam"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "test1"; - broken = true; - } - ) { }; - - "PArrows" = callPackage ( - { - mkDerivation, - base, - containers, - ghc-prim, - mtl, - }: - mkDerivation { - pname = "PArrows"; - version = "0.1.1"; - sha256 = "08mkq72zv9ywp002vwjk7gl6pq6915zdd06sp4ap935aqdjrhn0p"; - libraryHaskellDepends = [ - base - containers - ghc-prim - mtl - ]; - description = "Arrow parser combinators similar to Parsec"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "PBKDF2" = callPackage ( - { - mkDerivation, - base, - binary, - bytestring, - Crypto, - random, - }: - mkDerivation { - pname = "PBKDF2"; - version = "0.3.1.5"; - sha256 = "0ljacj31pmcwk4lk24p37761sb60ncwjnjbqhnfrgdjqnyj2bd62"; - revision = "1"; - editedCabalFile = "0gnvhijrjj39z9y4m1ic2nys2yi3ida7yh93b9q88r6i02m2k23f"; - libraryHaskellDepends = [ - base - binary - bytestring - Crypto - random - ]; - description = "Make password-based security schemes more secure"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "PCLT" = callPackage ( - { - mkDerivation, - base, - bytestring, - containers, - mtl, - utf8-string, - }: - mkDerivation { - pname = "PCLT"; - version = "0.1"; - sha256 = "0k5abpdz066dsszkj39fd03slb279ddj4i8clnq4gafpa90xbg9q"; - libraryHaskellDepends = [ - base - bytestring - containers - mtl - utf8-string - ]; - description = "Extension to Show: templating, catalogizing, languages, parameters, etc"; - license = "LGPL"; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "PCLT-DB" = callPackage ( - { - mkDerivation, - base, - bytestring, - containers, - convertible, - HDBC, - HDBC-postgresql, - mtl, - PCLT, - }: - mkDerivation { - pname = "PCLT-DB"; - version = "0.1.1"; - sha256 = "0nb5mijpkbllrs9034d3a24drd95lvrhlx60ahcd73kmagh9rfqf"; - libraryHaskellDepends = [ - base - bytestring - containers - convertible - HDBC - HDBC-postgresql - mtl - PCLT - ]; - description = "An addon to PCLT package: enchance PCLT catalog with PostgreSQL powers"; - license = "LGPL"; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "PDBtools" = callPackage ( { mkDerivation, @@ -34316,27 +12978,6 @@ self: { } ) { }; - "PPrinter" = callPackage ( - { - mkDerivation, - base, - containers, - }: - mkDerivation { - pname = "PPrinter"; - version = "0.1.0"; - sha256 = "1fcvjrsq40nc2z4dg5f3bkz9h8psp89ay28k1jnwxqgh74xnylzc"; - libraryHaskellDepends = [ - base - containers - ]; - description = "A generic derivable Haskell pretty printer"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "PSQueue" = callPackage ( { mkDerivation, @@ -34363,87 +13004,6 @@ self: { } ) { }; - "PTQ" = callPackage ( - { - mkDerivation, - base, - containers, - mtl, - network, - network-uri, - xml, - }: - mkDerivation { - pname = "PTQ"; - version = "0.0.8"; - sha256 = "0mbyf63s19rps7p74b4fazbfccpjzx40l1fjszv38kprrg7jff2s"; - isLibrary = false; - isExecutable = true; - enableSeparateDataOutput = true; - executableHaskellDepends = [ - base - containers - mtl - network - network-uri - xml - ]; - description = "An implementation of Montague's PTQ"; - license = "LGPL"; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "PUH-Project" = callPackage ( - { - mkDerivation, - base, - bytestring, - containers, - directory, - mime-mail, - network, - old-locale, - persistent, - persistent-sqlite, - persistent-template, - pwstore-fast, - random, - smtp-mail, - text, - time, - transformers, - }: - mkDerivation { - pname = "PUH-Project"; - version = "0.1.0.1"; - sha256 = "08n5q3a5w8ivy3jb037q8jd0wh0qnwx3d06yn6a0f39cv48qbr1s"; - libraryHaskellDepends = [ - base - bytestring - containers - directory - mime-mail - network - old-locale - persistent - persistent-sqlite - persistent-template - pwstore-fast - random - smtp-mail - text - time - transformers - ]; - description = "This is a package which includes Assignments, Email, User and Reviews modules for Programming in Haskell course"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "PageIO" = callPackage ( { mkDerivation, @@ -34511,380 +13071,10 @@ self: { ]; description = "Page-oriented extraction and composition library"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "pio"; } ) { }; - "Paillier" = callPackage ( - { - mkDerivation, - base, - crypto-numbers, - crypto-random, - HUnit, - QuickCheck, - test-framework, - test-framework-quickcheck2, - test-framework-th, - }: - mkDerivation { - pname = "Paillier"; - version = "0.1.0.3"; - sha256 = "0jcb72shia5p0lpnr3qz57jlzjvnwh4642zwys5d3rg0rwnxigz2"; - libraryHaskellDepends = [ - base - crypto-numbers - crypto-random - ]; - testHaskellDepends = [ - base - crypto-numbers - crypto-random - HUnit - QuickCheck - test-framework - test-framework-quickcheck2 - test-framework-th - ]; - description = "a simple Paillier cryptosystem"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "PandocAgda" = callPackage ( - { - mkDerivation, - Agda, - base, - containers, - directory, - filepath, - mtl, - pandoc, - pandoc-types, - QuickCheck, - text, - time, - xhtml, - }: - mkDerivation { - pname = "PandocAgda"; - version = "2.3.3.0.2"; - sha256 = "1g39mxrfii8vm40cbb7vdfrx2rx9gm4s1xhp3zjkiyi7f979cbk0"; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - Agda - base - containers - directory - filepath - mtl - pandoc - pandoc-types - QuickCheck - text - time - xhtml - ]; - executableHaskellDepends = [ base ]; - description = "Pandoc support for literate Agda"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "agdapandoc"; - broken = true; - } - ) { }; - - "Paraiso" = callPackage ( - { - mkDerivation, - array, - base, - containers, - directory, - failure, - fgl, - filepath, - HUnit, - mtl, - numeric-prelude, - process, - QuickCheck, - random, - repa, - test-framework, - test-framework-hunit, - test-framework-quickcheck2, - text, - typelevel-tensor, - vector, - }: - mkDerivation { - pname = "Paraiso"; - version = "0.3.1.5"; - sha256 = "098mjla0cv6g9c219vnjif0prxlyfaswjvbxj81wbzpm6sks4j24"; - libraryHaskellDepends = [ - array - base - containers - directory - failure - fgl - filepath - mtl - numeric-prelude - random - text - typelevel-tensor - vector - ]; - testHaskellDepends = [ - array - base - containers - directory - fgl - filepath - HUnit - mtl - numeric-prelude - process - QuickCheck - random - repa - test-framework - test-framework-hunit - test-framework-quickcheck2 - text - typelevel-tensor - vector - ]; - description = "a code generator for partial differential equations solvers"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "Parallel-Arrows-BaseSpec" = callPackage ( - { - mkDerivation, - base, - deepseq, - hspec, - Parallel-Arrows-Definition, - split, - }: - mkDerivation { - pname = "Parallel-Arrows-BaseSpec"; - version = "0.1.1.0"; - sha256 = "014fy1sv1b82wxd3wpsxvnv3jn07d24r4ph3bi7p6i8aykx2a9f4"; - libraryHaskellDepends = [ - base - deepseq - hspec - Parallel-Arrows-Definition - split - ]; - testHaskellDepends = [ - base - hspec - Parallel-Arrows-Definition - split - ]; - description = "BaseSpecs used for @Parallel-Arrows-Definition@ and Co"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "Parallel-Arrows-Definition" = callPackage ( - { - mkDerivation, - base, - deepseq, - split, - }: - mkDerivation { - pname = "Parallel-Arrows-Definition"; - version = "0.1.1.0"; - sha256 = "1zdsvg0nx2vnvgx9vcwq8l1kanfp056mmiscs3716lswkrvhdlbf"; - libraryHaskellDepends = [ - base - deepseq - split - ]; - description = "Multithreaded evaluation using Arrows"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "Parallel-Arrows-Eden" = callPackage ( - { - mkDerivation, - base, - deepseq, - edenmodules, - hspec, - parallel, - Parallel-Arrows-BaseSpec, - Parallel-Arrows-Definition, - QuickCheck, - split, - }: - mkDerivation { - pname = "Parallel-Arrows-Eden"; - version = "0.1.1.0"; - sha256 = "1iihlxghr2f70zbw3kkilckzfw24sjax6ck0g42272kj61gk2zy7"; - libraryHaskellDepends = [ - base - deepseq - edenmodules - parallel - Parallel-Arrows-Definition - split - ]; - testHaskellDepends = [ - base - deepseq - edenmodules - hspec - parallel - Parallel-Arrows-BaseSpec - Parallel-Arrows-Definition - QuickCheck - split - ]; - description = "Eden based backend for @Parallel-Arrows-Definition@"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "Parallel-Arrows-Multicore" = callPackage ( - { - mkDerivation, - base, - deepseq, - hspec, - parallel, - Parallel-Arrows-BaseSpec, - Parallel-Arrows-Definition, - split, - }: - mkDerivation { - pname = "Parallel-Arrows-Multicore"; - version = "0.1.1.0"; - sha256 = "0g9ag9lk8mvnbfgzay27sq517an6cmv02fapxsn2lmr5vs7k63ar"; - libraryHaskellDepends = [ - base - deepseq - parallel - Parallel-Arrows-Definition - split - ]; - testHaskellDepends = [ - base - deepseq - hspec - parallel - Parallel-Arrows-BaseSpec - Parallel-Arrows-Definition - split - ]; - description = "GpH based backend for @Parallel-Arrows-Definition@ in a multicore variant"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "Parallel-Arrows-ParMonad" = callPackage ( - { - mkDerivation, - base, - deepseq, - hspec, - monad-par, - Parallel-Arrows-BaseSpec, - Parallel-Arrows-Definition, - split, - }: - mkDerivation { - pname = "Parallel-Arrows-ParMonad"; - version = "0.1.1.0"; - sha256 = "193794v158wfblriklp2jgxa3hk86p4kxbp8sj1hh16dwb0qa9cr"; - libraryHaskellDepends = [ - base - deepseq - monad-par - Parallel-Arrows-Definition - split - ]; - testHaskellDepends = [ - base - deepseq - hspec - monad-par - Parallel-Arrows-BaseSpec - Parallel-Arrows-Definition - split - ]; - description = "Par Monad (@monad-par@) based backend for @Parallel-Arrows-Definition@"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "Parry" = callPackage ( - { - mkDerivation, - base, - binary, - bytestring, - containers, - directory, - ghc-prim, - network, - old-locale, - process, - random, - RSA, - SafeSemaphore, - time, - unix, - }: - mkDerivation { - pname = "Parry"; - version = "0.1.0.0"; - sha256 = "0jy0pya7ahy0nzw1yizi1ll7q5kv4jxgn3n56qgcwv25rh374n4s"; - libraryHaskellDepends = [ - base - binary - bytestring - containers - directory - ghc-prim - network - old-locale - process - random - RSA - SafeSemaphore - time - unix - ]; - description = "A proven synchronization server for high performance computing"; - license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "ParsecTools" = callPackage ( { mkDerivation, @@ -34894,660 +13084,188 @@ self: { mkDerivation { pname = "ParsecTools"; version = "0.0.2.0"; - sha256 = "11vshnbxfl8p38aix4h2b0vms8j58agwxbmhd9pkxai764sl6j7g"; - libraryHaskellDepends = [ - base - parsec - ]; - description = "Parsec combinators for more complex objects"; - license = lib.licenses.gpl3Only; - } - ) { }; - - "ParserFunction" = callPackage ( - { - mkDerivation, - base, - containers, - parsec, - }: - mkDerivation { - pname = "ParserFunction"; - version = "0.1.0"; - sha256 = "0l0j1mdycqsb5d32l7h0giwrj5yj54523gdn0bvim2vz67qrbxrq"; - libraryHaskellDepends = [ - base - containers - parsec - ]; - description = "Parse and evaluate mathematical expressions"; - license = lib.licenses.bsd3; - } - ) { }; - - "PartialTypeSignatures" = callPackage ( - { - mkDerivation, - base, - containers, - syb, - template-haskell, - }: - mkDerivation { - pname = "PartialTypeSignatures"; - version = "0.1.0.1"; - sha256 = "04c01bcfrb79av2j9bivlwanmycasn7gjnc9gb5jm6gkwyvgv0h3"; - libraryHaskellDepends = [ - base - containers - syb - template-haskell - ]; - description = "emulate partial type signatures with template haskell"; - license = lib.licenses.bsd3; - } - ) { }; - - "PasswordGenerator" = callPackage ( - { - mkDerivation, - base, - QuickCheck, - }: - mkDerivation { - pname = "PasswordGenerator"; - version = "0.1.0.0"; - sha256 = "12lxylmpi2f1ahy6w1n7jmwn9kay4hajgr95xbnqqdzv4dw6whzw"; - libraryHaskellDepends = [ - base - QuickCheck - ]; - description = "Simple library for generating passwords"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "PastePipe" = callPackage ( - { - mkDerivation, - base, - cmdargs, - HTTP, - network, - network-uri, - }: - mkDerivation { - pname = "PastePipe"; - version = "1.8"; - sha256 = "10gf9xkys704k89i9lajqcwqsihfxs314vjy35shhwgga5rjnslz"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - cmdargs - HTTP - network - network-uri - ]; - executableHaskellDepends = [ - base - cmdargs - ]; - description = "CLI for pasting to lpaste.net"; - license = lib.licenses.gpl3Only; - mainProgram = "pastepipe"; - } - ) { }; - - "PathTree" = callPackage ( - { - mkDerivation, - base, - containers, - QuickCheck, - test-framework, - test-framework-quickcheck2, - }: - mkDerivation { - pname = "PathTree"; - version = "0.1.1.0"; - sha256 = "1rqq95jsgv3d8jlq21s8pf6l2n6wfi4clr8pjsjv3qp2px9qiy0q"; - libraryHaskellDepends = [ - base - containers - ]; - testHaskellDepends = [ - base - QuickCheck - test-framework - test-framework-quickcheck2 - ]; - description = "A tree used to merge and maintain paths"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "Pathfinder" = callPackage ( - { - mkDerivation, - base, - bytestring, - libxml2, - text, - }: - mkDerivation { - pname = "Pathfinder"; - version = "0.5.10"; - sha256 = "1k38p73jnkfcmmz94iqpzg2g6apsxflidvy8p9lwqyzfmg70brqf"; - libraryHaskellDepends = [ - base - bytestring - text - ]; - librarySystemDepends = [ libxml2 ]; - description = "Relational optimiser and code generator"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { inherit (pkgs) libxml2; }; - - "Peano" = callPackage ( - { mkDerivation, base }: - mkDerivation { - pname = "Peano"; - version = "0.0.4"; - sha256 = "0ss4p40gkqcw9bdh5iy0yar56gpsanrxld74q5dxvakrf8m6cqmz"; - libraryHaskellDepends = [ base ]; - description = "simple Peano numbers"; - license = lib.licenses.bsd3; - } - ) { }; - - "PeanoWitnesses" = callPackage ( - { mkDerivation, base }: - mkDerivation { - pname = "PeanoWitnesses"; - version = "0.1.0.0"; - sha256 = "1g83jws23grl84gnq89rnppw6q7vsbhi9hk6lp5dq2n4818kamgg"; - libraryHaskellDepends = [ base ]; - description = "GADT type witnesses for Peano-style natural numbers"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "PenroseKiteDart" = callPackage ( - { - mkDerivation, - base, - containers, - diagrams-lib, - hspec, - }: - mkDerivation { - pname = "PenroseKiteDart"; - version = "1.5"; - sha256 = "0p0nf91vy5akgpnv8bb0i7bv92y0z774yh5xxynkf5f4rn7bcqjg"; - revision = "2"; - editedCabalFile = "1xdnbssmm0h9dvqpxivs2i037r5sj7cn5pnqzsm1h9cainj2w9g9"; - libraryHaskellDepends = [ - base - containers - diagrams-lib - ]; - testHaskellDepends = [ - base - containers - diagrams-lib - hspec - ]; - benchmarkHaskellDepends = [ - base - containers - diagrams-lib - ]; - description = "Library to explore Penrose's Kite and Dart Tilings"; - license = lib.licenses.bsd3; - } - ) { }; - - "PerfectHash" = callPackage ( - { - mkDerivation, - array, - base, - binary, - bytestring, - cmph, - containers, - digest, - time, - }: - mkDerivation { - pname = "PerfectHash"; - version = "0.1.5"; - sha256 = "0fhpfnp4g673kfnskl31r0hyp9h3fna7iiymz2kggznnw6740n9w"; - libraryHaskellDepends = [ - array - base - binary - bytestring - containers - digest - time - ]; - librarySystemDepends = [ cmph ]; - description = "A perfect hashing library for mapping bytestrings to values"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { inherit (pkgs) cmph; }; - - "PermuteEffects" = callPackage ( - { - mkDerivation, - base, - ReplicateEffects, - }: - mkDerivation { - pname = "PermuteEffects"; - version = "0.2"; - sha256 = "0lmmsvqbnw0k321254xfqlzmddvymy0mj50ax7caqj2fnarfgy4l"; - libraryHaskellDepends = [ - base - ReplicateEffects - ]; - description = "Permutations of effectful computations"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "Persistence" = callPackage ( - { - mkDerivation, - base, - containers, - maximal-cliques, - parallel, - vector, - }: - mkDerivation { - pname = "Persistence"; - version = "2.0.3"; - sha256 = "19zzggnzdfdvvp0svixpdrnxpjn5h4wgpi01vkjydczq4630aiaa"; - libraryHaskellDepends = [ - base - containers - maximal-cliques - parallel - vector - ]; - testHaskellDepends = [ - base - containers - maximal-cliques - parallel - vector - ]; - description = "A versatile library for topological data analysis"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "Phsu" = callPackage ( - { - mkDerivation, - acid-state, - aeson, - base, - blaze-html, - blaze-markup, - containers, - curl, - filepath, - friendly-time, - happstack-server, - happstack-server-tls, - lifted-base, - MissingH, - monad-control, - mtl, - network, - network-uri, - old-locale, - process, - regex-base, - regex-pcre, - safecopy, - string-conversions, - temporary, - text, - time, - }: - mkDerivation { - pname = "Phsu"; - version = "0.1.0.3"; - sha256 = "12f6hqgxyf3svr53g0irn15q69wp9py1bxfw3a5inpkqzmrs04x9"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - acid-state - aeson - base - blaze-html - blaze-markup - containers - curl - filepath - friendly-time - happstack-server - happstack-server-tls - lifted-base - MissingH - monad-control - mtl - network - network-uri - old-locale - process - regex-base - regex-pcre - safecopy - string-conversions - temporary - text - time - ]; - description = "Personal Happstack Server Utils"; - license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - mainProgram = "Phsu"; - broken = true; - } - ) { }; - - "Pipe" = callPackage ( - { - mkDerivation, - base, - filepath, - process, - unix, - }: - mkDerivation { - pname = "Pipe"; - version = "2.1.2"; - sha256 = "1453rjp5whl9vywiq8i86vjfa8ys1ppwabhvlibqwsbx804q9yhr"; - libraryHaskellDepends = [ - base - filepath - process - unix - ]; - description = "Process piping library"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "Piso" = callPackage ( - { - mkDerivation, - base, - template-haskell, - }: - mkDerivation { - pname = "Piso"; - version = "0.2"; - sha256 = "07rzwkhz4b6nymygrhcz07dxl8fnvfrmfpcdj9qz3mwrcyf1kp9n"; - libraryHaskellDepends = [ - base - template-haskell - ]; - description = "Partial isomorphisms"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "PlayHangmanGame" = callPackage ( - { - mkDerivation, - base, - containers, - directory, - mtl, - random, - regex-compat, - }: - mkDerivation { - pname = "PlayHangmanGame"; - version = "0.2"; - sha256 = "17avnaz6da80v5kgz0b3v0zq3y9p2d3mxxv5a09ggcmilbz4xwlg"; - isLibrary = false; - isExecutable = true; - enableSeparateDataOutput = true; - executableHaskellDepends = [ - base - containers - directory - mtl - random - regex-compat + sha256 = "11vshnbxfl8p38aix4h2b0vms8j58agwxbmhd9pkxai764sl6j7g"; + libraryHaskellDepends = [ + base + parsec ]; - description = "Play Hangman Game"; - license = lib.licenses.bsd3; - mainProgram = "playHangmanGame"; + description = "Parsec combinators for more complex objects"; + license = lib.licenses.gpl3Only; } ) { }; - "PlayingCards" = callPackage ( + "ParserFunction" = callPackage ( { mkDerivation, base, - HUnit, - MonadRandom, - QuickCheck, - random-shuffle, + containers, + parsec, }: mkDerivation { - pname = "PlayingCards"; - version = "0.3.0.0"; - sha256 = "1wq4y6dfn93c8pyxbz5dwbd1c2lq78fbw6s2pdk6nvi0zgf5hp6k"; + pname = "ParserFunction"; + version = "0.1.0"; + sha256 = "0l0j1mdycqsb5d32l7h0giwrj5yj54523gdn0bvim2vz67qrbxrq"; libraryHaskellDepends = [ base - HUnit - MonadRandom - QuickCheck - random-shuffle + containers + parsec ]; - description = "Playing cards api"; + description = "Parse and evaluate mathematical expressions"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; } ) { }; - "Plot-ho-matic" = callPackage ( + "PartialTypeSignatures" = callPackage ( { mkDerivation, base, - bytestring, - cairo, - cereal, - Chart, - Chart-cairo, - colour, containers, - data-default-class, - generic-accessors, - glib, - gtk3, - lens, - text, - time, - transformers, - vector, + syb, + template-haskell, }: mkDerivation { - pname = "Plot-ho-matic"; - version = "0.12.2.3"; - sha256 = "1wmylc6z8ikq2qky46jvzffrrjzl8c9xzzlkwsx8223cxa2n59pn"; - isLibrary = true; - isExecutable = true; + pname = "PartialTypeSignatures"; + version = "0.1.0.1"; + sha256 = "04c01bcfrb79av2j9bivlwanmycasn7gjnc9gb5jm6gkwyvgv0h3"; libraryHaskellDepends = [ base - bytestring - cairo - cereal - Chart - Chart-cairo - colour containers - data-default-class - generic-accessors - glib - gtk3 - lens - text - time - transformers - vector + syb + template-haskell ]; - description = "Real-time line plotter for generic data"; + description = "emulate partial type signatures with template haskell"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; } ) { }; - "PlslTools" = callPackage ( + "PastePipe" = callPackage ( { mkDerivation, - array, base, - directory, - filepath, - haskell98, - old-locale, - old-time, - parsec, - process, - random, + cmdargs, + HTTP, + network, + network-uri, }: mkDerivation { - pname = "PlslTools"; - version = "0.0.2"; - sha256 = "1kly1jfki4n9fhgkh2m9j9xj8182s92i7rsq81vcm6i3hd4fac94"; - isLibrary = false; + pname = "PastePipe"; + version = "1.8"; + sha256 = "10gf9xkys704k89i9lajqcwqsihfxs314vjy35shhwgga5rjnslz"; + isLibrary = true; isExecutable = true; - enableSeparateDataOutput = true; + libraryHaskellDepends = [ + base + cmdargs + HTTP + network + network-uri + ]; executableHaskellDepends = [ - array base - directory - filepath - haskell98 - old-locale - old-time - parsec - process - random + cmdargs ]; - description = "So far just a lint like program for PL/SQL. Diff and refactoring tools are planned"; + description = "CLI for pasting to lpaste.net"; + license = lib.licenses.gpl3Only; + mainProgram = "pastepipe"; + } + ) { }; + + "Peano" = callPackage ( + { mkDerivation, base }: + mkDerivation { + pname = "Peano"; + version = "0.0.4"; + sha256 = "0ss4p40gkqcw9bdh5iy0yar56gpsanrxld74q5dxvakrf8m6cqmz"; + libraryHaskellDepends = [ base ]; + description = "simple Peano numbers"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "PlslLint"; } ) { }; - "Plural" = callPackage ( + "PenroseKiteDart" = callPackage ( { mkDerivation, base, containers, - regex-tdfa, + diagrams-lib, + hspec, }: mkDerivation { - pname = "Plural"; - version = "0.0.2"; - sha256 = "047aw1pka7xsqnshbmirkxd80m92w96xfb0kpi1a22bx0kpgg58w"; + pname = "PenroseKiteDart"; + version = "1.5"; + sha256 = "0p0nf91vy5akgpnv8bb0i7bv92y0z774yh5xxynkf5f4rn7bcqjg"; + revision = "2"; + editedCabalFile = "1xdnbssmm0h9dvqpxivs2i037r5sj7cn5pnqzsm1h9cainj2w9g9"; libraryHaskellDepends = [ base containers - regex-tdfa + diagrams-lib ]; - description = "Pluralize English words"; - license = lib.licenses.gpl3Only; + testHaskellDepends = [ + base + containers + diagrams-lib + hspec + ]; + benchmarkHaskellDepends = [ + base + containers + diagrams-lib + ]; + description = "Library to explore Penrose's Kite and Dart Tilings"; + license = lib.licenses.bsd3; } ) { }; - "Pollutocracy" = callPackage ( + "PlayHangmanGame" = callPackage ( { mkDerivation, - array, base, - clock, - GLUT, + containers, + directory, + mtl, random, + regex-compat, }: mkDerivation { - pname = "Pollutocracy"; - version = "1.0"; - sha256 = "036b114f6fas2w3kmbcb1ria2ymdgi1sc5iqkskfgbc1iizhm2wh"; + pname = "PlayHangmanGame"; + version = "0.2"; + sha256 = "17avnaz6da80v5kgz0b3v0zq3y9p2d3mxxv5a09ggcmilbz4xwlg"; isLibrary = false; isExecutable = true; + enableSeparateDataOutput = true; executableHaskellDepends = [ - array base - clock - GLUT + containers + directory + mtl random + regex-compat ]; - description = "An imaginary world"; - license = "GPL"; - hydraPlatforms = lib.platforms.none; - mainProgram = "Pollutocracy"; - broken = true; + description = "Play Hangman Game"; + license = lib.licenses.bsd3; + mainProgram = "playHangmanGame"; } ) { }; - "PortFusion" = callPackage ( + "Plural" = callPackage ( { mkDerivation, base, - bytestring, - network, - splice, + containers, + regex-tdfa, }: mkDerivation { - pname = "PortFusion"; - version = "1.2.1"; - sha256 = "1n095a7ggkgvxdagn7wi1rnb3h766lah5avyrdxnv4g0kl143vvy"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ + pname = "Plural"; + version = "0.0.2"; + sha256 = "047aw1pka7xsqnshbmirkxd80m92w96xfb0kpi1a22bx0kpgg58w"; + libraryHaskellDepends = [ base - bytestring - network - splice + containers + regex-tdfa ]; - description = "high-performance distributed reverse / forward proxy & tunneling for TCP"; + description = "Pluralize English words"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - mainProgram = "PortFusion"; - broken = true; } ) { }; @@ -35593,43 +13311,6 @@ self: { } ) { }; - "PostgreSQL" = callPackage ( - { - mkDerivation, - base, - mtl, - }: - mkDerivation { - pname = "PostgreSQL"; - version = "0.2"; - sha256 = "0p5q3yc8ymgzzlc600h4mb9w86ncrgjdbpqfi49b2jqvkcx5bwrr"; - libraryHaskellDepends = [ - base - mtl - ]; - description = "Thin wrapper over the C postgresql library"; - license = "unknown"; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "Prelude" = callPackage ( - { mkDerivation, base }: - mkDerivation { - pname = "Prelude"; - version = "0.1.0.1"; - sha256 = "14p4jkhzdh618r7gvj6dd4w1zj4b032g4nx43bihnnaf2dqyppy6"; - revision = "1"; - editedCabalFile = "14z8gv75jnvykk5naqcqqrdcx7160kzd3gnfdvx6rw4nqzsi6hw1"; - libraryHaskellDepends = [ base ]; - description = "A Prelude module replacement"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "PrimitiveArray" = callPackage ( { mkDerivation, @@ -35757,122 +13438,6 @@ self: { } ) { }; - "PrimitiveArray-Pretty" = callPackage ( - { - mkDerivation, - base, - diagrams, - diagrams-contrib, - diagrams-lib, - diagrams-postscript, - diagrams-svg, - filepath, - log-domain, - QuickCheck, - split, - test-framework, - test-framework-quickcheck2, - test-framework-th, - }: - mkDerivation { - pname = "PrimitiveArray-Pretty"; - version = "0.0.0.2"; - sha256 = "0kc9pisc731nfamwg0bzwq9cbg897dacskdr89n3qzy45p2b5l47"; - libraryHaskellDepends = [ - base - diagrams - diagrams-contrib - diagrams-lib - diagrams-postscript - diagrams-svg - filepath - log-domain - split - ]; - testHaskellDepends = [ - base - QuickCheck - test-framework - test-framework-quickcheck2 - test-framework-th - ]; - description = "Pretty-printing for primitive arrays"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "Printf-TH" = callPackage ( - { - mkDerivation, - base, - haskell98, - pretty, - template-haskell, - }: - mkDerivation { - pname = "Printf-TH"; - version = "0.1.1"; - sha256 = "0n1gva510p69vy25zvjkzwqqz2gilbns1wnrzz2p22rjkkbrinvx"; - libraryHaskellDepends = [ - base - haskell98 - pretty - template-haskell - ]; - license = "LGPL"; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "PriorityChansConverger" = callPackage ( - { - mkDerivation, - base, - containers, - stm, - }: - mkDerivation { - pname = "PriorityChansConverger"; - version = "0.1"; - sha256 = "0258ysarn6k5kxxwy4lz9ww2rdhg5mg7h6idfbfrszcgwkcp22a1"; - libraryHaskellDepends = [ - base - containers - stm - ]; - description = "Read single output from an array of inputs - channels with priorities"; - license = "LGPL"; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "ProbabilityMonads" = callPackage ( - { - mkDerivation, - base, - MaybeT, - MonadRandom, - mtl, - }: - mkDerivation { - pname = "ProbabilityMonads"; - version = "0.1.0"; - sha256 = "0vmjg91yq4p0121ypjx4l1hh77j8xj6ha7awdvrjk5fjmz9xryh3"; - libraryHaskellDepends = [ - base - MaybeT - MonadRandom - mtl - ]; - description = "Probability distribution monads"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "Probnet" = callPackage ( { mkDerivation, base }: mkDerivation { @@ -36007,40 +13572,6 @@ self: { } ) { }; - "Proper" = callPackage ( - { - mkDerivation, - base, - containers, - HUnit, - parsec, - syb, - }: - mkDerivation { - pname = "Proper"; - version = "0.5.2.0"; - sha256 = "0y8jrvhnvb3nr8zi4hw8cm90nnz4lmcp3npvzsbz2wlkif5qf7k6"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - containers - syb - ]; - executableHaskellDepends = [ - base - containers - HUnit - parsec - syb - ]; - description = "An implementation of propositional logic in Haskell"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "ProxN" = callPackage ( { mkDerivation, @@ -36060,111 +13591,6 @@ self: { } ) { }; - "Pugs" = callPackage ( - { - mkDerivation, - array, - base, - binary, - bytestring, - containers, - control-timeout, - directory, - filepath, - FindBin, - hashable, - hashtables, - haskeline, - HsParrot, - HsSyck, - MetaObject, - mtl, - network, - parsec, - pretty, - process, - pugs-compat, - pugs-DrIFT, - random, - stm, - stringtable-atom, - text, - time, - utf8-string, - }: - mkDerivation { - pname = "Pugs"; - version = "6.2.13.20150815"; - sha256 = "0w7x4zgz00wzchqdhajpf1ir3h0jxw1vgh030g384k1qbbjv4la2"; - isLibrary = false; - isExecutable = true; - enableSeparateDataOutput = true; - executableHaskellDepends = [ - array - base - binary - bytestring - containers - control-timeout - directory - filepath - FindBin - hashable - hashtables - haskeline - HsParrot - HsSyck - MetaObject - mtl - network - parsec - pretty - process - pugs-compat - pugs-DrIFT - random - stm - stringtable-atom - text - time - utf8-string - ]; - description = "A Perl 6 Implementation"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "pugs"; - } - ) { }; - - "Pup-Events" = callPackage ( - { - mkDerivation, - base, - Pup-Events-Client, - Pup-Events-PQueue, - Pup-Events-Server, - }: - mkDerivation { - pname = "Pup-Events"; - version = "1.0"; - sha256 = "13zjhxq8q1qd7sbc17d73g6mfsfls6rl3ndawbcfjgj73b7xajyj"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - Pup-Events-Client - Pup-Events-PQueue - Pup-Events-Server - ]; - executableHaskellDepends = [ base ]; - doHaddock = false; - description = "A networked event handling framework for hooking into other programs"; - license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - mainProgram = "pupevents-all"; - } - ) { }; - "Pup-Events-Client" = callPackage ( { mkDerivation, @@ -36192,40 +13618,6 @@ self: { } ) { }; - "Pup-Events-Demo" = callPackage ( - { - mkDerivation, - base, - GLUT, - OpenGL, - parsec, - Pup-Events-Client, - Pup-Events-PQueue, - Pup-Events-Server, - stm, - }: - mkDerivation { - pname = "Pup-Events-Demo"; - version = "1.3"; - sha256 = "06cf18ccamaknkm2fcmj17ymdb2i3130q5bakbji4m8349bzhxxb"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - GLUT - OpenGL - parsec - Pup-Events-Client - Pup-Events-PQueue - Pup-Events-Server - stm - ]; - description = "A networked event handling framework for hooking into other programs"; - license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "Pup-Events-PQueue" = callPackage ( { mkDerivation, @@ -36245,35 +13637,6 @@ self: { } ) { }; - "Pup-Events-Server" = callPackage ( - { - mkDerivation, - base, - network, - parsec, - Pup-Events-PQueue, - stm, - transformers, - }: - mkDerivation { - pname = "Pup-Events-Server"; - version = "1.2"; - sha256 = "18n4bzhwvx336dv4yb5pbicaxbzzhhd36951diwhgw4gf5ji80dn"; - libraryHaskellDepends = [ - base - network - parsec - Pup-Events-PQueue - stm - transformers - ]; - description = "A networked event handling framework for hooking into other programs"; - license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "PyF" = callPackage ( { mkDerivation, @@ -36324,109 +13687,6 @@ self: { } ) { }; - "QIO" = callPackage ( - { - mkDerivation, - base, - containers, - mtl, - old-time, - random, - }: - mkDerivation { - pname = "QIO"; - version = "1.3"; - sha256 = "19xbnqm90b1wsxbjhjm1q1mld0rv4p6ga1chzl4i00yccpwsh7g8"; - libraryHaskellDepends = [ - base - containers - mtl - old-time - random - ]; - description = "The Quantum IO Monad is a library for defining quantum computations in Haskell"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "QLearn" = callPackage ( - { - mkDerivation, - base, - random, - vector, - }: - mkDerivation { - pname = "QLearn"; - version = "0.1.0.0"; - sha256 = "0vbkvc0d7j4awvdiqs0kgz3fa9m0991zlzhs3w7rxi8if2crkn47"; - libraryHaskellDepends = [ - base - random - vector - ]; - description = "A library for fast, easy-to-use Q-learning"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "QuadEdge" = callPackage ( - { - mkDerivation, - base, - random, - vector, - }: - mkDerivation { - pname = "QuadEdge"; - version = "0.2"; - sha256 = "1f3wxc8ipb8ka02xq2snjs5wgl10mk528zjkpwdw5wf3fldhz037"; - libraryHaskellDepends = [ - base - random - vector - ]; - description = "QuadEdge structure for representing triangulations"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "QuadTree" = callPackage ( - { - mkDerivation, - base, - composition, - lens, - QuickCheck, - }: - mkDerivation { - pname = "QuadTree"; - version = "0.11.0"; - sha256 = "1qlll96vkhyfqvkj753kf5vhrnmmkk4pq8a6kszbm44x11zvw8nf"; - libraryHaskellDepends = [ - base - composition - lens - ]; - testHaskellDepends = [ - base - composition - lens - QuickCheck - ]; - description = "QuadTree library for Haskell, with lens support"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "QuasiText" = callPackage ( { mkDerivation, @@ -36454,89 +13714,6 @@ self: { } ) { }; - "Quelea" = callPackage ( - { - mkDerivation, - base, - bytestring, - cassandra-cql, - cereal, - containers, - derive, - directory, - lens, - mtl, - optparse-applicative, - process, - random, - template-haskell, - text, - time, - transformers, - tuple, - unix, - uuid, - z3, - zeromq4-haskell, - }: - mkDerivation { - pname = "Quelea"; - version = "1.0.0"; - sha256 = "1qypcy5f8axllwcvhfy218iskw1mkjv424rwvfwklz8a2qb6a2xk"; - libraryHaskellDepends = [ - base - bytestring - cassandra-cql - cereal - containers - derive - directory - lens - mtl - optparse-applicative - process - random - template-haskell - text - time - transformers - tuple - unix - uuid - z3 - zeromq4-haskell - ]; - description = "Programming with Eventual Consistency over Cassandra"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "QuickAnnotate" = callPackage ( - { - mkDerivation, - base, - haskell-src-exts, - }: - mkDerivation { - pname = "QuickAnnotate"; - version = "0.6"; - sha256 = "0xphlira6gxfs7md1b55vf9biqzw9v1kzmcs17x07xnzcy1y3dvb"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base ]; - executableHaskellDepends = [ - base - haskell-src-exts - ]; - description = "Annotation Framework"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "qapp"; - broken = true; - } - ) { }; - "QuickCheck" = callPackage ( { mkDerivation, @@ -36692,120 +13869,6 @@ self: { } ) { }; - "QuickPlot" = callPackage ( - { - mkDerivation, - aeson, - attoparsec, - base, - bytestring, - haskell-src-meta, - parsec, - scientific, - snap, - snap-core, - template-haskell, - text, - vector, - websockets, - websockets-snap, - }: - mkDerivation { - pname = "QuickPlot"; - version = "0.1.0.1"; - sha256 = "1d9zllxl8vyjmb9m9kdgrv9v9hwnspyiqhjnb5ds5kmby6r4r1h2"; - revision = "1"; - editedCabalFile = "0ykvkbrf5mavrk9jdl5w01dldwi3x2dwg89hiin95vi8ay0r02gq"; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - aeson - attoparsec - base - bytestring - haskell-src-meta - parsec - scientific - snap - snap-core - template-haskell - text - vector - websockets - websockets-snap - ]; - description = "Quick and easy data visualization with Haskell"; - license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "Quickson" = callPackage ( - { - mkDerivation, - aeson, - attoparsec, - base, - bytestring, - either, - text, - }: - mkDerivation { - pname = "Quickson"; - version = "0.2"; - sha256 = "1mr8ilcjlwxcpbblk6l6w022qbf4ngzd0q62fc9k1kjb0w1palbg"; - libraryHaskellDepends = [ - aeson - attoparsec - base - bytestring - either - text - ]; - description = "Quick JSON extractions with Aeson"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "R-pandoc" = callPackage ( - { - mkDerivation, - base, - directory, - filepath, - pandoc-types, - process, - split, - }: - mkDerivation { - pname = "R-pandoc"; - version = "0.2.3"; - sha256 = "05pb2gr0s4fjd3lj90r6hdj30bzsz16jsibmi99xi3172plyk449"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - directory - filepath - pandoc-types - process - split - ]; - executableHaskellDepends = [ - base - pandoc-types - ]; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "R-pandoc"; - broken = true; - } - ) { }; - "RANSAC" = callPackage ( { mkDerivation, @@ -36853,40 +13916,6 @@ self: { } ) { }; - "RESTng" = callPackage ( - { - mkDerivation, - base, - HDBC, - HDBC-postgresql, - mtl, - old-time, - parsec, - redHandlers, - xhtml, - yuiGrid, - }: - mkDerivation { - pname = "RESTng"; - version = "0.1"; - sha256 = "1fans0znb3i33n9cxd8w140n1sl8bdyl874cdrgc5wvlg6y3y4aj"; - libraryHaskellDepends = [ - base - HDBC - HDBC-postgresql - mtl - old-time - parsec - redHandlers - xhtml - yuiGrid - ]; - description = "A framework for writing RESTful applications"; - license = "unknown"; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "RFC1751" = callPackage ( { mkDerivation, @@ -36920,452 +13949,6 @@ self: { } ) { }; - "RJson" = callPackage ( - { - mkDerivation, - array, - base, - bytestring, - containers, - iconv, - mtl, - parsec, - syb-with-class, - }: - mkDerivation { - pname = "RJson"; - version = "0.3.7"; - sha256 = "04vlhcyikd4liy65xiy3xn4slkm5w4q3r8ir54s095zs9bq8jx1n"; - libraryHaskellDepends = [ - array - base - bytestring - containers - iconv - mtl - parsec - syb-with-class - ]; - description = "A reflective JSON serializer/parser"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "RMP" = - callPackage - ( - { - mkDerivation, - allocated-processor, - base, - canlib, - cv-combinators, - ftd2xx, - HOpenCV, - vector-space, - }: - mkDerivation { - pname = "RMP"; - version = "0.0.2"; - sha256 = "0bcilw8z764p6idjj19kxk9if5l4pxyn7zszxjv0q3bfky1rd8ay"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - allocated-processor - base - ]; - librarySystemDepends = [ - canlib - ftd2xx - ]; - executableHaskellDepends = [ - allocated-processor - base - cv-combinators - HOpenCV - vector-space - ]; - executableSystemDepends = [ - canlib - ftd2xx - ]; - description = "Binding to code that controls a Segway RMP"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) - { - canlib = null; - ftd2xx = null; - }; - - "RNAFold" = callPackage ( - { - mkDerivation, - ADPfusion, - base, - BiobaseTurner, - BiobaseVienna, - BiobaseXNA, - cmdargs, - containers, - deepseq, - lens, - primitive, - PrimitiveArray, - repa, - strict, - vector, - }: - mkDerivation { - pname = "RNAFold"; - version = "1.99.3.4"; - sha256 = "0r4y4rinrdr2xwfpnys5agm1awr3qr9im4cqczz1fzjz7r425m96"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - ADPfusion - base - BiobaseTurner - BiobaseVienna - BiobaseXNA - cmdargs - containers - deepseq - lens - primitive - PrimitiveArray - repa - strict - vector - ]; - executableHaskellDepends = [ - base - BiobaseTurner - BiobaseVienna - BiobaseXNA - cmdargs - ]; - description = "RNA secondary structure prediction"; - license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "RNAFoldProgs" = callPackage ( - { - mkDerivation, - base, - Biobase, - BiobaseTurner, - BiobaseTypes, - BiobaseVienna, - cmdargs, - containers, - HsTools, - primitive, - PrimitiveArray, - RNAFold, - split, - vector, - }: - mkDerivation { - pname = "RNAFoldProgs"; - version = "0.0.0.3"; - sha256 = "1bmybm80fhw7xqjzny2iricicbzqsl33snpsjamfcr16a939wlwp"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - Biobase - BiobaseTurner - BiobaseTypes - BiobaseVienna - cmdargs - containers - HsTools - primitive - PrimitiveArray - RNAFold - split - vector - ]; - description = "RNA secondary structure folding"; - license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "RNAdesign" = callPackage ( - { - mkDerivation, - array, - base, - BiobaseTurner, - BiobaseVienna, - BiobaseXNA, - bytestring, - cmdargs, - containers, - fgl, - fgl-extras-decompositions, - file-embed, - lens, - monad-primitive, - mwc-random-monad, - parallel, - parsec, - ParsecTools, - primitive, - PrimitiveArray, - random, - RNAFold, - transformers, - tuple, - vector, - ViennaRNA-bindings, - }: - mkDerivation { - pname = "RNAdesign"; - version = "0.1.2.2"; - sha256 = "1qdfbwiydkh0974m7r4ashxhsbkss8k9d6kpc07vj4hspjf5v5ag"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - array - base - BiobaseTurner - BiobaseVienna - BiobaseXNA - containers - fgl - fgl-extras-decompositions - lens - monad-primitive - mwc-random-monad - parallel - parsec - ParsecTools - primitive - PrimitiveArray - random - RNAFold - transformers - tuple - vector - ViennaRNA-bindings - ]; - executableHaskellDepends = [ - bytestring - cmdargs - file-embed - ]; - description = "Multi-target RNA sequence design"; - license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - mainProgram = "RNAdesign"; - } - ) { }; - - "RNAdraw" = callPackage ( - { - mkDerivation, - array, - base, - BiobaseXNA, - bytestring, - cmdargs, - containers, - PrimitiveArray, - QuasiText, - repa, - split, - text, - vector, - }: - mkDerivation { - pname = "RNAdraw"; - version = "0.2.0.1"; - sha256 = "1d85lps04b2sn23fzyn5hd8lj2lf7byqk7flj8p2b905hl3062dx"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - array - base - BiobaseXNA - bytestring - containers - PrimitiveArray - QuasiText - repa - split - text - vector - ]; - executableHaskellDepends = [ cmdargs ]; - description = "Draw RNA secondary structures"; - license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - mainProgram = "RNAdotplot"; - } - ) { }; - - "RNAlien" = callPackage ( - { - mkDerivation, - aeson, - base, - BiobaseBlast, - BiobaseFasta, - BiobaseHTTP, - BiobaseTypes, - BlastHTTP, - bytestring, - cassava, - ClustalParser, - cmdargs, - containers, - directory, - edit-distance, - either-unwrap, - filepath, - hierarchical-clustering, - HTTP, - http-conduit, - http-types, - hxt, - matrix, - network, - parsec, - process, - pureMD5, - random, - silently, - split, - Taxonomy, - text, - text-metrics, - time, - transformers, - vector, - ViennaRNAParser, - }: - mkDerivation { - pname = "RNAlien"; - version = "1.7.0"; - sha256 = "1yqf2i1q5s65i968ha4lhnn0njmgapb30sxwdq5rpf7wbw2f29by"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson - base - BiobaseBlast - BiobaseFasta - BiobaseHTTP - BiobaseTypes - BlastHTTP - bytestring - cassava - ClustalParser - cmdargs - containers - directory - edit-distance - either-unwrap - filepath - hierarchical-clustering - HTTP - http-conduit - http-types - hxt - matrix - network - parsec - process - pureMD5 - random - silently - Taxonomy - text - text-metrics - transformers - vector - ViennaRNAParser - ]; - executableHaskellDepends = [ - base - BiobaseFasta - BiobaseTypes - bytestring - cassava - cmdargs - containers - directory - either-unwrap - filepath - process - random - split - text - time - vector - ViennaRNAParser - ]; - description = "Unsupervized construction of RNA family models"; - license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "RNAwolf" = callPackage ( - { - mkDerivation, - base, - BiobaseTrainingData, - BiobaseXNA, - bytestring, - cmdargs, - containers, - deepseq, - directory, - parallel, - PrimitiveArray, - random, - split, - StatisticalMethods, - vector, - }: - mkDerivation { - pname = "RNAwolf"; - version = "0.4.0.0"; - sha256 = "1s7ilg8814gglg4n64nk94b51fdzh2fm1y4k1mw8d81qd66y60vn"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - BiobaseTrainingData - BiobaseXNA - bytestring - containers - deepseq - directory - parallel - PrimitiveArray - random - StatisticalMethods - vector - ]; - executableHaskellDepends = [ - cmdargs - split - ]; - description = "RNA folding with non-canonical basepairs and base-triplets"; - license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "RSA" = callPackage ( { mkDerivation, @@ -37632,44 +14215,6 @@ self: { } ) { }; - "Randometer" = callPackage ( - { - mkDerivation, - base, - random-fu, - }: - mkDerivation { - pname = "Randometer"; - version = "0.1.0.1"; - sha256 = "1anj962cpgl06hipjfdygxlvq6adkdg3r0ghkwkzzf3dklmwzng6"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - random-fu - ]; - description = "Randomness intuition trainer"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - mainProgram = "randometer"; - broken = true; - } - ) { }; - - "Range" = callPackage ( - { mkDerivation, base }: - mkDerivation { - pname = "Range"; - version = "0.1.0.0"; - sha256 = "0759508s75zba89jjr56sqpm7idgwsxynmf9zl9hwrz9q11fxrqh"; - libraryHaskellDepends = [ base ]; - description = "Data structure for managing ranges"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "Ranged-sets" = callPackage ( { mkDerivation, @@ -37695,89 +14240,6 @@ self: { } ) { }; - "Ranka" = callPackage ( - { - mkDerivation, - base, - HTTP, - json, - network, - utf8-string, - XMPP, - }: - mkDerivation { - pname = "Ranka"; - version = "0.1"; - sha256 = "1df010121jdjbagc3gg906kydmwwpa7np1c0mx7w2v64mr7i2q1r"; - isLibrary = false; - isExecutable = true; - enableSeparateDataOutput = true; - executableHaskellDepends = [ - base - HTTP - json - network - utf8-string - XMPP - ]; - description = "HTTP to XMPP omegle chats gate"; - license = "GPL"; - hydraPlatforms = lib.platforms.none; - mainProgram = "Ranka"; - } - ) { }; - - "Rasenschach" = callPackage ( - { - mkDerivation, - array, - base, - bytestring, - cereal, - containers, - convertible, - directory, - filepath, - ghc, - GLUT, - monad-loops, - OpenGL, - OpenGLRaw, - time, - Yampa, - }: - mkDerivation { - pname = "Rasenschach"; - version = "0.1.3.2"; - sha256 = "1wk4bylydfdqdmzjybkpbmvp4znp9i26mvkl2541gp5vwv7blms6"; - isLibrary = false; - isExecutable = true; - enableSeparateDataOutput = true; - executableHaskellDepends = [ - array - base - bytestring - cereal - containers - convertible - directory - filepath - ghc - GLUT - monad-loops - OpenGL - OpenGLRaw - time - Yampa - ]; - description = "Soccer simulation"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "Rasenschach"; - broken = true; - } - ) { }; - "Rasterific" = callPackage ( { mkDerivation, @@ -37887,93 +14349,6 @@ self: { } ) { }; - "Redmine" = callPackage ( - { - mkDerivation, - aeson, - base, - bytestring, - connection, - containers, - HTTP, - http-client-tls, - http-conduit, - http-types, - HUnit, - MissingH, - network, - resourcet, - text, - time, - transformers, - }: - mkDerivation { - pname = "Redmine"; - version = "0.0.8"; - sha256 = "1lmcaaaqpzk3k6khv5cd9kg54ighva8ni5paamgvk4wjkd2n010g"; - libraryHaskellDepends = [ - aeson - base - bytestring - connection - containers - HTTP - http-client-tls - http-conduit - http-types - MissingH - network - resourcet - text - time - transformers - ]; - testHaskellDepends = [ - aeson - base - bytestring - connection - containers - HTTP - http-client-tls - http-conduit - http-types - HUnit - MissingH - network - resourcet - text - time - transformers - ]; - description = "Library to access Redmine's REST services"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "Ref" = callPackage ( - { - mkDerivation, - base, - ghc-prim, - }: - mkDerivation { - pname = "Ref"; - version = "0.1.1.0"; - sha256 = "15qikbjbydbabc26skhavshzrsaz17a71q8hfxqvi5ix2bhhz4hm"; - libraryHaskellDepends = [ - base - ghc-prim - ]; - description = "Generic Mutable Ref Abstraction Layer"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "RefSerialize" = callPackage ( { mkDerivation, @@ -38001,79 +14376,6 @@ self: { } ) { }; - "Referees" = callPackage ( - { - mkDerivation, - base, - bytestring, - cassava, - cmdargs, - cond, - containers, - directory, - glpk-hs, - matrix, - MissingH, - vector, - }: - mkDerivation { - pname = "Referees"; - version = "0.0.0"; - sha256 = "076pa25455jd4b0dbs9gfksaa1ww66yvnknki4yivc0pm60pnh7r"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - bytestring - cassava - containers - glpk-hs - matrix - MissingH - vector - ]; - executableHaskellDepends = [ - base - cmdargs - cond - containers - directory - ]; - description = "A utility for computing distributions of material to review among reviewers"; - license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - mainProgram = "referees"; - broken = true; - } - ) { }; - - "RepLib" = callPackage ( - { - mkDerivation, - base, - containers, - mtl, - template-haskell, - transformers, - }: - mkDerivation { - pname = "RepLib"; - version = "0.5.4.1"; - sha256 = "064avhz0x77yd5irvvs4sa1fcn8srb3n5sqbd4vmsjva6514jr9y"; - libraryHaskellDepends = [ - base - containers - mtl - template-haskell - transformers - ]; - description = "Generic programming library with representation types"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "ReplaceUmlaut" = callPackage ( { mkDerivation, @@ -38140,270 +14442,6 @@ self: { } ) { }; - "ReplicateEffects" = callPackage ( - { mkDerivation, base }: - mkDerivation { - pname = "ReplicateEffects"; - version = "0.3"; - sha256 = "194nbnbrf5g3d2pch6z9zapzhi0i2z30vpgjj0h5x8bfwzpf1527"; - libraryHaskellDepends = [ base ]; - description = "Composable replication schemes of applicative functors"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "ReviewBoard" = callPackage ( - { - mkDerivation, - base, - directory, - HTTP, - json, - mtl, - network, - process, - random, - }: - mkDerivation { - pname = "ReviewBoard"; - version = "0.2.2"; - sha256 = "1grcs7mily2gpxdzq1pcz1f71z2d8pz6paqrb8yv38nkckvm4j75"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - HTTP - json - mtl - network - random - ]; - executableHaskellDepends = [ - base - directory - HTTP - json - mtl - network - process - random - ]; - description = "Haskell bindings to ReviewBoard"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "RichConditional" = callPackage ( - { mkDerivation, base }: - mkDerivation { - pname = "RichConditional"; - version = "0.1.0.0"; - sha256 = "065plckw5r16aalkf51y7hs2xjandad3hgfly795wakqfhdnrajw"; - libraryHaskellDepends = [ base ]; - description = "Tiny library to replace classic if/else"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "Ritt-Wu" = callPackage ( - { - mkDerivation, - algebra, - base, - criterion, - deepseq, - massiv, - scheduler, - sscript, - tasty, - tasty-hunit, - tasty-quickcheck, - tasty-smallcheck, - }: - mkDerivation { - pname = "Ritt-Wu"; - version = "0.1.0.0"; - sha256 = "1jk9a2hgnm82b4b9cbfsw8aib1q4jrdb9zal858vbprsvx6ig36f"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - algebra - base - criterion - deepseq - massiv - scheduler - sscript - ]; - executableHaskellDepends = [ - algebra - base - criterion - deepseq - massiv - scheduler - sscript - ]; - testHaskellDepends = [ - base - deepseq - scheduler - tasty - tasty-hunit - tasty-quickcheck - tasty-smallcheck - ]; - benchmarkHaskellDepends = [ - algebra - base - criterion - deepseq - massiv - scheduler - sscript - ]; - description = "Parallel implementation of Ritt-Wu's algorithm"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "Ritt-Wu-exe"; - broken = true; - } - ) { }; - - "Rlang-QQ" = callPackage ( - { - mkDerivation, - array, - base, - binary, - bytestring, - Cabal, - containers, - data-binary-ieee754, - directory, - doctest, - filepath, - haskell-src-meta, - HList, - hspec, - lens, - mtl, - process, - repa, - SHA, - split, - syb, - template-haskell, - temporary, - text, - transformers, - trifecta, - utf8-string, - vector, - zlib, - }: - mkDerivation { - pname = "Rlang-QQ"; - version = "0.3.1.0"; - sha256 = "0rl3cmr7vfc8vk7132y40ib0l53v9yndw71bmp25zj24nkmha7hj"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - array - base - binary - bytestring - Cabal - containers - data-binary-ieee754 - directory - filepath - haskell-src-meta - HList - lens - mtl - process - repa - SHA - split - syb - template-haskell - temporary - text - transformers - trifecta - utf8-string - vector - zlib - ]; - testHaskellDepends = [ - base - directory - doctest - hspec - lens - vector - ]; - description = "quasiquoter for inline-R code"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "RollingDirectory" = callPackage ( - { - mkDerivation, - base, - directory, - filepath, - hdaemonize-buildfix, - hinotify, - hsyslog, - HUnit, - monad-parallel, - QuickCheck, - test-framework, - test-framework-hunit, - test-framework-quickcheck2, - unix, - }: - mkDerivation { - pname = "RollingDirectory"; - version = "0.1"; - sha256 = "0mw4hd99v8pp75ng75cv3vym5ld93f07mpkcbi2b6v12k68bxx4v"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - directory - filepath - hdaemonize-buildfix - hinotify - hsyslog - monad-parallel - unix - ]; - testHaskellDepends = [ - base - HUnit - QuickCheck - test-framework - test-framework-hunit - test-framework-quickcheck2 - ]; - description = "Limits the size of a directory's contents"; - license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - mainProgram = "RollingDirectory"; - } - ) { }; - "RoundingFiasco" = callPackage ( { mkDerivation, base }: mkDerivation { @@ -38472,195 +14510,6 @@ self: { } ) { inherit (pkgs) alsa-lib; }; - "RxHaskell" = callPackage ( - { - mkDerivation, - base, - containers, - stm, - transformers, - }: - mkDerivation { - pname = "RxHaskell"; - version = "0.2"; - sha256 = "0pwxsvkpdr4vzr6cpgjmkr55ip6ns3gcv8pma7dwzg21myx9c3vl"; - libraryHaskellDepends = [ - base - containers - stm - transformers - ]; - description = "Reactive Extensions for Haskell"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "S3" = callPackage ( - { - mkDerivation, - base, - base-encoding, - bytestring, - cryptohash-md5, - cryptohash-sha1, - cryptohash-sha256, - deepseq, - hashable, - http-io-streams, - io-streams, - Prelude, - text, - text-short, - time, - X, - }: - mkDerivation { - pname = "S3"; - version = "0.1.0.0"; - sha256 = "0z59h36qnb1vvshqik3f1ai3a3frnmzzxdcmkbbh3x6flnih7r0a"; - revision = "1"; - editedCabalFile = "115432ww5hm6nv82rib363sx38f7vm0kl0xd5qc2dpfn1jljr0g7"; - libraryHaskellDepends = [ - base - base-encoding - bytestring - cryptohash-md5 - cryptohash-sha1 - cryptohash-sha256 - deepseq - hashable - http-io-streams - io-streams - Prelude - text - text-short - time - X - ]; - description = "Library for accessing S3 compatible storage services"; - license = lib.licenses.gpl3Plus; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "SBench" = callPackage ( - { - mkDerivation, - base, - bytestring, - cassava, - criterion, - deepseq, - directory, - filepath, - gnuplot, - hp2any-core, - parsec, - process, - utf8-string, - vector, - }: - mkDerivation { - pname = "SBench"; - version = "0.2.0"; - sha256 = "0ym9qdwwn180365hgvwi6djzbqvfiyqrd2fhywpvxihwxnlnhiam"; - libraryHaskellDepends = [ - base - bytestring - cassava - criterion - deepseq - directory - filepath - gnuplot - hp2any-core - parsec - process - utf8-string - vector - ]; - description = "A benchmark suite for runtime and heap measurements over a series of inputs"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "SCRIPTWriter" = callPackage ( - { - mkDerivation, - array, - base, - binary, - bitcoin-hs, - bitcoin-script, - bytestring, - containers, - mtl, - uu-tc, - }: - mkDerivation { - pname = "SCRIPTWriter"; - version = "1.0.1"; - sha256 = "0sipk7brfw42zq4ksp7gz23ghia9faffshc5zh8j0zb4f1497mwi"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - array - base - binary - bitcoin-hs - bitcoin-script - bytestring - containers - mtl - uu-tc - ]; - executableHaskellDepends = [ base ]; - description = "ESCRIPT: a human friendly language for programming Bitcoin scripts"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "SCRIPTWriter-exe"; - } - ) { }; - - "SCalendar" = callPackage ( - { - mkDerivation, - base, - containers, - hspec, - QuickCheck, - scalendar, - text, - time, - }: - mkDerivation { - pname = "SCalendar"; - version = "1.1.0"; - sha256 = "139lggc8f7sw703asdyxqbja0jfcgphx0l5si1046lsryinvywa9"; - libraryHaskellDepends = [ - base - containers - text - time - ]; - testHaskellDepends = [ - base - containers - hspec - QuickCheck - scalendar - text - time - ]; - description = "This is a library for handling calendars and resource availability based on the \"top-nodes algorithm\" and set operations"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "SDL" = callPackage ( { mkDerivation, @@ -38845,176 +14694,6 @@ self: { inherit (pkgs) SDL2_ttf; }; - "SFML" = - callPackage - ( - { - mkDerivation, - base, - csfml-audio, - csfml-graphics, - csfml-network, - csfml-system, - csfml-window, - sfml-audio, - sfml-graphics, - sfml-network, - sfml-system, - sfml-window, - }: - mkDerivation { - pname = "SFML"; - version = "2.3.2.4"; - sha256 = "1hsvbw54cidvldx4i8cpvjpd3s16qrw2b6405qhwrxcigfzn9b8a"; - libraryHaskellDepends = [ base ]; - librarySystemDepends = [ - csfml-audio - csfml-graphics - csfml-network - csfml-system - csfml-window - sfml-audio - sfml-graphics - sfml-network - sfml-system - sfml-window - ]; - description = "SFML bindings"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) - { - csfml-audio = null; - csfml-graphics = null; - csfml-network = null; - csfml-system = null; - csfml-window = null; - sfml-audio = null; - sfml-graphics = null; - sfml-network = null; - sfml-system = null; - sfml-window = null; - }; - - "SFML-control" = callPackage ( - { - mkDerivation, - base, - mtl, - SFML, - template-haskell, - }: - mkDerivation { - pname = "SFML-control"; - version = "0.2.0.2"; - sha256 = "001h9y9395mz6fr58s1i8svn4pyy5iqbkzzsp19xdphh4w69za9g"; - libraryHaskellDepends = [ - base - mtl - SFML - template-haskell - ]; - description = "Higher level library on top of SFML"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "SFont" = callPackage ( - { - mkDerivation, - array, - base, - SDL, - Sprig, - }: - mkDerivation { - pname = "SFont"; - version = "0.1.1"; - sha256 = "077yvys00kp8lmkvc4mbynmkk9nn2ib5rh38bqcw0wnwsvl7140i"; - libraryHaskellDepends = [ - array - base - SDL - Sprig - ]; - description = "SFont SDL Bitmap Fonts"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "SG" = callPackage ( - { - mkDerivation, - base, - mtl, - }: - mkDerivation { - pname = "SG"; - version = "1.0"; - sha256 = "0aj15lp5wbldaa9ndfvni1iq7kcrjv1syln9yz77jg6p8ndk61jv"; - libraryHaskellDepends = [ - base - mtl - ]; - description = "Small geometry library for dealing with vectors and collision detection"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "SGdemo" = callPackage ( - { - mkDerivation, - base, - GLUT, - OpenGL, - SG, - }: - mkDerivation { - pname = "SGdemo"; - version = "1.1"; - sha256 = "0f7s8y5wq479i2yix2ik5ffsqkrb65pi31n6a03453kvk5jc7wv6"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - GLUT - OpenGL - SG - ]; - description = "An example of using the SG and OpenGL libraries"; - license = "GPL"; - hydraPlatforms = lib.platforms.none; - mainProgram = "sgdemo"; - } - ) { }; - - "SGplus" = callPackage ( - { - mkDerivation, - base, - mtl, - }: - mkDerivation { - pname = "SGplus"; - version = "1.1"; - sha256 = "1qwrhb7nw22v7j6d9x3a1ps9l7mjpwjy13zxssmimwfhbch055v3"; - libraryHaskellDepends = [ - base - mtl - ]; - description = "(updated) Small geometry library for dealing with vectors and collision detection"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "SHA" = callPackage ( { mkDerivation, @@ -39058,296 +14737,111 @@ self: { AES, base, bytestring, - monads-tf, - transformers, - }: - mkDerivation { - pname = "SHA2"; - version = "0.2.5"; - sha256 = "1zs79a327x6myfam3p2vr8lmszcaqnkll2qz8n4sy835vz328j40"; - libraryHaskellDepends = [ - AES - base - bytestring - monads-tf - transformers - ]; - description = "Fast, incremental SHA hashing for bytestrings"; - license = lib.licenses.bsd3; - } - ) { }; - - "SJW" = callPackage ( - { - mkDerivation, - attoparsec, - base, - Cabal, - containers, - directory, - filepath, - mtl, - optparse-applicative, - random, - text, - time, - unix, - }: - mkDerivation { - pname = "SJW"; - version = "0.1.2.4"; - sha256 = "1flr9dp3v4cyn8fs6sybibbim5spzab7kxi6rxpczjcwmnn1cv78"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - attoparsec - base - containers - directory - filepath - mtl - random - text - time - unix - ]; - executableHaskellDepends = [ - attoparsec - base - optparse-applicative - text - ]; - testHaskellDepends = [ - base - Cabal - directory - filepath - random - ]; - benchmarkHaskellDepends = [ - base - directory - filepath - random - time - ]; - description = "The Simple Javascript Wrench"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "sjw"; - broken = true; - } - ) { }; - - "SMTPClient" = callPackage ( - { - mkDerivation, - base, - containers, - extensible-exceptions, - hsemail, - network, - old-locale, - old-time, - }: - mkDerivation { - pname = "SMTPClient"; - version = "1.1.0"; - sha256 = "07njj24c43iz33c641d5ish62h13lhpvn2mx5pv5i6s3fm3bxsfk"; - libraryHaskellDepends = [ - base - containers - extensible-exceptions - hsemail - network - old-locale - old-time - ]; - description = "A simple SMTP client library"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "SNet" = callPackage ( - { - mkDerivation, - base, - bindings-DSL, - c2hsc, - containers, - data-default, - lens, - mtl, - transformers, - }: - mkDerivation { - pname = "SNet"; - version = "0.1.0"; - sha256 = "19ls2icg5vflznf9wn5b429x6blismcdxinh66vd8cr8hwgc8m99"; - libraryHaskellDepends = [ - base - bindings-DSL - containers - data-default - lens - mtl - transformers - ]; - libraryToolDepends = [ c2hsc ]; - description = "Declarative coördination language for streaming networks"; - license = lib.licenses.lgpl3Only; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "SQLDeps" = callPackage ( - { - mkDerivation, - base, - hashable, - HDBC, - HDBC-sqlite3, - mtl, - unordered-containers, - }: - mkDerivation { - pname = "SQLDeps"; - version = "0.1"; - sha256 = "1dx4vxrc7hjms3bx80bngwr5jxkb1v9hps09ayi0mqwhnfzq5vgp"; - libraryHaskellDepends = [ - base - hashable - HDBC - HDBC-sqlite3 - mtl - unordered-containers - ]; - description = "Calculate db-data dependencies of functions"; - license = lib.licenses.bsd3; - } - ) { }; - - "SSTG" = callPackage ( - { - mkDerivation, - base, - containers, - ghc, - ghc-paths, - }: - mkDerivation { - pname = "SSTG"; - version = "0.1.1.7"; - sha256 = "1qgkqd025cd9q0la36i45kd356n8sxnzgnq40v71sdbv8f7wb4yh"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - containers - ghc - ghc-paths - ]; - executableHaskellDepends = [ - base - containers - ]; - testHaskellDepends = [ - base - containers - ]; - description = "STG Symbolic Execution"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "SSTG-exe"; - broken = true; - } - ) { }; - - "STL" = callPackage ( - { - mkDerivation, - attoparsec, - base, - bytestring, - cereal, - text, + monads-tf, + transformers, }: mkDerivation { - pname = "STL"; - version = "0.3.0.6"; - sha256 = "18bz9qxsl7lq3j18ilczi175j3djwlpckzj5a65l4dj7d1sw1c35"; + pname = "SHA2"; + version = "0.2.5"; + sha256 = "1zs79a327x6myfam3p2vr8lmszcaqnkll2qz8n4sy835vz328j40"; libraryHaskellDepends = [ - attoparsec + AES base bytestring - cereal - text + monads-tf + transformers ]; - description = "STL 3D geometry format parsing and pretty-printing"; + description = "Fast, incremental SHA hashing for bytestrings"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; } ) { }; - "STLinkUSB" = callPackage ( + "SJW" = callPackage ( { mkDerivation, + attoparsec, base, - binary, - bytestring, - transformers, - usb, - vector, + Cabal, + containers, + directory, + filepath, + mtl, + optparse-applicative, + random, + text, + time, + unix, }: mkDerivation { - pname = "STLinkUSB"; - version = "0.1.1"; - sha256 = "1b0cxrjbldsdh948fa3d5qr0lmjl2g5qkh7ii4smkmsakzk9jx0s"; + pname = "SJW"; + version = "0.1.2.4"; + sha256 = "1flr9dp3v4cyn8fs6sybibbim5spzab7kxi6rxpczjcwmnn1cv78"; + isLibrary = true; + isExecutable = true; libraryHaskellDepends = [ + attoparsec base - binary - bytestring - transformers - usb - vector + containers + directory + filepath + mtl + random + text + time + unix + ]; + executableHaskellDepends = [ + attoparsec + base + optparse-applicative + text + ]; + testHaskellDepends = [ + base + Cabal + directory + filepath + random + ]; + benchmarkHaskellDepends = [ + base + directory + filepath + random + time ]; - description = "STLink USB interface in Haskell"; + description = "The Simple Javascript Wrench"; license = lib.licenses.bsd3; hydraPlatforms = lib.platforms.none; + mainProgram = "sjw"; + broken = true; } ) { }; - "STM32-Zombie" = callPackage ( + "SQLDeps" = callPackage ( { mkDerivation, base, - binary, - bytestring, - containers, - STLinkUSB, - STM32F103xx-SVD, - transformers, + hashable, + HDBC, + HDBC-sqlite3, + mtl, + unordered-containers, }: mkDerivation { - pname = "STM32-Zombie"; - version = "0.2.0"; - sha256 = "10vknxgihz3cgyzi1rmyh30zqyg0q7ll653ljndjj8lh3hnghajx"; + pname = "SQLDeps"; + version = "0.1"; + sha256 = "1dx4vxrc7hjms3bx80bngwr5jxkb1v9hps09ayi0mqwhnfzq5vgp"; libraryHaskellDepends = [ base - binary - bytestring - containers - STLinkUSB - STM32F103xx-SVD - transformers + hashable + HDBC + HDBC-sqlite3 + mtl + unordered-containers ]; - description = "control a STM32F103 microcontroller"; + description = "Calculate db-data dependencies of functions"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; } ) { }; @@ -39396,68 +14890,6 @@ self: { } ) { }; - "SVD2HS" = callPackage ( - { - mkDerivation, - base, - containers, - pretty, - text, - xml-conduit, - xml-lens, - }: - mkDerivation { - pname = "SVD2HS"; - version = "0.1"; - sha256 = "16crp18wyp7gb99x0vmjcqdwvsvns2kppaic3aspnidlc14hwg35"; - libraryHaskellDepends = [ - base - containers - pretty - text - xml-conduit - xml-lens - ]; - description = "translate a SVD of a Microcontroller to Haskell tables"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "SVG2Q" = callPackage ( - { - mkDerivation, - base, - haskell98, - language-c, - pretty, - svgutils, - syb, - xml, - }: - mkDerivation { - pname = "SVG2Q"; - version = "0.3"; - sha256 = "07cr20cdz4dk8c9j84j1wlzhg4qb4hmgyvh2nnlh4vc52bvvizmq"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - haskell98 - language-c - pretty - svgutils - syb - xml - ]; - description = "Code generation tool for Quartz code from a SVG"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "svg2q"; - } - ) { }; - "SVGFonts" = callPackage ( { mkDerivation, @@ -39558,51 +14990,6 @@ self: { } ) { }; - "SableCC2Hs" = callPackage ( - { - mkDerivation, - array, - base, - containers, - filepath, - loch-th, - pretty, - text, - transformers, - wl-pprint-text, - xml, - }: - mkDerivation { - pname = "SableCC2Hs"; - version = "0.0.1.0"; - sha256 = "1sngk170p5wyi3sgjkl74fr3k570fbfabhbg0dnp8z4iw53d8jfl"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - array - base - containers - ]; - executableHaskellDepends = [ - array - base - containers - filepath - loch-th - pretty - text - transformers - wl-pprint-text - xml - ]; - description = "Generate a parser (in Haskell) with the SableCC parser generator"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "sable2hs"; - broken = true; - } - ) { }; - "Safe" = callPackage ( { mkDerivation, base }: mkDerivation { @@ -39643,112 +15030,6 @@ self: { } ) { }; - "Salsa" = - callPackage - ( - { - mkDerivation, - base, - bytestring, - file-embed, - glib, - mono, - }: - mkDerivation { - pname = "Salsa"; - version = "0.2.0.2"; - sha256 = "0915mwi1ksa85in03vzm5hqbvk6ih7l0zslg5cmy7j9fc0jhgwgd"; - libraryHaskellDepends = [ - base - bytestring - file-embed - ]; - librarySystemDepends = [ - glib - mono - ]; - description = "A .NET Bridge for Haskell"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) - { - inherit (pkgs) glib; - inherit (pkgs) mono; - }; - - "Saturnin" = callPackage ( - { - mkDerivation, - base, - bytestring, - data-default, - directory, - either, - exceptions, - filepath, - formatting, - hlint, - hspec, - ini, - mtl, - network, - old-locale, - process, - spawn, - stm, - temporary, - text, - time, - unordered-containers, - yaml, - }: - mkDerivation { - pname = "Saturnin"; - version = "0.1.0.2"; - sha256 = "0f6z17ry2n0qkgajiwip09r7dbcn72dkz7gh4igwk3n0igxlpqsr"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - bytestring - data-default - directory - either - exceptions - filepath - formatting - ini - mtl - network - old-locale - process - spawn - stm - temporary - text - time - unordered-containers - yaml - ]; - executableHaskellDepends = [ base ]; - testHaskellDepends = [ - base - data-default - either - hlint - hspec - mtl - ]; - description = "Saturnin CI / Job System"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "saturnin"; - broken = true; - } - ) { }; - "SciBaseTypes" = callPackage ( { mkDerivation, @@ -39828,184 +15109,6 @@ self: { } ) { }; - "SciFlow" = callPackage ( - { - mkDerivation, - base, - binary, - bytestring, - constraints, - cryptohash-sha256, - distributed-process, - distributed-process-monad-control, - exceptions, - hashable, - lifted-async, - memory, - monad-control, - mtl, - network-transport, - network-transport-tcp, - rainbow, - sqlite-simple, - stm, - template-haskell, - text, - th-lift-instances, - time, - unordered-containers, - }: - mkDerivation { - pname = "SciFlow"; - version = "0.7.0"; - sha256 = "1fm94yr872dg21j6pc0rxs5qvq7i72yn4338bhn73d1sv95c29ir"; - libraryHaskellDepends = [ - base - binary - bytestring - constraints - cryptohash-sha256 - distributed-process - distributed-process-monad-control - exceptions - hashable - lifted-async - memory - monad-control - mtl - network-transport - network-transport-tcp - rainbow - sqlite-simple - stm - template-haskell - text - th-lift-instances - time - unordered-containers - ]; - description = "Scientific workflow management system"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "SciFlow-drmaa" = callPackage ( - { - mkDerivation, - base, - distributed-process, - drmaa, - hostname, - network-transport-tcp, - random, - SciFlow, - stm, - unordered-containers, - }: - mkDerivation { - pname = "SciFlow-drmaa"; - version = "0.1.0"; - sha256 = "08lgdm7nlqapz54ixaf7z319laqiknk3vhhhljbch093vb0925bv"; - libraryHaskellDepends = [ - base - distributed-process - drmaa - hostname - network-transport-tcp - random - SciFlow - stm - unordered-containers - ]; - description = "Scientific workflow management system"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "ScratchFs" = callPackage ( - { - mkDerivation, - base, - bytestring, - directory, - filepath, - HFuse, - hsyslog, - process, - regex-compat, - sqlite-simple, - unix, - }: - mkDerivation { - pname = "ScratchFs"; - version = "0.1.0.2"; - sha256 = "0c410hnby7g5qdx1kj3shwxl0m910vl3rj3ayx6f5qsz5by5rczh"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - bytestring - directory - filepath - HFuse - hsyslog - process - regex-compat - sqlite-simple - unix - ]; - description = "Size limited temp filesystem based on fuse"; - license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - mainProgram = "ScratchFs"; - broken = true; - } - ) { }; - - "Scurry" = callPackage ( - { - mkDerivation, - base, - binary, - bytestring, - containers, - network, - network-bytestring, - parsec, - random, - stm, - time, - unix, - }: - mkDerivation { - pname = "Scurry"; - version = "0.0.3"; - sha256 = "0iwlai8zspz08l3v7qf505mgfxn5v177kqa1x4xfssq7wzxawq8j"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - binary - bytestring - containers - network - network-bytestring - parsec - random - stm - time - unix - ]; - description = "A cross platform P2P VPN application built using Haskell"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "scurry"; - } - ) { }; - "SecureHash-SHA3" = callPackage ( { mkDerivation, @@ -40029,240 +15132,6 @@ self: { } ) { }; - "SegmentTree" = callPackage ( - { mkDerivation, base }: - mkDerivation { - pname = "SegmentTree"; - version = "0.3"; - sha256 = "1hagm0y9x2j1wcgk5ibxnlh2slnxfggn79cq20ws0zvd4yqw3231"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base ]; - description = "Data structure for querying the set (or count) of intervals covering given point"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "SelectSequencesFromMSA" = callPackage ( - { - mkDerivation, - base, - biocore, - biofasta, - bytestring, - ClustalParser, - cmdargs, - containers, - directory, - either-unwrap, - filepath, - matrix, - parsec, - process, - text, - text-metrics, - transformers, - vector, - ViennaRNAParser, - }: - mkDerivation { - pname = "SelectSequencesFromMSA"; - version = "1.0.5"; - sha256 = "0m68xiaa6acaq30qlscpd5lm7x0rfrqxyn0krwahkqd5s9h5aj7i"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - biocore - biofasta - bytestring - ClustalParser - cmdargs - containers - directory - either-unwrap - filepath - matrix - parsec - process - text - text-metrics - transformers - vector - ViennaRNAParser - ]; - executableHaskellDepends = [ - base - cmdargs - directory - either-unwrap - ]; - description = "Selects a representative subset of sequences from multiple sequence alignment"; - license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - mainProgram = "SelectSequencesFromMSA"; - } - ) { }; - - "Semantique" = callPackage ( - { - mkDerivation, - base, - bytestring, - classify, - containers, - mongoDB, - mtl, - network, - process, - split, - tagsoup, - text, - }: - mkDerivation { - pname = "Semantique"; - version = "0.3.0"; - sha256 = "1l334lvm56xr7rw135l6nj7iz4h1yskl1fcrr5rdimlw7dyw2cr8"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - bytestring - classify - containers - mongoDB - mtl - network - process - split - tagsoup - text - ]; - description = "Command-line tool for maintaining the Semantique database"; - license = lib.licenses.publicDomain; - hydraPlatforms = lib.platforms.none; - mainProgram = "semantique"; - broken = true; - } - ) { }; - - "Semigroup" = callPackage ( - { - mkDerivation, - base, - bytestring, - containers, - mtl, - }: - mkDerivation { - pname = "Semigroup"; - version = "0.0.7"; - sha256 = "1mdw1z50gr02j5hycki5rl95b1yk7xfrdk056ajw9ghw48s0jpx6"; - libraryHaskellDepends = [ - base - bytestring - containers - mtl - ]; - description = "A semigroup"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "SeqAlign" = callPackage ( - { - mkDerivation, - base, - bytestring, - vector, - }: - mkDerivation { - pname = "SeqAlign"; - version = "0.1.0.0"; - sha256 = "0vk63ni1a93win8if032nps5y0xi245cmjqq2j4xfsdddg5bdln5"; - libraryHaskellDepends = [ - base - bytestring - vector - ]; - description = "Sequence Alignment"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "SessionLogger" = callPackage ( - { - mkDerivation, - base, - directory, - filepath, - hslogger, - mtl, - old-locale, - random, - time, - }: - mkDerivation { - pname = "SessionLogger"; - version = "0.3.0.0"; - sha256 = "1zgjslf9p64aa7dwww44jq2f6iic1192ic98gmjsjj5ww8anl8c3"; - libraryHaskellDepends = [ - base - directory - filepath - hslogger - mtl - old-locale - random - time - ]; - description = "Easy Loggingframework"; - license = lib.licenses.lgpl3Only; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "Set" = callPackage ( - { - mkDerivation, - base, - containers, - gauge, - util, - }: - mkDerivation { - pname = "Set"; - version = "0.0.2.0"; - sha256 = "1kll1gdc4mg8sh483qj67yagcmgbbwz31xbinid0cpkcl93gccdb"; - libraryHaskellDepends = [ - base - containers - util - ]; - testHaskellDepends = [ - base - containers - util - ]; - benchmarkHaskellDepends = [ - base - containers - gauge - util - ]; - description = "See README for more info"; - license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "ShellCheck_0_9_0" = callPackage ( { mkDerivation, @@ -40436,173 +15305,6 @@ self: { } ) { }; - "Shellac" = callPackage ( - { - mkDerivation, - base, - directory, - mtl, - unix, - }: - mkDerivation { - pname = "Shellac"; - version = "0.9.9"; - sha256 = "005793m4njccn28ngbhmi4zp7grf71rmhscy2i5bsy8an4b4wkg6"; - revision = "1"; - editedCabalFile = "1nq7j00vfrhfzkbsgr6j28zr339gx5bcvq6x9mvh9qvs2jmcdz1z"; - libraryHaskellDepends = [ - base - directory - mtl - unix - ]; - description = "A framework for creating shell envinronments"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "Shellac-compatline" = callPackage ( - { - mkDerivation, - base, - Shellac, - Shellac-readline, - }: - mkDerivation { - pname = "Shellac-compatline"; - version = "0.9.9"; - sha256 = "0qmiadsi8yihvlgdx88y9smw18jzcgpacv5mdipwrv2lrix9hnr5"; - revision = "1"; - editedCabalFile = "0ws8prjzj4j9yf1mqdnvlpv367cx4wfqa5jq5n6x7g9npwmd5ya0"; - libraryHaskellDepends = [ - base - Shellac - Shellac-readline - ]; - description = "\"compatline\" backend module for Shellac"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "Shellac-editline" = callPackage ( - { - mkDerivation, - base, - editline, - Shellac, - }: - mkDerivation { - pname = "Shellac-editline"; - version = "0.9.9"; - sha256 = "172fd5khxdi1wa3244mziypd7sp0d2wc2wh19w0gzmiqp1d2vqc7"; - revision = "1"; - editedCabalFile = "1wyal7nqnl5sj74d9mid2dw35d37b40v132cg3zhw9ys24k0jl6v"; - libraryHaskellDepends = [ - base - editline - Shellac - ]; - description = "Editline backend module for Shellac"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "Shellac-haskeline" = callPackage ( - { - mkDerivation, - base, - haskeline, - mtl, - Shellac, - }: - mkDerivation { - pname = "Shellac-haskeline"; - version = "0.2.1"; - sha256 = "0lhm2j8gl2vk4qasb2d6ips6qnvb4bg0mpb7mczqhahzq3i38sh4"; - libraryHaskellDepends = [ - base - haskeline - mtl - Shellac - ]; - description = "Haskeline backend module for Shellac"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "Shellac-readline" = callPackage ( - { - mkDerivation, - base, - readline, - Shellac, - }: - mkDerivation { - pname = "Shellac-readline"; - version = "0.9.9"; - sha256 = "0lc8xf81cz6slyl7djr5kibp96f7fqmqlhlmvv9x5as4k9gbq7rm"; - revision = "1"; - editedCabalFile = "019p7q1nmi2v7rb1rjnch4zaz506c4ry28mkivhkqiq3ay1m86hs"; - libraryHaskellDepends = [ - base - readline - Shellac - ]; - description = "Readline backend module for Shellac"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "ShortestPathProblems" = callPackage ( - { - mkDerivation, - ADPfusion, - ADPfusionSet, - base, - FormalGrammars, - log-domain, - PrimitiveArray, - QuickCheck, - tasty, - tasty-quickcheck, - tasty-th, - text, - vector, - }: - mkDerivation { - pname = "ShortestPathProblems"; - version = "0.0.0.1"; - sha256 = "1p8xbrchk13mrij4vs0licblh3siq6m3kiz0l2n38xbmcc43zh8f"; - libraryHaskellDepends = [ - ADPfusion - ADPfusionSet - base - FormalGrammars - log-domain - PrimitiveArray - text - vector - ]; - testHaskellDepends = [ - base - QuickCheck - tasty - tasty-quickcheck - tasty-th - vector - ]; - description = "grammars for TSP and SHP"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "ShowF" = callPackage ( { mkDerivation, base }: mkDerivation { @@ -40795,35 +15497,6 @@ self: { } ) { }; - "Shpadoinkle-debug" = callPackage ( - { - mkDerivation, - aeson, - base, - jsaddle, - lens, - text, - unliftio, - }: - mkDerivation { - pname = "Shpadoinkle-debug"; - version = "0.0.0.1"; - sha256 = "1yvr3d40aa6sl3gpyr24a5hij63jm2p0jrx0kac7asjihvd6fk2g"; - libraryHaskellDepends = [ - aeson - base - jsaddle - lens - text - unliftio - ]; - description = "Debugging tools for Shpadoinkle applications"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "Shpadoinkle-developer-tools" = callPackage ( { mkDerivation, @@ -41432,164 +16105,6 @@ self: { } ) { }; - "SimpleGL" = callPackage ( - { - mkDerivation, - base, - GLFW, - JuicyPixels, - OpenGL, - SimpleH, - vector, - }: - mkDerivation { - pname = "SimpleGL"; - version = "0.9.3"; - sha256 = "0c674q5jiqvscc53m0z5vkmljla29pcll15gbvxr86pqxwmqm5hr"; - libraryHaskellDepends = [ - base - GLFW - JuicyPixels - OpenGL - SimpleH - vector - ]; - description = "A Simple Graphics Library from the SimpleH framework"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "SimpleH" = callPackage ( - { - mkDerivation, - base, - bytestring, - clock, - containers, - cpu, - directory, - filepath, - network, - time, - unix, - }: - mkDerivation { - pname = "SimpleH"; - version = "1.2"; - sha256 = "0g05yplsm65xmx7brdcqy5kc8qcmzj96vywicwqpmigcv8pi9zmc"; - libraryHaskellDepends = [ - base - bytestring - clock - containers - cpu - directory - filepath - network - time - unix - ]; - description = "A light, clean and powerful Haskell utility library"; - license = "unknown"; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "SimpleLog" = callPackage ( - { - mkDerivation, - ansi-terminal, - attoparsec, - base, - bytestring, - containers, - directory, - ForkableT, - monad-control, - mtl, - old-locale, - resourcet, - semigroups, - stm, - template-haskell, - text, - th-lift, - time, - transformers, - transformers-base, - }: - mkDerivation { - pname = "SimpleLog"; - version = "0.1.0.3"; - sha256 = "12fjdmaxcpgp13gr1s25ybb5fysvbcg40j9yb29wvpbmf67xrsbw"; - libraryHaskellDepends = [ - ansi-terminal - attoparsec - base - bytestring - containers - directory - ForkableT - monad-control - mtl - old-locale - resourcet - semigroups - stm - template-haskell - text - th-lift - time - transformers - transformers-base - ]; - description = "Simple, configurable logging"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "SimpleServer" = callPackage ( - { - mkDerivation, - base, - cmdargs, - dyre, - transformers, - wai-routes, - warp, - }: - mkDerivation { - pname = "SimpleServer"; - version = "0.1.1.2"; - sha256 = "0nb8j2sgbmf0nk4fbs2y4a4kdiv3vxc7qqaczl40b11l60qz4ab3"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - cmdargs - dyre - transformers - wai-routes - warp - ]; - executableHaskellDepends = [ - base - cmdargs - dyre - transformers - wai-routes - warp - ]; - description = "A simple static file server, for when apache is overkill"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - mainProgram = "simpleserver"; - } - ) { }; - "SimpleTableGenerator" = callPackage ( { mkDerivation, @@ -41672,39 +16187,6 @@ self: { } ) { }; - "Slides" = callPackage ( - { - mkDerivation, - base, - colour, - diagrams-lib, - diagrams-svg, - file-embed, - regex-applicative, - }: - mkDerivation { - pname = "Slides"; - version = "0.1.0.10"; - sha256 = "0w60zffs83d5xmhz0d12aip5xqgih495wfrah25d64f9fh6j4j0i"; - libraryHaskellDepends = [ - base - colour - diagrams-lib - diagrams-svg - file-embed - regex-applicative - ]; - testHaskellDepends = [ - base - file-embed - ]; - description = "Generate slides from Haskell code"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "SmithNormalForm" = callPackage ( { mkDerivation, @@ -41728,282 +16210,6 @@ self: { } ) { }; - "Smooth" = callPackage ( - { - mkDerivation, - base, - containers, - DifferenceLogic, - FirstOrderTheory, - HUnit, - Proper, - }: - mkDerivation { - pname = "Smooth"; - version = "0.1.0.1"; - sha256 = "0rwl5dw1vpgszhs7pjk146kp8h8n3ggvpby9y18fr7zsqgsckzcd"; - libraryHaskellDepends = [ - base - containers - DifferenceLogic - FirstOrderTheory - HUnit - Proper - ]; - description = "A tiny, lazy SMT solver"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "SmtLib" = callPackage ( - { - mkDerivation, - base, - parsec, - transformers, - }: - mkDerivation { - pname = "SmtLib"; - version = "0.1.0.0"; - sha256 = "0wmdzl3anbbfqik2kl2wjy57cd9r3ix8h8g28rmzqbvlajrvqcv1"; - libraryHaskellDepends = [ - base - parsec - transformers - ]; - description = "Library for parsing SMTLIB2"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "Snusmumrik" = callPackage ( - { - mkDerivation, - base, - bytestring, - convertible, - cpphs, - directory, - filepath, - haskell98, - HDBC, - HDBC-sqlite3, - HFuse, - hslogger, - iconv, - LibZip, - regex-tdfa, - stm, - unix, - utf8-string, - xml, - zip, - }: - mkDerivation { - pname = "Snusmumrik"; - version = "0.0.1"; - sha256 = "1f4d493hnv7fag9c2p2hnm0kc6b705z7mgdk4z6s4g24536j4ksk"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - bytestring - convertible - directory - filepath - haskell98 - HDBC - HDBC-sqlite3 - HFuse - hslogger - iconv - LibZip - regex-tdfa - stm - unix - utf8-string - xml - ]; - executableSystemDepends = [ zip ]; - executableToolDepends = [ cpphs ]; - description = "E-library directory based on FUSE virtual file system"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { inherit (pkgs) zip; }; - - "SoOSiM" = callPackage ( - { - mkDerivation, - base, - concurrent-supply, - containers, - monad-coroutine, - mtl, - stm, - transformers, - }: - mkDerivation { - pname = "SoOSiM"; - version = "0.2.1.0"; - sha256 = "0ghblkhf942gcidsvah8z6wigymzfng1010mp17pvacizamakcmp"; - libraryHaskellDepends = [ - base - concurrent-supply - containers - monad-coroutine - mtl - stm - transformers - ]; - description = "Abstract full system simulator"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "SoccerFun" = callPackage ( - { - mkDerivation, - base, - base-unicode-symbols, - binary, - derive, - directory, - mtl, - process, - random, - zlib, - }: - mkDerivation { - pname = "SoccerFun"; - version = "0.5.3"; - sha256 = "12dpvm8lzp8gllyrf7yzpljpdr0jdk42zhi7zrnzvjzryv6w268j"; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base - base-unicode-symbols - binary - derive - directory - mtl - process - random - zlib - ]; - description = "Football simulation framework for teaching functional programming"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "sfRecord"; - } - ) { }; - - "SoccerFunGL" = callPackage ( - { - mkDerivation, - base, - base-unicode-symbols, - binary, - GLUT, - OpenGL, - process, - random, - SoccerFun, - }: - mkDerivation { - pname = "SoccerFunGL"; - version = "0.5.3"; - sha256 = "02j5ni8565ba7rvr6gw9z65qdfl7rd17586gqlkx2iz2v2bwkasf"; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base - base-unicode-symbols - binary - GLUT - OpenGL - process - random - SoccerFun - ]; - description = "OpenGL UI for the SoccerFun framework"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "Sonnex" = callPackage ( - { - mkDerivation, - base, - QuickCheck, - }: - mkDerivation { - pname = "Sonnex"; - version = "0.1.0.3"; - sha256 = "0fqaw4wh7ml35kl75qsvqsq17g5pndf7x6clcmqxpwayjn2syzda"; - libraryHaskellDepends = [ base ]; - testHaskellDepends = [ - base - QuickCheck - ]; - description = "Sonnex is an alternative to Soundex for french language"; - license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "SourceGraph" = callPackage ( - { - mkDerivation, - base, - Cabal, - containers, - directory, - fgl, - filepath, - Graphalyze, - graphviz, - haskell-src-exts, - mtl, - multiset, - random, - }: - mkDerivation { - pname = "SourceGraph"; - version = "0.7.0.7"; - sha256 = "1m4rkxrgv5j6kawwxdcfrsx8ypwarlbd1rwf7i3gzxhp5wkllwwk"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - Cabal - containers - directory - fgl - filepath - Graphalyze - graphviz - haskell-src-exts - mtl - multiset - random - ]; - description = "Static code analysis using graph-theoretic techniques"; - license = "GPL"; - hydraPlatforms = lib.platforms.none; - mainProgram = "SourceGraph"; - } - ) { }; - "Southpaw" = callPackage ( { mkDerivation, @@ -42079,42 +16285,6 @@ self: { } ) { }; - "SpacePrivateers" = callPackage ( - { - mkDerivation, - base, - containers, - enummapset-th, - filepath, - LambdaHack, - template-haskell, - text, - }: - mkDerivation { - pname = "SpacePrivateers"; - version = "0.1.0.0"; - sha256 = "0gj709knv4lvz34900jigb1hiq35acbbl86iwa5yszibm8f0drkh"; - revision = "1"; - editedCabalFile = "1gv48zss4rw4z2n9grga090j1223ylzwi5pirqb0d1mdj9w617dm"; - isLibrary = false; - isExecutable = true; - enableSeparateDataOutput = true; - executableHaskellDepends = [ - base - containers - enummapset-th - filepath - LambdaHack - template-haskell - text - ]; - description = "Simple space pirate roguelike"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "SpacePrivateers"; - } - ) { }; - "SpatialMath" = callPackage ( { mkDerivation, @@ -42157,30 +16327,6 @@ self: { } ) { }; - "SpinCounter" = callPackage ( - { - mkDerivation, - base, - monad-loops, - ref-mtl, - stm, - }: - mkDerivation { - pname = "SpinCounter"; - version = "0.0.1"; - sha256 = "1rf9r69a2k3qfmy2nvwm3gdimncjglsv698rdc8i8gnjwrr0c1i2"; - libraryHaskellDepends = [ - base - monad-loops - ref-mtl - stm - ]; - description = "Lock free Spin Counter"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "Spintax" = callPackage ( { mkDerivation, @@ -42373,33 +16519,6 @@ self: { } ) { }; - "Spock-auth" = callPackage ( - { - mkDerivation, - base, - http-types, - Spock, - text, - time, - }: - mkDerivation { - pname = "Spock-auth"; - version = "0.2.0.1"; - sha256 = "1vcrl5dqjn0ri9ybza2yv80xvbv2iwrz5hj5rbhgy6i803ixlpx0"; - libraryHaskellDepends = [ - base - http-types - Spock - text - time - ]; - description = "Provides authentification helpers for Spock"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "Spock-core" = callPackage ( { mkDerivation, @@ -42610,79 +16729,6 @@ self: { } ) { }; - "Sprig" = callPackage ( - { - mkDerivation, - base, - SDL, - }: - mkDerivation { - pname = "Sprig"; - version = "0.1.1"; - sha256 = "06jxs1hc69viv38nvafhn8ilj3xn2j9k543abgd8p69gc95w1lbn"; - libraryHaskellDepends = [ - base - SDL - ]; - description = "Binding to Sprig"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "Stack" = callPackage ( - { - mkDerivation, - base, - deepseq, - nats, - stm, - }: - mkDerivation { - pname = "Stack"; - version = "0.4.0"; - sha256 = "0i8frm923gkk9h8z38jijrd43dfsj9rwzxhwj6xv57rq7l3nq583"; - revision = "2"; - editedCabalFile = "1n4zyl9iagzjx3i3zb5w24mf5x51nwwnnzrrc1rgkflvxlirm9md"; - libraryHaskellDepends = [ - base - deepseq - nats - stm - ]; - description = "Stack data structure"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "Stasis" = callPackage ( - { - mkDerivation, - base, - containers, - }: - mkDerivation { - pname = "Stasis"; - version = "0.0.1"; - sha256 = "1pycmc30hg7vzf3addl0kdd74hpamzg3c1z4fj6fzr4542afhcq8"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - containers - ]; - executableHaskellDepends = [ base ]; - description = "A simple MVCC like library"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "Stasis"; - broken = true; - } - ) { }; - "StateVar" = callPackage ( { mkDerivation, @@ -42748,200 +16794,6 @@ self: { } ) { }; - "StockholmAlignment" = callPackage ( - { - mkDerivation, - base, - directory, - either-unwrap, - filepath, - parsec, - ParsecTools, - text, - vector, - }: - mkDerivation { - pname = "StockholmAlignment"; - version = "1.3.0"; - sha256 = "1wc23pmcw246na7zwd6ka6v00kxn754pr3b069y7zn8l0lxby45p"; - libraryHaskellDepends = [ - base - directory - either-unwrap - filepath - parsec - ParsecTools - text - vector - ]; - description = "Libary for Stockholm aligmnent format"; - license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "Stomp" = callPackage ( - { - mkDerivation, - base, - binary, - bytestring, - network, - time, - utf8-string, - }: - mkDerivation { - pname = "Stomp"; - version = "0.1.1"; - sha256 = "0fdibnhab5j03df70pfg9psk6ah80a91ds4nmlb0rdlldddbi3wn"; - libraryHaskellDepends = [ - base - binary - bytestring - network - time - utf8-string - ]; - description = "Client library for Stomp brokers"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "Strafunski-ATermLib" = callPackage ( - { - mkDerivation, - base, - containers, - }: - mkDerivation { - pname = "Strafunski-ATermLib"; - version = "1.6.0.3"; - sha256 = "1cicz4d5kyl9j4y3p79m3fk56vcqk3220a6y536dw525x6180dzw"; - libraryHaskellDepends = [ - base - containers - ]; - description = "An abstract data type designed for the exchange of tree-like data structures"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "Strafunski-Sdf2Haskell" = callPackage ( - { - mkDerivation, - base, - directory, - haskell-src, - mtl, - pretty, - process, - Strafunski-ATermLib, - Strafunski-StrategyLib, - template-haskell, - }: - mkDerivation { - pname = "Strafunski-Sdf2Haskell"; - version = "1.0.0.2"; - sha256 = "0h73yj74pl0k3p7vamqhw1jz36pvh8kfpw58gkmskdmkh7j6wb30"; - isLibrary = false; - isExecutable = true; - enableSeparateDataOutput = true; - executableHaskellDepends = [ - base - directory - haskell-src - mtl - pretty - process - Strafunski-ATermLib - Strafunski-StrategyLib - template-haskell - ]; - description = "Converts SDF to Haskell"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "Sdf2Haskell"; - } - ) { }; - - "Strafunski-StrategyLib" = callPackage ( - { - mkDerivation, - base, - directory, - mtl, - syb, - transformers, - }: - mkDerivation { - pname = "Strafunski-StrategyLib"; - version = "5.0.1.0"; - sha256 = "15d2m7ahb3jwriariaff0yz93mmrhpv579wink9838w9091cf650"; - revision = "2"; - editedCabalFile = "1g9ksfgcz8fjasn78zq7w1yw9wk87i4gd5i0pf31gnf4l3963yz8"; - libraryHaskellDepends = [ - base - directory - mtl - syb - transformers - ]; - description = "Library for strategic programming"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "StrappedTemplates" = callPackage ( - { - mkDerivation, - base, - blaze-builder, - bytestring, - containers, - filemanip, - filepath, - hspec, - mtl, - parsec, - text, - transformers, - }: - mkDerivation { - pname = "StrappedTemplates"; - version = "0.2.0.2"; - sha256 = "0x0nsrzb2r9pwp353ksxwik48iw17whmsclfj07qrqxchdwrjy6h"; - libraryHaskellDepends = [ - base - blaze-builder - bytestring - containers - filemanip - filepath - mtl - parsec - text - transformers - ]; - testHaskellDepends = [ - base - blaze-builder - bytestring - hspec - text - ]; - description = "General purpose templates in haskell"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "StrategyLib" = callPackage ( { mkDerivation, @@ -42983,30 +16835,6 @@ self: { } ) { }; - "StrictBench" = callPackage ( - { - mkDerivation, - base, - benchpress, - parallel, - }: - mkDerivation { - pname = "StrictBench"; - version = "0.1.1"; - sha256 = "1l4l77rjhl5g9089kjyarsrvbvm43bk370ld50qp17dqhvisl73m"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base - benchpress - parallel - ]; - description = "Benchmarking code through strict evaluation"; - license = "GPL"; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "StrictCheck" = callPackage ( { mkDerivation, @@ -43052,73 +16880,6 @@ self: { } ) { }; - "SuffixStructures" = callPackage ( - { - mkDerivation, - aeson, - base, - binary, - bytestring, - cereal, - cmdargs, - containers, - criterion, - data-default-class, - deepseq, - ListLike, - mwc-random, - primitive, - vector, - vector-algorithms, - vector-binary-instances, - }: - mkDerivation { - pname = "SuffixStructures"; - version = "0.0.1.0"; - sha256 = "0s294s06pj95i6q8n1cxsgkdc7x98mvvr1qd720rxqd3y54n63lb"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson - base - binary - bytestring - cereal - containers - data-default-class - ListLike - primitive - vector - vector-algorithms - vector-binary-instances - ]; - executableHaskellDepends = [ - aeson - base - binary - bytestring - cereal - cmdargs - containers - vector - ]; - benchmarkHaskellDepends = [ - base - bytestring - cmdargs - criterion - deepseq - mwc-random - vector - ]; - description = "Suffix array construction"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "mkesa"; - broken = true; - } - ) { }; - "SvgIcons" = callPackage ( { mkDerivation }: mkDerivation { @@ -43131,34 +16892,6 @@ self: { } ) { }; - "SybWidget" = callPackage ( - { - mkDerivation, - base, - containers, - mtl, - syb-with-class, - template-haskell, - TypeCompose, - }: - mkDerivation { - pname = "SybWidget"; - version = "0.5.6"; - sha256 = "0m3papl90fs3zmlqxsjn0cymk049352cl42bif2x7gij75cv2b68"; - libraryHaskellDepends = [ - base - containers - mtl - syb-with-class - template-haskell - TypeCompose - ]; - description = "Library which aids constructing generic (SYB3-based) widgets"; - license = "LGPL"; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "Synapse" = callPackage ( { mkDerivation, @@ -43166,717 +16899,226 @@ self: { easyplot, hashable, HUnit, - random, - terminal-progress-bar, - unordered-containers, - vector, - }: - mkDerivation { - pname = "Synapse"; - version = "0.1.0.2"; - sha256 = "1npzgilpmq5sy594mrsnamh90p6hbphivjas925w0zr0rdjx8wdv"; - libraryHaskellDepends = [ - base - hashable - random - terminal-progress-bar - unordered-containers - vector - ]; - testHaskellDepends = [ - base - easyplot - HUnit - random - ]; - description = "Synapse is a machine learning library written in pure Haskell"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "SyntaxMacros" = callPackage ( - { - mkDerivation, - AspectAG, - base, - containers, - HList, - ListLike, - template-haskell, - TTTAS, - uu-parsinglib, - uulib, - }: - mkDerivation { - pname = "SyntaxMacros"; - version = "1.0.3"; - sha256 = "155vkv7kg026zc2crywdyna1df98mw41qm0sadqihaj49xk59vyc"; - libraryHaskellDepends = [ - AspectAG - base - containers - HList - ListLike - template-haskell - TTTAS - uu-parsinglib - uulib - ]; - description = "Syntax Macros in the form of an EDSL"; - license = "LGPL"; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "Sysmon" = callPackage ( - { - mkDerivation, - base, - ConfigFile, - filepath, - fingertree, - Glob, - MissingH, - mtl, - old-locale, - pretty, - statistics, - template-haskell, - time, - vector, - }: - mkDerivation { - pname = "Sysmon"; - version = "0.1.2"; - sha256 = "1zyp333vicjarcmip2q52nzfv948yl2q6qr3k3glp4v4m8f75ap3"; - revision = "1"; - editedCabalFile = "0q8v52ldarrhgp73rnm81p2h3a43nap9q2036z6p28wn3ymrbgrx"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base - ConfigFile - filepath - fingertree - Glob - MissingH - mtl - old-locale - pretty - statistics - template-haskell - time - vector - ]; - description = "Sybase 15 sysmon reports processor"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "TBC" = callPackage ( - { - mkDerivation, - base, - Cabal, - deepseq, - directory, - filepath, - process, - unix, - }: - mkDerivation { - pname = "TBC"; - version = "0.0.3"; - sha256 = "1063ckv034mb6s41xy8pr387y1hnknkyk4r29vmzdrm3pdcyzdn3"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - Cabal - deepseq - directory - filepath - process - ]; - executableHaskellDepends = [ - base - Cabal - directory - filepath - process - unix - ]; - description = "Testing By Convention"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "tbc"; - broken = true; - } - ) { }; - - "TBit" = callPackage ( - { - mkDerivation, - base, - containers, - deepseq, - fgl, - free, - hmatrix, - integration, - list-extras, - mtl, - numeric-tools, - parallel, - }: - mkDerivation { - pname = "TBit"; - version = "0.4.2.3"; - sha256 = "1by1wy2w3ankg1php7m911kc53q2dv5jfl8v1iwp3mb68s8b6wrs"; - libraryHaskellDepends = [ - base - containers - deepseq - fgl - free - hmatrix - integration - list-extras - mtl - numeric-tools - parallel - ]; - description = "Utilities for condensed matter physics tight binding calculations"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "TCache" = callPackage ( - { - mkDerivation, - base, - bytestring, - containers, - directory, - hashtables, - mtl, - old-time, - RefSerialize, - stm, - text, - }: - mkDerivation { - pname = "TCache"; - version = "0.13.3"; - sha256 = "0d1lwp4mfvjlrn2k96h41ijl4rs7h46hrrwxyry1bw41vinifs5q"; - libraryHaskellDepends = [ - base - bytestring - containers - directory - hashtables - mtl - old-time - RefSerialize - stm - text - ]; - testHaskellDepends = [ - base - bytestring - containers - directory - hashtables - mtl - old-time - RefSerialize - stm - text - ]; - description = "A Transactional cache with user-defined persistence"; - license = lib.licenses.bsd3; - } - ) { }; - - "THEff" = callPackage ( - { - mkDerivation, - base, - template-haskell, - }: - mkDerivation { - pname = "THEff"; - version = "0.1.4"; - sha256 = "0rpjd93lsqg3dqfjndm9l1nzyrbfs5nnvc61lmbmbhg0bcy0jms8"; - libraryHaskellDepends = [ - base - template-haskell - ]; - description = "TH implementation of effects"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "THSH" = callPackage ( - { - mkDerivation, - base, - extra, - filepath, - ghc, - parsec, - process, - PyF, - split, - template-haskell, - temporary, - text, - transformers, - }: - mkDerivation { - pname = "THSH"; - version = "0.0.0.5"; - sha256 = "0hfc3f68w5n55k5gnlf6ip76j3b7yvirb81k373w8vq4rgqf447s"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - filepath - ghc - parsec - process - PyF - template-haskell - temporary - text - transformers - ]; - executableHaskellDepends = [ - base - extra - filepath - ghc - process - PyF - split - template-haskell - ]; - testHaskellDepends = [ - base - ghc - PyF - template-haskell - ]; - description = "A \"noDSL\" approach to mixing shell scripting with Haskell programs using Template Haskell"; - license = lib.licenses.mit; - mainProgram = "thsh"; - } - ) { }; - - "TLT" = callPackage ( - { - mkDerivation, - ansi-terminal, - base, - free, - mtl, - resourcet, - STMonadTrans, - transformers, - }: - mkDerivation { - pname = "TLT"; - version = "0.5.0.0"; - sha256 = "10hman41jgzkdllcps0yabbym08ar9xislxk2dpj5y4ad5ajcyqy"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - ansi-terminal - base - free - mtl - resourcet - STMonadTrans - transformers - ]; - executableHaskellDepends = [ - ansi-terminal - base - free - mtl - resourcet - STMonadTrans - transformers - ]; - testHaskellDepends = [ - ansi-terminal - base - free - mtl - resourcet - STMonadTrans - transformers - ]; - description = "Testing in monads and transformers without explicit specs"; - license = lib.licenses.lgpl3Only; - hydraPlatforms = lib.platforms.none; - mainProgram = "TLT-exe"; - broken = true; - } - ) { }; - - "TORCS" = callPackage ( - { - mkDerivation, - base, - bytestring, - containers, - directory, - lens, - monad-loops, - monad-parallel, - MonadRandom, - network, - process, - random, - random-shuffle, - time, - Yampa, - }: - mkDerivation { - pname = "TORCS"; - version = "0.1.0.2"; - sha256 = "0lkp8qcglp2l6hq4py3i3kc1p1s6wvydrszh9dwfm6vk41cjwmnw"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - bytestring - containers - directory - lens - monad-loops - monad-parallel - MonadRandom - network - process - random - random-shuffle - time - Yampa - ]; - executableHaskellDepends = [ - base - bytestring - Yampa - ]; - description = "Bindings to the TORCS vehicle simulator"; - license = "GPL"; - hydraPlatforms = lib.platforms.none; - mainProgram = "Simple"; - broken = true; - } - ) { }; - - "TTTAS" = callPackage ( - { mkDerivation, base }: - mkDerivation { - pname = "TTTAS"; - version = "0.6.0"; - sha256 = "18p3rxh3g44ky5q4hjq53l4shg4gd8v68wra6bdxv8bjafxld1wp"; - libraryHaskellDepends = [ base ]; - description = "Typed Transformations of Typed Abstract Syntax"; - license = "LGPL"; - } - ) { }; - - "TV" = callPackage ( - { - mkDerivation, - base, - DeepArrow, - TypeCompose, - }: - mkDerivation { - pname = "TV"; - version = "0.5.0"; - sha256 = "0vz9j5vjypnkbzld18f6kczfj54disf43x5052s4n7gqzsjxpxvb"; - libraryHaskellDepends = [ - base - DeepArrow - TypeCompose - ]; - description = "Tangible Values -- composable interfaces"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "TYB" = callPackage ( - { - mkDerivation, - array, - base, - containers, - mtl, - template-haskell, - transformers, - }: - mkDerivation { - pname = "TYB"; - version = "0.2.3"; - sha256 = "1rdwj6dg156i60i7s8xr310j0yza41jjqk6pmgx2giqjs122dz5n"; - libraryHaskellDepends = [ - array - base - containers - mtl - template-haskell - transformers - ]; - description = "Template Your Boilerplate - a Template Haskell version of SYB"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "TableAlgebra" = callPackage ( - { - mkDerivation, - base, - containers, - HaXml, - mtl, - pretty, - template-haskell, - }: - mkDerivation { - pname = "TableAlgebra"; - version = "0.7.1"; - sha256 = "1jqkjnyznklyiy2shm4c9gix267war1hmsjncdmailhca41fs4bz"; - libraryHaskellDepends = [ - base - containers - HaXml - mtl - pretty - template-haskell - ]; - description = "Ferry Table Algebra"; - license = lib.licenses.bsd3; - } - ) { }; - - "Tables" = callPackage ( - { - mkDerivation, - base, - cookbook, - }: - mkDerivation { - pname = "Tables"; - version = "0.1.0.2"; - sha256 = "02a6awbqwhmv7c74lgbp35ykqn31mgwp7ffd0j4rs42vv1a4ffkr"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - cookbook - ]; - description = "A client for Quill databases"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "Tables"; - broken = true; - } - ) { }; - - "Tablify" = callPackage ( - { - mkDerivation, - base, - parsec, - xhtml, + random, + terminal-progress-bar, + unordered-containers, + vector, }: mkDerivation { - pname = "Tablify"; - version = "0.8.2"; - sha256 = "10w3idjhrgmkrkjblrmb2wb2s2fg657nw5rmg5k147wrgrkzbsz3"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ + pname = "Synapse"; + version = "0.1.0.2"; + sha256 = "1npzgilpmq5sy594mrsnamh90p6hbphivjas925w0zr0rdjx8wdv"; + libraryHaskellDepends = [ base - parsec - xhtml + hashable + random + terminal-progress-bar + unordered-containers + vector ]; - description = "Tool to render CSV into tables of various formats"; - license = lib.licenses.bsd3; + testHaskellDepends = [ + base + easyplot + HUnit + random + ]; + description = "Synapse is a machine learning library written in pure Haskell"; + license = lib.licenses.mit; hydraPlatforms = lib.platforms.none; - mainProgram = "tablify"; - broken = true; } ) { }; - "Tahin" = callPackage ( + "TCache" = callPackage ( { mkDerivation, base, - base64-bytestring, bytestring, containers, - cryptohash, - haskeline, + directory, + hashtables, mtl, - optparse-applicative, + old-time, + RefSerialize, + stm, text, }: mkDerivation { - pname = "Tahin"; - version = "0.1.2"; - sha256 = "08qr4cdcnsyc86dzpsjvsjlb3b6nkbrzkhpfjyv5z61pr0mjp6y8"; - isLibrary = true; - isExecutable = true; + pname = "TCache"; + version = "0.13.3"; + sha256 = "0d1lwp4mfvjlrn2k96h41ijl4rs7h46hrrwxyry1bw41vinifs5q"; libraryHaskellDepends = [ base - base64-bytestring bytestring + containers + directory + hashtables + mtl + old-time + RefSerialize + stm text ]; - executableHaskellDepends = [ + testHaskellDepends = [ base - base64-bytestring bytestring containers - cryptohash - haskeline + directory + hashtables mtl - optparse-applicative + old-time + RefSerialize + stm text ]; - description = "Tahin Password Generator"; + description = "A Transactional cache with user-defined persistence"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "tahin"; - broken = true; } ) { }; - "Tainted" = callPackage ( + "THSH" = callPackage ( { mkDerivation, base, - mtl, + extra, + filepath, + ghc, + parsec, + process, + PyF, + split, + template-haskell, + temporary, + text, + transformers, }: mkDerivation { - pname = "Tainted"; - version = "0.1.0.2"; - sha256 = "1mjr81z42qhwa6njlvlsslpzbbpiab88ns8g8amskwv159gk6mlb"; + pname = "THSH"; + version = "0.0.0.5"; + sha256 = "0hfc3f68w5n55k5gnlf6ip76j3b7yvirb81k373w8vq4rgqf447s"; + isLibrary = true; + isExecutable = true; libraryHaskellDepends = [ base - mtl + filepath + ghc + parsec + process + PyF + template-haskell + temporary + text + transformers ]; - description = "Tainted type, and associated operations"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; + executableHaskellDepends = [ + base + extra + filepath + ghc + process + PyF + split + template-haskell + ]; + testHaskellDepends = [ + base + ghc + PyF + template-haskell + ]; + description = "A \"noDSL\" approach to mixing shell scripting with Haskell programs using Template Haskell"; + license = lib.licenses.mit; + mainProgram = "thsh"; } ) { }; - "Takusen" = callPackage ( + "TLT" = callPackage ( { mkDerivation, + ansi-terminal, base, + free, mtl, - old-time, - time, + resourcet, + STMonadTrans, + transformers, }: mkDerivation { - pname = "Takusen"; - version = "0.8.7"; - sha256 = "0mxck66rz6lplgcl3a3i0gaybc2ki0q7wfilhkp2f3h3m50fg7wy"; + pname = "TLT"; + version = "0.5.0.0"; + sha256 = "10hman41jgzkdllcps0yabbym08ar9xislxk2dpj5y4ad5ajcyqy"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ + ansi-terminal base + free mtl - old-time - time + resourcet + STMonadTrans + transformers ]; - description = "Database library with left-fold interface, for PostgreSQL, Oracle, SQLite, ODBC"; - license = lib.licenses.bsd3; + executableHaskellDepends = [ + ansi-terminal + base + free + mtl + resourcet + STMonadTrans + transformers + ]; + testHaskellDepends = [ + ansi-terminal + base + free + mtl + resourcet + STMonadTrans + transformers + ]; + description = "Testing in monads and transformers without explicit specs"; + license = lib.licenses.lgpl3Only; hydraPlatforms = lib.platforms.none; + mainProgram = "TLT-exe"; broken = true; } ) { }; - "Tape" = callPackage ( - { - mkDerivation, - base, - comonad, - distributive, - Stream, - }: + "TTTAS" = callPackage ( + { mkDerivation, base }: mkDerivation { - pname = "Tape"; - version = "0.4.0.0"; - sha256 = "1d66l67cicn3q4a6glfxfkhc9cjm7vqi0bnyjad0bzyyv409j6bp"; - libraryHaskellDepends = [ - base - comonad - distributive - Stream - ]; - description = "Bidirectionally infinite streams, akin to the tape of a Turing machine"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; + pname = "TTTAS"; + version = "0.6.0"; + sha256 = "18p3rxh3g44ky5q4hjq53l4shg4gd8v68wra6bdxv8bjafxld1wp"; + libraryHaskellDepends = [ base ]; + description = "Typed Transformations of Typed Abstract Syntax"; + license = "LGPL"; } ) { }; - "TaskMonad" = callPackage ( + "TableAlgebra" = callPackage ( { mkDerivation, base, containers, + HaXml, mtl, - process, - random, - unix, - X11, - X11-xft, - xmonad, - xmonad-contrib, + pretty, + template-haskell, }: mkDerivation { - pname = "TaskMonad"; - version = "1.0.1"; - sha256 = "1kvhb0863kfbi63q0j9jzi3yr97r8zd5vhh5cqgpkra4rjb4qx1r"; - revision = "1"; - editedCabalFile = "1gsnl1sbnjh4j51mfniq6x2k9k6054frzxrdkqycmp0cpwhaijwi"; + pname = "TableAlgebra"; + version = "0.7.1"; + sha256 = "1jqkjnyznklyiy2shm4c9gix267war1hmsjncdmailhca41fs4bz"; libraryHaskellDepends = [ base containers + HaXml mtl - process - random - unix - X11 - X11-xft - xmonad - xmonad-contrib + pretty + template-haskell ]; - description = "A collection of tools which can be used to access taskwarrior from xmonad"; + description = "Ferry Table Algebra"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; } ) { }; @@ -43977,54 +17219,6 @@ self: { } ) { }; - "TaxonomyTools" = callPackage ( - { - mkDerivation, - aeson, - base, - bytestring, - cassava, - cmdargs, - directory, - either-unwrap, - EntrezHTTP, - fgl, - hxt, - parsec, - process, - Taxonomy, - text, - vector, - }: - mkDerivation { - pname = "TaxonomyTools"; - version = "1.0.1"; - sha256 = "15fballsvq40y8q0rkmmnr7dmspjw1b5lx43ikan7fh1rx9vl974"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - aeson - base - bytestring - cassava - cmdargs - directory - either-unwrap - EntrezHTTP - fgl - hxt - parsec - process - Taxonomy - text - vector - ]; - description = "Tool for parsing, processing, comparing and visualizing taxonomy data"; - license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "TeX-my-math" = callPackage ( { mkDerivation, @@ -44091,40 +17285,6 @@ self: { } ) { }; - "TeaHS" = callPackage ( - { - mkDerivation, - array, - base, - containers, - mtl, - SDL, - SDL-image, - SDL-mixer, - SFont, - Sprig, - }: - mkDerivation { - pname = "TeaHS"; - version = "0.3.1"; - sha256 = "1326lrpkw2gyn7y9px38gyzi2cnx87ki65r6mwds746d1s1zmmcn"; - libraryHaskellDepends = [ - array - base - containers - mtl - SDL - SDL-image - SDL-mixer - SFont - Sprig - ]; - description = "TeaHS Game Creation Library"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "Tensor" = callPackage ( { mkDerivation, base }: mkDerivation { @@ -44197,59 +17357,6 @@ self: { } ) { }; - "Theora" = - callPackage - ( - { - mkDerivation, - base, - ogg, - theora, - }: - mkDerivation { - pname = "Theora"; - version = "1.0"; - sha256 = "1gw97mxwb6ywc4qvfggjzsryl0m4g6g30ljx4xcvy6snfmgv00ig"; - libraryHaskellDepends = [ base ]; - librarySystemDepends = [ - ogg - theora - ]; - license = "GPL"; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) - { - ogg = null; - theora = null; - }; - - "Thingie" = callPackage ( - { - mkDerivation, - base, - cairo, - gtk, - mtl, - }: - mkDerivation { - pname = "Thingie"; - version = "0.80"; - sha256 = "0fl6pk2vp765gyzc4afjdg0lgbnh5v08gfbp0kzny4ng25bmxqwa"; - libraryHaskellDepends = [ - base - cairo - gtk - mtl - ]; - description = "Purely functional 2D drawing"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "ThreadObjects" = callPackage ( { mkDerivation, base }: mkDerivation { @@ -44262,37 +17369,6 @@ self: { } ) { }; - "Thrift" = callPackage ( - { - mkDerivation, - base, - binary, - bytestring, - ghc-prim, - HTTP, - network, - }: - mkDerivation { - pname = "Thrift"; - version = "0.6.0.1"; - sha256 = "0yk496zql0jpyj83ybdzffc03sylf5pwn093k831m99j54l2r5yv"; - revision = "1"; - editedCabalFile = "1ncrb6m5a7qywbi3vmavfqv2nim3qbjpa51gf28p6xw52q2apa2n"; - libraryHaskellDepends = [ - base - binary - bytestring - ghc-prim - HTTP - network - ]; - description = "Haskell bindings for the Apache Thrift RPC system"; - license = "unknown"; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "Tic-Tac-Toe" = callPackage ( { mkDerivation, @@ -44315,217 +17391,6 @@ self: { } ) { }; - "TicTacToe" = callPackage ( - { - mkDerivation, - base, - containers, - HUnit, - QuickCheck, - test-framework, - test-framework-hunit, - test-framework-quickcheck2, - }: - mkDerivation { - pname = "TicTacToe"; - version = "0.0.1"; - sha256 = "0542hripn5nlwdvnhkd9xzzh2b1x6alwnqxq877r92c7kqnlffw4"; - libraryHaskellDepends = [ - base - containers - HUnit - QuickCheck - test-framework - test-framework-hunit - test-framework-quickcheck2 - ]; - description = "A sub-project (exercise) for a functional programming course"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "TigerHash" = callPackage ( - { - mkDerivation, - base, - binary, - bytestring, - dataenc, - }: - mkDerivation { - pname = "TigerHash"; - version = "0.2"; - sha256 = "02plz1y7lmvp3jpl5srsnx2nkl6yhhfn6pqj00szs688cahk2dik"; - libraryHaskellDepends = [ - base - binary - bytestring - dataenc - ]; - description = "TigerHash with C implementation"; - license = lib.licenses.gpl2Only; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "TimePiece" = callPackage ( - { - mkDerivation, - base, - containers, - old-locale, - old-time, - random, - SDL, - SDL-gfx, - SDL-image, - SDL-ttf, - }: - mkDerivation { - pname = "TimePiece"; - version = "0.0.5"; - sha256 = "1ylf4kzyf947szgib0ivkvygbinmy97nvy77d0crryzxdmccrzbj"; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base - containers - old-locale - old-time - random - SDL - SDL-gfx - SDL-image - SDL-ttf - ]; - executableHaskellDepends = [ - base - containers - old-locale - old-time - random - SDL - SDL-gfx - SDL-image - SDL-ttf - ]; - description = "A simple tile-based digital clock screen saver"; - license = lib.licenses.publicDomain; - hydraPlatforms = lib.platforms.none; - mainProgram = "TimePiece"; - broken = true; - } - ) { }; - - "TinyLaunchbury" = callPackage ( - { - mkDerivation, - base, - mtl, - }: - mkDerivation { - pname = "TinyLaunchbury"; - version = "1.0.1"; - sha256 = "1xxadd8pqbgl0z8vrqn8fm6x0c9l2y3a7irjmjkh9750x6hdb4b9"; - libraryHaskellDepends = [ - base - mtl - ]; - description = "Simple implementation of call-by-need using Launchbury's semantics"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "TinyURL" = callPackage ( - { - mkDerivation, - base, - HTTP, - network, - }: - mkDerivation { - pname = "TinyURL"; - version = "0.1.0"; - sha256 = "0y8bl6w3ix2zjhm10wazgi70sr02ydc3hrwjbr6whk341n140wsh"; - libraryHaskellDepends = [ - base - HTTP - network - ]; - description = "Use TinyURL to compress URLs"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "Titim" = callPackage ( - { - mkDerivation, - base, - containers, - matrix, - random, - }: - mkDerivation { - pname = "Titim"; - version = "0.2.3"; - sha256 = "1s8zvb38r9pxh55d5206lijprc6xsqnr0j670sdjrw7n8gyn7vav"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - containers - matrix - random - ]; - description = "Game for Lounge Marmelade"; - license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - mainProgram = "titim"; - broken = true; - } - ) { }; - - "Top" = callPackage ( - { - mkDerivation, - base, - containers, - mtl, - parsec, - }: - mkDerivation { - pname = "Top"; - version = "1.7"; - sha256 = "0ykicqwayja14z30hn5cy3c96sikqhbyrh0bcqykk9izwhxs339x"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - containers - mtl - ]; - executableHaskellDepends = [ - base - containers - mtl - parsec - ]; - description = "Constraint solving framework employed by the Helium Compiler"; - license = "GPL"; - hydraPlatforms = lib.platforms.none; - mainProgram = "topsolver"; - broken = true; - } - ) { }; - "TotalMap" = callPackage ( { mkDerivation, @@ -44563,40 +17428,6 @@ self: { } ) { }; - "Tournament" = callPackage ( - { - mkDerivation, - base, - containers, - mtl, - QuickCheck, - test-framework, - test-framework-quickcheck2, - }: - mkDerivation { - pname = "Tournament"; - version = "0.0.1"; - sha256 = "1yzgcsp3g5sfyxavq1firna5z5m9bnk9ddrbxxmpy1yydmj1n5jk"; - libraryHaskellDepends = [ - base - containers - mtl - ]; - testHaskellDepends = [ - base - containers - mtl - QuickCheck - test-framework - test-framework-quickcheck2 - ]; - description = "Tournament related algorithms"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "TraceUtils" = callPackage ( { mkDerivation, base }: mkDerivation { @@ -44609,68 +17440,6 @@ self: { } ) { }; - "TransformeR" = callPackage ( - { - mkDerivation, - base, - haskell-src-exts, - mtl, - parsec, - QuickCheck, - }: - mkDerivation { - pname = "TransformeR"; - version = "0.1.0.0"; - sha256 = "1w1szm6k8ncfpklcvhhr2knpi6qx8axxxaqjdji5ck6msiszzdaz"; - revision = "1"; - editedCabalFile = "1ghl88mqq6bvw9lapm50iswygan35r1ajv2vfqy6jp00vhvfw72v"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - haskell-src-exts - mtl - parsec - ]; - executableHaskellDepends = [ base ]; - testHaskellDepends = [ - base - QuickCheck - ]; - description = "eDSL in R for Safe Variable Transformarion"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "TransformeR-exe"; - broken = true; - } - ) { }; - - "TransformersStepByStep" = callPackage ( - { - mkDerivation, - base, - containers, - mtl, - }: - mkDerivation { - pname = "TransformersStepByStep"; - version = "0.1.1.0"; - sha256 = "1cd8sh6gi9zmvd70kzw1x9ycanfsyphjdy3r65xrph54ilwy511p"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - containers - mtl - ]; - description = "Tutorial on monad transformers"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "TransformersStepByStep"; - broken = true; - } - ) { }; - "Transhare" = callPackage ( { mkDerivation, @@ -44690,28 +17459,6 @@ self: { } ) { }; - "TreeCounter" = callPackage ( - { - mkDerivation, - base, - ref-mtl, - stm, - }: - mkDerivation { - pname = "TreeCounter"; - version = "0.0.2"; - sha256 = "06ci4v8gflsgi73wrpqvhb7w3mdkbjgidhqf95yyk4wiga1mrzal"; - libraryHaskellDepends = [ - base - ref-mtl - stm - ]; - description = "Wait-free Tree Counter"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "TreeStructures" = callPackage ( { mkDerivation, base }: mkDerivation { @@ -44749,97 +17496,6 @@ self: { } ) { }; - "Treiber" = callPackage ( - { - mkDerivation, - base, - ghc-prim, - monad-loops, - ref-mtl, - stm, - }: - mkDerivation { - pname = "Treiber"; - version = "0.0.4"; - sha256 = "09sd9p1y3zqkfahkp1vgdnlvgv1vnvdl7kdzccsd41h1h61fz3jd"; - libraryHaskellDepends = [ - base - ghc-prim - monad-loops - ref-mtl - stm - ]; - description = "Lock free Treiber stack"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "TrendGraph" = callPackage ( - { - mkDerivation, - base, - containers, - diagrams-cairo, - diagrams-lib, - mtl, - optparse-applicative, - time, - }: - mkDerivation { - pname = "TrendGraph"; - version = "0.1.0.1"; - sha256 = "1rdlimlbdpa089knhnqzgxc8ngqag4m4w3r92jd95kwnmr8nizkp"; - libraryHaskellDepends = [ - base - containers - diagrams-cairo - diagrams-lib - mtl - optparse-applicative - time - ]; - description = "A simple trend Graph script"; - license = lib.licenses.publicDomain; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "TrieMap" = callPackage ( - { - mkDerivation, - base, - bytestring, - containers, - primitive, - template-haskell, - th-expand-syns, - transformers, - unpack-funcs, - vector, - }: - mkDerivation { - pname = "TrieMap"; - version = "4.1.0"; - sha256 = "14wril1sa35cja66y7ah9qwr3bmsi985y7rlxyj12x2fv6dclpc4"; - libraryHaskellDepends = [ - base - bytestring - containers - primitive - template-haskell - th-expand-syns - transformers - unpack-funcs - vector - ]; - description = "Automatic type inference of generalized tries with Template Haskell"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "Twofish" = callPackage ( { mkDerivation, @@ -44885,44 +17541,6 @@ self: { } ) { }; - "TypeClass" = callPackage ( - { - mkDerivation, - base, - containers, - filepath, - random, - reactive-banana, - reactive-banana-sdl, - SDL, - SDL-ttf, - transformers, - }: - mkDerivation { - pname = "TypeClass"; - version = "0.2.1"; - sha256 = "0crymgw91xx0hblbmz488x39i2qzf9c15kv5x950ljmpyrhy5jhv"; - isLibrary = false; - isExecutable = true; - enableSeparateDataOutput = true; - executableHaskellDepends = [ - base - containers - filepath - random - reactive-banana - reactive-banana-sdl - SDL - SDL-ttf - transformers - ]; - description = "Typing speed game"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "TypeClass"; - } - ) { }; - "TypeCompose" = callPackage ( { mkDerivation, @@ -44946,29 +17564,6 @@ self: { } ) { }; - "TypeIlluminator" = callPackage ( - { - mkDerivation, - base, - haskell98, - }: - mkDerivation { - pname = "TypeIlluminator"; - version = "0.0"; - sha256 = "02ck7sik5wvh989k9ban1m2dlpfld0d0zs7sqb12m1f6wls7fghc"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - haskell98 - ]; - description = "TypeIlluminator is a prototype tool exploring debugging of type errors/"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "typeilluminator"; - } - ) { }; - "TypeNat" = callPackage ( { mkDerivation, base }: mkDerivation { @@ -45040,149 +17635,6 @@ self: { } ) { }; - "UMM" = callPackage ( - { - mkDerivation, - base, - haskell98, - old-time, - parsec, - process, - utf8-string, - }: - mkDerivation { - pname = "UMM"; - version = "0.3.1"; - sha256 = "0k9kvlkcznk6ydfcymzzh0a4j4zkl5iblvnx6fkmk8xah1qnkq5h"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - haskell98 - old-time - parsec - process - utf8-string - ]; - description = "A small command-line accounting tool"; - license = "GPL"; - hydraPlatforms = lib.platforms.none; - mainProgram = "umm"; - } - ) { }; - - "URLT" = callPackage ( - { - mkDerivation, - applicative-extras, - base, - Consumer, - happstack-server, - hsp, - hsx, - mtl, - QuickCheck, - regular, - template-haskell, - }: - mkDerivation { - pname = "URLT"; - version = "0.14"; - sha256 = "14qlyrc3ins3lwhd2c8lyhm1j3v6nj4qgs5g9xys4w6hnndz2g3s"; - libraryHaskellDepends = [ - applicative-extras - base - Consumer - happstack-server - hsp - hsx - mtl - QuickCheck - regular - template-haskell - ]; - description = "Library for maintaining correctness of URLs within an application"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "URLb" = callPackage ( - { - mkDerivation, - attoparsec, - base, - bytestring, - containers, - }: - mkDerivation { - pname = "URLb"; - version = "0.0.1"; - sha256 = "1l62z7798bby4fbrz62ic802g8zah3flb2pmsd3ky7y5903s3nxr"; - libraryHaskellDepends = [ - attoparsec - base - bytestring - containers - ]; - description = "DEPRECATED A simple, liberal URL parser"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "UTFTConverter" = callPackage ( - { - mkDerivation, - base, - bytestring, - directory, - filepath, - hspec, - image-type, - JuicyPixels, - time, - }: - mkDerivation { - pname = "UTFTConverter"; - version = "0.1.0.1"; - sha256 = "13f59flfrf6xgyg86z3bgwbnb38n5lnwmib7480f694x14c44f64"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - bytestring - directory - filepath - image-type - JuicyPixels - time - ]; - executableHaskellDepends = [ - base - bytestring - directory - filepath - JuicyPixels - time - ]; - testHaskellDepends = [ - base - bytestring - directory - filepath - hspec - JuicyPixels - time - ]; - description = "Processing popular picture formats into .c or .raw format in RGB565"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - mainProgram = "UTFTConverter"; - } - ) { }; - "Unique" = callPackage ( { mkDerivation, @@ -45288,44 +17740,6 @@ self: { } ) { }; - "Updater" = callPackage ( - { mkDerivation, base }: - mkDerivation { - pname = "Updater"; - version = "0.3"; - sha256 = "0iry59pyd4iy0cmj6flr05lbk3696l1z8wswqcfp8q8m5ibykkz0"; - libraryHaskellDepends = [ base ]; - description = "Monadic FRP library based on stm"; - license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "UrlDisp" = callPackage ( - { - mkDerivation, - base, - cgi, - MaybeT, - mtl, - }: - mkDerivation { - pname = "UrlDisp"; - version = "0.1.7"; - sha256 = "1y21v5k7s9sj8z5r3czp5i80x40zvyqxzr1xl28ardwj5q5rrvzp"; - libraryHaskellDepends = [ - base - cgi - MaybeT - mtl - ]; - description = "Url dispatcher. Helps to retain friendly URLs in web applications."; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "Useful" = callPackage ( { mkDerivation, @@ -45359,171 +17773,6 @@ self: { } ) { }; - "VKHS" = callPackage ( - { - mkDerivation, - aeson, - aeson-pretty, - base, - bytestring, - case-insensitive, - clock, - containers, - data-default-class, - directory, - filepath, - flippers, - hashable, - http-client, - http-client-tls, - http-types, - mtl, - network-uri, - optparse-applicative, - parsec, - pipes, - pipes-http, - pretty-show, - process, - regexpr, - scientific, - split, - tagsoup, - text, - time, - utf8-string, - vector, - }: - mkDerivation { - pname = "VKHS"; - version = "1.9.2"; - sha256 = "0axipbapshpdybzaiklcyyzly1awnfmpg7q2hqf3sy97rw72blbj"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson - aeson-pretty - base - bytestring - case-insensitive - clock - containers - data-default-class - directory - filepath - flippers - hashable - http-client - http-client-tls - http-types - mtl - network-uri - optparse-applicative - parsec - pipes - pipes-http - pretty-show - process - regexpr - scientific - split - tagsoup - text - time - utf8-string - vector - ]; - executableHaskellDepends = [ - base - bytestring - directory - filepath - mtl - optparse-applicative - parsec - regexpr - text - ]; - description = "Provides access to Vkontakte social network via public API"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "vkq"; - broken = true; - } - ) { }; - - "VRML" = callPackage ( - { - mkDerivation, - aeson, - base, - doctest, - megaparsec, - pretty-simple, - prettyprinter, - text, - }: - mkDerivation { - pname = "VRML"; - version = "0.1.0.0"; - sha256 = "17dnxkr8y2g65anas5vg76cqyxbcp2zzxayf8lc2d5iigxnrvsgq"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson - base - megaparsec - prettyprinter - text - ]; - executableHaskellDepends = [ - aeson - base - megaparsec - pretty-simple - prettyprinter - text - ]; - testHaskellDepends = [ - aeson - base - doctest - megaparsec - prettyprinter - text - ]; - description = "VRML parser and generator for Haskell"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "Validation" = callPackage ( - { - mkDerivation, - base, - bifunctors, - semigroupoids, - semigroups, - }: - mkDerivation { - pname = "Validation"; - version = "0.2.0"; - sha256 = "10smif8y5bgjiarag3ws131kwji32mlh6mqfnmmp20xf41fsm0z3"; - libraryHaskellDepends = [ - base - bifunctors - semigroupoids - semigroups - ]; - description = "A data-type like Either but with an accumulating Applicative"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "ValveValueKeyvalue" = callPackage ( { mkDerivation, @@ -45568,52 +17817,6 @@ self: { } ) { }; - "Vec-Boolean" = callPackage ( - { - mkDerivation, - base, - Boolean, - Vec, - }: - mkDerivation { - pname = "Vec-Boolean"; - version = "1.0.6"; - sha256 = "0zxxpychddmlrv7r190gn4dl282ak4qfk2d92l24qxi9fds1rshk"; - libraryHaskellDepends = [ - base - Boolean - Vec - ]; - description = "Provides Boolean instances for the Vec package"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "Vec-OpenGLRaw" = callPackage ( - { - mkDerivation, - base, - OpenGLRaw, - Vec, - }: - mkDerivation { - pname = "Vec-OpenGLRaw"; - version = "0.2.0.1"; - sha256 = "0qsi1s8qp3fkr5alh2m7y1a1lm5xypjvmk174ywf0aga2y20bblm"; - libraryHaskellDepends = [ - base - OpenGLRaw - Vec - ]; - description = "Instances and functions to interoperate Vec and OpenGL"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "Vec-Transform" = callPackage ( { mkDerivation }: mkDerivation { @@ -45645,33 +17848,6 @@ self: { } ) { }; - "Verba" = callPackage ( - { - mkDerivation, - base, - containers, - matrix, - }: - mkDerivation { - pname = "Verba"; - version = "0.1.2.0"; - sha256 = "1fig9zxxisd51v5vzcsapsp4qygikhwhpjzyagw7a3x6kv5qpipm"; - isLibrary = false; - isExecutable = true; - enableSeparateDataOutput = true; - executableHaskellDepends = [ - base - containers - matrix - ]; - description = "A solver for the WordBrain game"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - mainProgram = "Verba"; - broken = true; - } - ) { }; - "ViennaRNA-bindings" = callPackage ( { mkDerivation, @@ -45711,64 +17887,6 @@ self: { } ) { }; - "ViennaRNA-extras" = callPackage ( - { - mkDerivation, - array, - attoparsec, - base, - BiobaseTypes, - BiobaseXNA, - bytestring, - deepseq, - lens, - QuickCheck, - streaming, - streaming-bytestring, - strict, - strict-base-types, - tasty, - tasty-quickcheck, - tasty-th, - vector, - ViennaRNA-bindings, - }: - mkDerivation { - pname = "ViennaRNA-extras"; - version = "0.0.0.1"; - sha256 = "06az042v9ja888nq59bdcsj6i7zk4dmbjsb9qcbdzqv6xw1lm8ac"; - libraryHaskellDepends = [ - array - attoparsec - base - BiobaseTypes - BiobaseXNA - bytestring - deepseq - lens - QuickCheck - streaming - streaming-bytestring - strict - strict-base-types - ViennaRNA-bindings - ]; - testHaskellDepends = [ - attoparsec - base - bytestring - QuickCheck - tasty - tasty-quickcheck - tasty-th - vector - ]; - description = "ViennaRNA v2 extensions"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "ViennaRNAParser" = callPackage ( { mkDerivation, @@ -45800,93 +17918,6 @@ self: { } ) { }; - "Villefort" = callPackage ( - { - mkDerivation, - aeson, - base, - bytestring, - concurrent-extra, - convertible, - directory, - filepath, - HDBC, - HDBC-sqlite3, - hspec, - MissingH, - mtl, - process, - QuickCheck, - random, - scotty, - split, - strict, - text, - time, - transformers, - unbounded-delays, - unix, - uri-encode, - webdriver, - }: - mkDerivation { - pname = "Villefort"; - version = "0.1.2.19"; - sha256 = "1n6371yvlb39dzi4apcb4am2cyqpm26c2d258idyii4v7s5j0rq0"; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - aeson - base - bytestring - convertible - directory - filepath - HDBC - HDBC-sqlite3 - MissingH - mtl - process - random - scotty - split - strict - text - time - transformers - unix - uri-encode - ]; - executableHaskellDepends = [ - base - HDBC - HDBC-sqlite3 - random - scotty - split - text - time - ]; - testHaskellDepends = [ - base - concurrent-extra - HDBC - HDBC-sqlite3 - hspec - mtl - QuickCheck - unbounded-delays - webdriver - ]; - description = "Villefort is a task manager and time tracker"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "Villefort"; - broken = true; - } - ) { }; - "Vis" = callPackage ( { mkDerivation, @@ -46000,327 +18031,6 @@ self: { } ) { }; - "WEditor" = callPackage ( - { - mkDerivation, - base, - directory, - filepath, - }: - mkDerivation { - pname = "WEditor"; - version = "0.2.1.1"; - sha256 = "0p0vrvg96va4jppcxr3r5m14ykb5jybn8iyj677dxpziwh5brhmq"; - libraryHaskellDepends = [ base ]; - testHaskellDepends = [ - base - directory - filepath - ]; - doHaddock = false; - description = "Generic text-editor logic for use with fixed-width fonts"; - license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "WEditorBrick" = callPackage ( - { - mkDerivation, - base, - brick, - microlens, - vty, - WEditor, - }: - mkDerivation { - pname = "WEditorBrick"; - version = "0.2.0.1"; - sha256 = "1bzrfbw14c0ad477z5s51n8181cgcxw6q93bdj1d1nrfgawq7znb"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - brick - microlens - vty - WEditor - ]; - executableHaskellDepends = [ - base - brick - vty - WEditor - ]; - description = "Text-editor widget with dynamic line-wrapping for use with Brick"; - license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; - mainProgram = "brick-example"; - } - ) { }; - - "WEditorHyphen" = callPackage ( - { - mkDerivation, - base, - directory, - hyphenation, - WEditor, - }: - mkDerivation { - pname = "WEditorHyphen"; - version = "0.1.0.5"; - sha256 = "05f7dh75dx27q35bcj84mn3q6w0sd6jkcilykrlad9gm5ihbbcbk"; - libraryHaskellDepends = [ - base - hyphenation - WEditor - ]; - testHaskellDepends = [ - base - directory - hyphenation - WEditor - ]; - description = "Language-specific hyphenation policies for WEditor"; - license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "WL500gPControl" = callPackage ( - { - mkDerivation, - base, - directory, - filepath, - mtl, - unix, - WL500gPLib, - }: - mkDerivation { - pname = "WL500gPControl"; - version = "0.3.4"; - sha256 = "0gbjb432758wvd3p5brb4kjn037x6h30bzvn9f681pg0m1w52hgv"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - directory - filepath - mtl - unix - WL500gPLib - ]; - description = "A simple command line tools to control the Asus WL500gP router"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "WL500gPLib" = callPackage ( - { - mkDerivation, - base, - curl, - mtl, - tagsoup, - }: - mkDerivation { - pname = "WL500gPLib"; - version = "0.3.1"; - sha256 = "15w065yg8hjhljgnmx88fnryhbh7dysmsqmpr9qnj96as7vrkwgs"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - curl - mtl - tagsoup - ]; - executableHaskellDepends = [ base ]; - description = "A simple library to access to the WL 500gP router from the Haskell code"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "test"; - broken = true; - } - ) { }; - - "WMSigner" = callPackage ( - { - mkDerivation, - base, - base64-bytestring, - binary, - bytestring, - cryptohash, - directory, - hspec, - lens, - mtl, - random, - split, - vector, - }: - mkDerivation { - pname = "WMSigner"; - version = "0.1.0.0"; - sha256 = "0im8rfyfnhq2s445cjm4xvnqqs8pgpavhmyk98jqshpfm9d1cd6q"; - libraryHaskellDepends = [ - base - base64-bytestring - binary - bytestring - cryptohash - directory - lens - mtl - random - split - vector - ]; - testHaskellDepends = [ - base - bytestring - cryptohash - hspec - lens - random - split - vector - ]; - description = "WebMoney authentication module"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "WURFL" = callPackage ( - { - mkDerivation, - base, - haskell98, - parsec, - }: - mkDerivation { - pname = "WURFL"; - version = "0.1"; - sha256 = "13vfszyfyxwz4zi8zilifd0jad1gwlr75x931q8qbpi1kwr7mivk"; - libraryHaskellDepends = [ - base - haskell98 - parsec - ]; - description = "Convert the WURFL file into a Parsec parser"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "WXDiffCtrl" = callPackage ( - { - mkDerivation, - base, - containers, - wx, - wxcore, - }: - mkDerivation { - pname = "WXDiffCtrl"; - version = "0.0.1"; - sha256 = "0vv8s483g3dkxyk833cjczj0a5zxiy9xh56kij6n0jjyzxb9bz0k"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base - containers - wx - wxcore - ]; - description = "WXDiffCtrl"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "WashNGo" = callPackage ( - { - mkDerivation, - base, - containers, - directory, - ghc-paths, - haskell98, - parsec, - process, - regex-compat, - }: - mkDerivation { - pname = "WashNGo"; - version = "2.12.0.1"; - sha256 = "11d9cwqfpvf999a5fi3a3v5b4gdrszzgf4gbdhx63afy42ylbnfj"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - containers - haskell98 - parsec - regex-compat - ]; - executableHaskellDepends = [ - directory - ghc-paths - process - ]; - description = "WASH is a family of EDSLs for programming Web applications in Haskell"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "WaveFront" = callPackage ( - { - mkDerivation, - attoparsec, - base, - Cartesian, - containers, - either, - filepath, - lens, - linear, - QuickCheck, - text, - transformers, - vector, - }: - mkDerivation { - pname = "WaveFront"; - version = "0.5.0.0"; - sha256 = "0zc8hnvigm70w2j9y1y8bxzlfgz1mygmp5pbq1ggrrd6nq2p1yn2"; - libraryHaskellDepends = [ - attoparsec - base - Cartesian - containers - either - filepath - lens - linear - QuickCheck - text - transformers - vector - ]; - description = "Parsers and utilities for the OBJ WaveFront 3D model format"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "WeakSets" = callPackage ( { mkDerivation, base }: mkDerivation { @@ -46334,342 +18044,6 @@ self: { } ) { }; - "Weather" = callPackage ( - { - mkDerivation, - aeson, - base, - bytestring, - HTTP, - text, - unordered-containers, - }: - mkDerivation { - pname = "Weather"; - version = "0.1.0.4"; - sha256 = "0g5rpz6gnf8hl7gpjc7nwci8x24yw02ps3jwjsi6js5yf3mlrxnv"; - libraryHaskellDepends = [ - aeson - base - bytestring - HTTP - text - unordered-containers - ]; - description = "Library for interacting with the Weather Underground JSON API"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "WebBits" = callPackage ( - { - mkDerivation, - base, - containers, - mtl, - parsec, - pretty, - syb, - }: - mkDerivation { - pname = "WebBits"; - version = "2.2"; - sha256 = "1frmnjbpgm76dzs1p4766fb6isqc3pxv4dnj8sdhnfliv5j0xv2z"; - libraryHaskellDepends = [ - base - containers - mtl - parsec - pretty - syb - ]; - description = "JavaScript analysis tools"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "WebBits-Html" = callPackage ( - { - mkDerivation, - base, - containers, - mtl, - parsec, - pretty, - syb, - WebBits, - }: - mkDerivation { - pname = "WebBits-Html"; - version = "1.0.2"; - sha256 = "18dd52970cd27kra4l89vvrx2mrdbqd4w4f76xrq3142daxsagal"; - libraryHaskellDepends = [ - base - containers - mtl - parsec - pretty - syb - WebBits - ]; - description = "JavaScript analysis tools"; - license = "LGPL"; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "WebBits-multiplate" = callPackage ( - { - mkDerivation, - base, - multiplate, - multiplate-simplified, - transformers, - WebBits, - }: - mkDerivation { - pname = "WebBits-multiplate"; - version = "0.0.0.1"; - sha256 = "1j3difi3f1w6bgbnsvqw9cv88aikin22myli0lx29pqn7xhqsbv3"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base - multiplate - multiplate-simplified - transformers - WebBits - ]; - description = "A Multiplate instance for JavaScript"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "WebCont" = callPackage ( - { - mkDerivation, - applicative-extras, - base, - concatenative, - containers, - formlets, - happstack-server, - happstack-state, - happstack-util, - mtl, - utf8-string, - xhtml, - }: - mkDerivation { - pname = "WebCont"; - version = "0.0.1"; - sha256 = "1lr5iz0kqhr8w0c7038mlbysw1c3lbzfjis085n68ib104ykyyi6"; - libraryHaskellDepends = [ - applicative-extras - base - concatenative - containers - formlets - happstack-server - happstack-state - happstack-util - mtl - utf8-string - xhtml - ]; - description = "Continuation based web programming for Happstack"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "WeberLogic" = callPackage ( - { - mkDerivation, - base, - parsec, - }: - mkDerivation { - pname = "WeberLogic"; - version = "0.1.2"; - sha256 = "0nl79q3y2qi0xnkppxj8d9h96hfwrgb3gksm2x1zp9lq7836562z"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - parsec - ]; - executableHaskellDepends = [ - base - parsec - ]; - description = "Logic interpreter"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "WeberLogic"; - broken = true; - } - ) { }; - - "Webrexp" = callPackage ( - { - mkDerivation, - aeson, - array, - base, - bytestring, - containers, - directory, - filepath, - HaXml, - HTTP, - hxt, - mtl, - network, - parsec, - process, - regex-pcre-builtin, - template-haskell, - text, - transformers, - unordered-containers, - vector, - }: - mkDerivation { - pname = "Webrexp"; - version = "1.1.2"; - sha256 = "1iv969gd4xmagw74i6fmw4d864zxlzi4yf0y9ns1nvijn7w7s5jb"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson - array - base - bytestring - containers - directory - filepath - HaXml - HTTP - hxt - mtl - network - parsec - process - regex-pcre-builtin - template-haskell - text - transformers - unordered-containers - vector - ]; - executableHaskellDepends = [ - aeson - array - base - bytestring - containers - directory - filepath - HaXml - HTTP - hxt - mtl - network - parsec - process - regex-pcre-builtin - template-haskell - text - transformers - unordered-containers - vector - ]; - description = "Regexp-like engine to scrap web data"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "webrexp"; - broken = true; - } - ) { }; - - "Wheb" = callPackage ( - { - mkDerivation, - base, - blaze-builder, - bytestring, - case-insensitive, - containers, - cookie, - http-types, - HUnit, - mtl, - pwstore-fast, - QuickCheck, - stm, - test-framework, - test-framework-hunit, - test-framework-quickcheck2, - text, - time, - transformers, - unix, - uuid, - wai, - wai-extra, - wai-websockets, - warp, - web-routes, - websockets, - }: - mkDerivation { - pname = "Wheb"; - version = "0.3.1.0"; - sha256 = "13x204lz2azfrry38w791rni2d0g9xsg5lhajrkrgfhdn56yrzqs"; - libraryHaskellDepends = [ - base - blaze-builder - bytestring - case-insensitive - containers - cookie - http-types - mtl - pwstore-fast - stm - text - time - transformers - unix - uuid - wai - wai-extra - wai-websockets - warp - web-routes - websockets - ]; - testHaskellDepends = [ - base - HUnit - QuickCheck - test-framework - test-framework-hunit - test-framework-quickcheck2 - text - ]; - description = "The frictionless WAI Framework"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "WidgetRattus" = callPackage ( { mkDerivation, @@ -46717,27 +18091,6 @@ self: { } ) { }; - "WikimediaParser" = callPackage ( - { - mkDerivation, - base, - parsec, - }: - mkDerivation { - pname = "WikimediaParser"; - version = "0.1"; - sha256 = "0rzpf8z414qvkbks16zizsxsinvbdxbm1n0dbav11p286791xx1j"; - libraryHaskellDepends = [ - base - parsec - ]; - description = "A parser for wikimedia style article markup"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "Win32" = callPackage ( { mkDerivation }: mkDerivation { @@ -47026,248 +18379,6 @@ self: { ole32 = null; }; - "Wired" = callPackage ( - { - mkDerivation, - base, - chalmers-lava2000, - containers, - mtl, - QuickCheck, - }: - mkDerivation { - pname = "Wired"; - version = "0.3"; - sha256 = "14zxf849r4k3mk5i5rakfjp2f216sz84ww4hfggq9cnr9w8j406j"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base - chalmers-lava2000 - containers - mtl - QuickCheck - ]; - description = "Wire-aware hardware description"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "WordAlignment" = callPackage ( - { - mkDerivation, - ADPfusion, - aeson, - AlignmentAlgorithms, - attoparsec, - base, - bimaps, - bytestring, - cmdargs, - containers, - data-default, - deepseq, - DPutils, - file-embed, - filepath, - fmlist, - FormalGrammars, - ghc-prim, - GrammarProducts, - hashable, - intern, - lens, - LinguisticsTypes, - mtl, - NaturalLanguageAlphabets, - parallel, - pipes, - primitive, - PrimitiveArray, - split, - strict, - tasty, - tasty-quickcheck, - tasty-silver, - tasty-th, - template-haskell, - text, - text-format, - transformers, - tuple-th, - unordered-containers, - vector, - }: - mkDerivation { - pname = "WordAlignment"; - version = "0.2.0.0"; - sha256 = "1k0i8pbmap8mk9hm03nbgzgy5kw4pdpqqkdp8gnfq05mdmh35kcw"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - ADPfusion - aeson - AlignmentAlgorithms - attoparsec - base - bimaps - bytestring - containers - data-default - deepseq - DPutils - file-embed - fmlist - FormalGrammars - ghc-prim - GrammarProducts - hashable - intern - lens - LinguisticsTypes - mtl - NaturalLanguageAlphabets - pipes - primitive - PrimitiveArray - strict - template-haskell - text - text-format - transformers - tuple-th - unordered-containers - vector - ]; - executableHaskellDepends = [ - aeson - base - bytestring - cmdargs - containers - data-default - DPutils - file-embed - intern - lens - LinguisticsTypes - mtl - NaturalLanguageAlphabets - parallel - pipes - strict - text - text-format - transformers - unordered-containers - vector - ]; - testHaskellDepends = [ - base - bytestring - containers - DPutils - filepath - NaturalLanguageAlphabets - split - tasty - tasty-quickcheck - tasty-silver - tasty-th - text - ]; - description = "Bigram word pair alignments"; - license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - mainProgram = "WordAlign"; - } - ) { }; - - "WordNet" = callPackage ( - { - mkDerivation, - array, - base, - containers, - filepath, - }: - mkDerivation { - pname = "WordNet"; - version = "1.1.0"; - sha256 = "0b44xxkihafzsw25xx484xxw17zlzzqbj0bx8cs2nvf3p7jxd02k"; - revision = "2"; - editedCabalFile = "08i5izbni7xism94h6ncmdvfy88gny2vybapv0fkzgw3wyf6arhq"; - libraryHaskellDepends = [ - array - base - containers - filepath - ]; - description = "Haskell interface to the WordNet database"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "WordNet-ghc74" = callPackage ( - { - mkDerivation, - array, - base, - containers, - filepath, - }: - mkDerivation { - pname = "WordNet-ghc74"; - version = "0.1.3"; - sha256 = "1ab5wybawa3dfq89dn0g3zdhsqd03bcm3qky2d4z6irw7afdqrr8"; - revision = "1"; - editedCabalFile = "1wdx2xv6zxvwkz3jkkd4vcdf9hyyivbfwyln9dd30m67ip7illp3"; - libraryHaskellDepends = [ - array - base - containers - filepath - ]; - description = "Haskell interface to the WordNet database"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "Wordlint" = callPackage ( - { - mkDerivation, - base, - boxes, - cmdargs, - }: - mkDerivation { - pname = "Wordlint"; - version = "0.2.0.4"; - sha256 = "08d02h4ynkwxqxxqzk8hfmdj9y7rg23biybb969pk0scgvg7iyd5"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - boxes - cmdargs - ]; - executableHaskellDepends = [ - base - boxes - cmdargs - ]; - description = "Plaintext prose redundancy linter"; - license = "unknown"; - hydraPlatforms = lib.platforms.none; - mainProgram = "wordlint"; - broken = true; - } - ) { }; - "Workflow" = callPackage ( { mkDerivation, @@ -47376,71 +18487,12 @@ self: { tasty-hunit tasty-quickcheck utf8-string - vector - ]; - description = "Whole-message cipher and tree hash"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "WringTwistree"; - } - ) { }; - - "WxGeneric" = callPackage ( - { - mkDerivation, - base, - containers, - mtl, - SybWidget, - wx, - wxcore, - xtc, - }: - mkDerivation { - pname = "WxGeneric"; - version = "0.8.1"; - sha256 = "0lvbdmb1qwsz8bz0z715nzgbpshfckm4syk1ny52akkb4ddkrd60"; - libraryHaskellDepends = [ - base - containers - mtl - SybWidget - wx - wxcore - xtc - ]; - description = "Generic (SYB3) construction of wxHaskell widgets"; - license = "LGPL"; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "X" = callPackage ( - { - mkDerivation, - base, - bytestring, - deepseq, - text, - text-short, - }: - mkDerivation { - pname = "X"; - version = "0.3.1.0"; - sha256 = "10paczbaiwag50v8ay9pl0f6whqds6y0yy14z0h8s6j04p9zd50f"; - revision = "1"; - editedCabalFile = "1c24q6bh9zq1a9rm9wqi8kasfzcn3cvbzdcgya8clwh3k7xbsvmg"; - libraryHaskellDepends = [ - base - bytestring - deepseq - text - text-short + vector ]; - description = "A light-weight XML library"; - license = "BSD-3-Clause AND GPL-3.0-or-later"; + description = "Whole-message cipher and tree hash"; + license = lib.licenses.bsd3; hydraPlatforms = lib.platforms.none; - broken = true; + mainProgram = "WringTwistree"; } ) { }; @@ -47490,98 +18542,6 @@ self: { inherit (pkgs.xorg) libXrender; }; - "X11-extras" = callPackage ( - { - mkDerivation, - base, - libX11, - X11, - }: - mkDerivation { - pname = "X11-extras"; - version = "0.4"; - sha256 = "1cpjr09gddcjd0wqwvaankv1zj7fyc6hbfdvar63f51g3vvw627a"; - revision = "1"; - editedCabalFile = "0g7zmmnfz2bkhsk8r7jyrw1s3kdpjz9yichjcgp48kgvs6n1bczp"; - libraryHaskellDepends = [ - base - X11 - ]; - librarySystemDepends = [ libX11 ]; - description = "Missing bindings to the X11 graphics library"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { inherit (pkgs.xorg) libX11; }; - - "X11-rm" = callPackage ( - { - mkDerivation, - base, - X11, - }: - mkDerivation { - pname = "X11-rm"; - version = "0.2"; - sha256 = "11jxlaad9jgjddd5v8ygy2rdrajrbm9dlp6f0mslvxa2wzn4v4r3"; - libraryHaskellDepends = [ - base - X11 - ]; - description = "A binding to the resource management functions missing from X11"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "X11-xdamage" = callPackage ( - { - mkDerivation, - base, - X11, - Xdamage, - }: - mkDerivation { - pname = "X11-xdamage"; - version = "0.1.2"; - sha256 = "0r6dq9xx0v100162y7bvkj1l0lv5m697y35c659kgjj0mg8p9bjv"; - libraryHaskellDepends = [ - base - X11 - ]; - librarySystemDepends = [ Xdamage ]; - description = "A binding to the Xdamage X11 extension library"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { Xdamage = null; }; - - "X11-xfixes" = callPackage ( - { - mkDerivation, - base, - X11, - Xfixes, - }: - mkDerivation { - pname = "X11-xfixes"; - version = "0.1.1"; - sha256 = "0wwhyqqybrjvy8mi5d5429wraky93xq348gr9ldhg2qj95hj13yk"; - libraryHaskellDepends = [ - base - X11 - ]; - librarySystemDepends = [ Xfixes ]; - description = "A binding to the Xfixes X11 extension library"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { Xfixes = null; }; - "X11-xft" = callPackage ( { mkDerivation, @@ -47666,47 +18626,6 @@ self: { } ) { inherit (pkgs.xorg) xinput; }; - "XML" = callPackage ( - { - mkDerivation, - base, - base-unicode-symbols, - hs-functors, - multivector, - smallcheck, - tasty, - tasty-smallcheck, - txt, - util, - vector, - }: - mkDerivation { - pname = "XML"; - version = "0.0.1.0"; - sha256 = "1cix816q5q45gyw48634ar4x50wmmqqn4cwz94czvlb7v03qc8rv"; - revision = "1"; - editedCabalFile = "01hxvcp2g9vwpafr7nv4dcl1iny2w973ikhdlj59i0zcrd9k92aw"; - libraryHaskellDepends = [ - base - base-unicode-symbols - hs-functors - multivector - txt - util - vector - ]; - testHaskellDepends = [ - base - smallcheck - tasty - tasty-smallcheck - ]; - description = "Extensible Markup Language"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "XMLParser" = callPackage ( { mkDerivation, @@ -47726,73 +18645,6 @@ self: { } ) { }; - "XMMS" = - callPackage - ( - { - mkDerivation, - base, - containers, - xmmsclient, - xmmsclient-glib, - }: - mkDerivation { - pname = "XMMS"; - version = "0.1.1"; - sha256 = "08l53b0wp6v9wjfn53xfa1vlh64bnqidajc4lzlk8p31km1c09qx"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base - containers - ]; - librarySystemDepends = [ - xmmsclient - xmmsclient-glib - ]; - description = "XMMS2 client library"; - license = "LGPL"; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) - { - xmmsclient = null; - xmmsclient-glib = null; - }; - - "XMPP" = callPackage ( - { - mkDerivation, - base, - haskell98, - hsdns, - mtl, - network, - parsec, - random, - utf8-string, - }: - mkDerivation { - pname = "XMPP"; - version = "0.1.2"; - sha256 = "03gypa9kln2v3zqyxszn4k2x364g8wj0hppsy10ywmandghsvn7b"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base - haskell98 - hsdns - mtl - network - parsec - random - utf8-string - ]; - description = "XMPP library"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "XSaiga" = callPackage ( { mkDerivation, @@ -47866,7 +18718,6 @@ self: { ]; description = "An implementation of a polynomial-time top-down parser suitable for NLP"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "solarman.cgi"; } ) { }; @@ -47888,324 +18739,6 @@ self: { } ) { inherit (pkgs.xorg) libXau; }; - "Xec" = callPackage ( - { - mkDerivation, - base, - binary, - bytestring, - cairo, - containers, - directory, - filepath, - gtk, - mtl, - old-time, - SHA, - unix, - }: - mkDerivation { - pname = "Xec"; - version = "0.1.6"; - sha256 = "1n3y232v9i5jzbshk2zw675g09snc45ni60acmi6kvfsk7nkmfw8"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - binary - bytestring - cairo - containers - directory - filepath - gtk - mtl - old-time - SHA - unix - ]; - description = "Gtk command launcher with identicon"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "Xec"; - broken = true; - } - ) { }; - - "XmlHtmlWriter" = callPackage ( - { - mkDerivation, - base, - mtl, - transformers, - }: - mkDerivation { - pname = "XmlHtmlWriter"; - version = "0.0.0.1"; - sha256 = "0dv5nvvqy6w0ndjyab4bwhjpw1hlx8xi4bv2jw4rl8v6y68bilk1"; - libraryHaskellDepends = [ - base - mtl - transformers - ]; - description = "A library for writing XML and HTML"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "Xorshift128Plus" = callPackage ( - { mkDerivation, base }: - mkDerivation { - pname = "Xorshift128Plus"; - version = "0.1.0.1"; - sha256 = "11g1gipc9v81h5jzndr3j7j4mwr4lva9b52fd0hml4mrzf6vj2dx"; - libraryHaskellDepends = [ base ]; - description = "Pure haskell implementation of xorshift128plus random number generator"; - license = lib.licenses.publicDomain; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "YACPong" = callPackage ( - { - mkDerivation, - base, - data-accessor-transformers, - fclabels, - monads-fd, - random, - SDL, - SDL-image, - SDL-mixer, - SDL-ttf, - transformers, - }: - mkDerivation { - pname = "YACPong"; - version = "0.1"; - sha256 = "1r2n1vbzq755p68fzb5f6fm1yjfq2c5jgx52ri9p5rlrwmfk3hw5"; - isLibrary = false; - isExecutable = true; - enableSeparateDataOutput = true; - executableHaskellDepends = [ - base - data-accessor-transformers - fclabels - monads-fd - random - SDL - SDL-image - SDL-mixer - SDL-ttf - transformers - ]; - description = "Yet Another Pong Clone using SDL"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - mainProgram = "YACPong"; - broken = true; - } - ) { }; - - "YFrob" = callPackage ( - { - mkDerivation, - array, - base, - HGL, - Yampa, - }: - mkDerivation { - pname = "YFrob"; - version = "0.4"; - sha256 = "17pp79yr8jfmhx85vlr5kx7q5wha48p3ra7l4ligd583yxzvlnif"; - libraryHaskellDepends = [ - array - base - HGL - Yampa - ]; - description = "Yampa-based library for programming robots"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "Yablog" = callPackage ( - { - mkDerivation, - base, - blaze-builder, - blaze-html, - bytestring, - case-insensitive, - clientsession, - conduit, - containers, - data-default, - directory, - filepath, - hamlet, - hjsmin, - http-conduit, - http-types, - mime-mail, - monad-control, - mtl, - network, - old-locale, - pandoc, - pandoc-types, - persistent, - persistent-mongoDB, - resourcet, - shakespeare-css, - shakespeare-js, - shakespeare-text, - template-haskell, - temporary, - text, - time, - wai, - wai-extra, - xml-conduit, - xml-hamlet, - yaml, - yesod, - yesod-auth, - yesod-core, - yesod-default, - yesod-form, - yesod-newsfeed, - yesod-platform, - yesod-recaptcha, - yesod-static, - }: - mkDerivation { - pname = "Yablog"; - version = "0.2.0"; - sha256 = "0qa7m9y3dclr2r2vpd2cmpc58nib158hnr49hrdjvk00ncd4lyvk"; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; - executableHaskellDepends = [ - base - blaze-builder - blaze-html - bytestring - case-insensitive - clientsession - conduit - containers - data-default - directory - filepath - hamlet - hjsmin - http-conduit - http-types - mime-mail - monad-control - mtl - network - old-locale - pandoc - pandoc-types - persistent - persistent-mongoDB - resourcet - shakespeare-css - shakespeare-js - shakespeare-text - template-haskell - temporary - text - time - wai - wai-extra - xml-conduit - xml-hamlet - yaml - yesod - yesod-auth - yesod-core - yesod-default - yesod-form - yesod-newsfeed - yesod-platform - yesod-recaptcha - yesod-static - ]; - description = "A simple blog engine powered by Yesod"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "Yablog"; - } - ) { }; - - "YamlReference" = callPackage ( - { - mkDerivation, - base, - bytestring, - Cabal, - containers, - directory, - dlist, - hashmap, - HUnit, - mtl, - regex-compat, - }: - mkDerivation { - pname = "YamlReference"; - version = "0.10.0"; - sha256 = "01cjddbg98vs1bd66n0v58i415kqn7cfi6cslk384p7j2ivwv2ad"; - revision = "2"; - editedCabalFile = "023997365188qvgrfg8wshmmlrjr7z435329pxcsvmfcywnc739a"; - isLibrary = true; - isExecutable = true; - setupHaskellDepends = [ - base - Cabal - ]; - libraryHaskellDepends = [ - base - bytestring - containers - dlist - regex-compat - ]; - executableHaskellDepends = [ - base - bytestring - containers - dlist - regex-compat - ]; - testHaskellDepends = [ - base - bytestring - containers - directory - dlist - hashmap - HUnit - mtl - regex-compat - ]; - description = "YAML reference implementation"; - license = "LGPL"; - hydraPlatforms = lib.platforms.none; - mainProgram = "yaml2yeast"; - broken = true; - } - ) { }; - "Yampa" = callPackage ( { mkDerivation, @@ -48265,39 +18798,6 @@ self: { } ) { }; - "YampaSynth" = callPackage ( - { - mkDerivation, - array, - base, - bytestring, - containers, - HCodecs, - Yampa, - }: - mkDerivation { - pname = "YampaSynth"; - version = "0.2"; - sha256 = "028a7lrfyikvky52s19kffssnry1grnip3sm7z55bs5fazma1im1"; - isLibrary = false; - isExecutable = true; - enableSeparateDataOutput = true; - executableHaskellDepends = [ - array - base - bytestring - containers - HCodecs - Yampa - ]; - description = "Software synthesizer"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "yampasynth-wav"; - broken = true; - } - ) { }; - "Yocto" = callPackage ( { mkDerivation, @@ -48319,86 +18819,6 @@ self: { } ) { }; - "Yogurt" = callPackage ( - { - mkDerivation, - base, - containers, - mtl, - network, - old-locale, - process, - readline, - regex-posix, - syb, - time, - }: - mkDerivation { - pname = "Yogurt"; - version = "0.4.1"; - sha256 = "04fzixjgsn0azx2dp352kipxdijfafsm5dnrcvxpxdxms35npffq"; - libraryHaskellDepends = [ - base - containers - mtl - network - old-locale - process - readline - regex-posix - syb - time - ]; - description = "A MUD client library"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "Yogurt-Standalone" = callPackage ( - { - mkDerivation, - base, - containers, - hint, - mtl, - network, - old-locale, - process, - readline, - regex-posix, - syb, - time, - Yogurt, - }: - mkDerivation { - pname = "Yogurt-Standalone"; - version = "0.4"; - sha256 = "151kamqwdwnhinvsmzdq9ckryyvnrf9ihzw6qm4j851y375452hl"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - containers - hint - mtl - network - old-locale - process - regex-posix - syb - time - Yogurt - ]; - executableSystemDepends = [ readline ]; - description = "A functional MUD client"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "yogurt"; - } - ) { inherit (pkgs) readline; }; - "Z-Botan" = callPackage ( { mkDerivation, @@ -48690,110 +19110,6 @@ self: { } ) { }; - "ZEBEDDE" = callPackage ( - { - mkDerivation, - base, - vect, - }: - mkDerivation { - pname = "ZEBEDDE"; - version = "0.1.0.0"; - sha256 = "1i85pah79342ivmcg73q305awbf9fi6gw4ckg9i019d6vmdg5d17"; - revision = "5"; - editedCabalFile = "17dsvvbv3kf0b85l15fdkbvfpjhcmqw3j54j8av59wqhqncgnx2r"; - libraryHaskellDepends = [ - base - vect - ]; - description = "Polymer growth simulation method"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "ZFS" = callPackage ( - { - mkDerivation, - base, - CC-delcont, - containers, - mtl, - network, - unix, - }: - mkDerivation { - pname = "ZFS"; - version = "0.0.2"; - sha256 = "1mwpcgkw1cci2grhb8vl081wykkgsmfbanwapp10mrzzp0df1yzr"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base - CC-delcont - containers - mtl - network - unix - ]; - description = "Oleg's Zipper FS"; - license = lib.licenses.publicDomain; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "ZMachine" = callPackage ( - { - mkDerivation, - array, - base, - gtk, - mtl, - random, - }: - mkDerivation { - pname = "ZMachine"; - version = "0.0"; - sha256 = "1s005k892z9651mr2jj0jdwpm8aa0y72vi405xi4h6czg52i4rb3"; - isLibrary = false; - isExecutable = true; - enableSeparateDataOutput = true; - executableHaskellDepends = [ - array - base - gtk - mtl - random - ]; - description = "A Z-machine interpreter"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "zmachine"; - broken = true; - } - ) { }; - - "ZipFold" = callPackage ( - { - mkDerivation, - base, - TypeCompose, - }: - mkDerivation { - pname = "ZipFold"; - version = "0.1.4"; - sha256 = "05cnpl9c6i0j8jqr4j43b32jgryv34gahimhp9g1m45idgnl2sn0"; - libraryHaskellDepends = [ - base - TypeCompose - ]; - description = "Zipping folds"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "ZipperAG" = callPackage ( { mkDerivation, @@ -48855,54 +19171,6 @@ self: { } ) { }; - "Zwaluw" = callPackage ( - { mkDerivation, base }: - mkDerivation { - pname = "Zwaluw"; - version = "0.1"; - sha256 = "1crvcvni5gzpc1c6cnaqqp0gng1l9gk9d8ac23967nvp82xav7s1"; - libraryHaskellDepends = [ base ]; - description = "Combinators for bidirectional URL routing"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "a50" = callPackage ( - { - mkDerivation, - base, - biofasta, - biopsl, - cmdargs, - containers, - directory, - process, - }: - mkDerivation { - pname = "a50"; - version = "0.5"; - sha256 = "0jfnf0rq3rfic196zjwbaiamyis98zrr8d4zn2myjlgqlzhljzs0"; - isLibrary = false; - isExecutable = true; - enableSeparateDataOutput = true; - executableHaskellDepends = [ - base - biofasta - biopsl - cmdargs - containers - directory - process - ]; - description = "Compare genome assemblies"; - license = "GPL"; - hydraPlatforms = lib.platforms.none; - mainProgram = "a50"; - } - ) { }; - "aasam" = callPackage ( { mkDerivation, @@ -48937,35 +19205,6 @@ self: { } ) { }; - "abacate" = callPackage ( - { - mkDerivation, - base, - HUnit, - parsec, - text, - }: - mkDerivation { - pname = "abacate"; - version = "0.0.0.0"; - sha256 = "1lxsn3n77fk7jl8i76nffj1zngvi2s38y17s54ha29h8hrp3s3dg"; - libraryHaskellDepends = [ - base - parsec - text - ]; - testHaskellDepends = [ - base - HUnit - text - ]; - description = "Parser for a language similar to Cucumber's Gherkin"; - license = "unknown"; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "abc-puzzle" = callPackage ( { mkDerivation, @@ -48996,200 +19235,6 @@ self: { } ) { }; - "abcBridge" = callPackage ( - { - mkDerivation, - abc, - aig, - base, - base-compat, - c2hs, - containers, - directory, - QuickCheck, - tasty, - tasty-ant-xml, - tasty-hunit, - tasty-quickcheck, - vector, - }: - mkDerivation { - pname = "abcBridge"; - version = "0.15"; - sha256 = "0g0ibd2fkarw9m7bqgklqrhw3xbx84swh7v292nzghz9ss1gizj5"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aig - base - base-compat - containers - directory - vector - ]; - librarySystemDepends = [ abc ]; - libraryToolDepends = [ c2hs ]; - testHaskellDepends = [ - aig - base - base-compat - directory - QuickCheck - tasty - tasty-ant-xml - tasty-hunit - tasty-quickcheck - vector - ]; - description = "Bindings for ABC, A System for Sequential Synthesis and Verification"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { abc = null; }; - - "abcnotation" = callPackage ( - { - mkDerivation, - base, - parsec, - prettify, - process, - semigroups, - }: - mkDerivation { - pname = "abcnotation"; - version = "1.9.0"; - sha256 = "0vmpgdqasnhj0fbb5wl7ikxmp6kzrlnbixp2yj4x93mh8vrrsk40"; - libraryHaskellDepends = [ - base - parsec - prettify - process - semigroups - ]; - description = "Haskell representation and parser for ABC notation"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "abeson" = callPackage ( - { - mkDerivation, - aeson, - base, - base64-bytestring, - bson, - bytestring, - data-default-class, - scientific, - text, - time, - unordered-containers, - uuid, - vector, - }: - mkDerivation { - pname = "abeson"; - version = "0.1.0.1"; - sha256 = "1g258gfk7sk8hsd4nixah0vj69rwphvv6aywsvdldm8pbw51sy1c"; - revision = "1"; - editedCabalFile = "09w7335f3xzrjhl2kcw3c5lr3lz36g8nvanj6sdzpy17jg0kj67w"; - libraryHaskellDepends = [ - aeson - base - base64-bytestring - bson - bytestring - data-default-class - scientific - text - time - unordered-containers - uuid - vector - ]; - description = "interconversion between aeson and bson"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "abides" = callPackage ( - { - mkDerivation, - base, - comonad, - tasty, - tasty-quickcheck, - }: - mkDerivation { - pname = "abides"; - version = "0.0.1"; - sha256 = "0qw4zlbz92j9m5wnnckmyc7vr5naq41zv1g648b02kb8zp94l7hf"; - libraryHaskellDepends = [ - base - comonad - ]; - testHaskellDepends = [ - base - comonad - tasty - tasty-quickcheck - ]; - description = "Simple boolean tests to see if a value abides by certain properties"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "abnf" = callPackage ( - { - mkDerivation, - attoparsec, - base, - containers, - HUnit, - megaparsec, - tasty, - tasty-hunit, - test-framework, - test-framework-hunit, - text, - }: - mkDerivation { - pname = "abnf"; - version = "0.4.1.0"; - sha256 = "1jv2absg9y0ps0ssf0i6vb9sp898xka8lsi9xcxjihk0w08y3dgr"; - libraryHaskellDepends = [ - attoparsec - base - containers - megaparsec - text - ]; - testHaskellDepends = [ - attoparsec - base - containers - HUnit - megaparsec - tasty - tasty-hunit - test-framework - test-framework-hunit - text - ]; - description = "Parse ABNF and generate parsers for the specified document"; - license = lib.licenses.bsd2; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "abstract-deque" = callPackage ( { mkDerivation, @@ -49278,60 +19323,6 @@ self: { } ) { }; - "abstract-par-accelerate" = callPackage ( - { - mkDerivation, - abstract-par, - accelerate, - array, - base, - vector, - }: - mkDerivation { - pname = "abstract-par-accelerate"; - version = "0.3.3"; - sha256 = "0k1730mg2vyf21837fc459m8si1ffnbj78cdkbgglp2vn51f3nz4"; - libraryHaskellDepends = [ - abstract-par - accelerate - array - base - vector - ]; - description = "Provides the class ParAccelerate, nothing more"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "abt" = callPackage ( - { - mkDerivation, - base, - profunctors, - transformers, - transformers-compat, - vinyl, - }: - mkDerivation { - pname = "abt"; - version = "0.1.1.0"; - sha256 = "1hgbzzpxn6gcs3zjs8hqz065gqk2x6gzra2b1fw9lyb2x4lw42y9"; - libraryHaskellDepends = [ - base - profunctors - transformers - transformers-compat - vinyl - ]; - description = "Abstract binding trees for Haskell"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "ac-library-hs" = callPackage ( { mkDerivation, @@ -49436,55 +19427,6 @@ self: { } ) { }; - "ac-machine" = callPackage ( - { - mkDerivation, - base, - hashable, - unordered-containers, - vector, - }: - mkDerivation { - pname = "ac-machine"; - version = "0.2.0.5"; - sha256 = "00s2nvd85l00kpl45ipaq4ypa1ymaxmvnaf5mdvdladg4icl50i4"; - libraryHaskellDepends = [ - base - hashable - unordered-containers - vector - ]; - description = "Aho-Corasick string matching algorithm in Haskell"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "ac-machine-conduit" = callPackage ( - { - mkDerivation, - ac-machine, - base, - conduit, - text, - }: - mkDerivation { - pname = "ac-machine-conduit"; - version = "0.1.0.0"; - sha256 = "1nsnbvllwznbqycw33f09vfgqvqmqfkcbi367clm6k4v6rfswzl3"; - libraryHaskellDepends = [ - ac-machine - base - conduit - text - ]; - description = "Drive Aho-Corasick machines in Conduit pipelines"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "acc" = callPackage ( { mkDerivation, @@ -49610,39 +19552,6 @@ self: { } ) { }; - "accelerate-arithmetic" = callPackage ( - { - mkDerivation, - accelerate, - accelerate-utility, - base, - QuickCheck, - utility-ht, - }: - mkDerivation { - pname = "accelerate-arithmetic"; - version = "1.0.0.1"; - sha256 = "05hnbsccd8wm984zpkrkk7653rwml33rq3hymy2llzbi010jm82y"; - libraryHaskellDepends = [ - accelerate - accelerate-utility - base - QuickCheck - utility-ht - ]; - testHaskellDepends = [ - accelerate - accelerate-utility - base - QuickCheck - ]; - description = "Linear algebra and interpolation using the Accelerate framework"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - maintainers = [ lib.maintainers.thielema ]; - } - ) { }; - "accelerate-bignum" = callPackage ( { mkDerivation, @@ -50117,88 +20026,6 @@ self: { } ) { }; - "accelerate-fftw" = callPackage ( - { - mkDerivation, - accelerate, - accelerate-io, - base, - carray, - fft, - storable-complex, - }: - mkDerivation { - pname = "accelerate-fftw"; - version = "1.0.0.1"; - sha256 = "1qakxrm0f61zb21awjvpiw5054p7lhrm9sa2bha4jfzksw9phypy"; - libraryHaskellDepends = [ - accelerate - accelerate-io - base - carray - fft - storable-complex - ]; - description = "Accelerate frontend to the FFTW library (Fourier transform)"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - maintainers = [ lib.maintainers.thielema ]; - broken = true; - } - ) { }; - - "accelerate-fourier" = callPackage ( - { - mkDerivation, - accelerate, - accelerate-arithmetic, - accelerate-llvm-native, - accelerate-utility, - base, - containers, - criterion, - QuickCheck, - transformers, - utility-ht, - }: - mkDerivation { - pname = "accelerate-fourier"; - version = "1.0.0.5"; - sha256 = "03bbs6k6mn76nsgjhi823mzmhl3fsgyqjqix9wsslj8jh2vg3kr8"; - libraryHaskellDepends = [ - accelerate - accelerate-arithmetic - accelerate-utility - base - containers - QuickCheck - transformers - utility-ht - ]; - testHaskellDepends = [ - accelerate - accelerate-arithmetic - accelerate-utility - base - QuickCheck - utility-ht - ]; - benchmarkHaskellDepends = [ - accelerate - accelerate-arithmetic - accelerate-llvm-native - accelerate-utility - base - criterion - utility-ht - ]; - description = "Fast Fourier transform and convolution using the Accelerate framework"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - maintainers = [ lib.maintainers.thielema ]; - } - ) { }; - "accelerate-fourier-benchmark" = callPackage ( { mkDerivation, @@ -50513,58 +20340,6 @@ self: { } ) { }; - "accelerate-llvm" = callPackage ( - { - mkDerivation, - accelerate, - base, - bytestring, - constraints, - containers, - data-default-class, - deepseq, - directory, - dlist, - exceptions, - filepath, - llvm-hs, - llvm-hs-pure, - mtl, - primitive, - template-haskell, - unordered-containers, - vector, - }: - mkDerivation { - pname = "accelerate-llvm"; - version = "1.3.0.0"; - sha256 = "1fjjfjav11s6grwl6ihqdrzx738bwki0l25qlp4zzz2hi2440qbp"; - libraryHaskellDepends = [ - accelerate - base - bytestring - constraints - containers - data-default-class - deepseq - directory - dlist - exceptions - filepath - llvm-hs - llvm-hs-pure - mtl - primitive - template-haskell - unordered-containers - vector - ]; - description = "Accelerate backend component generating LLVM IR"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "accelerate-llvm-native" = callPackage ( { mkDerivation, @@ -50629,7 +20404,6 @@ self: { ]; description = "Accelerate backend for multicore CPUs"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; } ) { }; @@ -50695,270 +20469,6 @@ self: { } ) { }; - "accelerate-random" = callPackage ( - { - mkDerivation, - accelerate, - base, - mwc-random, - }: - mkDerivation { - pname = "accelerate-random"; - version = "0.15.0.0"; - sha256 = "1wqy11aw99gq7hd0g539synsh6kv8j4a09p9b1k29hpanjr009kd"; - libraryHaskellDepends = [ - accelerate - base - mwc-random - ]; - description = "Generate Accelerate arrays filled with high quality pseudorandom numbers"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "accelerate-typelits" = callPackage ( - { - mkDerivation, - accelerate, - accelerate-random, - base, - HUnit-Plus, - mwc-random, - QuickCheck, - smallcheck, - tasty, - tasty-hunit, - tasty-quickcheck, - tasty-smallcheck, - }: - mkDerivation { - pname = "accelerate-typelits"; - version = "0.1.0.0"; - sha256 = "0851r22gvrcnjiisdn5s826wpywga9nzjskk6fy2js9d7dw32vlm"; - revision = "2"; - editedCabalFile = "1mcny4gm03bfryvzk80z5y5cmhhq173x81nyw0yijb109zq6jgll"; - libraryHaskellDepends = [ - accelerate - accelerate-random - base - mwc-random - QuickCheck - smallcheck - ]; - testHaskellDepends = [ - accelerate - accelerate-random - base - HUnit-Plus - mwc-random - QuickCheck - smallcheck - tasty - tasty-hunit - tasty-quickcheck - tasty-smallcheck - ]; - description = "a typesafe way encode accelerate matrices and vectors"; - license = lib.licenses.isc; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "accelerate-utility" = callPackage ( - { - mkDerivation, - accelerate, - base, - utility-ht, - }: - mkDerivation { - pname = "accelerate-utility"; - version = "1.0.0.1"; - sha256 = "1wdxypkgkjngrlkw4fnxqqqbcy3chaw5fim0xyzcbh52zd0b62wh"; - libraryHaskellDepends = [ - accelerate - base - utility-ht - ]; - description = "Utility functions for the Accelerate framework"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - maintainers = [ lib.maintainers.thielema ]; - broken = true; - } - ) { }; - - "accentuateus" = callPackage ( - { - mkDerivation, - base, - bytestring, - HTTP, - json, - network, - text, - }: - mkDerivation { - pname = "accentuateus"; - version = "0.9.4"; - sha256 = "16hgs81cs3zgbvsprh9lzvyxbh58g7rijf1d4j0dkrpnqnrvg0hy"; - libraryHaskellDepends = [ - base - bytestring - HTTP - json - network - text - ]; - description = "A Haskell implementation of the Accentuate.us API."; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "access-time" = callPackage ( - { - mkDerivation, - base, - filepath, - old-time, - time, - unix, - }: - mkDerivation { - pname = "access-time"; - version = "0.1.0.4"; - sha256 = "13kg8mjrnif88r0w7b041x4vmzdm9aqrx4fskc3qv3smpq2q2ngs"; - libraryHaskellDepends = [ - base - filepath - old-time - time - unix - ]; - description = "Cross-platform support for retrieving file access times"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "access-token-provider" = callPackage ( - { - mkDerivation, - aeson, - aeson-casing, - base, - base64-bytestring, - bytestring, - containers, - exceptions, - filepath, - http-client, - http-client-tls, - http-types, - katip, - lens, - lens-aeson, - mtl, - random, - safe-exceptions, - say, - stm, - tasty, - tasty-hunit, - text, - th-format, - transformers, - unliftio, - unliftio-core, - uuid, - }: - mkDerivation { - pname = "access-token-provider"; - version = "0.1.1.0"; - sha256 = "18j07sb100zb407n7dpyppi5mc20g57y73k3sscmvlgq6yqdxwk4"; - libraryHaskellDepends = [ - aeson - aeson-casing - base - base64-bytestring - bytestring - containers - exceptions - filepath - http-client - http-client-tls - http-types - katip - lens - lens-aeson - mtl - random - safe-exceptions - say - stm - text - th-format - transformers - unliftio - unliftio-core - ]; - testHaskellDepends = [ - aeson - base - bytestring - containers - exceptions - http-client - http-types - katip - lens - mtl - random - safe-exceptions - tasty - tasty-hunit - text - th-format - unliftio - unliftio-core - uuid - ]; - description = "Provides Access Token for Services"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "accuerr" = callPackage ( - { - mkDerivation, - base, - bifunctors, - lens, - semigroups, - }: - mkDerivation { - pname = "accuerr"; - version = "0.2.0.2"; - sha256 = "0dlszai5bz05algxm98kjhnjwa7mwj620d52vrsc4fxds8q84sjg"; - libraryHaskellDepends = [ - base - bifunctors - lens - semigroups - ]; - description = "Data type like Either but with accumulating error type"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "ace" = callPackage ( { mkDerivation, @@ -51156,99 +20666,6 @@ self: { } ) { }; - "acid-state-dist" = callPackage ( - { - mkDerivation, - acid-state, - base, - bytestring, - cereal, - concurrent-extra, - containers, - criterion, - directory, - filepath, - mtl, - random, - safe, - safecopy, - semigroups, - stm, - transformers, - zeromq4-haskell, - }: - mkDerivation { - pname = "acid-state-dist"; - version = "0.1.0.1"; - sha256 = "1awyqvf2sm7ym3yb2jd0y168hjadl0s7c978krh5frqdf8l3r3c6"; - libraryHaskellDepends = [ - acid-state - base - bytestring - cereal - concurrent-extra - containers - filepath - mtl - safe - safecopy - semigroups - stm - transformers - zeromq4-haskell - ]; - testHaskellDepends = [ - acid-state - base - directory - mtl - random - safecopy - ]; - benchmarkHaskellDepends = [ - acid-state - base - criterion - directory - mtl - safecopy - ]; - description = "A replication backend for acid-state"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "acid-state-tls" = callPackage ( - { - mkDerivation, - acid-state, - base, - directory, - HsOpenSSL, - network, - safecopy, - }: - mkDerivation { - pname = "acid-state-tls"; - version = "0.9.2"; - sha256 = "04w3r1x3msvsixmdlif99ly4k0py9bzb8pgi06j780zz5lpm1zpi"; - libraryHaskellDepends = [ - acid-state - base - directory - HsOpenSSL - network - safecopy - ]; - description = "Add TLS support for Data.Acid.Remote"; - license = lib.licenses.publicDomain; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "acl2" = callPackage ( { mkDerivation, @@ -51268,27 +20685,6 @@ self: { } ) { }; - "acme-all-monad" = callPackage ( - { - mkDerivation, - base, - transformers, - }: - mkDerivation { - pname = "acme-all-monad"; - version = "0.1.0.0"; - sha256 = "1qay7m16yjsjg8anbinkagb2v8r67k5wsppkrwyskn9jcb1wnbgv"; - libraryHaskellDepends = [ - base - transformers - ]; - description = "A monad which is powerful enough to interpret any action"; - license = lib.licenses.publicDomain; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "acme-box" = callPackage ( { mkDerivation, base }: mkDerivation { @@ -51381,27 +20777,6 @@ self: { } ) { }; - "acme-comonad" = callPackage ( - { - mkDerivation, - base, - comonad, - }: - mkDerivation { - pname = "acme-comonad"; - version = "0.1.0.0"; - sha256 = "1sc0alwdgfls18y4q4y0qkbzqm4fgzd9yv6dwwnzw3472vsz2x8s"; - libraryHaskellDepends = [ - base - comonad - ]; - description = "A more efficient dualization"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "acme-cuteboy" = callPackage ( { mkDerivation, base }: mkDerivation { @@ -51446,44 +20821,6 @@ self: { } ) { }; - "acme-dont" = callPackage ( - { - mkDerivation, - base, - tasty, - tasty-hunit, - }: - mkDerivation { - pname = "acme-dont"; - version = "1.2"; - sha256 = "0pi5xdbsbbrl6g23v41505vgzv5mr6l9r9iwv6l2gg6vzmsk42r7"; - libraryHaskellDepends = [ base ]; - testHaskellDepends = [ - base - tasty - tasty-hunit - ]; - description = "A \"don't\" construct"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "acme-flipping-tables" = callPackage ( - { mkDerivation, base }: - mkDerivation { - pname = "acme-flipping-tables"; - version = "0"; - sha256 = "1xl5gwc67acg47fdkgrn7sjvvvnc4sjf5vifph0jb3c7gv93n757"; - libraryHaskellDepends = [ base ]; - description = "Stop execution with rage"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "acme-functors" = callPackage ( { mkDerivation, base }: mkDerivation { @@ -51508,83 +20845,6 @@ self: { } ) { }; - "acme-hq9plus" = callPackage ( - { mkDerivation, base }: - mkDerivation { - pname = "acme-hq9plus"; - version = "0.1"; - sha256 = "0da4ysj74fmhcbbvxxfb6w97pr870518k90vwnc3z8kglj1ni187"; - libraryHaskellDepends = [ base ]; - description = "An embedded DSL for the HQ9+ programming language"; - license = lib.licenses.publicDomain; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "acme-http" = callPackage ( - { - mkDerivation, - base, - bytestring, - extensible-exceptions, - mtl, - network, - pretty, - }: - mkDerivation { - pname = "acme-http"; - version = "0.2.3"; - sha256 = "11xxl1var2xdai8s70343s9glx0lrd1fa3d63jaysggcrhg9kl62"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - bytestring - extensible-exceptions - mtl - network - pretty - ]; - description = "fastest Haskell PONG server in the world"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "acme-inator" = callPackage ( - { mkDerivation, base }: - mkDerivation { - pname = "acme-inator"; - version = "0.1.0.0"; - sha256 = "1h1vdzqarrmb8sl6y6250h6fia4rxi9vz4i4sj7km7nyk3778zyk"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base ]; - executableHaskellDepends = [ base ]; - description = "Evil inventions in the Tri-State area"; - license = lib.licenses.publicDomain; - hydraPlatforms = lib.platforms.none; - mainProgram = "evilplan"; - broken = true; - } - ) { }; - - "acme-io" = callPackage ( - { mkDerivation, base }: - mkDerivation { - pname = "acme-io"; - version = "0.1.0.1"; - sha256 = "091czdcbydc75ndaw2ns8cncxa6ihlvclhrbcz9vp29kvhf483cb"; - libraryHaskellDepends = [ base ]; - description = "The only true way to do IO in Haskell!"; - license = "unknown"; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "acme-iot" = callPackage ( { mkDerivation, @@ -51608,41 +20868,6 @@ self: { } ) { }; - "acme-kitchen-sink" = callPackage ( - { mkDerivation, base }: - mkDerivation { - pname = "acme-kitchen-sink"; - version = "0.1.0.0"; - sha256 = "0b587ryd63zyap7c3a1dnm25y0k9a6i2sx26xzg0wrq8hfh0f815"; - libraryHaskellDepends = [ base ]; - description = "A place for dumping that does-not-feel-right code while you improve it"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "acme-left-pad" = callPackage ( - { - mkDerivation, - base, - text, - }: - mkDerivation { - pname = "acme-left-pad"; - version = "3.0"; - sha256 = "039pz5lw3p8iy1gaijvbc8296djxcziw70a0rnw0iz3iy29w1fmc"; - libraryHaskellDepends = [ - base - text - ]; - description = "free your haskell from the tyranny of npm!"; - license = lib.licenses.agpl3Only; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "acme-lolcat" = callPackage ( { mkDerivation, @@ -51680,29 +20905,6 @@ self: { } ) { }; - "acme-memorandom" = callPackage ( - { - mkDerivation, - base, - MemoTrie, - random, - }: - mkDerivation { - pname = "acme-memorandom"; - version = "0.0.3"; - sha256 = "1l6kxmdb7fi47ldfpcqbl6h4dnzw6zw0ahxmvx6sxwxm3x4hynhi"; - libraryHaskellDepends = [ - base - MemoTrie - random - ]; - description = "Memoized random number generation"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "acme-microwave" = callPackage ( { mkDerivation, base }: mkDerivation { @@ -51715,27 +20917,6 @@ self: { } ) { }; - "acme-miscorder" = callPackage ( - { - mkDerivation, - base, - random, - }: - mkDerivation { - pname = "acme-miscorder"; - version = "0.1.0.0"; - sha256 = "180fs64vlbxb2700qq8hzzz82kkmpknakkbk66ddkk1pdl7nm0j4"; - libraryHaskellDepends = [ - base - random - ]; - description = "Miscellaneous newtypes for orderings of discutable use"; - license = lib.licenses.publicDomain; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "acme-missiles" = callPackage ( { mkDerivation, @@ -51755,30 +20936,6 @@ self: { } ) { }; - "acme-mutable-package" = callPackage ( - { - mkDerivation, - base, - Cabal, - }: - mkDerivation { - pname = "acme-mutable-package"; - version = "0"; - sha256 = "16da6pkkdr2g77dn3n4v9x6mwi6yz3xlpisvpn0id2xz0bayipmr"; - revision = "4"; - editedCabalFile = "1154vbz0yar1xd8jn2v2dl5fc2pkawwp93yd0g5dcrb9bbx6pagf"; - setupHaskellDepends = [ - base - Cabal - ]; - libraryHaskellDepends = [ base ]; - description = "A mutable package"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "acme-not-a-joke" = callPackage ( { mkDerivation, @@ -51818,48 +20975,6 @@ self: { } ) { }; - "acme-now" = callPackage ( - { - mkDerivation, - base, - time, - }: - mkDerivation { - pname = "acme-now"; - version = "1.0.0.1"; - sha256 = "0lnrsndx7r00b7vgh9jmp5j635m4pb2bzx0lfhqidkzfc2llzwsm"; - libraryHaskellDepends = [ - base - time - ]; - description = "An interface to the philosophical and metaphysical \"now\""; - license = lib.licenses.publicDomain; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "acme-numbersystem" = callPackage ( - { - mkDerivation, - base, - template-haskell, - }: - mkDerivation { - pname = "acme-numbersystem"; - version = "0.3.0.0"; - sha256 = "1p5rdssdmds6yqgv3yvlh835h180h9q9430j8i6qrhygqn8lmv87"; - libraryHaskellDepends = [ - base - template-haskell - ]; - description = "Define the less than and add and subtract for nats"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "acme-omitted" = callPackage ( { mkDerivation, @@ -51892,40 +21007,6 @@ self: { } ) { }; - "acme-operators" = callPackage ( - { mkDerivation, base }: - mkDerivation { - pname = "acme-operators"; - version = "0.2.0.0"; - sha256 = "1wf12iphv12srygdvhy7xyja453dzjmm6kd9l2qp00fx986zd01w"; - libraryHaskellDepends = [ base ]; - description = "Operators of base, all in one place!"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "acme-php" = callPackage ( - { - mkDerivation, - acme-left-pad, - base, - }: - mkDerivation { - pname = "acme-php"; - version = "0.0.5"; - sha256 = "1kjfpihicb6f3kn5gzr0ya8f73g4y3kvw7y4plv67cpbc1icnpjl"; - libraryHaskellDepends = [ - acme-left-pad - base - ]; - description = "The flexibility of Haskell and the safety of PHP"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "acme-pointful-numbers" = callPackage ( { mkDerivation, @@ -51957,54 +21038,6 @@ self: { } ) { }; - "acme-safe" = callPackage ( - { - mkDerivation, - acme-dont, - base, - }: - mkDerivation { - pname = "acme-safe"; - version = "0.1.0.0"; - sha256 = "0bmv45b3v45967gdvsy37xfw6x50qpl8234y20m3nc48f4nf0z68"; - libraryHaskellDepends = [ - acme-dont - base - ]; - description = "Safe versions of some infamous haskell functions such as fromJust"; - license = "unknown"; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "acme-schoenfinkel" = callPackage ( - { - mkDerivation, - base, - QuickCheck, - test-framework, - test-framework-quickcheck2, - test-framework-th, - }: - mkDerivation { - pname = "acme-schoenfinkel"; - version = "0.1.1"; - sha256 = "0jvbrivxpq8jb5rhz6j3pxx2g3d0ckviprp4iza31d6ik7cpk8ad"; - libraryHaskellDepends = [ base ]; - testHaskellDepends = [ - base - QuickCheck - test-framework - test-framework-quickcheck2 - test-framework-th - ]; - description = "Proper names for curry and uncurry"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "acme-smuggler" = callPackage ( { mkDerivation, @@ -52025,87 +21058,6 @@ self: { } ) { }; - "acme-strfry" = callPackage ( - { - mkDerivation, - base, - bytestring, - }: - mkDerivation { - pname = "acme-strfry"; - version = "0.1"; - sha256 = "1r6xnkyx22khzq6hlb8bk0fnbb6hlwbf12wajhx8vcxa7bkhh8lb"; - libraryHaskellDepends = [ - base - bytestring - ]; - description = "A binding to the glibc strfry function"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "acme-stringly-typed" = callPackage ( - { mkDerivation, base }: - mkDerivation { - pname = "acme-stringly-typed"; - version = "1.0.0.0"; - sha256 = "18wvsvdmbwh9dcawiy4f9pn4vg98kdq9zxc37sz7dpmaigimw16f"; - revision = "1"; - editedCabalFile = "0i5hark97zl45iyiijxj07d2pg112kh3jcmjmscpbss5l5n02h23"; - libraryHaskellDepends = [ base ]; - description = "Stringly Typed Programming"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "acme-strtok" = callPackage ( - { - mkDerivation, - base, - mtl, - }: - mkDerivation { - pname = "acme-strtok"; - version = "0.1.0.3"; - sha256 = "1anj8yygzcqkl4nwqwbrmwsqda84qcl8yzq7pgx2b7p895xcfa68"; - libraryHaskellDepends = [ - base - mtl - ]; - description = "A Haskell port of the C/PHP strtok function"; - license = lib.licenses.publicDomain; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "acme-this" = callPackage ( - { - mkDerivation, - base, - template-haskell, - }: - mkDerivation { - pname = "acme-this"; - version = "0.1.0.0"; - sha256 = "16zmjrf849m066mnj7rlc10jcddy31ck83mg0b7pmn4cvp95q8k5"; - revision = "1"; - editedCabalFile = "1xizmz9yyhxkkaynlk9x0l1nv5maz0shk3d1ipaphc9c6q4b1mjq"; - libraryHaskellDepends = [ - base - template-haskell - ]; - description = "import This"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "acme-timemachine" = callPackage ( { mkDerivation, @@ -52154,101 +21106,6 @@ self: { } ) { }; - "acme-zalgo" = callPackage ( - { - mkDerivation, - array, - base, - random, - }: - mkDerivation { - pname = "acme-zalgo"; - version = "0.1.2.1"; - sha256 = "1yd3xrdkxf3hgapi4w5vg79nxmw8y5rnyki5pqi00mca9wjspdhz"; - revision = "2"; - editedCabalFile = "1l2m9hh6mbc59h17z17gcfzgza25jj912d413pw1q37r3v4y0a1c"; - libraryHaskellDepends = [ - array - base - random - ]; - description = "A somewhat flexible Zalgo̐ te̳͜x̥̖̉̓͞t̍̌̔ ̀̃t̴̢̞̜͓̝r̶̬̆̂̒͟á̧̡͎͔̯̰̕n̹̾̓ͬͦ̍͘ṡ̢͓͉ͮ͆l̠̖̹̗̳̖̽̌ͤ͞a͚̭͙̹̲ͭͩt͈͐o̢̭͇͍̟͐ͬ̾ͪ͜r͇.̸̅ͭ̐̀̊ͨ͛"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "acme-zero" = callPackage ( - { mkDerivation }: - mkDerivation { - pname = "acme-zero"; - version = "0.0.2"; - sha256 = "06d4hpda8qwwq9wzkgx6fpiq39l1md8sfm9hnvh4r95xyg5q53f6"; - doHaddock = false; - description = "The absorbing element of package dependencies"; - license = lib.licenses.publicDomain; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "acousticbrainz-client" = callPackage ( - { - mkDerivation, - aeson, - base-compat-batteries, - base-noprelude, - bytestring, - exceptions, - filepath, - microlens-aeson, - microlens-platform, - pretty-simple, - relude, - scientific, - streaming-bytestring, - streaming-utils, - tasty, - tasty-golden, - text, - }: - mkDerivation { - pname = "acousticbrainz-client"; - version = "0.1.0.0"; - sha256 = "03bzfxv1d7bgsp6bm15h2a8h573id4nyb7xd4y52gbkzyblbz58c"; - libraryHaskellDepends = [ - aeson - base-compat-batteries - base-noprelude - bytestring - exceptions - microlens-aeson - microlens-platform - relude - scientific - streaming-bytestring - streaming-utils - text - ]; - testHaskellDepends = [ - aeson - base-compat-batteries - base-noprelude - filepath - pretty-simple - relude - tasty - tasty-golden - text - ]; - description = "AcousticBrainz API client"; - license = lib.licenses.cc0; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "acquire" = callPackage ( { mkDerivation, @@ -52318,198 +21175,6 @@ self: { } ) { }; - "activehs" = callPackage ( - { - mkDerivation, - activehs-base, - array, - base, - blaze-html, - blaze-markup, - bytestring, - cmdargs, - containers, - data-pprint, - deepseq, - dia-base, - dia-functions, - directory, - exceptions, - filepath, - haskell-src-exts, - highlighting-kate, - hint, - hoogle, - mtl, - old-locale, - old-time, - pandoc, - process, - pureMD5, - QuickCheck, - simple-reflect, - snap-core, - snap-server, - split, - syb, - text, - time, - utf8-string, - xhtml, - }: - mkDerivation { - pname = "activehs"; - version = "0.3.2"; - sha256 = "0n5bb5bdigf3b0016ljv5r3bki3fq6j5dv7csvkdq7pdvghzw3gp"; - isLibrary = false; - isExecutable = true; - enableSeparateDataOutput = true; - executableHaskellDepends = [ - activehs-base - array - base - blaze-html - blaze-markup - bytestring - cmdargs - containers - data-pprint - deepseq - dia-base - dia-functions - directory - exceptions - filepath - haskell-src-exts - highlighting-kate - hint - hoogle - mtl - old-locale - old-time - pandoc - process - pureMD5 - QuickCheck - simple-reflect - snap-core - snap-server - split - syb - text - time - utf8-string - xhtml - ]; - description = "Haskell code presentation tool"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "activehs"; - } - ) { }; - - "activehs-base" = callPackage ( - { - mkDerivation, - base, - QuickCheck, - }: - mkDerivation { - pname = "activehs-base"; - version = "0.3.0.4"; - sha256 = "0gmixyawdl0kk351k8n5g7k3cfxv1qlbish750kv5kip6xc1dmcj"; - revision = "1"; - editedCabalFile = "1v2sw9n9kiqc7cy0v1923ld645dykmk57bgdrgdgfv6qkfp6ghdd"; - libraryHaskellDepends = [ - base - QuickCheck - ]; - description = "Basic definitions for activehs"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "activitypub" = callPackage ( - { - mkDerivation, - aeson, - base, - network-uri, - text, - time, - }: - mkDerivation { - pname = "activitypub"; - version = "0.1.0.0"; - sha256 = "1a9x42x0bysia00672qala6q6g5dgdfzwlzk2969c7q9gsxf63y9"; - libraryHaskellDepends = [ - aeson - base - network-uri - text - time - ]; - description = "ActivityPub Haskell Library"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "activitystreams-aeson" = callPackage ( - { - mkDerivation, - aeson, - base, - text, - time, - unordered-containers, - }: - mkDerivation { - pname = "activitystreams-aeson"; - version = "0.2.0.2"; - sha256 = "1v0jqmbs15rjd75wqgjswgpjxqaczhgrd26idf7y3nfswhld6lhj"; - libraryHaskellDepends = [ - aeson - base - text - time - unordered-containers - ]; - description = "An interface to the ActivityStreams specification"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "actor" = callPackage ( - { - mkDerivation, - base, - haskell98, - stm, - time, - }: - mkDerivation { - pname = "actor"; - version = "0.1.1"; - sha256 = "1ic74yrfy6hk7217vh2ff6yacvf3dc5m1hjkcpfvxzdk5xhdv2b5"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base - haskell98 - stm - time - ]; - description = "Actors with multi-headed receive clauses"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "acts" = callPackage ( { mkDerivation, @@ -52616,20 +21281,6 @@ self: { } ) { }; - "adaptive-containers" = callPackage ( - { mkDerivation, base }: - mkDerivation { - pname = "adaptive-containers"; - version = "0.3"; - sha256 = "16h0zi55hf9g07xisbcmgkx72m9laiqykh2r9nh2siczx3sxi1qk"; - libraryHaskellDepends = [ base ]; - description = "Self optimizing container types"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "adaptive-cubature" = callPackage ( { mkDerivation, base }: mkDerivation { @@ -52642,58 +21293,6 @@ self: { } ) { }; - "adaptive-tuple" = callPackage ( - { - mkDerivation, - base, - template-haskell, - type-level, - }: - mkDerivation { - pname = "adaptive-tuple"; - version = "0.2.0"; - sha256 = "1kf4d3qf8nv61c7pajv234b2vil84c2cq40csnm456lg55qh53r1"; - libraryHaskellDepends = [ - base - template-haskell - type-level - ]; - description = "Self-optimizing tuple types"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "adb" = callPackage ( - { - mkDerivation, - base, - bytestring, - cereal, - containers, - mtl, - network, - }: - mkDerivation { - pname = "adb"; - version = "0.1.0.1"; - sha256 = "19v7v308z6db5f61lalhwnn8z38s9v50f6hqd39i7krjd26f0n9a"; - libraryHaskellDepends = [ - base - bytestring - cereal - containers - mtl - network - ]; - description = "Android Debug Bridge (ADB) protocol"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "adblock2privoxy" = callPackage ( { mkDerivation, @@ -52896,129 +21495,6 @@ self: { } ) { }; - "adhoc-network" = callPackage ( - { - mkDerivation, - base, - bytestring, - containers, - Crypto, - dataenc, - HaXml, - hsgnutls, - network, - old-locale, - parsec, - pkcs1, - random, - time, - utf8-string, - xml-parsec, - }: - mkDerivation { - pname = "adhoc-network"; - version = "1.0.3"; - sha256 = "1whdrmxw13nr7bb95rhqaz3klgmcwx4ai51bz5yb38nldf4ac377"; - libraryHaskellDepends = [ - base - bytestring - containers - Crypto - dataenc - HaXml - hsgnutls - network - old-locale - parsec - pkcs1 - random - time - utf8-string - xml-parsec - ]; - description = "Ad-hoc P2P network protocol"; - license = "GPL"; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "adict" = callPackage ( - { - mkDerivation, - array, - base, - binary, - containers, - dawg, - PSQueue, - QuickCheck, - test-framework, - test-framework-quickcheck2, - vector, - }: - mkDerivation { - pname = "adict"; - version = "0.4.1"; - sha256 = "07w3595cwlicvwg04w9i5sg1x9d3r8c64pq0yi5pmnza7jpd5vgq"; - revision = "1"; - editedCabalFile = "07aigsviy51b7hhp1nikvx620s6b8i8j98cvm0rp04pp90n1jqf8"; - libraryHaskellDepends = [ - array - base - binary - containers - dawg - PSQueue - vector - ]; - testHaskellDepends = [ - base - containers - dawg - QuickCheck - test-framework - test-framework-quickcheck2 - vector - ]; - description = "Approximate dictionary searching"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "adjunction" = callPackage ( - { - mkDerivation, - base, - gauge, - hs-functors, - }: - mkDerivation { - pname = "adjunction"; - version = "0.0.0.0"; - sha256 = "1n83ak423jwyj3w708alj9ngczzll05jyn60d0fgx8bvr3hlmi0i"; - revision = "1"; - editedCabalFile = "1q5bgf7zk11rbxa0gy0fm4vap38jwg42lk1qhb3nlm93j9jgfn36"; - libraryHaskellDepends = [ - base - hs-functors - ]; - testHaskellDepends = [ - base - hs-functors - ]; - benchmarkHaskellDepends = [ - base - gauge - hs-functors - ]; - description = "See README for more info"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "adjunctions" = callPackage ( { mkDerivation, @@ -53099,149 +21575,6 @@ self: { } ) { inherit (pkgs) zlib; }; - "adobe-swatch-exchange" = callPackage ( - { - mkDerivation, - base, - binary, - bytestring, - data-binary-ieee754, - language-css, - mtl, - pretty, - }: - mkDerivation { - pname = "adobe-swatch-exchange"; - version = "0.2.0"; - sha256 = "0jc6xwh1m2hmpfclsi27233775kp4yk0wrkr498qx7fs6p7xflpv"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - binary - bytestring - data-binary-ieee754 - language-css - mtl - pretty - ]; - executableHaskellDepends = [ - base - binary - bytestring - data-binary-ieee754 - language-css - mtl - pretty - ]; - description = "parse Adobe Swatch Exchange files and (optionally) output .css files with the colors"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "adp-multi" = callPackage ( - { - mkDerivation, - array, - base, - containers, - htrace, - HUnit, - mtl, - QuickCheck, - random-shuffle, - test-framework, - test-framework-hunit, - test-framework-quickcheck2, - }: - mkDerivation { - pname = "adp-multi"; - version = "0.2.3"; - sha256 = "1lmmyxa22lm9a86w0gap8g676mnh5l1kxczbsv8ymb98fzcg6a27"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - array - base - containers - htrace - ]; - testHaskellDepends = [ - array - base - containers - htrace - HUnit - mtl - QuickCheck - random-shuffle - test-framework - test-framework-hunit - test-framework-quickcheck2 - ]; - description = "ADP for multiple context-free languages"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "adp-multi-monadiccp" = callPackage ( - { - mkDerivation, - adp-multi, - base, - containers, - monadiccp, - mtl, - QuickCheck, - test-framework, - test-framework-quickcheck2, - }: - mkDerivation { - pname = "adp-multi-monadiccp"; - version = "0.2.1"; - sha256 = "13zlmhgyf46pcnrjwcrk7l6nmrkgqvycrajq3v7z72kjixakis6s"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - adp-multi - base - containers - monadiccp - ]; - testHaskellDepends = [ - adp-multi - base - containers - monadiccp - mtl - QuickCheck - test-framework - test-framework-quickcheck2 - ]; - description = "Subword construction in adp-multi using monadiccp"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "adtrees" = callPackage ( - { mkDerivation, base }: - mkDerivation { - pname = "adtrees"; - version = "0.1.0.0"; - sha256 = "0cp14n2l3scbsp7f6s4r19ngn2ympns03pm6s07hdkpavvgli1zg"; - libraryHaskellDepends = [ base ]; - description = "Modelling, rendering and quantitative analysis on attack defense trees"; - license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "advent-of-code-api" = callPackage ( { mkDerivation, @@ -53678,31 +22011,6 @@ self: { } ) { }; - "aeson-applicative" = callPackage ( - { - mkDerivation, - aeson, - base, - text, - unordered-containers, - }: - mkDerivation { - pname = "aeson-applicative"; - version = "0.1.0.0"; - sha256 = "0plbpln1glmf8a53f4nag1lx7sy8lcali6f1m526zifgak99p3qz"; - libraryHaskellDepends = [ - aeson - base - text - unordered-containers - ]; - description = "make To/From JSOn instances from an applicative description"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "aeson-attoparsec" = callPackage ( { mkDerivation, @@ -53765,43 +22073,6 @@ self: { } ) { }; - "aeson-bson" = callPackage ( - { - mkDerivation, - aeson, - array, - attoparsec, - base, - bson, - bytestring, - containers, - text, - unordered-containers, - vector, - }: - mkDerivation { - pname = "aeson-bson"; - version = "0.3.0"; - sha256 = "0a4hrx56q1kfvf2ff9flsmrpgpvz3rshri9dpj4a9bf76ah04jn9"; - libraryHaskellDepends = [ - aeson - array - attoparsec - base - bson - bytestring - containers - text - unordered-containers - vector - ]; - description = "Mapping between Aeson's JSON and Bson objects"; - license = "unknown"; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "aeson-casing" = callPackage ( { mkDerivation, @@ -54084,34 +22355,6 @@ self: { } ) { }; - "aeson-default" = callPackage ( - { - mkDerivation, - aeson, - base, - containers, - }: - mkDerivation { - pname = "aeson-default"; - version = "0.9.1.0"; - sha256 = "0fmjxanahqdkrrgy56i2xbm3547c512k4p4if6c6lvrxcfvb8zjy"; - libraryHaskellDepends = [ - aeson - base - containers - ]; - testHaskellDepends = [ - aeson - base - containers - ]; - description = "Apply default value to FromJSON instacnes' Maybe fields"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "aeson-dependent-sum" = callPackage ( { mkDerivation, @@ -54228,90 +22471,37 @@ self: { setupHaskellDepends = [ base Cabal - cabal-doctest - ]; - libraryHaskellDepends = [ - aeson - base - bytestring - edit-distance-vector - scientific - text - vector - ]; - executableHaskellDepends = [ - aeson - base - bytestring - optparse-applicative - yaml - ]; - testHaskellDepends = [ - aeson - base - bytestring - directory - doctest - filepath - Glob - QuickCheck - vector - ]; - description = "Extract and apply patches to JSON documents"; - license = lib.licenses.bsd3; - } - ) { }; - - "aeson-diff-generic" = callPackage ( - { - mkDerivation, - aeson, - aeson-diff, - base, - base-compat, - bytestring, - containers, - dlist, - hashable, - lens, - scientific, - tagged, - template-haskell, - text, - th-abstraction, - time, - unordered-containers, - uuid-types, - vector, - }: - mkDerivation { - pname = "aeson-diff-generic"; - version = "0.0.3"; - sha256 = "12vilqp1v49pchfq8xk8k1f3m8kgl7s5n5m1w680cbh5flj050w2"; + cabal-doctest + ]; libraryHaskellDepends = [ aeson - aeson-diff base - base-compat bytestring - containers - dlist - hashable - lens + edit-distance-vector scientific - tagged - template-haskell text - th-abstraction - time - unordered-containers - uuid-types vector ]; - description = "Apply a json-patch to any haskell datatype"; + executableHaskellDepends = [ + aeson + base + bytestring + optparse-applicative + yaml + ]; + testHaskellDepends = [ + aeson + base + bytestring + directory + doctest + filepath + Glob + QuickCheck + vector + ]; + description = "Extract and apply patches to JSON documents"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; } ) { }; @@ -54379,106 +22569,6 @@ self: { } ) { }; - "aeson-filthy" = callPackage ( - { - mkDerivation, - aeson, - base, - bytestring, - doctest, - text, - time, - unordered-containers, - }: - mkDerivation { - pname = "aeson-filthy"; - version = "0.1.4"; - sha256 = "1mjlgq1h09plpllmh7manbcjnl57pmjap0kz9ahzrpv02zrfkszi"; - libraryHaskellDepends = [ - aeson - base - bytestring - text - time - unordered-containers - ]; - testHaskellDepends = [ - aeson - base - bytestring - doctest - text - time - unordered-containers - ]; - description = "Several newtypes and combinators for dealing with less-than-cleanly JSON input"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "aeson-flat" = callPackage ( - { - mkDerivation, - aeson, - base, - text, - unordered-containers, - vector, - }: - mkDerivation { - pname = "aeson-flat"; - version = "0.1.1"; - sha256 = "00c8l22fqhqy94n19m0i0zsb3237zvkz6031rfhblfyj56k56kqw"; - libraryHaskellDepends = [ - aeson - base - text - unordered-containers - vector - ]; - testHaskellDepends = [ base ]; - description = "Tools for creating flat JSON serializations"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "aeson-flatten" = callPackage ( - { - mkDerivation, - aeson, - base, - bytestring, - hspec, - text, - unordered-containers, - }: - mkDerivation { - pname = "aeson-flatten"; - version = "0.1.0.2"; - sha256 = "0kb8k01iaksmxhvjpdrg5aymy5zgxyvhfi2sc0hxw4m13ajbd697"; - libraryHaskellDepends = [ - aeson - base - text - unordered-containers - ]; - testHaskellDepends = [ - aeson - base - bytestring - hspec - ]; - description = "JSON flatten for Aeson"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "aeson-flowtyped" = callPackage ( { mkDerivation, @@ -54821,29 +22911,6 @@ self: { } ) { }; - "aeson-json-ast" = callPackage ( - { - mkDerivation, - aeson, - base, - json-ast, - }: - mkDerivation { - pname = "aeson-json-ast"; - version = "0.1.1"; - sha256 = "0p9da4cpbj811b9va2rhhn95cqckhabhr9k4fjfd536dzrxqjigz"; - libraryHaskellDepends = [ - aeson - base - json-ast - ]; - description = "Integration layer for \"json-ast\" and \"aeson\""; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "aeson-jsonpath" = callPackage ( { mkDerivation, @@ -54883,42 +22950,6 @@ self: { } ) { }; - "aeson-lens" = callPackage ( - { - mkDerivation, - aeson, - base, - bytestring, - doctest, - lens, - text, - unordered-containers, - vector, - }: - mkDerivation { - pname = "aeson-lens"; - version = "0.5.0.0"; - sha256 = "1pr8cxkx41wi7095cp1gpqrwadwx6azcrdi1kr1ik0fs6606dkks"; - libraryHaskellDepends = [ - aeson - base - bytestring - lens - text - unordered-containers - vector - ]; - testHaskellDepends = [ - base - doctest - ]; - description = "Lens of Aeson"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "aeson-match-qq" = callPackage ( { mkDerivation, @@ -55000,54 +23031,6 @@ self: { } ) { }; - "aeson-native" = callPackage ( - { - mkDerivation, - attoparsec, - base, - blaze-builder, - blaze-textual-native, - bytestring, - containers, - deepseq, - hashable, - mtl, - old-locale, - syb, - text, - time, - unordered-containers, - vector, - }: - mkDerivation { - pname = "aeson-native"; - version = "0.3.3.2"; - sha256 = "1s5i88r8sdd7ayrpjw6f18273k6r0igk0sswb503hzvjagzmzffh"; - revision = "1"; - editedCabalFile = "15z4i95j78nccb1x5ix1rqpd3ylrzdgxxal4pv7n8mg7phq9llf9"; - libraryHaskellDepends = [ - attoparsec - base - blaze-builder - blaze-textual-native - bytestring - containers - deepseq - hashable - mtl - old-locale - syb - text - time - unordered-containers - vector - ]; - description = "Fast JSON parsing and encoding (deprecated)"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "aeson-optics" = callPackage ( { mkDerivation, @@ -55083,60 +23066,6 @@ self: { } ) { }; - "aeson-options" = callPackage ( - { - mkDerivation, - aeson, - base, - }: - mkDerivation { - pname = "aeson-options"; - version = "0.1.0"; - sha256 = "0d5wfcgsjrpmangknmrr2lxvr3h96d65y3vkkas6m9aqi1rrkqv4"; - revision = "1"; - editedCabalFile = "0sibi1vhgkx0v082iffpqxg1mshrwd1d1s3xnpaqn0rdpfpja31d"; - libraryHaskellDepends = [ - aeson - base - ]; - description = "Options to derive FromJSON/ToJSON instances"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "aeson-parsec-picky" = callPackage ( - { - mkDerivation, - aeson, - base, - parsec, - scientific, - text, - unordered-containers, - vector, - }: - mkDerivation { - pname = "aeson-parsec-picky"; - version = "0.1.0.1"; - sha256 = "0qpar865haxxvzvgy72q2yszy6hndi6w56pac2fn6gj5i10p05zn"; - libraryHaskellDepends = [ - aeson - base - parsec - scientific - text - unordered-containers - vector - ]; - description = "Alternative JSON parser based on Parsec and Aeson"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "aeson-picker" = callPackage ( { mkDerivation, @@ -55203,45 +23132,6 @@ self: { } ) { }; - "aeson-prefix" = callPackage ( - { - mkDerivation, - aeson, - base, - bytestring, - hspec, - mtl, - text, - unordered-containers, - vector, - }: - mkDerivation { - pname = "aeson-prefix"; - version = "0.1.0.2"; - sha256 = "1yby6a88gbfikqvc5lzhqclxlzs23skd1xgdkqqr16nmrbgj982b"; - libraryHaskellDepends = [ - aeson - base - mtl - text - unordered-containers - vector - ]; - testHaskellDepends = [ - aeson - base - bytestring - hspec - mtl - text - ]; - description = "Hiearchical prefixing for aeson"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "aeson-pretty" = callPackage ( { mkDerivation, @@ -55429,97 +23319,6 @@ self: { } ) { }; - "aeson-schema" = callPackage ( - { - mkDerivation, - aeson, - attoparsec, - base, - bytestring, - containers, - directory, - fail, - filepath, - ghc-prim, - hashable, - hint, - HUnit, - mtl, - QuickCheck, - regex-base, - regex-compat, - regex-pcre, - scientific, - syb, - template-haskell, - temporary, - test-framework, - test-framework-hunit, - test-framework-quickcheck2, - text, - th-lift, - transformers, - unordered-containers, - vector, - }: - mkDerivation { - pname = "aeson-schema"; - version = "0.4.2.0"; - sha256 = "0d7x5c2s4jx3663wgrmzvdgxq5b3slcnmr09pk3i7kkrc1wf3yky"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - aeson - attoparsec - base - bytestring - containers - fail - ghc-prim - mtl - QuickCheck - regex-base - regex-compat - regex-pcre - scientific - syb - template-haskell - text - th-lift - transformers - unordered-containers - vector - ]; - testHaskellDepends = [ - aeson - attoparsec - base - bytestring - containers - directory - filepath - hashable - hint - HUnit - mtl - QuickCheck - regex-compat - scientific - template-haskell - temporary - test-framework - test-framework-hunit - test-framework-quickcheck2 - text - unordered-containers - vector - ]; - description = "Haskell JSON schema validator and parser generator"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "aeson-schemas" = callPackage ( { mkDerivation, @@ -55654,109 +23453,6 @@ self: { } ) { }; - "aeson-smart" = callPackage ( - { - mkDerivation, - aeson, - base, - data-default, - template-haskell, - text, - unordered-containers, - vector, - }: - mkDerivation { - pname = "aeson-smart"; - version = "0.2.0.0"; - sha256 = "1r3262k6d7nskbnnam5rw5vq7i84347amz8lk6hrjn3c4bwacf35"; - libraryHaskellDepends = [ - aeson - base - data-default - template-haskell - text - unordered-containers - vector - ]; - description = "Smart derivation of Aeson instances"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "aeson-streams" = callPackage ( - { - mkDerivation, - aeson, - attoparsec, - base, - bytestring, - HsOpenSSL, - http-streams, - io-streams, - }: - mkDerivation { - pname = "aeson-streams"; - version = "0.1.0"; - sha256 = "1mmkilvjrffzbf7d024kpc4i6b72f7dbq5hrkvrzr0q7dg1mg825"; - libraryHaskellDepends = [ - aeson - attoparsec - base - bytestring - HsOpenSSL - http-streams - io-streams - ]; - description = "An HTTP client library for JSON-based APIs"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "aeson-t" = callPackage ( - { - mkDerivation, - aeson, - aeson-qq, - base, - bytestring, - hspec, - text, - unordered-containers, - vector, - }: - mkDerivation { - pname = "aeson-t"; - version = "0.0.5"; - sha256 = "1mpqkjxsg4bpmbkj8ys39g53knw851l428x83619bmvnlrj1fkkd"; - libraryHaskellDepends = [ - aeson - base - bytestring - text - unordered-containers - vector - ]; - testHaskellDepends = [ - aeson - aeson-qq - base - bytestring - hspec - text - unordered-containers - vector - ]; - description = "Transform JSON"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "aeson-tiled" = callPackage ( { mkDerivation, @@ -55784,38 +23480,6 @@ self: { } ) { }; - "aeson-toolkit" = callPackage ( - { - mkDerivation, - aeson, - base, - bytestring, - failure, - hspec, - text, - }: - mkDerivation { - pname = "aeson-toolkit"; - version = "0.0.1"; - sha256 = "07cb4f4zwm64x0q5z63gsskl80s6qbwnk4nl6x2jiardcl3k8cl3"; - libraryHaskellDepends = [ - aeson - base - bytestring - failure - text - ]; - testHaskellDepends = [ - base - hspec - ]; - description = "A generalization of Aeson over Failure"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "aeson-typescript" = callPackage ( { mkDerivation, @@ -55901,37 +23565,6 @@ self: { } ) { }; - "aeson-utils" = callPackage ( - { - mkDerivation, - aeson, - attoparsec, - base, - bytestring, - scientific, - text, - }: - mkDerivation { - pname = "aeson-utils"; - version = "0.3.0.2"; - sha256 = "07sbvmm158yqmw4hri9l66ag4r6l59x230gbjm9r97w4x0dlp0bi"; - revision = "7"; - editedCabalFile = "0lnlmsn5imbapdhbza1175wm04ynn1w75llkhlk1akpanx1dnd15"; - libraryHaskellDepends = [ - aeson - attoparsec - base - bytestring - scientific - text - ]; - description = "Utilities for working with Aeson"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "aeson-value-parser" = callPackage ( { mkDerivation, @@ -56141,106 +23774,6 @@ self: { } ) { }; - "affection" = callPackage ( - { - mkDerivation, - base, - bytestring, - clock, - containers, - glib, - linear, - monad-loops, - monad-parallel, - mtl, - OpenGL, - sdl2, - stm, - text, - uuid, - vector, - }: - mkDerivation { - pname = "affection"; - version = "0.0.0.9"; - sha256 = "0knb8j96nn2gh1dbyavcqi6wnn8rfvw0lmmw3vk2mbalxlzfvznr"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - bytestring - clock - containers - glib - linear - monad-loops - monad-parallel - mtl - OpenGL - sdl2 - stm - text - uuid - vector - ]; - description = "A simple Game Engine using SDL"; - license = lib.licenses.lgpl3Only; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "affine" = callPackage ( - { - mkDerivation, - alg, - base, - }: - mkDerivation { - pname = "affine"; - version = "0.1.1.0"; - sha256 = "094h5b5l755sm79mr47dm5brp2jvfd2g0mdz23mcw1pz57lm0c8i"; - revision = "1"; - editedCabalFile = "1avxd17y9k0afqjgb8gq254a6ys7dpncgiyrp6mxbngdcvjyahyc"; - libraryHaskellDepends = [ - alg - base - ]; - description = "Affine spaces (generalized)"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "affine-invariant-ensemble-mcmc" = callPackage ( - { - mkDerivation, - base, - containers, - mwc-random, - primitive, - split, - vector, - }: - mkDerivation { - pname = "affine-invariant-ensemble-mcmc"; - version = "0.2.0.0"; - sha256 = "116ln9zf4n0xy95nyyb3kwhg7ds36m793ys5yd5ha74vqf48gvk5"; - libraryHaskellDepends = [ - base - containers - mwc-random - primitive - split - vector - ]; - description = "General-purpose sampling"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "affinely-extended" = callPackage ( { mkDerivation, base }: mkDerivation { @@ -56252,54 +23785,6 @@ self: { } ) { }; - "afis" = callPackage ( - { - mkDerivation, - base, - byteable, - bytestring, - crypto-random, - cryptohash, - HUnit, - mtl, - packer, - QuickCheck, - test-framework, - test-framework-hunit, - test-framework-quickcheck2, - }: - mkDerivation { - pname = "afis"; - version = "0.1.2"; - sha256 = "0ppq3rbwszz3wczg0zgk8hjqplv2ck11bbq5xr8306s5n02ybcf9"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base - byteable - bytestring - crypto-random - cryptohash - packer - ]; - testHaskellDepends = [ - base - byteable - bytestring - crypto-random - cryptohash - HUnit - mtl - QuickCheck - test-framework - test-framework-hunit - test-framework-quickcheck2 - ]; - description = "Anti-forensic Information Splitter"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "aftovolio" = callPackage ( { mkDerivation, @@ -56364,67 +23849,6 @@ self: { } ) { }; - "afv" = callPackage ( - { - mkDerivation, - base, - bytestring, - directory, - language-c, - mtl, - process, - yices, - }: - mkDerivation { - pname = "afv"; - version = "0.1.1"; - sha256 = "06p2xp5myipjhyzqak4zwr755kc1l4qljdf2bxn8rg0m7rhy01vk"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - bytestring - directory - language-c - mtl - process - yices - ]; - description = "Infinite state model checking of iterative C programs"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "afv"; - } - ) { }; - - "ag-pictgen" = callPackage ( - { - mkDerivation, - base, - containers, - uuagc, - uulib, - }: - mkDerivation { - pname = "ag-pictgen"; - version = "1.0.0.0"; - sha256 = "0z5r1cc273bb50ggs1zj539b3av9in7ja8af4x74kbmywczm5zis"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - containers - uuagc - uulib - ]; - description = "Attribute Grammar picture generation"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "ag-pictgen"; - broken = true; - } - ) { }; - "agda-language-server" = callPackage ( { mkDerivation, @@ -56509,127 +23933,6 @@ self: { } ) { }; - "agda-server" = callPackage ( - { - mkDerivation, - Agda, - base, - cmdargs, - containers, - directory, - filepath, - HJavaScript, - mtl, - pandoc, - snap-core, - snap-server, - transformers, - utf8-string, - xhtml, - }: - mkDerivation { - pname = "agda-server"; - version = "0.1.1"; - sha256 = "070xszykrazkisp1lsh2q1ri1i64lhd8psz8g4blv37zm899fpga"; - isLibrary = false; - isExecutable = true; - enableSeparateDataOutput = true; - executableHaskellDepends = [ - Agda - base - cmdargs - containers - directory - filepath - HJavaScript - mtl - pandoc - snap-core - snap-server - transformers - utf8-string - xhtml - ]; - description = "Http server for Agda (prototype)"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "agda-server"; - } - ) { }; - - "agda-snippets" = callPackage ( - { - mkDerivation, - Agda, - base, - containers, - mtl, - network-uri, - transformers, - xhtml, - }: - mkDerivation { - pname = "agda-snippets"; - version = "2.5.2"; - sha256 = "1bfjbxgmy0nxfjcsqqp4snshmx3ka7rjij4pdw46ax6jlsap2w1f"; - revision = "1"; - editedCabalFile = "1lyagh0psry89lh7j8r7gq9ar1a4zgs75mdfrm40wym9h3hcwm1d"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - Agda - base - containers - mtl - network-uri - xhtml - ]; - executableHaskellDepends = [ - Agda - base - network-uri - transformers - ]; - description = "Render just the Agda snippets of a literate Agda file to HTML"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "agda-snippets"; - broken = true; - } - ) { }; - - "agda-snippets-hakyll" = callPackage ( - { - mkDerivation, - agda-snippets, - base, - directory, - filepath, - hakyll, - network-uri, - pandoc, - pandoc-types, - }: - mkDerivation { - pname = "agda-snippets-hakyll"; - version = "0.1.2.2"; - sha256 = "1bwia22d78wjm33vhsxrx5jchcjvqwl95d1ikkhm9dhraba38z1h"; - libraryHaskellDepends = [ - agda-snippets - base - directory - filepath - hakyll - network-uri - pandoc - pandoc-types - ]; - description = "Literate Agda support using agda-snippets, for Hakyll pages"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "agda-unused" = callPackage ( { mkDerivation, @@ -56860,60 +24163,6 @@ self: { } ) { }; - "agentx" = callPackage ( - { - mkDerivation, - base, - binary, - bitwise, - bytestring, - containers, - data-default, - Diff, - fclabels, - mtl, - network, - pipes, - pipes-concurrency, - pipes-network, - safe, - snmp, - time, - transformers, - unix, - }: - mkDerivation { - pname = "agentx"; - version = "0.2.0.0"; - sha256 = "0pmnrij90xag46af4c5yws5g26pf77l5ck864f4cyw5g9acw67g6"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - binary - bitwise - bytestring - containers - data-default - Diff - fclabels - mtl - network - pipes - pipes-concurrency - pipes-network - safe - snmp - time - transformers - unix - ]; - description = "AgentX protocol for write SNMP subagents"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "agreeing" = callPackage ( { mkDerivation, @@ -56960,125 +24209,6 @@ self: { } ) { }; - "aig" = callPackage ( - { - mkDerivation, - base, - base-compat, - mtl, - QuickCheck, - tasty, - tasty-ant-xml, - tasty-quickcheck, - vector, - }: - mkDerivation { - pname = "aig"; - version = "0.2.6"; - sha256 = "1xcwchzsz6kxd6b0bqqmfhyrjsmqyikrf5qdry81y6p5bphk098i"; - revision = "1"; - editedCabalFile = "03i6jnmzjkzh7hwfy2r93dcz2b5vw5s9x3z8nzcicr729rp7mydp"; - libraryHaskellDepends = [ - base - base-compat - mtl - QuickCheck - vector - ]; - testHaskellDepends = [ - base - QuickCheck - tasty - tasty-ant-xml - tasty-quickcheck - ]; - description = "And-inverter graphs in Haskell"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "aip" = callPackage ( - { - mkDerivation, - aeson, - aeson-pretty, - base, - bytestring, - checkers, - Crypto, - directory, - exceptions, - filepath, - HTTP, - lens, - network-uri, - optparse-applicative, - parsec, - parsers, - process, - QuickCheck, - semigroupoids, - semigroups, - tagsoup, - tagsoup-selection, - tasty, - tasty-hunit, - tasty-quickcheck, - time, - transformers, - unordered-containers, - utf8-string, - }: - mkDerivation { - pname = "aip"; - version = "0.1.3"; - sha256 = "10gc9k74ag5i7qbir1jarpap919b010k9zgqadj15cg1hb138k18"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson - aeson-pretty - base - bytestring - Crypto - directory - exceptions - filepath - HTTP - lens - network-uri - optparse-applicative - parsec - parsers - process - semigroupoids - semigroups - tagsoup - tagsoup-selection - time - transformers - unordered-containers - utf8-string - ]; - executableHaskellDepends = [ base ]; - testHaskellDepends = [ - base - checkers - lens - QuickCheck - tasty - tasty-hunit - tasty-quickcheck - ]; - description = "Aeronautical Information Package (AIP)"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "aip"; - } - ) { }; - "aip-version" = callPackage ( { mkDerivation, @@ -57148,47 +24278,6 @@ self: { } ) { }; - "air-extra" = callPackage ( - { - mkDerivation, - air, - array, - base, - bytestring, - containers, - directory, - filepath, - parallel, - parsec, - regexpr, - text, - time, - }: - mkDerivation { - pname = "air-extra"; - version = "2015.5.4"; - sha256 = "07k01yjr9kj5q0dr871w9jmf23sdd75xrwgldsrkpppfc8kvnd97"; - libraryHaskellDepends = [ - air - array - base - bytestring - containers - directory - filepath - parallel - parsec - regexpr - text - time - ]; - description = "air-extra"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "air-spec" = callPackage ( { mkDerivation, @@ -57211,76 +24300,6 @@ self: { } ) { }; - "air-th" = callPackage ( - { - mkDerivation, - air, - base, - template-haskell, - }: - mkDerivation { - pname = "air-th"; - version = "2014.11.17"; - sha256 = "0rhp56qvwiwlrs7pvpbslybvlp4xnllfjab6pap2chxgywas34pq"; - libraryHaskellDepends = [ - air - base - template-haskell - ]; - description = "air"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "airbrake" = callPackage ( - { - mkDerivation, - base, - blaze-markup, - bytestring, - directory, - exceptions, - filepath, - http-conduit, - monad-control, - network, - semigroups, - template-haskell, - text, - transformers, - utf8-string, - wai, - }: - mkDerivation { - pname = "airbrake"; - version = "0.2.0.0"; - sha256 = "03z5hjrdwv8kjsj1vhipqhfmc19mi5cnjkcvcm71b0gmnpd71shq"; - libraryHaskellDepends = [ - base - blaze-markup - bytestring - directory - exceptions - filepath - http-conduit - monad-control - network - semigroups - template-haskell - text - transformers - utf8-string - wai - ]; - description = "An Airbrake notifier for Haskell"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "airgql" = callPackage ( { mkDerivation, @@ -57493,42 +24512,6 @@ self: { } ) { }; - "airtable-api" = callPackage ( - { - mkDerivation, - aeson, - base, - bytestring, - hashable, - lens, - text, - time, - unordered-containers, - wreq, - }: - mkDerivation { - pname = "airtable-api"; - version = "0.3.2.4"; - sha256 = "0fnykbknnsj97xmk3h81633h11hlq3i8356y3snkavp683p26i7l"; - libraryHaskellDepends = [ - aeson - base - bytestring - hashable - lens - text - time - unordered-containers - wreq - ]; - testHaskellDepends = [ base ]; - description = "Requesting and introspecting Tables within an Airtable project"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "aivika" = callPackage ( { mkDerivation, @@ -57906,122 +24889,6 @@ self: { } ) { }; - "ajhc" = callPackage ( - { - mkDerivation, - array, - base, - binary, - bytestring, - containers, - cpphs, - directory, - fgl, - filepath, - haskeline, - HsSyck, - HTTP, - mtl, - network, - old-time, - pretty, - process, - random, - regex-compat, - syb, - temporary, - unix, - utf8-string, - zlib, - }: - mkDerivation { - pname = "ajhc"; - version = "0.8.0.10"; - sha256 = "1x2rc0gyyg7idc07hi64fvkv5h5a652kmcrczfxqyzbiyx2fjphs"; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - array - base - binary - bytestring - containers - cpphs - directory - fgl - filepath - haskeline - HsSyck - mtl - old-time - pretty - process - random - regex-compat - syb - temporary - unix - utf8-string - zlib - ]; - executableHaskellDepends = [ - array - base - binary - bytestring - containers - directory - fgl - filepath - haskeline - HsSyck - HTTP - mtl - network - old-time - pretty - process - random - regex-compat - syb - temporary - unix - utf8-string - zlib - ]; - description = "Haskell compiler that produce binary through C language"; - license = lib.licenses.gpl2Only; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "al" = callPackage ( - { - mkDerivation, - base, - c2hs, - mtl, - openal, - }: - mkDerivation { - pname = "al"; - version = "0.1.4.2"; - sha256 = "1lpcdh2dak1r9lwd6irjs8p56p1fjphq58ixwjwbg9syl2rz7w4b"; - libraryHaskellDepends = [ - base - mtl - ]; - libraryPkgconfigDepends = [ openal ]; - libraryToolDepends = [ c2hs ]; - description = "OpenAL 1.1 raw API."; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { inherit (pkgs) openal; }; - "alarmclock" = callPackage ( { mkDerivation, @@ -58088,72 +24955,6 @@ self: { } ) { }; - "alerta" = callPackage ( - { - mkDerivation, - aeson, - aeson-pretty, - base, - containers, - data-default, - http-api-data, - http-client, - servant, - servant-client, - servant-client-core, - servant-server, - text, - time, - }: - mkDerivation { - pname = "alerta"; - version = "0.1.0.6"; - sha256 = "1dg66p8gc2k0mfxd33dsc8cv6y43kq7qvyj51rvidjmdg0v5bdfm"; - libraryHaskellDepends = [ - aeson - aeson-pretty - base - containers - data-default - http-api-data - http-client - servant - servant-client - servant-client-core - servant-server - text - time - ]; - description = "Bindings to the alerta REST API"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "alerts" = callPackage ( - { - mkDerivation, - base, - blaze-html, - text, - }: - mkDerivation { - pname = "alerts"; - version = "0.1.2.0"; - sha256 = "14fyckdwwhp786z2gg6m92xmz0rbvqwalj0bylqagi9n295ni74f"; - libraryHaskellDepends = [ - base - blaze-html - text - ]; - description = "Alert messages for web applications"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "alex" = callPackage ( { mkDerivation, @@ -58224,27 +25025,6 @@ self: { } ) { }; - "alex-prelude" = callPackage ( - { - mkDerivation, - base, - time, - }: - mkDerivation { - pname = "alex-prelude"; - version = "0.1.1.1"; - sha256 = "1ngxkr7jvy48pgq0sjqpi7a84qjm4fjny64hxksyvbj08l2rn7ha"; - libraryHaskellDepends = [ - base - time - ]; - description = "Collection of useful functions for writing console applications"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "alex-tools" = callPackage ( { mkDerivation, @@ -58272,43 +25052,6 @@ self: { } ) { }; - "alfred" = callPackage ( - { - mkDerivation, - aeson, - base, - bytestring, - hexpat, - http-conduit, - http-types, - network-uri, - text, - xmlgen, - }: - mkDerivation { - pname = "alfred"; - version = "0.5"; - sha256 = "1c6ak56g29wkas66x7yhg1zk039mp2mvlp7njixchhh2c4kx9fvn"; - revision = "1"; - editedCabalFile = "10b5gn9rs3d7p685iak2idgdm2h1z7lx4w6zaaad5hrgcyxbkr06"; - libraryHaskellDepends = [ - aeson - base - bytestring - hexpat - http-conduit - http-types - network-uri - text - xmlgen - ]; - description = "utility library for Alfred version 2"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "alfred-margaret" = callPackage ( { mkDerivation, @@ -58388,101 +25131,6 @@ self: { ]; description = "Algebraic structures"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "alga" = callPackage ( - { - mkDerivation, - aeson, - base, - containers, - data-default, - exceptions, - file-embed, - filepath, - formatting, - haskeline, - hspec, - hxt, - megaparsec, - mtl, - optparse-applicative, - path, - path-io, - QuickCheck, - random, - text, - tf-random, - transformers, - yaml, - }: - mkDerivation { - pname = "alga"; - version = "0.2.2"; - sha256 = "1wi0x4750c525zaqk8hzin4n1k38219nmgynv85rdsxik5qm141y"; - revision = "1"; - editedCabalFile = "1g1cxg4rxcm53pwlc0wh47s4w8h4lp5dsvnacrc1f5pmjhx3740y"; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base - containers - exceptions - haskeline - hxt - megaparsec - mtl - path - QuickCheck - random - text - tf-random - transformers - ]; - executableHaskellDepends = [ - aeson - base - containers - data-default - exceptions - file-embed - filepath - formatting - haskeline - hxt - megaparsec - mtl - optparse-applicative - path - path-io - QuickCheck - random - text - tf-random - transformers - yaml - ]; - testHaskellDepends = [ - base - containers - hspec - hxt - megaparsec - mtl - QuickCheck - random - text - tf-random - transformers - ]; - description = "Algorithmic automation for various DAWs"; - license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - mainProgram = "alga"; - broken = true; } ) { }; @@ -58564,211 +25212,6 @@ self: { description = "Model and test API surfaces algebraically"; license = lib.licenses.bsd3; hydraPlatforms = lib.platforms.none; - } - ) { }; - - "algebra-dag" = callPackage ( - { - mkDerivation, - aeson, - base, - containers, - fgl, - mtl, - parsec, - template-haskell, - transformers, - }: - mkDerivation { - pname = "algebra-dag"; - version = "0.1.1.1"; - sha256 = "1pr6bbj67n13bw120l82zn5bj7bj0x00b754w852pbpij03fjay9"; - libraryHaskellDepends = [ - aeson - base - containers - fgl - mtl - parsec - template-haskell - transformers - ]; - description = "Infrastructure for DAG-shaped relational algebra plans"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "algebra-driven-design" = callPackage ( - { - mkDerivation, - base, - bytestring, - containers, - dlist, - file-embed, - generic-data, - hashable, - JuicyPixels, - monoid-subclasses, - monoidal-containers, - mtl, - multiset, - QuickCheck, - quickspec, - }: - mkDerivation { - pname = "algebra-driven-design"; - version = "0.1.1.1"; - sha256 = "0dp622a70biscjh1r0yyr9mz65g8p2wz60jrzrq8yhs1y4gsigs0"; - libraryHaskellDepends = [ - base - bytestring - containers - dlist - file-embed - generic-data - hashable - JuicyPixels - monoid-subclasses - monoidal-containers - mtl - multiset - QuickCheck - quickspec - ]; - description = "Companion library for the book Algebra-Driven Design by Sandy Maguire"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "algebra-sql" = callPackage ( - { - mkDerivation, - aeson, - algebra-dag, - ansi-wl-pprint, - base, - bytestring, - containers, - Decimal, - dlist, - errors, - fgl, - filepath, - ghc-prim, - mtl, - multiset, - parsec, - pretty, - process, - template-haskell, - text, - time, - transformers, - }: - mkDerivation { - pname = "algebra-sql"; - version = "0.3.0.0"; - sha256 = "1wvm9qkixmyawwjd6ypshsmby7y7229zwidj3qhzkbmyi7p5sgzj"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson - algebra-dag - ansi-wl-pprint - base - bytestring - containers - Decimal - dlist - errors - fgl - filepath - ghc-prim - mtl - multiset - parsec - pretty - process - template-haskell - text - time - transformers - ]; - executableHaskellDepends = [ - aeson - algebra-dag - ansi-wl-pprint - base - bytestring - containers - Decimal - dlist - errors - fgl - filepath - ghc-prim - mtl - multiset - parsec - pretty - process - template-haskell - text - time - transformers - ]; - description = "Relational Algebra and SQL Code Generation"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "algebraic" = callPackage ( - { - mkDerivation, - accelerate, - base, - }: - mkDerivation { - pname = "algebraic"; - version = "0.1.0.2"; - sha256 = "15gv6w9vz02960r6bd0k979vi6kj7pfxg705ajbrsd1pnwklfnwh"; - libraryHaskellDepends = [ - accelerate - base - ]; - description = "General linear algebra structures"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "algebraic-classes" = callPackage ( - { - mkDerivation, - base, - syb, - template-haskell, - }: - mkDerivation { - pname = "algebraic-classes"; - version = "0.9.4"; - sha256 = "06q0vzixc5dz98ia5ii862ryd9nlfinnmly2l5br8rixsbnks82s"; - revision = "1"; - editedCabalFile = "0w3845hl7cppdk3zvhmz0zic7sbcklfircx97wf9dhh40q3qdcmi"; - libraryHaskellDepends = [ - base - syb - template-haskell - ]; - description = "Conversions between algebraic classes and F-algebras"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; broken = true; } ) { }; @@ -58925,163 +25368,6 @@ self: { } ) { }; - "algebraic-prelude" = callPackage ( - { - mkDerivation, - algebra, - base, - basic-prelude, - lens, - semigroups, - }: - mkDerivation { - pname = "algebraic-prelude"; - version = "0.1.1.0"; - sha256 = "0b0fbwxnlm91dlkg3qs27w5iz0ibf7bpzj7m3h0i6v6s1dgr29l9"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - algebra - base - basic-prelude - lens - semigroups - ]; - description = "Algebraically structured Prelude"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "algo-s" = callPackage ( - { - mkDerivation, - base, - bytestring, - criterion, - errors, - foldl, - hspec, - mwc-random, - optparse-applicative, - primitive, - QuickCheck, - smallcheck, - unordered-containers, - }: - mkDerivation { - pname = "algo-s"; - version = "0.1.0.0"; - sha256 = "0hql08wxr6gh3qf047n5cki1vcdznza0an2gc33fhm4s8xw97hdw"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - foldl - mwc-random - primitive - unordered-containers - ]; - executableHaskellDepends = [ - base - bytestring - errors - mwc-random - optparse-applicative - ]; - testHaskellDepends = [ - base - errors - foldl - hspec - mwc-random - QuickCheck - smallcheck - ]; - benchmarkHaskellDepends = [ - base - criterion - ]; - description = "An implementation of Knuth's algorithm S"; - license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; - mainProgram = "sample"; - broken = true; - } - ) { }; - - "algolia" = callPackage ( - { - mkDerivation, - aeson, - aeson-iproute, - attoparsec, - base, - bytestring, - cryptonite, - data-has, - exceptions, - hashable, - http-client, - http-client-tls, - http-types, - iproute, - memory, - mtl, - retry, - scientific, - tasty, - tasty-discover, - tasty-hunit, - text, - time, - unordered-containers, - uri-templater, - vector, - }: - mkDerivation { - pname = "algolia"; - version = "0.1.0.0"; - sha256 = "1gasyh2hv38i4936p4shmqmdxr06n785nydbxhaljrwwzih5mh3p"; - libraryHaskellDepends = [ - aeson - aeson-iproute - attoparsec - base - bytestring - cryptonite - data-has - exceptions - hashable - http-client - http-client-tls - http-types - iproute - memory - mtl - retry - scientific - text - time - unordered-containers - uri-templater - vector - ]; - testHaskellDepends = [ - aeson - base - tasty - tasty-discover - tasty-hunit - ]; - testToolDepends = [ tasty-discover ]; - description = "A client implementing the Algolia search API"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "algorithmic-composition-additional" = callPackage ( { mkDerivation, @@ -59395,32 +25681,6 @@ self: { } ) { }; - "align-text" = callPackage ( - { - mkDerivation, - base, - optparse-applicative, - text, - }: - mkDerivation { - pname = "align-text"; - version = "0.1.0.1"; - sha256 = "1vn8l9lxih2w8bjkfl8j4xxi8p44c1gqia63gi143xk9s035rjh2"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - optparse-applicative - text - ]; - description = "A simple unix filter to align text on specified substrings"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - mainProgram = "align"; - broken = true; - } - ) { }; - "aligned-foreignptr" = callPackage ( { mkDerivation, base }: mkDerivation { @@ -59545,101 +25805,6 @@ self: { } ) { }; - "alloy" = callPackage ( - { - mkDerivation, - base, - containers, - mtl, - syb, - vector, - }: - mkDerivation { - pname = "alloy"; - version = "1.2.2"; - sha256 = "0hy3x87idw60rx2plv69i7hd22qxircvasvx9cjbd1w603vqk8zh"; - libraryHaskellDepends = [ - base - containers - mtl - syb - vector - ]; - description = "Generic programming library"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "alloy-proxy-fd" = callPackage ( - { - mkDerivation, - alloy, - base, - mtl, - }: - mkDerivation { - pname = "alloy-proxy-fd"; - version = "1.0.0"; - sha256 = "1fhk5ydnf0l0n579gqg5lfg2cc9z8xbgqsqzgkpcw0046kp53rjw"; - libraryHaskellDepends = [ - alloy - base - mtl - ]; - description = "Some add-on instances for the Alloy library"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "ally-invest" = callPackage ( - { - mkDerivation, - aeson, - authenticate-oauth, - base, - bytestring, - http-client, - http-client-tls, - safe, - text, - time, - }: - mkDerivation { - pname = "ally-invest"; - version = "0.1.0.0"; - sha256 = "0n6vz0xd4y4div0p63mnbpng2dqwrsmrdhs25r10xw2wc2bznl79"; - libraryHaskellDepends = [ - aeson - authenticate-oauth - base - bytestring - http-client - http-client-tls - safe - text - time - ]; - testHaskellDepends = [ - aeson - authenticate-oauth - base - bytestring - http-client - http-client-tls - safe - text - time - ]; - description = "Ally Invest integration library"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "almost-fix" = callPackage ( { mkDerivation, base }: mkDerivation { @@ -59652,66 +25817,6 @@ self: { } ) { }; - "alms" = callPackage ( - { - mkDerivation, - array, - base, - containers, - directory, - editline, - fgl, - filepath, - HUnit, - incremental-sat-solver, - mtl, - network, - parsec, - pretty, - QuickCheck, - random, - stm, - syb, - template-haskell, - transformers, - tuple, - }: - mkDerivation { - pname = "alms"; - version = "0.6.9"; - sha256 = "0p2lhwnprswvmg40w9inw963xywgfqprlap5s5ppxpfjj4bz9ksh"; - isLibrary = false; - isExecutable = true; - enableSeparateDataOutput = true; - executableHaskellDepends = [ - array - base - containers - directory - editline - fgl - filepath - HUnit - incremental-sat-solver - mtl - network - parsec - pretty - QuickCheck - random - stm - syb - template-haskell - transformers - tuple - ]; - description = "a practical affine language"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "alms"; - } - ) { }; - "alpaca-netcode" = callPackage ( { mkDerivation, @@ -59758,59 +25863,6 @@ self: { } ) { }; - "alpha" = callPackage ( - { - mkDerivation, - array, - AvlTree, - base, - bimap, - bindings-posix, - bytestring, - cereal, - containers, - COrdering, - cpphs, - directory, - filepath, - ghc-prim, - mtl, - parsec, - transformers, - unix, - }: - mkDerivation { - pname = "alpha"; - version = "1.0.15"; - sha256 = "1gc2kjyk75cxggy52w49j97q4gcn74q7f582q6kjb3gsp2pdrn09"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - array - AvlTree - base - bimap - bindings-posix - bytestring - cereal - containers - COrdering - cpphs - directory - filepath - ghc-prim - mtl - parsec - transformers - unix - ]; - description = "A compiler for the Alpha language"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "alpha"; - } - ) { }; - "alphachar" = callPackage ( { mkDerivation, @@ -59859,85 +25911,6 @@ self: { } ) { }; - "alpino-tools" = callPackage ( - { - mkDerivation, - base, - bytestring, - bytestring-lexing, - conduit, - containers, - hexpat-pickle, - MonadRandom, - mtl, - random-shuffle, - resourcet, - rosezipper, - utf8-string, - }: - mkDerivation { - pname = "alpino-tools"; - version = "0.2.0"; - sha256 = "1sh0mrlpfak5i20wqmz23ihphim4di802h02kyxj795gq8q6v61r"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - bytestring - bytestring-lexing - conduit - containers - hexpat-pickle - MonadRandom - mtl - random-shuffle - resourcet - rosezipper - utf8-string - ]; - executableHaskellDepends = [ - base - conduit - containers - MonadRandom - mtl - resourcet - utf8-string - ]; - description = "Alpino data manipulation tools"; - license = "unknown"; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "alsa" = callPackage ( - { - mkDerivation, - alsa-lib, - array, - base, - extensible-exceptions, - sample-frame, - }: - mkDerivation { - pname = "alsa"; - version = "0.4"; - sha256 = "0zdnhi2wm7w6182k6mccm16x453g7kvbsqx2afnhfjpr3iaj69mg"; - libraryHaskellDepends = [ - array - base - extensible-exceptions - sample-frame - ]; - librarySystemDepends = [ alsa-lib ]; - description = "Binding to the ALSA Library API"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { inherit (pkgs) alsa-lib; }; - "alsa-core" = callPackage ( { mkDerivation, @@ -59961,71 +25934,6 @@ self: { } ) { inherit (pkgs) alsa-lib; }; - "alsa-gui" = callPackage ( - { - mkDerivation, - alsa-core, - alsa-seq, - base, - midi, - midi-alsa, - wx, - wxcore, - }: - mkDerivation { - pname = "alsa-gui"; - version = "0.1.0.1"; - sha256 = "17a34k0c6s1cisbnh02akyry7fmxigzn3d2ml9j0v56340r86059"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - alsa-core - alsa-seq - base - midi - midi-alsa - wx - wxcore - ]; - description = "Some simple interactive programs for sending MIDI control messages via ALSA"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "alsa-midi" = callPackage ( - { - mkDerivation, - alsa-lib, - array, - base, - event-list, - midi, - non-negative, - }: - mkDerivation { - pname = "alsa-midi"; - version = "0.4.0.1"; - sha256 = "1dmc336irhw6wdny6f2za9n3gnd83i3pcfr7qfkm8fzq6kzkkjy3"; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - array - base - event-list - midi - non-negative - ]; - librarySystemDepends = [ alsa-lib ]; - executableSystemDepends = [ alsa-lib ]; - description = "Bindings for the ALSA sequencer API (MIDI stuff)"; - license = "GPL"; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { inherit (pkgs) alsa-lib; }; - "alsa-mixer" = callPackage ( { mkDerivation, @@ -60089,28 +25997,6 @@ self: { } ) { inherit (pkgs) alsa-lib; }; - "alsa-pcm-tests" = callPackage ( - { - mkDerivation, - alsa, - base, - }: - mkDerivation { - pname = "alsa-pcm-tests"; - version = "0.1"; - sha256 = "1bhrjf731jqs5297zcid5b6mmdh2njqx2hxssd077a4iqvm0c21k"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - alsa - base - ]; - description = "Tests for the ALSA audio signal library"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "alsa-seq" = callPackage ( { mkDerivation, @@ -60154,92 +26040,6 @@ self: { } ) { inherit (pkgs) alsa-lib; }; - "alsa-seq-tests" = callPackage ( - { - mkDerivation, - alsa, - base, - }: - mkDerivation { - pname = "alsa-seq-tests"; - version = "0.1"; - sha256 = "0is11wdymarzm5zlilh572j1nw3akxma0czbswvgy391pj1a007s"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - alsa - base - ]; - description = "Tests for the ALSA sequencer library"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "altcomposition" = callPackage ( - { - mkDerivation, - base, - composition, - }: - mkDerivation { - pname = "altcomposition"; - version = "0.2.3.0"; - sha256 = "1jcc6cx0jj5ddvyq8xii9ar67ic3vlmy351qgybn74clpipgdyrm"; - libraryHaskellDepends = [ - base - composition - ]; - description = "Alternative combinators for unorthodox function composition"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "alternative-extra" = callPackage ( - { mkDerivation, base }: - mkDerivation { - pname = "alternative-extra"; - version = "0.1.0.0"; - sha256 = "1l6fjvh38qh3jqz3hvf4km3bzyp9x9w6hn9qk0rvs2z7bkasssl9"; - libraryHaskellDepends = [ base ]; - description = "Extra utilities for alternatives"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "alternative-io" = callPackage ( - { - mkDerivation, - base, - lifted-base, - monad-control, - transformers, - transformers-base, - }: - mkDerivation { - pname = "alternative-io"; - version = "0.0.1"; - sha256 = "01hypbci3hw2czkmx78ls51ycx518ich4k753jgv0z8ilrq8isch"; - revision = "2"; - editedCabalFile = "0npiwlqnx3wd64sxcfayywr46dgcn7z03cm18i6nr3ic5wx1llq8"; - libraryHaskellDepends = [ - base - lifted-base - monad-control - transformers - transformers-base - ]; - description = "IO as Alternative instance (deprecated)"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "alternative-vector" = callPackage ( { mkDerivation, @@ -60288,91 +26088,6 @@ self: { } ) { }; - "altfloat" = callPackage ( - { - mkDerivation, - base, - ghc-prim, - integer-gmp, - }: - mkDerivation { - pname = "altfloat"; - version = "0.3.1"; - sha256 = "1n0mxgl1jzap74sglw85l0595lhaj493bz46b90cnsqr5as9mal8"; - libraryHaskellDepends = [ - base - ghc-prim - integer-gmp - ]; - description = "Alternative floating point support for GHC"; - license = "unknown"; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "alto" = callPackage ( - { - mkDerivation, - aeson, - base, - base64-bytestring, - bytestring, - containers, - cryptohash-sha256, - directory, - exceptions, - filepath, - lens, - list-tries, - MonadRandom, - mtl, - random, - random-string, - scrypt, - servant-server, - text, - warp, - }: - mkDerivation { - pname = "alto"; - version = "0"; - sha256 = "0515cghmkrw5szbnafwp3mqglrg5c44cbly8jnvk9z9gf9kdr26k"; - revision = "1"; - editedCabalFile = "0vxcy55zx70ibws59d1n5p86awrhb83xb06yw6iz0hkp7cwk52i2"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson - base - base64-bytestring - bytestring - containers - cryptohash-sha256 - directory - exceptions - filepath - lens - list-tries - MonadRandom - mtl - random - random-string - scrypt - servant-server - text - ]; - executableHaskellDepends = [ - base - warp - ]; - description = "Implement a menu experience fit for web users"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "alto"; - } - ) { }; - "altsvc" = callPackage ( { mkDerivation, @@ -60407,29 +26122,6 @@ self: { } ) { }; - "alure" = callPackage ( - { - mkDerivation, - alure, - base, - OpenAL, - }: - mkDerivation { - pname = "alure"; - version = "0.1"; - sha256 = "1nrlw8qdbgv3l99mlcql35zknyj767fgh3f53y2mjksrh0p61v8n"; - libraryHaskellDepends = [ - base - OpenAL - ]; - librarySystemDepends = [ alure ]; - description = "A Haskell binding for ALURE"; - license = "LGPL"; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { inherit (pkgs) alure; }; - "always" = callPackage ( { mkDerivation }: mkDerivation { @@ -60441,138 +26133,6 @@ self: { } ) { }; - "amazon-emailer" = callPackage ( - { - mkDerivation, - base, - bytestring, - configurator, - http-conduit, - lifted-base, - mime-mail, - mime-mail-ses, - postgresql-simple, - resourcet, - text, - time, - }: - mkDerivation { - pname = "amazon-emailer"; - version = "0.4.0.0"; - sha256 = "0s8m16qbcz6jgxx83sx1swg2217bvv3q3pm8b7f2jsn33nihrzxx"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - bytestring - configurator - http-conduit - lifted-base - mime-mail - mime-mail-ses - postgresql-simple - resourcet - text - time - ]; - description = "A queue daemon for Amazon's SES with a PostgreSQL table as a queue"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "amazon-emailer-client-snap" = callPackage ( - { - mkDerivation, - base, - mtl, - snap, - snaplet-postgresql-simple, - text, - }: - mkDerivation { - pname = "amazon-emailer-client-snap"; - version = "0.1.1.1"; - sha256 = "03am5nzacq2wd9jf46fnwmwq2ghfsh3yd9s0mzrrkskd26q1askb"; - libraryHaskellDepends = [ - base - mtl - snap - snaplet-postgresql-simple - text - ]; - description = "Client library for amazon-emailer daemon"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "amazon-products" = callPackage ( - { - mkDerivation, - base, - base64-bytestring, - byteable, - bytestring, - conduit, - containers, - cryptohash, - http-conduit, - http-types, - mtl, - old-locale, - resourcet, - text, - time, - transformers, - transformers-base, - xml-conduit, - xml-picklers, - xml-types, - }: - mkDerivation { - pname = "amazon-products"; - version = "0.1.0.1"; - sha256 = "10y86b3bzx6yk0478pixh3hh4nkkh0qlwwr0ac2fn6sh1hd6c7sl"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - base64-bytestring - byteable - bytestring - conduit - containers - cryptohash - http-conduit - http-types - mtl - old-locale - resourcet - text - time - transformers - transformers-base - xml-conduit - xml-picklers - xml-types - ]; - executableHaskellDepends = [ - base - bytestring - http-conduit - text - transformers - ]; - description = "Connector for Amazon Products API"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - mainProgram = "repl"; - broken = true; - } - ) { }; - "amazonka" = callPackage ( { mkDerivation, @@ -66491,53 +32051,6 @@ self: { } ) { }; - "amazonka-iam-policy" = callPackage ( - { - mkDerivation, - aeson, - aeson-pretty, - base, - base64-bytestring, - bytestring, - doctest, - hashable, - hspec, - profunctors, - scientific, - text, - time, - }: - mkDerivation { - pname = "amazonka-iam-policy"; - version = "0.0.4"; - sha256 = "0nm24ck11d3ppcvqpqmi73l6s9ry20c907v4017gi6rlybzra75j"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - aeson - base - base64-bytestring - bytestring - hashable - profunctors - scientific - text - time - ]; - testHaskellDepends = [ - aeson - aeson-pretty - base - bytestring - doctest - hspec - ]; - description = "Amazon IAM Policy Document DSL and Combinators"; - license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "amazonka-identitystore" = callPackage ( { mkDerivation, @@ -74728,191 +40241,6 @@ self: { } ) { }; - "amby" = callPackage ( - { - mkDerivation, - base, - bytestring, - cassava, - Chart, - Chart-cairo, - Chart-diagrams, - colour, - containers, - data-default, - data-default-class, - datasets, - doctest, - either, - exceptions, - extra, - foldl, - lens, - mtl, - mwc-random, - pretty-display, - process, - safe, - scientific, - statistics, - tasty, - tasty-hunit, - text, - vector, - vector-algorithms, - }: - mkDerivation { - pname = "amby"; - version = "0.3.2"; - sha256 = "0sck0jjr1iwiy6lxd0lhv4cww004pcm7i9b9d8wikfvp2g170yzs"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base - bytestring - cassava - Chart - Chart-cairo - Chart-diagrams - colour - containers - data-default - data-default-class - datasets - either - exceptions - extra - foldl - lens - mtl - mwc-random - pretty-display - process - safe - scientific - statistics - text - vector - vector-algorithms - ]; - testHaskellDepends = [ - base - doctest - tasty - tasty-hunit - vector - ]; - benchmarkHaskellDepends = [ - base - statistics - ]; - description = "Statistical data visualization"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "ampersand" = callPackage ( - { - mkDerivation, - base, - bytestring, - conduit, - containers, - csv, - directory, - filepath, - graphviz, - hashable, - HStringTemplate, - lens, - MissingH, - mtl, - old-locale, - old-time, - pandoc, - pandoc-types, - parsec, - process, - QuickCheck, - simple-sql-parser, - split, - SpreadsheetML, - text, - time, - transformers, - utf8-string, - wl-pprint, - xlsx, - zlib, - }: - mkDerivation { - pname = "ampersand"; - version = "3.1.0"; - sha256 = "0i37ycyhks335gfby81mnjflk40ir66aprf4752sqnqs68wk6bpm"; - isLibrary = false; - isExecutable = true; - enableSeparateDataOutput = true; - executableHaskellDepends = [ - base - bytestring - containers - csv - directory - filepath - graphviz - hashable - HStringTemplate - lens - MissingH - mtl - old-locale - old-time - pandoc - pandoc-types - parsec - process - simple-sql-parser - split - SpreadsheetML - text - time - utf8-string - wl-pprint - xlsx - zlib - ]; - testHaskellDepends = [ - base - bytestring - conduit - containers - directory - filepath - hashable - lens - MissingH - mtl - old-locale - pandoc - pandoc-types - parsec - QuickCheck - simple-sql-parser - text - time - transformers - utf8-string - wl-pprint - xlsx - zlib - ]; - description = "Toolsuite for automated design of business processes"; - license = "GPL"; - hydraPlatforms = lib.platforms.none; - mainProgram = "ampersand"; - } - ) { }; - "amqp" = callPackage ( { mkDerivation, @@ -74977,1145 +40305,256 @@ self: { network network-uri split - stm - text - vector - ]; - description = "Client library for AMQP servers (currently only RabbitMQ)"; - license = lib.licenses.bsd3; - mainProgram = "amqp-builder"; - } - ) { }; - - "amqp-conduit" = callPackage ( - { - mkDerivation, - amqp, - base, - bytestring, - conduit, - exceptions, - hspec, - HUnit, - lifted-base, - monad-control, - mtl, - resourcet, - text, - transformers, - transformers-base, - }: - mkDerivation { - pname = "amqp-conduit"; - version = "0.3.0.0"; - sha256 = "0w4i8jk7s8j341nx6qsmvlj7n2nnpwy3vzvkfnbzkphy0abyg0yn"; - libraryHaskellDepends = [ - amqp - base - conduit - exceptions - lifted-base - monad-control - mtl - resourcet - text - transformers - transformers-base - ]; - testHaskellDepends = [ - amqp - base - bytestring - conduit - hspec - HUnit - resourcet - transformers - ]; - description = "Conduit bindings for AMQP (see amqp package)"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "amqp-streamly" = callPackage ( - { - mkDerivation, - amqp, - base, - bytestring, - hspec, - process, - streamly, - streamly-core, - testcontainers, - text, - }: - mkDerivation { - pname = "amqp-streamly"; - version = "0.3.0"; - sha256 = "1095f9da87y1h47a2sskliyx71iy6xv00wzzjv7va8rqdlfzch5b"; - libraryHaskellDepends = [ - amqp - base - streamly - streamly-core - text - ]; - testHaskellDepends = [ - amqp - base - bytestring - hspec - process - streamly - streamly-core - testcontainers - text - ]; - description = "A simple streamly wrapper for amqp"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "amqp-utils" = callPackage ( - { - mkDerivation, - amqp, - base, - bytestring, - containers, - crypton-connection, - crypton-x509-system, - data-default-class, - directory, - filepath, - filepath-bytestring, - hinotify, - magic, - network, - process, - rawfilepath, - text, - time, - tls, - unix, - utf8-string, - }: - mkDerivation { - pname = "amqp-utils"; - version = "0.6.7.2"; - sha256 = "0ypkx415bvd7rd5466df3c9rhplgirwr61c7dswkwwnjwnvvz85w"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - amqp - base - bytestring - containers - crypton-connection - crypton-x509-system - data-default-class - directory - filepath - filepath-bytestring - hinotify - magic - network - process - rawfilepath - text - time - tls - unix - utf8-string - ]; - description = "AMQP toolset for the command line"; - license = lib.licenses.gpl3Only; - } - ) { }; - - "amqp-worker" = callPackage ( - { - mkDerivation, - aeson, - amqp, - base, - bytestring, - data-default, - exceptions, - monad-loops, - mtl, - resource-pool, - text, - }: - mkDerivation { - pname = "amqp-worker"; - version = "2.0.1"; - sha256 = "12pj1as0j0rm3ps0qqgp9zzrm2sdh17402yk2ig71d11ymk3gla7"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson - amqp - base - bytestring - data-default - exceptions - monad-loops - mtl - resource-pool - text - ]; - executableHaskellDepends = [ - aeson - amqp - base - bytestring - data-default - exceptions - monad-loops - mtl - resource-pool - text - ]; - testHaskellDepends = [ - aeson - amqp - base - bytestring - data-default - exceptions - monad-loops - mtl - resource-pool - text - ]; - description = "Type-safe AMQP workers"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "example"; - broken = true; - } - ) { }; - - "amrun" = callPackage ( - { - mkDerivation, - base, - deepseq, - parsec, - }: - mkDerivation { - pname = "amrun"; - version = "0.0.0.7"; - sha256 = "13mc0vq51nhg3n7ff1k2045a9zkg3l5a3hr3wnz7ybfw8j457g78"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - deepseq - parsec - ]; - description = "Interpreter for AM"; - license = "GPL"; - hydraPlatforms = lib.platforms.none; - mainProgram = "amrun"; - broken = true; - } - ) { }; - - "anagrep" = callPackage ( - { - mkDerivation, - base, - bytestring, - case-insensitive, - containers, - criterion, - deepseq, - ghc-prim, - hspec, - integer-gmp, - QuickCheck, - regex-tdfa, - vector, - }: - mkDerivation { - pname = "anagrep"; - version = "0.1.0.1"; - sha256 = "0dzwa681si9j1xq4rcwpsnzg10r76gll2lxl62ll5bsy8309ykgc"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - case-insensitive - containers - deepseq - ghc-prim - integer-gmp - regex-tdfa - vector - ]; - executableHaskellDepends = [ - base - bytestring - case-insensitive - ]; - testHaskellDepends = [ - base - case-insensitive - hspec - QuickCheck - ]; - benchmarkHaskellDepends = [ - base - bytestring - criterion - ]; - description = "Find strings with permutations (anagrams) that match a regular expression"; - license = lib.licenses.bsd3; - mainProgram = "anagrep"; - } - ) { }; - - "analyze" = callPackage ( - { - mkDerivation, - aeson, - base, - binary, - bytestring, - cassava, - exceptions, - foldl, - free, - hashable, - lucid, - QuickCheck, - tasty, - tasty-hunit, - tasty-quickcheck, - text, - unordered-containers, - vector, - }: - mkDerivation { - pname = "analyze"; - version = "0.1.0.0"; - sha256 = "0ia4dcqzq168qy5qh65dsp7bb94bxmxnpi2l9vzp7492wrhij9mg"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - aeson - base - binary - bytestring - cassava - exceptions - foldl - free - hashable - lucid - text - unordered-containers - vector - ]; - testHaskellDepends = [ - aeson - base - bytestring - exceptions - foldl - QuickCheck - tasty - tasty-hunit - tasty-quickcheck - text - unordered-containers - vector - ]; - description = "making data science easy and safe with data frames"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "analyze-client" = callPackage ( - { - mkDerivation, - base, - bytestring, - http-conduit, - MonadCatchIO-transformers, - mtl, - snap, - snap-core, - time, - }: - mkDerivation { - pname = "analyze-client"; - version = "0.1.0.2"; - sha256 = "12csrds628c3ff9giyc6q74jn1s2fbkdyagzbqcvnh3brnzsjvss"; - libraryHaskellDepends = [ - base - bytestring - http-conduit - MonadCatchIO-transformers - mtl - snap - snap-core - time - ]; - description = "Client for analyze service"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "anansi" = callPackage ( - { - mkDerivation, - base, - bytestring, - containers, - monads-tf, - options, - parsec, - system-argv0, - system-fileio, - system-filepath, - text, - }: - mkDerivation { - pname = "anansi"; - version = "0.4.8"; - sha256 = "1fzrry9axri0wcff0zbxq0dbq0pxyq6x6bzw426xkm3ayzfd825a"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - bytestring - containers - monads-tf - options - parsec - system-argv0 - system-fileio - system-filepath - text - ]; - executableHaskellDepends = [ - base - bytestring - containers - monads-tf - options - parsec - system-argv0 - system-fileio - system-filepath - text - ]; - description = "Simple literate programming preprocessor"; - license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - mainProgram = "anansi"; - broken = true; - } - ) { }; - - "anansi-hscolour" = callPackage ( - { - mkDerivation, - anansi, - base, - bytestring, - containers, - hscolour, - monads-tf, - text, - }: - mkDerivation { - pname = "anansi-hscolour"; - version = "0.1.2"; - sha256 = "0ffk44lacm3al96cmnacyi6pnhlzhw34jgn87fsfjcl516ffmfxw"; - libraryHaskellDepends = [ - anansi - base - bytestring - containers - hscolour - monads-tf - text - ]; - description = "Colorized looms for Anansi"; - license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "anansi-pandoc" = callPackage ( - { - mkDerivation, - anansi, - base, - bytestring, - containers, - monads-tf, - pandoc, - text, - }: - mkDerivation { - pname = "anansi-pandoc"; - version = "0.1.3"; - sha256 = "13s370b35wmwvbp6a9afsbl62hswj4mdhnvcgigwjz6bcwxxxpxi"; - libraryHaskellDepends = [ - anansi - base - bytestring - containers - monads-tf - pandoc - text - ]; - description = "Looms which use Pandoc to parse and produce a variety of formats"; - license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "anatomy" = callPackage ( - { - mkDerivation, - atomo, - base, - blaze-html, - bytestring, - containers, - directory, - filepath, - hashable, - haskeline, - highlighter, - mtl, - parsec, - pretty, - pretty-show, - tagsoup, - text, - time, - vector, - }: - mkDerivation { - pname = "anatomy"; - version = "0.4"; - sha256 = "0xza3xfzzbix9xf0vwwk4qz02h4iil3hglqspgdymhjbxfl68714"; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - atomo - base - blaze-html - bytestring - containers - directory - filepath - hashable - haskeline - highlighter - mtl - parsec - pretty - pretty-show - tagsoup - text - time - vector - ]; - executableHaskellDepends = [ - atomo - base - blaze-html - bytestring - containers - directory - filepath - hashable - haskeline - highlighter - mtl - parsec - pretty - pretty-show - tagsoup - text - time - vector - ]; - description = "Anatomy: Atomo documentation system"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "anatomy"; - } - ) { }; - - "android" = callPackage ( - { - mkDerivation, - base, - process, - }: - mkDerivation { - pname = "android"; - version = "0.0.2"; - sha256 = "1wn0kap7bw6sp9yi1awcmxh11s5ra4b44qbf97plsvrmpfz15cc5"; - libraryHaskellDepends = [ - base - process - ]; - description = "Android methods exposed to Haskell"; - license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "android-activity" = callPackage ( - { - mkDerivation, - base, - data-default, - log, - }: - mkDerivation { - pname = "android-activity"; - version = "0.2.0.2"; - sha256 = "1l82k9if392682wr31b6g74wv25qwl5cgxwcmhnrp4lm8w0n428d"; - libraryHaskellDepends = [ - base - data-default - ]; - librarySystemDepends = [ log ]; - description = "Turn regular Haskell programs into Android Activities"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - maintainers = [ lib.maintainers.alexfmpe ]; - broken = true; - } - ) { log = null; }; - - "android-lint-summary" = callPackage ( - { - mkDerivation, - base, - basic-prelude, - data-default, - directory, - filemanip, - hspec, - hxt, - lens, - mtl, - optparse-applicative, - QuickCheck, - rainbow, - stringable, - terminal-size, - text, - }: - mkDerivation { - pname = "android-lint-summary"; - version = "0.2.1"; - sha256 = "1sk2mfxfbj6bbsff89jch1x7rhag2yv5331qhal50qf1q7fvzgx1"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - basic-prelude - data-default - directory - filemanip - hxt - lens - mtl - optparse-applicative - rainbow - stringable - terminal-size - text - ]; - executableHaskellDepends = [ - base - basic-prelude - data-default - directory - filemanip - mtl - optparse-applicative - rainbow - stringable - terminal-size - text - ]; - testHaskellDepends = [ - base - basic-prelude - directory - hspec - hxt - QuickCheck - stringable - ]; - description = "A pretty printer for Android Lint errors"; - license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; - mainProgram = "android-lint-summary"; - broken = true; - } - ) { }; - - "angel" = callPackage ( - { - mkDerivation, - base, - configurator, - containers, - mtl, - old-locale, - optparse-applicative, - process, - stm, - tasty, - tasty-hunit, - tasty-quickcheck, - text, - time, - transformers, - unix, - unordered-containers, - }: - mkDerivation { - pname = "angel"; - version = "0.6.2"; - sha256 = "0n73w8lczsncagf2041lq1963mnsmw9albwy0n5qbhqx9030pzya"; - revision = "1"; - editedCabalFile = "0gx208vshdw6bm2id4a5rcacdw44n5ia0q6jmjhk1qfx4s2krp5q"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - configurator - containers - mtl - old-locale - optparse-applicative - process - stm - text - time - transformers - unix - unordered-containers - ]; - testHaskellDepends = [ - base - configurator - containers - mtl - old-locale - process - stm - tasty - tasty-hunit - tasty-quickcheck - text - time - transformers - unix - unordered-containers - ]; - description = "Process management and supervision daemon"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "angel"; - broken = true; - } - ) { }; - - "angle" = callPackage ( - { - mkDerivation, - base, - containers, - criterion, - directory, - filepath, - haskeline, - mtl, - process, - QuickCheck, - split, - tasty, - tasty-quickcheck, - transformers, - transformers-compat, - }: - mkDerivation { - pname = "angle"; - version = "0.8.1.0"; - sha256 = "18cbgvr5z0ndbjzin3arg1q10xs7i1zyjm4384zcg6fjghkgjf94"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - containers - directory - filepath - mtl - process - transformers - transformers-compat - ]; - executableHaskellDepends = [ - base - containers - directory - haskeline - mtl - split - transformers - transformers-compat - ]; - testHaskellDepends = [ - base - containers - mtl - QuickCheck - tasty - tasty-quickcheck - transformers - transformers-compat - ]; - benchmarkHaskellDepends = [ - base - criterion - ]; - description = "A small, general-purpose programming language"; - license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - mainProgram = "angle"; - broken = true; - } - ) { }; - - "animalcase" = callPackage ( - { - mkDerivation, - base, - bytestring, - text, - }: - mkDerivation { - pname = "animalcase"; - version = "0.1.0.2"; - sha256 = "0csbs9yrl8vhlgs7zax06shqlhcjs38q91wnkz5d3f6a4588lyqi"; - libraryHaskellDepends = [ - base - bytestring - text - ]; - description = "Convert camelCase to snake_case and vice versa"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "animascii" = callPackage ( - { - mkDerivation, - ansi-terminal-game, - base, - Cabal, - config-ini, - directory, - filepath, - fsnotify, - hspec, - parsec, - process, - temporary, - text, - }: - mkDerivation { - pname = "animascii"; - version = "0.1.1.0"; - sha256 = "1f474jp121s1w947d6yn6363730hgki2m7mfqyin25ngl4q0isqd"; - isLibrary = false; - isExecutable = true; - setupHaskellDepends = [ - base - Cabal - directory - filepath - ]; - executableHaskellDepends = [ - ansi-terminal-game - base - config-ini - directory - filepath - fsnotify - parsec - process - temporary - text - ]; - testHaskellDepends = [ - ansi-terminal-game - base - hspec - parsec + stm + text + vector ]; - description = "text-file based ASCII animator"; - license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - mainProgram = "animascii"; - broken = true; + description = "Client library for AMQP servers (currently only RabbitMQ)"; + license = lib.licenses.bsd3; + mainProgram = "amqp-builder"; } ) { }; - "animate" = callPackage ( + "amqp-streamly" = callPackage ( { mkDerivation, - aeson, + amqp, base, bytestring, - containers, hspec, + process, + streamly, + streamly-core, + testcontainers, text, - vector, - yaml, }: mkDerivation { - pname = "animate"; - version = "0.7.0"; - sha256 = "1xkp7zpbls02didfks9980989riixpklm31m7by3gsxq7mmyd6gn"; + pname = "amqp-streamly"; + version = "0.3.0"; + sha256 = "1095f9da87y1h47a2sskliyx71iy6xv00wzzjv7va8rqdlfzch5b"; libraryHaskellDepends = [ - aeson + amqp base - bytestring - containers + streamly + streamly-core text - vector - yaml ]; testHaskellDepends = [ - aeson + amqp base - containers + bytestring hspec - vector + process + streamly + streamly-core + testcontainers + text ]; - description = "Animation for sprites"; + description = "A simple streamly wrapper for amqp"; license = lib.licenses.bsd3; hydraPlatforms = lib.platforms.none; broken = true; } ) { }; - "animate-example" = callPackage ( + "amqp-utils" = callPackage ( { mkDerivation, - aeson, - animate, + amqp, base, bytestring, containers, - sdl2, - sdl2-image, - StateVar, + crypton-connection, + crypton-x509-system, + data-default-class, + directory, + filepath, + filepath-bytestring, + hinotify, + magic, + network, + process, + rawfilepath, text, + time, + tls, + unix, + utf8-string, }: mkDerivation { - pname = "animate-example"; - version = "0.2.0"; - sha256 = "07jqlqjdza4jxjc4hic2v0gh1n3jcvz1dnsm54m6y68k1ww68vrz"; + pname = "amqp-utils"; + version = "0.6.7.2"; + sha256 = "0ypkx415bvd7rd5466df3c9rhplgirwr61c7dswkwwnjwnvvz85w"; isLibrary = false; isExecutable = true; executableHaskellDepends = [ - aeson - animate + amqp base bytestring containers - sdl2 - sdl2-image - StateVar + crypton-connection + crypton-x509-system + data-default-class + directory + filepath + filepath-bytestring + hinotify + magic + network + process + rawfilepath text + time + tls + unix + utf8-string ]; - description = "Animation for sprites"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "animate-example"; + description = "AMQP toolset for the command line"; + license = lib.licenses.gpl3Only; } ) { }; - "animate-frames" = callPackage ( + "amqp-worker" = callPackage ( { mkDerivation, aeson, - animate, - async, + amqp, base, bytestring, - containers, - JuicyPixels, - pureMD5, - safe, - stm, - tasty, - tasty-hspec, + data-default, + exceptions, + monad-loops, + mtl, + resource-pool, text, - vector, - yaml, }: mkDerivation { - pname = "animate-frames"; - version = "0.0.1"; - sha256 = "1yjr3w064nm5qi87m4w8xvjpjqry4b6chs5igshwzijrb530chk9"; + pname = "amqp-worker"; + version = "2.0.1"; + sha256 = "12pj1as0j0rm3ps0qqgp9zzrm2sdh17402yk2ig71d11ymk3gla7"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ aeson - animate - async + amqp base bytestring - containers - JuicyPixels - pureMD5 - safe - stm + data-default + exceptions + monad-loops + mtl + resource-pool + text + ]; + executableHaskellDepends = [ + aeson + amqp + base + bytestring + data-default + exceptions + monad-loops + mtl + resource-pool text - vector - yaml ]; - executableHaskellDepends = [ base ]; testHaskellDepends = [ + aeson + amqp base - tasty - tasty-hspec + bytestring + data-default + exceptions + monad-loops + mtl + resource-pool + text ]; - description = "Convert sprite frames to animate files"; - license = lib.licenses.mit; + description = "Type-safe AMQP workers"; + license = lib.licenses.bsd3; hydraPlatforms = lib.platforms.none; - mainProgram = "animate-frames"; + mainProgram = "example"; + broken = true; } ) { }; - "animate-preview" = callPackage ( + "anagrep" = callPackage ( { mkDerivation, - aeson, - animate, base, bytestring, + case-insensitive, containers, - filepath, - fsnotify, - key-state, - lens, - linear, - mtl, - optparse-applicative, - optparse-generic, - random, - safe, - safe-exceptions, - sdl2, - sdl2-fps, - sdl2-gfx, - sdl2-image, - sdl2-ttf, - StateVar, - text, - text-conversions, + criterion, + deepseq, + ghc-prim, + hspec, + integer-gmp, + QuickCheck, + regex-tdfa, vector, }: mkDerivation { - pname = "animate-preview"; - version = "0.1.2.4"; - sha256 = "18bl5vwykva5z9w4f53vjfkmqig0cqcwi5zngwqbs37nypp78lyv"; + pname = "anagrep"; + version = "0.1.0.1"; + sha256 = "0dzwa681si9j1xq4rcwpsnzg10r76gll2lxl62ll5bsy8309ykgc"; isLibrary = true; isExecutable = true; - enableSeparateDataOutput = true; libraryHaskellDepends = [ - aeson - animate base - bytestring + case-insensitive containers - filepath - fsnotify - key-state - lens - linear - mtl - optparse-applicative - optparse-generic - random - safe - safe-exceptions - sdl2 - sdl2-fps - sdl2-gfx - sdl2-image - sdl2-ttf - StateVar - text - text-conversions + deepseq + ghc-prim + integer-gmp + regex-tdfa vector ]; - executableHaskellDepends = [ base ]; - description = "Preview tool for sprite animation"; + executableHaskellDepends = [ + base + bytestring + case-insensitive + ]; + testHaskellDepends = [ + base + case-insensitive + hspec + QuickCheck + ]; + benchmarkHaskellDepends = [ + base + bytestring + criterion + ]; + description = "Find strings with permutations (anagrams) that match a regular expression"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "animate-preview"; + mainProgram = "anagrep"; } ) { }; - "animate-sdl2" = callPackage ( + "android-activity" = callPackage ( { mkDerivation, - aeson, - animate, base, - sdl2, - sdl2-image, + data-default, + log, }: mkDerivation { - pname = "animate-sdl2"; - version = "0.1.1"; - sha256 = "0wpx0jv2zyphhxi84bw4h1bw6apbazcadfxzzj90ddc3cb5lhv9n"; + pname = "android-activity"; + version = "0.2.0.2"; + sha256 = "1l82k9if392682wr31b6g74wv25qwl5cgxwcmhnrp4lm8w0n428d"; libraryHaskellDepends = [ - aeson - animate base - sdl2 - sdl2-image + data-default ]; - description = "sdl2 + animate auxiliary library"; + librarySystemDepends = [ log ]; + description = "Turn regular Haskell programs into Android Activities"; license = lib.licenses.bsd3; hydraPlatforms = lib.platforms.none; + maintainers = [ lib.maintainers.alexfmpe ]; + broken = true; } - ) { }; + ) { log = null; }; "anitomata" = callPackage ( { @@ -76196,56 +40635,6 @@ self: { } ) { }; - "anki-tools" = callPackage ( - { - mkDerivation, - aeson, - base, - bytestring, - data-default, - directory, - exceptions, - filepath, - mtl, - scientific, - sqlite-simple, - text, - time, - unordered-containers, - }: - mkDerivation { - pname = "anki-tools"; - version = "0.1.0.0"; - sha256 = "0fyvfi9kfjyvj0gdiay4zqxs194ff1c5zvavv62qqkmhy7d5c0m9"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson - base - bytestring - data-default - directory - exceptions - filepath - mtl - scientific - sqlite-simple - text - time - unordered-containers - ]; - executableHaskellDepends = [ - base - data-default - ]; - description = "Tools for interacting with Anki database"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "anki-tools-test"; - broken = true; - } - ) { }; - "ann" = callPackage ( { mkDerivation, base }: mkDerivation { @@ -76360,27 +40749,6 @@ self: { } ) { }; - "annotated-fix" = callPackage ( - { - mkDerivation, - base, - recursion-schemes, - }: - mkDerivation { - pname = "annotated-fix"; - version = "0.1.0.0"; - sha256 = "1lhyllmi8j9r5mdr5pngw1s1xzs1cwv2hh2ym8kkdrxvrq93dk2i"; - libraryHaskellDepends = [ - base - recursion-schemes - ]; - description = "A fixpoint of a functor that can be annotated"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "annotated-wl-pprint" = callPackage ( { mkDerivation, base }: mkDerivation { @@ -76395,51 +40763,6 @@ self: { } ) { }; - "anonymous-sums" = callPackage ( - { - mkDerivation, - base, - lens, - template-haskell, - }: - mkDerivation { - pname = "anonymous-sums"; - version = "0.6.0.0"; - sha256 = "1bf27vzv21wi634vridxm2mvfjp3wwfwv50pcbdpzscwn4yc3if7"; - libraryHaskellDepends = [ - base - lens - template-haskell - ]; - description = "Anonymous sum types"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "anonymous-sums-tests" = callPackage ( - { - mkDerivation, - anonymous-sums, - base, - QuickCheck, - }: - mkDerivation { - pname = "anonymous-sums-tests"; - version = "0.4.0.0"; - sha256 = "0a7f7d3xzn8nl9gyzr4wl7m83aszmw42nd0dj8b875khh7i01h0b"; - libraryHaskellDepends = [ - anonymous-sums - base - QuickCheck - ]; - description = "QuickCheck functions to accompany the anonymous-sums package"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "ansi-escape-codes" = callPackage ( { mkDerivation, base }: mkDerivation { @@ -76698,64 +41021,6 @@ self: { } ) { }; - "antagonist" = callPackage ( - { - mkDerivation, - antisplice, - base, - chatty, - chatty-utils, - ironforge, - mtl, - shakespeare, - text, - time, - time-locale-compat, - yesod, - yesod-auth, - }: - mkDerivation { - pname = "antagonist"; - version = "0.1.0.30"; - sha256 = "1bgsal1030ydg05pn5xd8gdnpm68pmd135n52dqh5cwhjmhzc0g6"; - revision = "1"; - editedCabalFile = "0hm0flgi9h1y84pspr2921skwybrs490yazbs8pz8wi0bhvfg1bc"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - antisplice - base - chatty - chatty-utils - mtl - shakespeare - text - time - time-locale-compat - yesod - yesod-auth - ]; - executableHaskellDepends = [ - antisplice - base - chatty - chatty-utils - ironforge - mtl - shakespeare - text - time - time-locale-compat - yesod - yesod-auth - ]; - description = "A web interface to Antisplice dungeons"; - license = lib.licenses.agpl3Only; - hydraPlatforms = lib.platforms.none; - mainProgram = "ironforge-yesod"; - } - ) { }; - "antelude" = callPackage ( { mkDerivation, @@ -76786,161 +41051,6 @@ self: { } ) { }; - "antfarm" = callPackage ( - { - mkDerivation, - base, - containers, - HUnit, - minimorph, - mtl, - parsec, - test-framework, - test-framework-hunit, - text, - transformers, - }: - mkDerivation { - pname = "antfarm"; - version = "0.1.0.0"; - sha256 = "1s2lfd7va0nq5z0q4f37ig2spjpxigfhkhi067fz4y0n1zjc1isd"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - containers - minimorph - mtl - parsec - text - transformers - ]; - executableHaskellDepends = [ - base - containers - minimorph - mtl - text - ]; - testHaskellDepends = [ - base - HUnit - minimorph - test-framework - test-framework-hunit - text - transformers - ]; - description = "Referring expressions for definitions"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "antfarm"; - broken = true; - } - ) { }; - - "anticiv" = callPackage ( - { - mkDerivation, - antisplice, - base, - chatty, - chatty-text, - chatty-utils, - ctpl, - directory, - ironforge, - mtl, - network, - plugins, - time, - transformers, - }: - mkDerivation { - pname = "anticiv"; - version = "0.1.0.5"; - sha256 = "0sxxa2kylgagbnlf7msrgfq98jaf26lvlas6afypnr15aavvlfzh"; - revision = "1"; - editedCabalFile = "0r2dllym065wi443g2i20sarqmr12dm0z6q515djzq33kdkjddyc"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - antisplice - base - chatty - chatty-text - chatty-utils - ctpl - ironforge - mtl - network - plugins - time - transformers - ]; - executableHaskellDepends = [ - antisplice - base - chatty - chatty-text - chatty-utils - ctpl - directory - ironforge - mtl - network - plugins - time - transformers - ]; - description = "This is an IRC bot for Mafia and Resistance"; - license = lib.licenses.agpl3Only; - hydraPlatforms = lib.platforms.none; - mainProgram = "anticiv"; - } - ) { }; - - "antigate" = callPackage ( - { - mkDerivation, - base, - bytestring, - data-default, - deepseq, - exceptions, - failure, - http-client, - http-conduit, - resourcet, - safe, - text, - transformers, - }: - mkDerivation { - pname = "antigate"; - version = "2.0.2"; - sha256 = "1s1m0k2r18jvz14nqy07m1jm87cdk0n5x2r1xznyfbcik7081ywb"; - libraryHaskellDepends = [ - base - bytestring - data-default - deepseq - exceptions - failure - http-client - http-conduit - resourcet - safe - text - transformers - ]; - description = "Interface for antigate.com captcha recognition API"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "antikythera" = callPackage ( { mkDerivation, @@ -76970,37 +41080,6 @@ self: { } ) { }; - "antimirov" = callPackage ( - { - mkDerivation, - base, - containers, - QuickCheck, - }: - mkDerivation { - pname = "antimirov"; - version = "0.1.0"; - sha256 = "0aay5fhw2r502hvdlh6svj6k88zh5wjinn8mk2a3md7zdaiji9iq"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - containers - QuickCheck - ]; - executableHaskellDepends = [ - base - containers - QuickCheck - ]; - description = "Define the language containment (=subtyping) relation on regulare expressions"; - license = "GPL"; - hydraPlatforms = lib.platforms.none; - mainProgram = "test"; - broken = true; - } - ) { }; - "antiope-athena" = callPackage ( { mkDerivation, @@ -77070,7 +41149,6 @@ self: { ]; description = "Please see the README on Github at "; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; } ) { }; @@ -77146,6 +41224,7 @@ self: { description = "Please see the README on Github at "; license = lib.licenses.mit; hydraPlatforms = lib.platforms.none; + broken = true; } ) { }; @@ -77197,7 +41276,6 @@ self: { testToolDepends = [ hspec-discover ]; description = "Please see the README on Github at "; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; } ) { }; @@ -77445,7 +41523,6 @@ self: { testToolDepends = [ hspec-discover ]; description = "Please see the README on Github at "; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; } ) { }; @@ -77535,7 +41612,6 @@ self: { testToolDepends = [ hspec-discover ]; description = "Please see the README on Github at "; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; } ) { }; @@ -77677,42 +41753,6 @@ self: { } ) { }; - "antiope-swf" = callPackage ( - { - mkDerivation, - amazonka-swf, - base, - hedgehog, - hspec, - hspec-discover, - hw-hspec-hedgehog, - lens, - text, - }: - mkDerivation { - pname = "antiope-swf"; - version = "7.4.4"; - sha256 = "0b0wlbpn2bq1xwpb6j0knh4aa85a3rri1fhx5v3dqy5w4hy8vn0z"; - libraryHaskellDepends = [ - amazonka-swf - base - lens - text - ]; - testHaskellDepends = [ - base - hedgehog - hspec - hw-hspec-hedgehog - ]; - testToolDepends = [ hspec-discover ]; - description = "Please see the README on Github at "; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "antiprimes" = callPackage ( { mkDerivation, @@ -77737,64 +41777,6 @@ self: { } ) { }; - "antiquoter" = callPackage ( - { - mkDerivation, - base, - syb, - template-haskell, - }: - mkDerivation { - pname = "antiquoter"; - version = "0.1.1.0"; - sha256 = "1qv5iid7az7bn1jf6r7ffg5qqbcs8ypf78j4vrs5ajwp39jnbiiy"; - libraryHaskellDepends = [ - base - syb - template-haskell - ]; - description = "Combinator library for quasi- and anti-quoting"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "antisplice" = callPackage ( - { - mkDerivation, - base, - chatty, - chatty-utils, - haskeline, - mtl, - template-haskell, - text, - time, - transformers, - }: - mkDerivation { - pname = "antisplice"; - version = "0.17.1.1"; - sha256 = "1yk5yfrf665a880hry3vmqkmh8rg8l7n26z1xpwn09y3nmyl1rm2"; - libraryHaskellDepends = [ - base - chatty - chatty-utils - haskeline - mtl - template-haskell - text - time - transformers - ]; - description = "An engine for text-based dungeons"; - license = lib.licenses.agpl3Only; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "antlr-haskell" = callPackage ( { mkDerivation, @@ -77859,43 +41841,6 @@ self: { } ) { }; - "antlrc" = callPackage ( - { - mkDerivation, - antlr3c, - base, - bytestring, - c2hs, - enumerator, - haskell98, - regex-posix, - }: - mkDerivation { - pname = "antlrc"; - version = "0.0.2"; - sha256 = "1hjk2cvn6j1ijvg3gnml46ysri672jnxmfyh09y1aqsrbimkw8gd"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - haskell98 - ]; - librarySystemDepends = [ antlr3c ]; - libraryToolDepends = [ c2hs ]; - executableHaskellDepends = [ - base - bytestring - enumerator - haskell98 - regex-posix - ]; - description = "Haskell binding to the ANTLR parser generator C runtime library"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "antlrcmkenums"; - } - ) { antlr3c = null; }; - "any-pat" = callPackage ( { mkDerivation, @@ -77932,35 +41877,6 @@ self: { } ) { }; - "anydbm" = callPackage ( - { - mkDerivation, - base, - containers, - MissingH, - mtl, - }: - mkDerivation { - pname = "anydbm"; - version = "1.0.7"; - sha256 = "1rxk36r6i065m0qiq4g5xlrk2yjsds7j896cbddbsyddbzy10d6k"; - revision = "1"; - editedCabalFile = "1iny2zl44lbyv266al9047mkj51510vany6nfyq0xi7h7ak3wb13"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - containers - MissingH - mtl - ]; - description = "Interface for DBM-like database systems"; - license = "GPL"; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "aoc" = callPackage ( { mkDerivation, @@ -78059,50 +41975,6 @@ self: { } ) { }; - "aosd" = callPackage ( - { - mkDerivation, - base, - bindings-DSL, - cairo, - colour, - language-haskell-extract, - libaosd, - monad-control, - pango, - template-haskell, - transformers, - X11, - }: - mkDerivation { - pname = "aosd"; - version = "0.2.2"; - sha256 = "1lx3afjniaj1dinik8mnqy8aam8ads55k7sr4hjmcqx85xwl4ssx"; - libraryHaskellDepends = [ - base - bindings-DSL - cairo - colour - monad-control - pango - transformers - X11 - ]; - libraryPkgconfigDepends = [ libaosd ]; - testHaskellDepends = [ - base - colour - language-haskell-extract - pango - template-haskell - ]; - description = "Bindings to libaosd, a library for Cairo-based on-screen displays"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { inherit (pkgs) libaosd; }; - "ap-normalize" = callPackage ( { mkDerivation, @@ -78137,112 +42009,6 @@ self: { } ) { }; - "apache-md5" = callPackage ( - { - mkDerivation, - base, - bytestring, - criterion, - deepseq, - HUnit, - MonadRandom, - openssl, - process, - random, - test-framework, - test-framework-hunit, - transformers, - }: - mkDerivation { - pname = "apache-md5"; - version = "0.6.1.4"; - sha256 = "1dwnn200sjp2pvriii3y4srrms0gyicd6qp6kvc74yyad8pqhky8"; - revision = "2"; - editedCabalFile = "1wirxr7f0rzbfy5d9bh61j13kxf60k87rb8fzd8ilcrqm7ml67g4"; - libraryHaskellDepends = [ - base - bytestring - ]; - librarySystemDepends = [ openssl ]; - testHaskellDepends = [ - base - bytestring - HUnit - MonadRandom - process - random - test-framework - test-framework-hunit - transformers - ]; - testSystemDepends = [ openssl ]; - benchmarkHaskellDepends = [ - base - bytestring - criterion - deepseq - MonadRandom - ]; - benchmarkSystemDepends = [ openssl ]; - description = "Apache specific MD5 digest algorighm"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { inherit (pkgs) openssl; }; - - "apart" = callPackage ( - { - mkDerivation, - base, - comonad, - contravariant, - free, - hedgehog, - lens, - semigroupoids, - }: - mkDerivation { - pname = "apart"; - version = "0.1.3"; - sha256 = "16y5k372kmqsn81bksl9j01nbfhsk0cwriwpfycjsnzgmg8wnkpb"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - comonad - contravariant - free - hedgehog - lens - semigroupoids - ]; - executableHaskellDepends = [ - base - comonad - contravariant - free - hedgehog - lens - semigroupoids - ]; - testHaskellDepends = [ - base - comonad - contravariant - free - hedgehog - lens - semigroupoids - ]; - description = "Get all your structure and rip it apart"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "example"; - broken = true; - } - ) { }; - "apecs" = callPackage ( { mkDerivation, @@ -78426,113 +42192,6 @@ self: { } ) { }; - "apelsin" = callPackage ( - { - mkDerivation, - array, - base, - bytestring, - containers, - deepseq, - directory, - filepath, - glib, - gtk, - HTTP, - mtl, - network, - process, - transformers, - tremulous-query, - xdg-basedir, - }: - mkDerivation { - pname = "apelsin"; - version = "1.2.3"; - sha256 = "08a747p0dyjvgn5pjfvrb1hnh7vk2km8hbbyvjmnsxl89r5m992l"; - isLibrary = false; - isExecutable = true; - enableSeparateDataOutput = true; - executableHaskellDepends = [ - array - base - bytestring - containers - deepseq - directory - filepath - glib - gtk - HTTP - mtl - network - process - transformers - tremulous-query - xdg-basedir - ]; - description = "Server and community browser for the game Tremulous"; - license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - mainProgram = "apelsin"; - } - ) { }; - - "api-builder" = callPackage ( - { - mkDerivation, - aeson, - base, - bifunctors, - bytestring, - Cabal, - containers, - hspec, - HTTP, - http-client, - http-client-tls, - http-types, - QuickCheck, - text, - tls, - transformers, - }: - mkDerivation { - pname = "api-builder"; - version = "0.17.0.0"; - sha256 = "0mks971svg5m7h7bxgai33b8ksbgbvri3lw9cp7q8mycvmgslssh"; - libraryHaskellDepends = [ - aeson - base - bifunctors - bytestring - HTTP - http-client - http-client-tls - http-types - text - tls - transformers - ]; - testHaskellDepends = [ - aeson - base - bytestring - Cabal - containers - hspec - http-client - QuickCheck - text - transformers - ]; - description = "Library for easily building REST API wrappers in Haskell"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "api-field-json-th" = callPackage ( { mkDerivation, @@ -78782,137 +42441,10 @@ self: { license = lib.licenses.mit; hydraPlatforms = lib.platforms.none; mainProgram = "acme-app"; - } - ) { }; - - "api-rpc-factom" = callPackage ( - { - mkDerivation, - aeson, - aeson-casing, - base, - bytestring, - http-client, - http-client-tls, - http-conduit, - network, - servant, - servant-client, - servant-jsonrpc, - servant-jsonrpc-client, - stm, - text, - time, - transformers, - }: - mkDerivation { - pname = "api-rpc-factom"; - version = "0.1.3.2"; - sha256 = "0k4i8asaz1p1fy234w5g4v141nhbndm9wg25x6rmbcgg1q7vsy4y"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson - aeson-casing - base - bytestring - http-client - http-client-tls - http-conduit - network - servant - servant-client - servant-jsonrpc - servant-jsonrpc-client - text - time - transformers - ]; - executableHaskellDepends = [ - aeson - base - bytestring - http-client - http-conduit - stm - text - time - ]; - testHaskellDepends = [ - base - bytestring - ]; - description = "RPC API client for Factom"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - mainProgram = "factom-app"; broken = true; } ) { }; - "api-rpc-pegnet" = callPackage ( - { - mkDerivation, - aeson, - aeson-casing, - base, - bytestring, - http-client, - http-client-tls, - http-conduit, - json-alt, - network, - remote-json, - remote-json-client, - remote-monad, - text, - time, - transformers, - }: - mkDerivation { - pname = "api-rpc-pegnet"; - version = "0.1.1.2"; - sha256 = "16f7849awll42w58zznf11dri3p2snd4p7cb87ygsrdx1f96gxp6"; - libraryHaskellDepends = [ - aeson - aeson-casing - base - bytestring - http-client - http-client-tls - http-conduit - json-alt - network - remote-json - remote-json-client - remote-monad - text - time - transformers - ]; - testHaskellDepends = [ - aeson - aeson-casing - base - bytestring - http-client - http-client-tls - http-conduit - json-alt - network - remote-json - remote-json-client - remote-monad - text - time - transformers - ]; - description = "simple json-rpc client for PegNet"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "api-tools" = callPackage ( { mkDerivation, @@ -79028,636 +42560,6 @@ self: { } ) { }; - "api-yoti" = callPackage ( - { - mkDerivation, - aeson, - base, - base64-bytestring, - bytestring, - containers, - crypto-pubkey-openssh, - crypto-pubkey-types, - crypto-simple, - cryptonite, - directory, - hashable, - memory, - mtl, - pem, - text, - time, - transformers, - wreq, - }: - mkDerivation { - pname = "api-yoti"; - version = "0.1.0.0"; - sha256 = "1c2jb9qzfzkcbcxabc7xvqc6npdm23dglpd9zqic7wafm7jdmf0s"; - libraryHaskellDepends = [ - aeson - base - base64-bytestring - bytestring - containers - crypto-pubkey-openssh - crypto-pubkey-types - crypto-simple - cryptonite - directory - hashable - memory - mtl - pem - text - time - transformers - wreq - ]; - testHaskellDepends = [ - base - bytestring - text - ]; - description = "Api bindings for Yoti services"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "apiary" = callPackage ( - { - mkDerivation, - aeson, - base, - blaze-builder, - blaze-html, - blaze-markup, - bytestring, - bytestring-lexing, - case-insensitive, - data-default-class, - directory, - exceptions, - ghc-prim, - hashable, - hetero-dict, - http-date, - http-types, - HUnit, - mime-types, - monad-control, - mtl, - primitive, - process, - resourcet, - stringsearch, - tasty, - tasty-hunit, - tasty-quickcheck, - template-haskell, - text, - time, - transformers, - transformers-base, - unix-compat, - unordered-containers, - vault, - wai, - wai-extra, - }: - mkDerivation { - pname = "apiary"; - version = "2.1.2"; - sha256 = "03b3rhjpjfinj1xnkngipz09d1j1dijy25s0z0a5mvygahlf9kvc"; - revision = "1"; - editedCabalFile = "0fznli6f20wxzbg1b5ylnjiyfqrmvm0wi5jcvhg8przmqhvjmcki"; - libraryHaskellDepends = [ - aeson - base - blaze-builder - blaze-html - blaze-markup - bytestring - bytestring-lexing - case-insensitive - data-default-class - exceptions - ghc-prim - hashable - hetero-dict - http-date - http-types - mime-types - monad-control - mtl - primitive - process - resourcet - stringsearch - template-haskell - text - time - transformers - transformers-base - unix-compat - unordered-containers - vault - wai - wai-extra - ]; - testHaskellDepends = [ - aeson - base - bytestring - directory - http-types - HUnit - mtl - tasty - tasty-hunit - tasty-quickcheck - wai - wai-extra - ]; - description = "Simple and type safe web framework that generate web API documentation"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "apiary-authenticate" = callPackage ( - { - 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, - }: - mkDerivation { - pname = "apiary-authenticate"; - version = "1.5.1"; - sha256 = "0j28iv0am45a104cpc6jd1gv1j7nqwbjji892d0q9g90wlf2r5p8"; - libraryHaskellDepends = [ - apiary - apiary-session - authenticate - base - blaze-builder - bytestring - cereal - data-default-class - http-client - http-client-tls - http-types - monad-control - resourcet - text - wai - ]; - description = "authenticate support for apiary web framework"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "apiary-clientsession" = callPackage ( - { - mkDerivation, - apiary, - apiary-cookie, - apiary-session, - base, - bytestring, - cereal, - clientsession, - data-default-class, - time, - unix-compat, - vault, - }: - mkDerivation { - pname = "apiary-clientsession"; - version = "1.5.1"; - sha256 = "1cxxc3nn05k2v0mr2lnhhjwigykx5jws23mik3znq259r18wjjk7"; - libraryHaskellDepends = [ - apiary - apiary-cookie - apiary-session - base - bytestring - cereal - clientsession - data-default-class - time - unix-compat - vault - ]; - description = "clientsession support for apiary web framework"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "apiary-cookie" = callPackage ( - { - mkDerivation, - apiary, - base, - blaze-builder, - blaze-html, - bytestring, - cookie, - time, - wai, - }: - mkDerivation { - pname = "apiary-cookie"; - version = "1.5.1"; - sha256 = "1lci1vim94nk3ah72wa9iy1vza3gnf3c05jp10bnv0khy131mghy"; - libraryHaskellDepends = [ - apiary - base - blaze-builder - blaze-html - bytestring - cookie - time - wai - ]; - description = "Cookie support for apiary web framework"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "apiary-eventsource" = callPackage ( - { - mkDerivation, - apiary, - base, - blaze-builder, - wai-extra, - }: - mkDerivation { - pname = "apiary-eventsource"; - version = "1.5.1"; - sha256 = "0dkvj03ay44m49pmm96y9nvyqlrw91kyw0pzm6wraspagbvs57nm"; - libraryHaskellDepends = [ - apiary - base - blaze-builder - wai-extra - ]; - description = "eventsource support for apiary web framework"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "apiary-helics" = callPackage ( - { - mkDerivation, - apiary, - base, - bytestring, - data-default-class, - helics, - helics-wai, - monad-control, - text, - transformers, - types-compat, - vault, - wai, - }: - mkDerivation { - pname = "apiary-helics"; - version = "1.4.0"; - sha256 = "1qm9fnhzafdja6fr20c7qhl6dmagmnzn23ni49ln5k55kbawfk8a"; - revision = "2"; - editedCabalFile = "15r778nj2yj0f6hmjhcxfclxb4l54iwyyvn0wjsja1dml8l5b9l2"; - libraryHaskellDepends = [ - apiary - base - bytestring - data-default-class - helics - helics-wai - monad-control - text - transformers - types-compat - vault - wai - ]; - description = "helics support for apiary web framework"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "apiary-http-client" = callPackage ( - { - mkDerivation, - apiary, - base, - bytestring, - bytestring-builder, - http-client, - http-types, - text, - transformers, - wai, - }: - mkDerivation { - pname = "apiary-http-client"; - version = "0.1.4.0"; - sha256 = "0y5sl8xy2ginmb97495xb3dzzczjvrznfrdklvrbsrll9a4b5iia"; - libraryHaskellDepends = [ - apiary - base - bytestring - bytestring-builder - http-client - http-types - text - transformers - wai - ]; - description = "A http client for Apiary"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "apiary-logger" = callPackage ( - { - mkDerivation, - apiary, - base, - data-default-class, - fast-logger, - lifted-base, - monad-control, - monad-logger, - transformers, - transformers-base, - }: - mkDerivation { - pname = "apiary-logger"; - version = "1.5.1"; - sha256 = "19a8qiv0dygxmznjpr46s3wihryi83qj6d12nzr7d0n7j36ja2d8"; - libraryHaskellDepends = [ - apiary - base - data-default-class - fast-logger - lifted-base - monad-control - monad-logger - transformers - transformers-base - ]; - description = "fast-logger support for apiary web framework"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "apiary-memcached" = callPackage ( - { - mkDerivation, - apiary, - base, - bytestring, - data-default-class, - memcached-binary, - monad-control, - text, - transformers, - types-compat, - }: - mkDerivation { - pname = "apiary-memcached"; - version = "1.4.0"; - sha256 = "1rwkj7byc84yism5sxphs1s231910ay8w7lap2cdg0y9k9f24gby"; - revision = "2"; - editedCabalFile = "1rqxpw0rhzqf678jpn7vdircp96q86f0j2w7id2a4bpgmixhfy9s"; - libraryHaskellDepends = [ - apiary - base - bytestring - data-default-class - memcached-binary - monad-control - text - transformers - types-compat - ]; - description = "memcached client for apiary web framework"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "apiary-mongoDB" = callPackage ( - { - mkDerivation, - apiary, - base, - bson, - data-default-class, - lifted-base, - monad-control, - mongoDB, - resource-pool, - text, - time, - transformers, - }: - mkDerivation { - pname = "apiary-mongoDB"; - version = "1.5.1"; - sha256 = "1liiyk2w2v18455ydbxz7k5d58f29sgmlagxikkgsplbdm3m5mz0"; - libraryHaskellDepends = [ - apiary - base - bson - data-default-class - lifted-base - monad-control - mongoDB - resource-pool - text - time - transformers - ]; - description = "mongoDB support for apiary web framework"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "apiary-persistent" = callPackage ( - { - mkDerivation, - apiary, - apiary-logger, - base, - monad-control, - monad-logger, - persistent, - resource-pool, - resourcet, - transformers, - transformers-base, - }: - mkDerivation { - pname = "apiary-persistent"; - version = "1.5.1"; - sha256 = "03vd0vjz72dd8ngi5n9dziplpxdysql5gxgiqfn825fzc75c9pn4"; - libraryHaskellDepends = [ - apiary - apiary-logger - base - monad-control - monad-logger - persistent - resource-pool - resourcet - transformers - transformers-base - ]; - description = "persistent support for apiary web framework"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "apiary-purescript" = callPackage ( - { - mkDerivation, - apiary, - base, - bytestring, - data-default-class, - filepath, - Glob, - parsec, - purescript, - text, - transformers, - types-compat, - unordered-containers, - }: - mkDerivation { - pname = "apiary-purescript"; - version = "1.4.0"; - sha256 = "0z1d2wqpa86bv6xkpiw696sn77fdq52vk2s8951v8qdffbxia3jz"; - revision = "2"; - editedCabalFile = "1zsgamz8yx835xziknd198q02a4mpzdj3dzn5rd45i6mc4c9qnli"; - libraryHaskellDepends = [ - apiary - base - bytestring - data-default-class - filepath - Glob - parsec - purescript - text - transformers - types-compat - unordered-containers - ]; - description = "purescript compiler for apiary web framework"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "apiary-redis" = callPackage ( - { - mkDerivation, - apiary, - base, - hedis, - transformers, - }: - mkDerivation { - pname = "apiary-redis"; - version = "1.5.1"; - sha256 = "0b9m165qs7nd9iisbkkx0vpdkv37bh0vvrwq769bjc2k8qkqspwl"; - libraryHaskellDepends = [ - apiary - base - hedis - transformers - ]; - description = "redis support for apiary web framework"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "apiary-session" = callPackage ( - { - mkDerivation, - apiary, - base, - wai, - }: - mkDerivation { - pname = "apiary-session"; - version = "1.5.0"; - sha256 = "01z4r0sfm562wssfpqs3yzgwrprh8jzp0xsck4z099pwjknfi4i4"; - libraryHaskellDepends = [ - apiary - base - wai - ]; - description = "session support for apiary web framework"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "apiary-websockets" = callPackage ( - { - mkDerivation, - apiary, - base, - wai-websockets, - websockets, - }: - mkDerivation { - pname = "apiary-websockets"; - version = "1.5.0"; - sha256 = "0z43lqjz51r3mw92drjkrl3m8na7ldick76vqas0dr17v1d4qdsw"; - libraryHaskellDepends = [ - apiary - base - wai-websockets - websockets - ]; - description = "websockets support for apiary web framework"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "apigen" = callPackage ( { mkDerivation, @@ -79728,329 +42630,6 @@ self: { } ) { }; - "apis" = callPackage ( - { - mkDerivation, - aeson, - base, - containers, - deepseq, - directory, - ecma262, - exceptions, - filemanip, - filepath, - hslogger, - hxt, - mtl, - opendatatable, - split, - template-haskell, - text, - th-lift, - time, - transformers, - unordered-containers, - utf8-string, - yql, - }: - mkDerivation { - pname = "apis"; - version = "0.0.1"; - sha256 = "07jvx1bsfiqk9l4l9k9yrsmvqm7dc2lb6p7h8p2bzqc3dqcqp67q"; - libraryHaskellDepends = [ - aeson - base - containers - deepseq - directory - ecma262 - exceptions - filemanip - filepath - hslogger - hxt - mtl - opendatatable - split - template-haskell - text - th-lift - time - transformers - unordered-containers - utf8-string - yql - ]; - description = "A Template Haskell library for generating type safe API calls"; - license = lib.licenses.bsd2; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "apns-http2" = callPackage ( - { - mkDerivation, - aeson, - aeson-qq, - async, - base, - base16-bytestring, - bytestring, - conduit, - conduit-extra, - containers, - data-default, - http2, - keys, - lens, - lifted-base, - mmorph, - mtl, - network, - stm, - stm-chans, - stm-conduit, - text, - time, - tls, - x509, - x509-store, - x509-system, - x509-validation, - }: - mkDerivation { - pname = "apns-http2"; - version = "0.1.1.0"; - sha256 = "1hwybh3c6drqji34x7zwr68l642018ajrdzs4711dxws0ib63jrw"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson - async - base - bytestring - conduit - conduit-extra - containers - data-default - http2 - keys - lens - lifted-base - mmorph - mtl - network - stm - stm-chans - stm-conduit - text - time - tls - x509 - x509-store - x509-validation - ]; - executableHaskellDepends = [ - aeson - aeson-qq - async - base - base16-bytestring - bytestring - conduit - conduit-extra - containers - data-default - http2 - keys - lens - lifted-base - mmorph - mtl - network - stm - stm-chans - stm-conduit - text - time - tls - x509 - x509-store - x509-system - x509-validation - ]; - description = "Apple Push Notification service HTTP/2 integration"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "apns-http2-example"; - broken = true; - } - ) { }; - - "apotiki" = callPackage ( - { - mkDerivation, - aeson, - attoparsec, - base, - binary, - bytestring, - containers, - crypto-api, - cryptohash, - directory, - http-types, - old-time, - openpgp, - openpgp-asciiarmor, - openpgp-crypto-api, - scotty, - strict, - tar, - text, - transformers, - wai-extra, - wai-middleware-static, - zlib, - }: - mkDerivation { - pname = "apotiki"; - version = "0.5.2"; - sha256 = "1rih1lasky5sjdf3lz2qi2qya3iwbbxs658p77h1amqpsa7lsfp7"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson - attoparsec - base - binary - bytestring - containers - crypto-api - cryptohash - directory - http-types - old-time - openpgp - openpgp-asciiarmor - openpgp-crypto-api - scotty - strict - tar - text - transformers - wai-extra - wai-middleware-static - zlib - ]; - executableHaskellDepends = [ - aeson - attoparsec - base - binary - bytestring - containers - crypto-api - cryptohash - directory - http-types - old-time - openpgp - openpgp-asciiarmor - openpgp-crypto-api - scotty - strict - tar - text - transformers - wai-extra - wai-middleware-static - zlib - ]; - description = "a faster debian repository"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - mainProgram = "apotiki"; - } - ) { }; - - "app-lens" = callPackage ( - { - mkDerivation, - base, - containers, - criterion, - deepseq, - lens, - mtl, - }: - mkDerivation { - pname = "app-lens"; - version = "0.1.0.3"; - sha256 = "0i6pz68hqlpz15w82zkh6yycflnxzcnyx64xx396a57f3sk6dfgc"; - libraryHaskellDepends = [ - base - containers - lens - mtl - ]; - benchmarkHaskellDepends = [ - base - containers - criterion - deepseq - lens - mtl - ]; - description = "applicative (functional) bidirectional programming beyond composition chains"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "app-settings" = callPackage ( - { - mkDerivation, - base, - containers, - directory, - hspec, - HUnit, - mtl, - parsec, - text, - }: - mkDerivation { - pname = "app-settings"; - version = "0.2.0.12"; - sha256 = "1nncn8vmq55m4b6zh77mdmx19d1s7z0af4pmz1v082bpf2wril9b"; - libraryHaskellDepends = [ - base - containers - directory - mtl - parsec - text - ]; - testHaskellDepends = [ - base - containers - directory - hspec - HUnit - mtl - parsec - text - ]; - description = "A library to manage application settings (INI file-like)"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "appar" = callPackage ( { mkDerivation, @@ -80070,64 +42649,6 @@ self: { } ) { }; - "appc" = callPackage ( - { - mkDerivation, - aeson, - base, - bytestring, - containers, - hspec, - hspec-smallcheck, - optparse-applicative, - semver, - smallcheck, - text, - uuid, - }: - mkDerivation { - pname = "appc"; - version = "0.0.6"; - sha256 = "0qns7kjp9sjrpdx6vfkci9q6xinb0gwkb1a9ssw8xfbqqhf9ljms"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson - base - bytestring - containers - semver - text - uuid - ]; - executableHaskellDepends = [ - aeson - base - bytestring - containers - optparse-applicative - semver - text - uuid - ]; - testHaskellDepends = [ - aeson - base - hspec - hspec-smallcheck - semver - smallcheck - text - uuid - ]; - description = "app container types and tools"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - mainProgram = "appc"; - broken = true; - } - ) { }; - "appendful" = callPackage ( { mkDerivation, @@ -80394,47 +42915,6 @@ self: { } ) { }; - "applicative-fail" = callPackage ( - { - mkDerivation, - base, - bifunctors, - checkers, - dlist, - mtl, - QuickCheck, - tasty, - tasty-quickcheck, - transformers, - transformers-base, - }: - mkDerivation { - pname = "applicative-fail"; - version = "1.1.1"; - sha256 = "11bk0svzdys8rgx6nzb80fkxz8mp6r0238ylmb5wzsnl8nc9y041"; - libraryHaskellDepends = [ - base - bifunctors - dlist - mtl - transformers - transformers-base - ]; - testHaskellDepends = [ - base - checkers - mtl - QuickCheck - tasty - tasty-quickcheck - ]; - description = "Applicative functor and monad which collects all your fails"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "applicative-logic" = callPackage ( { mkDerivation, base }: mkDerivation { @@ -80459,97 +42939,6 @@ self: { } ) { }; - "applicative-parsec" = callPackage ( - { - mkDerivation, - base, - containers, - lens, - mtl, - QuickCheck, - test-framework, - test-framework-quickcheck2, - text, - }: - mkDerivation { - pname = "applicative-parsec"; - version = "0.1.0.0"; - sha256 = "12y2j9lpaqpjcr2a9fk4anlvc1cw5rimyx031b6xa5dx500phrrx"; - libraryHaskellDepends = [ - base - containers - lens - mtl - text - ]; - testHaskellDepends = [ - base - mtl - QuickCheck - test-framework - test-framework-quickcheck2 - ]; - description = "An applicative parser combinator library"; - license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "applicative-quoters" = callPackage ( - { - mkDerivation, - base, - haskell-src-meta, - template-haskell, - }: - mkDerivation { - pname = "applicative-quoters"; - version = "0.1.0.8"; - sha256 = "10m29d0938khjdazsmsvvncr5xndnpzpm1b7ymzb3b4b81xmcpgl"; - revision = "1"; - editedCabalFile = "0ccdnkl3pxkwcg7m3xalqwax1gzaj3hg85zb219y7cfva2pvz1jp"; - libraryHaskellDepends = [ - base - haskell-src-meta - template-haskell - ]; - description = "Quasiquoters for idiom brackets and an applicative do-notation"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "applicative-splice" = callPackage ( - { - mkDerivation, - base, - haskell-src-exts, - haskell-src-meta, - mtl, - syb, - template-haskell, - }: - mkDerivation { - pname = "applicative-splice"; - version = "0.0.0.0"; - sha256 = "0am32b6yb39bk42bh053vl0glidm791bfzgx2crd7q8jiihdqxca"; - libraryHaskellDepends = [ - base - haskell-src-exts - haskell-src-meta - mtl - syb - template-haskell - ]; - description = "Write applicative programs in direct style (generalizes idiom brackets)"; - license = lib.licenses.publicDomain; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "apply-merge" = callPackage ( { mkDerivation, @@ -80758,128 +43147,42 @@ self: { base hspec should-not-typecheck - ]; - description = "Apply functions to arguments in an unordered type-directed fashion"; - license = lib.licenses.bsd3; - } - ) { }; - - "apportionment" = callPackage ( - { - mkDerivation, - base, - containers, - doctest-exitcode-stdio, - doctest-lib, - QuickCheck, - utility-ht, - }: - mkDerivation { - pname = "apportionment"; - version = "0.0.0.4"; - sha256 = "12b4jlh3k3da1w5lw8z83qgvn0ys85xwvdqylm5kwfi2i1i72256"; - revision = "2"; - editedCabalFile = "1gzq435d00362qfywy8x2lf52rizwgz2ka2nw3kij3mr47v9na7a"; - libraryHaskellDepends = [ - base - containers - utility-ht - ]; - testHaskellDepends = [ - base - doctest-exitcode-stdio - doctest-lib - QuickCheck - ]; - description = "Round a set of numbers while maintaining its sum"; - license = lib.licenses.bsd3; - maintainers = [ lib.maintainers.thielema ]; - } - ) { }; - - "approveapi" = callPackage ( - { - mkDerivation, - aeson, - base, - base64-bytestring, - bytestring, - case-insensitive, - containers, - deepseq, - exceptions, - hspec, - http-api-data, - http-client, - http-client-tls, - http-media, - http-types, - iso8601-time, - katip, - microlens, - mtl, - network, + ]; + description = "Apply functions to arguments in an unordered type-directed fashion"; + license = lib.licenses.bsd3; + } + ) { }; + + "apportionment" = callPackage ( + { + mkDerivation, + base, + containers, + doctest-exitcode-stdio, + doctest-lib, QuickCheck, - random, - safe-exceptions, - semigroups, - text, - time, - transformers, - unordered-containers, - vector, + utility-ht, }: mkDerivation { - pname = "approveapi"; - version = "0.1.3.0"; - sha256 = "1ylqv8vgz1nzndgms1rjn2fcqjymlx80xfyil0si2h0jxwxbwfr5"; + pname = "apportionment"; + version = "0.0.0.4"; + sha256 = "12b4jlh3k3da1w5lw8z83qgvn0ys85xwvdqylm5kwfi2i1i72256"; + revision = "2"; + editedCabalFile = "1gzq435d00362qfywy8x2lf52rizwgz2ka2nw3kij3mr47v9na7a"; libraryHaskellDepends = [ - aeson base - base64-bytestring - bytestring - case-insensitive containers - deepseq - exceptions - http-api-data - http-client - http-client-tls - http-media - http-types - iso8601-time - katip - microlens - mtl - network - random - safe-exceptions - text - time - transformers - unordered-containers - vector + utility-ht ]; testHaskellDepends = [ - aeson base - bytestring - containers - hspec - iso8601-time - mtl + doctest-exitcode-stdio + doctest-lib QuickCheck - semigroups - text - time - transformers - unordered-containers - vector ]; - description = "ApproveAPI Haskell Client"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; + description = "Round a set of numbers while maintaining its sum"; + license = lib.licenses.bsd3; + maintainers = [ lib.maintainers.thielema ]; } ) { }; @@ -80939,83 +43242,6 @@ self: { } ) { }; - "approx-rand-test" = callPackage ( - { - mkDerivation, - base, - Chart, - Chart-diagrams, - colour, - conduit, - containers, - data-default, - data-default-class, - filepath, - HUnit, - ieee754, - lens, - mersenne-random-pure64, - monad-mersenne-random, - mtl, - statistics, - test-framework, - test-framework-hunit, - text, - transformers, - vector, - vector-algorithms, - }: - mkDerivation { - pname = "approx-rand-test"; - version = "0.2.1"; - sha256 = "17aww5sffw07wk8hlyf0qv26v0jkr5qzv45wxk4zhhyb453b9m41"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - mersenne-random-pure64 - monad-mersenne-random - mtl - statistics - transformers - vector - ]; - executableHaskellDepends = [ - base - Chart - Chart-diagrams - colour - conduit - containers - data-default - data-default-class - filepath - lens - mersenne-random-pure64 - monad-mersenne-random - mtl - statistics - text - vector - vector-algorithms - ]; - testHaskellDepends = [ - base - HUnit - ieee754 - mersenne-random-pure64 - monad-mersenne-random - mtl - test-framework - test-framework-hunit - vector - ]; - description = "Approximate randomization test"; - license = "unknown"; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "approximate" = callPackage ( { mkDerivation, @@ -81108,92 +43334,6 @@ self: { } ) { }; - "arb-fft" = callPackage ( - { - mkDerivation, - base, - containers, - criterion, - directory, - filepath, - primitive, - QuickCheck, - tasty, - tasty-quickcheck, - transformers, - vector, - }: - mkDerivation { - pname = "arb-fft"; - version = "0.3.0.0"; - sha256 = "1k0gqk9jnmg7mv65hjr17k6ylyjpinib7w0wzx25hnisb9nr3227"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - containers - criterion - directory - filepath - primitive - transformers - vector - ]; - executableHaskellDepends = [ - base - containers - criterion - vector - ]; - testHaskellDepends = [ - base - containers - QuickCheck - tasty - tasty-quickcheck - vector - ]; - description = "Pure Haskell arbitrary length FFT library"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "profile-256"; - broken = true; - } - ) { }; - - "arbb-vm" = callPackage ( - { - mkDerivation, - arbb_dev, - base, - bytestring, - cereal, - containers, - directory, - mtl, - pretty, - }: - mkDerivation { - pname = "arbb-vm"; - version = "0.1.1.20"; - sha256 = "0k31ardnlg925vcrrl4n9w09867dbr68sdnc3bhs9xz1r9cdlkv8"; - libraryHaskellDepends = [ - base - bytestring - cereal - containers - directory - mtl - pretty - ]; - librarySystemDepends = [ arbb_dev ]; - description = "FFI binding to the Intel Array Building Blocks (ArBB) virtual machine"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { arbb_dev = null; }; - "arbor-datadog" = callPackage ( { mkDerivation, @@ -81260,274 +43400,6 @@ self: { } ) { }; - "arbor-lru-cache" = callPackage ( - { - mkDerivation, - base, - containers, - hedgehog, - hspec, - hspec-discover, - hw-hspec-hedgehog, - stm, - }: - mkDerivation { - pname = "arbor-lru-cache"; - version = "0.1.1.1"; - sha256 = "0ayr6d5p7x2b2ggck56skbbzsmf44vrsr5jf3bzhnqwcm1lljbv0"; - libraryHaskellDepends = [ - base - containers - stm - ]; - testHaskellDepends = [ - base - containers - hedgehog - hspec - hw-hspec-hedgehog - stm - ]; - testToolDepends = [ hspec-discover ]; - description = "LRU cache based on STM"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "arbor-monad-counter" = callPackage ( - { - mkDerivation, - base, - containers, - generic-lens, - hedgehog, - hspec, - hspec-discover, - hw-hspec-hedgehog, - lens, - mtl, - resourcet, - stm, - transformers, - }: - mkDerivation { - pname = "arbor-monad-counter"; - version = "2.0.2"; - sha256 = "1bfqjbfyr6f11w1g9i45wcnqjpsjs1jwwjij64nq5903m8bsby73"; - libraryHaskellDepends = [ - base - containers - generic-lens - lens - mtl - resourcet - stm - transformers - ]; - testHaskellDepends = [ - base - containers - generic-lens - hedgehog - hspec - hw-hspec-hedgehog - lens - mtl - resourcet - stm - transformers - ]; - testToolDepends = [ hspec-discover ]; - description = "Counter library for submitting metrics to a backend such as datadog"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "arbor-monad-logger" = callPackage ( - { - mkDerivation, - base, - bytestring, - fast-logger, - hedgehog, - hspec, - hspec-discover, - hw-hspec-hedgehog, - monad-logger, - mtl, - optparse-applicative, - text, - }: - mkDerivation { - pname = "arbor-monad-logger"; - version = "0.1.1.3"; - sha256 = "1x44kavmgm7nffvnakyrmcxq03vshg15vkk8wcpvkq43dndk9jb2"; - revision = "1"; - editedCabalFile = "0srypscv4gd1q2h6namm507211xd3cnqv144h2pb1mayy20m9a8m"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - bytestring - fast-logger - monad-logger - optparse-applicative - text - ]; - executableHaskellDepends = [ - base - mtl - ]; - testHaskellDepends = [ - base - hedgehog - hspec - hw-hspec-hedgehog - ]; - testToolDepends = [ hspec-discover ]; - description = "Simple logging library"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - mainProgram = "arbor-monad-logger-example"; - broken = true; - } - ) { }; - - "arbor-monad-metric" = callPackage ( - { - mkDerivation, - arbor-datadog, - base, - bytestring, - containers, - generic-lens, - hedgehog, - hspec, - hspec-discover, - hw-hspec-hedgehog, - lens, - mtl, - network, - resourcet, - stm, - text, - transformers, - }: - mkDerivation { - pname = "arbor-monad-metric"; - version = "1.2.1"; - sha256 = "0lrp60nspihvyjzlj8y7ndwkhp1r09rx85mxkal5alcbgg0nzqf7"; - libraryHaskellDepends = [ - base - containers - generic-lens - lens - mtl - resourcet - stm - text - transformers - ]; - testHaskellDepends = [ - arbor-datadog - base - bytestring - containers - generic-lens - hedgehog - hspec - hw-hspec-hedgehog - lens - mtl - network - resourcet - stm - text - transformers - ]; - testToolDepends = [ hspec-discover ]; - description = "Core metric library for publishing metrics"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "arbor-monad-metric-datadog" = callPackage ( - { - mkDerivation, - arbor-datadog, - arbor-monad-metric, - base, - bytestring, - containers, - exceptions, - fast-logger, - generic-lens, - hedgehog, - hspec, - hspec-discover, - hw-hspec-hedgehog, - lens, - monad-logger, - mtl, - network, - resourcet, - stm, - text, - transformers, - }: - mkDerivation { - pname = "arbor-monad-metric-datadog"; - version = "1.1.2"; - sha256 = "1wja13n9k2vad0icqsm8lydrxkgb01062ajm3y1xq7fybn5g6rbx"; - libraryHaskellDepends = [ - arbor-datadog - arbor-monad-metric - base - bytestring - containers - generic-lens - lens - mtl - network - resourcet - stm - text - transformers - ]; - testHaskellDepends = [ - arbor-datadog - arbor-monad-metric - base - bytestring - containers - exceptions - fast-logger - generic-lens - hedgehog - hspec - hw-hspec-hedgehog - lens - monad-logger - mtl - network - resourcet - stm - text - transformers - ]; - testToolDepends = [ hspec-discover ]; - description = "Metric library backend for datadog"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "arbor-postgres" = callPackage ( { mkDerivation, @@ -82042,205 +43914,6 @@ self: { } ) { }; - "archive-tar-bytestring" = callPackage ( - { - mkDerivation, - base, - bytestring, - composition-prelude, - cpphs, - tar-bytestring, - text, - unix, - }: - mkDerivation { - pname = "archive-tar-bytestring"; - version = "1.0.0.0"; - sha256 = "0gda7vpzjxsi8qidzqz1967a3nbap8m52f4ncfj8ph6kwh3pw2zb"; - libraryHaskellDepends = [ - base - bytestring - composition-prelude - tar-bytestring - text - unix - ]; - libraryToolDepends = [ cpphs ]; - description = "Common interface using the tar-bytestring package"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "archiver" = callPackage ( - { - mkDerivation, - base, - bytestring, - containers, - curl, - HTTP, - network, - process, - random, - }: - mkDerivation { - pname = "archiver"; - version = "0.6.2.1"; - sha256 = "19gvja890lhn9zr2aqjshwq5qqb95nynxrsw5wk4z2a417xj70j2"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - curl - HTTP - network - ]; - executableHaskellDepends = [ - base - bytestring - containers - process - random - ]; - description = "Archive supplied URLs in WebCite & Internet Archive"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "archiver"; - broken = true; - } - ) { }; - - "archlinux" = callPackage ( - { - mkDerivation, - base, - Cabal, - containers, - directory, - filepath, - pretty, - }: - mkDerivation { - pname = "archlinux"; - version = "1.3"; - sha256 = "051pgn39f8xq80qf8g04j162n6zysvcdbj8a8m05x6vi6mbr9jx2"; - libraryHaskellDepends = [ - base - Cabal - containers - directory - filepath - pretty - ]; - description = "Support for working with Arch Linux packages"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "archlinux-web" = callPackage ( - { - mkDerivation, - archlinux, - base, - Cabal, - containers, - csv, - deepseq, - directory, - filepath, - HTTP, - json, - old-time, - parallel, - pretty, - prettyclass, - process, - strict-concurrency, - xhtml, - }: - mkDerivation { - pname = "archlinux-web"; - version = "0.1"; - sha256 = "1rzjkxxmf24hrmlc70s416akn6rbcly7152ly618dxgigvqnir48"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - archlinux - base - Cabal - containers - csv - deepseq - directory - filepath - HTTP - json - old-time - parallel - pretty - prettyclass - process - strict-concurrency - xhtml - ]; - executableHaskellDepends = [ - archlinux - base - Cabal - containers - csv - deepseq - directory - filepath - HTTP - json - old-time - parallel - pretty - prettyclass - process - strict-concurrency - xhtml - ]; - description = "Website maintenance for Arch Linux packages"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "archnews" = callPackage ( - { - mkDerivation, - base, - containers, - download-curl, - feed, - tagsoup, - }: - mkDerivation { - pname = "archnews"; - version = "0.2"; - sha256 = "1v7b6w2cqfy69kvsr09a1qv4zyz78khygmd9l9hqjlmj7w3x8gys"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - containers - download-curl - feed - tagsoup - ]; - description = "Convert Arch Linux package updates in RSS to pretty markdown"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "archnews"; - broken = true; - } - ) { }; - "arduino-copilot" = callPackage ( { mkDerivation, @@ -82286,120 +43959,6 @@ self: { } ) { }; - "arena" = callPackage ( - { - mkDerivation, - base, - bytes, - bytestring, - containers, - criterion, - digest, - directory, - filepath, - mtl, - persistent-vector, - safe, - semigroups, - unix, - }: - mkDerivation { - pname = "arena"; - version = "0.1"; - sha256 = "1rg8lnxxyw37ysp8xx4v5f1ldvr344paqx5s4in3n10yc1kbs5ab"; - revision = "1"; - editedCabalFile = "0f81q0bvmhi4c3965970zb3mmgif1lmrw7q69kfyvw8d9ayvv6ps"; - libraryHaskellDepends = [ - base - bytes - bytestring - containers - digest - directory - filepath - mtl - persistent-vector - safe - semigroups - unix - ]; - testHaskellDepends = [ - base - bytes - containers - directory - mtl - semigroups - ]; - benchmarkHaskellDepends = [ - base - criterion - directory - mtl - semigroups - ]; - description = "A journaled data store"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "arff" = callPackage ( - { - mkDerivation, - base, - binary, - bytestring, - bytestring-lexing, - bytestring-show, - old-locale, - time, - }: - mkDerivation { - pname = "arff"; - version = "0.1.0"; - sha256 = "1mwak4kl4ksg5vqya9abz02v0zgj6lbi6bzq2bd8jpnncazsxha5"; - libraryHaskellDepends = [ - base - binary - bytestring - bytestring-lexing - bytestring-show - old-locale - time - ]; - description = "Generate Attribute-Relation File Format (ARFF) files"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "arghwxhaskell" = callPackage ( - { - mkDerivation, - base, - directory, - wx, - }: - mkDerivation { - pname = "arghwxhaskell"; - version = "0.8.2.0"; - sha256 = "0nyx7ir12dj25r3w7ilrrwsiy4hzwdnq507j6zqq9piw74hsv23b"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - directory - wx - ]; - description = "An interpreter for the Argh! programming language in wxHaskell"; - license = lib.licenses.gpl2Only; - hydraPlatforms = lib.platforms.none; - mainProgram = "argh"; - } - ) { }; - "argo" = callPackage ( { mkDerivation, @@ -82546,7 +44105,6 @@ self: { ]; description = "Measure your code's complexity"; license = lib.licenses.isc; - hydraPlatforms = lib.platforms.none; mainProgram = "argon"; } ) { }; @@ -82588,206 +44146,6 @@ self: { } ) { }; - "argparser" = callPackage ( - { - mkDerivation, - base, - containers, - HTF, - HUnit, - }: - mkDerivation { - pname = "argparser"; - version = "0.3.4"; - sha256 = "0ypdj4mcm4yk5pswzwi9jk2w25f6qhiari8gam72za6ihyjwfig6"; - libraryHaskellDepends = [ - base - containers - ]; - testHaskellDepends = [ - base - containers - HTF - HUnit - ]; - description = "Command line parsing framework for console applications"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "arguedit" = callPackage ( - { - mkDerivation, - base, - bimap, - containers, - glib, - gtk, - HDBC, - indents, - mtl, - parsec, - }: - mkDerivation { - pname = "arguedit"; - version = "0.1.0.1"; - sha256 = "17s6m9mjai439j8g0cd5pr2zb0224h1ckik9fg0rbd06zgxvfmq6"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - bimap - containers - glib - gtk - HDBC - indents - mtl - parsec - ]; - description = "A computer assisted argumentation transcription and editing software"; - license = lib.licenses.gpl2Only; - hydraPlatforms = lib.platforms.none; - mainProgram = "ArguEdit.bin"; - broken = true; - } - ) { }; - - "ariadne" = callPackage ( - { - mkDerivation, - async, - base, - bert, - Cabal, - containers, - data-lens, - data-lens-fd, - data-lens-template, - directory, - filepath, - haskell-names, - haskell-packages, - haskell-src-exts, - hse-cpp, - hslogger, - mtl, - stm, - tagged, - tasty, - tasty-hunit, - transformers, - utf8-string, - }: - mkDerivation { - pname = "ariadne"; - version = "0.1.2.3"; - sha256 = "02hyn3y4h7w4l5k48kp73al67lp8vzlymblb7al72w14r01ww8p3"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - async - base - bert - Cabal - containers - data-lens - data-lens-fd - data-lens-template - directory - filepath - haskell-names - haskell-packages - haskell-src-exts - hse-cpp - hslogger - mtl - stm - tagged - transformers - utf8-string - ]; - testHaskellDepends = [ - base - bert - containers - directory - filepath - haskell-src-exts - tasty - tasty-hunit - utf8-string - ]; - description = "Go-to-definition for Haskell"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - mainProgram = "ariadne-server"; - } - ) { }; - - "arion" = callPackage ( - { - mkDerivation, - base, - containers, - directory, - filemanip, - fsnotify, - hspec, - process, - regex-posix, - safe, - split, - system-filepath, - text, - time, - transformers, - }: - mkDerivation { - pname = "arion"; - version = "0.1.0.8"; - sha256 = "107rbbzmqg0zrgv3qb0pr8svmzh25a63dm0kn0hhyirkjzdyjgqw"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - containers - directory - filemanip - fsnotify - process - regex-posix - safe - split - system-filepath - text - transformers - ]; - testHaskellDepends = [ - base - containers - directory - filemanip - fsnotify - hspec - process - regex-posix - safe - split - system-filepath - text - time - ]; - description = "Watcher and runner for Hspec"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - mainProgram = "arion"; - broken = true; - } - ) { }; - "arion-compose" = callPackage ( { mkDerivation, @@ -82910,6 +44268,7 @@ self: { description = "A practical arithmetic encoding (aka Godel numbering) library"; license = lib.licenses.bsd3; hydraPlatforms = lib.platforms.none; + broken = true; } ) { }; @@ -83086,7 +44445,6 @@ self: { ]; description = "Arithmetic circuits for zkSNARKs"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; } ) { }; @@ -83205,36 +44563,6 @@ self: { } ) { }; - "armada" = callPackage ( - { - mkDerivation, - base, - GLUT, - mtl, - OpenGL, - stm, - }: - mkDerivation { - pname = "armada"; - version = "0.1"; - sha256 = "18ym9cs0mr4pr6pdgyk14rrwsxh1fa0xvqz3jg60lnxbgjlynvc1"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - GLUT - mtl - OpenGL - stm - ]; - description = "Space-based real time strategy game"; - license = "GPL"; - hydraPlatforms = lib.platforms.none; - mainProgram = "armada"; - broken = true; - } - ) { }; - "armor" = callPackage ( { mkDerivation, @@ -83282,75 +44610,6 @@ self: { } ) { }; - "arpa" = callPackage ( - { mkDerivation, base }: - mkDerivation { - pname = "arpa"; - version = "0.0.0.0"; - sha256 = "13n878vafx1igw3q3v1c676iaidyqa4wk6z727vh7dagkkyl7653"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base ]; - executableHaskellDepends = [ base ]; - description = "Library for reading ARPA n-gram models"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "arpa"; - broken = true; - } - ) { }; - - "arpack" = callPackage ( - { - mkDerivation, - arpack, - base, - concurrent-extra, - containers, - control-monad-loop, - data-default, - hmatrix, - hspec, - ieee754, - QuickCheck, - storable-complex, - transformers, - vector, - vector-algorithms, - }: - mkDerivation { - pname = "arpack"; - version = "0.1.0.0"; - sha256 = "042adjjsd96hnx33xmd4yvvzcdcfsbp7z509dikfyl9c2zrv8shn"; - libraryHaskellDepends = [ - base - concurrent-extra - containers - control-monad-loop - data-default - hmatrix - ieee754 - storable-complex - transformers - vector - vector-algorithms - ]; - libraryPkgconfigDepends = [ arpack ]; - testHaskellDepends = [ - base - hmatrix - hspec - QuickCheck - vector - vector-algorithms - ]; - description = "Solve large scale eigenvalue problems"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { inherit (pkgs) arpack; }; - "array_0_5_8_0" = callPackage ( { mkDerivation, base }: mkDerivation { @@ -83441,90 +44700,6 @@ self: { } ) { }; - "array-forth" = callPackage ( - { - mkDerivation, - array, - base, - HUnit, - mcmc-synthesis, - modular-arithmetic, - MonadRandom, - OddWord, - QuickCheck, - split, - test-framework-hunit, - test-framework-quickcheck2, - test-framework-th, - vector, - }: - mkDerivation { - pname = "array-forth"; - version = "0.2.1.4"; - sha256 = "03kjkpygi9jc8vrvnw9i8zwbfaihsl50bi39j0liclja442j9h5m"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - array - base - mcmc-synthesis - modular-arithmetic - MonadRandom - OddWord - split - vector - ]; - executableHaskellDepends = [ - base - split - vector - ]; - testHaskellDepends = [ - base - HUnit - QuickCheck - test-framework-hunit - test-framework-quickcheck2 - test-framework-th - ]; - description = "A simple interpreter for arrayForth, the language used on GreenArrays chips"; - license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - mainProgram = "array-forth"; - } - ) { }; - - "array-list" = callPackage ( - { - mkDerivation, - array, - base, - doctest, - doctest-driver-gen, - hspec, - }: - mkDerivation { - pname = "array-list"; - version = "0.2.0.0"; - sha256 = "17xdkn1p7zfg7rw9sfbv6amfab291gz8fafkl26x38al9khjcgy2"; - libraryHaskellDepends = [ - array - base - ]; - testHaskellDepends = [ - array - base - doctest - doctest-driver-gen - hspec - ]; - description = "IsList instances of Array for OverloadedLists extension"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "array-memoize" = callPackage ( { mkDerivation, @@ -83544,43 +44719,6 @@ self: { } ) { }; - "array-primops" = callPackage ( - { - mkDerivation, - base, - criterion, - ghc-prim, - QuickCheck, - tasty, - tasty-quickcheck, - }: - mkDerivation { - pname = "array-primops"; - version = "0.2.0.1"; - sha256 = "0kdf88xs6aplxah90pl2r94fgfl58a4fmpxjcbvb9996823q54qg"; - libraryHaskellDepends = [ - base - ghc-prim - ]; - testHaskellDepends = [ - base - ghc-prim - QuickCheck - tasty - tasty-quickcheck - ]; - benchmarkHaskellDepends = [ - base - criterion - ghc-prim - ]; - description = "Extra foreign primops for primitive arrays"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "array-utils" = callPackage ( { mkDerivation, @@ -83659,42 +44797,6 @@ self: { } ) { af = null; }; - "arraylist" = callPackage ( - { - mkDerivation, - base, - hashable, - initialize, - MonadRandom, - primitive, - smallcheck, - tasty, - tasty-smallcheck, - }: - mkDerivation { - pname = "arraylist"; - version = "0.1.0.0"; - sha256 = "1swvn9k7j2pwcln4znzrszgwgdi4f26q9qlaz2fi8jixc089v91g"; - libraryHaskellDepends = [ - base - initialize - primitive - ]; - testHaskellDepends = [ - base - hashable - MonadRandom - primitive - smallcheck - tasty - tasty-smallcheck - ]; - description = "Memory-efficient ArrayList implementation"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "arrow-extras" = callPackage ( { mkDerivation, base }: mkDerivation { @@ -83707,33 +44809,6 @@ self: { } ) { }; - "arrow-improve" = callPackage ( - { - mkDerivation, - arrows, - base, - pointed, - profunctors, - semigroupoids, - }: - mkDerivation { - pname = "arrow-improve"; - version = "0.1.0.0"; - sha256 = "0ppl8v746lj41aqb0k2724vm4n32jxmz723qa0j860jvhkh2nww7"; - libraryHaskellDepends = [ - arrows - base - pointed - profunctors - semigroupoids - ]; - description = "Improved arrows"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "arrow-list" = callPackage ( { mkDerivation, @@ -83787,93 +44862,6 @@ self: { } ) { }; - "arrowapply-utils" = callPackage ( - { mkDerivation, base }: - mkDerivation { - pname = "arrowapply-utils"; - version = "0.2"; - sha256 = "02zampc6cc5a9fvdvxkz2r6i5sxf5w0qilsvsx8jxiw4kprbghii"; - libraryHaskellDepends = [ base ]; - description = "Utilities for working with ArrowApply instances more naturally"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "arrowp" = callPackage ( - { - mkDerivation, - array, - base, - containers, - haskell-src, - }: - mkDerivation { - pname = "arrowp"; - version = "0.5.0.2"; - sha256 = "0a0ss5q8ximbd6hr0agy1106jfvdm8cx50q7a9yaiqfxs20fy6lx"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - array - base - containers - haskell-src - ]; - description = "preprocessor translating arrow notation into Haskell 98"; - license = "GPL"; - hydraPlatforms = lib.platforms.none; - mainProgram = "arrowp"; - broken = true; - } - ) { }; - - "arrowp-qq" = callPackage ( - { - mkDerivation, - base, - containers, - data-default, - haskell-src-exts, - haskell-src-exts-util, - haskell-src-meta, - NoHoed, - template-haskell, - transformers, - uniplate, - }: - mkDerivation { - pname = "arrowp-qq"; - version = "0.3.0"; - sha256 = "0szbl8yjz24r12q6wmi8j0f7aj2f9gbzaajna2cgaq9d33pyazvq"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - containers - data-default - haskell-src-exts - haskell-src-exts-util - haskell-src-meta - NoHoed - template-haskell - transformers - uniplate - ]; - executableHaskellDepends = [ - base - haskell-src-exts - NoHoed - ]; - description = "A preprocessor and quasiquoter for translating arrow notation"; - license = "GPL"; - hydraPlatforms = lib.platforms.none; - mainProgram = "arrowp"; - broken = true; - } - ) { }; - "arrows" = callPackage ( { mkDerivation, @@ -83893,60 +44881,6 @@ self: { } ) { }; - "artery" = callPackage ( - { - mkDerivation, - base, - containers, - profunctors, - transformers, - }: - mkDerivation { - pname = "artery"; - version = "0.1.1"; - sha256 = "1fs8jap2ndcj21qgpkzy9nbnabvp4ac0xm0vdwkjjdf7i4j5kaqr"; - libraryHaskellDepends = [ - base - containers - profunctors - transformers - ]; - description = "A simple, arrow-based reactive programming"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "artifact" = callPackage ( - { - mkDerivation, - aeson, - base, - bytestring, - containers, - text, - }: - mkDerivation { - pname = "artifact"; - version = "0.0.0.0"; - sha256 = "0pw47pfn745plc8kslcz580lniprwpv8x8l65zgixpnc34i1bx56"; - revision = "1"; - editedCabalFile = "09hmx0x4fz80kby7w1n9rc7sibbmpsvl4i3rc3h91hs53ban4yd4"; - libraryHaskellDepends = [ - aeson - base - bytestring - containers - text - ]; - description = "Basic types and instances for Valve's Artifact Card-set API"; - license = lib.licenses.agpl3Plus; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "arx" = callPackage ( { mkDerivation, @@ -84075,50 +45009,6 @@ self: { } ) { }; - "asap" = callPackage ( - { - mkDerivation, - base, - bytestring, - hedgehog, - jwt, - lens, - mtl, - semigroups, - text, - time, - uuid, - }: - mkDerivation { - pname = "asap"; - version = "0.0.4"; - sha256 = "08yfangqxmdh2w39fqnicn16jnb1x9f263f99253khx3sv4q7qrf"; - libraryHaskellDepends = [ - base - bytestring - jwt - lens - mtl - semigroups - text - time - uuid - ]; - testHaskellDepends = [ - base - hedgehog - jwt - mtl - text - time - ]; - description = "Atlassian Service Authentication Protocol"; - license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "ascetic" = callPackage ( { mkDerivation, @@ -84305,55 +45195,6 @@ self: { } ) { }; - "ascii-cows" = callPackage ( - { - mkDerivation, - base, - random-extras, - random-fu, - text, - }: - mkDerivation { - pname = "ascii-cows"; - version = "0.0.2.0"; - sha256 = "0ddnjsqmaqrs2kxys32zqpmvkyway4dqj35x2q3gqxmsir3qg8zq"; - libraryHaskellDepends = [ - base - random-extras - random-fu - text - ]; - description = "A collection of ASCII cows. Moo."; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "ascii-flatten" = callPackage ( - { - mkDerivation, - base, - text, - }: - mkDerivation { - pname = "ascii-flatten"; - version = "0.1.1.0"; - sha256 = "1kbgxpcn07pi9ly3rfd5lhy7gp29rycf5v2f6wvigsypm1c1cmkb"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base ]; - executableHaskellDepends = [ - base - text - ]; - description = "Flattens European non-ASCII characaters into ASCII"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - mainProgram = "ascii-flatten"; - broken = true; - } - ) { }; - "ascii-group" = callPackage ( { mkDerivation, @@ -84514,56 +45355,6 @@ self: { } ) { }; - "ascii-string" = callPackage ( - { - mkDerivation, - base, - bytestring, - cereal, - deepseq, - deferred-folds, - foldl, - hashable, - primitive, - primitive-extras, - QuickCheck, - quickcheck-instances, - rerebase, - tasty, - tasty-hunit, - tasty-quickcheck, - }: - mkDerivation { - pname = "ascii-string"; - version = "1.0.1.4"; - sha256 = "1hzqckcbinhmsg8866y9gaghz4jvdhy7h5na9q0ylapx6kq71plf"; - libraryHaskellDepends = [ - base - bytestring - cereal - deepseq - deferred-folds - foldl - hashable - primitive - primitive-extras - ]; - testHaskellDepends = [ - cereal - QuickCheck - quickcheck-instances - rerebase - tasty - tasty-hunit - tasty-quickcheck - ]; - description = "Compact representation of ASCII strings"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "ascii-superset" = callPackage ( { mkDerivation, @@ -84602,40 +45393,6 @@ self: { } ) { }; - "ascii-table" = callPackage ( - { - mkDerivation, - aeson, - base, - containers, - dlist, - hashable, - text, - unordered-containers, - vector, - wl-pprint-extras, - }: - mkDerivation { - pname = "ascii-table"; - version = "0.3.0.2"; - sha256 = "04v2dlza1i6xsacm35qc3p5mpv1pny2dij4nz5wwv7p3pybbhvmd"; - libraryHaskellDepends = [ - aeson - base - containers - dlist - hashable - text - unordered-containers - vector - wl-pprint-extras - ]; - description = "ASCII table"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "ascii-th" = callPackage ( { mkDerivation, @@ -84676,85 +45433,6 @@ self: { } ) { }; - "ascii-vector-avc" = callPackage ( - { - mkDerivation, - attoparsec, - base, - binary, - bytestring, - deepseq, - deepseq-generics, - HUnit, - split, - zlib, - }: - mkDerivation { - pname = "ascii-vector-avc"; - version = "0.1.0.0"; - sha256 = "09m7wcq207glaz3s824vakj42vdaxc334y5k9lsh095v2xp7pwz4"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - attoparsec - base - binary - bytestring - deepseq - deepseq-generics - HUnit - split - zlib - ]; - executableHaskellDepends = [ - attoparsec - base - binary - bytestring - deepseq - deepseq-generics - HUnit - split - zlib - ]; - description = "Process Ascii Vectors for Advantest 93k"; - license = lib.licenses.gpl2Only; - hydraPlatforms = lib.platforms.none; - mainProgram = "SelectSigs"; - broken = true; - } - ) { }; - - "ascii85-conduit" = callPackage ( - { - mkDerivation, - base, - bytestring, - conduit, - hspec, - }: - mkDerivation { - pname = "ascii85-conduit"; - version = "0.1.0.0"; - sha256 = "191qw61y3jrbwzv7nabvxr6dxxigyxflbw49f0q637psqzdblsl5"; - libraryHaskellDepends = [ - base - bytestring - conduit - ]; - testHaskellDepends = [ - base - bytestring - conduit - hspec - ]; - description = "Conduit for encoding ByteString into Ascii85"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "ascii85x" = callPackage ( { mkDerivation, @@ -84904,225 +45582,6 @@ self: { } ) { }; - "asic" = callPackage ( - { - mkDerivation, - asil, - base, - bytestring, - utf8-string, - }: - mkDerivation { - pname = "asic"; - version = "1.2"; - sha256 = "0w7pkfd0i46a6x2ivk659rx56v9nkjvlvnmiafy96y1cbfzkyffg"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - asil - base - bytestring - utf8-string - ]; - description = "Action Script Instrumentation Compiler"; - license = "LGPL"; - hydraPlatforms = lib.platforms.none; - mainProgram = "asic"; - } - ) { }; - - "asif" = callPackage ( - { - mkDerivation, - attoparsec, - base, - binary, - bytestring, - conduit, - conduit-combinators, - conduit-extra, - containers, - cpu, - directory, - doctest, - doctest-discover, - either, - exceptions, - foldl, - generic-lens, - hedgehog, - hspec, - hspec-discover, - hw-bits, - hw-hspec-hedgehog, - hw-ip, - lens, - network, - old-locale, - optparse-applicative, - profunctors, - resourcet, - temporary-resourcet, - text, - thyme, - transformers, - vector, - }: - mkDerivation { - pname = "asif"; - version = "6.0.4"; - sha256 = "1613r90sfw7q0gsiyjd8j9s1gcjmwj4lsngx3qqpykcivy2ggs03"; - revision = "1"; - editedCabalFile = "02gz317ivpmb5yzifm3fv62cik4fh77j7ilb027z6dpx4r041p9w"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - attoparsec - base - binary - bytestring - conduit - conduit-combinators - conduit-extra - containers - cpu - either - exceptions - foldl - generic-lens - hw-bits - hw-ip - lens - network - old-locale - profunctors - resourcet - temporary-resourcet - text - thyme - transformers - vector - ]; - executableHaskellDepends = [ - attoparsec - base - binary - bytestring - conduit - conduit-combinators - conduit-extra - containers - cpu - directory - either - exceptions - foldl - generic-lens - hw-bits - hw-ip - lens - network - old-locale - optparse-applicative - profunctors - resourcet - temporary-resourcet - text - thyme - transformers - vector - ]; - testHaskellDepends = [ - attoparsec - base - binary - bytestring - conduit - conduit-combinators - conduit-extra - containers - cpu - doctest - doctest-discover - either - exceptions - foldl - generic-lens - hedgehog - hspec - hw-bits - hw-hspec-hedgehog - hw-ip - lens - network - old-locale - profunctors - resourcet - temporary-resourcet - text - thyme - transformers - vector - ]; - testToolDepends = [ - doctest-discover - hspec-discover - ]; - description = "Library for creating and querying segmented feeds"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - mainProgram = "asif"; - broken = true; - } - ) { }; - - "asil" = callPackage ( - { - mkDerivation, - array, - base, - binary, - bytestring, - containers, - data-binary-ieee754, - directory, - filepath, - haskell-src-exts, - mtl, - pretty, - utf8-string, - uuagc, - zip-archive, - zlib, - }: - mkDerivation { - pname = "asil"; - version = "1.2"; - sha256 = "1zprddksk91wfyl1597cdgdy2r46d7vxjfxxi80rhxbfkshs4qwx"; - libraryHaskellDepends = [ - array - base - binary - bytestring - containers - data-binary-ieee754 - directory - filepath - haskell-src-exts - mtl - pretty - utf8-string - uuagc - zip-archive - zlib - ]; - description = "Action Script Instrumentation Library"; - license = "LGPL"; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "asn" = callPackage ( { mkDerivation, @@ -85214,101 +45673,6 @@ self: { } ) { }; - "asn1-codec" = callPackage ( - { - mkDerivation, - aeson, - base, - base16-bytestring, - bytestring, - containers, - contravariant, - cryptonite, - directory, - hashable, - HUnit, - integer-gmp, - memory, - network, - pretty, - stm, - test-framework, - test-framework-hunit, - text, - vector, - }: - mkDerivation { - pname = "asn1-codec"; - version = "0.2.0"; - sha256 = "03c5dknklv8zj69fyhkdfvb7abcp68byhv2h8mmlnfwd9nz8fsrg"; - revision = "1"; - editedCabalFile = "0d1m0i06i0agh64hbc182yrmd4lfwi6kwmms0gh2yh91ympmyd89"; - libraryHaskellDepends = [ - base - bytestring - containers - contravariant - cryptonite - hashable - integer-gmp - memory - network - pretty - stm - text - vector - ]; - testHaskellDepends = [ - aeson - base - base16-bytestring - bytestring - directory - HUnit - test-framework - test-framework-hunit - text - vector - ]; - description = "Encode and decode ASN.1"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "asn1-data" = callPackage ( - { - mkDerivation, - base, - bytestring, - cereal, - mtl, - text, - }: - mkDerivation { - pname = "asn1-data"; - version = "0.7.2"; - sha256 = "18dc4d71pvp5q6npxicqqj3fk6n39lm98450vvhgg4y9rc1rr6c3"; - revision = "2"; - editedCabalFile = "0xnj367rxj21gnxq7d5qih54g0zwwyc6r6gaaijikhprppbvjjvy"; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base - bytestring - cereal - mtl - text - ]; - description = "ASN1 data reader and writer in RAW, BER and DER forms"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "asn1-encoding" = callPackage ( { mkDerivation, @@ -85478,36 +45842,6 @@ self: { } ) { ghc-binary = null; }; - "assert" = callPackage ( - { - mkDerivation, - base, - bytestring, - Cabal, - directory, - filepath, - system-posix-redirect, - }: - mkDerivation { - pname = "assert"; - version = "0.0.1.2"; - sha256 = "0pycrpa9m8kif31jsbmb2cb4rbvm6qinmzhkdam1b5mbmmmg5q96"; - libraryHaskellDepends = [ base ]; - testHaskellDepends = [ - base - bytestring - Cabal - directory - filepath - system-posix-redirect - ]; - description = "Helpers for Control.Exception.assert"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "assert-failure" = callPackage ( { mkDerivation, @@ -85654,37 +45988,6 @@ self: { } ) { }; - "assertions" = callPackage ( - { - mkDerivation, - ansi-terminal, - base, - containers, - interpolate, - process, - }: - mkDerivation { - pname = "assertions"; - version = "0.1.0.4"; - sha256 = "1b2p6b6brk0b1hq264i20bpdhdaq4xdzcqp7gzvfy1s5q3zwjzj8"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - ansi-terminal - base - containers - ]; - testHaskellDepends = [ - base - interpolate - process - ]; - description = "A simple testing framework"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "asset-bundle" = callPackage ( { mkDerivation, @@ -85708,42 +46011,6 @@ self: { } ) { }; - "asset-map" = callPackage ( - { - mkDerivation, - aeson, - base, - bytestring, - containers, - filepath, - hspec, - template-haskell, - th-lift-instances, - }: - mkDerivation { - pname = "asset-map"; - version = "0.1.0.0"; - sha256 = "0c33ghr2wd9dr153zpcmifdysfw39x3bhzz49wy9vm81a7rmw9kg"; - libraryHaskellDepends = [ - aeson - base - bytestring - containers - filepath - template-haskell - th-lift-instances - ]; - testHaskellDepends = [ - base - hspec - ]; - description = "Asset map support for the JavaScript broccoli-asset-rev library"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "assignment" = callPackage ( { mkDerivation, @@ -85777,32 +46044,6 @@ self: { } ) { }; - "assimp" = callPackage ( - { - mkDerivation, - assimp, - base, - c2hs, - haskell98, - vect, - }: - mkDerivation { - pname = "assimp"; - version = "0.1"; - sha256 = "0jhf76v08dh1bf65ln0az1b8bc8zi9gxb0bx273mi3jvprhns4zh"; - libraryHaskellDepends = [ - base - haskell98 - vect - ]; - librarySystemDepends = [ assimp ]; - libraryToolDepends = [ c2hs ]; - description = "The Assimp asset import library"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { inherit (pkgs) assimp; }; - "assoc" = callPackage ( { mkDerivation, base }: mkDerivation { @@ -85878,105 +46119,6 @@ self: { } ) { }; - "assumpta" = callPackage ( - { - mkDerivation, - assumpta-core, - base, - bytestring, - connection, - data-default, - exceptions, - hspec, - mime-mail, - mtl, - network, - QuickCheck, - quickcheck-io, - text, - transformers, - }: - mkDerivation { - pname = "assumpta"; - version = "0.1.0.0"; - sha256 = "1rk0nx8wx4ypvm4bscd6zj9l99hffp9946kszvpramrf8nqdkkvc"; - libraryHaskellDepends = [ - assumpta-core - base - bytestring - connection - data-default - exceptions - mime-mail - mtl - text - transformers - ]; - testHaskellDepends = [ - assumpta-core - base - bytestring - hspec - network - QuickCheck - quickcheck-io - ]; - description = "An SMTP client library"; - license = lib.licenses.bsd2; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "assumpta-core" = callPackage ( - { - mkDerivation, - attoparsec, - base, - base64-bytestring, - bytestring, - constraints, - cryptonite, - exceptions, - hspec, - memory, - mtl, - QuickCheck, - text, - transformers, - }: - mkDerivation { - pname = "assumpta-core"; - version = "0.1.0.2"; - sha256 = "06k8rb3fz597k97hasfzvjcs0psvy2jzj3v5yxibqm7yp66f2zhq"; - libraryHaskellDepends = [ - attoparsec - base - base64-bytestring - bytestring - constraints - cryptonite - exceptions - memory - mtl - text - transformers - ]; - testHaskellDepends = [ - base - bytestring - hspec - mtl - QuickCheck - text - ]; - description = "Core functionality for an SMTP client"; - license = lib.licenses.bsd2; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "ast-monad" = callPackage ( { mkDerivation, base }: mkDerivation { @@ -86070,82 +46212,6 @@ self: { } ) { }; - "astar-monad" = callPackage ( - { - mkDerivation, - base, - hspec, - lens, - logict, - mtl, - }: - mkDerivation { - pname = "astar-monad"; - version = "0.3.0.0"; - sha256 = "1df99k3c299nzfxbqnzkqggagf7l8p2fwa9igxy9ydg8b0rqc6xf"; - libraryHaskellDepends = [ - base - logict - mtl - ]; - testHaskellDepends = [ - base - hspec - lens - logict - mtl - ]; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "astrds" = callPackage ( - { - mkDerivation, - base, - containers, - directory, - MonadRandom, - mtl, - OpenGL, - random, - SDL, - SDL-image, - SDL-mixer, - SDL-ttf, - unix, - }: - mkDerivation { - pname = "astrds"; - version = "0.1.1"; - sha256 = "1zb265z6m1py2jxhxzrq2kb3arw2riagajhh3vs0m54rkrak6szs"; - isLibrary = false; - isExecutable = true; - enableSeparateDataOutput = true; - executableHaskellDepends = [ - base - containers - directory - MonadRandom - mtl - OpenGL - random - SDL - SDL-image - SDL-mixer - SDL-ttf - unix - ]; - description = "an incomplete 2d space game"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "astrds"; - broken = true; - } - ) { }; - "astro" = callPackage ( { mkDerivation, @@ -86183,56 +46249,6 @@ self: { } ) { }; - "astview" = callPackage ( - { - mkDerivation, - astview-utils, - base, - bytestring, - containers, - directory, - filepath, - glade, - glib, - Glob, - gtk, - gtksourceview2, - hint, - mtl, - process, - syb, - }: - mkDerivation { - pname = "astview"; - version = "0.1.4"; - sha256 = "0lv4wbblv4r0vwfynswsxzyrl6qp45byjdmg4cs760qq3jj749zl"; - isLibrary = false; - isExecutable = true; - enableSeparateDataOutput = true; - executableHaskellDepends = [ - astview-utils - base - bytestring - containers - directory - filepath - glade - glib - Glob - gtk - gtksourceview2 - hint - mtl - process - syb - ]; - description = "A GTK-based abstract syntax tree viewer for custom languages and parsers"; - license = lib.licenses.bsdOriginal; - hydraPlatforms = lib.platforms.none; - mainProgram = "astview"; - } - ) { }; - "astview-utils" = callPackage ( { mkDerivation, @@ -86289,107 +46305,6 @@ self: { } ) { }; - "async-ajax" = callPackage ( - { - mkDerivation, - async, - base, - ghcjs-ajax, - text, - }: - mkDerivation { - pname = "async-ajax"; - version = "0.2.0.0"; - sha256 = "012j2kbf4829g4xzbzc1vqb9ybhr05v4zlipvhcn4pqmfb3vgshi"; - libraryHaskellDepends = [ - async - base - ghcjs-ajax - text - ]; - description = "Crossbrowser async AJAX Bindings for GHCJS"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "async-combinators" = callPackage ( - { - mkDerivation, - async, - base, - hedgehog, - HUnit, - safe-exceptions, - tasty, - tasty-discover, - tasty-hedgehog, - tasty-hunit, - text, - unliftio-core, - }: - mkDerivation { - pname = "async-combinators"; - version = "0.0.1"; - sha256 = "0zacn4iryzxwll158dq1xcaww28hlph1jgqrf4vqyfigcvrpf4gv"; - libraryHaskellDepends = [ - async - base - safe-exceptions - text - unliftio-core - ]; - testHaskellDepends = [ - base - hedgehog - HUnit - safe-exceptions - tasty - tasty-discover - tasty-hedgehog - tasty-hunit - ]; - testToolDepends = [ tasty-discover ]; - description = "Async combinators"; - license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "async-dejafu" = callPackage ( - { - mkDerivation, - base, - concurrency, - dejafu, - exceptions, - HUnit, - hunit-dejafu, - }: - mkDerivation { - pname = "async-dejafu"; - version = "0.1.3.0"; - sha256 = "1z9ajmqni3n0iz56v1y89jji4lb6qdvqnadkwd3vk75ghm6a34yq"; - libraryHaskellDepends = [ - base - concurrency - exceptions - ]; - testHaskellDepends = [ - base - concurrency - dejafu - HUnit - hunit-dejafu - ]; - description = "Run MonadConc operations asynchronously and wait for their results"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "async-extra" = callPackage ( { mkDerivation, @@ -86467,40 +46382,6 @@ self: { } ) { }; - "async-manager" = callPackage ( - { - mkDerivation, - async, - base, - stm, - unordered-containers, - }: - mkDerivation { - pname = "async-manager"; - version = "0.1.1.0"; - sha256 = "002w3n0ykn5ga7mwz9kjvr77izqnhklq5r3aczwjikvgkik9q6ck"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - async - base - stm - unordered-containers - ]; - executableHaskellDepends = [ - async - base - stm - unordered-containers - ]; - description = "A thread manager for async"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "thread-clean-up-test"; - broken = true; - } - ) { }; - "async-pool" = callPackage ( { mkDerivation, @@ -86647,59 +46528,6 @@ self: { } ) { }; - "async-timer" = callPackage ( - { - mkDerivation, - async, - base, - containers, - criterion, - safe-exceptions, - tasty, - tasty-hunit, - unliftio, - unliftio-core, - }: - mkDerivation { - pname = "async-timer"; - version = "0.2.0.0"; - sha256 = "1q6f0ig8m1ij1yz07b36799gavppb7dkwyvlc724gaj1q72bych6"; - libraryHaskellDepends = [ - async - base - safe-exceptions - unliftio - unliftio-core - ]; - testHaskellDepends = [ - async - base - containers - criterion - tasty - tasty-hunit - ]; - description = "Provides API for timer based execution of IO actions"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "asynchronous-exceptions" = callPackage ( - { mkDerivation, base }: - mkDerivation { - pname = "asynchronous-exceptions"; - version = "1.1.0.1"; - sha256 = "0vfx2ikw61sic35n4ayy7rng6izpafksz7lh4xgkcmbg627vkm8s"; - libraryHaskellDepends = [ base ]; - description = "Distinguish between synchronous and asynchronous exceptions"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "aterm" = callPackage ( { mkDerivation, @@ -86727,41 +46555,6 @@ self: { } ) { }; - "aterm-utils" = callPackage ( - { - mkDerivation, - aterm, - base, - mtl, - transformers, - wl-pprint, - }: - mkDerivation { - pname = "aterm-utils"; - version = "0.2.0.2"; - sha256 = "0yyk2mdxrla0hwh1mn50x5mgqskkaw6i086gqqmprljr2668kkj0"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aterm - base - mtl - transformers - wl-pprint - ]; - executableHaskellDepends = [ - aterm - base - transformers - wl-pprint - ]; - description = "Utility functions for working with aterms as generated by Minitermite"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "ppaterm"; - } - ) { }; - "atl" = callPackage ( { mkDerivation, base }: mkDerivation { @@ -86881,7 +46674,6 @@ self: { ]; description = "Atlassian Connect snaplet for the Snap Framework and helper code"; license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; } ) { }; @@ -86987,99 +46779,6 @@ self: { } ) { }; - "atmos-dimensional-tf" = callPackage ( - { - mkDerivation, - atmos, - base, - dimensional-tf, - }: - mkDerivation { - pname = "atmos-dimensional-tf"; - version = "0.1.2"; - sha256 = "05g2v7ppbcvaw0dk9f0z0gb7k33c4lk2cm2ziyqahxmwsz928khm"; - libraryHaskellDepends = [ - atmos - base - dimensional-tf - ]; - description = "dimensional-tf wrapper on atmos package"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "atndapi" = callPackage ( - { - mkDerivation, - aeson, - base, - bytestring, - conduit, - data-default, - hspec, - http-conduit, - http-types, - lifted-base, - monad-control, - monad-logger, - mtl, - parsec, - QuickCheck, - resourcet, - text, - time, - transformers, - }: - mkDerivation { - pname = "atndapi"; - version = "0.1.1.0"; - sha256 = "1npyvfm9bqk6msly481rj7fypxpglajzqlkj3783vh92wdby6jqw"; - libraryHaskellDepends = [ - aeson - base - bytestring - conduit - data-default - http-conduit - http-types - lifted-base - monad-control - monad-logger - mtl - parsec - resourcet - text - time - transformers - ]; - testHaskellDepends = [ - aeson - base - bytestring - conduit - data-default - hspec - http-conduit - http-types - lifted-base - monad-control - monad-logger - mtl - parsec - QuickCheck - resourcet - text - time - transformers - ]; - description = "An interface of ATND API"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "atom" = callPackage ( { mkDerivation, @@ -87221,28 +46920,6 @@ self: { } ) { }; - "atom-msp430" = callPackage ( - { - mkDerivation, - atom, - base, - mtl, - }: - mkDerivation { - pname = "atom-msp430"; - version = "0.5.3"; - sha256 = "02h1g35f3bd3cjjhr28g63vk1mnghshq9586wa922rfl79jp6jcs"; - libraryHaskellDepends = [ - atom - base - mtl - ]; - description = "Convenience functions for using Atom with the MSP430 microcontroller family"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "atomic-counter" = callPackage ( { mkDerivation, @@ -87367,116 +47044,53 @@ self: { base stm ]; - description = "A typeclass for mutable references that have an atomic modify operation"; - license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "atomic-modify-general" = callPackage ( - { - mkDerivation, - base, - primitive, - }: - mkDerivation { - pname = "atomic-modify-general"; - version = "0.1.0.0"; - sha256 = "0xrjnd31aq5ajga5n6lq1rm7wdyxqqnmc90z0zb4zp97b6vjsa2v"; - libraryHaskellDepends = [ - base - primitive - ]; - testHaskellDepends = [ base ]; - description = "Generalizations of atomicModifyIORef"; - license = lib.licenses.bsd2; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "atomic-primops" = callPackage ( - { - mkDerivation, - base, - ghc-prim, - primitive, - }: - mkDerivation { - pname = "atomic-primops"; - version = "0.8.8"; - sha256 = "1sp7ffyybnvq9s0b73rr33wjck3ffip2v56q1l87d1r5150wwh60"; - libraryHaskellDepends = [ - base - ghc-prim - primitive - ]; - description = "A safe approach to CAS and other atomic ops in Haskell"; - license = lib.licenses.bsd3; + description = "A typeclass for mutable references that have an atomic modify operation"; + license = lib.licenses.asl20; + hydraPlatforms = lib.platforms.none; + broken = true; } ) { }; - "atomic-primops-foreign" = callPackage ( + "atomic-modify-general" = callPackage ( { mkDerivation, base, - bits-atomic, - HUnit, - test-framework, - test-framework-hunit, - time, + primitive, }: mkDerivation { - pname = "atomic-primops-foreign"; - version = "0.6.2"; - sha256 = "1pfdbrxx4s6n53lfhxghcalm8dif2r9zj45bipibvyiczz5xkkpm"; - revision = "1"; - editedCabalFile = "0663ysvvakmldp428y7y0abl68g2wflwmp27cci27scnpnnnf47x"; + pname = "atomic-modify-general"; + version = "0.1.0.0"; + sha256 = "0xrjnd31aq5ajga5n6lq1rm7wdyxqqnmc90z0zb4zp97b6vjsa2v"; libraryHaskellDepends = [ base - bits-atomic - ]; - testHaskellDepends = [ - base - bits-atomic - HUnit - test-framework - test-framework-hunit - time + primitive ]; - description = "An atomic counter implemented using the FFI"; - license = lib.licenses.bsd3; + testHaskellDepends = [ base ]; + description = "Generalizations of atomicModifyIORef"; + license = lib.licenses.bsd2; hydraPlatforms = lib.platforms.none; + broken = true; } ) { }; - "atomic-primops-vector" = callPackage ( + "atomic-primops" = callPackage ( { mkDerivation, - atomic-primops, base, + ghc-prim, primitive, - vector, }: mkDerivation { - pname = "atomic-primops-vector"; - version = "0.1.0.1"; - sha256 = "0m4mlixiz7cs4hqrh7i6dzbsj55p0qh3m16nc94819wbzcgi3vq7"; + pname = "atomic-primops"; + version = "0.8.8"; + sha256 = "1sp7ffyybnvq9s0b73rr33wjck3ffip2v56q1l87d1r5150wwh60"; libraryHaskellDepends = [ - atomic-primops base + ghc-prim primitive - vector - ]; - testHaskellDepends = [ - base - vector ]; - description = "Atomic operations on Data.Vector types"; + description = "A safe approach to CAS and other atomic ops in Haskell"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; } ) { }; @@ -87521,79 +47135,6 @@ self: { } ) { }; - "atomo" = callPackage ( - { - mkDerivation, - array, - base, - bytestring, - containers, - directory, - filepath, - hashable, - haskeline, - hint, - mtl, - parsec, - pretty, - regex-pcre, - template-haskell, - text, - time, - vector, - }: - mkDerivation { - pname = "atomo"; - version = "0.4.0.2"; - sha256 = "0hby64jd9zi518rnfk46ilipnp3x0ynkgqk2n0brf1873y88mwx8"; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - array - base - bytestring - containers - directory - filepath - hashable - hint - mtl - parsec - pretty - regex-pcre - template-haskell - text - time - vector - ]; - executableHaskellDepends = [ - array - base - bytestring - containers - directory - filepath - hashable - haskeline - hint - mtl - parsec - pretty - regex-pcre - template-haskell - text - time - vector - ]; - description = "A highly dynamic, extremely simple, very fun programming language"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "atomo"; - broken = true; - } - ) { }; - "atp" = callPackage ( { mkDerivation, @@ -87742,51 +47283,6 @@ self: { } ) { }; - "ats-format" = callPackage ( - { - mkDerivation, - ansi-wl-pprint, - base, - Cabal, - cli-setup, - directory, - filepath, - language-ats, - optparse-applicative, - process, - text, - toml-parser, - }: - mkDerivation { - pname = "ats-format"; - version = "0.2.0.36"; - sha256 = "1a7mfpqc09lfk1pp237f2wrizgm2c1indgjdi810599ns19hicd2"; - isLibrary = false; - isExecutable = true; - setupHaskellDepends = [ - base - Cabal - cli-setup - filepath - ]; - executableHaskellDepends = [ - ansi-wl-pprint - base - directory - language-ats - optparse-applicative - process - text - toml-parser - ]; - description = "A source-code formatter for ATS"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "atsfmt"; - broken = true; - } - ) { }; - "ats-pkg" = callPackage ( { mkDerivation, @@ -87891,104 +47387,6 @@ self: { } ) { }; - "ats-setup" = callPackage ( - { - mkDerivation, - base, - bytestring, - Cabal, - composition-prelude, - dependency, - directory, - filemanip, - http-client, - http-client-tls, - parallel-io, - process, - tar, - unix, - zlib, - }: - mkDerivation { - pname = "ats-setup"; - version = "0.4.0.2"; - sha256 = "13sv7wwz6m6s9x3mr4phsf62ayyn95bdpj6cv93kyzadyi3vfvd6"; - libraryHaskellDepends = [ - base - bytestring - Cabal - composition-prelude - dependency - directory - filemanip - http-client - http-client-tls - parallel-io - process - tar - unix - zlib - ]; - description = "ATS scripts for Cabal builds"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "ats-storable" = callPackage ( - { - mkDerivation, - base, - bytestring, - composition-prelude, - hspec, - storable, - text, - }: - mkDerivation { - pname = "ats-storable"; - version = "0.3.0.5"; - sha256 = "1jafhbvlndr4sv1qb0an588dha549fh3bs7iwsnpc8s2xsxzk7wb"; - libraryHaskellDepends = [ - base - bytestring - composition-prelude - text - ]; - testHaskellDepends = [ - base - hspec - ]; - testSystemDepends = [ storable ]; - description = "Marshal ATS types into Haskell"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { storable = null; }; - - "attempt" = callPackage ( - { - mkDerivation, - base, - failure, - }: - mkDerivation { - pname = "attempt"; - version = "0.4.0.1"; - sha256 = "1gvq04ds62kk88r2210mxd1fggp6vf5p8j5hci9vqkkss1hy9rxh"; - libraryHaskellDepends = [ - base - failure - ]; - description = "Concrete data type for handling extensible exceptions as failures. (deprecated)"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "attenuation" = callPackage ( { mkDerivation, @@ -88038,159 +47436,6 @@ self: { } ) { }; - "attic-schedule" = callPackage ( - { - mkDerivation, - attoparsec, - base, - control-bool, - doctest, - foldl, - protolude, - system-filepath, - text, - time, - turtle, - }: - mkDerivation { - pname = "attic-schedule"; - version = "0.2.0"; - sha256 = "1qrmdznhk744q7f7k05w45b2w5x3pmyjax5h2z3bdza6rsb67ii3"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - attoparsec - base - control-bool - foldl - protolude - system-filepath - text - time - turtle - ]; - testHaskellDepends = [ - base - doctest - ]; - description = "A script I use to run \"attic\" for my backups"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "attic-schedule"; - broken = true; - } - ) { }; - - "atto-lisp" = callPackage ( - { - mkDerivation, - attoparsec, - base, - blaze-builder, - blaze-textual, - bytestring, - containers, - deepseq, - HUnit, - test-framework, - test-framework-hunit, - text, - }: - mkDerivation { - pname = "atto-lisp"; - version = "0.2.2.3"; - sha256 = "00a7w4jysx55y5xxmgm09akvhxxa3fs68wqn6mp789bvhvdk9khd"; - revision = "2"; - editedCabalFile = "065v6vllvwvm0zpkra7bl2hpz1lnhara13965p75pzdppv8ghd6w"; - libraryHaskellDepends = [ - attoparsec - base - blaze-builder - blaze-textual - bytestring - containers - deepseq - text - ]; - testHaskellDepends = [ - attoparsec - base - bytestring - HUnit - test-framework - test-framework-hunit - text - ]; - description = "Efficient parsing and serialisation of S-Expressions"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "attomail" = callPackage ( - { - mkDerivation, - base, - bytestring, - ConfigFile, - directory, - doctest, - email-validate, - Glob, - hsemail-ns, - MissingH, - mtl, - network, - optparse-applicative, - parsec, - QuickCheck, - random, - text, - time, - transformers, - unix, - unix-time, - }: - mkDerivation { - pname = "attomail"; - version = "0.1.0.2"; - sha256 = "0yryvw8qcp0vgal4dn48xi7x42wl9b1bwfbh0chnvbi5rwnwspyr"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - bytestring - ConfigFile - directory - email-validate - hsemail-ns - MissingH - mtl - network - optparse-applicative - parsec - random - text - time - transformers - unix - unix-time - ]; - testHaskellDepends = [ - base - doctest - Glob - QuickCheck - ]; - description = "Minimal mail delivery agent (MDA) for local mail with maildir support"; - license = lib.licenses.bsd2; - hydraPlatforms = lib.platforms.none; - mainProgram = "attomail"; - broken = true; - } - ) { }; - "attoparsec_0_13_2_5" = callPackage ( { mkDerivation, @@ -88475,29 +47720,6 @@ self: { } ) { }; - "attoparsec-csv" = callPackage ( - { - mkDerivation, - attoparsec, - base, - text, - }: - mkDerivation { - pname = "attoparsec-csv"; - version = "0.1.1.0"; - sha256 = "0fbzg22shi0i92pndgnqv6v4zfxxd0bh89fbqr3giiavimml7y7p"; - libraryHaskellDepends = [ - attoparsec - base - text - ]; - description = "A parser for CSV files that uses Attoparsec"; - license = "unknown"; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "attoparsec-data" = callPackage ( { mkDerivation, @@ -88529,32 +47751,6 @@ self: { } ) { }; - "attoparsec-enumerator" = callPackage ( - { - mkDerivation, - attoparsec, - base, - bytestring, - enumerator, - text, - }: - mkDerivation { - pname = "attoparsec-enumerator"; - version = "0.3.4"; - sha256 = "127mj0v6342mzxnc73qki3k197vhwsff8qkf92gm5idyxdisg5dy"; - libraryHaskellDepends = [ - attoparsec - base - bytestring - enumerator - text - ]; - description = "Pass input from an enumerator to an Attoparsec parser"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "attoparsec-expr" = callPackage ( { mkDerivation, @@ -88797,32 +47993,6 @@ self: { } ) { }; - "attoparsec-iteratee" = callPackage ( - { - mkDerivation, - attoparsec, - base, - bytestring, - iteratee, - transformers, - }: - mkDerivation { - pname = "attoparsec-iteratee"; - version = "0.4.0"; - sha256 = "1j57xhk34ghi1b2gnzrfbswv2nab5h0z52h3wvx9w8d97bbvqp2s"; - libraryHaskellDepends = [ - attoparsec - base - bytestring - iteratee - transformers - ]; - description = "An adapter to convert attoparsec Parsers into blazing-fast Iteratees"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "attoparsec-parsec" = callPackage ( { mkDerivation, @@ -88928,57 +48098,6 @@ self: { } ) { }; - "attoparsec-text" = callPackage ( - { - mkDerivation, - array, - attoparsec, - base, - containers, - text, - }: - mkDerivation { - pname = "attoparsec-text"; - version = "0.8.5.3"; - sha256 = "1qq42lp1sah80a6lnnafi6pwl61b4w4q4jk1pbb7pg5p06mmk315"; - libraryHaskellDepends = [ - array - attoparsec - base - containers - text - ]; - description = "(deprecated)"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "attoparsec-text-enumerator" = callPackage ( - { - mkDerivation, - attoparsec-text, - base, - enumerator, - text, - }: - mkDerivation { - pname = "attoparsec-text-enumerator"; - version = "0.2.0.1"; - sha256 = "0cffcwji141js09r7avb15b08xl4s8cgk5vxyrqaq7zw40hhb1gz"; - libraryHaskellDepends = [ - attoparsec-text - base - enumerator - text - ]; - description = "(deprecated)"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "attoparsec-time" = callPackage ( { mkDerivation, @@ -89004,29 +48123,6 @@ self: { } ) { }; - "attoparsec-trans" = callPackage ( - { - mkDerivation, - attoparsec, - base, - transformers, - }: - mkDerivation { - pname = "attoparsec-trans"; - version = "0.1.1.0"; - sha256 = "0lsbl7hhirr13jmn6fc4g5443j73p4rxjgxvv967n5dsp7xrjaa7"; - libraryHaskellDepends = [ - attoparsec - base - transformers - ]; - description = "Interleaved effects for attoparsec parsers"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "attoparsec-uri" = callPackage ( { mkDerivation, @@ -89106,61 +48202,6 @@ self: { } ) { }; - "attosplit" = callPackage ( - { - mkDerivation, - attoparsec, - base, - bytestring, - }: - mkDerivation { - pname = "attosplit"; - version = "0.1.0.0"; - sha256 = "01sh8k9n9040xqx1lbn74rcf59j54n5861d9db1y5cdy7qssxyg4"; - libraryHaskellDepends = [ - attoparsec - base - bytestring - ]; - description = "Split a lazy bytestring at boundaries defined by an attoparsec parser"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "atuin" = callPackage ( - { - mkDerivation, - array, - base, - Cabal, - directory, - epic, - haskell98, - }: - mkDerivation { - pname = "atuin"; - version = "0.1.1"; - sha256 = "1wmfnvl39amyfzkvpd3gysshyf10fjjb91zibalkqbq9pbsnfzjk"; - isLibrary = false; - isExecutable = true; - enableSeparateDataOutput = true; - executableHaskellDepends = [ - array - base - Cabal - directory - epic - haskell98 - ]; - description = "Embedded Turtle language compiler in Haskell, with Epic output"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "atuin"; - } - ) { }; - "audacity" = callPackage ( { mkDerivation, @@ -89209,138 +48250,6 @@ self: { } ) { }; - "audiovisual" = callPackage ( - { - mkDerivation, - base, - boundingboxes, - colors, - deepseq, - directory, - filepath, - free, - freetype2, - hashable, - JuicyPixels, - JuicyPixels-util, - lens, - linear, - mtl, - objective, - random, - template-haskell, - transformers, - vector, - void, - WAVE, - }: - mkDerivation { - pname = "audiovisual"; - version = "0.0"; - sha256 = "0qjcsvv52l53iqyh7hkhwdsifqb943wjp1vn63qhqsrdaajazp3h"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base - boundingboxes - colors - deepseq - directory - filepath - free - freetype2 - hashable - JuicyPixels - JuicyPixels-util - lens - linear - mtl - objective - random - template-haskell - transformers - vector - void - WAVE - ]; - description = "A battery-included audiovisual framework"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "augeas" = callPackage ( - { - mkDerivation, - augeas, - base, - bytestring, - directory, - HUnit, - unix, - }: - mkDerivation { - pname = "augeas"; - version = "0.6.1"; - sha256 = "08z6l97hi6clv3b34mz9zjc5rns02jx1zx9iqdsmjl2p7hcn7rs5"; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base - bytestring - directory - unix - ]; - libraryPkgconfigDepends = [ augeas ]; - executableHaskellDepends = [ HUnit ]; - executableSystemDepends = [ augeas ]; - executablePkgconfigDepends = [ augeas ]; - description = "A Haskell FFI wrapper for the Augeas API"; - license = "LGPL"; - hydraPlatforms = lib.platforms.none; - mainProgram = "test-haskell-augeas"; - broken = true; - } - ) { inherit (pkgs) augeas; }; - - "augur" = callPackage ( - { - mkDerivation, - base, - bytestring, - classify, - containers, - directory, - filepath, - HaXml, - mtl, - process, - }: - mkDerivation { - pname = "augur"; - version = "2008.11.17"; - sha256 = "1jvbf3z9z6m40hprykxcc5xwbmwm6p5hwlyab0dimd8h2ar50xfr"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - bytestring - classify - containers - directory - filepath - HaXml - mtl - process - ]; - description = "Renaming media collections in a breeze"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "augur"; - broken = true; - } - ) { }; - "aur" = callPackage ( { mkDerivation, @@ -89384,41 +48293,6 @@ self: { } ) { }; - "aur-api" = callPackage ( - { - mkDerivation, - aeson, - base, - bytestring, - exceptions, - hspec, - http-client, - http-client-tls, - mtl, - text, - }: - mkDerivation { - pname = "aur-api"; - version = "0.1.2.1"; - sha256 = "0i6ppqf3xq5hc50wswf3raw4cwbwmjzrgz6zlamkwvm45zrdlql2"; - libraryHaskellDepends = [ - aeson - base - bytestring - exceptions - hspec - http-client - http-client-tls - mtl - text - ]; - description = "ArchLinux AUR json v5 API"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "aura" = callPackage ( { mkDerivation, @@ -89593,31 +48467,6 @@ self: { } ) { }; - "authenticate-ldap" = callPackage ( - { - mkDerivation, - base, - LDAP, - text, - transformers, - }: - mkDerivation { - pname = "authenticate-ldap"; - version = "0.0.3"; - sha256 = "1wsx43l7jl40jpzhiv2fjc1mnpsaaryrjpqaiyqsn3ahacsy4ly5"; - libraryHaskellDepends = [ - base - LDAP - text - transformers - ]; - description = "LDAP authentication for Haskell web applications"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "authenticate-oauth" = callPackage ( { mkDerivation, @@ -89663,116 +48512,6 @@ self: { } ) { }; - "authinfo-hs" = callPackage ( - { - mkDerivation, - attoparsec, - base, - network, - text, - }: - mkDerivation { - pname = "authinfo-hs"; - version = "0.1.0.0"; - sha256 = "1jv0y4y2ig8dx95xw3zbxc1h9mv3wi3r8xqx00llmf2qs6wgdlp5"; - libraryHaskellDepends = [ - attoparsec - base - network - text - ]; - description = "Password querying for .authinfo"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "authoring" = callPackage ( - { - mkDerivation, - ansi-wl-pprint, - base, - citation-resolve, - containers, - data-default, - haskell-src-meta, - HaTeX, - lens, - mtl, - parsers, - safe, - template-haskell, - text, - transformers, - trifecta, - }: - mkDerivation { - pname = "authoring"; - version = "0.3.4"; - sha256 = "0jfxgrbkcqpfcvg1jk7ysd74bq7xjlvzqamnr3qg4ib9zg6yw0k4"; - libraryHaskellDepends = [ - ansi-wl-pprint - base - citation-resolve - containers - data-default - haskell-src-meta - HaTeX - lens - mtl - parsers - safe - template-haskell - text - transformers - trifecta - ]; - description = "A library for writing papers"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "auto" = callPackage ( - { - mkDerivation, - base, - base-orphans, - bytestring, - cereal, - containers, - deepseq, - MonadRandom, - profunctors, - random, - semigroups, - transformers, - }: - mkDerivation { - pname = "auto"; - version = "0.4.3.1"; - sha256 = "0h9vrljhq9nlmi2j9wszpay0yli4n4r993mwamg69qqppcf6vqn6"; - libraryHaskellDepends = [ - base - base-orphans - bytestring - cereal - containers - deepseq - MonadRandom - profunctors - random - semigroups - transformers - ]; - description = "Denotative, locally stateful programming DSL & platform"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "auto-lift-classes" = callPackage ( { mkDerivation, @@ -90232,99 +48971,6 @@ self: { } ) { }; - "autom" = callPackage ( - { - mkDerivation, - base, - bytestring, - colour, - ghc-prim, - gloss, - JuicyPixels, - random, - vector, - }: - mkDerivation { - pname = "autom"; - version = "0.1.0.3"; - sha256 = "1gy6ccv70nzmyhpdyvnlfmvfapmd90pzaa3j5r6n515537jv5pa0"; - libraryHaskellDepends = [ - base - bytestring - colour - ghc-prim - gloss - JuicyPixels - random - vector - ]; - description = "Generates and displays patterns from next nearest neighbors cellular automata"; - license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "automata" = callPackage ( - { - mkDerivation, - base, - bytestring, - containers, - contiguous, - enum-types, - HUnit, - leancheck, - leancheck-enum-instances, - primitive, - primitive-containers, - QuickCheck, - quickcheck-classes, - quickcheck-enum-instances, - semirings, - tasty, - tasty-hunit, - tasty-leancheck, - tasty-quickcheck, - transformers, - }: - mkDerivation { - pname = "automata"; - version = "0.1.0.0"; - sha256 = "1xb0rqnkykazg7m50dsxa5pxfd2096wmqbwli01j7wxw8lrqcy9i"; - libraryHaskellDepends = [ - base - bytestring - containers - contiguous - primitive - primitive-containers - semirings - transformers - ]; - testHaskellDepends = [ - base - containers - enum-types - HUnit - leancheck - leancheck-enum-instances - primitive - QuickCheck - quickcheck-classes - quickcheck-enum-instances - tasty - tasty-hunit - tasty-leancheck - tasty-quickcheck - ]; - description = "automata"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "automaton" = callPackage ( { mkDerivation, @@ -90463,167 +49109,6 @@ self: { } ) { }; - "autonix-deps" = callPackage ( - { - mkDerivation, - aeson, - aeson-pretty, - base, - bytestring, - conduit, - containers, - errors, - filepath, - lens, - libarchive-conduit, - mtl, - optparse-applicative, - process, - regex-tdfa, - resourcet, - semigroups, - text, - transformers, - xml, - }: - mkDerivation { - pname = "autonix-deps"; - version = "0.3.0.0"; - sha256 = "0mp2v6wdm4nlagg3z9xmxd9dfkchazgvbgdphm1nfqzkg8w7ralv"; - revision = "1"; - editedCabalFile = "0dv6l9f31djmpgchg78xvr88b7gd64bmi6ir9fq36xwq2ka4jmsh"; - libraryHaskellDepends = [ - aeson - aeson-pretty - base - bytestring - conduit - containers - errors - filepath - lens - libarchive-conduit - mtl - optparse-applicative - process - regex-tdfa - resourcet - semigroups - text - transformers - xml - ]; - description = "Library for Nix expression dependency generation"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "autonix-deps-kf5" = callPackage ( - { - mkDerivation, - autonix-deps, - base, - bytestring, - conduit, - containers, - filepath, - lens, - mtl, - text, - transformers, - }: - mkDerivation { - pname = "autonix-deps-kf5"; - version = "0.3.0.0"; - sha256 = "0njmgx2x6018ca1r2xvbi3pq0rigqm4fjkk33q5kzacvmv5ni461"; - revision = "1"; - editedCabalFile = "0qwm68prygvy6bmdwb13jrhkhccdnvf8yv44l2fbhzxl1avgz6x5"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - autonix-deps - base - bytestring - conduit - containers - filepath - lens - mtl - text - transformers - ]; - executableHaskellDepends = [ - autonix-deps - base - containers - lens - mtl - ]; - description = "Generate dependencies for KDE 5 Nix expressions"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "kf5-deps"; - } - ) { }; - - "autopack" = callPackage ( - { - mkDerivation, - base, - Cabal, - dir-traverse, - filepath, - }: - mkDerivation { - pname = "autopack"; - version = "0.0.0.0"; - sha256 = "1z1w6bvsfhnia2dxihcay6a9va2ik1bg805zkfb0vn4vcxn76dcc"; - libraryHaskellDepends = [ - base - Cabal - dir-traverse - filepath - ]; - description = "Custom Setup to automate package modules discovery"; - license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "autoproc" = callPackage ( - { - mkDerivation, - base, - directory, - mtl, - process, - unix, - }: - mkDerivation { - pname = "autoproc"; - version = "0.2.1"; - sha256 = "13z9c4j7f8smc441qawl7brljmgsgmfmp4dzq7914f7ycg24ck6g"; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base - directory - mtl - process - unix - ]; - description = "EDSL for Procmail scripts"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "autoproc"; - broken = true; - } - ) { }; - "avahi" = callPackage ( { mkDerivation, @@ -90656,32 +49141,6 @@ self: { } ) { }; - "avatar-generator" = callPackage ( - { - mkDerivation, - base, - JuicyPixels, - random, - }: - mkDerivation { - pname = "avatar-generator"; - version = "0.1.0.1"; - sha256 = "171n6zfs69ai7njrj7xrjdm78ljnfv0437gjqj8f06p71i9w51zz"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - JuicyPixels - random - ]; - description = "A simple random avatar icon generator"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "avatar-generator"; - broken = true; - } - ) { }; - "average" = callPackage ( { mkDerivation, @@ -90803,144 +49262,7 @@ self: { description = "Server-side implementation of the Avers storage model"; license = lib.licenses.gpl3Only; hydraPlatforms = lib.platforms.none; - } - ) { }; - - "avers-api" = callPackage ( - { - mkDerivation, - aeson, - avers, - base, - bytestring, - cookie, - http-api-data, - servant, - text, - time, - vector, - }: - mkDerivation { - pname = "avers-api"; - version = "0.1.0"; - sha256 = "0gjs5msyhd23m8kij3j8r3chy875rcqjwi938124kb6idybna5sw"; - libraryHaskellDepends = [ - aeson - avers - base - bytestring - cookie - http-api-data - servant - text - time - vector - ]; - description = "Types describing the core and extended Avers APIs"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "avers-api-docs" = callPackage ( - { - mkDerivation, - aeson, - avers, - avers-api, - base, - cookie, - lens, - servant, - servant-swagger, - swagger2, - text, - unordered-containers, - }: - mkDerivation { - pname = "avers-api-docs"; - version = "0.0.18.0"; - sha256 = "18gwbqh1ml76l3asmi98vfh3ypfxjw1b6drk4lifjbnrry8g5a9q"; - revision = "1"; - editedCabalFile = "04j51gdx19bi3pcqj4dh70xw7fjjimvps75mihf8aq5ixmyxxbr3"; - libraryHaskellDepends = [ - aeson - avers - avers-api - base - cookie - lens - servant - servant-swagger - swagger2 - text - unordered-containers - ]; - description = "Swagger documentation for the Avers API"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "avers-server" = callPackage ( - { - mkDerivation, - aeson, - avers, - avers-api, - base, - base64-bytestring, - bytestring, - bytestring-conversion, - containers, - cookie, - cryptonite, - http-types, - memory, - mtl, - resource-pool, - servant, - servant-server, - stm, - text, - time, - transformers, - wai, - wai-websockets, - websockets, - }: - mkDerivation { - pname = "avers-server"; - version = "0.1.0.1"; - sha256 = "13jic248m2307r84acv4b4xlh7pvx4kxm6gp0nhvz1ds0bbrdkdy"; - libraryHaskellDepends = [ - aeson - avers - avers-api - base - base64-bytestring - bytestring - bytestring-conversion - containers - cookie - cryptonite - http-types - memory - mtl - resource-pool - servant - servant-server - stm - text - time - transformers - wai - wai-websockets - websockets - ]; - description = "Server implementation of the Avers API"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; + broken = true; } ) { }; @@ -91127,59 +49449,6 @@ self: { } ) { inherit (pkgs) libavif; }; - "avl-static" = callPackage ( - { - mkDerivation, - base, - QuickCheck, - test-framework, - test-framework-quickcheck2, - }: - mkDerivation { - pname = "avl-static"; - version = "0.1.0.0"; - sha256 = "13rl5wrpmbb4c0zsaymivi4d9qg2wl4lfw4nvkd81naqm3vskc10"; - libraryHaskellDepends = [ base ]; - testHaskellDepends = [ - base - QuickCheck - test-framework - test-framework-quickcheck2 - ]; - description = "A compile-time balanced AVL tree"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "avr-shake" = callPackage ( - { - mkDerivation, - base, - dependent-sum, - mtl, - process, - shake, - }: - mkDerivation { - pname = "avr-shake"; - version = "0.0.1.2"; - sha256 = "1k2nw0ibxbr8dhw9css6vryqd8p5klfvk5vxz6h9w61z8y32f430"; - libraryHaskellDepends = [ - base - dependent-sum - mtl - process - shake - ]; - description = "AVR Crosspack actions for shake build systems"; - license = lib.licenses.publicDomain; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "avro" = callPackage ( { mkDerivation, @@ -91322,230 +49591,6 @@ self: { } ) { }; - "avro-piper" = callPackage ( - { - mkDerivation, - aeson, - avro, - base, - bytestring, - conduit, - conduit-combinators, - conduit-extra, - hedgehog, - hspec, - hw-hspec-hedgehog, - hw-kafka-avro, - mtl, - optparse-applicative, - scientific, - stringsearch, - text, - unordered-containers, - }: - mkDerivation { - pname = "avro-piper"; - version = "1.0.3"; - sha256 = "1vi0mgpqpr74ankl8418npklyfxacxg001vppps22p2da97s3pk1"; - revision = "1"; - editedCabalFile = "1405kfnndnh6w4hslahg74rdhk8jmh48j64ps7mval3py8cl5qiv"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson - avro - base - bytestring - conduit - conduit-combinators - conduit-extra - hw-kafka-avro - mtl - optparse-applicative - scientific - stringsearch - text - unordered-containers - ]; - executableHaskellDepends = [ - aeson - avro - base - bytestring - conduit - conduit-combinators - conduit-extra - hw-kafka-avro - mtl - optparse-applicative - scientific - stringsearch - text - unordered-containers - ]; - testHaskellDepends = [ - aeson - avro - base - bytestring - conduit - conduit-combinators - conduit-extra - hedgehog - hspec - hw-hspec-hedgehog - hw-kafka-avro - mtl - optparse-applicative - scientific - stringsearch - text - unordered-containers - ]; - description = "Tool for decoding avro"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "avro-decode"; - broken = true; - } - ) { }; - - "avwx" = callPackage ( - { - mkDerivation, - attoparsec, - base, - HTTP, - lens, - optparse-applicative, - parsers, - pretty-show, - text, - }: - mkDerivation { - pname = "avwx"; - version = "0.3.0.3"; - sha256 = "1yvyyvfgga5gpf6bw5wkaxzwqvvvlzbqlq217h454gzlsm8vlv52"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - attoparsec - base - HTTP - lens - parsers - text - ]; - executableHaskellDepends = [ - base - optparse-applicative - pretty-show - text - ]; - testHaskellDepends = [ - attoparsec - base - lens - pretty-show - text - ]; - description = "Parse aviation weather reports"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - mainProgram = "metar"; - broken = true; - } - ) { }; - - "awesome-prelude" = callPackage ( - { mkDerivation, base }: - mkDerivation { - pname = "awesome-prelude"; - version = "0.1.0.0"; - sha256 = "0mvfirb41jnjvq4mpky0xpdrh238hjwslfqg82ksnam001sxnpng"; - libraryHaskellDepends = [ base ]; - description = "A prelude which I can be happy with. Based on base-prelude."; - license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "awesomium" = callPackage ( - { - mkDerivation, - aeson, - attoparsec, - awesomium-raw, - base, - containers, - text, - vector, - }: - mkDerivation { - pname = "awesomium"; - version = "0.1.0.0"; - sha256 = "0qd89nlw4rqdl8iya49rldyn5a36d64slcnw5pfh5c5aajh27aq2"; - libraryHaskellDepends = [ - aeson - attoparsec - awesomium-raw - base - containers - text - vector - ]; - description = "High-level Awesomium bindings"; - license = lib.licenses.lgpl3Only; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "awesomium-glut" = callPackage ( - { - mkDerivation, - awesomium, - awesomium-raw, - base, - GLUT, - }: - mkDerivation { - pname = "awesomium-glut"; - version = "0.1.0.0"; - sha256 = "175hgqix2j26579g0rrryl86w7qvla95nvf4lwfxsxxwqgcq3zpd"; - libraryHaskellDepends = [ - awesomium - awesomium-raw - base - GLUT - ]; - description = "Utilities for using Awesomium with GLUT"; - license = lib.licenses.lgpl3Only; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "awesomium-raw" = callPackage ( - { - mkDerivation, - awesomium, - base, - c2hs, - }: - mkDerivation { - pname = "awesomium-raw"; - version = "0.1.0.0"; - sha256 = "0djilsrgb8y84ssslwawhw6lky7bqspz31qwjy9lkxywi5hwxnyb"; - libraryHaskellDepends = [ base ]; - librarySystemDepends = [ awesomium ]; - libraryToolDepends = [ c2hs ]; - description = "Low-level Awesomium bindings"; - license = lib.licenses.lgpl3Only; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { awesomium = null; }; - "aws" = callPackage ( { mkDerivation, @@ -91637,993 +49682,230 @@ self: { resourcet safe scientific - tagged - text - time - transformers - unordered-containers - utf8-string - vector - xml-conduit - ]; - testHaskellDepends = [ - aeson - base - bytestring - conduit - errors - http-client - http-client-tls - http-types - lifted-base - monad-control - mtl - QuickCheck - quickcheck-instances - resourcet - tagged - tasty - tasty-hunit - tasty-quickcheck - text - time - transformers - transformers-base - ]; - description = "Amazon Web Services (AWS) for Haskell"; - license = lib.licenses.bsd3; - } - ) { }; - - "aws-academy-grade-exporter" = callPackage ( - { - mkDerivation, - aeson, - base, - bytestring, - cassava, - optparse-applicative, - postgresql-simple, - req, - text, - vector, - }: - mkDerivation { - pname = "aws-academy-grade-exporter"; - version = "0.1.0.0"; - sha256 = "1wh0sz2x4kfh97yi3811r3vg2qf6i6zp2hyifzz1jy1nra93b6av"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - aeson - base - bytestring - cassava - optparse-applicative - postgresql-simple - req - text - vector - ]; - description = "Export grades from AWS Academy to different formats"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - mainProgram = "aws-academy-grade-exporter"; - broken = true; - } - ) { }; - - "aws-arn" = callPackage ( - { - mkDerivation, - base, - deriving-compat, - hashable, - microlens-pro, - tagged, - tasty, - tasty-discover, - tasty-hunit, - text, - }: - mkDerivation { - pname = "aws-arn"; - version = "0.3.3.0"; - sha256 = "0zwnqmzibgvrlak2as9z5kjh54zq6lqpv5qy1k2jbdjmj4g6sn8q"; - revision = "1"; - editedCabalFile = "0yjvdncz48k5gym4lh90aag34qr3aj9bd3dalg7w0jjxrjyr45s7"; - libraryHaskellDepends = [ - base - deriving-compat - hashable - microlens-pro - tagged - text - ]; - testHaskellDepends = [ - base - deriving-compat - microlens-pro - tagged - tasty - tasty-hunit - text - ]; - testToolDepends = [ tasty-discover ]; - description = "Types and optics for manipulating Amazon Resource Names (ARNs)"; - license = lib.licenses.bsd3; - } - ) { }; - - "aws-cloudfront-signed-cookies" = callPackage ( - { - mkDerivation, - aeson, - aeson-pretty, - asn1-encoding, - asn1-types, - base, - base64-bytestring, - bytestring, - cookie, - crypton, - hedgehog, - lens, - lens-aeson, - neat-interpolation, - optparse-applicative, - pem, - text, - time, - vector, - }: - mkDerivation { - pname = "aws-cloudfront-signed-cookies"; - version = "0.2.0.13"; - sha256 = "0q33hlsmmmj2ph4b82lnazcjl5h0qp7q8jgb8xnypm0a961q6six"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson - aeson-pretty - asn1-encoding - asn1-types - base - base64-bytestring - bytestring - cookie - crypton - lens - lens-aeson - optparse-applicative - pem - text - time - vector - ]; - executableHaskellDepends = [ base ]; - testHaskellDepends = [ - base - hedgehog - neat-interpolation - ]; - description = "Generate signed cookies for AWS CloudFront"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - mainProgram = "aws-cloudfront-signed-cookies"; - broken = true; - } - ) { }; - - "aws-cloudfront-signer" = callPackage ( - { - mkDerivation, - asn1-encoding, - asn1-types, - base, - base64-bytestring, - bytestring, - crypto-pubkey-types, - RSA, - time, - }: - mkDerivation { - pname = "aws-cloudfront-signer"; - version = "1.1.0.3"; - sha256 = "10fn5bviqrhbrsggm20mx2ykxg2labfl8wadipdpjvp0v1d156iq"; - libraryHaskellDepends = [ - asn1-encoding - asn1-types - base - base64-bytestring - bytestring - crypto-pubkey-types - RSA - time - ]; - description = "For signing AWS CloudFront HTTP URL requests"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "aws-configuration-tools" = callPackage ( - { - mkDerivation, - aws, - aws-general, - aws-kinesis, - base, - base-unicode-symbols, - bytestring, - configuration-tools, - mtl, - text, - transformers, - }: - mkDerivation { - pname = "aws-configuration-tools"; - version = "0.1.0.0"; - sha256 = "0xqwhd15ijwf6h26hb1nl16813b1rfh1nx6qipslz6pw857vv53b"; - revision = "2"; - editedCabalFile = "1sckxd2n5zyv9gshn7czlr2vpwccm8g7anrxh8zfpysldynaqvjk"; - libraryHaskellDepends = [ - aws - aws-general - aws-kinesis - base - base-unicode-symbols - bytestring - configuration-tools - mtl - text - transformers - ]; - description = "Configuration types, parsers & renderers for AWS services"; - license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "aws-dynamodb-conduit" = callPackage ( - { - mkDerivation, - aeson, - attoparsec-trans, - aws, - base, - bytestring, - conduit, - containers, - http-conduit, - http-types, - json-togo, - resourcet, - text, - transformers, - }: - mkDerivation { - pname = "aws-dynamodb-conduit"; - version = "0.1.0.6"; - sha256 = "15svx7c8nld8bgwqwy5mwkbniz4c1ifw2rw427gwk7y2py1hq38p"; - libraryHaskellDepends = [ - aeson - attoparsec-trans - aws - base - bytestring - conduit - containers - http-conduit - http-types - json-togo - resourcet - text - transformers - ]; - description = "Conduit-based interface for AWS DynamoDB"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "aws-dynamodb-streams" = callPackage ( - { - mkDerivation, - aeson, - attoparsec, - aws, - aws-general, - base, - base-unicode-symbols, - base16-bytestring, - base64-bytestring, - byteable, - bytestring, - case-insensitive, - conduit, - conduit-extra, - containers, - cryptohash, - http-conduit, - http-types, - mtl, - old-locale, - parsers, - profunctors, - resourcet, - scientific, - text, - time, - }: - mkDerivation { - pname = "aws-dynamodb-streams"; - version = "0.1.0.0"; - sha256 = "0yqmijls71jyvic2saabj3kwnpaxmlj6mf4krcdli3626ra7w4r2"; - libraryHaskellDepends = [ - aeson - attoparsec - aws - aws-general - base - base-unicode-symbols - base16-bytestring - base64-bytestring - byteable - bytestring - case-insensitive - conduit - conduit-extra - containers - cryptohash - http-conduit - http-types - mtl - old-locale - parsers - profunctors - resourcet - scientific - text - time - ]; - description = "Haskell bindings for Amazon DynamoDB Streams"; - license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "aws-easy" = callPackage ( - { - mkDerivation, - amazonka, - amazonka-dynamodb, - amazonka-s3, - base, - bytestring, - lens, - monad-control, - resourcet, - split, - template-haskell, - text, - unordered-containers, - }: - mkDerivation { - pname = "aws-easy"; - version = "0.1.0.3"; - sha256 = "1k69bk6d09w803zcqf7g7yf6njl4rv5nlhdvlv8bv0ch5j5d1772"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - amazonka - base - bytestring - lens - monad-control - resourcet - template-haskell - ]; - executableHaskellDepends = [ - amazonka - amazonka-dynamodb - amazonka-s3 - base - lens - split - text - unordered-containers - ]; - description = "Helper function and types for working with amazonka"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - mainProgram = "aws-easy-demo"; - broken = true; - } - ) { }; - - "aws-ec2" = callPackage ( - { - mkDerivation, - aeson, - aws, - base, - base16-bytestring, - base64-bytestring, - blaze-builder, - blaze-markup, - byteable, - bytestring, - conduit-extra, - containers, - cryptohash, - exceptions, - http-conduit, - http-types, - iproute, - mtl, - optparse-applicative, - resourcet, - scientific, - template-haskell, - text, - time, - unordered-containers, - vector, - xml-conduit, - yaml, - }: - mkDerivation { - pname = "aws-ec2"; - version = "0.3.7"; - sha256 = "1pg3f8v2zdx83raw54rn0bkb2h3bmksgrxb35pjg44rqjxdj82zk"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson - aws - base - base16-bytestring - base64-bytestring - blaze-builder - blaze-markup - byteable - bytestring - conduit-extra - containers - cryptohash - exceptions - http-conduit - http-types - iproute - mtl - resourcet - scientific - template-haskell - text - time - unordered-containers - vector - xml-conduit - ]; - executableHaskellDepends = [ - aeson - aws - base - bytestring - containers - optparse-applicative - text - unordered-containers - vector - yaml - ]; - description = "AWS EC2/VPC, ELB and CloudWatch client library for Haskell"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "aws-ec2-knownhosts" = callPackage ( - { - mkDerivation, - aeson, - async, - attoparsec, - base, - bytestring, - directory, - filepath, - io-streams, - process, - system-filepath, - text, - text-format, - turtle, - }: - mkDerivation { - pname = "aws-ec2-knownhosts"; - version = "0.1.0.0"; - sha256 = "000bwhsxvsfdz6vm5rkil34hx7d4yv8f0zwfjnxfn0xcaxxa9r50"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson - async - attoparsec - base - bytestring - directory - filepath - io-streams - process - text - text-format - ]; - executableHaskellDepends = [ - aeson - base - io-streams - system-filepath - turtle - ]; - description = "Capture and manage AWS EC2 known_host pubkeys"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "aws-elastic-transcoder" = callPackage ( - { - mkDerivation, - aeson, - aws, - aws-sign4, - base, - bytestring, - Cabal, - conduit, - containers, - http-conduit, - http-types, - QuickCheck, - regex-compat, - safe, - text, - time, - transformers, - }: - mkDerivation { - pname = "aws-elastic-transcoder"; - version = "0.2.0.2"; - sha256 = "02dygqqyal6s3ibjvgxng4vspld3c6mrgrwdhig8lfri2zdpqsw9"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson - aws - aws-sign4 - base - bytestring - conduit - containers - http-conduit - http-types - QuickCheck - regex-compat - safe - text - time - transformers - ]; - testHaskellDepends = [ - aeson - base - Cabal - containers - QuickCheck - regex-compat - safe - text - ]; - description = "Haskell suite for the Elastic Transcoder service"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "aws-general" = callPackage ( - { - mkDerivation, - aeson, - attoparsec, - aws, - base, - base16-bytestring, - blaze-builder, - byteable, - bytestring, - case-insensitive, - charset, - cryptohash, - deepseq, - directory, - either, - errors, - hashable, - http-types, - parsers, - QuickCheck, - quickcheck-instances, - tagged, - tasty, - tasty-quickcheck, - text, - time, - transformers, - }: - mkDerivation { - pname = "aws-general"; - version = "0.2.2"; - sha256 = "08sy37w162zqd6dqi8kkg0782nv00jsp48bnrmhwhmkhnd2arfrj"; - libraryHaskellDepends = [ - aeson - attoparsec - base - base16-bytestring - blaze-builder - byteable - bytestring - case-insensitive - cryptohash - deepseq - hashable - http-types - parsers - QuickCheck - quickcheck-instances - text - time - transformers - ]; - testHaskellDepends = [ - attoparsec - aws - base - bytestring - case-insensitive - charset - directory - either - errors - http-types - parsers - QuickCheck - quickcheck-instances - tagged - tasty - tasty-quickcheck - text - time - transformers - ]; - description = "Bindings for Amazon Web Services (AWS) General Reference"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "aws-kinesis" = callPackage ( - { - mkDerivation, - aeson, - aws, - aws-general, - base, - base64-bytestring, - blaze-builder, - bytestring, - conduit, - conduit-extra, - deepseq, - errors, - http-conduit, - http-types, - mtl, - parsers, - QuickCheck, - quickcheck-instances, - resourcet, - tagged, - tasty, - tasty-quickcheck, - text, - time, - transformers, - }: - mkDerivation { - pname = "aws-kinesis"; - version = "0.1.5"; - sha256 = "0npiff5zrcs552y8lq3q6fgnwffqy11dvgs3yaygy0m99mgiaaiz"; - libraryHaskellDepends = [ - aeson - aws - aws-general - base - base64-bytestring - blaze-builder - bytestring - conduit - conduit-extra - deepseq - http-conduit - http-types - parsers - QuickCheck - quickcheck-instances - resourcet + tagged text time transformers + unordered-containers + utf8-string + vector + xml-conduit ]; testHaskellDepends = [ aeson - aws - aws-general base bytestring + conduit errors + http-client + http-client-tls + http-types + lifted-base + monad-control mtl QuickCheck + quickcheck-instances + resourcet tagged tasty + tasty-hunit tasty-quickcheck text + time transformers + transformers-base ]; - description = "Bindings for Amazon Kinesis"; - license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; + description = "Amazon Web Services (AWS) for Haskell"; + license = lib.licenses.bsd3; } ) { }; - "aws-kinesis-client" = callPackage ( + "aws-academy-grade-exporter" = callPackage ( { mkDerivation, aeson, - aws, - aws-configuration-tools, - aws-general, - aws-kinesis, base, - base-unicode-symbols, bytestring, - conduit, - configuration-tools, - containers, - data-carousel, - enclosed-exceptions, - http-conduit, - kan-extensions, - lens, - lens-action, - lifted-async, - lifted-base, - monad-control, - mtl, - nats, + cassava, optparse-applicative, - random, - resourcet, - stm, - stm-chans, - stm-queue-extras, + postgresql-simple, + req, text, - transformers, - unordered-containers, + vector, }: mkDerivation { - pname = "aws-kinesis-client"; - version = "0.4.0.2"; - sha256 = "1vygs2qdnwjw8pygbsncc22cq9294hmlbzi2fysi3agva2qxzmwx"; - revision = "1"; - editedCabalFile = "1wyj7afcrpmf30qql4i1lp7mjlbw1li6khgfa9pmvv9wkzqmbl2b"; - isLibrary = true; + pname = "aws-academy-grade-exporter"; + version = "0.1.0.0"; + sha256 = "1wh0sz2x4kfh97yi3811r3vg2qf6i6zp2hyifzz1jy1nra93b6av"; + isLibrary = false; isExecutable = true; - libraryHaskellDepends = [ - aeson - aws - aws-kinesis - base - base-unicode-symbols - conduit - containers - data-carousel - enclosed-exceptions - http-conduit - kan-extensions - lens - lens-action - lifted-async - lifted-base - monad-control - mtl - nats - random - resourcet - stm - stm-chans - stm-queue-extras - text - transformers - unordered-containers - ]; executableHaskellDepends = [ aeson - aws - aws-configuration-tools - aws-general - aws-kinesis base - base-unicode-symbols bytestring - conduit - configuration-tools - http-conduit - kan-extensions - lens - lifted-async - lifted-base - monad-control - mtl + cassava optparse-applicative + postgresql-simple + req text - transformers + vector ]; - description = "A producer & consumer client library for AWS Kinesis"; - license = lib.licenses.asl20; + description = "Export grades from AWS Academy to different formats"; + license = lib.licenses.mit; hydraPlatforms = lib.platforms.none; - mainProgram = "kinesis-cli"; + mainProgram = "aws-academy-grade-exporter"; + broken = true; } ) { }; - "aws-kinesis-reshard" = callPackage ( + "aws-arn" = callPackage ( { mkDerivation, - aws, - aws-general, - aws-kinesis, - aws-sdk, base, - base-unicode-symbols, + deriving-compat, + hashable, + microlens-pro, + tagged, + tasty, + tasty-discover, + tasty-hunit, + text, + }: + mkDerivation { + pname = "aws-arn"; + version = "0.3.3.0"; + sha256 = "0zwnqmzibgvrlak2as9z5kjh54zq6lqpv5qy1k2jbdjmj4g6sn8q"; + revision = "1"; + editedCabalFile = "0yjvdncz48k5gym4lh90aag34qr3aj9bd3dalg7w0jjxrjyr45s7"; + libraryHaskellDepends = [ + base + deriving-compat + hashable + microlens-pro + tagged + text + ]; + testHaskellDepends = [ + base + deriving-compat + microlens-pro + tagged + tasty + tasty-hunit + text + ]; + testToolDepends = [ tasty-discover ]; + description = "Types and optics for manipulating Amazon Resource Names (ARNs)"; + license = lib.licenses.bsd3; + } + ) { }; + + "aws-cloudfront-signed-cookies" = callPackage ( + { + mkDerivation, + aeson, + aeson-pretty, + asn1-encoding, + asn1-types, + base, + base64-bytestring, bytestring, - conduit, - either, - hoist-error, + cookie, + crypton, + hedgehog, lens, - lens-action, - lifted-async, - lifted-base, - monad-control, - mtl, + lens-aeson, + neat-interpolation, optparse-applicative, - resourcet, + pem, text, time, - transformers, + vector, }: mkDerivation { - pname = "aws-kinesis-reshard"; - version = "0.1.0.1"; - sha256 = "1v7i39sd6rizrrgxpqp3pnc45sry4glkb7yi0jx8qcxf2d8bklnn"; + pname = "aws-cloudfront-signed-cookies"; + version = "0.2.0.13"; + sha256 = "0q33hlsmmmj2ph4b82lnazcjl5h0qp7q8jgb8xnypm0a961q6six"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ - aws - aws-general - aws-kinesis - aws-sdk + aeson + aeson-pretty + asn1-encoding + asn1-types base - base-unicode-symbols + base64-bytestring bytestring - conduit - hoist-error + cookie + crypton lens - lens-action - lifted-async - lifted-base - monad-control - mtl + lens-aeson optparse-applicative - resourcet + pem text time - transformers + vector ]; - executableHaskellDepends = [ - aws - aws-general - aws-kinesis - aws-sdk + executableHaskellDepends = [ base ]; + testHaskellDepends = [ base - base-unicode-symbols - conduit - either - hoist-error - lens - lens-action - lifted-async - lifted-base - monad-control - mtl - optparse-applicative - resourcet - text - time - transformers + hedgehog + neat-interpolation ]; - description = "Reshard AWS Kinesis streams in response to Cloud Watch metrics"; - license = lib.licenses.asl20; + description = "Generate signed cookies for AWS CloudFront"; + license = lib.licenses.mit; hydraPlatforms = lib.platforms.none; - mainProgram = "kinesis-reshard"; + mainProgram = "aws-cloudfront-signed-cookies"; + broken = true; } ) { }; - "aws-lambda" = callPackage ( + "aws-easy" = callPackage ( { mkDerivation, - aeson, - aws-general, + amazonka, + amazonka-dynamodb, + amazonka-s3, base, - base-unicode-symbols, bytestring, - containers, - exceptions, - filepath, - http-client, - http-types, lens, - lens-action, - lens-aeson, - mtl, - old-locale, + monad-control, + resourcet, + split, + template-haskell, text, - time, - wreq, - zip-archive, + unordered-containers, }: mkDerivation { - pname = "aws-lambda"; - version = "0.1.0.1"; - sha256 = "1dy9q86yvrydw7h1l1n4ciai400w7czc26mizzfi4r369mqyan89"; + pname = "aws-easy"; + version = "0.1.0.3"; + sha256 = "1k69bk6d09w803zcqf7g7yf6njl4rv5nlhdvlv8bv0ch5j5d1772"; + isLibrary = true; + isExecutable = true; libraryHaskellDepends = [ - aeson - aws-general + amazonka base - base-unicode-symbols bytestring - containers - exceptions - filepath - http-client - http-types lens - lens-action - lens-aeson - mtl - old-locale + monad-control + resourcet + template-haskell + ]; + executableHaskellDepends = [ + amazonka + amazonka-dynamodb + amazonka-s3 + base + lens + split text - time - wreq - zip-archive + unordered-containers ]; - description = "Haskell bindings for AWS Lambda"; - license = lib.licenses.asl20; + description = "Helper function and types for working with amazonka"; + license = lib.licenses.mit; hydraPlatforms = lib.platforms.none; + mainProgram = "aws-easy-demo"; + broken = true; } ) { }; @@ -92827,365 +50109,6 @@ self: { } ) { }; - "aws-mfa-credentials" = callPackage ( - { - mkDerivation, - amazonka, - amazonka-core, - amazonka-sts, - base, - exceptions, - filelock, - filepath, - freer-effects, - ini, - lens, - optparse-applicative, - optparse-text, - process, - text, - time, - unordered-containers, - }: - mkDerivation { - pname = "aws-mfa-credentials"; - version = "0.1.0.0"; - sha256 = "10dq62h3xkm4wi1wsrrqkpjk22p86csn2h08z9x0nm7gcj857rr0"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - amazonka - amazonka-core - amazonka-sts - base - exceptions - filelock - filepath - freer-effects - ini - lens - optparse-applicative - optparse-text - process - text - time - unordered-containers - ]; - description = "Keep your AWS credentials file up to date with MFA-carrying credentials"; - license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; - mainProgram = "aws-mfa-credentials"; - } - ) { }; - - "aws-performance-tests" = callPackage ( - { - mkDerivation, - aeson, - async, - aws, - base, - bytestring, - configuration-tools, - containers, - dlist, - errors, - http-client, - lens, - lifted-base, - monad-control, - mtl, - optparse-applicative, - resourcet, - statistics, - text, - time, - transformers, - vector, - }: - mkDerivation { - pname = "aws-performance-tests"; - version = "0.1.1"; - sha256 = "1m9najkh21ww4xmddad8ksnfa3if8q955q1vf3m48f52r2dl81hw"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson - aws - base - errors - lifted-base - monad-control - mtl - text - transformers - ]; - executableHaskellDepends = [ - async - aws - base - bytestring - configuration-tools - containers - dlist - errors - http-client - lens - monad-control - optparse-applicative - resourcet - statistics - text - time - transformers - vector - ]; - description = "Performance Tests for the Haskell bindings for Amazon Web Services (AWS)"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - mainProgram = "dynamodb-performance"; - broken = true; - } - ) { }; - - "aws-route53" = callPackage ( - { - mkDerivation, - aws, - base, - bytestring, - containers, - http-conduit, - http-types, - old-locale, - resourcet, - text, - time, - xml-conduit, - xml-hamlet, - }: - mkDerivation { - pname = "aws-route53"; - version = "0.1.2.2"; - sha256 = "0nyhhxs55vdjdp19qk9fdw11dh41hlib5fv3m731gaq395nczpga"; - libraryHaskellDepends = [ - aws - base - bytestring - containers - http-conduit - http-types - old-locale - resourcet - text - time - xml-conduit - xml-hamlet - ]; - description = "Amazon Route53 DNS service plugin for the aws package"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "aws-sdk" = callPackage ( - { - mkDerivation, - base, - base64-bytestring, - bytestring, - conduit, - conduit-extra, - containers, - data-default, - hspec, - http-conduit, - http-types, - HUnit, - iproute, - lifted-base, - monad-control, - mtl, - old-locale, - parallel, - parsec, - QuickCheck, - random, - resourcet, - safe, - SHA, - simple-config, - strptime, - template-haskell, - text, - time, - tls, - transformers, - transformers-base, - xml-conduit, - xml-types, - }: - mkDerivation { - pname = "aws-sdk"; - version = "0.12.4"; - sha256 = "0zmwfkfddiyyn264kay6m295fh23gii8axln1fjykbsdgd6yy5rb"; - libraryHaskellDepends = [ - base - base64-bytestring - bytestring - conduit - conduit-extra - containers - data-default - http-conduit - http-types - iproute - lifted-base - monad-control - mtl - old-locale - parallel - parsec - resourcet - safe - SHA - simple-config - strptime - template-haskell - text - time - tls - transformers - transformers-base - xml-conduit - xml-types - ]; - testHaskellDepends = [ - base - conduit - hspec - http-conduit - HUnit - iproute - lifted-base - monad-control - QuickCheck - random - resourcet - text - time - tls - transformers - ]; - description = "AWS SDK for Haskell"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "aws-sdk-text-converter" = callPackage ( - { - mkDerivation, - base, - bytestring, - hspec, - HUnit, - iproute, - QuickCheck, - safe, - strptime, - template-haskell, - text, - time, - time-locale-compat, - }: - mkDerivation { - pname = "aws-sdk-text-converter"; - version = "0.4.1"; - sha256 = "04q7c4gfl9hss166xj2pda3qm6329bpmp975sxvi86cbs7y1h4yf"; - libraryHaskellDepends = [ - base - bytestring - iproute - safe - strptime - template-haskell - text - time - time-locale-compat - ]; - testHaskellDepends = [ - base - bytestring - hspec - HUnit - iproute - QuickCheck - safe - strptime - template-haskell - text - time - time-locale-compat - ]; - description = "The text converter for aws-sdk"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "aws-sdk-xml-unordered" = callPackage ( - { - mkDerivation, - aws-sdk-text-converter, - base, - bytestring, - conduit, - containers, - hspec, - lifted-base, - mtl, - resourcet, - text, - unordered-containers, - xml-conduit, - xml-types, - }: - mkDerivation { - pname = "aws-sdk-xml-unordered"; - version = "0.3.1"; - sha256 = "0f90l61npi6x59i81k2cjfklpjl5m52zj7ww04k3y5x5c7nj26nd"; - libraryHaskellDepends = [ - aws-sdk-text-converter - base - conduit - containers - lifted-base - mtl - resourcet - text - unordered-containers - xml-conduit - xml-types - ]; - testHaskellDepends = [ - base - bytestring - conduit - hspec - mtl - resourcet - text - xml-conduit - ]; - description = "The xml parser for aws-sdk package"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "aws-secrets" = callPackage ( { mkDerivation, @@ -93235,229 +50158,6 @@ self: { } ) { }; - "aws-ses-easy" = callPackage ( - { - mkDerivation, - amazonka, - amazonka-ses, - base, - criterion, - exceptions, - lens, - lucid, - mtl, - tasty, - tasty-hspec, - text, - text-conversions, - }: - mkDerivation { - pname = "aws-ses-easy"; - version = "0.1.0"; - sha256 = "0wlwff18k1qf6n6q2bhd1n2w58nsdmqx5c1yhhfqxkjyxz9flccn"; - libraryHaskellDepends = [ - amazonka - amazonka-ses - base - exceptions - lens - lucid - mtl - text - text-conversions - ]; - testHaskellDepends = [ - base - tasty - tasty-hspec - ]; - benchmarkHaskellDepends = [ - base - criterion - ]; - description = "Wrapper over Amazonka's SES"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "aws-sign4" = callPackage ( - { - mkDerivation, - attempt, - aws, - base, - blaze-builder, - byteable, - bytestring, - bytestring-lexing, - Cabal, - case-insensitive, - cryptohash, - directory, - filepath, - http-types, - old-locale, - safe, - text, - time, - }: - mkDerivation { - pname = "aws-sign4"; - version = "1.1.0.1"; - sha256 = "1jw4dp8gg4lzski55iw5m5xihyx1cp33c334nlkd2xydrkk8rjhh"; - libraryHaskellDepends = [ - aws - base - blaze-builder - byteable - bytestring - case-insensitive - cryptohash - http-types - old-locale - safe - time - ]; - testHaskellDepends = [ - attempt - aws - base - blaze-builder - byteable - bytestring - bytestring-lexing - Cabal - case-insensitive - cryptohash - directory - filepath - http-types - old-locale - safe - text - time - ]; - description = "Amazon Web Services (AWS) Signature v4 HTTP request signer"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "aws-simple" = callPackage ( - { - mkDerivation, - amazonka, - amazonka-core, - amazonka-s3, - amazonka-sqs, - base, - bytestring, - conduit, - lens, - mtl, - resourcet, - text, - timespan, - unordered-containers, - }: - mkDerivation { - pname = "aws-simple"; - version = "0.4.0.0"; - sha256 = "0q5wj9hb4lndyqxqbnx7fngipafq67sdjzr9hmz1g7n2n1xl71mg"; - libraryHaskellDepends = [ - amazonka - amazonka-core - amazonka-s3 - amazonka-sqs - base - bytestring - conduit - lens - mtl - resourcet - text - timespan - unordered-containers - ]; - description = "Dead simple bindings to commonly used AWS Services"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "aws-sns" = callPackage ( - { - mkDerivation, - aeson, - aws, - aws-general, - base, - blaze-builder, - bytestring, - conduit, - containers, - errors, - http-conduit, - http-types, - mtl, - parsers, - QuickCheck, - resourcet, - tagged, - tasty, - tasty-quickcheck, - text, - time, - transformers, - xml-conduit, - }: - mkDerivation { - pname = "aws-sns"; - version = "0.1"; - sha256 = "1v1fjldn1bx65vv84zgx7np84pl4cr1wddngchkjxzci07ydrjpm"; - libraryHaskellDepends = [ - aeson - aws - aws-general - base - blaze-builder - bytestring - conduit - containers - http-conduit - http-types - parsers - QuickCheck - resourcet - text - time - transformers - xml-conduit - ]; - testHaskellDepends = [ - aeson - aws - aws-general - base - bytestring - errors - mtl - QuickCheck - tagged - tasty - tasty-quickcheck - text - transformers - ]; - description = "Bindings for AWS SNS Version 2013-03-31"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "aws-sns-verify" = callPackage ( { mkDerivation, @@ -94041,40 +50741,6 @@ self: { } ) { }; - "axiom" = callPackage ( - { - mkDerivation, - base, - bytestring, - containers, - directory, - ghcjs-perch, - mtl, - transformers, - transient, - transient-universe, - }: - mkDerivation { - pname = "axiom"; - version = "0.4.7"; - sha256 = "14vdmkyfqn2i5ibc9d6nfhi5hqbk1552x8paq2x0yvsng4kj228x"; - libraryHaskellDepends = [ - base - bytestring - containers - directory - ghcjs-perch - mtl - transformers - transient - transient-universe - ]; - description = "Web EDSL for running in browsers and server nodes using transient"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "axiomatic-classes" = callPackage ( { mkDerivation, @@ -94118,50 +50784,6 @@ self: { } ) { control-invariants = null; }; - "azimuth-hs" = callPackage ( - { - mkDerivation, - base, - data-default-class, - exceptions, - haskoin-core, - hspec, - memory, - mtl, - shelly, - text, - urbit-hob, - web3, - }: - mkDerivation { - pname = "azimuth-hs"; - version = "0.2.1"; - sha256 = "0gr852mqzd05jhhmszf69r1kk5ja2syq15ac0hdnqzhfzlbq2nrl"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base - data-default-class - exceptions - haskoin-core - memory - mtl - text - urbit-hob - web3 - ]; - testHaskellDepends = [ - base - hspec - shelly - text - urbit-hob - ]; - description = "Interact with Azimuth from Haskell"; - license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "aztecs" = callPackage ( { mkDerivation, @@ -94406,377 +51028,6 @@ self: { } ) { }; - "azubi" = callPackage ( - { - mkDerivation, - base, - Diff, - directory, - filepath, - hspec, - options, - process, - unix, - }: - mkDerivation { - pname = "azubi"; - version = "0.2.0.3"; - sha256 = "00w3bbm2li3hdjqqww7m1chq3cpbqly3gl8y7sx469356rzils52"; - libraryHaskellDepends = [ - base - Diff - directory - filepath - options - process - unix - ]; - testHaskellDepends = [ - base - Diff - directory - filepath - hspec - options - process - unix - ]; - description = "A simple DevOps tool which will never \"reach\" enterprice level"; - license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "azure-acs" = callPackage ( - { - mkDerivation, - attoparsec, - base, - bytestring, - conduit, - conduit-extra, - connection, - http-conduit, - http-types, - network, - time, - }: - mkDerivation { - pname = "azure-acs"; - version = "0.0.1.1"; - sha256 = "09gv4ym6nxx5854m40p06pxvxrqfhmadxlb0d72pji6hk180yg5l"; - libraryHaskellDepends = [ - attoparsec - base - bytestring - conduit - conduit-extra - connection - http-conduit - http-types - network - time - ]; - description = "Windows Azure ACS"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "azure-email" = callPackage ( - { - mkDerivation, - aeson, - base, - base64-bytestring, - bytestring, - cryptonite, - exceptions, - http-client, - http-client-tls, - lens-aeson, - microlens, - RSA, - text, - time, - uuid, - wreq, - }: - mkDerivation { - pname = "azure-email"; - version = "0.1.0.0"; - sha256 = "108xfmq9mb8fxy06six0id7sf8rpazknqx4plk93fl34xyrwald5"; - libraryHaskellDepends = [ - aeson - base - base64-bytestring - bytestring - cryptonite - exceptions - http-client - http-client-tls - lens-aeson - microlens - RSA - text - time - uuid - wreq - ]; - description = "send email with microsoft azure"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "azure-functions-worker" = callPackage ( - { - mkDerivation, - aeson, - async, - base, - bytestring, - Cabal, - containers, - directory, - filepath, - glabrous, - http-types, - http2-client, - http2-client-grpc, - http2-grpc-proto-lens, - http2-grpc-types, - lens-family, - lens-family-core, - mtl, - network-uri, - optparse-applicative, - proto-lens-protobuf-types, - proto-lens-protoc, - proto-lens-runtime, - proto-lens-setup, - raw-strings-qq, - stm, - text, - time, - }: - mkDerivation { - pname = "azure-functions-worker"; - version = "0.0.0.0"; - sha256 = "0035kmxfnb121mg38xzbyxphwg2r4x63chlywl67b9nz1pwp828x"; - setupHaskellDepends = [ - base - Cabal - proto-lens-setup - ]; - libraryHaskellDepends = [ - aeson - async - base - bytestring - containers - directory - filepath - glabrous - http-types - http2-client - http2-client-grpc - http2-grpc-proto-lens - http2-grpc-types - lens-family - lens-family-core - mtl - network-uri - optparse-applicative - proto-lens-protobuf-types - proto-lens-runtime - raw-strings-qq - stm - text - time - ]; - libraryToolDepends = [ proto-lens-protoc ]; - testHaskellDepends = [ base ]; - description = "Azure Functions Worker"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "azure-service-api" = callPackage ( - { - mkDerivation, - base, - binary, - bytestring, - case-insensitive, - certificate, - crypto-pubkey-types, - http-conduit, - hxt, - hxt-xpath, - pretty, - resourcet, - tls, - tls-extra, - transformers, - }: - mkDerivation { - pname = "azure-service-api"; - version = "0.1.0.0"; - sha256 = "09wb94k8f8wgcdx036x2fzixck7cbv739rrh299m7awbl4i3mfhg"; - libraryHaskellDepends = [ - base - binary - bytestring - case-insensitive - certificate - crypto-pubkey-types - http-conduit - hxt - hxt-xpath - pretty - resourcet - tls - tls-extra - transformers - ]; - description = "Haskell bindings for the Microsoft Azure Service Management API"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "azure-servicebus" = callPackage ( - { - mkDerivation, - aeson, - async, - attoparsec, - azure-acs, - base, - bytestring, - case-insensitive, - conduit, - connection, - http-client, - http-conduit, - http-types, - network, - text, - }: - mkDerivation { - pname = "azure-servicebus"; - version = "0.1.6.0"; - sha256 = "1ig8af14m11di9fis6s5hxmfqh7hc40c3bqyighnpi25xnv7mm13"; - libraryHaskellDepends = [ - aeson - async - attoparsec - azure-acs - base - bytestring - case-insensitive - conduit - connection - http-client - http-conduit - http-types - network - text - ]; - description = "Haskell wrapper over Microsoft Azure ServiceBus REST API"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "azurify" = callPackage ( - { - mkDerivation, - base, - base64-bytestring, - bytestring, - case-insensitive, - cmdargs, - conduit, - data-default, - directory, - http-conduit, - http-date, - http-types, - hxt, - hxt-unicode, - network, - old-locale, - SHA, - text, - time, - transformers, - unix-compat, - utf8-string, - }: - mkDerivation { - pname = "azurify"; - version = "0.4.0.5"; - sha256 = "0nqkpizqiwv7wfs1bgl8q13aaqnc9wjh8gs6fyiklplnjdcpqf9g"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - base64-bytestring - bytestring - case-insensitive - conduit - data-default - http-conduit - http-date - http-types - hxt - hxt-unicode - network - old-locale - SHA - text - time - transformers - unix-compat - utf8-string - ]; - executableHaskellDepends = [ - base - base64-bytestring - bytestring - case-insensitive - cmdargs - conduit - data-default - directory - http-conduit - http-date - http-types - hxt - hxt-unicode - network - old-locale - SHA - text - time - transformers - unix-compat - utf8-string - ]; - description = "A simple library for accessing Azure blob storage"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "azurify"; - broken = true; - } - ) { }; - "b-tree" = callPackage ( { mkDerivation, @@ -95001,58 +51252,6 @@ self: { } ) { }; - "babl" = callPackage ( - { - mkDerivation, - babl, - base, - }: - mkDerivation { - pname = "babl"; - version = "0.0.0.2"; - sha256 = "0i9j4b4yll6z0nsgsmw42l3dqjbc0142c4928g54zavm13jjfv60"; - libraryHaskellDepends = [ base ]; - librarySystemDepends = [ babl ]; - libraryPkgconfigDepends = [ babl ]; - description = "Haskell bindings to BABL library"; - license = lib.licenses.lgpl3Only; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { inherit (pkgs) babl; }; - - "babylon" = callPackage ( - { - mkDerivation, - array, - base, - containers, - random, - wx, - wxcore, - }: - mkDerivation { - pname = "babylon"; - version = "0.3"; - sha256 = "12cyn149dgd9wvnc7smqsfy15mzgyfg8l17y6qz0k4dyapp8fvhf"; - isLibrary = false; - isExecutable = true; - enableSeparateDataOutput = true; - executableHaskellDepends = [ - array - base - containers - random - wx - wxcore - ]; - description = "An implementation of a simple 2-player board game"; - license = "GPL"; - hydraPlatforms = lib.platforms.none; - mainProgram = "babylon"; - } - ) { }; - "babynf" = callPackage ( { mkDerivation, @@ -95085,142 +51284,6 @@ self: { } ) { }; - "backblaze-b2-hs" = callPackage ( - { - mkDerivation, - aeson, - base, - base64-bytestring, - bytestring, - case-insensitive, - conduit, - containers, - cryptonite, - formatting, - http-client, - http-types, - protolude, - req, - req-conduit, - scientific, - tasty, - tasty-hunit, - text, - time, - unliftio, - unliftio-core, - }: - mkDerivation { - pname = "backblaze-b2-hs"; - version = "0.1.0.0"; - sha256 = "18xpjz3w9yw79732xiz8278gbd1v9vg534l0h9azg0wwhd8vbh7j"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson - base - base64-bytestring - bytestring - case-insensitive - conduit - containers - cryptonite - formatting - http-client - http-types - protolude - req - req-conduit - scientific - text - time - unliftio - unliftio-core - ]; - executableHaskellDepends = [ - aeson - base - base64-bytestring - bytestring - case-insensitive - conduit - containers - cryptonite - formatting - http-client - http-types - protolude - req - req-conduit - scientific - text - time - unliftio - unliftio-core - ]; - testHaskellDepends = [ - aeson - base - base64-bytestring - bytestring - case-insensitive - conduit - containers - cryptonite - formatting - http-client - http-types - protolude - req - req-conduit - scientific - tasty - tasty-hunit - text - time - unliftio - unliftio-core - ]; - description = "A client library to access Backblaze B2 cloud storage in Haskell"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "backblaze-b2-hs"; - } - ) { }; - - "backdropper" = callPackage ( - { - mkDerivation, - base, - directory, - haskell98, - hslogger, - old-time, - process, - random, - }: - mkDerivation { - pname = "backdropper"; - version = "1.2"; - sha256 = "1z5v0p2yfgln9sv41myr10cjq60xcaav0hfzc18bmmssl8x2yljy"; - isLibrary = true; - isExecutable = true; - executableHaskellDepends = [ - base - directory - haskell98 - hslogger - old-time - process - random - ]; - description = "Rotates backdrops for X11 displays using Imagemagic"; - license = "GPL"; - hydraPlatforms = lib.platforms.none; - mainProgram = "backdropper_consol"; - } - ) { }; - "backprop" = callPackage ( { mkDerivation, @@ -95270,56 +51333,6 @@ self: { } ) { }; - "backstop" = callPackage ( - { - mkDerivation, - base, - directory, - filepath, - HUnit, - mtl, - process, - QuickCheck, - unix, - }: - mkDerivation { - pname = "backstop"; - version = "1.3.0.354"; - sha256 = "0r8j5qyccgl0vnjylpsn7xlrhqm588j7nsl938wj3bjn2dq8myan"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - directory - filepath - mtl - process - unix - ]; - executableHaskellDepends = [ - base - directory - filepath - mtl - process - unix - ]; - testHaskellDepends = [ - base - filepath - HUnit - process - QuickCheck - unix - ]; - description = "Backstop a target directory by source directories"; - license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - mainProgram = "backstop"; - broken = true; - } - ) { }; - "backtracking" = callPackage ( { mkDerivation, @@ -95350,60 +51363,6 @@ self: { } ) { }; - "backtracking-exceptions" = callPackage ( - { - mkDerivation, - base, - either, - free, - kan-extensions, - mtl, - semigroupoids, - semigroups, - transformers, - }: - mkDerivation { - pname = "backtracking-exceptions"; - version = "0.1.0.0"; - sha256 = "1m4z4m4ncyswvbr12dsvl0gz5398jxy99zkh22xjrdmfgl8rx6p2"; - libraryHaskellDepends = [ - base - either - free - kan-extensions - mtl - semigroupoids - semigroups - transformers - ]; - description = "A monad transformer for backtracking exceptions"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "backward-state" = callPackage ( - { - mkDerivation, - base, - transformers, - }: - mkDerivation { - pname = "backward-state"; - version = "0.1.0.2"; - sha256 = "1akxm0v23gnph5jxwi20wq4lk07vd2kpiqns550k499yw95vqyam"; - libraryHaskellDepends = [ - base - transformers - ]; - description = "A state monad that runs the state in reverse through the computation"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "bacteria" = callPackage ( { mkDerivation, @@ -95428,132 +51387,6 @@ self: { } ) { }; - "bag" = callPackage ( - { mkDerivation, base }: - mkDerivation { - pname = "bag"; - version = "0.1"; - sha256 = "18n7ggrfm39mn4rva661hkxj75gjx2p3jcm0hlzpcshxyk93iblr"; - libraryHaskellDepends = [ base ]; - description = "A simple stable bag"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "bake" = callPackage ( - { - mkDerivation, - aeson, - base, - bytestring, - cmdargs, - containers, - deepseq, - direct-sqlite, - directory, - disk-free-space, - extra, - filepath, - hashable, - HTTP, - http-client, - http-conduit, - http-types, - old-locale, - process, - random, - safe, - shake, - smtp-mail, - sqlite-simple, - text, - time, - transformers, - unordered-containers, - wai, - wai-extra, - warp, - }: - mkDerivation { - pname = "bake"; - version = "0.5"; - sha256 = "1xb05l5b94hdq65x24z1m4fhvsr977y912qa1c7wi8khc9xvbhqw"; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - aeson - base - bytestring - cmdargs - containers - deepseq - direct-sqlite - directory - disk-free-space - extra - filepath - hashable - HTTP - http-client - http-conduit - http-types - old-locale - random - safe - shake - smtp-mail - sqlite-simple - text - time - transformers - unordered-containers - wai - wai-extra - warp - ]; - executableHaskellDepends = [ - aeson - base - bytestring - cmdargs - containers - deepseq - direct-sqlite - directory - disk-free-space - extra - filepath - hashable - HTTP - http-client - http-conduit - http-types - old-locale - process - random - safe - shake - smtp-mail - sqlite-simple - text - time - transformers - unordered-containers - wai - wai-extra - warp - ]; - description = "Continuous integration system"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "bake-test"; - broken = true; - } - ) { }; - "balkon" = callPackage ( { mkDerivation, @@ -95600,368 +51433,6 @@ self: { } ) { }; - "ballast" = callPackage ( - { - mkDerivation, - aeson, - base, - bytestring, - either-unwrap, - hspec, - hspec-expectations, - http-client, - http-client-tls, - http-types, - text, - time, - transformers, - unordered-containers, - utf8-string, - vector, - }: - mkDerivation { - pname = "ballast"; - version = "0.2.0.0"; - sha256 = "1l5d4ngbvmdba2gm2819mf0lb0bs8c19gvjqkxgb59i9y6qb0n6n"; - libraryHaskellDepends = [ - aeson - base - bytestring - either-unwrap - hspec - hspec-expectations - http-client - http-client-tls - http-types - text - time - transformers - unordered-containers - utf8-string - vector - ]; - testHaskellDepends = [ - base - bytestring - either-unwrap - hspec - hspec-expectations - http-client - http-client-tls - text - time - ]; - description = "Shipwire API client"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "bamboo" = callPackage ( - { - mkDerivation, - base, - bytestring, - containers, - data-default, - directory, - filepath, - gravatar, - hack, - hack-contrib, - haskell98, - mps, - mtl, - network, - old-locale, - old-time, - pandoc, - parsec, - parsedate, - process, - time, - unix, - utf8-string, - xhtml, - zlib, - }: - mkDerivation { - pname = "bamboo"; - version = "2010.2.25"; - sha256 = "0v96ync9vkq7xyc5jmm7k7vfxpy4m1l2370m99wa8qlrpcffhrmi"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base - bytestring - containers - data-default - directory - filepath - gravatar - hack - hack-contrib - haskell98 - mps - mtl - network - old-locale - old-time - pandoc - parsec - parsedate - process - time - unix - utf8-string - xhtml - zlib - ]; - description = "A blog engine on Hack"; - license = "GPL"; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "bamboo-launcher" = callPackage ( - { - mkDerivation, - bamboo, - bamboo-theme-blueprint, - base, - bytestring, - data-default, - hack, - hack-contrib, - hack-handler-hyena, - haskell98, - mps, - process, - }: - mkDerivation { - pname = "bamboo-launcher"; - version = "2010.2.25"; - sha256 = "1xp2k33jxbkf0maj3p3grv93c9vnjg6fzy6l8gg5dhil18834vdd"; - isLibrary = false; - isExecutable = true; - enableSeparateDataOutput = true; - executableHaskellDepends = [ - bamboo - bamboo-theme-blueprint - base - bytestring - data-default - hack - hack-contrib - hack-handler-hyena - haskell98 - mps - process - ]; - description = "bamboo-launcher"; - license = "GPL"; - hydraPlatforms = lib.platforms.none; - mainProgram = "bamboo"; - } - ) { }; - - "bamboo-plugin-highlight" = callPackage ( - { - mkDerivation, - bamboo, - base, - bytestring, - hack, - hack-contrib, - highlighting-kate, - hxt, - mps, - xhtml, - }: - mkDerivation { - pname = "bamboo-plugin-highlight"; - version = "2009.7.5"; - sha256 = "0f8hpampawv0csqsb504hg97r7mimkcs9irm9i2m2b13w5fciaqc"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - bamboo - base - bytestring - hack - hack-contrib - highlighting-kate - hxt - mps - xhtml - ]; - description = "A highlight middleware"; - license = "GPL"; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "bamboo-plugin-photo" = callPackage ( - { - mkDerivation, - base, - bytestring, - data-default, - directory, - filepath, - hack, - hack-contrib, - haskell98, - hxt, - mps, - utf8-string, - xhtml, - }: - mkDerivation { - pname = "bamboo-plugin-photo"; - version = "2009.7.5"; - sha256 = "19ik80hcshmw8gpsb9gwngnwvriri10xx2v6xvrz0q25cxgwdjah"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base - bytestring - data-default - directory - filepath - hack - hack-contrib - haskell98 - hxt - mps - utf8-string - xhtml - ]; - description = "A photo album middleware"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "bamboo-theme-blueprint" = callPackage ( - { - mkDerivation, - bamboo, - base, - bytestring, - containers, - data-default, - gravatar, - hack, - hack-contrib, - hcheat, - mps, - network, - rss, - utf8-string, - xhtml, - }: - mkDerivation { - pname = "bamboo-theme-blueprint"; - version = "2010.2.25.1"; - sha256 = "1wchvz2nm4klg11wjk3yb5yvqpa26c9lg6xc65k0dwxhy0cyd2zx"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - bamboo - base - bytestring - containers - data-default - gravatar - hack - hack-contrib - hcheat - mps - network - rss - utf8-string - xhtml - ]; - description = "bamboo blueprint theme"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "bamboo-theme-mini-html5" = callPackage ( - { - mkDerivation, - bamboo, - base, - base64-string, - bytestring, - cgi, - containers, - data-default, - directory, - filepath, - gravatar, - hack, - hack-contrib, - haskell98, - hcheat, - moe, - mps, - mtl, - network, - old-locale, - old-time, - parsec, - parsedate, - process, - rss, - time, - unix, - utf8-string, - xhtml, - yuuko, - zlib, - }: - mkDerivation { - pname = "bamboo-theme-mini-html5"; - version = "2009.11.27"; - sha256 = "02zh9jqq46gg3hrsfjfq2skajr4jni3cisak4nd3shl6aqapw9d6"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - bamboo - base - base64-string - bytestring - cgi - containers - data-default - directory - filepath - gravatar - hack - hack-contrib - haskell98 - hcheat - moe - mps - mtl - network - old-locale - old-time - parsec - parsedate - process - rss - time - unix - utf8-string - xhtml - yuuko - zlib - ]; - description = "bamboo mini html5 theme"; - license = "GPL"; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "bamse" = callPackage ( { mkDerivation, @@ -95996,31 +51467,6 @@ self: { } ) { }; - "bamstats" = callPackage ( - { - mkDerivation, - base, - cmdargs, - samtools, - }: - mkDerivation { - pname = "bamstats"; - version = "0.4"; - sha256 = "0z8k47h492818yvgxggqw4gcb6m91pw70kpibf9s384vxcbj6r24"; - isLibrary = true; - isExecutable = true; - executableHaskellDepends = [ - base - cmdargs - samtools - ]; - description = "A program to extract various information from BAM alignmnet files"; - license = "GPL"; - hydraPlatforms = lib.platforms.none; - mainProgram = "bam"; - } - ) { }; - "ban-instance" = callPackage ( { mkDerivation, @@ -96137,47 +51583,6 @@ self: { } ) { }; - "banwords" = callPackage ( - { - mkDerivation, - attoparsec, - base, - bytestring, - data-default, - HUnit, - test-framework, - test-framework-hunit, - text, - vector, - }: - mkDerivation { - pname = "banwords"; - version = "0.2.0.1"; - sha256 = "13mnz060yi1j6gsxknn1ara34s4ymdswysypj8d94k1741jv89yn"; - libraryHaskellDepends = [ - attoparsec - base - bytestring - data-default - text - vector - ]; - testHaskellDepends = [ - attoparsec - base - HUnit - test-framework - test-framework-hunit - text - vector - ]; - description = "Generalized word blacklister"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "barbies" = callPackage ( { mkDerivation, @@ -96200,255 +51605,121 @@ self: { ]; testHaskellDepends = [ base - distributive - QuickCheck - tasty - tasty-hunit - tasty-quickcheck - ]; - description = "Classes for working with types that can change clothes"; - license = lib.licenses.bsd3; - } - ) { }; - - "barbies-layered" = callPackage ( - { - mkDerivation, - barbies, - base, - doctest, - doctest-discover, - hspec, - hspec-discover, - transformers, - }: - mkDerivation { - pname = "barbies-layered"; - version = "0.1.0.0"; - sha256 = "1cxiwgl5rfdvf29f18hymh33ycylz94baj2v4fm8z10kiibi9snv"; - libraryHaskellDepends = [ - barbies - base - transformers - ]; - testHaskellDepends = [ - barbies - base - doctest - hspec - ]; - testToolDepends = [ - doctest-discover - hspec-discover - ]; - description = "Barbies with layered clothes"; - license = lib.licenses.asl20; - } - ) { }; - - "barbies-th" = callPackage ( - { - mkDerivation, - barbies, - base, - split, - template-haskell, - }: - mkDerivation { - pname = "barbies-th"; - version = "0.1.11"; - sha256 = "0sg3c8m3jl1vifd60a5yac7lm4mygmdgg77z0idjik3cndijxdd8"; - revision = "1"; - editedCabalFile = "0h0hgs1wqqmhpigs2nwjflvvam3m7f9cmqpscrvpzadj4fp4i5nz"; - libraryHaskellDepends = [ - barbies - base - split - template-haskell - ]; - testHaskellDepends = [ - barbies - base - ]; - description = "Create strippable HKD via TH"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "barbly" = callPackage ( - { - mkDerivation, - aeson, - async, - attoparsec, - base, - bytestring, - containers, - mtl, - optparse-applicative, - process, - text, - unix, - }: - mkDerivation { - pname = "barbly"; - version = "0.2.0.0"; - sha256 = "039q8jcfqkcgyf8yf3a7mm33dihjr7i3fz54r30mq8cbf75zxws8"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - aeson - async - attoparsec - base - bytestring - containers - mtl - optparse-applicative - process - text - unix - ]; - description = "Create status bar menus for macOS from executables"; - license = lib.licenses.bsd3; - platforms = lib.platforms.darwin; - mainProgram = "barbly"; - } - ) { }; - - "barchart" = callPackage ( - { - mkDerivation, - base, - cmdargs, - csv, - diagrams, - filepath, - }: - mkDerivation { - pname = "barchart"; - version = "0.1.1.1"; - sha256 = "160ja5sdk0zdqc0ncsyldp4rmhc2g4zfa6xc7vbzf8gpqrcmzvgy"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - csv - diagrams - filepath - ]; - executableHaskellDepends = [ - base - cmdargs - csv - diagrams - filepath + distributive + QuickCheck + tasty + tasty-hunit + tasty-quickcheck ]; - description = "Creating Bar Charts in Haskell"; + description = "Classes for working with types that can change clothes"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "barchart"; - broken = true; } ) { }; - "barcodes-code128" = callPackage ( + "barbies-layered" = callPackage ( { mkDerivation, + barbies, base, - bytestring, - HPDF, + doctest, + doctest-discover, + hspec, + hspec-discover, + transformers, }: mkDerivation { - pname = "barcodes-code128"; - version = "0.1.0"; - sha256 = "14blxjhapn9g7cp7374f5s2nln7wgyb7a6z50gp04lnqf1aw6kmg"; + pname = "barbies-layered"; + version = "0.1.0.0"; + sha256 = "1cxiwgl5rfdvf29f18hymh33ycylz94baj2v4fm8z10kiibi9snv"; libraryHaskellDepends = [ + barbies base - bytestring - HPDF + transformers ]; - description = "Generate Code 128 barcodes as PDFs"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; + testHaskellDepends = [ + barbies + base + doctest + hspec + ]; + testToolDepends = [ + doctest-discover + hspec-discover + ]; + description = "Barbies with layered clothes"; + license = lib.licenses.asl20; } ) { }; - "barecheck" = callPackage ( + "barbies-th" = callPackage ( { mkDerivation, + barbies, base, - containers, - QuickCheck, - text, - time, + split, + template-haskell, }: mkDerivation { - pname = "barecheck"; - version = "0.2.0.8"; - sha256 = "0hja4lrgv1faqaq41wzf1r88aw4pin8jh60k9n65yd0sxi1103a7"; + pname = "barbies-th"; + version = "0.1.11"; + sha256 = "0sg3c8m3jl1vifd60a5yac7lm4mygmdgg77z0idjik3cndijxdd8"; + revision = "1"; + editedCabalFile = "0h0hgs1wqqmhpigs2nwjflvvam3m7f9cmqpscrvpzadj4fp4i5nz"; libraryHaskellDepends = [ + barbies + base + split + template-haskell + ]; + testHaskellDepends = [ + barbies base - containers - QuickCheck - text - time ]; - description = "QuickCheck implementations for common types"; + description = "Create strippable HKD via TH"; license = lib.licenses.bsd3; hydraPlatforms = lib.platforms.none; broken = true; } ) { }; - "barley" = callPackage ( + "barbly" = callPackage ( { mkDerivation, + aeson, + async, + attoparsec, base, bytestring, containers, - directory, - filepath, - ghc, - ghc-prim, - html, - plugins, - snap-core, - snap-server, + mtl, + optparse-applicative, + process, text, - transformers, - unix-compat, + unix, }: mkDerivation { - pname = "barley"; - version = "0.3.0.2"; - sha256 = "0igz39bxlw4p0fna1wf6g791pk7r1m7hfyib5rgmsdahzkkp7v2h"; + pname = "barbly"; + version = "0.2.0.0"; + sha256 = "039q8jcfqkcgyf8yf3a7mm33dihjr7i3fz54r30mq8cbf75zxws8"; isLibrary = false; isExecutable = true; - enableSeparateDataOutput = true; executableHaskellDepends = [ + aeson + async + attoparsec base bytestring containers - directory - filepath - ghc - ghc-prim - html - plugins - snap-core - snap-server + mtl + optparse-applicative + process text - transformers - unix-compat + unix ]; - description = "A web based environment for learning and tinkering with Haskell"; - license = "unknown"; - hydraPlatforms = lib.platforms.none; - mainProgram = "barley"; + description = "Create status bar menus for macOS from executables"; + license = lib.licenses.bsd3; + platforms = lib.platforms.darwin; + mainProgram = "barbly"; } ) { }; @@ -96488,33 +51759,6 @@ self: { } ) { }; - "barrie" = callPackage ( - { - mkDerivation, - base, - containers, - filepath, - glib, - gtk, - }: - mkDerivation { - pname = "barrie"; - version = "0.4.1"; - sha256 = "10iraid6v333374mx9vinvaw6r1903ipa92xjxhl8qh4w7xmr9yv"; - libraryHaskellDepends = [ - base - containers - filepath - glib - gtk - ]; - description = "Declarative Gtk GUI library"; - license = "GPL"; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "barrier" = callPackage ( { mkDerivation, @@ -96559,31 +51803,6 @@ self: { } ) { }; - "barrier-monad" = callPackage ( - { - mkDerivation, - base, - comonad, - mtl, - transformers, - }: - mkDerivation { - pname = "barrier-monad"; - version = "0.1.0.1"; - sha256 = "014nc21wnrklsvy5z7w4v9p9psn6bl210l7v97gj42cv6a8jk5nm"; - libraryHaskellDepends = [ - base - comonad - mtl - transformers - ]; - description = "Implementation of barrier monad, can use custom front/back type"; - license = lib.licenses.publicDomain; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "base_4_21_0_0" = callPackage ( { mkDerivation, @@ -96669,30 +51888,6 @@ self: { } ) { }; - "base-compat-migrate" = callPackage ( - { - mkDerivation, - base, - base-compat, - }: - mkDerivation { - pname = "base-compat-migrate"; - version = "0.2.0.1"; - sha256 = "18nyacdji89ys6h7hw28b6rz6p9gkasd4c0l7awz79wp0w8a0cdm"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - base-compat - ]; - doHaddock = false; - description = "Helps migrating projects to base-compat(-batteries)"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "base-encoding" = callPackage ( { mkDerivation, @@ -96722,49 +51917,6 @@ self: { } ) { }; - "base-feature-macros" = callPackage ( - { mkDerivation, base }: - mkDerivation { - pname = "base-feature-macros"; - version = "0.1.0.1"; - sha256 = "1v4a0jmjjqirfxvwim7gsrn5vj0p6la6fncy6k4v2va0p8xaggmp"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - description = "Semantic CPP feature macros for base"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "base-generics" = callPackage ( - { mkDerivation, base }: - mkDerivation { - pname = "base-generics"; - version = "0.1.0.1"; - sha256 = "19k6kl66p71pza23b1n5njmj97k1pdlcm6brl1danfaxlflsmcms"; - libraryHaskellDepends = [ base ]; - description = "This library provides some instances for extra GHC.Generic typeclass such as Int8, Word16 and some unboxed types as well."; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "base-io-access" = callPackage ( - { mkDerivation, base }: - mkDerivation { - pname = "base-io-access"; - version = "0.4.0.0"; - sha256 = "0d0i8ndh2j42qf8ns9wprkjiffy3hyybgvs9nbf67yd50di6p263"; - libraryHaskellDepends = [ base ]; - description = "The IO functions included in base delimited into small, composable classes"; - license = lib.licenses.gpl2Only; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "base-noprelude" = callPackage ( { mkDerivation, base }: mkDerivation { @@ -97014,44 +52166,6 @@ self: { } ) { }; - "base32-bytestring" = callPackage ( - { - mkDerivation, - base, - bits-extras, - bytestring, - cpu, - criterion, - hspec, - QuickCheck, - }: - mkDerivation { - pname = "base32-bytestring"; - version = "0.2.1.0"; - sha256 = "0z0q3fw3jzprgxmq9b2iz98kf4hwl3nydrzlaiwk81aplisfdgkl"; - libraryHaskellDepends = [ - base - bits-extras - bytestring - cpu - ]; - testHaskellDepends = [ - base - bytestring - hspec - QuickCheck - ]; - benchmarkHaskellDepends = [ - base - bytestring - criterion - ]; - description = "Fast base32 and base32hex codec for ByteStrings"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "base32-lens" = callPackage ( { mkDerivation, @@ -97198,46 +52312,6 @@ self: { } ) { }; - "base58address" = callPackage ( - { - mkDerivation, - base, - binary, - bytestring, - containers, - cryptohash, - QuickCheck, - test-framework, - test-framework-quickcheck2, - }: - mkDerivation { - pname = "base58address"; - version = "0.4"; - sha256 = "0z15x9wx962ywkmh5lzfg4kq2jjmyzncbpayx2lkjnpdra4xgz7a"; - libraryHaskellDepends = [ - base - binary - bytestring - containers - cryptohash - ]; - testHaskellDepends = [ - base - binary - bytestring - containers - cryptohash - QuickCheck - test-framework - test-framework-quickcheck2 - ]; - description = "Parsing and serialization for Base58 addresses (Bitcoin and Ripple)"; - license = "unknown"; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "base58string" = callPackage ( { mkDerivation, @@ -97530,43 +52604,6 @@ self: { } ) { }; - "base64-conduit" = callPackage ( - { - mkDerivation, - base, - base64-bytestring, - bytestring, - conduit, - hspec, - QuickCheck, - transformers, - }: - mkDerivation { - pname = "base64-conduit"; - version = "1.0.0.1"; - sha256 = "07zhvn3fy60q04a5g5mzhkl17rap9jlh00vb4f6565bjha2k16g9"; - libraryHaskellDepends = [ - base - base64-bytestring - bytestring - conduit - ]; - testHaskellDepends = [ - base - base64-bytestring - bytestring - conduit - hspec - QuickCheck - transformers - ]; - description = "Base64-encode and decode streams of bytes. (deprecated)"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "base64-lens" = callPackage ( { mkDerivation, @@ -97704,44 +52741,6 @@ self: { } ) { }; - "basen" = callPackage ( - { - mkDerivation, - base, - bytestring, - quickcheck-instances, - tasty, - tasty-discover, - tasty-hspec, - tasty-quickcheck, - text, - }: - mkDerivation { - pname = "basen"; - version = "0.2.0.0"; - sha256 = "0m5vrj7p8cbjc4wc3i0h8fgj7hy8818aq4ivshq4l1n3v134p8kb"; - libraryHaskellDepends = [ - base - bytestring - text - ]; - testHaskellDepends = [ - base - bytestring - quickcheck-instances - tasty - tasty-discover - tasty-hspec - tasty-quickcheck - text - ]; - testToolDepends = [ tasty-discover ]; - license = "unknown"; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "basen-bytestring" = callPackage ( { mkDerivation, @@ -97766,148 +52765,6 @@ self: { } ) { }; - "baserock-schema" = callPackage ( - { - mkDerivation, - aeson, - base, - etc, - gitlab-api, - hashable, - hspec, - lens-aeson, - microlens-platform, - QuickCheck, - rio, - yaml-pretty-extras, - }: - mkDerivation { - pname = "baserock-schema"; - version = "0.0.3.5"; - sha256 = "0f12xazhmcw82ck3byjwcv7z15mzz0ihkzbdb2d6vph7719yxbg3"; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - aeson - base - microlens-platform - rio - yaml-pretty-extras - ]; - executableHaskellDepends = [ - aeson - base - etc - gitlab-api - hashable - lens-aeson - microlens-platform - rio - yaml-pretty-extras - ]; - testHaskellDepends = [ - aeson - base - hspec - microlens-platform - QuickCheck - rio - yaml-pretty-extras - ]; - description = "Baserock Definitions Schema"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "baserock"; - } - ) { }; - - "basex-client" = callPackage ( - { - mkDerivation, - base, - network, - pureMD5, - utf8-string, - }: - mkDerivation { - pname = "basex-client"; - version = "0.2.0.0"; - sha256 = "038xxyjy3c9rpz1cf811dy1yxjyjq3cjphq7h6ivj73qpfx6bwch"; - libraryHaskellDepends = [ - base - network - pureMD5 - utf8-string - ]; - description = "A BaseX client for Haskell"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "bash" = callPackage ( - { - mkDerivation, - base, - binary, - bytestring, - containers, - hxt-regex-xmlschema, - mtl, - SHA, - shell-escape, - }: - mkDerivation { - pname = "bash"; - version = "0.1.8"; - sha256 = "1wv7haxb4vvnh9i7y17m1d7qbpl92qjrnn022g6hyxbxzmpgsw60"; - libraryHaskellDepends = [ - base - binary - bytestring - containers - hxt-regex-xmlschema - mtl - SHA - shell-escape - ]; - description = "Bash generation library"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "basic" = callPackage ( - { - mkDerivation, - base, - stm, - template-haskell, - transformers, - util, - }: - mkDerivation { - pname = "basic"; - version = "0.1.0.0"; - sha256 = "13ikd2pkg2qspkdq0h21wa3clyaj47cm41239024g0sdv8m03bpb"; - revision = "2"; - editedCabalFile = "1b5kw2y4mrxn8lxcsc0dy00ixjyh58j52x9gs9yppvkry0v6c2x9"; - libraryHaskellDepends = [ - base - stm - template-haskell - transformers - util - ]; - description = "Lifting values from base types"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "basic-cpuid" = callPackage ( { mkDerivation, base }: mkDerivation { @@ -98057,39 +52914,6 @@ self: { } ) { }; - "baskell" = callPackage ( - { - mkDerivation, - base, - containers, - mtl, - parsec, - pretty, - unix, - }: - mkDerivation { - pname = "baskell"; - version = "0.1.1"; - sha256 = "1vb74crz57i4qmjl8k3gxr2abz9rmpw7yl5sm1pggnlfy9wcm15l"; - isLibrary = false; - isExecutable = true; - enableSeparateDataOutput = true; - executableHaskellDepends = [ - base - containers - mtl - parsec - pretty - unix - ]; - description = "An interpreter for a small functional language"; - license = "GPL"; - hydraPlatforms = lib.platforms.none; - mainProgram = "baskell"; - broken = true; - } - ) { }; - "batch" = callPackage ( { mkDerivation, @@ -98294,7 +53118,6 @@ self: { ]; description = "Batch processing toolset for Linux / Unix"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; } ) { }; @@ -98358,7 +53181,6 @@ self: { ]; description = "Core modules of batchd, to use in batchd extensions"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; } ) { }; @@ -98390,7 +53212,6 @@ self: { ]; description = "docker containers host controller for batchd"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; } ) { }; @@ -98422,7 +53243,6 @@ self: { ]; description = "host controller for batchd, which controls virtual machines via libvirt library"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; } ) { }; @@ -98464,124 +53284,6 @@ self: { } ) { }; - "battlenet" = callPackage ( - { - mkDerivation, - aeson, - base, - containers, - http-conduit, - text, - }: - mkDerivation { - pname = "battlenet"; - version = "0.2.0.0"; - sha256 = "1nzli8n6lpa9jahwp3awvpafzfkx4j02bwanilh30sxfyp0mlxxa"; - libraryHaskellDepends = [ - aeson - base - containers - http-conduit - text - ]; - description = "API client for Battle.Net"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "battlenet-yesod" = callPackage ( - { - mkDerivation, - base, - battlenet, - http-conduit, - text, - yesod-core, - }: - mkDerivation { - pname = "battlenet-yesod"; - version = "0.2.0.0"; - sha256 = "056z84rha1nwjij3am16vfp4nwgp7xzqrhkvrx9s8p1vivyb80yz"; - libraryHaskellDepends = [ - base - battlenet - http-conduit - text - yesod-core - ]; - description = "Yesod integration for the battlenet package"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "battleplace" = callPackage ( - { - mkDerivation, - aeson, - base, - bytestring, - cereal, - data-default, - hashable, - memory, - servant, - swagger2, - template-haskell, - text, - vector, - }: - mkDerivation { - pname = "battleplace"; - version = "0.1.0.10"; - sha256 = "0a1a7bw30wz0hv5n78l58h5qmr6k5x58dnijll7dgksm51g7c3j8"; - libraryHaskellDepends = [ - aeson - base - bytestring - cereal - data-default - hashable - memory - servant - swagger2 - template-haskell - text - vector - ]; - description = "Core definitions for BattlePlace.io service"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "battleplace-api" = callPackage ( - { - mkDerivation, - base, - battleplace, - servant, - servant-client, - }: - mkDerivation { - pname = "battleplace-api"; - version = "0.1.0.3"; - sha256 = "1clsmkglkq84w6nzi41zp7pdlg04hgadpri2fi4d14qilfq0acrf"; - libraryHaskellDepends = [ - base - battleplace - servant - servant-client - ]; - description = "Public API definitions of BattlePlace.io service"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "battleship-combinatorics" = callPackage ( { mkDerivation, @@ -98647,199 +53349,6 @@ self: { } ) { }; - "battleships" = callPackage ( - { - mkDerivation, - aeson, - array, - attoparsec, - base, - base64-bytestring, - blaze-svg, - bytestring, - cereal, - colour, - containers, - cookie, - crypto-random, - data-default, - diagrams-lib, - diagrams-svg, - fast-logger, - filepath, - hamlet, - hjsmin, - MonadRandom, - mtl, - shakespeare-js, - shakespeare-text, - SimpleAES, - template-haskell, - text, - transformers, - wai-extra, - wai-handler-fastcgi, - wai-logger, - word8, - yaml, - yesod, - yesod-core, - yesod-routes, - yesod-static, - }: - mkDerivation { - pname = "battleships"; - version = "1.0.0"; - sha256 = "1rg96qikd687wndwj0pgvzg2ln4vh7x304cnyiisci2ka9763cld"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson - array - attoparsec - base - base64-bytestring - blaze-svg - bytestring - cereal - colour - containers - cookie - data-default - diagrams-lib - diagrams-svg - fast-logger - filepath - hamlet - hjsmin - MonadRandom - mtl - shakespeare-js - shakespeare-text - SimpleAES - template-haskell - text - transformers - wai-extra - wai-logger - word8 - yaml - yesod - yesod-core - yesod-routes - yesod-static - ]; - executableHaskellDepends = [ - base - blaze-svg - bytestring - containers - crypto-random - diagrams-lib - diagrams-svg - filepath - MonadRandom - mtl - transformers - wai-handler-fastcgi - yesod - ]; - description = "A web-based implementation of battleships including an AI opponent"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "bayes-stack" = callPackage ( - { - mkDerivation, - base, - cereal, - containers, - deepseq, - digamma, - enummapset, - gamma, - ghc-prim, - logfloat, - mtl, - mwc-random, - pretty, - random-fu, - random-source, - rvar, - statistics, - stm, - transformers, - vector, - }: - mkDerivation { - pname = "bayes-stack"; - version = "0.2.0.1"; - sha256 = "1nz4lnnxdfgacnv6mjxsgq543zxmim4rxvxbpsfx8yypjp6lsx5l"; - libraryHaskellDepends = [ - base - cereal - containers - deepseq - digamma - enummapset - gamma - ghc-prim - logfloat - mtl - mwc-random - pretty - random-fu - random-source - rvar - statistics - stm - transformers - vector - ]; - description = "Framework for inferring generative probabilistic models with Gibbs sampling"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "bazel-coverage-report-renderer" = callPackage ( - { - mkDerivation, - base, - cmdargs, - directory, - filepath, - hxt, - hxt-xpath, - listsafe, - MissingH, - }: - mkDerivation { - pname = "bazel-coverage-report-renderer"; - version = "0.1.0"; - sha256 = "19bin8hym1zqd85v7kbkk4jbpqs19yn4588q8x903i8m7863p83v"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - cmdargs - directory - filepath - hxt - hxt-xpath - listsafe - MissingH - ]; - description = "HTML Coverage Reports for Rules_Haskell"; - license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; - mainProgram = "bazel-coverage-report-renderer"; - broken = true; - } - ) { }; - "bazel-runfiles" = callPackage ( { mkDerivation, @@ -98935,54 +53444,6 @@ self: { } ) { }; - "bbi" = callPackage ( - { - mkDerivation, - base, - bioinformatics-toolkit, - bytestring, - cereal, - conduit, - containers, - mtl, - random, - tasty, - tasty-golden, - tasty-hunit, - vector, - zlib, - }: - mkDerivation { - pname = "bbi"; - version = "0.1.1"; - sha256 = "1m9rhng6kpqzsgmyr5ilq7brvx9jpkvqgqaixbdlx79ijxkw7dz3"; - libraryHaskellDepends = [ - base - bytestring - cereal - conduit - containers - mtl - zlib - ]; - testHaskellDepends = [ - base - bioinformatics-toolkit - bytestring - conduit - mtl - random - tasty - tasty-golden - tasty-hunit - vector - ]; - description = "Tools for reading Big Binary Indexed files, e.g., bigBed, bigWig"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "bcp47" = callPackage ( { mkDerivation, @@ -99111,451 +53572,6 @@ self: { } ) { }; - "bdcs" = callPackage ( - { - mkDerivation, - aeson, - aeson-pretty, - base, - bytestring, - codec-rpm, - cond, - conduit, - conduit-combinators, - conduit-extra, - containers, - content-store, - cpio-conduit, - cryptonite, - directory, - esqueleto, - exceptions, - filepath, - gi-gio, - gi-glib, - gi-ostree, - gitrev, - hspec, - http-conduit, - HUnit, - lifted-base, - listsafe, - memory, - monad-control, - monad-logger, - monad-loops, - mtl, - network-uri, - ostree, - parsec, - parsec-numbers, - persistent, - persistent-sqlite, - persistent-template, - regex-pcre, - resourcet, - split, - string-conversions, - tar, - tar-conduit, - temporary, - text, - time, - typed-process, - unix, - unordered-containers, - xml-conduit, - }: - mkDerivation { - pname = "bdcs"; - version = "0.6.1"; - sha256 = "1q81ic3jpcjjnbvbww7qabfy6byvlhwsvs0pf7y8a0sm4i0sqj8g"; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - aeson - base - bytestring - codec-rpm - cond - conduit - conduit-combinators - conduit-extra - containers - content-store - cpio-conduit - cryptonite - directory - esqueleto - exceptions - filepath - gi-gio - gi-glib - gi-ostree - gitrev - http-conduit - lifted-base - listsafe - memory - monad-control - monad-logger - mtl - network-uri - parsec - parsec-numbers - persistent - persistent-sqlite - persistent-template - regex-pcre - resourcet - split - string-conversions - tar - tar-conduit - temporary - text - time - typed-process - unix - unordered-containers - xml-conduit - ]; - libraryPkgconfigDepends = [ ostree ]; - executableHaskellDepends = [ - aeson - aeson-pretty - base - bytestring - cond - conduit - content-store - directory - filepath - lifted-base - monad-logger - monad-loops - mtl - network-uri - persistent-sqlite - regex-pcre - text - time - typed-process - ]; - testHaskellDepends = [ - aeson - base - bytestring - codec-rpm - cond - conduit - conduit-combinators - containers - directory - esqueleto - filepath - gi-gio - gi-glib - hspec - HUnit - listsafe - monad-logger - mtl - parsec - parsec-numbers - persistent - persistent-sqlite - persistent-template - resourcet - text - time - unix - ]; - description = "Tools for managing a content store of software packages"; - license = lib.licenses.lgpl21Only; - hydraPlatforms = lib.platforms.none; - } - ) { inherit (pkgs) ostree; }; - - "bdcs-api" = callPackage ( - { - mkDerivation, - aeson, - async, - base, - bdcs, - bifunctors, - bytestring, - concurrent-extra, - cond, - containers, - directory, - extra, - filepath, - gi-ggit, - gi-gio, - gi-glib, - gitrev, - haskell-gi-base, - hspec, - htoml, - http-client, - http-media, - http-types, - libgit2-glib, - monad-logger, - monad-loops, - mtl, - network, - persistent, - persistent-sqlite, - resourcet, - semver, - servant-client, - servant-options, - servant-server, - split, - stm, - string-conversions, - string-qq, - tar, - temporary, - text, - time, - transformers, - unix, - uuid, - wai, - wai-cors, - warp, - }: - mkDerivation { - pname = "bdcs-api"; - version = "0.1.3"; - sha256 = "1pjcbw7z79bvmyik6ykjha388gdcjb2h1bf3csc2yjy1g87qmq05"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson - async - base - bdcs - bifunctors - bytestring - concurrent-extra - cond - containers - directory - extra - filepath - gi-ggit - gi-gio - gi-glib - gitrev - haskell-gi-base - htoml - http-media - http-types - monad-logger - monad-loops - mtl - network - persistent - persistent-sqlite - resourcet - semver - servant-options - servant-server - split - stm - string-conversions - tar - temporary - text - time - transformers - unix - uuid - wai - wai-cors - warp - ]; - libraryPkgconfigDepends = [ libgit2-glib ]; - executableHaskellDepends = [ base ]; - testHaskellDepends = [ - aeson - base - bdcs - bytestring - cond - directory - filepath - hspec - http-client - monad-loops - servant-client - servant-server - string-conversions - string-qq - temporary - text - time - wai - warp - ]; - description = "BDCS API Server"; - license = lib.licenses.gpl3Only; - badPlatforms = lib.platforms.darwin; - hydraPlatforms = lib.platforms.none; - mainProgram = "bdcs-api-server"; - } - ) { inherit (pkgs) libgit2-glib; }; - - "bdd" = callPackage ( - { - mkDerivation, - base, - directory, - HUnit, - mtl, - process, - test-framework, - test-framework-hunit, - transformers, - }: - mkDerivation { - pname = "bdd"; - version = "0.2.0.0"; - sha256 = "17hwqksqkrriqrm7sx70jzmi3r8184p485y9i7cqbakdjapb5a4q"; - libraryHaskellDepends = [ - base - HUnit - mtl - transformers - ]; - testHaskellDepends = [ - base - directory - HUnit - mtl - process - test-framework - test-framework-hunit - ]; - description = "Behavior-Driven Development DSL"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "bdelta" = callPackage ( - { - mkDerivation, - base, - bytestring, - }: - mkDerivation { - pname = "bdelta"; - version = "0.1.1.1"; - sha256 = "17zapldywid4xq0a6qdxh6hnk5igjjgplfydnr800xdpicicbrww"; - libraryHaskellDepends = [ - base - bytestring - ]; - description = "Simple, fast binary diff/patch"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "bdo" = callPackage ( - { - mkDerivation, - aeson, - base, - network, - text, - url, - }: - mkDerivation { - pname = "bdo"; - version = "1.0.1"; - sha256 = "1mwc7l1n2gnw8yx5zphxlkgi6bkcw56qwifpy34wpa55x2lf6n82"; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - aeson - base - network - text - url - ]; - executableHaskellDepends = [ - aeson - base - network - text - url - ]; - description = "Update CSS in the browser without reloading the page"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "bdo"; - broken = true; - } - ) { }; - - "beam" = callPackage ( - { - mkDerivation, - base, - conduit, - containers, - convertible, - HDBC, - HDBC-sqlite3, - microlens, - mtl, - pretty, - semigroups, - tagged, - text, - time, - uniplate, - }: - mkDerivation { - pname = "beam"; - version = "0.3.2.0"; - sha256 = "0nkbn87i6pk2cmmcmzlcydlqwk95b7znncsyn135nl8r07vsqvqs"; - revision = "1"; - editedCabalFile = "1nh4hh7cslr75jwsj3dwfdphqm51bl7v0k1qvbaxkiac7wh3f19p"; - libraryHaskellDepends = [ - base - conduit - containers - convertible - HDBC - HDBC-sqlite3 - microlens - mtl - pretty - semigroups - tagged - text - time - uniplate - ]; - description = "A type-safe SQL mapper for Haskell that doesn't use Template Haskell"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "beam-automigrate" = callPackage ( { mkDerivation, @@ -99838,78 +53854,6 @@ self: { } ) { }; - "beam-mysql" = callPackage ( - { - mkDerivation, - aeson, - attoparsec, - base, - beam-core, - bytestring, - case-insensitive, - free, - hashable, - mtl, - mysql, - network-uri, - scientific, - text, - time, - }: - mkDerivation { - pname = "beam-mysql"; - version = "0.2.0.0"; - sha256 = "14h0cfzzfbdh18impfvlz3ba3ycig5g7adv17h2ag1x6yyx5h259"; - libraryHaskellDepends = [ - aeson - attoparsec - base - beam-core - bytestring - case-insensitive - free - hashable - mtl - mysql - network-uri - scientific - text - time - ]; - description = "Connection layer between beam and MySQL/MariaDB"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "beam-newtype-field" = callPackage ( - { - mkDerivation, - base, - beam-core, - beam-migrate, - lens, - postgresql-simple, - }: - mkDerivation { - pname = "beam-newtype-field"; - version = "0.2.0.0"; - sha256 = "1fb78n178jzx4457b0c3kyxc70c4qszq3pplmgrzgsibri8r2xlf"; - libraryHaskellDepends = [ - base - beam-core - beam-migrate - lens - postgresql-simple - ]; - description = "A newtype for wrapping newtypes into beam schemas"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "beam-postgres" = callPackage ( { mkDerivation, @@ -100060,106 +54004,6 @@ self: { } ) { }; - "beam-th" = callPackage ( - { - mkDerivation, - base, - beam, - doctest, - doctest-discover, - microlens, - mtl, - tasty, - tasty-hunit, - template-haskell, - text, - th-expand-syns, - transformers, - }: - mkDerivation { - pname = "beam-th"; - version = "0.2.0.0"; - sha256 = "026lqqih887cfvqj81yvhl191miv4k4p0ssna2f2x46sbn5r79yi"; - libraryHaskellDepends = [ - base - beam - microlens - mtl - template-haskell - th-expand-syns - transformers - ]; - testHaskellDepends = [ - base - beam - doctest - doctest-discover - tasty - tasty-hunit - template-haskell - text - ]; - description = "Template Haskell utilities for beam"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "beamable" = callPackage ( - { - mkDerivation, - base, - blaze-builder, - bytestring, - criterion, - deepseq, - ghc-prim, - integer-gmp, - murmur-hash, - QuickCheck, - test-framework, - test-framework-quickcheck2, - }: - mkDerivation { - pname = "beamable"; - version = "0.1.1.1"; - sha256 = "068d70ylk5b6jlg6j1c1nayb4a3mmf7r92blcgmdbjrz3ipqwg27"; - libraryHaskellDepends = [ - base - blaze-builder - bytestring - ghc-prim - integer-gmp - murmur-hash - ]; - testHaskellDepends = [ - base - blaze-builder - bytestring - ghc-prim - integer-gmp - murmur-hash - QuickCheck - test-framework - test-framework-quickcheck2 - ]; - benchmarkHaskellDepends = [ - base - blaze-builder - bytestring - criterion - deepseq - ghc-prim - integer-gmp - murmur-hash - ]; - description = "Generic serializer/deserializer with compact representation"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "bearlibterminal" = callPackage ( { mkDerivation, @@ -100239,33 +54083,6 @@ self: { } ) { }; - "beautifHOL" = callPackage ( - { - mkDerivation, - array, - base, - haskell98, - mtl, - }: - mkDerivation { - pname = "beautifHOL"; - version = "0.11"; - sha256 = "15k41z1p8h0b677wba4mqkfszwggkrfcp3n5hbdvdjfiqyx2hbzi"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - array - base - haskell98 - mtl - ]; - description = "A pretty-printer for higher-order logic"; - license = "GPL"; - hydraPlatforms = lib.platforms.none; - mainProgram = "beautifHOL"; - } - ) { }; - "bech32" = callPackage ( { mkDerivation, @@ -100400,138 +54217,6 @@ self: { } ) { }; - "beeminder-api" = callPackage ( - { - mkDerivation, - aeson, - attoparsec, - base, - blaze-builder, - bytestring, - conduit, - containers, - data-default-class, - data-default-instances-base, - http-conduit, - http-types, - lens, - monad-control, - mtl, - resourcet, - scientific, - text, - time, - transformers, - transformers-base, - universe, - universe-base, - unordered-containers, - vector, - }: - mkDerivation { - pname = "beeminder-api"; - version = "1.0"; - sha256 = "0yvk51s7pajndzh3sy6jsq1yg2myvn7i211b0g50n1afh96mf84j"; - libraryHaskellDepends = [ - aeson - attoparsec - base - blaze-builder - bytestring - conduit - containers - data-default-class - data-default-instances-base - http-conduit - http-types - lens - monad-control - mtl - resourcet - scientific - text - time - transformers - transformers-base - universe - universe-base - unordered-containers - vector - ]; - description = "Bindings to the beeminder.com JSON API"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "bein" = callPackage ( - { - mkDerivation, - base, - bytestring, - containers, - convertible, - Crypto, - directory, - filepath, - happstack-server, - happstack-util, - hdaemonize, - HDBC, - HDBC-postgresql, - hsyslog, - mtl, - network, - old-locale, - parsec, - process, - random, - stm, - time, - unix, - utf8-string, - xhtml, - }: - mkDerivation { - pname = "bein"; - version = "0.3.3"; - sha256 = "1sq6z2a9bddqh0kys10g495bfj7pcyibsvhfxfl279z53va7d6ch"; - isLibrary = false; - isExecutable = true; - enableSeparateDataOutput = true; - executableHaskellDepends = [ - base - bytestring - containers - convertible - Crypto - directory - filepath - happstack-server - happstack-util - hdaemonize - HDBC - HDBC-postgresql - hsyslog - mtl - network - old-locale - parsec - process - random - stm - time - unix - utf8-string - xhtml - ]; - description = "Bein is a provenance and workflow management system for bioinformatics"; - license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "belgian-structured-communication" = callPackage ( { mkDerivation, @@ -100575,89 +54260,6 @@ self: { } ) { }; - "belka" = callPackage ( - { - mkDerivation, - aeson, - aeson-value-parser, - attoparsec, - base, - base-prelude, - base64-bytestring, - bug, - bytestring, - case-insensitive, - hashable, - http-client, - http-client-tls, - http-media, - http-types, - iri, - json-bytes-builder, - mtl, - potoki, - potoki-core, - ptr, - QuickCheck, - quickcheck-instances, - rerebase, - semigroups, - tasty, - tasty-hunit, - tasty-quickcheck, - text, - transformers, - unordered-containers, - vector, - }: - mkDerivation { - pname = "belka"; - version = "0.8"; - sha256 = "1827pjvw13a2zk69rq98sddg70rp9hzjy79jkkc0xa4c6s7y5fny"; - libraryHaskellDepends = [ - aeson - aeson-value-parser - attoparsec - base - base-prelude - base64-bytestring - bug - bytestring - case-insensitive - hashable - http-client - http-client-tls - http-media - http-types - iri - json-bytes-builder - mtl - potoki - potoki-core - ptr - semigroups - text - transformers - unordered-containers - vector - ]; - testHaskellDepends = [ - bug - iri - potoki - QuickCheck - quickcheck-instances - rerebase - tasty - tasty-hunit - tasty-quickcheck - ]; - description = "HTTP client DSL"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "benc" = callPackage ( { mkDerivation, @@ -100750,44 +54352,6 @@ self: { } ) { }; - "bench-graph" = callPackage ( - { - mkDerivation, - base, - Chart, - Chart-diagrams, - csv, - directory, - filepath, - split, - text, - transformers, - }: - mkDerivation { - pname = "bench-graph"; - version = "0.1.4"; - sha256 = "144al44v3m00lh1rrhjyah0gacbi2n6hjlqvml3yqwf8j9c37wnw"; - libraryHaskellDepends = [ - base - Chart - Chart-diagrams - csv - directory - filepath - transformers - ]; - testHaskellDepends = [ - base - split - text - ]; - description = "Plot and compare benchmarks"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "bench-show" = callPackage ( { mkDerivation, @@ -100936,60 +54500,6 @@ self: { } ) { }; - "bencodex" = callPackage ( - { - mkDerivation, - attoparsec, - base, - base64-bytestring, - bytestring, - containers, - file-embed, - filepath, - hashable, - hlint, - hspec, - hspec-attoparsec, - hspec-discover, - HsYAML, - text, - unordered-containers, - }: - mkDerivation { - pname = "bencodex"; - version = "1.0.0"; - sha256 = "1ny60qg63kyi12rlk8spc6db40zq3laqfw0k89s0jvnkjlksdyj8"; - libraryHaskellDepends = [ - attoparsec - base - bytestring - hashable - text - unordered-containers - ]; - testHaskellDepends = [ - base - base64-bytestring - bytestring - containers - file-embed - filepath - hlint - hspec - hspec-attoparsec - hspec-discover - HsYAML - text - unordered-containers - ]; - testToolDepends = [ hspec-discover ]; - description = "Bencodex reader/writer for Haskell"; - license = lib.licenses.gpl3Plus; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "bencoding" = callPackage ( { mkDerivation, @@ -101199,229 +54709,6 @@ self: { } ) { }; - "berkeleydb" = callPackage ( - { - mkDerivation, - base, - binary, - bytestring, - db, - }: - mkDerivation { - pname = "berkeleydb"; - version = "2008.10.31"; - sha256 = "1qqzxi011xmb4b09r1j5x1b7slgrazh19csfilk4a9f91zvq6l3p"; - libraryHaskellDepends = [ - base - binary - bytestring - ]; - librarySystemDepends = [ db ]; - description = "Pretty BerkeleyDB v4 binding"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { inherit (pkgs) db; }; - - "berp" = callPackage ( - { - mkDerivation, - array, - base, - containers, - directory, - extensible-exceptions, - filepath, - ghc, - ghc-paths, - ghc-prim, - haskeline, - haskell-src-exts, - language-python, - monads-tf, - parseargs, - process, - template-haskell, - transformers, - }: - mkDerivation { - pname = "berp"; - version = "0.0.2"; - sha256 = "066m1nyfwi1nivjmcnykjdypqzkm2zqfzb07zf6f9hiz9m4g6x09"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - array - base - containers - ghc-prim - monads-tf - template-haskell - transformers - ]; - executableHaskellDepends = [ - base - containers - directory - extensible-exceptions - filepath - ghc - ghc-paths - haskeline - haskell-src-exts - language-python - monads-tf - parseargs - process - transformers - ]; - description = "An implementation of Python 3"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "berp"; - broken = true; - } - ) { }; - - "bert" = callPackage ( - { - mkDerivation, - async, - base, - binary, - binary-conduit, - bytestring, - conduit, - conduit-extra, - containers, - mtl, - network, - parsec, - smallcheck, - tasty, - tasty-hunit, - tasty-smallcheck, - time, - unix, - void, - }: - mkDerivation { - pname = "bert"; - version = "1.2.2.5"; - sha256 = "0ski298afg4h5xfvbbvizh659wi1915csp3j3fn0p2aivylrzfbj"; - libraryHaskellDepends = [ - base - binary - binary-conduit - bytestring - conduit - conduit-extra - containers - mtl - network - parsec - time - unix - void - ]; - testHaskellDepends = [ - async - base - binary - bytestring - containers - network - smallcheck - tasty - tasty-hunit - tasty-smallcheck - ]; - description = "BERT implementation"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "besout" = callPackage ( - { mkDerivation, base }: - mkDerivation { - pname = "besout"; - version = "0.2.0.1"; - sha256 = "0bv68nn6ijf1wv57kwp4yj6s75g960pds0n9wihxwkr4hh5azls1"; - libraryHaskellDepends = [ base ]; - description = "Extended GCD of polynomials over F_p[x]"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "bet" = callPackage ( - { - mkDerivation, - aeson, - base, - bifunctors, - binary, - bytestring, - containers, - exceptions, - HsOpenSSL, - http-client, - http-client-openssl, - lens, - mtl, - QuickCheck, - semigroupoids, - semigroups, - test-framework, - test-framework-quickcheck2, - test-framework-th, - text, - time, - }: - mkDerivation { - pname = "bet"; - version = "0.1.2.3"; - sha256 = "0gy12m81bc6vgzq4m0v134jbq5lw1210dxsq4s28c0www0kxj658"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson - base - bifunctors - binary - bytestring - containers - exceptions - HsOpenSSL - http-client - http-client-openssl - lens - mtl - semigroupoids - semigroups - text - time - ]; - testHaskellDepends = [ - base - lens - QuickCheck - semigroups - test-framework - test-framework-quickcheck2 - test-framework-th - ]; - description = "Betfair API bindings. Bet on sports on betting exchanges."; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "betacode" = callPackage ( { mkDerivation, @@ -101536,65 +54823,6 @@ self: { } ) { }; - "bff" = callPackage ( - { - mkDerivation, - base, - bimap, - category-extras, - containers, - derive, - haskell98, - mtl, - template-haskell, - unix, - }: - mkDerivation { - pname = "bff"; - version = "0.3.1.2"; - sha256 = "1i5y7pki3hyhq2vyshzi40n7yx354p7wiflfig8qxc4h31nbwi2x"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - bimap - category-extras - containers - derive - haskell98 - mtl - template-haskell - unix - ]; - description = "Bidirectionalization for Free! (POPL'09)"; - license = lib.licenses.publicDomain; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "bff-mono" = callPackage ( - { - mkDerivation, - base, - containers, - mtl, - }: - mkDerivation { - pname = "bff-mono"; - version = "0.2.3"; - sha256 = "1qswfjrij01g7g85iiyxpvk1k5hgnf6ll7jcf6b33k6dawi3a4qr"; - libraryHaskellDepends = [ - base - containers - mtl - ]; - description = "\"Bidirectionalization for Free\" for Monomorphic Transformations"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "bglib" = callPackage ( { mkDerivation, @@ -101642,60 +54870,6 @@ self: { } ) { }; - "bgmax" = callPackage ( - { - mkDerivation, - attoparsec, - base, - bytestring, - time, - }: - mkDerivation { - pname = "bgmax"; - version = "0.2.0.4"; - sha256 = "0cgxdq5dfs9dvj5ly9sd52pf75yslrnds45hg9nwv5zrfld90rdv"; - libraryHaskellDepends = [ - attoparsec - base - bytestring - time - ]; - description = "Parse BgMax-files"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "bgzf" = callPackage ( - { - mkDerivation, - base, - bytestring, - mtl, - parallel, - pipes, - streaming-commons, - }: - mkDerivation { - pname = "bgzf"; - version = "0.1.0.0"; - sha256 = "1lmwb65ads6ip5v0h8z03nyzxr9556p13j1y34lhgsyk2lxwdkrv"; - libraryHaskellDepends = [ - base - bytestring - mtl - parallel - pipes - streaming-commons - ]; - description = "Blocked GZip"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "bhoogle" = callPackage ( { mkDerivation, @@ -101748,66 +54922,6 @@ self: { } ) { }; - "bibdb" = callPackage ( - { - mkDerivation, - alex, - array, - async, - base, - bibtex, - bytestring, - containers, - curl, - download-curl, - filepath, - happy, - microlens, - microlens-mtl, - microlens-th, - mtl, - optparse-applicative, - parsec, - pretty, - transformers, - }: - mkDerivation { - pname = "bibdb"; - version = "0.5.3"; - sha256 = "04mddqjdxki1q9cb97achz3xrzm9bsb6spw3rp3vy6wx361w3jld"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - array - async - base - bibtex - bytestring - containers - curl - download-curl - filepath - microlens - microlens-mtl - microlens-th - mtl - optparse-applicative - parsec - pretty - transformers - ]; - executableToolDepends = [ - alex - happy - ]; - description = "A database based bibliography manager for BibTeX"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - mainProgram = "bibdb"; - broken = true; - } - ) { }; - "bibtex" = callPackage ( { mkDerivation, @@ -101991,76 +55105,6 @@ self: { } ) { }; - "bidispec" = callPackage ( - { - mkDerivation, - base, - bytestring, - mtl, - }: - mkDerivation { - pname = "bidispec"; - version = "0.1.3"; - sha256 = "0y9hskhp1vcl92wrh3l7b1g6i7y9v4b06pl2qa9hhp9ladnvw7g4"; - libraryHaskellDepends = [ - base - bytestring - mtl - ]; - description = "Specification of generators and parsers"; - license = "LGPL"; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "bidispec-extras" = callPackage ( - { - mkDerivation, - base, - bytestring, - dataenc, - mtl, - }: - mkDerivation { - pname = "bidispec-extras"; - version = "0.1"; - sha256 = "0insqi63q6gvz39l0k584w583cw9m85vdx5dhpyx9qbb5zxyb0rm"; - libraryHaskellDepends = [ - base - bytestring - dataenc - mtl - ]; - description = "Extra helper functions for bidirectional specifications"; - license = "LGPL"; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "bifunctor" = callPackage ( - { - mkDerivation, - base, - category, - }: - mkDerivation { - pname = "bifunctor"; - version = "0.1.0.0"; - sha256 = "056fbcmrbzdagxr37nzq06668r9js8q9h79pnz6hv19lfljgspb1"; - revision = "1"; - editedCabalFile = "1yc56avikf0xnmd7cm2hh93vgwcpxyiw1d208s4hp80i8iprkp2n"; - libraryHaskellDepends = [ - base - category - ]; - description = "Bifunctors"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "bifunctor-classes-compat" = callPackage ( { mkDerivation, @@ -102152,134 +55196,6 @@ self: { } ) { }; - "billboard-parser" = callPackage ( - { - mkDerivation, - base, - directory, - filepath, - HarmTrace-Base, - HUnit, - ListLike, - mtl, - parseargs, - uu-parsinglib, - }: - mkDerivation { - pname = "billboard-parser"; - version = "1.0.0.1"; - sha256 = "1jhiq5w4z7axlqqm6pyl1d3g1vh7ykyy2z69d9ma8qzgm6v72l05"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - directory - filepath - HarmTrace-Base - HUnit - ListLike - mtl - uu-parsinglib - ]; - executableHaskellDepends = [ - base - directory - filepath - HarmTrace-Base - HUnit - ListLike - mtl - parseargs - uu-parsinglib - ]; - description = "A parser for the Billboard chord dataset"; - license = lib.licenses.lgpl3Only; - hydraPlatforms = lib.platforms.none; - mainProgram = "billboard-parser"; - } - ) { }; - - "billeksah-forms" = callPackage ( - { - mkDerivation, - base, - billeksah-pane, - billeksah-services, - Cabal, - containers, - directory, - filepath, - glib, - gtk, - mtl, - parsec, - pretty, - transformers, - }: - mkDerivation { - pname = "billeksah-forms"; - version = "1.0.0"; - sha256 = "094sq2kn0xfvy146i7r89vf1by90nqaj4ki1fk3i2rw9glrv25ms"; - libraryHaskellDepends = [ - base - billeksah-pane - billeksah-services - Cabal - containers - directory - filepath - glib - gtk - mtl - parsec - pretty - transformers - ]; - description = "Leksah library"; - license = "LGPL"; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "billeksah-main" = callPackage ( - { - mkDerivation, - base, - billeksah-services, - containers, - directory, - filepath, - mtl, - parsec, - plugins, - pretty, - transformers, - }: - mkDerivation { - pname = "billeksah-main"; - version = "1.0.0"; - sha256 = "1dyg6qfvhzxh2d90gvb8j7djqa04c3aci7rfk3s1wdqz5rkxmnlx"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - billeksah-services - containers - directory - filepath - mtl - parsec - plugins - pretty - transformers - ]; - description = "Leksah plugin base"; - license = "LGPL"; - hydraPlatforms = lib.platforms.none; - mainProgram = "billeksah-main"; - } - ) { }; - "billeksah-main-static" = callPackage ( @@ -102335,79 +55251,6 @@ self: { leksah-plugin-pane = null; }; - "billeksah-pane" = callPackage ( - { - mkDerivation, - base, - billeksah-services, - containers, - directory, - filepath, - glib, - gtk, - mtl, - parsec, - pretty, - time, - transformers, - }: - mkDerivation { - pname = "billeksah-pane"; - version = "1.0.0"; - sha256 = "1ckzjbdfi3y09qvq951xki3h7q3sah41j29mgpqk45rayzqmiavg"; - libraryHaskellDepends = [ - base - billeksah-services - containers - directory - filepath - glib - gtk - mtl - parsec - pretty - time - transformers - ]; - description = "Leksah library"; - license = "LGPL"; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "billeksah-services" = callPackage ( - { - mkDerivation, - base, - containers, - directory, - filepath, - mtl, - parsec, - pretty, - transformers, - }: - mkDerivation { - pname = "billeksah-services"; - version = "1.0.0"; - sha256 = "00bsbrsnclwnayqzs24c5fdz9r6ankbhnnkbkzyd1fxsl7lrziwn"; - libraryHaskellDepends = [ - base - containers - directory - filepath - mtl - parsec - pretty - transformers - ]; - description = "Leksah library"; - license = "LGPL"; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "bimap" = callPackage ( { mkDerivation, @@ -102712,69 +55555,6 @@ self: { } ) { }; - "binary-bits" = callPackage ( - { - mkDerivation, - base, - binary, - bytestring, - QuickCheck, - random, - test-framework, - test-framework-quickcheck2, - }: - mkDerivation { - pname = "binary-bits"; - version = "0.5"; - sha256 = "1577bd5q4lhw024v4hfil10iyx7v4cf72ldhxb8xhm27i80lllqn"; - revision = "1"; - editedCabalFile = "08x9vx9akj46aw1l9k9xhhvqpxwffbz7fcr2dk5vr001a2ya4ngm"; - libraryHaskellDepends = [ - base - binary - bytestring - ]; - testHaskellDepends = [ - base - binary - bytestring - QuickCheck - random - test-framework - test-framework-quickcheck2 - ]; - description = "Bit parsing/writing on top of binary"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "binary-communicator" = callPackage ( - { - mkDerivation, - base, - binary, - bytestring, - mtl, - }: - mkDerivation { - pname = "binary-communicator"; - version = "1.0.2.2"; - sha256 = "1w3cwnliaw1dxgg1zgsg13hp4qdhxb18pfrm99bhmfq81p26ghk8"; - libraryHaskellDepends = [ - base - binary - bytestring - mtl - ]; - description = "Flexible way to ease transmission of binary data"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "binary-conduit" = callPackage ( { mkDerivation, @@ -102816,29 +55596,6 @@ self: { } ) { }; - "binary-derive" = callPackage ( - { - mkDerivation, - base, - binary, - ghc-prim, - }: - mkDerivation { - pname = "binary-derive"; - version = "0.1.0"; - sha256 = "1rb4fpx5hlq661md7nrpgpmi7jjdq3r1ky6q9vxl6f72h085acvl"; - libraryHaskellDepends = [ - base - binary - ghc-prim - ]; - description = "Automatic deriving of Binary using GHC.Generics"; - license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "binary-enum" = callPackage ( { mkDerivation, @@ -102925,36 +55682,10 @@ self: { transformers transformers-base ]; - description = "An alternate with strong-typed errors for `Data.Binary.Get` monad from `binary` package."; - license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "binary-file" = callPackage ( - { - mkDerivation, - base, - bytestring, - monads-tf, - peggy, - template-haskell, - }: - mkDerivation { - pname = "binary-file"; - version = "0.15.25"; - sha256 = "1l7ngr1y6vscrvvx7x97ckga8vqjlrgwlhg74qziz7lhc26zs8iz"; - libraryHaskellDepends = [ - base - bytestring - monads-tf - peggy - template-haskell - ]; - description = "read/write binary file"; - license = lib.licenses.bsd3; + description = "An alternate with strong-typed errors for `Data.Binary.Get` monad from `binary` package."; + license = lib.licenses.asl20; hydraPlatforms = lib.platforms.none; + broken = true; } ) { }; @@ -103038,27 +55769,6 @@ self: { } ) { }; - "binary-indexed-tree" = callPackage ( - { - mkDerivation, - array, - base, - }: - mkDerivation { - pname = "binary-indexed-tree"; - version = "0.1"; - sha256 = "1csbmkwrcfcfydyl2ab6s5bz1fy4fgl14m63zdyi0vy3d17zbl4d"; - libraryHaskellDepends = [ - array - base - ]; - description = "Binary Indexed Trees (a.k.a. Fenwick Trees)."; - license = "LGPL"; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "binary-instances" = callPackage ( { mkDerivation, @@ -103376,59 +56086,6 @@ self: { } ) { }; - "binary-protocol" = callPackage ( - { - mkDerivation, - base, - binary, - bytestring, - mtl, - }: - mkDerivation { - pname = "binary-protocol"; - version = "1.0"; - sha256 = "1hn6jc4j20z8ni7rpcyamam898yl6jy7zinrhy2rdjvx0p5br13h"; - libraryHaskellDepends = [ - base - binary - bytestring - mtl - ]; - description = "Monad to ease implementing a binary network protocol"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "binary-protocol-zmq" = callPackage ( - { - mkDerivation, - base, - binary, - bytestring, - mtl, - zeromq-haskell, - }: - mkDerivation { - pname = "binary-protocol-zmq"; - version = "0.2"; - sha256 = "14jap6kc1jbr3i010qg2z8d0li09d3a88fwzwrlb750pn67x7amy"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - binary - bytestring - mtl - zeromq-haskell - ]; - description = "Monad to ease implementing a binary network protocol over ZeroMQ"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "binary-search" = callPackage ( { mkDerivation, @@ -103581,71 +56238,6 @@ self: { } ) { binary-transform = null; }; - "binary-streams" = callPackage ( - { - mkDerivation, - base, - binary, - bytestring, - Cabal, - cabal-test-quickcheck, - io-streams, - QuickCheck, - }: - mkDerivation { - pname = "binary-streams"; - version = "0.1.0.1"; - sha256 = "1kjf5ks9l7fs0fsmwk5bcyhxlrz22hi4315bqqx2jzyq6pnwf4mv"; - libraryHaskellDepends = [ - base - binary - bytestring - io-streams - ]; - testHaskellDepends = [ - base - binary - bytestring - Cabal - cabal-test-quickcheck - io-streams - QuickCheck - ]; - description = "data serialization/deserialization io-streams library"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "binary-strict" = callPackage ( - { - mkDerivation, - array, - base, - bytestring, - mtl, - }: - mkDerivation { - pname = "binary-strict"; - version = "0.4.8.6"; - sha256 = "11s4hgmxdqdwh5p73kq1a0gshx4fqmbnjwb6ig015832sk3xnsgq"; - libraryHaskellDepends = [ - array - base - bytestring - mtl - ]; - testHaskellDepends = [ - base - bytestring - ]; - description = "Binary deserialisation using strict ByteStrings"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "binary-tagged" = callPackage ( { mkDerivation, @@ -103715,99 +56307,6 @@ self: { } ) { }; - "binary-tree" = callPackage ( - { - mkDerivation, - base, - ChasingBottoms, - checkers, - criterion, - deepseq, - doctest, - ghc-prim, - HUnit, - QuickCheck, - random, - test-framework, - test-framework-quickcheck2, - }: - mkDerivation { - pname = "binary-tree"; - version = "0.1.0.0"; - sha256 = "12bb144il2ra4l0zbd7ydvdjv9rpbldp2dn80mafx96782ybhikr"; - libraryHaskellDepends = [ - base - deepseq - ghc-prim - ]; - testHaskellDepends = [ - base - ChasingBottoms - checkers - doctest - HUnit - QuickCheck - test-framework - test-framework-quickcheck2 - ]; - benchmarkHaskellDepends = [ - base - criterion - random - ]; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "binary-typed" = callPackage ( - { - mkDerivation, - base, - binary, - bytestring, - criterion, - deepseq, - murmur-hash, - tasty, - tasty-hunit, - tasty-quickcheck, - }: - mkDerivation { - pname = "binary-typed"; - version = "1.0"; - sha256 = "02ans3vny69qfsmwlgri7v31rpff0h3mdp2zpikclay50a471ww5"; - revision = "1"; - editedCabalFile = "1jnmdi3bnyiyvqlmgh5k8cdcbnl594yq3wrs6cjipw0ik06ar0y2"; - libraryHaskellDepends = [ - base - binary - bytestring - murmur-hash - ]; - testHaskellDepends = [ - base - binary - bytestring - tasty - tasty-hunit - tasty-quickcheck - ]; - benchmarkHaskellDepends = [ - base - binary - bytestring - criterion - deepseq - ]; - description = "Type-safe binary serialization"; - license = lib.licenses.bsd2; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "binary-varint" = callPackage ( { mkDerivation, @@ -103853,51 +56352,6 @@ self: { } ) { }; - "bind-marshal" = callPackage ( - { - mkDerivation, - base, - bytestring, - containers, - deepseq, - ghc-prim, - monads-tf, - mtl, - numeric-prelude, - random, - stm, - strict, - transformers, - type-level-tf, - unix, - }: - mkDerivation { - pname = "bind-marshal"; - version = "0.1"; - sha256 = "13riawcdzwr97vmixvg2wf8aysxblzik2mvkrp2gqf9ywda9ksr6"; - libraryHaskellDepends = [ - base - bytestring - containers - deepseq - ghc-prim - monads-tf - mtl - numeric-prelude - random - stm - strict - transformers - type-level-tf - unix - ]; - description = "Data marshaling library that uses type level equations to optimize buffering"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "binder" = callPackage ( { mkDerivation, @@ -103936,108 +56390,6 @@ self: { } ) { }; - "binding-core" = callPackage ( - { - mkDerivation, - base, - HTF, - HUnit, - QuickCheck, - random, - stm, - }: - mkDerivation { - pname = "binding-core"; - version = "0.2.2"; - sha256 = "0qr7nr9cksy2cx2h8g2d485797hvv67197c654va0xwadkj5iviz"; - revision = "2"; - editedCabalFile = "1cl8k9d0kkhxhdska3mk2c7w4xnyz7z0pd8xyynls0jx0qya0irl"; - libraryHaskellDepends = [ - base - stm - ]; - testHaskellDepends = [ - base - HTF - HUnit - QuickCheck - random - ]; - description = "Data Binding"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "binding-gtk" = callPackage ( - { - mkDerivation, - base, - binding-core, - directory, - gtk, - mtl, - }: - mkDerivation { - pname = "binding-gtk"; - version = "0.2.1"; - sha256 = "0l68n13w1khfqkc791l9mcnk3cb0565a9ysfn7b3hh5cjx8zi7vr"; - revision = "2"; - editedCabalFile = "1rcipk9zk7w0q0x9sxsdy53bak9izj0bix6jykzhsxywidcriwcy"; - libraryHaskellDepends = [ - base - binding-core - gtk - mtl - ]; - testHaskellDepends = [ - base - binding-core - directory - gtk - ]; - description = "Data Binding in Gtk2Hs"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "binding-wx" = callPackage ( - { - mkDerivation, - base, - binding-core, - directory, - stm, - wx, - wxcore, - }: - mkDerivation { - pname = "binding-wx"; - version = "0.2.1"; - sha256 = "07nbb6a0fmyhmx2dakkw4msxnv273hfcw3swdk3aczpfqlxd1r4i"; - revision = "2"; - editedCabalFile = "18jckk1pf0bds9s3bw6bklp3nam4bxxs5nlkswar297byfpzghk1"; - libraryHaskellDepends = [ - base - binding-core - stm - wx - wxcore - ]; - testHaskellDepends = [ - base - binding-core - directory - wx - ]; - description = "Data Binding in WxHaskell"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "bindings" = callPackage ( { mkDerivation, base }: mkDerivation { @@ -104062,31 +56414,6 @@ self: { } ) { }; - "bindings-EsounD" = callPackage ( - { - mkDerivation, - base, - bindings-audiofile, - bindings-DSL, - esound, - }: - mkDerivation { - pname = "bindings-EsounD"; - version = "0.1.0.1"; - sha256 = "0fl7gdh60k7wj3bnn5hpgsi0kkji857xb47spii7mrip5p4m8pff"; - libraryHaskellDepends = [ - base - bindings-audiofile - bindings-DSL - ]; - libraryPkgconfigDepends = [ esound ]; - description = "Low level bindings to EsounD (ESD; Enlightened Sound Daemon)"; - license = lib.licenses.publicDomain; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { esound = null; }; - "bindings-GLFW" = callPackage ( @@ -104148,73 +56475,6 @@ self: { inherit (pkgs.xorg) libXxf86vm; }; - "bindings-K8055" = callPackage ( - { - mkDerivation, - base, - K8055D, - }: - mkDerivation { - pname = "bindings-K8055"; - version = "0.1.2"; - sha256 = "0daga3vh9x9gih25qgcsl0hafi4hw8h5x64ba6wbmywa9z3hrr20"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ base ]; - librarySystemDepends = [ K8055D ]; - description = "Bindings to Velleman K8055 dll"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { K8055D = null; }; - - "bindings-apr" = callPackage ( - { - mkDerivation, - apr, - base, - bindings-DSL, - }: - mkDerivation { - pname = "bindings-apr"; - version = "0.1"; - sha256 = "0fw71z74pv8dxw301iss66kmarhlgwj2lpsy0skmlqfkg98zc96k"; - libraryHaskellDepends = [ - base - bindings-DSL - ]; - libraryPkgconfigDepends = [ apr ]; - description = "Low level bindings to Apache Portable Runtime (APR)"; - license = lib.licenses.publicDomain; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { inherit (pkgs) apr; }; - - "bindings-apr-util" = callPackage ( - { - mkDerivation, - apr-util, - base, - bindings-apr, - bindings-DSL, - }: - mkDerivation { - pname = "bindings-apr-util"; - version = "0.1"; - sha256 = "0sr041vpakklpf2mmy78wl5wl8yzfbwvsy07wlplmlh5rgjdm4wx"; - libraryHaskellDepends = [ - base - bindings-apr - bindings-DSL - ]; - libraryPkgconfigDepends = [ apr-util ]; - description = "Low level bindings to Apache Portable Runtime Utility (APR Utility)"; - license = lib.licenses.publicDomain; - hydraPlatforms = lib.platforms.none; - } - ) { apr-util = null; }; - "bindings-audiofile" = callPackage ( { mkDerivation, @@ -104236,68 +56496,6 @@ self: { } ) { inherit (pkgs) audiofile; }; - "bindings-bfd" = - callPackage - ( - { - mkDerivation, - alex, - array, - base, - bfd, - containers, - happy, - opcodes, - unix, - }: - mkDerivation { - pname = "bindings-bfd"; - version = "1.2.0.0"; - sha256 = "0c05zr3k0az2hfyfync8z2sgdxx6gskqdb1n548fjc986cx298q4"; - libraryHaskellDepends = [ - array - base - containers - unix - ]; - librarySystemDepends = [ - bfd - opcodes - ]; - libraryToolDepends = [ - alex - happy - ]; - description = "Bindings for libbfd, a library of the GNU `binutils'"; - license = lib.licenses.lgpl3Only; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) - { - bfd = null; - opcodes = null; - }; - - "bindings-cctools" = callPackage ( - { - mkDerivation, - bindings-DSL, - dttools, - }: - mkDerivation { - pname = "bindings-cctools"; - version = "3.6.1.0.1.0.0.1"; - sha256 = "1k0p0m09ndk6c42h3yy230q86fnm0hzr1zjr3871f9hapvnvzqr8"; - libraryHaskellDepends = [ bindings-DSL ]; - librarySystemDepends = [ dttools ]; - description = "Bindings to the CCTools WorkQueue C library"; - license = lib.licenses.gpl2Only; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { dttools = null; }; - "bindings-codec2" = callPackage ( { mkDerivation, @@ -104333,166 +56531,6 @@ self: { } ) { inherit (pkgs) codec2; }; - "bindings-common" = callPackage ( - { mkDerivation, base }: - mkDerivation { - pname = "bindings-common"; - version = "1.3.4"; - sha256 = "1zbm8v5xp4pay6h0y24ngf8nw96ab0zr754b9n2zczadiarccmcb"; - libraryHaskellDepends = [ base ]; - description = "This package is obsolete. Look for bindings-DSL instead."; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "bindings-dc1394" = callPackage ( - { - mkDerivation, - base, - bindings-DSL, - c2hs, - dc1394, - }: - mkDerivation { - pname = "bindings-dc1394"; - version = "0.2.1"; - sha256 = "06xg2amlcqldb7h0xaw8dvzq65npirsibbgmbr5n8s59rwa6hfwq"; - libraryHaskellDepends = [ - base - bindings-DSL - ]; - librarySystemDepends = [ dc1394 ]; - libraryToolDepends = [ c2hs ]; - description = "Library for using firewire (iidc-1394) cameras"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { dc1394 = null; }; - - "bindings-directfb" = callPackage ( - { - mkDerivation, - base, - bindings-DSL, - bindings-posix, - directfb, - }: - mkDerivation { - pname = "bindings-directfb"; - version = "0.1"; - sha256 = "0mmba1h9in9xh590nmr1vb5ccqng3nwdc4q0b9d67v22cmc7fhpp"; - libraryHaskellDepends = [ - base - bindings-DSL - bindings-posix - ]; - libraryPkgconfigDepends = [ directfb ]; - description = "Low level bindings to DirectFB"; - license = lib.licenses.bsd3; - badPlatforms = lib.platforms.darwin; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { inherit (pkgs) directfb; }; - - "bindings-eskit" = callPackage ( - { - mkDerivation, - array, - base, - bindings-DSL, - eskit, - }: - mkDerivation { - pname = "bindings-eskit"; - version = "0.0.1"; - sha256 = "0j0fi74ky1qdvkgbapyq8fag2linawz3ndgzgi8lcci8lsby0n72"; - libraryHaskellDepends = [ - array - base - bindings-DSL - ]; - librarySystemDepends = [ eskit ]; - libraryPkgconfigDepends = [ eskit ]; - description = "Bindings to ESKit"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { eskit = null; }; - - "bindings-fann" = callPackage ( - { - mkDerivation, - base, - bindings-DSL, - fann, - }: - mkDerivation { - pname = "bindings-fann"; - version = "0.0.2"; - sha256 = "1hryjj9aabaxrcgmr3i6sklbyb58djzsrlssidgll3vb0wwcgbq7"; - libraryHaskellDepends = [ - base - bindings-DSL - ]; - libraryPkgconfigDepends = [ fann ]; - description = "Low level bindings to FANN neural network library"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { fann = null; }; - - "bindings-fluidsynth" = callPackage ( - { - mkDerivation, - base, - bindings-DSL, - fluidsynth, - }: - mkDerivation { - pname = "bindings-fluidsynth"; - version = "0.2.1"; - sha256 = "1gigvkgkqg240hnggld9dibzap5lanbifqazksysa53rminaw3yd"; - libraryHaskellDepends = [ - base - bindings-DSL - ]; - libraryPkgconfigDepends = [ fluidsynth ]; - description = "Haskell FFI bindings for fluidsynth software synthesizer"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { inherit (pkgs) fluidsynth; }; - - "bindings-friso" = callPackage ( - { - mkDerivation, - base, - bindings-DSL, - friso, - }: - mkDerivation { - pname = "bindings-friso"; - version = "0.1.0.0"; - sha256 = "0wg120qrqqf2g38ifjkwj5cc42sdcdn2lrs93wrdq9dd7kldn79c"; - libraryHaskellDepends = [ - base - bindings-DSL - ]; - librarySystemDepends = [ friso ]; - description = "Low level bindings for friso"; - license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { friso = null; }; - "bindings-glib" = callPackage ( { mkDerivation, @@ -104558,29 +56596,6 @@ self: { } ) { inherit (pkgs) gpgme; }; - "bindings-gsl" = callPackage ( - { - mkDerivation, - base, - bindings-DSL, - gsl, - }: - mkDerivation { - pname = "bindings-gsl"; - version = "0.2.1"; - sha256 = "0yv0k6r2pd4bbq0qsf6wfx752qn0d2d0s3jfa633gy6sg97j2n3y"; - libraryHaskellDepends = [ - base - bindings-DSL - ]; - libraryPkgconfigDepends = [ gsl ]; - description = "Low level bindings to GNU GSL"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { inherit (pkgs) gsl; }; - "bindings-gts" = callPackage ( { mkDerivation, @@ -104604,89 +56619,6 @@ self: { } ) { inherit (pkgs) gts; }; - "bindings-hamlib" = callPackage ( - { - mkDerivation, - base, - bindings-DSL, - hamlib, - }: - mkDerivation { - pname = "bindings-hamlib"; - version = "0.1.0.0"; - sha256 = "1na9v5s5lqdnnj031zmqg3xfpsvy80gzr7qg0f3gsyyniww72xlz"; - revision = "1"; - editedCabalFile = "1jcpr5c0dbsczkjabbb06y5ddf21v9bbyvs0j56zbn8xpqsrgshy"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - bindings-DSL - ]; - librarySystemDepends = [ hamlib ]; - executableHaskellDepends = [ base ]; - description = "Hamlib bindings for Haskell"; - license = lib.licenses.lgpl21Only; - hydraPlatforms = lib.platforms.none; - mainProgram = "hamlib-hs-demo"; - broken = true; - } - ) { inherit (pkgs) hamlib; }; - - "bindings-hdf5" = callPackage ( - { - mkDerivation, - base, - bindings-DSL, - }: - mkDerivation { - pname = "bindings-hdf5"; - version = "0.1.2"; - sha256 = "1d94irqliswjqx65k147mj8i9j34xhfn5lyk5xa7ycf3m5b1g95z"; - libraryHaskellDepends = [ - base - bindings-DSL - ]; - description = "Project bindings-* raw interface to HDF5 library"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "bindings-levmar" = - callPackage - ( - { - mkDerivation, - base, - bindings-DSL, - blas, - liblapack, - }: - mkDerivation { - pname = "bindings-levmar"; - version = "1.1.0.5"; - sha256 = "1pbxwzslg2b1nn66nk8w5z1ryfz205m94ry9vidzyalpz2wnr074"; - libraryHaskellDepends = [ - base - bindings-DSL - ]; - librarySystemDepends = [ - blas - liblapack - ]; - description = "Low level bindings to the C levmar (Levenberg-Marquardt) library"; - license = "unknown"; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) - { - inherit (pkgs) blas; - inherit (pkgs) liblapack; - }; - "bindings-libcddb" = callPackage ( { mkDerivation, @@ -104729,62 +56661,6 @@ self: { } ) { inherit (pkgs) libffi; }; - "bindings-libftdi" = - callPackage - ( - { - mkDerivation, - base, - bindings-DSL, - libftdi, - libusb, - }: - mkDerivation { - pname = "bindings-libftdi"; - version = "0.1"; - sha256 = "07kabkvdjiskika9vddrf9vhknld1x9s4m3b89d9m6l4gb2ln76i"; - libraryHaskellDepends = [ - base - bindings-DSL - ]; - libraryPkgconfigDepends = [ - libftdi - libusb - ]; - description = "Low level bindings to libftdi"; - license = "GPL"; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) - { - inherit (pkgs) libftdi; - libusb = null; - }; - - "bindings-libg15" = callPackage ( - { - mkDerivation, - base, - bindings-DSL, - g15, - }: - mkDerivation { - pname = "bindings-libg15"; - version = "0.2.0.0"; - sha256 = "1dy4z0m7r7sicqzx4lfibi4nbx6vaq31x93h38v90vn5i4n903vs"; - libraryHaskellDepends = [ - base - bindings-DSL - ]; - librarySystemDepends = [ g15 ]; - description = "Bindings to libg15"; - license = lib.licenses.bsd2; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { g15 = null; }; - "bindings-libpci" = callPackage ( { mkDerivation, @@ -104806,102 +56682,6 @@ self: { } ) { }; - "bindings-librrd" = callPackage ( - { - mkDerivation, - base, - bindings-DSL, - librrd, - }: - mkDerivation { - pname = "bindings-librrd"; - version = "0.2.0.1"; - sha256 = "1dyhq06rs91g77c67lfnscn7l9fgbzikiqnv2d494jd60y1q8n8y"; - libraryHaskellDepends = [ - base - bindings-DSL - ]; - libraryPkgconfigDepends = [ librrd ]; - description = "Low level bindings to RRDtool"; - license = lib.licenses.publicDomain; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { librrd = null; }; - - "bindings-libstemmer" = callPackage ( - { - mkDerivation, - base, - bindings-DSL, - resourcet, - stemmer, - transformers, - }: - mkDerivation { - pname = "bindings-libstemmer"; - version = "0.1.0.0"; - sha256 = "03plarpy0fpv9anqnaqwcji3vij2qrxd4qmli77jb5npmax20r92"; - libraryHaskellDepends = [ - base - bindings-DSL - resourcet - transformers - ]; - librarySystemDepends = [ stemmer ]; - description = "Binding for libstemmer with low level binding"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { stemmer = null; }; - - "bindings-libusb" = callPackage ( - { - mkDerivation, - base, - bindings-DSL, - libusb, - }: - mkDerivation { - pname = "bindings-libusb"; - version = "1.4.5.0"; - sha256 = "0xnx9p6wqbwiaqigdnf7x6vd0qq7w9wm0vxsh93adpb5wdpjza66"; - libraryHaskellDepends = [ - base - bindings-DSL - ]; - libraryPkgconfigDepends = [ libusb ]; - description = "Low level bindings to libusb"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { libusb = null; }; - - "bindings-libv4l2" = callPackage ( - { - mkDerivation, - base, - bindings-DSL, - v4l2, - }: - mkDerivation { - pname = "bindings-libv4l2"; - version = "0.1"; - sha256 = "0s31dh5g26nldb6aq6q4i6ypgajincw7n3d3vm838x3w320qvg2g"; - libraryHaskellDepends = [ - base - bindings-DSL - ]; - librarySystemDepends = [ v4l2 ]; - description = "bindings to libv4l2 for Linux"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { v4l2 = null; }; - "bindings-libzip" = callPackage ( { mkDerivation, @@ -104923,28 +56703,6 @@ self: { } ) { inherit (pkgs) libzip; }; - "bindings-linux-videodev2" = callPackage ( - { - mkDerivation, - base, - bindings-DSL, - ioctl, - }: - mkDerivation { - pname = "bindings-linux-videodev2"; - version = "0.1.0.1"; - sha256 = "0k8h0i8qfmx6fg5d7mbh57brp8h896j9070bss9jmds4bhizhpw9"; - libraryHaskellDepends = [ - base - bindings-DSL - ioctl - ]; - description = "bindings to Video For Linux Two (v4l2) kernel interfaces"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "bindings-lxc" = callPackage ( { mkDerivation, @@ -104979,46 +56737,6 @@ self: { } ) { }; - "bindings-monetdb-mapi" = callPackage ( - { - mkDerivation, - base, - monetdb-mapi, - }: - mkDerivation { - pname = "bindings-monetdb-mapi"; - version = "0.1.0.2"; - sha256 = "1f6n2x8c0r72d011piyf8fqclfxcqda98ha3w29c86y66qid0wjm"; - libraryHaskellDepends = [ base ]; - libraryPkgconfigDepends = [ monetdb-mapi ]; - description = "Low-level bindings for the MonetDB API (mapi)"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { monetdb-mapi = null; }; - - "bindings-mpdecimal" = callPackage ( - { - mkDerivation, - base, - bindings-DSL, - }: - mkDerivation { - pname = "bindings-mpdecimal"; - version = "0.8.0.0"; - sha256 = "18i68ivsrdndjpfnyq6dlmmkkx22v3rp619nm26af8ka3qai12j5"; - libraryHaskellDepends = [ - base - bindings-DSL - ]; - description = "bindings to mpdecimal library"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "bindings-nettle" = callPackage ( { mkDerivation, @@ -105136,28 +56854,6 @@ self: { } ) { inherit (pkgs) potrace; }; - "bindings-ppdev" = callPackage ( - { - mkDerivation, - base, - bindings-DSL, - ioctl, - }: - mkDerivation { - pname = "bindings-ppdev"; - version = "0.0.3"; - sha256 = "18px429hplpabfhapwasbdgw8ynfm3vr5rf81pp173j1z0bv4ygq"; - libraryHaskellDepends = [ - base - bindings-DSL - ioctl - ]; - description = "PPDev bindings"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "bindings-saga-cmd" = callPackage ( { mkDerivation, @@ -105221,52 +56917,6 @@ self: { } ) { inherit (pkgs) sane-backends; }; - "bindings-sc3" = callPackage ( - { - mkDerivation, - base, - bindings-DSL, - scsynth, - }: - mkDerivation { - pname = "bindings-sc3"; - version = "0.4.1"; - sha256 = "07vp6hzjjrbh3j152mq8f1i6xh9m2r20a555y03p9fzdfrb5kixd"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base - bindings-DSL - ]; - librarySystemDepends = [ scsynth ]; - description = "Low-level bindings to the SuperCollider synthesis engine library"; - license = "GPL"; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { scsynth = null; }; - - "bindings-sipc" = callPackage ( - { - mkDerivation, - base, - sipc, - }: - mkDerivation { - pname = "bindings-sipc"; - version = "1.1"; - sha256 = "1r2akdkhw054k6vg9a7jpm9ck280lsfkizz7y6cqbn1hy463grkd"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base ]; - librarySystemDepends = [ sipc ]; - executableHaskellDepends = [ base ]; - description = "Low level bindings to SIPC"; - license = "LGPL"; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { sipc = null; }; - "bindings-sophia" = callPackage ( { mkDerivation, @@ -105338,32 +56988,6 @@ self: { } ) { }; - "bindings-wlc" = callPackage ( - { - mkDerivation, - base, - bindings-DSL, - convertible, - wlc, - }: - mkDerivation { - pname = "bindings-wlc"; - version = "0.1.0.7"; - sha256 = "08i4cw6kibhss5ad7kxv841xpbibrc1l1a619650z8m93axrwgb3"; - libraryHaskellDepends = [ - base - bindings-DSL - convertible - ]; - librarySystemDepends = [ wlc ]; - testHaskellDepends = [ base ]; - description = "Bindings against the wlc library"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { inherit (pkgs) wlc; }; - "bindings-yices" = callPackage ( @@ -105392,99 +57016,6 @@ self: { inherit (pkgs) yices; }; - "bindynamic" = callPackage ( - { - mkDerivation, - base, - binary, - bytestring, - rank1dynamic, - }: - mkDerivation { - pname = "bindynamic"; - version = "1.0.0.1"; - sha256 = "1dp52xagwgzmm77f1cm8mvwjy7xnckbkf1inxskq0c7xcch4wbfb"; - revision = "1"; - editedCabalFile = "0mq2h1j1xd52irb35y9j0znxzpk661w3dl4d5a011sln4jd3f663"; - libraryHaskellDepends = [ - base - binary - bytestring - rank1dynamic - ]; - description = "A variation of Data.Dynamic.Dynamic with a Binary instance"; - license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "binembed" = callPackage ( - { - mkDerivation, - base, - bytestring, - Cabal, - containers, - directory, - dlist, - filepath, - }: - mkDerivation { - pname = "binembed"; - version = "0.1.0.3"; - sha256 = "163cs2qfj68dvbsyfg37hzb29jp0ylfpqlnhzjswm4j8mrcfsl3r"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - bytestring - Cabal - ]; - executableHaskellDepends = [ - base - containers - directory - dlist - filepath - ]; - description = "Embed data into object files"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "binembed"; - broken = true; - } - ) { }; - - "binembed-example" = callPackage ( - { - mkDerivation, - base, - binembed, - bytestring, - containers, - filepath, - }: - mkDerivation { - pname = "binembed-example"; - version = "0.1.0.3"; - sha256 = "06lw6jvg382k3wj8ybld05bj3nchb8dqk363a69mak3r5zxg43iy"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - binembed - bytestring - containers - filepath - ]; - description = "Example project using binembed to embed data in object files"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "binembed-example"; - } - ) { }; - "bini" = callPackage ( { mkDerivation, @@ -105696,272 +57227,6 @@ self: { } ) { }; - "bio" = callPackage ( - { - mkDerivation, - array, - base, - binary, - bytestring, - containers, - directory, - mtl, - parallel, - parsec, - QuickCheck, - random, - tagsoup, - }: - mkDerivation { - pname = "bio"; - version = "0.5.3"; - sha256 = "1vby3nbqbwza65jg5d0bmzh22i5s20cjbqdgaq9zasza7ywgkj22"; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - array - base - binary - bytestring - containers - directory - mtl - parallel - parsec - QuickCheck - tagsoup - ]; - executableHaskellDepends = [ - base - bytestring - random - ]; - description = "A bioinformatics library"; - license = "LGPL"; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "bio-sequence" = callPackage ( - { - mkDerivation, - array, - base, - bytestring, - hspec, - parsec, - QuickCheck, - template-haskell, - text, - }: - mkDerivation { - pname = "bio-sequence"; - version = "0.1.0.0"; - sha256 = "0x9il05qdzmj6ka0pr8nbjg8zi073f52lpfd0dhzxy2f15zdralc"; - libraryHaskellDepends = [ - array - base - bytestring - parsec - template-haskell - text - ]; - testHaskellDepends = [ - base - bytestring - hspec - QuickCheck - ]; - description = "Initial project template from stack"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "bioace" = callPackage ( - { - mkDerivation, - base, - bioalign, - biocore, - bytestring, - parsec, - }: - mkDerivation { - pname = "bioace"; - version = "0.0.1"; - sha256 = "08k2w66gpysjk038pi50lc21gbn2dyp5z8ls0qhcmjqc59dn8hvg"; - libraryHaskellDepends = [ - base - bioalign - biocore - bytestring - parsec - ]; - description = "Library for reading ace assembly files"; - license = "GPL"; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "bioalign" = callPackage ( - { - mkDerivation, - base, - biocore, - bytestring, - }: - mkDerivation { - pname = "bioalign"; - version = "0.0.5"; - sha256 = "006gg8ds6klrl9rc1csi247rf8gzlgn9mdi0jl4pjz5xmf0jw5dr"; - libraryHaskellDepends = [ - base - biocore - bytestring - ]; - description = "Data structures and helper functions for calculating alignments"; - license = "GPL"; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "biocore" = callPackage ( - { - mkDerivation, - base, - bytestring, - stringable, - }: - mkDerivation { - pname = "biocore"; - version = "0.3.1"; - sha256 = "06ml9p144bv0c9hv6pkcvhdgc0vw0jxzbqb834ilr38kjmrpsar1"; - revision = "1"; - editedCabalFile = "0lz3inilvxn1simbpm8002iv7h9wk1gzng2vj3gpxps99zvihqc4"; - libraryHaskellDepends = [ - base - bytestring - stringable - ]; - description = "A bioinformatics library"; - license = "LGPL"; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "biofasta" = callPackage ( - { - mkDerivation, - base, - biocore, - bytestring, - }: - mkDerivation { - pname = "biofasta"; - version = "0.0.3"; - sha256 = "1l770sg2gcg7wl5yfrrk9nr7hgd5m0q158ad5nd8z7i5vsfah8b2"; - libraryHaskellDepends = [ - base - biocore - bytestring - ]; - description = "Library for reading fasta sequence files"; - license = "GPL"; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "biofastq" = callPackage ( - { - mkDerivation, - base, - biocore, - bytestring, - }: - mkDerivation { - pname = "biofastq"; - version = "0.1"; - sha256 = "0453cb2sw6x9hx3z7w3fvymwi0l0s86wlvi6vvsh0jcwas3iirbl"; - libraryHaskellDepends = [ - base - biocore - bytestring - ]; - description = "A library for reading FASTQ files"; - license = "LGPL"; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "biohazard" = callPackage ( - { - mkDerivation, - attoparsec, - base, - base-prelude, - bytestring, - Cabal, - containers, - directory, - exceptions, - hashable, - monad-control, - optparse-applicative, - primitive, - stm, - streaming, - text, - transformers, - transformers-base, - unix, - unordered-containers, - vector, - vector-algorithms, - zlib, - }: - mkDerivation { - pname = "biohazard"; - version = "2.1"; - sha256 = "1z837bb61wggqnbkh7hfs22hjxqh6z6z6w2whl1kq6lj0hif05c1"; - setupHaskellDepends = [ - base - Cabal - ]; - libraryHaskellDepends = [ - attoparsec - base - base-prelude - bytestring - containers - directory - exceptions - hashable - monad-control - optparse-applicative - primitive - stm - streaming - text - transformers - transformers-base - unix - unordered-containers - vector - vector-algorithms - zlib - ]; - description = "bioinformatics support library"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "bioinformatics-toolkit" = callPackage ( { mkDerivation, @@ -106076,157 +57341,7 @@ self: { description = "A collection of bioinformatics tools"; license = lib.licenses.mit; hydraPlatforms = lib.platforms.none; - } - ) { }; - - "biophd" = callPackage ( - { - mkDerivation, - base, - binary, - biocore, - bytestring, - parsec, - text, - time, - time-locale-compat, - }: - mkDerivation { - pname = "biophd"; - version = "0.0.8"; - sha256 = "0p3xfv61xzz29qg660pcsgns7r5q1cybk3hdvdnwf0cqdc9fhxbl"; - libraryHaskellDepends = [ - base - binary - biocore - bytestring - parsec - text - time - time-locale-compat - ]; - description = "Library for reading phd sequence files"; - license = "GPL"; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "biopsl" = callPackage ( - { - mkDerivation, - base, - biocore, - bytestring, - cmdargs, - unordered-containers, - }: - mkDerivation { - pname = "biopsl"; - version = "0.4"; - sha256 = "1v9vg9gnrf606raqlzcd15irg60v3cf5m0yy5qsdyxm24102bgmj"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - biocore - bytestring - ]; - executableHaskellDepends = [ - cmdargs - unordered-containers - ]; - description = "Library and executables for working with PSL files"; - license = "LGPL"; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "biosff" = callPackage ( - { - mkDerivation, - array, - base, - binary, - biocore, - bytestring, - cmdargs, - mtl, - }: - mkDerivation { - pname = "biosff"; - version = "0.3.7.1"; - sha256 = "1mxsqxcf5sh37gpfqil499i9n8wi3sk5sl2cx6x6agbc0n726bwq"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - array - base - binary - biocore - bytestring - ]; - executableHaskellDepends = [ - array - base - cmdargs - mtl - ]; - description = "Library and executables for working with SFF files"; - license = lib.licenses.lgpl21Only; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "biostockholm" = callPackage ( - { - mkDerivation, - attoparsec, - attoparsec-conduit, - base, - biocore, - blaze-builder, - blaze-builder-conduit, - bytestring, - conduit, - containers, - deepseq, - hspec, - HUnit, - QuickCheck, - transformers, - zlib-conduit, - }: - mkDerivation { - pname = "biostockholm"; - version = "0.3.4"; - sha256 = "04k7cl8fjsi2mv60p2qg2nmy86z2adw9gzjnkxffqsc1q85y4lz7"; - libraryHaskellDepends = [ - attoparsec - attoparsec-conduit - base - biocore - blaze-builder - blaze-builder-conduit - bytestring - conduit - containers - deepseq - ]; - testHaskellDepends = [ - base - biocore - bytestring - conduit - containers - hspec - HUnit - QuickCheck - transformers - zlib-conduit - ]; - description = "Parsing and rendering of Stockholm files (used by Pfam, Rfam and Infernal)"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; + broken = true; } ) { }; @@ -106274,6 +57389,7 @@ self: { description = "BIP-0032: Hierarchical Deterministic Wallets for Bitcoin and other cryptocurrencies"; license = lib.licenses.asl20; hydraPlatforms = lib.platforms.none; + broken = true; } ) { }; @@ -106386,55 +57502,10 @@ self: { ]; description = "Plot a colorful tree"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; mainProgram = "birch-beer"; } ) { }; - "bird" = callPackage ( - { - mkDerivation, - base, - bytestring, - containers, - data-default, - hack, - hack-handler-happstack, - haskell98, - MissingH, - mtl, - parsec, - process, - rallod, - }: - mkDerivation { - pname = "bird"; - version = "0.0.19"; - sha256 = "0w380dcpk8gp5cx24nh6xlnibd6pw93wmxcajl26p4kd5cxbgfqz"; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base - bytestring - containers - data-default - hack - hack-handler-happstack - haskell98 - MissingH - mtl - parsec - process - rallod - ]; - description = "A simple, sinatra-inspired web framework"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "bird"; - } - ) { }; - "birds-of-paradise" = callPackage ( { mkDerivation, base }: mkDerivation { @@ -106642,50 +57713,6 @@ self: { } ) { }; - "bisect-binary" = callPackage ( - { - mkDerivation, - base, - bytestring, - directory, - filepath, - hashable, - haskeline, - integer-logarithms, - optparse-applicative, - process, - terminal-size, - time, - yaml, - }: - mkDerivation { - pname = "bisect-binary"; - version = "0.1.0.1"; - sha256 = "000dydglclgk65ryb2n2zdrwp1rnzv7phmh2vi8s1gpp67b5l5ad"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - bytestring - directory - filepath - hashable - haskeline - integer-logarithms - optparse-applicative - process - terminal-size - time - yaml - ]; - description = "Determine relevant parts of binary data"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - mainProgram = "bisect-binary"; - broken = true; - } - ) { }; - "bishbosh" = callPackage ( { mkDerivation, @@ -106778,35 +57805,6 @@ self: { } ) { }; - "bit-array" = callPackage ( - { - mkDerivation, - base, - directory, - doctest, - filepath, - numeric-qq, - }: - mkDerivation { - pname = "bit-array"; - version = "0.1.2"; - sha256 = "0g3yr1dp32983x7my8qwqaz6naap0qlxswa0864mb27a59jvq1qn"; - libraryHaskellDepends = [ - base - numeric-qq - ]; - testHaskellDepends = [ - base - directory - doctest - filepath - ]; - description = "A bit array (aka bitset, bitmap, bit vector) API for numeric types"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "bit-protocol" = callPackage ( { mkDerivation, @@ -106848,50 +57846,6 @@ self: { } ) { }; - "bit-stream" = callPackage ( - { - mkDerivation, - base, - criterion, - ghc-prim, - QuickCheck, - tasty, - tasty-hunit, - tasty-quickcheck, - tasty-smallcheck, - vector, - }: - mkDerivation { - pname = "bit-stream"; - version = "0.1.0.2"; - sha256 = "1x4vcg2y2il540syqdzk2wdixs8g672lhzjm46y40x4299yjw7w1"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - ghc-prim - vector - ]; - testHaskellDepends = [ - base - QuickCheck - tasty - tasty-hunit - tasty-quickcheck - tasty-smallcheck - vector - ]; - benchmarkHaskellDepends = [ - base - criterion - ]; - description = "Lazy, infinite, compact stream of Bool with O(1) indexing"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "bit-vector" = callPackage ( { mkDerivation, @@ -106944,219 +57898,6 @@ self: { } ) { }; - "bitcoin-address" = callPackage ( - { - mkDerivation, - base, - base16-bytestring, - base58-bytestring, - bech32, - binary, - bitcoin-hash, - bitcoin-keys, - bitcoin-script, - bytestring, - hedgehog, - tasty, - tasty-hedgehog, - tasty-hunit, - text, - }: - mkDerivation { - pname = "bitcoin-address"; - version = "0.1"; - sha256 = "1pxxscq4giqgkk5dy55lmsypqssdddbwp25a7d3n04x3gd23j5ym"; - libraryHaskellDepends = [ - base - base58-bytestring - bech32 - binary - bitcoin-hash - bitcoin-keys - bitcoin-script - bytestring - text - ]; - testHaskellDepends = [ - base - base16-bytestring - bitcoin-keys - bitcoin-script - bytestring - hedgehog - tasty - tasty-hedgehog - tasty-hunit - ]; - description = "Bitcoin address generation and rendering. Parsing coming soon."; - license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "bitcoin-api" = callPackage ( - { - mkDerivation, - aeson, - base, - base58string, - binary, - bitcoin-block, - bitcoin-script, - bitcoin-tx, - bitcoin-types, - bytestring, - hexstring, - hspec, - http-client, - lens, - lens-aeson, - text, - unordered-containers, - wreq, - }: - mkDerivation { - pname = "bitcoin-api"; - version = "0.12.1"; - sha256 = "0c1ydggik4k3vj93bqk53privyblkwhd32jizw25qk5j34axwy69"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - aeson - base - base58string - binary - bitcoin-block - bitcoin-script - bitcoin-tx - bitcoin-types - bytestring - hexstring - lens - lens-aeson - text - unordered-containers - wreq - ]; - testHaskellDepends = [ - base - base58string - bitcoin-script - bitcoin-tx - bytestring - hspec - http-client - lens - text - wreq - ]; - description = "Provides access to the RPC API of Bitcoin Core"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "bitcoin-api-extra" = callPackage ( - { - mkDerivation, - base, - binary, - bitcoin-api, - bitcoin-block, - bitcoin-tx, - bytestring, - conduit, - hspec, - http-client, - lens, - stm, - stm-chans, - stm-conduit, - text, - transformers, - wreq, - }: - mkDerivation { - pname = "bitcoin-api-extra"; - version = "0.9.1"; - sha256 = "1z6pppjgq6sy4q78k176pnr6y3lq369brqf0pg90v0qggl0cc8y4"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base - binary - bitcoin-api - bitcoin-block - bitcoin-tx - bytestring - conduit - lens - stm - stm-chans - stm-conduit - text - transformers - ]; - testHaskellDepends = [ - base - bitcoin-api - bitcoin-tx - bytestring - conduit - hspec - http-client - lens - text - wreq - ]; - description = "Higher level constructs on top of the bitcoin-api package"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "bitcoin-block" = callPackage ( - { - mkDerivation, - base, - binary, - bitcoin-tx, - bitcoin-types, - bytestring, - cryptohash, - hexstring, - hspec, - largeword, - lens, - }: - mkDerivation { - pname = "bitcoin-block"; - version = "0.13.1"; - sha256 = "0nkx86fwv65x9vz6ni6qgz61afnvcifw2g92bnwdli8hww7prxfp"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base - binary - bitcoin-tx - bitcoin-types - bytestring - cryptohash - hexstring - largeword - lens - ]; - testHaskellDepends = [ - base - bitcoin-tx - bitcoin-types - bytestring - hexstring - hspec - ]; - description = "Utility functions for manipulating bitcoin blocks"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "bitcoin-compact-filters" = callPackage ( { mkDerivation, @@ -107237,116 +57978,6 @@ self: { } ) { }; - "bitcoin-hs" = callPackage ( - { - mkDerivation, - array, - base, - binary, - bytestring, - containers, - deepseq, - directory, - filepath, - ghc-prim, - HTTP, - json, - mtl, - network, - network-uri, - old-locale, - QuickCheck, - random, - tasty, - tasty-hunit, - tasty-quickcheck, - time, - transformers, - }: - mkDerivation { - pname = "bitcoin-hs"; - version = "0.0.1"; - sha256 = "01vmf3qgj8g37xm01cbhyvxsw0h39bngpjrhq0kbc6mg83p2wy59"; - libraryHaskellDepends = [ - array - base - binary - bytestring - containers - deepseq - directory - filepath - ghc-prim - HTTP - json - mtl - network - network-uri - old-locale - random - time - transformers - ]; - testHaskellDepends = [ - array - base - binary - bytestring - containers - mtl - old-locale - QuickCheck - random - tasty - tasty-hunit - tasty-quickcheck - time - transformers - ]; - description = "Partial implementation of the Bitcoin protocol (as of 2013)"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "bitcoin-keys" = callPackage ( - { - mkDerivation, - base, - base16-bytestring, - bytestring, - hedgehog, - secp256k1-haskell, - tasty, - tasty-hedgehog, - tasty-hunit, - }: - mkDerivation { - pname = "bitcoin-keys"; - version = "0.1"; - sha256 = "18xdwp3p2r1cv5f84mfl5dj2hd6v2dnvqam8ny9jv9kswn4m66c0"; - libraryHaskellDepends = [ - base - bytestring - secp256k1-haskell - ]; - testHaskellDepends = [ - base - base16-bytestring - bytestring - hedgehog - tasty - tasty-hedgehog - tasty-hunit - ]; - description = "Bitcoin keys"; - license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "bitcoin-payment-channel" = callPackage ( { mkDerivation, @@ -107479,111 +58110,6 @@ self: { } ) { blockchain-restful-address-index-api = null; }; - "bitcoin-rpc" = callPackage ( - { - mkDerivation, - aeson, - attoparsec, - base, - bytestring, - cereal, - containers, - ghc-prim, - HTTP, - HUnit, - mtl, - network, - QuickCheck, - test-framework, - test-framework-hunit, - test-framework-quickcheck2, - text, - unix, - unordered-containers, - watchdog, - }: - mkDerivation { - pname = "bitcoin-rpc"; - version = "0.5.0.1"; - sha256 = "0bx54033w0yjb2isd7cvnd46qz3nqs7z6flw0mb1nkd81sdxbhp2"; - libraryHaskellDepends = [ - aeson - attoparsec - base - bytestring - cereal - containers - ghc-prim - HTTP - mtl - network - text - unix - unordered-containers - watchdog - ]; - testHaskellDepends = [ - aeson - attoparsec - base - bytestring - cereal - containers - ghc-prim - HTTP - HUnit - mtl - network - QuickCheck - test-framework - test-framework-hunit - test-framework-quickcheck2 - text - unix - unordered-containers - watchdog - ]; - description = "Library to communicate with the Satoshi Bitcoin daemon"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "bitcoin-script" = callPackage ( - { - mkDerivation, - base, - base16-bytestring, - binary, - bytestring, - hspec, - text, - }: - mkDerivation { - pname = "bitcoin-script"; - version = "0.11.1"; - sha256 = "0k3v35p6qpgh88gc5rqpcmh202xrn2rind9641dinwqqx631v31r"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base - base16-bytestring - binary - bytestring - text - ]; - testHaskellDepends = [ - base - bytestring - hspec - ]; - description = "Compilation, manipulation and decompilation of Bitcoin scripts"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "bitcoin-scripting" = callPackage ( { mkDerivation, @@ -107637,47 +58163,6 @@ self: { } ) { }; - "bitcoin-tx" = callPackage ( - { - mkDerivation, - base, - binary, - bitcoin-script, - bitcoin-types, - bytestring, - cryptohash, - hexstring, - hspec, - lens, - }: - mkDerivation { - pname = "bitcoin-tx"; - version = "0.13.1"; - sha256 = "006c55l6q6cknxw0k0kzr8vkv8azapfb4mkax6ac6rih6mjq5f1v"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base - binary - bitcoin-script - bitcoin-types - bytestring - cryptohash - hexstring - lens - ]; - testHaskellDepends = [ - base - bitcoin-script - bytestring - hexstring - hspec - ]; - description = "Utility functions for manipulating bitcoin transactions"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "bitcoin-types" = callPackage ( { mkDerivation, @@ -107870,35 +58355,6 @@ self: { } ) { }; - "bitly-cli" = callPackage ( - { - mkDerivation, - base, - Bitly, - directory, - filepath, - regexpr, - }: - mkDerivation { - pname = "bitly-cli"; - version = "0.1.2"; - sha256 = "0g63lg3599clbn4xcg9kcak6hs4877dwj00607c5gyh5x4d2c21d"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - Bitly - directory - filepath - regexpr - ]; - description = "A command line tool to access bit.ly URL shortener."; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "bitly"; - } - ) { }; - "bitmap" = callPackage ( { mkDerivation, @@ -107977,7 +58433,6 @@ self: { ]; description = "Bitmap library"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; } ) { }; @@ -108006,22 +58461,6 @@ self: { } ) { }; - "bits-atomic" = callPackage ( - { mkDerivation, base }: - mkDerivation { - pname = "bits-atomic"; - version = "0.1.3"; - sha256 = "13fbakkwcdk63dm7r0mcsanm5mijp73c7x1kxpay2f03rxb39b70"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base ]; - description = "Atomic bit operations on memory locations for low-level synchronization"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "bits-bytestring" = callPackage ( { mkDerivation, @@ -108096,50 +58535,6 @@ self: { } ) { }; - "bits-conduit" = callPackage ( - { - mkDerivation, - base, - bytestring, - conduit, - criterion, - hspec, - HUnit, - mtl, - random, - }: - mkDerivation { - pname = "bits-conduit"; - version = "0.2.0.0"; - sha256 = "08hgl1pvwadnrgqcs1yl7lvqgh955swbscpay4chb097pqqggdrj"; - libraryHaskellDepends = [ - base - bytestring - conduit - mtl - ]; - testHaskellDepends = [ - base - bytestring - conduit - hspec - HUnit - mtl - ]; - benchmarkHaskellDepends = [ - base - bytestring - conduit - criterion - random - ]; - description = "Bitstream support for Conduit"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "bits-extra" = callPackage ( { mkDerivation, @@ -108191,27 +58586,6 @@ self: { } ) { }; - "bits-extras" = callPackage ( - { - mkDerivation, - base, - gcc_s, - }: - mkDerivation { - pname = "bits-extras"; - version = "0.1.3"; - sha256 = "0sy9dksmdx0773bsn8yi5hw4qpgn16g8aqqj888w1x75cbsxr997"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base ]; - librarySystemDepends = [ gcc_s ]; - description = "Efficient high-level bit operations not found in Data.Bits"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { gcc_s = null; }; - "bits-show" = callPackage ( { mkDerivation, @@ -108234,58 +58608,6 @@ self: { } ) { }; - "bitset" = callPackage ( - { - mkDerivation, - base, - containers, - criterion, - deepseq, - ghc-prim, - gmp, - integer-gmp, - QuickCheck, - random, - random-shuffle, - tasty, - tasty-quickcheck, - }: - mkDerivation { - pname = "bitset"; - version = "1.4.8"; - sha256 = "0h912i3wb6v8sx0c4mlp0j65l3yhpdsk3my8zhif2jls2sxns988"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base - deepseq - ghc-prim - integer-gmp - ]; - librarySystemDepends = [ gmp ]; - testHaskellDepends = [ - base - QuickCheck - tasty - tasty-quickcheck - ]; - benchmarkHaskellDepends = [ - base - containers - criterion - deepseq - ghc-prim - integer-gmp - random - random-shuffle - ]; - benchmarkSystemDepends = [ gmp ]; - description = "A space-efficient set data structure"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { inherit (pkgs) gmp; }; - "bitset-word8" = callPackage ( { mkDerivation, @@ -108324,228 +58646,66 @@ self: { base bytestring containers - criterion - deepseq - template-haskell - th-lift-instances - vector - ]; - description = "Space efficient set of Word8 and some pre-canned sets useful for parsing HTTP"; - license = lib.licenses.mit; - } - ) { }; - - "bitspeak" = - callPackage - ( - { - mkDerivation, - base, - bindings-DSL, - bindings-glib, - bindings-gobject, - gtk2, - pango, - }: - mkDerivation { - pname = "bitspeak"; - version = "0.0.3"; - sha256 = "02dyi59lp6blrvsc10ahjnra1vaz3kzb8h0jpk74k7n6flia8z1k"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - bindings-DSL - bindings-glib - bindings-gobject - ]; - executablePkgconfigDepends = [ - gtk2 - pango - ]; - description = "Proof-of-concept tool for writing using binary choices"; - license = "GPL"; - hydraPlatforms = lib.platforms.none; - mainProgram = "bitspeak"; - broken = true; - } - ) - { - inherit (pkgs) gtk2; - inherit (pkgs) pango; - }; - - "bitstream" = callPackage ( - { - mkDerivation, - base, - base-unicode-symbols, - bytestring, - QuickCheck, - vector, - }: - mkDerivation { - pname = "bitstream"; - version = "0.3.0.1"; - sha256 = "0hkgjmhw7gc6m3yyva097q0z7f1wixlmm1ja0gpg9qkgzx6piyf0"; - libraryHaskellDepends = [ - base - base-unicode-symbols - bytestring - vector - ]; - testHaskellDepends = [ - base - base-unicode-symbols - bytestring - QuickCheck - vector - ]; - description = "Fast, packed, strict and lazy bit streams with stream fusion"; - license = lib.licenses.publicDomain; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "bitstring" = callPackage ( - { - mkDerivation, - base, - bytestring, - }: - mkDerivation { - pname = "bitstring"; - version = "0.0.1"; - sha256 = "0v4qrcw4h4lz1fq58vlbvsv5wcj7540yv5mv3mdqrnbk99hb05xs"; - libraryHaskellDepends = [ - base - bytestring - ]; - description = "Lazy bit strings"; - license = lib.licenses.bsd3; - } - ) { }; - - "bittorrent" = callPackage ( - { - mkDerivation, - aeson, - base, - base16-bytestring, - base32-bytestring, - base64-bytestring, - bencoding, - binary, - binary-conduit, - bits-extras, - BoundedChan, - bytestring, - cereal, - cereal-conduit, - conduit, - containers, - cryptohash, - data-default, - deepseq, - directory, - entropy, - filepath, - hashable, - hspec, - HTTP, - IntervalMap, - intset, - krpc, - lens, - mmap, - mtl, - network, - network-conduit, - old-locale, - pretty, - pretty-class, + criterion + deepseq + template-haskell + th-lift-instances + vector + ]; + description = "Space efficient set of Word8 and some pre-canned sets useful for parsing HTTP"; + license = lib.licenses.mit; + } + ) { }; + + "bitstream" = callPackage ( + { + mkDerivation, + base, + base-unicode-symbols, + bytestring, QuickCheck, - quickcheck-instances, - resourcet, - SafeSemaphore, - split, - stm, - text, - time, - transformers, - unordered-containers, - urlencoded, vector, }: mkDerivation { - pname = "bittorrent"; - version = "0.0.0.3"; - sha256 = "155bbqqn33mlavvcm6xfxs4dqij66jfhqxjmrjkyxvzd36yz0ann"; + pname = "bitstream"; + version = "0.3.0.1"; + sha256 = "0hkgjmhw7gc6m3yyva097q0z7f1wixlmm1ja0gpg9qkgzx6piyf0"; libraryHaskellDepends = [ - aeson base - base16-bytestring - base32-bytestring - base64-bytestring - bencoding - binary - binary-conduit - bits-extras - BoundedChan + base-unicode-symbols bytestring - cereal - cereal-conduit - conduit - containers - cryptohash - data-default - deepseq - directory - entropy - filepath - hashable - HTTP - IntervalMap - intset - krpc - lens - mmap - mtl - network - network-conduit - old-locale - pretty - pretty-class - resourcet - SafeSemaphore - split - stm - text - time - transformers - unordered-containers - urlencoded vector ]; testHaskellDepends = [ - aeson base - bencoding + base-unicode-symbols bytestring - cereal - directory - filepath - hspec - network QuickCheck - quickcheck-instances - text - time + vector ]; - description = "Bittorrent protocol implementation"; - license = lib.licenses.bsd3; + description = "Fast, packed, strict and lazy bit streams with stream fusion"; + license = lib.licenses.publicDomain; hydraPlatforms = lib.platforms.none; + broken = true; + } + ) { }; + + "bitstring" = callPackage ( + { + mkDerivation, + base, + bytestring, + }: + mkDerivation { + pname = "bitstring"; + version = "0.0.1"; + sha256 = "0v4qrcw4h4lz1fq58vlbvsv5wcj7540yv5mv3mdqrnbk99hb05xs"; + libraryHaskellDepends = [ + base + bytestring + ]; + description = "Lazy bit strings"; + license = lib.licenses.bsd3; } ) { }; @@ -108746,73 +58906,6 @@ self: { } ) { }; - "bitx-bitcoin" = callPackage ( - { - mkDerivation, - aeson, - base, - bytestring, - deepseq, - directory, - doctest, - exceptions, - hspec, - http-client, - http-client-tls, - http-types, - microlens, - microlens-th, - network, - QuickCheck, - safe, - scientific, - split, - text, - time, - }: - mkDerivation { - pname = "bitx-bitcoin"; - version = "0.12.0.0"; - sha256 = "0wf86pkpm5vlcv5cci2sn6by0ajmq44b3azxc41zivqdpf5kkwii"; - libraryHaskellDepends = [ - aeson - base - bytestring - deepseq - exceptions - http-client - http-client-tls - http-types - microlens - microlens-th - network - QuickCheck - scientific - split - text - time - ]; - testHaskellDepends = [ - aeson - base - bytestring - directory - doctest - hspec - http-client - http-types - microlens - safe - text - time - ]; - description = "A Haskell library for working with the BitX bitcoin exchange"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "bizzlelude" = callPackage ( { mkDerivation, @@ -108884,76 +58977,6 @@ self: { } ) { }; - "bkr" = callPackage ( - { - mkDerivation, - aws, - base, - bytestring, - directory, - filepath, - HDBC, - HDBC-sqlite3, - hslogger, - http-conduit, - MissingH, - pureMD5, - random, - strict, - text, - unix, - utf8-string, - }: - mkDerivation { - pname = "bkr"; - version = "0.1.2"; - sha256 = "1zi429ny66qp3ywlqfg7y0xk472vxh4z572a4c8rbzpx5lgiypxs"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aws - base - bytestring - directory - filepath - HDBC - HDBC-sqlite3 - hslogger - http-conduit - MissingH - pureMD5 - random - strict - text - unix - utf8-string - ]; - executableHaskellDepends = [ - aws - base - bytestring - directory - filepath - HDBC - HDBC-sqlite3 - hslogger - http-conduit - MissingH - pureMD5 - random - strict - text - unix - utf8-string - ]; - description = "Backup utility for backing up to cloud storage services (S3 only right now)"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "bkr"; - broken = true; - } - ) { }; - "bktrees" = callPackage ( { mkDerivation, @@ -108975,32 +58998,6 @@ self: { } ) { }; - "bla" = callPackage ( - { - mkDerivation, - base, - haskell98, - unix, - }: - mkDerivation { - pname = "bla"; - version = "2009.10.20"; - sha256 = "1zb076m4673jmvzazwjjmlw3nrnw0j22hiim6r90014sqcpb6xhp"; - isLibrary = false; - isExecutable = true; - enableSeparateDataOutput = true; - executableHaskellDepends = [ - base - haskell98 - unix - ]; - description = "a stupid cron"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "bla"; - } - ) { }; - "black-jewel" = callPackage ( { mkDerivation, @@ -109251,62 +59248,6 @@ self: { } ) { }; - "blakesum" = callPackage ( - { - mkDerivation, - base, - bytestring, - text, - vector, - }: - mkDerivation { - pname = "blakesum"; - version = "0.5"; - sha256 = "15k3vf9jqcw1a9gyppkhn5ibj7ld8mb2irfhbwd3plj86xyxxa0g"; - libraryHaskellDepends = [ - base - bytestring - text - vector - ]; - description = "The BLAKE SHA-3 candidate hashes, in Haskell"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "blakesum-demo" = callPackage ( - { - mkDerivation, - base, - blakesum, - bytestring, - haskell98, - text, - vector, - }: - mkDerivation { - pname = "blakesum-demo"; - version = "0.5"; - sha256 = "1d07005fd670p74vkyi9gg3wawyi21s37ww69fsrrgarf3i5p4m9"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - blakesum - bytestring - haskell98 - text - vector - ]; - description = "The BLAKE SHA-3 candidate hashes, in Haskell"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "blakesum"; - } - ) { }; - "blank-canvas" = callPackage ( { mkDerivation, @@ -109412,31 +59353,6 @@ self: { } ) { }; - "blas" = callPackage ( - { - mkDerivation, - base, - ieee, - QuickCheck, - storable-complex, - }: - mkDerivation { - pname = "blas"; - version = "0.7.6"; - sha256 = "1q6fkw2bsppymy5wi7mgkl09caij52xplw64786548z9i95r0bli"; - libraryHaskellDepends = [ - base - ieee - QuickCheck - storable-complex - ]; - description = "Bindings to the BLAS library"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "blas-carray" = callPackage ( { mkDerivation, @@ -109549,69 +59465,6 @@ self: { } ) { inherit (pkgs) blas; }; - "blastxml" = callPackage ( - { - mkDerivation, - base, - biocore, - bytestring, - parallel, - tagsoup, - }: - mkDerivation { - pname = "blastxml"; - version = "0.3.2"; - sha256 = "0slqvv8729vlniwswwipw3yss9id6xvmd416kad1ij064g28j00c"; - libraryHaskellDepends = [ - base - biocore - bytestring - parallel - tagsoup - ]; - description = "Library for reading Blast XML output"; - license = "LGPL"; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "blatex" = callPackage ( - { - mkDerivation, - base, - blaze-html, - dates, - directory, - HaTeX, - process, - split, - tagsoup, - text, - }: - mkDerivation { - pname = "blatex"; - version = "0.1.0.9"; - sha256 = "181a3b2wrvgbi0j0nxql1kly215afapc795mc6vy9312mqy6fjdl"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - blaze-html - dates - directory - HaTeX - process - split - tagsoup - text - ]; - description = "Blog in LaTeX"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - mainProgram = "blatex"; - } - ) { }; - "blaze" = callPackage ( { mkDerivation }: mkDerivation { @@ -109703,38 +59556,6 @@ self: { } ) { }; - "blaze-builder-enumerator" = callPackage ( - { - mkDerivation, - base, - blaze-builder, - bytestring, - bytestring-builder, - enumerator, - streaming-commons, - transformers, - }: - mkDerivation { - pname = "blaze-builder-enumerator"; - version = "0.2.1.0"; - sha256 = "15mz4dfnngll61b1xv3hfazvzjfd8g9ym0hps1qiks1hl4c2kxah"; - revision = "1"; - editedCabalFile = "1bjgki6c3glllf49qpmw08c75mzgv6cldxc8c75cy8hx60rnsy98"; - libraryHaskellDepends = [ - base - blaze-builder - bytestring - bytestring-builder - enumerator - streaming-commons - transformers - ]; - description = "Enumeratees for the incremental conversion of builders to bytestrings"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "blaze-colonnade" = callPackage ( { mkDerivation, @@ -109835,93 +59656,6 @@ self: { } ) { }; - "blaze-html-contrib" = callPackage ( - { - mkDerivation, - base, - blaze-html, - cgi, - data-default, - network, - safe, - text, - }: - mkDerivation { - pname = "blaze-html-contrib"; - version = "0.2.2"; - sha256 = "0a10vzbd5l32y716nmgc49rj2gpyavl8fl1z4qs5drx9adwj50cf"; - libraryHaskellDepends = [ - base - blaze-html - cgi - data-default - network - safe - text - ]; - description = "Some contributions to add handy things to blaze html"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "blaze-html-hexpat" = callPackage ( - { - mkDerivation, - base, - blaze-html, - bytestring, - hexpat, - text, - }: - mkDerivation { - pname = "blaze-html-hexpat"; - version = "0.1.0.0"; - sha256 = "11bw5ywvi7dlz5inch3z0vlg936ch1rnp99bh4nmwskvszidd7kg"; - libraryHaskellDepends = [ - base - blaze-html - bytestring - hexpat - text - ]; - description = "A hexpat backend for blaze-html"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "blaze-html-truncate" = callPackage ( - { - mkDerivation, - base, - blaze-markup, - bytestring, - html-truncate, - tagsoup, - text, - }: - mkDerivation { - pname = "blaze-html-truncate"; - version = "0.3.0.0"; - sha256 = "1czjqxaik1c9ialdwh8inh5iajl87lrnfa9rxnidzvfhc7ks9zbl"; - libraryHaskellDepends = [ - base - blaze-markup - bytestring - html-truncate - tagsoup - text - ]; - description = "A truncator for blaze-html"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "blaze-htmx" = callPackage ( { mkDerivation, @@ -109947,55 +59681,6 @@ self: { } ) { }; - "blaze-json" = callPackage ( - { - mkDerivation, - aeson, - base, - bytestring, - bytestring-builder, - containers, - data-default-class, - doctest, - QuickCheck, - scientific, - tasty, - tasty-quickcheck, - text, - unordered-containers, - vector, - }: - mkDerivation { - pname = "blaze-json"; - version = "0.2.1"; - sha256 = "1jqrvv485qyscjppgq2kh6cvhd2lwwqq7gd69ynmrp3qllsc8x83"; - libraryHaskellDepends = [ - base - bytestring - bytestring-builder - containers - data-default-class - text - ]; - testHaskellDepends = [ - aeson - base - doctest - QuickCheck - scientific - tasty - tasty-quickcheck - text - unordered-containers - vector - ]; - description = "tiny library for encoding json"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "blaze-markup" = callPackage ( { mkDerivation, @@ -110039,33 +59724,6 @@ self: { } ) { }; - "blaze-shields" = callPackage ( - { - mkDerivation, - base, - blaze-html, - blaze-markup, - blaze-svg, - text, - }: - mkDerivation { - pname = "blaze-shields"; - version = "0.1.1.11"; - sha256 = "1mm4zrpzzspdlirfnwffx0ahqsnjjxi74lpzphwx8ysjixrh71g6"; - libraryHaskellDepends = [ - base - blaze-html - blaze-markup - blaze-svg - text - ]; - description = "create svg by Haskell"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "blaze-svg" = callPackage ( { mkDerivation, @@ -110133,41 +59791,6 @@ self: { } ) { }; - "blaze-textual-native" = callPackage ( - { - mkDerivation, - base, - blaze-builder, - bytestring, - ghc-prim, - integer-gmp, - old-locale, - text, - time, - vector, - }: - mkDerivation { - pname = "blaze-textual-native"; - version = "0.2.1.1"; - sha256 = "1q3gdf4ljc5xhw8f72qkvi6insk2nwdfk28a00y1b58jmk8003sd"; - libraryHaskellDepends = [ - base - blaze-builder - bytestring - ghc-prim - integer-gmp - old-locale - text - time - vector - ]; - description = "Fast rendering of common datatypes (deprecated)"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "blazeMarker" = callPackage ( { mkDerivation, @@ -110227,98 +59850,6 @@ self: { } ) { }; - "ble" = callPackage ( - { - mkDerivation, - base, - bytestring, - cereal, - containers, - d-bus, - data-default-class, - hslogger, - hspec, - markdown-unlit, - microlens, - microlens-ghc, - mtl, - optparse-applicative, - process, - QuickCheck, - quickcheck-instances, - random, - stm, - text, - transformers, - uuid, - }: - mkDerivation { - pname = "ble"; - version = "0.4.2"; - sha256 = "0vpmz66qg4kqkg6rqwpnp21d36yzywxvlcxxfbqrpv2kdy8pm3pb"; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base - bytestring - cereal - containers - d-bus - data-default-class - microlens - microlens-ghc - mtl - random - text - transformers - uuid - ]; - executableHaskellDepends = [ - base - bytestring - cereal - containers - d-bus - data-default-class - hslogger - markdown-unlit - microlens - microlens-ghc - mtl - optparse-applicative - random - stm - text - transformers - uuid - ]; - testHaskellDepends = [ - base - bytestring - cereal - containers - d-bus - data-default-class - hslogger - hspec - microlens - microlens-ghc - mtl - process - QuickCheck - quickcheck-instances - random - text - transformers - uuid - ]; - description = "Bluetooth Low Energy (BLE) peripherals"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "blindpass" = callPackage ( { mkDerivation, @@ -110345,117 +59876,6 @@ self: { } ) { }; - "blink1" = callPackage ( - { - mkDerivation, - base, - bytestring, - text, - unix, - usb, - vector, - }: - mkDerivation { - pname = "blink1"; - version = "0.4"; - sha256 = "0547wg4qk2xv5gzj1alaxk06j65dhmzhn6y48rjllyr4lc5bm2qj"; - revision = "1"; - editedCabalFile = "107838wpl7dw7r73gf7fkkcprafih7l5wy31ic7yc8wyp9s9hkxi"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - bytestring - text - unix - usb - vector - ]; - executableHaskellDepends = [ - base - bytestring - text - unix - usb - vector - ]; - description = "Control library for blink(1) LED from ThingM"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "blink1"; - } - ) { }; - - "blip" = callPackage ( - { - mkDerivation, - base, - bliplib, - bytestring, - containers, - filepath, - language-python, - mtl, - old-time, - parseargs, - pretty, - }: - mkDerivation { - pname = "blip"; - version = "0.2.1"; - sha256 = "0ilzdjfaq8dzfla0kxgkqbjsba0kbgkz8w5bzlhl0fw6rnaa0hn7"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - bliplib - bytestring - containers - filepath - language-python - mtl - old-time - parseargs - pretty - ]; - description = "Python to bytecode compiler"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "blip"; - } - ) { }; - - "bliplib" = callPackage ( - { - mkDerivation, - base, - binary, - bytestring, - containers, - mtl, - pretty, - utf8-string, - }: - mkDerivation { - pname = "bliplib"; - version = "0.2.1"; - sha256 = "0i5lh78yyj82g08ypyfp01kgc56p6c3nrl9fk49bp2yqpghv65qz"; - libraryHaskellDepends = [ - base - binary - bytestring - containers - mtl - pretty - utf8-string - ]; - description = "Support code for Blip"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "blizzard-html" = callPackage ( { mkDerivation, @@ -110475,77 +59895,6 @@ self: { } ) { }; - "blockchain" = callPackage ( - { - mkDerivation, - aeson, - async, - base, - byteable, - bytestring, - cryptonite, - deepseq, - either, - errors, - hashable, - hspec, - memory, - mtl, - QuickCheck, - quickcheck-instances, - text, - time, - transformers, - unordered-containers, - }: - mkDerivation { - pname = "blockchain"; - version = "0.0.3"; - sha256 = "0hyyg4gpp8wijisvh176pjkjzrvb3v8v0gaws7j6cpirkpjgi895"; - libraryHaskellDepends = [ - aeson - base - byteable - bytestring - cryptonite - either - errors - hashable - memory - mtl - text - time - transformers - unordered-containers - ]; - testHaskellDepends = [ - aeson - async - base - byteable - bytestring - cryptonite - deepseq - either - errors - hashable - hspec - memory - mtl - QuickCheck - quickcheck-instances - text - time - transformers - unordered-containers - ]; - description = "Generic blockchain implementation"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "blockfrost-api" = callPackage ( { mkDerivation, @@ -110749,45 +60098,6 @@ self: { } ) { }; - "blockhash" = callPackage ( - { - mkDerivation, - base, - bytestring, - JuicyPixels, - optparse-applicative, - primitive, - vector, - vector-algorithms, - }: - mkDerivation { - pname = "blockhash"; - version = "0.1.0.0"; - sha256 = "0jal9ny0j64b4flki0x1pmzmdih101849ma5cmfrnqwj18chzrc1"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - bytestring - primitive - vector - vector-algorithms - ]; - executableHaskellDepends = [ - base - JuicyPixels - optparse-applicative - vector - ]; - testHaskellDepends = [ base ]; - description = "Blockhash perceptual image hash algorithm"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "blockhash"; - broken = true; - } - ) { }; - "blocking-transactions" = callPackage ( { mkDerivation, @@ -110922,63 +60232,6 @@ self: { } ) { inherit (pkgs) liburing; }; - "blogination" = callPackage ( - { - mkDerivation, - base, - ConfigFile, - directory, - feed, - filepath, - haskell98, - higherorder, - highlighting-kate, - mtl, - old-locale, - old-time, - pandoc, - regex-compat, - time, - utf8-string, - xhtml, - xml, - }: - mkDerivation { - pname = "blogination"; - version = "0.5"; - sha256 = "0bdhcjiz2b4zavmixvrl5la91s9z5pra05xk52118cjk4dcfdzfg"; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base - directory - feed - filepath - higherorder - highlighting-kate - mtl - old-locale - pandoc - regex-compat - time - utf8-string - xhtml - xml - ]; - executableHaskellDepends = [ - base - ConfigFile - haskell98 - old-time - ]; - description = "Very simple static blog software"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "blogination"; - } - ) { }; - "bloodhound" = callPackage ( { mkDerivation, @@ -111169,66 +60422,6 @@ self: { } ) { }; - "bloodhound-amazonka-auth" = callPackage ( - { - mkDerivation, - aeson, - amazonka, - amazonka-core, - amazonka-elasticsearch, - base, - bloodhound, - exceptions, - http-client, - http-client-tls, - http-types, - lens, - retry, - tasty, - tasty-hunit, - text, - time, - transformers, - uri-bytestring, - }: - mkDerivation { - pname = "bloodhound-amazonka-auth"; - version = "0.1.2.1"; - sha256 = "06h3yw5fy6y1vr0zd059p3whm2mlfqwi9vjz80rwq7w6lv0p85a8"; - libraryHaskellDepends = [ - amazonka-core - amazonka-elasticsearch - base - bloodhound - exceptions - http-client - http-types - time - transformers - uri-bytestring - ]; - testHaskellDepends = [ - aeson - amazonka - amazonka-core - base - bloodhound - http-client - http-client-tls - lens - retry - tasty - tasty-hunit - text - time - ]; - description = "Adds convenient Amazon ElasticSearch Service authentication to Bloodhound"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "bloohm" = callPackage ( { mkDerivation, @@ -111358,218 +60551,6 @@ self: { } ) { }; - "bloomfilter-redis" = callPackage ( - { - mkDerivation, - arithmoi, - base, - binary, - bytestring, - criterion, - hashable, - hedis, - QuickCheck, - random, - tasty, - tasty-hunit, - tasty-quickcheck, - tasty-rerun, - }: - mkDerivation { - pname = "bloomfilter-redis"; - version = "0.1.0.4"; - sha256 = "0kl166hfdnq1j2ghra4n2fi4zvi1wj1md43rmx3jcmyhj7q4s2f0"; - libraryHaskellDepends = [ - arithmoi - base - binary - bytestring - hashable - hedis - ]; - testHaskellDepends = [ - base - bytestring - hashable - hedis - QuickCheck - tasty - tasty-hunit - tasty-quickcheck - tasty-rerun - ]; - benchmarkHaskellDepends = [ - base - criterion - random - ]; - description = "Distributed bloom filters on Redis (using the Hedis client)"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "blosum" = callPackage ( - { - mkDerivation, - base, - containers, - fasta, - lens, - optparse-applicative, - pipes, - pipes-text, - split, - text, - text-show, - }: - mkDerivation { - pname = "blosum"; - version = "0.1.1.4"; - sha256 = "1003q537h62v2cd59aq1p8k42by53h76479wlp3xxykbslj2vca4"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - containers - fasta - lens - text - text-show - ]; - executableHaskellDepends = [ - base - containers - fasta - optparse-applicative - pipes - pipes-text - split - text - ]; - description = "BLOSUM generator"; - license = lib.licenses.gpl2Only; - hydraPlatforms = lib.platforms.none; - mainProgram = "blosum"; - broken = true; - } - ) { }; - - "bloxorz" = callPackage ( - { - mkDerivation, - base, - GLFW, - OpenGL, - }: - mkDerivation { - pname = "bloxorz"; - version = "0.1.2"; - sha256 = "0cryvs5ia52dkc232cl2crhf0qq7ncir5c3zvrgsbzcc2hnmyrww"; - isLibrary = false; - isExecutable = true; - enableSeparateDataOutput = true; - executableHaskellDepends = [ - base - GLFW - OpenGL - ]; - description = "OpenGL Logic Game"; - license = "GPL"; - hydraPlatforms = lib.platforms.none; - mainProgram = "bloxorz"; - } - ) { }; - - "blubber" = callPackage ( - { - mkDerivation, - base, - blubber-server, - bytestring, - cereal, - containers, - gloss, - network, - unix, - }: - mkDerivation { - pname = "blubber"; - version = "0.0.1"; - sha256 = "0bc30pw6gvw7i6gh58hhkgx2j432zlh2wh4d41abnkjqygifsxsd"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - blubber-server - bytestring - cereal - containers - gloss - network - unix - ]; - description = "The blubber client; connects to the blubber server"; - license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - mainProgram = "blubber"; - } - ) { }; - - "blubber-server" = callPackage ( - { - mkDerivation, - base, - Cabal, - cereal, - containers, - data-default-class, - network, - pandoc, - process, - random, - scotty, - text, - transformers, - unix, - }: - mkDerivation { - pname = "blubber-server"; - version = "0.0.1"; - sha256 = "12f594sl2c2hrxr95bpv911x0bdfpmaflp29mhw2yln2vh64nhj5"; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base - cereal - containers - random - ]; - executableHaskellDepends = [ - base - Cabal - cereal - containers - data-default-class - network - pandoc - process - random - scotty - text - transformers - unix - ]; - description = "The blubber server, serves blubber clients"; - license = lib.licenses.agpl3Only; - hydraPlatforms = lib.platforms.none; - mainProgram = "blubber-server"; - broken = true; - } - ) { }; - "blucontrol" = callPackage ( @@ -111646,84 +60627,6 @@ self: { inherit (pkgs.xorg) libXrandr; }; - "bludigon" = - callPackage - ( - { - mkDerivation, - base, - containers, - data-default, - deepseq, - directory, - filepath, - finite-typelits, - hspec, - libX11, - libXrandr, - lifted-base, - monad-control, - mtl, - process, - QuickCheck, - text, - time, - transformers, - transformers-base, - unix, - X11, - }: - mkDerivation { - pname = "bludigon"; - version = "0.1.1.0"; - sha256 = "1l6rc79wb9822qjrs9zvm53qp6dd0h8lp5sln55wqa0qzq5xq9mk"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - containers - data-default - deepseq - directory - filepath - finite-typelits - lifted-base - monad-control - mtl - process - text - time - transformers - transformers-base - unix - X11 - ]; - librarySystemDepends = [ - libX11 - libXrandr - ]; - executableHaskellDepends = [ base ]; - testHaskellDepends = [ - base - data-default - deepseq - hspec - mtl - QuickCheck - time - ]; - description = "Configurable blue light filter"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "bludigon"; - broken = true; - } - ) - { - inherit (pkgs.xorg) libX11; - inherit (pkgs.xorg) libXrandr; - }; - "bluefin" = callPackage ( { mkDerivation, bluefin-internal }: mkDerivation { @@ -111908,158 +60811,6 @@ self: { } ) { }; - "bluetile" = callPackage ( - { - mkDerivation, - base, - ConfigFile, - containers, - directory, - filepath, - glade, - gtk, - gtk2, - mtl, - process, - random, - regex-compat, - unix, - utf8-string, - X11, - X11-xft, - xmonad, - xmonad-contrib, - }: - mkDerivation { - pname = "bluetile"; - version = "0.6"; - sha256 = "13xfnx08xgbfppr4cqmrqj82w192ll4m1x4kmv5jdpk02yb4zqa2"; - isLibrary = false; - isExecutable = true; - enableSeparateDataOutput = true; - executableHaskellDepends = [ - base - ConfigFile - containers - directory - filepath - glade - gtk - mtl - process - random - regex-compat - unix - utf8-string - X11 - X11-xft - xmonad - xmonad-contrib - ]; - executablePkgconfigDepends = [ gtk2 ]; - description = "full-featured tiling for the GNOME desktop environment"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { inherit (pkgs) gtk2; }; - - "bluetileutils" = callPackage ( - { - mkDerivation, - base, - gtk, - }: - mkDerivation { - pname = "bluetileutils"; - version = "0.2"; - sha256 = "1qna8rr50mmd90xp7pwhcknx12dv2n7w5pdsw28kpbxykljrszgm"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - gtk - ]; - description = "Utilities for Bluetile"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "bluetilemockwin-obsolete"; - broken = true; - } - ) { }; - - "blunk-hask-tests" = callPackage ( - { mkDerivation, base }: - mkDerivation { - pname = "blunk-hask-tests"; - version = "0.2"; - sha256 = "10x4xjlp1mj9gmsibvd21k76gj97prdsgwxxpg39425xgrzph6ll"; - revision = "1"; - editedCabalFile = "0wnp6rzq3iisi9vfk0nci4cb8kdwijdyv60f6kg0bhz1xzn7i6ww"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ base ]; - description = "spam"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "test1"; - broken = true; - } - ) { }; - - "blunt" = callPackage ( - { - mkDerivation, - aeson, - base, - bytestring, - clay, - flow, - http-types, - jmacro, - lucid, - pointfree, - pointful, - text, - wai, - wai-extra, - wai-websockets, - warp, - websockets, - wl-pprint-text, - }: - mkDerivation { - pname = "blunt"; - version = "1.0.2"; - sha256 = "1p0mwpjvrv9d0b0gp6s55zys9vcbhpjsjbi711f5x4dagdl0xkhc"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson - base - bytestring - clay - flow - http-types - jmacro - lucid - pointfree - pointful - text - wai - wai-extra - wai-websockets - warp - websockets - wl-pprint-text - ]; - executableHaskellDepends = [ base ]; - description = "Convert between pointfree and pointful expressions"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - mainProgram = "blunt"; - } - ) { }; - "bm" = callPackage ( { mkDerivation, @@ -112192,34 +60943,6 @@ self: { } ) { }; - "bno055-haskell" = callPackage ( - { - mkDerivation, - base, - bytestring, - cereal, - h2c, - mtl, - resourcet, - }: - mkDerivation { - pname = "bno055-haskell"; - version = "0.1.0"; - sha256 = "1n4s0ljlgf1qrlyzaj161nbx7sa162v26p0i2i17n12m8zwjkp3s"; - libraryHaskellDepends = [ - base - bytestring - cereal - h2c - mtl - resourcet - ]; - description = "Library for communication with the Bosch BNO055 orientation sensor"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "board-games" = callPackage ( { mkDerivation, @@ -112371,82 +61094,6 @@ self: { } ) { }; - "bogocopy" = callPackage ( - { - mkDerivation, - base, - directory, - filemanip, - filepath, - optparse-applicative, - shelly, - text, - transformers, - unix, - }: - mkDerivation { - pname = "bogocopy"; - version = "0.1.0.2"; - sha256 = "0d783li4dzl0w6w5wlcsaksd7vvkgd5aqks015d80249dcvlwbab"; - revision = "2"; - editedCabalFile = "0nksflwxmzk6bxgdq6h59qn73l8dr89lcglmw3ffysckhyr7i3dz"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - directory - filemanip - filepath - optparse-applicative - shelly - text - transformers - unix - ]; - description = "Copy a directory tree, making zero-size sparse copies of big files"; - license = lib.licenses.bsd2; - hydraPlatforms = lib.platforms.none; - mainProgram = "bogocopy"; - broken = true; - } - ) { }; - - "bogre-banana" = callPackage ( - { - mkDerivation, - base, - hogre, - hois, - monad-control, - random, - reactive-banana, - }: - mkDerivation { - pname = "bogre-banana"; - version = "0.0.1"; - sha256 = "0zlrm911sbszxyffz18yf64935iv8s2yk3v8v6cwjij69haryvwi"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - hogre - hois - monad-control - random - reactive-banana - ]; - executableHaskellDepends = [ - base - hogre - hois - random - ]; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "bogre-banana-snake"; - } - ) { }; - "boilerplate" = callPackage ( { mkDerivation, @@ -112581,76 +61228,6 @@ self: { } ) { }; - "boltzmann-brain" = callPackage ( - { - mkDerivation, - aeson, - base, - bytestring, - containers, - directory, - edit-distance, - filepath, - graphviz, - haskell-src-exts, - hmatrix, - megaparsec, - MonadRandom, - mtl, - multiset, - pretty-terminal, - process, - random, - template-haskell, - text, - time, - transformers, - }: - mkDerivation { - pname = "boltzmann-brain"; - version = "1.6"; - sha256 = "1k6zsj4wijvxbbf3n95b61bii3p5m257capdw382613v7wp1yh6a"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson - base - bytestring - containers - edit-distance - graphviz - haskell-src-exts - hmatrix - megaparsec - MonadRandom - mtl - multiset - pretty-terminal - process - random - template-haskell - text - time - transformers - ]; - executableHaskellDepends = [ - aeson - base - bytestring - containers - directory - filepath - megaparsec - text - ]; - description = "Analytic sampler compiler for combinatorial systems"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "bb"; - broken = true; - } - ) { }; - "boltzmann-samplers" = callPackage ( { mkDerivation, @@ -112788,128 +61365,6 @@ self: { } ) { }; - "bond-haskell" = callPackage ( - { - mkDerivation, - aeson, - array, - base, - binary, - bond-haskell-compiler, - bytestring, - containers, - criterion, - deepseq, - either, - extra, - filepath, - hashable, - mtl, - scientific, - tasty, - tasty-golden, - tasty-hunit, - tasty-quickcheck, - text, - unordered-containers, - vector, - }: - mkDerivation { - pname = "bond-haskell"; - version = "0.1.5.0"; - sha256 = "01l6n6gx2qdwan1dx8vswvm13scp0dxbdvnv5j4w34iyj6qg0qnv"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - aeson - array - base - binary - bond-haskell-compiler - bytestring - containers - deepseq - extra - hashable - mtl - scientific - text - unordered-containers - vector - ]; - testHaskellDepends = [ - aeson - base - bytestring - containers - deepseq - either - filepath - mtl - tasty - tasty-golden - tasty-hunit - tasty-quickcheck - unordered-containers - vector - ]; - benchmarkHaskellDepends = [ - base - bytestring - criterion - filepath - vector - ]; - description = "Runtime support for BOND serialization"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "bond-haskell-compiler" = callPackage ( - { - mkDerivation, - aeson, - base, - bond, - bytestring, - cmdargs, - directory, - filepath, - haskell-src-exts, - monad-loops, - text, - }: - mkDerivation { - pname = "bond-haskell-compiler"; - version = "0.1.5.0"; - sha256 = "04xwbqd04c62bcwpg8n4vm1r4agqc2scr77s8fnidfwh55mw3z08"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - bond - filepath - haskell-src-exts - text - ]; - executableHaskellDepends = [ - aeson - base - bond - bytestring - cmdargs - directory - filepath - monad-loops - ]; - testHaskellDepends = [ base ]; - description = "Bond code generator for Haskell"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "hbc"; - } - ) { }; - "bookhound" = callPackage ( { mkDerivation, @@ -112977,149 +61432,6 @@ self: { } ) { }; - "bookkeeper" = callPackage ( - { - mkDerivation, - base, - criterion, - data-default-class, - doctest, - Glob, - hspec, - markdown-unlit, - QuickCheck, - type-level-sets, - yaml, - }: - mkDerivation { - pname = "bookkeeper"; - version = "0.2.5"; - sha256 = "1mj3qj97zq5zf7xvg8f62bw8jacij41435rpgcfczjisgylm1nc5"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - data-default-class - type-level-sets - ]; - executableHaskellDepends = [ - base - data-default-class - markdown-unlit - type-level-sets - ]; - testHaskellDepends = [ - base - data-default-class - doctest - Glob - hspec - QuickCheck - type-level-sets - yaml - ]; - benchmarkHaskellDepends = [ - base - criterion - data-default-class - type-level-sets - ]; - description = "Anonymous records and overloaded labels"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "readme"; - } - ) { }; - - "bookkeeper-permissions" = callPackage ( - { - mkDerivation, - base, - bookkeeper, - type-level-sets, - }: - mkDerivation { - pname = "bookkeeper-permissions"; - version = "0.1.0.0"; - sha256 = "1d3wzj4nh8f436wfqhdlhrpxhrrhqh97wrfyykm26bnngy4kdsk6"; - libraryHaskellDepends = [ - base - bookkeeper - type-level-sets - ]; - description = "Permissions for bookkeeper records"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "bookkeeping" = callPackage ( - { - mkDerivation, - base, - doctest, - Glob, - mono-traversable, - text, - time, - transaction, - }: - mkDerivation { - pname = "bookkeeping"; - version = "0.4.0.1"; - sha256 = "0afa4g5c9csjn747732qqbs3ghp8c4jyxhfb9k09igfaladrvzfl"; - libraryHaskellDepends = [ - base - mono-traversable - text - time - transaction - ]; - testHaskellDepends = [ - base - doctest - Glob - ]; - description = "A module for bookkeeping by double entry"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "bookkeeping-jp" = callPackage ( - { - mkDerivation, - base, - bookkeeping, - doctest, - Glob, - mono-traversable, - text, - time, - }: - mkDerivation { - pname = "bookkeeping-jp"; - version = "0.1.1.4"; - sha256 = "109bxawdh7a21mws1vv9hsdhm35f3air90c8wx2adlsj5sv7qdin"; - libraryHaskellDepends = [ - base - bookkeeping - mono-traversable - text - time - ]; - testHaskellDepends = [ - base - doctest - Glob - ]; - description = "Helper functions for Japanese bookkeeping"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "bool-extras" = callPackage ( { mkDerivation, base }: mkDerivation { @@ -113144,37 +61456,6 @@ self: { } ) { }; - "boolean-like" = callPackage ( - { - mkDerivation, - attoparsec, - base, - bytestring, - containers, - semigroups, - text, - vector, - }: - mkDerivation { - pname = "boolean-like"; - version = "0.1.1.0"; - sha256 = "1f2qjqjz13w6gq80qymq57917k5aknhxbx4lzpnn30frlqhpp93c"; - libraryHaskellDepends = [ - attoparsec - base - bytestring - containers - semigroups - text - vector - ]; - description = "Logical combinatory operations dealing with datatypes representing booleans by their constructors"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "boolean-list" = callPackage ( { mkDerivation, @@ -113196,42 +61477,6 @@ self: { } ) { }; - "boolean-normal-forms" = callPackage ( - { - mkDerivation, - base, - cond, - containers, - deepseq, - QuickCheck, - tasty, - tasty-quickcheck, - }: - mkDerivation { - pname = "boolean-normal-forms"; - version = "0.0.1.1"; - sha256 = "0zsll476c7g5syfz54kwcb4d2chh9q6gh0f42847n3ja1d64gaar"; - libraryHaskellDepends = [ - base - cond - containers - deepseq - ]; - testHaskellDepends = [ - base - cond - containers - QuickCheck - tasty - tasty-quickcheck - ]; - description = "Boolean normal form: NNF, DNF & CNF"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "boolector" = callPackage ( { mkDerivation, @@ -113351,35 +61596,6 @@ self: { } ) { }; - "boombox" = callPackage ( - { - mkDerivation, - base, - bytestring, - comonad, - semigroupoids, - semigroups, - transformers, - }: - mkDerivation { - pname = "boombox"; - version = "0.0"; - sha256 = "1z04hz61y78mvrvin0w93zvfa4xagw3w06hzcymqn4ixx0g0z3z4"; - libraryHaskellDepends = [ - base - bytestring - comonad - semigroupoids - semigroups - transformers - ]; - description = "Chronokinetic stream sources and incremental consumers"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "boomerang" = callPackage ( { mkDerivation, @@ -113407,43 +61623,6 @@ self: { } ) { }; - "boomslang" = callPackage ( - { - mkDerivation, - base, - containers, - data-accessor, - data-accessor-template, - font-opengl-basic4x6, - GLFW-b, - MonadRandom, - mtl, - OpenGL, - }: - mkDerivation { - pname = "boomslang"; - version = "0.0.4"; - sha256 = "0yqqb4s5ld4fv7x17d5dp7z2dglrcmgb7fr4n8x4n2pysylxm9nh"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - containers - data-accessor - data-accessor-template - font-opengl-basic4x6 - GLFW-b - MonadRandom - mtl - OpenGL - ]; - description = "Boomshine clone"; - license = lib.licenses.publicDomain; - hydraPlatforms = lib.platforms.none; - mainProgram = "boomslang"; - } - ) { }; - "boomwhacker" = callPackage ( { mkDerivation, @@ -113569,188 +61748,6 @@ self: { } ) { }; - "boots" = callPackage ( - { - mkDerivation, - base, - exceptions, - hspec, - mtl, - }: - mkDerivation { - pname = "boots"; - version = "0.2.0.1"; - sha256 = "04dh749p5nwar3hgmx5g12814lazwrzzqxbxbk4f003qpbd8np8w"; - libraryHaskellDepends = [ - base - exceptions - mtl - ]; - testHaskellDepends = [ - base - exceptions - hspec - mtl - ]; - description = "IoC Monad in Haskell"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "boots-app" = callPackage ( - { - mkDerivation, - base, - boots, - data-default, - exceptions, - fast-logger, - megaparsec, - microlens, - mtl, - optparse-applicative, - salak, - salak-yaml, - splitmix, - text, - time, - unliftio-core, - unordered-containers, - }: - mkDerivation { - pname = "boots-app"; - version = "0.2.0.1"; - sha256 = "0wk177f6ljcqd0ya7cddvx3i6sdwx0wl9fz1idzfa8klb8pnkghh"; - revision = "1"; - editedCabalFile = "0a69kvlilg1nmyxvlbm79hidg0zwjrgd556nnl73k08mgsk2xj1v"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - boots - data-default - exceptions - fast-logger - megaparsec - microlens - mtl - optparse-applicative - salak - salak-yaml - splitmix - text - unliftio-core - unordered-containers - ]; - executableHaskellDepends = [ - base - time - ]; - description = "Factory for quickly building an application"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - mainProgram = "demo-app"; - } - ) { }; - - "boots-cloud" = callPackage ( - { - mkDerivation, - aeson, - base, - boots, - boots-app, - boots-web, - bytestring, - http-client, - salak, - servant, - servant-client, - text, - unordered-containers, - }: - mkDerivation { - pname = "boots-cloud"; - version = "0.2"; - sha256 = "0wfbzf753h3bgfdw0gfh4cwi40qv2ghyyznfahwxkh9aabrwckqp"; - libraryHaskellDepends = [ - aeson - base - boots - boots-app - boots-web - bytestring - http-client - salak - servant - servant-client - text - unordered-containers - ]; - description = "Factory for quickly building a microservice"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "boots-web" = callPackage ( - { - mkDerivation, - aeson, - base, - boots, - boots-app, - bytestring, - containers, - ekg-core, - http-types, - microlens, - monad-logger, - salak, - servant, - servant-server, - servant-swagger, - swagger2, - text, - unordered-containers, - vault, - wai, - warp, - }: - mkDerivation { - pname = "boots-web"; - version = "0.2.0.1"; - sha256 = "1czylbghh9rzhr4zs394gdm39d2xqqkv3v7fjzq1askah48zqx18"; - libraryHaskellDepends = [ - aeson - base - boots - boots-app - bytestring - containers - ekg-core - http-types - microlens - monad-logger - salak - servant - servant-server - servant-swagger - swagger2 - text - unordered-containers - vault - wai - warp - ]; - description = "Factory for quickly building a web application"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "bootstrap-types" = callPackage ( { mkDerivation, @@ -113789,120 +61786,10 @@ self: { testHaskellDepends = [ base hspec - QuickCheck - ]; - description = "Implementation of the Borda count election method"; - license = lib.licenses.bsd3; - } - ) { }; - - "borel" = callPackage ( - { - mkDerivation, - aeson, - async, - attoparsec, - base, - bimap, - cassava, - ceilometer-common, - chevalier-common, - configurator, - containers, - either, - errors, - hslogger, - hspec, - lens, - lens-properties, - marquise, - mtl, - multiset, - network, - network-uri, - pipes, - pipes-concurrency, - pipes-safe, - QuickCheck, - text, - time, - transformers, - unordered-containers, - vaultaire-common, - vector, - zeromq4-haskell, - }: - mkDerivation { - pname = "borel"; - version = "0.18.0"; - sha256 = "0daayl70l8afpf6l4822nz2cqjy2k8zbrj89apipjbynsq543453"; - libraryHaskellDepends = [ - aeson - async - attoparsec - base - bimap - cassava - ceilometer-common - chevalier-common - configurator - containers - errors - hslogger - lens - marquise - mtl - multiset - network - network-uri - pipes - pipes-concurrency - pipes-safe - text - time - transformers - unordered-containers - vaultaire-common - vector - zeromq4-haskell - ]; - testHaskellDepends = [ - aeson - async - attoparsec - base - bimap - cassava - ceilometer-common - chevalier-common - configurator - containers - either - errors - hslogger - hspec - lens - lens-properties - marquise - mtl - multiset - network - network-uri - pipes - pipes-concurrency - pipes-safe - QuickCheck - text - time - transformers - unordered-containers - vaultaire-common - vector - zeromq4-haskell + QuickCheck ]; - description = "Metering System for OpenStack metrics provided by Vaultaire"; + description = "Implementation of the Borda count election method"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; } ) { }; @@ -113956,35 +61843,6 @@ self: { } ) { }; - "boring-window-switcher" = callPackage ( - { - mkDerivation, - base, - gtk, - transformers, - X11, - }: - mkDerivation { - pname = "boring-window-switcher"; - version = "0.1.0.5"; - sha256 = "062l93lh9y9wgdf8f1xql07ci8rpcspaagpsmcyc6wnikganls9w"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - gtk - transformers - X11 - ]; - executableHaskellDepends = [ base ]; - description = "A boring window switcher"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "boring-window-switcher"; - broken = true; - } - ) { }; - "borsh" = callPackage ( { mkDerivation, @@ -114041,29 +61899,6 @@ self: { } ) { }; - "bot" = callPackage ( - { - mkDerivation, - arrows, - base, - Stream, - }: - mkDerivation { - pname = "bot"; - version = "0.3"; - sha256 = "0crs1c6v298zqkjzkdgicigx22gvp9xv7bjlynbyckvx0lrvfmrc"; - libraryHaskellDepends = [ - arrows - base - Stream - ]; - description = "bots for functional reactive programming"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "botan-bindings" = callPackage ( { mkDerivation, @@ -114147,29 +61982,6 @@ self: { description = "Like Maybe, but with a different Monoid instance"; license = lib.licenses.mit; hydraPlatforms = lib.platforms.none; - } - ) { }; - - "botpp" = callPackage ( - { - mkDerivation, - base, - bytestring, - }: - mkDerivation { - pname = "botpp"; - version = "0.1"; - sha256 = "0ir6h4zkj05na1gyf7h97s832jkphh33c9qjk2i290d0q9y8s4fw"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - bytestring - ]; - description = "Build tool for Lambdabot"; - license = "GPL"; - hydraPlatforms = lib.platforms.none; - mainProgram = "BotPP"; broken = true; } ) { }; @@ -114330,30 +62142,6 @@ self: { } ) { }; - "bound-gen" = callPackage ( - { - mkDerivation, - base, - bound, - monad-gen, - mtl, - }: - mkDerivation { - pname = "bound-gen"; - version = "0.1.0.2"; - sha256 = "1il4vb497d0195mhvra5djkn3mbdzd8dmcnffpqh1pv1pj8n8hwp"; - libraryHaskellDepends = [ - base - bound - monad-gen - mtl - ]; - description = "Unwrap Scope's with globally fresh values"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "bound-simple" = callPackage ( { mkDerivation, @@ -114533,38 +62321,6 @@ self: { } ) { }; - "bowntz" = callPackage ( - { - mkDerivation, - base, - containers, - GLUT, - hosc, - hsc3, - random, - }: - mkDerivation { - pname = "bowntz"; - version = "2"; - sha256 = "0i8fi5xq04s9mzyy1vdshmlyybzhim0sr9nyxxfdbvcaai796i5z"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - containers - GLUT - hosc - hsc3 - random - ]; - description = "audio-visual pseudo-physical simulation of colliding circles"; - license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - mainProgram = "bowntz"; - broken = true; - } - ) { }; - "bowtie" = callPackage ( { mkDerivation, @@ -114818,77 +62574,6 @@ self: { } ) { }; - "braid" = callPackage ( - { - mkDerivation, - base, - containers, - diagrams-contrib, - diagrams-core, - diagrams-lib, - diagrams-svg, - split, - }: - mkDerivation { - pname = "braid"; - version = "0.1.0.0"; - sha256 = "16gd505lzg7wywnlvgpg2r95r6hn0wy9v472kz8gqc2vlifg998r"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - containers - diagrams-contrib - diagrams-core - diagrams-lib - diagrams-svg - split - ]; - executableHaskellDepends = [ - base - containers - diagrams-contrib - diagrams-core - diagrams-lib - diagrams-svg - split - ]; - description = "Types and functions to work with braids and Khovanov homology"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "KappaView"; - broken = true; - } - ) { }; - - "brain-bleep" = callPackage ( - { - mkDerivation, - array, - base, - containers, - parsec, - }: - mkDerivation { - pname = "brain-bleep"; - version = "0.1.0.2"; - sha256 = "08rb1b7m5lpgiwdy1gl3dkc2ymc6l8ifssj4q2rqp46b27nbwsgz"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - array - base - containers - parsec - ]; - description = "primitive imperative language"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "brain-bleep"; - broken = true; - } - ) { }; - "brainfuck" = callPackage ( { mkDerivation, @@ -115124,33 +62809,6 @@ self: { } ) { }; - "breakout" = callPackage ( - { - mkDerivation, - base, - haskgame, - mtl, - SDL, - }: - mkDerivation { - pname = "breakout"; - version = "0.0.2"; - sha256 = "04qs2r944jbb2i11dqlvrav8iaanrgp15jri0mq6nf8ccjldh3wr"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - haskgame - mtl - SDL - ]; - description = "A simple Breakout game implementation"; - license = "GPL"; - hydraPlatforms = lib.platforms.none; - mainProgram = "breakout"; - } - ) { }; - "breakpoint" = callPackage ( { mkDerivation, @@ -115259,36 +62917,6 @@ self: { } ) { }; - "brians-brain" = callPackage ( - { - mkDerivation, - array, - base, - parallel, - random, - SDL, - }: - mkDerivation { - pname = "brians-brain"; - version = "0.0.1"; - sha256 = "0a9gzclnqb28mm5gf2iiiby30qa0pwlwz3c115sim4lxpq60qran"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - array - base - parallel - random - SDL - ]; - description = "A Haskell implementation of the Brian's Brain cellular automaton"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "brians-brain"; - broken = true; - } - ) { }; - "brick" = callPackage ( { mkDerivation, @@ -115419,91 +63047,6 @@ self: { } ) { }; - "brick-dropdownmenu" = callPackage ( - { - mkDerivation, - base, - brick, - containers, - microlens, - microlens-ghc, - microlens-th, - pointedlist, - vector, - vty, - }: - mkDerivation { - pname = "brick-dropdownmenu"; - version = "0.1.0"; - sha256 = "1801l15xrl5a822v0cdrf8d41iklfqlp6gzkyj14a7fqf3ycc7rw"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - brick - containers - microlens - microlens-ghc - microlens-th - pointedlist - vector - vty - ]; - description = "A drop-down menu widget for brick"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "brick-filetree" = callPackage ( - { - mkDerivation, - base, - brick, - comonad, - containers, - directory, - directory-tree, - filepath, - free, - vector, - vty, - }: - mkDerivation { - pname = "brick-filetree"; - version = "0.1.0.3"; - sha256 = "06jifqnr3n6mzfh6f7rik6bw467ff26aydlqvm6g57msa19mxjnj"; - libraryHaskellDepends = [ - base - brick - comonad - containers - directory - directory-tree - filepath - free - vector - vty - ]; - testHaskellDepends = [ - base - brick - comonad - containers - directory - directory-tree - filepath - free - vector - vty - ]; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "brick-list-search" = callPackage ( { mkDerivation, @@ -115672,292 +63215,6 @@ self: { } ) { }; - "bricks" = callPackage ( - { - mkDerivation, - base, - bricks-internal, - bricks-internal-test, - bricks-parsec, - bricks-rendering, - bricks-syntax, - containers, - doctest, - hedgehog, - mtl, - parsec, - template-haskell, - text, - transformers, - }: - mkDerivation { - pname = "bricks"; - version = "0.0.0.4"; - sha256 = "018cp48bm3hk20kfq544hm50s6bik37lv1hnsdpkg6ibgz6a9i4v"; - libraryHaskellDepends = [ - base - bricks-internal - bricks-parsec - bricks-rendering - bricks-syntax - containers - mtl - parsec - text - transformers - ]; - testHaskellDepends = [ - base - bricks-internal - bricks-internal-test - bricks-parsec - bricks-rendering - bricks-syntax - containers - doctest - hedgehog - mtl - parsec - template-haskell - text - transformers - ]; - description = "Bricks is a lazy functional language based on Nix"; - license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "bricks-internal" = callPackage ( - { - mkDerivation, - base, - containers, - doctest, - either-list-functions, - text, - }: - mkDerivation { - pname = "bricks-internal"; - version = "0.0.0.4"; - sha256 = "1c4nav1ak6nz06ps6pwsrd6ci8ly3xqi6yd8clsvrhqi1r4cwz80"; - libraryHaskellDepends = [ - base - containers - either-list-functions - text - ]; - testHaskellDepends = [ - base - containers - doctest - either-list-functions - text - ]; - description = "..."; - license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "bricks-internal-test" = callPackage ( - { - mkDerivation, - base, - bricks-internal, - containers, - hedgehog, - template-haskell, - text, - }: - mkDerivation { - pname = "bricks-internal-test"; - version = "0.0.0.4"; - sha256 = "1kvhvwi7qd1rxqn6zxz0vmzqnq2w5fzm1dld5yy08v6jr3f7ri8a"; - libraryHaskellDepends = [ - base - bricks-internal - containers - hedgehog - template-haskell - text - ]; - description = "..."; - license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "bricks-parsec" = callPackage ( - { - mkDerivation, - base, - bricks-internal, - bricks-internal-test, - bricks-rendering, - bricks-syntax, - containers, - doctest, - hedgehog, - parsec, - text, - }: - mkDerivation { - pname = "bricks-parsec"; - version = "0.0.0.4"; - sha256 = "1rgcrdn4h4pmq9sa7fbzlmv93j6g80mhirnrx6f5iqgmshlg4cq0"; - libraryHaskellDepends = [ - base - bricks-internal - bricks-syntax - containers - parsec - text - ]; - testHaskellDepends = [ - base - bricks-internal - bricks-internal-test - bricks-rendering - bricks-syntax - containers - doctest - hedgehog - parsec - text - ]; - description = "..."; - license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "bricks-rendering" = callPackage ( - { - mkDerivation, - base, - bricks-internal, - bricks-internal-test, - bricks-syntax, - containers, - doctest, - hedgehog, - template-haskell, - text, - }: - mkDerivation { - pname = "bricks-rendering"; - version = "0.0.0.4"; - sha256 = "1ixg8qsima8hp547ms3jid4hcr0l605ha353r0bngwjxc5h3ixj4"; - libraryHaskellDepends = [ - base - bricks-internal - bricks-syntax - containers - text - ]; - testHaskellDepends = [ - base - bricks-internal - bricks-internal-test - bricks-syntax - containers - doctest - hedgehog - template-haskell - text - ]; - description = "..."; - license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "bricks-syntax" = callPackage ( - { - mkDerivation, - base, - bricks-internal, - containers, - doctest, - either-list-functions, - exceptions, - hint, - text, - }: - mkDerivation { - pname = "bricks-syntax"; - version = "0.0.0.4"; - sha256 = "0bg4vx32fh9fn5lvccayr9dfzynpql08x6ffi0xrw1rkpn2hz415"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base - bricks-internal - containers - either-list-functions - text - ]; - testHaskellDepends = [ - base - bricks-internal - containers - doctest - either-list-functions - exceptions - hint - text - ]; - description = "..."; - license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "brillig" = callPackage ( - { - mkDerivation, - base, - binary, - cmdargs, - containers, - directory, - filepath, - ListZipper, - text, - }: - mkDerivation { - pname = "brillig"; - version = "0.3.1"; - sha256 = "18gm24fd5ad6dgbqiwcs750rvq2v6lmclysd6acj2y8iybwcsg8n"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - binary - containers - directory - filepath - ListZipper - text - ]; - executableHaskellDepends = [ - base - binary - cmdargs - containers - directory - filepath - text - ]; - description = "Simple part of speech tagger"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "brillig"; - broken = true; - } - ) { }; - "brillo" = callPackage ( { mkDerivation, @@ -116416,203 +63673,6 @@ self: { } ) { }; - "broccoli" = callPackage ( - { - mkDerivation, - base, - containers, - stm, - time, - }: - mkDerivation { - pname = "broccoli"; - version = "0.4.1.0"; - sha256 = "084nil9rfs3xpp4rk3qlwf6gsaljm57g7divfzd88dk9np6q5iwh"; - libraryHaskellDepends = [ - base - containers - stm - time - ]; - description = "Small library for interactive functional programs"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "brok" = callPackage ( - { - mkDerivation, - ansi-terminal, - attoparsec, - base, - classy-prelude, - connection, - containers, - directory, - file-embed, - http-client, - http-client-tls, - http-conduit, - tasty, - tasty-discover, - tasty-expected-failure, - tasty-hunit, - template-haskell, - text, - time, - }: - mkDerivation { - pname = "brok"; - version = "1.1.0"; - sha256 = "0y8gppdyhwwlpw3d0kii2varqd25lxq3813xnjm632h4942l76xv"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - ansi-terminal - attoparsec - base - classy-prelude - connection - containers - directory - file-embed - http-client - http-client-tls - http-conduit - template-haskell - text - time - ]; - executableHaskellDepends = [ - base - classy-prelude - file-embed - ]; - testHaskellDepends = [ - base - classy-prelude - file-embed - tasty - tasty-discover - tasty-expected-failure - tasty-hunit - ]; - testToolDepends = [ tasty-discover ]; - description = "Finds broken links in text files"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "brok"; - broken = true; - } - ) { }; - - "broker-haskell" = callPackage ( - { - mkDerivation, - base, - broker, - bytestring, - hspec, - }: - mkDerivation { - pname = "broker-haskell"; - version = "0.1.0.0"; - sha256 = "0jxzn7mbwsi6q9kwl0lbbsapga2x0jc68faw7b9jvfi05yjp833d"; - libraryHaskellDepends = [ base ]; - librarySystemDepends = [ broker ]; - testHaskellDepends = [ - base - bytestring - hspec - ]; - description = "Haskell bindings to Broker, Bro's messaging library"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { broker = null; }; - - "bronyradiogermany-common" = callPackage ( - { - mkDerivation, - aeson, - base, - bytestring, - network-uri, - text, - time, - tz, - uuid-types, - }: - mkDerivation { - pname = "bronyradiogermany-common"; - version = "1.0.0.1"; - sha256 = "1hwqif1jnwjhkb22j7rsc7fznvd7373gbfsl46196bb6489bbcvy"; - revision = "1"; - editedCabalFile = "158y92fki5kk8pk7z5whc70qbw0w17v0j0zn486hym3bq6qif74k"; - libraryHaskellDepends = [ - aeson - base - bytestring - network-uri - text - time - tz - uuid-types - ]; - description = "Common types and URIs for the BronyRadioGermany API bindings"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "bronyradiogermany-streaming" = callPackage ( - { - mkDerivation, - aeson, - base, - bronyradiogermany-common, - bytestring, - case-insensitive, - http-types, - mtl, - streaming, - streaming-bytestring, - streaming-utils, - text, - time, - uuid, - }: - mkDerivation { - pname = "bronyradiogermany-streaming"; - version = "1.0.0.1"; - sha256 = "1a2yz2cbjpcywis7fy5l1w3pipirh6rjfcgs1mdyhgza12qnbx09"; - revision = "1"; - editedCabalFile = "0zhgpm0yxr9ablrc4b99wpwpj1qv2a8bq8mpz525ni17jix3iqc8"; - libraryHaskellDepends = [ - aeson - base - bronyradiogermany-common - bytestring - case-insensitive - http-types - mtl - streaming - streaming-bytestring - streaming-utils - text - time - uuid - ]; - description = "Streaming interface for the BronyRadioGermany API"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "brotli" = callPackage ( { mkDerivation, @@ -116646,51 +63706,6 @@ self: { } ) { inherit (pkgs) brotli; }; - "brotli-conduit" = callPackage ( - { - mkDerivation, - base, - brotli, - bytestring, - conduit, - HUnit, - QuickCheck, - resourcet, - test-framework, - test-framework-hunit, - test-framework-quickcheck2, - transformers, - }: - mkDerivation { - pname = "brotli-conduit"; - version = "0.0.0.0"; - sha256 = "00hl8g4aw4klzvq8gbgx3ff5iq5diz7lxk9ssn7q8icdpl8w5fbf"; - libraryHaskellDepends = [ - base - brotli - bytestring - conduit - resourcet - transformers - ]; - testHaskellDepends = [ - base - bytestring - conduit - HUnit - QuickCheck - resourcet - test-framework - test-framework-hunit - test-framework-quickcheck2 - ]; - description = "Conduit interface for Brotli (RFC7932) compression"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "brotli-streams" = callPackage ( { mkDerivation, @@ -116731,43 +63746,6 @@ self: { } ) { }; - "browscap" = callPackage ( - { - mkDerivation, - base, - bytestring, - deepseq, - ini, - lens, - lrucache, - mtl, - text, - unordered-containers, - wreq, - }: - mkDerivation { - pname = "browscap"; - version = "0"; - sha256 = "05igmcjb2hijym0bzxy6ppzchxvwlszxqkzzwyqwpcbiyc54i94h"; - libraryHaskellDepends = [ - base - bytestring - deepseq - ini - lens - lrucache - mtl - text - unordered-containers - wreq - ]; - description = "A reader and interface for the Browser Capabilities Project data files"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "bsb-http-chunked" = callPackage ( { mkDerivation, @@ -116818,20 +63796,6 @@ self: { } ) { }; - "bsd-sysctl" = callPackage ( - { mkDerivation, base }: - mkDerivation { - pname = "bsd-sysctl"; - version = "1.0.8.0"; - sha256 = "0wflh3ncd47j2v70m6lbdmaif974fimv3dd4wyj6krb03vq6lvpd"; - libraryHaskellDepends = [ base ]; - description = "Access to the BSD sysctl(3) interface"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "bson" = callPackage ( { mkDerivation, @@ -116877,54 +63841,6 @@ self: { } ) { }; - "bson-generic" = callPackage ( - { - mkDerivation, - base, - bson, - ghc-prim, - text, - }: - mkDerivation { - pname = "bson-generic"; - version = "0.0.9"; - sha256 = "11a8k6rngz5rdgccwnifiydsfc87hlgy4mp6chi30m2jvdq92imb"; - libraryHaskellDepends = [ - base - bson - ghc-prim - text - ]; - description = "Generic functionality for BSON"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "bson-generics" = callPackage ( - { - mkDerivation, - base, - bson, - ghc-prim, - }: - mkDerivation { - pname = "bson-generics"; - version = "0.0.1"; - sha256 = "03ifgmifk0dx6fzws1qlx3c1nslrkvwman5g3c4iag842bl03gxp"; - libraryHaskellDepends = [ - base - bson - ghc-prim - ]; - description = "Generics functionality for BSON"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "bson-lens" = callPackage ( { mkDerivation, @@ -116948,33 +63864,6 @@ self: { } ) { }; - "bson-mapping" = callPackage ( - { - mkDerivation, - base, - bson, - template-haskell, - text, - th-lift, - }: - mkDerivation { - pname = "bson-mapping"; - version = "0.1.5.1"; - sha256 = "1pmc9z98v8il8knz36vg61nhji4i644dh3rbqfxnb8kmbciyp3iz"; - libraryHaskellDepends = [ - base - bson - template-haskell - text - th-lift - ]; - description = "Mapping between BSON and algebraic data types"; - license = "unknown"; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "bspack" = callPackage ( { mkDerivation, @@ -117018,29 +63907,6 @@ self: { } ) { }; - "bsparse" = callPackage ( - { - mkDerivation, - base, - bytestring, - }: - mkDerivation { - pname = "bsparse"; - version = "0.0.5"; - sha256 = "12wn8jlqkb9d9vpdbwc3m288cgnr15cq4wv5fxlp7f10p3y42l2a"; - revision = "1"; - editedCabalFile = "0vlcwcgmlk4ghwhiyy4234driyvq5ap5g587nmf23fh8b54g7j3q"; - libraryHaskellDepends = [ - base - bytestring - ]; - description = "A simple unassuming parser for bytestring"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "btc-lsp" = callPackage ( { mkDerivation, @@ -117227,124 +64093,6 @@ self: { ]; description = "Lightning service provider"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "btree" = callPackage ( - { - mkDerivation, - base, - clock, - containers, - ghc-prim, - hashable, - initialize, - MonadRandom, - primitive, - smallcheck, - tasty, - tasty-hunit, - tasty-smallcheck, - transformers, - }: - mkDerivation { - pname = "btree"; - version = "0.4.0"; - sha256 = "04jbvd247i8bfplyljp5937fw9x85w4v613kpzyb15z7nw2xr8l9"; - libraryHaskellDepends = [ - base - ghc-prim - initialize - primitive - ]; - testHaskellDepends = [ - base - containers - hashable - MonadRandom - primitive - smallcheck - tasty - tasty-hunit - tasty-smallcheck - transformers - ]; - benchmarkHaskellDepends = [ - base - clock - ghc-prim - hashable - ]; - description = "B-Tree on Unmanaged Heap"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "btree-concurrent" = callPackage ( - { - mkDerivation, - array, - base, - base64-bytestring, - bytestring, - cereal, - containers, - directory, - filepath, - hashable, - mtl, - QuickCheck, - random, - snappy, - stm, - time, - unix, - }: - mkDerivation { - pname = "btree-concurrent"; - version = "0.1.5"; - sha256 = "1xgw3ki3vypyxxiyzfjajjx1vzavyn1v9445cgbqwrr0n0wpkqm6"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - array - base - base64-bytestring - bytestring - cereal - containers - directory - filepath - hashable - mtl - random - snappy - stm - time - ]; - testHaskellDepends = [ - array - base - base64-bytestring - bytestring - cereal - containers - directory - filepath - hashable - mtl - QuickCheck - random - snappy - stm - time - unix - ]; - description = "A backend agnostic, concurrent BTree"; - license = "LGPL"; - hydraPlatforms = lib.platforms.none; - broken = true; } ) { }; @@ -117374,211 +64122,6 @@ self: { } ) { }; - "buchhaltung" = callPackage ( - { - mkDerivation, - aeson, - ansi-wl-pprint, - array, - async, - base, - boxes, - bytestring, - cassava, - containers, - data-default, - Decimal, - deepseq, - directory, - edit-distance, - file-embed, - filepath, - formatting, - hashable, - haskeline, - hint, - hledger, - hledger-lib, - lens, - lifted-base, - ListLike, - megaparsec, - MissingH, - monad-control, - mtl, - optparse-applicative, - parsec, - process, - regex-compat, - regex-tdfa, - regex-tdfa-text, - safe, - semigroups, - split, - strict, - temporary, - text, - time, - transformers, - unordered-containers, - vector, - yaml, - }: - mkDerivation { - pname = "buchhaltung"; - version = "0.0.7"; - sha256 = "1hkiiah2h64gkb9y6bagg5q182rylysdqwqlkn5lvmym4akp8zlb"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson - ansi-wl-pprint - array - async - base - boxes - bytestring - cassava - containers - data-default - Decimal - deepseq - directory - edit-distance - file-embed - filepath - formatting - hashable - haskeline - hint - hledger - hledger-lib - lens - lifted-base - ListLike - megaparsec - MissingH - monad-control - mtl - optparse-applicative - parsec - process - regex-compat - regex-tdfa - regex-tdfa-text - safe - semigroups - split - strict - temporary - text - time - transformers - unordered-containers - vector - yaml - ]; - executableHaskellDepends = [ - aeson - ansi-wl-pprint - array - async - base - boxes - bytestring - cassava - containers - data-default - Decimal - deepseq - directory - edit-distance - file-embed - filepath - formatting - hashable - haskeline - hint - hledger - hledger-lib - lens - lifted-base - ListLike - megaparsec - MissingH - monad-control - mtl - optparse-applicative - parsec - process - regex-compat - regex-tdfa - regex-tdfa-text - safe - semigroups - split - strict - temporary - text - time - transformers - unordered-containers - vector - yaml - ]; - description = "Automates most of your plain text accounting data entry in ledger format"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - mainProgram = "buchhaltung"; - } - ) { }; - - "buffer" = callPackage ( - { - mkDerivation, - base, - base-prelude, - bug, - bytestring, - criterion, - quickcheck-instances, - rerebase, - tasty, - tasty-hunit, - tasty-quickcheck, - }: - mkDerivation { - pname = "buffer"; - version = "0.5.3"; - sha256 = "0bf9y6rb3q26rk6qd7a2mjlb1gd1gp2k080ywhp5g48l474h6p26"; - revision = "2"; - editedCabalFile = "0lg7sy7c059a29gmyihlwck6d98vq5kqfkw4bjixnvc2r9znfcv7"; - libraryHaskellDepends = [ - base - base-prelude - bug - bytestring - ]; - testHaskellDepends = [ - bug - quickcheck-instances - rerebase - tasty - tasty-hunit - tasty-quickcheck - ]; - benchmarkHaskellDepends = [ - bug - criterion - rerebase - ]; - description = "Simple mutable low-level buffer for IO"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "buffer-builder" = callPackage ( { mkDerivation, @@ -117805,62 +64348,6 @@ self: { } ) { }; - "buffon" = callPackage ( - { - mkDerivation, - base, - monad-primitive, - mwc-random, - mwc-random-monad, - primitive, - transformers, - }: - mkDerivation { - pname = "buffon"; - version = "0.1.0.1"; - sha256 = "1v9kxm3yrw871567j8qza7gayllhsb77pxqriin4akvg77llz7l9"; - libraryHaskellDepends = [ - base - monad-primitive - mwc-random - mwc-random-monad - primitive - transformers - ]; - description = "An implementation of Buffon machines"; - license = lib.licenses.bsd2; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "buffon-machines" = callPackage ( - { - mkDerivation, - base, - mtl, - multiset, - random, - template-haskell, - }: - mkDerivation { - pname = "buffon-machines"; - version = "1.1.1.1"; - sha256 = "19qidzwg6mq8g2czzfqky7kh13jscsxc52ymfj8wlkngkciwvv5s"; - libraryHaskellDepends = [ - base - mtl - multiset - random - template-haskell - ]; - description = "Perfect simulation of discrete random variables"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "bug" = callPackage ( { mkDerivation, @@ -118123,57 +64610,6 @@ self: { } ) { }; - "bugzilla" = callPackage ( - { - mkDerivation, - aeson, - base, - blaze-builder, - bytestring, - connection, - containers, - data-default, - http-conduit, - http-types, - iso8601-time, - resourcet, - text, - time, - transformers, - unordered-containers, - vector, - }: - mkDerivation { - pname = "bugzilla"; - version = "0.2.1.1"; - sha256 = "19ayjkaniksivm99lgl7bfjabig00y0gd3w9ssabksg7rfwajc5d"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson - base - blaze-builder - bytestring - connection - containers - data-default - http-conduit - http-types - iso8601-time - resourcet - text - time - transformers - unordered-containers - vector - ]; - description = "A Haskell interface to the Bugzilla native REST API"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "bugzilla-redhat" = callPackage ( { mkDerivation, @@ -118321,257 +64757,6 @@ self: { } ) { }; - "buildable" = callPackage ( - { - mkDerivation, - base, - bytestring, - containers, - dlist, - text, - }: - mkDerivation { - pname = "buildable"; - version = "0.1.0.3"; - sha256 = "1jrvgm2k6m8k9hj7h727pf357zydmhq1ndl1z39ag6294xd2rgpx"; - libraryHaskellDepends = [ - base - bytestring - containers - dlist - text - ]; - description = "Typeclass for builders of linear data structures"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "buildbox" = callPackage ( - { - mkDerivation, - base, - bytestring, - containers, - directory, - exceptions, - mtl, - old-locale, - process, - stm, - temporary, - text, - time, - }: - mkDerivation { - pname = "buildbox"; - version = "2.2.1.2"; - sha256 = "10kasyr2rk8zm1dh7c2ka1djlxmb20lriphd9sm18z4fw3w82cxz"; - libraryHaskellDepends = [ - base - bytestring - containers - directory - exceptions - mtl - old-locale - process - stm - temporary - text - time - ]; - description = "Rehackable components for writing buildbots and test harnesses"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "buildbox-tools" = callPackage ( - { - mkDerivation, - base, - buildbox, - parseargs, - }: - mkDerivation { - pname = "buildbox-tools"; - version = "1.5.3.1"; - sha256 = "0j1fsdmaxnl1zxgvxilznw5jfaaphij6wnhllb64f59kvhpqmy4f"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - buildbox - parseargs - ]; - description = "Tools for working with buildbox benchmark result files"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "buildbox-results"; - } - ) { }; - - "builder" = callPackage ( - { - mkDerivation, - base, - byte-order, - primitive, - primitive-unaligned, - }: - mkDerivation { - pname = "builder"; - version = "0.2"; - sha256 = "04pcqxk9snlvm5kixqyz5aq0pxjlcvfxj403dxgyr3ch2zjx3n6l"; - libraryHaskellDepends = [ - base - byte-order - primitive - primitive-unaligned - ]; - description = "bounded ByteArray builder type"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "buildwrapper" = callPackage ( - { - mkDerivation, - aeson, - async, - attoparsec, - base, - bytestring, - Cabal, - cmdargs, - conduit, - conduit-extra, - containers, - cpphs, - deepseq, - directory, - dynamic-cabal, - filepath, - ghc, - ghc-paths, - ghc-pkg-lib, - haskell-src-exts, - HTF, - HUnit, - mtl, - old-time, - process, - regex-tdfa, - syb, - text, - time, - transformers, - unordered-containers, - utf8-string, - vector, - }: - mkDerivation { - pname = "buildwrapper"; - version = "0.9.1"; - sha256 = "1icm2vqimza6lslav01d11xq4v0p6dpymvx4md48ch8qbhdrn8r3"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson - async - attoparsec - base - bytestring - Cabal - conduit - conduit-extra - containers - cpphs - deepseq - directory - dynamic-cabal - filepath - ghc - ghc-paths - ghc-pkg-lib - haskell-src-exts - mtl - old-time - process - regex-tdfa - syb - text - time - transformers - unordered-containers - utf8-string - vector - ]; - executableHaskellDepends = [ - aeson - async - base - bytestring - Cabal - cmdargs - conduit - conduit-extra - containers - cpphs - directory - dynamic-cabal - filepath - ghc - ghc-paths - ghc-pkg-lib - haskell-src-exts - mtl - old-time - process - regex-tdfa - syb - text - time - transformers - vector - ]; - testHaskellDepends = [ - aeson - async - attoparsec - base - bytestring - Cabal - conduit - conduit-extra - containers - directory - dynamic-cabal - filepath - ghc-pkg-lib - HTF - HUnit - mtl - old-time - process - text - time - transformers - unordered-containers - vector - ]; - description = "A library and an executable that provide an easy API for a Haskell IDE"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "buildwrapper"; - } - ) { }; - "bullet" = callPackage ( { mkDerivation, @@ -118595,256 +64780,6 @@ self: { } ) { inherit (pkgs) bullet; }; - "bulletproofs" = callPackage ( - { - mkDerivation, - arithmoi, - base, - bytestring, - containers, - criterion, - cryptonite, - elliptic-curve, - galois-field, - memory, - MonadRandom, - protolude, - QuickCheck, - SHA, - tasty, - tasty-discover, - tasty-hunit, - tasty-quickcheck, - text, - }: - mkDerivation { - pname = "bulletproofs"; - version = "1.1.0"; - sha256 = "1sj38m2x4y9483nwnk61jk4jphsyllgv5bgrx26nqlph45a9222a"; - revision = "1"; - editedCabalFile = "1wpnqwf352lr2ahkikk5b69d6lzmqqy3y7shzmshdr3j6fbg7ggf"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - arithmoi - base - bytestring - containers - elliptic-curve - galois-field - memory - MonadRandom - protolude - QuickCheck - SHA - text - ]; - executableHaskellDepends = [ - arithmoi - base - bytestring - containers - elliptic-curve - galois-field - memory - MonadRandom - protolude - QuickCheck - SHA - text - ]; - testHaskellDepends = [ - arithmoi - base - bytestring - containers - cryptonite - elliptic-curve - galois-field - memory - MonadRandom - protolude - QuickCheck - SHA - tasty - tasty-discover - tasty-hunit - tasty-quickcheck - text - ]; - testToolDepends = [ tasty-discover ]; - benchmarkHaskellDepends = [ - arithmoi - base - bytestring - containers - criterion - elliptic-curve - galois-field - memory - MonadRandom - protolude - QuickCheck - SHA - tasty - tasty-hunit - tasty-quickcheck - text - ]; - description = "Bulletproofs are short zero-knowledge proofs without a trusted setup"; - license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; - mainProgram = "bulletproofs-example"; - } - ) { }; - - "bulmex" = callPackage ( - { - mkDerivation, - aeson, - base, - bytestring, - containers, - generic-lens, - hspec, - hspec-core, - jsaddle, - jsaddle-dom, - keycode, - lens, - network-uri, - reflex, - reflex-dom-core, - reflex-dom-helpers, - text, - time, - witherable, - }: - mkDerivation { - pname = "bulmex"; - version = "4.0.0"; - sha256 = "0892prpi8hf8mkwr6n9228bfyji0wgdz9hyh619k20f6xim13ysc"; - libraryHaskellDepends = [ - aeson - base - bytestring - containers - generic-lens - jsaddle - jsaddle-dom - keycode - lens - network-uri - reflex - reflex-dom-core - reflex-dom-helpers - text - time - witherable - ]; - testHaskellDepends = [ - aeson - base - bytestring - containers - generic-lens - hspec - hspec-core - jsaddle - jsaddle-dom - keycode - lens - network-uri - reflex - reflex-dom-core - reflex-dom-helpers - text - time - witherable - ]; - description = "Reflex infused with bulma (css)"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "bumper" = callPackage ( - { - mkDerivation, - base, - Cabal, - containers, - fclabels, - process, - regex-compat, - split, - strict, - }: - mkDerivation { - pname = "bumper"; - version = "0.6.0.3"; - sha256 = "1a6sqkdzq05az6yj3zmlcbx6bmhw4zjx2aijxfi481z3ifiy7z3w"; - revision = "3"; - editedCabalFile = "0r4fj5mxl452786jw6pr2nwhs5sszlxb9nwcrakr44jysm181lhw"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - Cabal - containers - fclabels - process - regex-compat - split - strict - ]; - description = "Automatically bump package versions, also transitively"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "bumper"; - broken = true; - } - ) { }; - - "bunz" = callPackage ( - { - mkDerivation, - base, - cmdargs, - doctest, - hspec, - text, - unix, - }: - mkDerivation { - pname = "bunz"; - version = "0.0.9"; - sha256 = "0q5520pdq52fhx4yd6lhxr77c00njmy0wqbmb0gi1p4ahqs5wrgs"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - text - ]; - executableHaskellDepends = [ - base - cmdargs - text - unix - ]; - testHaskellDepends = [ - base - doctest - hspec - ]; - description = "CLI tool to beautify JSON string"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - mainProgram = "bunz"; - broken = true; - } - ) { }; - "bureaucromancy" = callPackage ( { mkDerivation, @@ -118910,39 +64845,6 @@ self: { } ) { }; - "burnt-explorer" = callPackage ( - { - mkDerivation, - aeson, - base, - bitcoin-script, - bytestring, - cassava, - process, - scientific, - }: - mkDerivation { - pname = "burnt-explorer"; - version = "2.0.0"; - sha256 = "08r0hzpzyc8frx1k6rxv6b37hbz9yr5gfjsd9ikybx9m78cbgg3n"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - aeson - base - bitcoin-script - bytestring - cassava - process - scientific - ]; - description = "List OP_RETURN cryptocurrency transaction outputs"; - license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; - mainProgram = "burnt-explorer"; - } - ) { }; - "burrito" = callPackage ( { mkDerivation, @@ -118981,278 +64883,6 @@ self: { } ) { }; - "burst-detection" = callPackage ( - { - mkDerivation, - base, - criterion, - deepseq, - }: - mkDerivation { - pname = "burst-detection"; - version = "1.0"; - sha256 = "1pgrqjdc4n97s7jsb9ddmjkw3qa4c28p4fp1ajyx5bfxdll44dwm"; - libraryHaskellDepends = [ - base - deepseq - ]; - testHaskellDepends = [ base ]; - benchmarkHaskellDepends = [ - base - criterion - ]; - description = "Burst detection algorithms"; - license = lib.licenses.gpl2Only; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "bus-pirate" = callPackage ( - { - mkDerivation, - base, - bytestring, - errors, - serialport, - transformers, - }: - mkDerivation { - pname = "bus-pirate"; - version = "0.7.0"; - sha256 = "0zsh73nq802l180b3v6cd6x1h0cdf5r81i8sz8zvdd0d46lrnawk"; - revision = "1"; - editedCabalFile = "0amc8dk6v991iy1d23l5hbsn9lf551mjbm6mxldj46mm3y02nn67"; - libraryHaskellDepends = [ - base - bytestring - errors - serialport - transformers - ]; - description = "Haskell interface to the Bus Pirate binary interface"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "buster" = callPackage ( - { - mkDerivation, - base, - binary, - bytestring, - containers, - dataenc, - mtl, - old-locale, - parsec, - pretty, - time, - }: - mkDerivation { - pname = "buster"; - version = "2.51"; - sha256 = "12h77sa7z5ba6n2hx5kag51lp7q7hdmsd1cb006l7i46cq5b5zzg"; - libraryHaskellDepends = [ - base - binary - bytestring - containers - dataenc - mtl - old-locale - parsec - pretty - time - ]; - description = "Almost but not quite entirely unlike FRP"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "buster-gtk" = callPackage ( - { - mkDerivation, - base, - binary, - buster, - bytestring, - containers, - dataenc, - gtk, - mtl, - old-locale, - parsec, - pretty, - time, - }: - mkDerivation { - pname = "buster-gtk"; - version = "2.0"; - sha256 = "1ajmwdrx7cq5dh7zj0viipnhas0p910ax1yb37ina4nddrpx0gd1"; - libraryHaskellDepends = [ - base - binary - buster - bytestring - containers - dataenc - gtk - mtl - old-locale - parsec - pretty - time - ]; - description = "Almost but not quite entirely unlike FRP"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "buster-network" = callPackage ( - { - mkDerivation, - base, - binary, - buster, - bytestring, - containers, - dataenc, - haxr, - HTTP, - mtl, - network, - old-locale, - pretty, - time, - }: - mkDerivation { - pname = "buster-network"; - version = "1.2"; - sha256 = "17nzw5ycdrw3f1cgwcg1vh1jk80528nl7ksmbmxg2mgndc89kg3i"; - libraryHaskellDepends = [ - base - binary - buster - bytestring - containers - dataenc - haxr - HTTP - mtl - network - old-locale - pretty - time - ]; - description = "Almost but not quite entirely unlike FRP"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "bustle" = - callPackage - ( - { - mkDerivation, - base, - bytestring, - Cabal, - cairo, - containers, - directory, - filepath, - gio, - gio-unix, - glib, - gtk3, - HUnit, - libpcap, - mtl, - pango, - process, - QuickCheck, - system-glib, - test-framework, - test-framework-hunit, - text, - time, - transformers, - }: - mkDerivation { - pname = "bustle"; - version = "0.8.0"; - sha256 = "0g2p4s3z0xqng8bhcqml6dvvshmn8xlyhqz77jdcvcvxm7cykcrg"; - configureFlags = [ "-f-hgettext" ]; - isLibrary = false; - isExecutable = true; - enableSeparateDataOutput = true; - setupHaskellDepends = [ - base - Cabal - directory - filepath - process - ]; - libraryPkgconfigDepends = [ system-glib ]; - executableHaskellDepends = [ - base - bytestring - cairo - containers - directory - filepath - gio - glib - gtk3 - mtl - pango - process - text - time - transformers - ]; - executableSystemDepends = [ libpcap ]; - testHaskellDepends = [ - base - bytestring - cairo - containers - directory - filepath - glib - gtk3 - HUnit - mtl - pango - QuickCheck - test-framework - test-framework-hunit - text - transformers - ]; - testSystemDepends = [ libpcap ]; - testPkgconfigDepends = [ gio-unix ]; - description = "Draw sequence diagrams of D-Bus traffic"; - license = lib.licenses.lgpl21Plus; - badPlatforms = lib.platforms.darwin; - hydraPlatforms = lib.platforms.none; - mainProgram = "bustle"; - broken = true; - } - ) - { - gio-unix = null; - inherit (pkgs) libpcap; - system-glib = pkgs.glib; - }; - "butcher" = callPackage ( { mkDerivation, @@ -119314,98 +64944,6 @@ self: { } ) { }; - "butter" = callPackage ( - { - mkDerivation, - aeson, - base, - bytestring, - containers, - forkable-monad, - free, - HUnit, - network-simple, - stm, - template-haskell, - text, - transformers, - }: - mkDerivation { - pname = "butter"; - version = "0.1.0.6"; - sha256 = "0r215qycck6w6286w0y69ghpzmcp1bl23j44arabrh2p39lb4h46"; - libraryHaskellDepends = [ - aeson - base - bytestring - containers - forkable-monad - free - HUnit - network-simple - stm - template-haskell - text - transformers - ]; - testHaskellDepends = [ - aeson - base - bytestring - containers - forkable-monad - free - HUnit - network-simple - stm - template-haskell - text - transformers - ]; - description = "Monad Transformer for Asyncronous Message Passing"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "butterflies" = callPackage ( - { - mkDerivation, - base, - bytestring, - gl-capture, - GLUT, - OpenGLRaw, - repa, - repa-devil, - }: - mkDerivation { - pname = "butterflies"; - version = "0.3.0.2"; - sha256 = "0syykvrgq6i0zxy1pn934j1r9glv4yypva1mfkn0vc0nikh9fm31"; - revision = "1"; - editedCabalFile = "1xxdc352fp11b8mhhr3rwj5kffkglvbry2smwwfj1f10wr749zn9"; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ base ]; - executableHaskellDepends = [ - base - bytestring - gl-capture - GLUT - OpenGLRaw - repa - repa-devil - ]; - description = "butterfly tilings"; - license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - mainProgram = "butterflies-flat"; - } - ) { }; - "buttplug-hs-core" = callPackage ( { mkDerivation, @@ -119760,28 +65298,6 @@ self: { } ) { }; - "bytable" = callPackage ( - { - mkDerivation, - base, - bytestring, - word24, - }: - mkDerivation { - pname = "bytable"; - version = "0.1.0.0"; - sha256 = "0x4yh9li0pi2r9pjih000a143iw9kaz7r4z72510kv6kzkkcr9mn"; - libraryHaskellDepends = [ - base - bytestring - word24 - ]; - description = "data from/to ByteString"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "byte-containers" = callPackage ( { mkDerivation, @@ -119900,31 +65416,6 @@ self: { } ) { }; - "bytearray-parsing" = callPackage ( - { - mkDerivation, - base, - bytestring, - primitive, - text, - }: - mkDerivation { - pname = "bytearray-parsing"; - version = "0.1"; - sha256 = "1b1lz0y1a20v05bpa4xlxchc6k025gmm17hj3ysmv6j2i3k8micd"; - libraryHaskellDepends = [ - base - bytestring - primitive - text - ]; - description = "Parsing of bytearray-based data"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "bytebuild" = callPackage ( { mkDerivation, @@ -120552,45 +66043,6 @@ self: { } ) { }; - "bytestring-arbitrary" = callPackage ( - { - mkDerivation, - base, - bytestring, - criterion, - cryptohash, - QuickCheck, - }: - mkDerivation { - pname = "bytestring-arbitrary"; - version = "0.1.3"; - sha256 = "0xgdrd5jzy3ihpjmxpga6xj5p90fnfqj4509q5vvgy5x9l3jigrv"; - libraryHaskellDepends = [ - base - bytestring - cryptohash - QuickCheck - ]; - testHaskellDepends = [ - base - bytestring - cryptohash - QuickCheck - ]; - benchmarkHaskellDepends = [ - base - bytestring - criterion - cryptohash - QuickCheck - ]; - description = "Arbitrary instances for ByteStrings"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "bytestring-builder" = callPackage ( { mkDerivation, @@ -120613,64 +66065,6 @@ self: { } ) { }; - "bytestring-builder-varword" = callPackage ( - { - mkDerivation, - attoparsec, - attoparsec-varword, - base, - bytestring, - hspec, - QuickCheck, - }: - mkDerivation { - pname = "bytestring-builder-varword"; - version = "0.1.0.0"; - sha256 = "1lpcy47z3jf023iv0vdwsy5l2bsjb4i8vbnzjk9hzg0n9866f2g1"; - libraryHaskellDepends = [ - base - bytestring - ]; - testHaskellDepends = [ - attoparsec - attoparsec-varword - base - bytestring - hspec - QuickCheck - ]; - description = "Variable-length integer encoding"; - license = lib.licenses.lgpl3Only; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "bytestring-class" = callPackage ( - { - mkDerivation, - base, - bytestring, - utf8-string, - }: - mkDerivation { - pname = "bytestring-class"; - version = "0.0.0.1"; - sha256 = "1z65br00rplhniaw9fg3phpxwf13acgycn5hnhyjfcyr962xp03x"; - revision = "1"; - editedCabalFile = "05q4ilixyd4zc15imh7x7gqwv4pmicyjj9zx5fhx1p1ps89jiap3"; - libraryHaskellDepends = [ - base - bytestring - utf8-string - ]; - description = "Classes for automatic conversion to and from strict and lazy bytestrings. (deprecated)"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "bytestring-conversion" = callPackage ( { mkDerivation, @@ -120719,52 +66113,6 @@ self: { } ) { }; - "bytestring-csv" = callPackage ( - { - mkDerivation, - array, - base, - bytestring, - dlist, - }: - mkDerivation { - pname = "bytestring-csv"; - version = "0.1.2"; - sha256 = "0x7qklb36jwxry1ih5x3jw7s861vlvd5g9h7yn7b2x64c0phyj0r"; - libraryHaskellDepends = [ - array - base - bytestring - dlist - ]; - description = "Parse CSV formatted data efficiently"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "bytestring-delta" = callPackage ( - { - mkDerivation, - base, - bytestring, - }: - mkDerivation { - pname = "bytestring-delta"; - version = "0.1.0.1"; - sha256 = "0iq59if3in08ssashk80wvh6yh1yr115387fi9kj952v6bzvzw1q"; - libraryHaskellDepends = [ - base - bytestring - ]; - description = "Simple, fast binary diff/patch"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "bytestring-encoding" = callPackage ( { mkDerivation, @@ -120989,35 +66337,6 @@ self: { } ) { }; - "bytestring-plain" = callPackage ( - { - mkDerivation, - base, - bytestring, - deepseq, - ghc-prim, - hashable, - }: - mkDerivation { - pname = "bytestring-plain"; - version = "0.1.0.2"; - sha256 = "1pgxwrn8m27cc01kbbxq4rd1q15lpapii2izjlhv3ilhbfxgnbcy"; - revision = "2"; - editedCabalFile = "06aysffha231adrhar9jqh49m7k3wga3ascvs7a17l4vx6p16ygs"; - libraryHaskellDepends = [ - base - bytestring - deepseq - ghc-prim - hashable - ]; - description = "Plain byte strings ('ForeignPtr'-less 'ByteString's)"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "bytestring-progress" = callPackage ( { mkDerivation, @@ -121044,86 +66363,6 @@ self: { } ) { }; - "bytestring-read" = callPackage ( - { - mkDerivation, - attoparsec, - base, - bytestring, - bytestring-lexing, - criterion, - doctest, - scientific, - tasty, - tasty-quickcheck, - text, - types-compat, - }: - mkDerivation { - pname = "bytestring-read"; - version = "0.3.1"; - sha256 = "0df6mb5fhfd1kgah5gv4q4ykxvl0y8hbqrdvm17nh33cxj2csj00"; - revision = "3"; - editedCabalFile = "15cin8zaybdahryza823zrb2d5dybsjmvjcik8sl8v70jnwzyayc"; - libraryHaskellDepends = [ - base - bytestring - types-compat - ]; - testHaskellDepends = [ - base - bytestring - doctest - tasty - tasty-quickcheck - ]; - benchmarkHaskellDepends = [ - attoparsec - base - bytestring - bytestring-lexing - criterion - scientific - text - ]; - description = "fast ByteString to number converting library"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "bytestring-rematch" = callPackage ( - { - mkDerivation, - base, - bytestring, - hspec, - HUnit, - rematch, - }: - mkDerivation { - pname = "bytestring-rematch"; - version = "0.1.0.0"; - sha256 = "01yk1pmsp6c89z4lf6p37g4jqbqz1d93g61gn4i99p8dijbg0pbh"; - libraryHaskellDepends = [ - base - bytestring - ]; - testHaskellDepends = [ - base - bytestring - hspec - HUnit - rematch - ]; - doHaddock = false; - description = "Rematch support for ByteString"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "bytestring-short" = callPackage ( { mkDerivation, @@ -121151,37 +66390,6 @@ self: { } ) { }; - "bytestring-show" = callPackage ( - { - mkDerivation, - array, - base, - binary, - bytestring, - containers, - integer-gmp, - }: - mkDerivation { - pname = "bytestring-show"; - version = "0.3.5.6"; - sha256 = "04h81a0bh2fvnkby1qafnydb29gzk6d4d311i2lbn7lm2vyjw919"; - revision = "1"; - editedCabalFile = "0n6qi0q2a18w3g8xza1c9cz3g5mv175xbs56zsk3kz6b32rga8x9"; - libraryHaskellDepends = [ - array - base - binary - bytestring - containers - integer-gmp - ]; - description = "Efficient conversion of values into readable byte strings"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "bytestring-strict-builder" = callPackage ( { mkDerivation, @@ -121216,71 +66424,6 @@ self: { } ) { }; - "bytestring-substring" = callPackage ( - { - mkDerivation, - base, - bytestring, - pipes, - primitive, - }: - mkDerivation { - pname = "bytestring-substring"; - version = "0.1"; - sha256 = "1vn1r8m0ldydnrazyckkn4lpv3g5ns37j91a5649jnrprjpy08dn"; - libraryHaskellDepends = [ - base - bytestring - pipes - primitive - ]; - description = "break bytestrings up into substrings"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "bytestring-time" = callPackage ( - { - mkDerivation, - attoparsec, - base, - bytestring, - Cabal, - hspec, - QuickCheck, - text, - time, - }: - mkDerivation { - pname = "bytestring-time"; - version = "0.1.0"; - sha256 = "00vni9h2df1k9vrxy58mrn1hm296vj4hk6qn2vxjy1pj6r2zsjl2"; - libraryHaskellDepends = [ - attoparsec - base - bytestring - text - time - ]; - testHaskellDepends = [ - attoparsec - base - bytestring - Cabal - hspec - QuickCheck - text - time - ]; - description = "Library for Time parsing from ByteString"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "bytestring-to-vector" = callPackage ( { mkDerivation, @@ -121401,103 +66544,6 @@ self: { } ) { }; - "bytestring-typenats" = callPackage ( - { - mkDerivation, - base, - binary, - blake2, - bytestring, - cereal, - criterion, - cryptohash, - deepseq, - entropy, - QuickCheck, - }: - mkDerivation { - pname = "bytestring-typenats"; - version = "1.0.0"; - sha256 = "1093chsnnl2nh4ls5bzz96pchv23z1f3s3b7jczbic9h877ih9mh"; - libraryHaskellDepends = [ - base - binary - blake2 - bytestring - cereal - cryptohash - deepseq - entropy - QuickCheck - ]; - testHaskellDepends = [ - base - bytestring - cryptohash - QuickCheck - ]; - benchmarkHaskellDepends = [ - base - bytestring - criterion - QuickCheck - ]; - description = "Bytestrings with typenat lengths"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "bytestringparser" = callPackage ( - { mkDerivation, base }: - mkDerivation { - pname = "bytestringparser"; - version = "0.3"; - sha256 = "1g99vbp14ki563lb41y1fxlgvdmrmq1y0xsk0ia1m438rdpnh2qd"; - libraryHaskellDepends = [ base ]; - description = "Combinator parsing with Data.ByteString.Lazy"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "bytestringparser-temporary" = callPackage ( - { mkDerivation, base }: - mkDerivation { - pname = "bytestringparser-temporary"; - version = "0.4.1"; - sha256 = "019axq65hmgmszkc1lyyyy8rpv5xkjbf1pmgz1bz0hnc8lgv58pd"; - libraryHaskellDepends = [ base ]; - description = "Combinator parsing with Data.ByteString.Lazy"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "bytestringreadp" = callPackage ( - { - mkDerivation, - base, - bytestring, - }: - mkDerivation { - pname = "bytestringreadp"; - version = "0.2"; - sha256 = "07hx3072zg9y3kj6h99yl8fd3n115x4z8z411c1cpx1hj292d57f"; - libraryHaskellDepends = [ - base - bytestring - ]; - description = "A ReadP style parser library for ByteString"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "bytetrie" = callPackage ( { mkDerivation, @@ -121542,6 +66588,7 @@ self: { description = "Tries with Bytes as keys"; license = lib.licenses.bsd3; hydraPlatforms = lib.platforms.none; + broken = true; } ) { }; @@ -121868,27 +66915,6 @@ self: { } ) { inherit (pkgs) bzip2; }; - "c-dsl" = callPackage ( - { - mkDerivation, - base, - language-c, - }: - mkDerivation { - pname = "c-dsl"; - version = "0.3.1"; - sha256 = "04hj3d26rp7ibv15n48y4xkfld3nnh6dqn8shxvw1h546z1316pw"; - libraryHaskellDepends = [ - base - language-c - ]; - description = "A higher level DSL on top of language-c"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "c-enum" = callPackage ( { mkDerivation, @@ -121912,58 +66938,6 @@ self: { } ) { }; - "c-io" = callPackage ( - { mkDerivation, base }: - mkDerivation { - pname = "c-io"; - version = "0.1.0"; - sha256 = "1za4wcrjrxqk8yqy1bddzxw8xxx0vlxyy31dj1glb5azx6qh7qp2"; - libraryHaskellDepends = [ base ]; - description = "C IO"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "c-mosquitto" = callPackage ( - { - mkDerivation, - base, - bytestring, - containers, - inline-c, - mosquitto, - options, - primitive, - }: - mkDerivation { - pname = "c-mosquitto"; - version = "0.1.7.0"; - sha256 = "1ljk53a1qpr3fv097ps2l7n6l74cxwzhja5i19g9k4bc9ygzqw9b"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - bytestring - containers - inline-c - primitive - ]; - librarySystemDepends = [ mosquitto ]; - executableHaskellDepends = [ - base - options - ]; - testHaskellDepends = [ base ]; - description = "Simpe mosquito MQTT binding able to work with the Amazons IoT"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "c-mosquitto"; - broken = true; - } - ) { inherit (pkgs) mosquitto; }; - "c-storable" = callPackage ( { mkDerivation, base }: mkDerivation { @@ -122115,48 +67089,6 @@ self: { } ) { inherit (pkgs) libxml2; }; - "c2ats" = callPackage ( - { - mkDerivation, - base, - containers, - HUnit, - language-c, - pretty, - regex-posix, - test-framework, - test-framework-hunit, - test-framework-th, - }: - mkDerivation { - pname = "c2ats"; - version = "0.1.0.1"; - sha256 = "0vr2gjs4y4bi30vww7gzw8yqwlmbbk6x6xwxf7nlhnalsqail2zx"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - containers - language-c - pretty - regex-posix - ]; - executableHaskellDepends = [ base ]; - testHaskellDepends = [ - base - HUnit - test-framework - test-framework-hunit - test-framework-th - ]; - description = "Translate C code into ATS"; - license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - mainProgram = "c2ats"; - broken = true; - } - ) { }; - "c2hs" = callPackage ( { mkDerivation, @@ -122305,28 +67237,6 @@ self: { } ) { }; - "ca" = callPackage ( - { - mkDerivation, - alg, - base, - }: - mkDerivation { - pname = "ca"; - version = "0.0.0.1"; - sha256 = "0fkqbpgbbp1g6q5vjmgnfddrilyqwqsvd6w7w3vmgg6q7zdh6fy2"; - revision = "1"; - editedCabalFile = "1s7qxji4a44qrsmfajrpzjfg06aksxxf41b5y8bgrc93m2iyn4xw"; - libraryHaskellDepends = [ - alg - base - ]; - description = "Cellular Automata"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "ca-patterns" = callPackage ( { mkDerivation, @@ -122612,38 +67522,6 @@ self: { } ) { }; - "cabal-audit" = callPackage ( - { - mkDerivation, - base, - Cabal, - directory, - filepath, - HTTP, - optparse-applicative, - }: - mkDerivation { - pname = "cabal-audit"; - version = "0.3.0.0"; - sha256 = "02cfwka49fd399drv6rxb3hbxflpv6s1xfa7l759ihkp19d6ph9v"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - Cabal - directory - filepath - HTTP - optparse-applicative - ]; - description = "Check how up-to-date your .cabal dependencies are."; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - mainProgram = "cabal-audit"; - broken = true; - } - ) { }; - "cabal-auto-expose" = callPackage ( { mkDerivation, @@ -122731,62 +67609,6 @@ self: { } ) { }; - "cabal-build-programs" = callPackage ( - { - mkDerivation, - base, - Cabal, - }: - mkDerivation { - pname = "cabal-build-programs"; - version = "0.1.0.1"; - sha256 = "004xr0f59fg6h6rxlf7sf6m2mi6p32h2z3vs9b56hddmxp3gn4vl"; - libraryHaskellDepends = [ - base - Cabal - ]; - description = "Adds executable dependencies to the Cabal build"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "cabal-bundle-clib" = callPackage ( - { - mkDerivation, - base, - bytestring, - Cabal, - directory, - filepath, - process, - temporary, - text, - time, - }: - mkDerivation { - pname = "cabal-bundle-clib"; - version = "0.1.0"; - sha256 = "02fwpasnvpc2np7aibwmgpmy0yz638iya8w6sy6szxzfzmn2kscm"; - libraryHaskellDepends = [ - base - bytestring - Cabal - directory - filepath - process - temporary - text - time - ]; - description = "Bundling C/C++ projects in Cabal package made easy"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "cabal-cache" = callPackage ( { mkDerivation, @@ -123032,32 +67854,6 @@ self: { } ) { }; - "cabal-constraints" = callPackage ( - { - mkDerivation, - base, - Cabal, - optparse-applicative, - }: - mkDerivation { - pname = "cabal-constraints"; - version = "0.0.0.1"; - sha256 = "06k43il8yiwbj6x3fhw64xdwq8d8qsmvvd1ycgml7vsry6cz6pdh"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - Cabal - optparse-applicative - ]; - description = "Repeatable builds for cabalized Haskell projects"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - mainProgram = "cabal-constraints"; - broken = true; - } - ) { }; - "cabal-db" = callPackage ( { mkDerivation, @@ -123205,36 +68001,6 @@ self: { } ) { }; - "cabal-dependency-licenses" = callPackage ( - { - mkDerivation, - base, - Cabal, - containers, - directory, - filepath, - }: - mkDerivation { - pname = "cabal-dependency-licenses"; - version = "0.2.0.0"; - sha256 = "07ilnlzsd16gjvzkv2m6x6afgm765jrz0bfsjgz5dpb46yfjjc8p"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - Cabal - containers - directory - filepath - ]; - description = "Compose a list of a project's transitive dependencies with their licenses"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "cabal-dependency-licenses"; - broken = true; - } - ) { }; - "cabal-detailed-quickcheck" = callPackage ( { mkDerivation, @@ -123258,88 +68024,6 @@ self: { } ) { }; - "cabal-dev" = callPackage ( - { - mkDerivation, - base, - bytestring, - Cabal, - cabal-install, - containers, - directory, - filepath, - HTTP, - mtl, - network, - pretty, - process, - setenv, - tar, - template-haskell, - transformers, - zlib, - }: - mkDerivation { - pname = "cabal-dev"; - version = "0.9.2"; - sha256 = "1372bpn8s7d7nm01ggp3m98ldrynidbchk3p14yrjysvxwr3l6q8"; - isLibrary = false; - isExecutable = true; - enableSeparateDataOutput = true; - executableHaskellDepends = [ - base - bytestring - Cabal - containers - directory - filepath - HTTP - mtl - network - pretty - process - setenv - tar - template-haskell - transformers - zlib - ]; - executableToolDepends = [ cabal-install ]; - description = "Manage sandboxed Haskell build environments"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "cabal-dir" = callPackage ( - { - mkDerivation, - base, - Cabal, - directory, - filepath, - }: - mkDerivation { - pname = "cabal-dir"; - version = "0.1.0.4"; - sha256 = "0kbq549bl18f1cd2q4w7nngsvnvgc3366xr7y37x5sw80rq5w5wg"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - Cabal - directory - filepath - ]; - description = "show dist dir of 'cabal copy/install'"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "cabal-dir"; - broken = true; - } - ) { }; - "cabal-doctest" = callPackage ( { mkDerivation, @@ -123363,52 +68047,6 @@ self: { } ) { }; - "cabal-edit" = callPackage ( - { - mkDerivation, - base, - bytestring, - Cabal, - containers, - directory, - filepath, - Glob, - hackage-db, - optparse-applicative, - process, - store, - time, - }: - mkDerivation { - pname = "cabal-edit"; - version = "0.1.0.0"; - sha256 = "1irk50d1m0zzhp2s5c1qs4nq1ivp5638lapbzlc3ygx92nrskvr7"; - revision = "1"; - editedCabalFile = "176sa5lms18gxnswgfil2y1a7qf6w96wavb5kpwic05fnxw6s26m"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - bytestring - Cabal - containers - directory - filepath - Glob - hackage-db - optparse-applicative - process - store - time - ]; - description = "Cabal utility"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - mainProgram = "cabal-edit"; - broken = true; - } - ) { }; - "cabal-file" = callPackage ( { mkDerivation, @@ -123462,37 +68100,6 @@ self: { } ) { }; - "cabal-file-th" = callPackage ( - { - mkDerivation, - base, - Cabal, - directory, - pretty, - template-haskell, - }: - mkDerivation { - pname = "cabal-file-th"; - version = "0.2.7"; - sha256 = "1pp8jk7k8nbvhy6vaxsqa7cd321yw1a3685n4fbhgb096hkrldkl"; - libraryHaskellDepends = [ - base - Cabal - directory - pretty - template-haskell - ]; - testHaskellDepends = [ - base - Cabal - ]; - description = "Template Haskell expressions for reading fields from a project's cabal file"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "cabal-fix" = callPackage ( { mkDerivation, @@ -123689,67 +68296,6 @@ self: { } ) { }; - "cabal-ghc-dynflags" = callPackage ( - { - mkDerivation, - base, - Cabal, - ghc, - transformers, - }: - mkDerivation { - pname = "cabal-ghc-dynflags"; - version = "0.1.0.1"; - sha256 = "13kxlmz5w0aazafrlignd55zclwl9sb213jry4vhfibgjrg18w8f"; - libraryHaskellDepends = [ - base - Cabal - ghc - transformers - ]; - description = "Conveniently configure GHC's dynamic flags for use with Cabal projects"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "cabal-ghci" = callPackage ( - { - mkDerivation, - base, - Cabal, - directory, - filepath, - process, - }: - mkDerivation { - pname = "cabal-ghci"; - version = "0.3"; - sha256 = "1x7fpvvmr2mq7l960wgsijhyrdaiq3lnnl3z6drklc5p73pms8w6"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - Cabal - directory - filepath - ]; - executableHaskellDepends = [ - base - Cabal - directory - filepath - process - ]; - description = "Set up ghci with options taken from a .cabal file"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "cabal-ghci"; - broken = true; - } - ) { }; - "cabal-gild" = callPackage ( { mkDerivation, @@ -123807,133 +68353,6 @@ self: { } ) { }; - "cabal-graphdeps" = callPackage ( - { - mkDerivation, - base, - containers, - directory, - options, - parsec, - process, - split, - temporary, - }: - mkDerivation { - pname = "cabal-graphdeps"; - version = "0.1.3"; - sha256 = "1j3mvfk7qa26n3rnnwyzdsbvw09pnkhbrk10sm3c7y75byi9qh9a"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - containers - directory - options - parsec - process - split - temporary - ]; - description = "Generate graphs of install-time Cabal dependencies"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - mainProgram = "cabal-graphdeps"; - broken = true; - } - ) { }; - - "cabal-helper" = callPackage ( - { - mkDerivation, - base, - bytestring, - Cabal, - cabal-plan, - clock, - containers, - directory, - filepath, - ghc, - mtl, - pretty-show, - process, - semigroupoids, - semigroups, - SHA, - template-haskell, - temporary, - text, - time, - transformers, - unix, - unix-compat, - utf8-string, - }: - mkDerivation { - pname = "cabal-helper"; - version = "1.1.0.0"; - sha256 = "1f4s46l60s1lcdia7nv2r3y71z5c6pg6ljcc0601abl1aklx303p"; - revision = "1"; - editedCabalFile = "08fyxvpqbp0r6hiqxi5wc944phr8zgmkv7hiw71zcavl09c8mvxf"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - bytestring - Cabal - cabal-plan - clock - containers - directory - filepath - mtl - process - semigroupoids - semigroups - SHA - template-haskell - temporary - text - time - transformers - unix - unix-compat - utf8-string - ]; - testHaskellDepends = [ - base - bytestring - Cabal - cabal-plan - clock - containers - directory - filepath - ghc - mtl - pretty-show - process - semigroupoids - semigroups - SHA - template-haskell - temporary - text - time - transformers - unix - unix-compat - utf8-string - ]; - doCheck = false; - description = "Give Haskell development tools access to Cabal project environment"; - license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "cabal-hoogle" = callPackage ( { mkDerivation, @@ -124195,152 +68614,6 @@ self: { Cabal-tree-diff = null; }; - "cabal-install-bundle" = callPackage ( - { - mkDerivation, - array, - base, - bytestring, - Cabal, - containers, - directory, - filepath, - old-time, - pretty, - process, - time, - unix, - zlib, - }: - mkDerivation { - pname = "cabal-install-bundle"; - version = "1.18.0.2.1"; - sha256 = "0gsghmpn38idqivba8islfy5y1xhnhyjdyahdg7h7isc9kvq6isq"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - array - base - bytestring - Cabal - containers - directory - filepath - old-time - pretty - process - time - unix - ]; - executableSystemDepends = [ zlib ]; - description = "The (bundled) command-line interface for Cabal and Hackage"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "cabal"; - broken = true; - } - ) { inherit (pkgs) zlib; }; - - "cabal-install-ghc72" = callPackage ( - { - mkDerivation, - array, - base, - Cabal, - containers, - directory, - filepath, - HTTP, - network, - old-time, - pretty, - process, - random, - time, - unix, - zlib, - }: - mkDerivation { - pname = "cabal-install-ghc72"; - version = "0.10.4"; - sha256 = "1fgy79w5bzzhqpnwgfd9jis9w6ix5wwdbwr2g556rxvmqsgl7mmg"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - array - base - Cabal - containers - directory - filepath - HTTP - network - old-time - pretty - process - random - time - unix - zlib - ]; - description = "Temporary version of cabal-install for ghc-7.2"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "cabal"; - broken = true; - } - ) { }; - - "cabal-install-ghc74" = callPackage ( - { - mkDerivation, - array, - base, - Cabal, - containers, - directory, - filepath, - HTTP, - network, - old-time, - pretty, - process, - random, - time, - unix, - zlib, - }: - mkDerivation { - pname = "cabal-install-ghc74"; - version = "0.10.4"; - sha256 = "1ssk5h0hlv3aivzsr0iv90g683qkqmppc7glivhwfm6q1vkv9gmd"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - array - base - Cabal - containers - directory - filepath - HTTP - network - old-time - pretty - process - random - time - unix - zlib - ]; - description = "Temporary version of cabal-install for ghc-7.4"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "cabal"; - broken = true; - } - ) { }; - "cabal-install-parsers" = callPackage ( { mkDerivation, @@ -124666,120 +68939,6 @@ self: { } ) { }; - "cabal-meta" = callPackage ( - { - mkDerivation, - base, - hspec, - shelly, - system-fileio, - system-filepath, - text, - unix, - }: - mkDerivation { - pname = "cabal-meta"; - version = "0.4.1.3"; - sha256 = "14k8nv2kg8n9ssz6jivvin56jjazsvp4xg7zi0z6hcawfmcdmzd6"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - shelly - system-filepath - text - ]; - executableHaskellDepends = [ - base - shelly - system-fileio - system-filepath - text - ]; - testHaskellDepends = [ - base - hspec - shelly - system-filepath - text - unix - ]; - description = "build multiple packages at once"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "cabal-meta"; - broken = true; - } - ) { }; - - "cabal-mon" = callPackage ( - { - mkDerivation, - base, - containers, - directory, - filepath, - process, - simple-get-opt, - vty, - }: - mkDerivation { - pname = "cabal-mon"; - version = "1.0.2"; - sha256 = "153ywl4s3nya8crm84jdl4p01sczwmcccf29rqhf7v7pzakx9qi2"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - containers - directory - filepath - process - simple-get-opt - vty - ]; - description = "A monitor for cabal builds"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - mainProgram = "cabal-mon"; - broken = true; - } - ) { }; - - "cabal-nirvana" = callPackage ( - { - mkDerivation, - base, - bytestring, - containers, - directory, - HTTP, - process, - tar, - }: - mkDerivation { - pname = "cabal-nirvana"; - version = "0.2.2.1"; - sha256 = "1clwhlqm1k9km29i9b2c2ys59nfspsffrixr2sz824gnd415x3lk"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - bytestring - containers - directory - HTTP - process - tar - ]; - description = "Avoid Cabal dependency hell by constraining to known good versions. (deprecated)"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "cabal-nirvana"; - broken = true; - } - ) { }; - "cabal-pkg-config-version-hook" = callPackage ( { mkDerivation, @@ -124907,70 +69066,6 @@ self: { } ) { }; - "cabal-progdeps" = callPackage ( - { - mkDerivation, - base, - Cabal, - directory, - filepath, - }: - mkDerivation { - pname = "cabal-progdeps"; - version = "1.0"; - sha256 = "0fz2hpm8fd49jhqdc9cwzvdq34b64zwn4ln8n77hxqx8rfw8zvif"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - Cabal - directory - filepath - ]; - description = "Show dependencies of program being built in current directory"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "cabal-progdeps"; - broken = true; - } - ) { }; - - "cabal-query" = callPackage ( - { - mkDerivation, - base, - bytestring, - Cabal, - derive, - ghc, - MissingH, - mtl, - tar, - template-haskell, - uniplate, - }: - mkDerivation { - pname = "cabal-query"; - version = "0.1"; - sha256 = "0j4n48ngwins8bl7g3mazwmbwgyjpp17mi77c9j1klfgx7fam6wa"; - libraryHaskellDepends = [ - base - bytestring - Cabal - derive - ghc - MissingH - mtl - tar - template-haskell - uniplate - ]; - description = "Helpers for quering .cabal files or hackageDB's 00-index.tar"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "cabal-rpm" = callPackage ( { mkDerivation, @@ -125106,94 +69201,34 @@ self: { safe-exceptions streaming streaming-attoparsec - streaming-bytestring - strict - template-haskell - text - time - transformers - unordered-containers - yaml - ]; - executableHaskellDepends = [ base ]; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "cabal-scaffold"; - broken = true; - } - ) { }; - - "cabal-scripts" = callPackage ( - { mkDerivation, base }: - mkDerivation { - pname = "cabal-scripts"; - version = "0.1.1"; - sha256 = "1ajgx29hvcsdd6lwc78dyhsjm5ikx2zn0kdbwnzn1kggz2l08ls4"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ base ]; - doHaddock = false; - description = "Shell scripts for support of Cabal maintenance"; - license = lib.licenses.bsd3; - } - ) { }; - - "cabal-setup" = callPackage ( - { - mkDerivation, - base, - Cabal, - }: - mkDerivation { - pname = "cabal-setup"; - version = "1.2.1"; - sha256 = "0k1lnixkmgdjn8d2akhj60133brs424y0cwwzwraq7awx03y72bm"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - Cabal + streaming-bytestring + strict + template-haskell + text + time + transformers + unordered-containers + yaml ]; - description = "The user interface for building and installing Cabal packages"; + executableHaskellDepends = [ base ]; license = lib.licenses.bsd3; hydraPlatforms = lib.platforms.none; - mainProgram = "cabal-setup"; + mainProgram = "cabal-scaffold"; broken = true; } ) { }; - "cabal-sign" = callPackage ( - { - mkDerivation, - base, - bytestring, - cereal, - directory, - filepath, - process, - tar, - zlib, - }: + "cabal-scripts" = callPackage ( + { mkDerivation, base }: mkDerivation { - pname = "cabal-sign"; - version = "0.4.1.0"; - sha256 = "1b8yr4k0mapysgh96dxabpzxznd65v8yrcba0jk6wda3mwlm1nqk"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - bytestring - cereal - directory - filepath - process - tar - zlib - ]; - description = "Sign and verify Cabal packages"; + pname = "cabal-scripts"; + version = "0.1.1"; + sha256 = "1ajgx29hvcsdd6lwc78dyhsjm5ikx2zn0kdbwnzn1kggz2l08ls4"; + enableSeparateDataOutput = true; + libraryHaskellDepends = [ base ]; + doHaddock = false; + description = "Shell scripts for support of Cabal maintenance"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "cabal-sign"; - broken = true; } ) { }; @@ -125292,92 +69327,6 @@ self: { } ) { }; - "cabal-src" = callPackage ( - { - mkDerivation, - base, - bytestring, - conduit, - conduit-extra, - containers, - directory, - filepath, - http-conduit, - http-types, - network, - process, - resourcet, - shelly, - system-fileio, - system-filepath, - tar, - text, - transformers, - }: - mkDerivation { - pname = "cabal-src"; - version = "0.3.0.2"; - sha256 = "1rpddgk9pxsssrznk31n55mvfqicnl1pjz7r0irdzrphjdp6qqa9"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - bytestring - conduit - conduit-extra - containers - directory - filepath - http-conduit - http-types - network - process - resourcet - shelly - system-fileio - system-filepath - tar - text - transformers - ]; - description = "Alternative install procedure to avoid the diamond dependency issue"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "cabal-test" = callPackage ( - { - mkDerivation, - base, - Cabal, - filepath, - ghc, - pqc, - QuickCheck, - }: - mkDerivation { - pname = "cabal-test"; - version = "0.1"; - sha256 = "11883q7zjy3l5qla5rvbmflm19kalvzqx7n1hprmiizr1kczh6ax"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - Cabal - filepath - ghc - pqc - QuickCheck - ]; - description = "Automated test tool for cabal projects"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "cabal-test"; - } - ) { }; - "cabal-test-bin" = callPackage ( { mkDerivation, @@ -125440,265 +69389,6 @@ self: { } ) { }; - "cabal-test-quickcheck" = callPackage ( - { - mkDerivation, - base, - Cabal, - QuickCheck, - }: - mkDerivation { - pname = "cabal-test-quickcheck"; - version = "0.1.8.2"; - sha256 = "04fdfxvgp518x7n6d74l92qh67z94pay4wldy8dv4n51zhkgk8bf"; - revision = "1"; - editedCabalFile = "1q0zs98z8wvr0gzy27ff688fpsgwxjypwjsyzs8v2v6gqd49iwri"; - libraryHaskellDepends = [ - base - Cabal - QuickCheck - ]; - description = "QuickCheck for Cabal"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "cabal-toolkit" = callPackage ( - { - mkDerivation, - base, - binary, - bytestring, - Cabal, - containers, - ghc, - template-haskell, - }: - mkDerivation { - pname = "cabal-toolkit"; - version = "0.0.7"; - sha256 = "08im4qqrg3ribbh6rg2rk7jynnjwjgaysfvgbamanjdwqldjwx7f"; - libraryHaskellDepends = [ - base - binary - bytestring - Cabal - containers - ghc - template-haskell - ]; - description = "Helper functions for writing custom Setup.hs scripts."; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "cabal-uninstall" = callPackage ( - { - mkDerivation, - base, - directory, - filepath, - mtl, - process, - }: - mkDerivation { - pname = "cabal-uninstall"; - version = "0.1.6"; - sha256 = "0ys1c8z8042vc7dzmis47w0q3qapyllmsdkpb1by22qmcnaavii2"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - directory - filepath - mtl - process - ]; - description = "Uninstall cabal packages"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "cabal-uninstall"; - broken = true; - } - ) { }; - - "cabal-upload" = callPackage ( - { - mkDerivation, - base, - filepath, - HTTP, - network, - }: - mkDerivation { - pname = "cabal-upload"; - version = "0.4"; - sha256 = "05k77hdx0sbgnn454vb6rc7mmrc3zby7s44x498i4ncrkivz90bz"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - filepath - HTTP - network - ]; - description = "Command-line tool for uploading packages to Hackage"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "cabal-upload"; - broken = true; - } - ) { }; - - "cabal2arch" = callPackage ( - { - mkDerivation, - archlinux, - base, - bytestring, - Cabal, - cmdargs, - containers, - directory, - filepath, - mtl, - pretty, - process, - }: - mkDerivation { - pname = "cabal2arch"; - version = "1.1"; - sha256 = "0sk10z9lj291rpidlaydp7nvgl7adbp7gyf2nvqqhrshxnlqpc8z"; - isLibrary = false; - isExecutable = true; - enableSeparateDataOutput = true; - executableHaskellDepends = [ - archlinux - base - bytestring - Cabal - cmdargs - containers - directory - filepath - mtl - pretty - process - ]; - description = "Create Arch Linux packages from Cabal packages"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "cabal2arch"; - } - ) { }; - - "cabal2doap" = callPackage ( - { - mkDerivation, - base, - Cabal, - hsemail, - hxt, - parsec, - process, - }: - mkDerivation { - pname = "cabal2doap"; - version = "0.2"; - sha256 = "1nqchq9mzq8k99agvafwa4vll7d3ahpkaifnjj2bnljqdkxlh9al"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - Cabal - hsemail - hxt - parsec - process - ]; - description = "Cabal to Description-of-a-Project (DOAP)"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "cabal2doap"; - broken = true; - } - ) { }; - - "cabal2ebuild" = callPackage ( - { - mkDerivation, - base, - Cabal, - curl, - directory, - filepath, - }: - mkDerivation { - pname = "cabal2ebuild"; - version = "0.0.15.9"; - sha256 = "11fp52hmzkrgcmkxzclmq6bbzxsn0ph78ib6wzzkza5j2c48ya2l"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - Cabal - directory - filepath - ]; - executableHaskellDepends = [ - base - curl - directory - ]; - description = "make gentoo's .ebuild file from .cabal file"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "cabal2ghci" = callPackage ( - { - mkDerivation, - base, - Cabal, - cmdargs, - stylish-haskell, - system-fileio, - system-filepath, - text, - unordered-containers, - yaml, - }: - mkDerivation { - pname = "cabal2ghci"; - version = "0.0.1.1"; - sha256 = "1fg3pr25f78a6b8nqxvxki4z3fvgx4i6zkmpl992a0iarycqdrsg"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - Cabal - cmdargs - stylish-haskell - system-fileio - system-filepath - text - unordered-containers - yaml - ]; - description = "A tool to generate .ghci file from .cabal"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "cabal2ghci"; - broken = true; - } - ) { }; - "cabal2json" = callPackage ( { mkDerivation, @@ -125952,42 +69642,6 @@ self: { } ) { }; - "cabalQuery" = callPackage ( - { - mkDerivation, - base, - Cabal, - containers, - directory, - MissingH, - pretty, - }: - mkDerivation { - pname = "cabalQuery"; - version = "0.1.0.1"; - sha256 = "195wsfh813z6pmba3lz2xgfcqijcql6xwqsggqb5rmzqxbkvk0bd"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - Cabal - pretty - ]; - executableHaskellDepends = [ - base - Cabal - containers - directory - MissingH - ]; - description = "A simple tool to query cabal files"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "cabalQuery"; - broken = true; - } - ) { }; - "cabalg" = callPackage ( { mkDerivation, @@ -126028,232 +69682,6 @@ self: { } ) { }; - "cabalgraph" = callPackage ( - { - mkDerivation, - base, - bytestring, - Cabal, - containers, - directory, - filepath, - pretty, - process, - }: - mkDerivation { - pname = "cabalgraph"; - version = "0.1"; - sha256 = "1kgw1n22zh1ap6dfzhmh18d0wkr6ppd9b20r77f7q6m371hhbkvy"; - revision = "1"; - editedCabalFile = "01vkf16s9kplp61sbf4w6zfdd48wg65d1m31m5jqk28361c76sh7"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - bytestring - Cabal - containers - directory - filepath - pretty - process - ]; - description = "Generate pretty graphs of module trees from cabal files"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "cabalgraph"; - broken = true; - } - ) { }; - - "cabalish" = callPackage ( - { - mkDerivation, - base, - Cabal, - classy-prelude, - directory, - filepath, - optparse-applicative, - text, - }: - mkDerivation { - pname = "cabalish"; - version = "0.1.0.2"; - sha256 = "0yd170jghy94clj5rc4v3fb8f8581vafagv1mv3hkafqjrkwdvpi"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - Cabal - classy-prelude - directory - filepath - optparse-applicative - text - ]; - description = "Provides access to the cabal file data for shell scripts"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "cabalish"; - broken = true; - } - ) { }; - - "cabalmdvrpm" = callPackage ( - { - mkDerivation, - base, - Cabal, - cabalrpmdeps, - haskell98, - }: - mkDerivation { - pname = "cabalmdvrpm"; - version = "0.0.1"; - sha256 = "0pgkav4ifwkqh9idj8rpbnq3rw51i94dj1zw0wf7mv72bb32a0c6"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - Cabal - cabalrpmdeps - haskell98 - ]; - executableHaskellDepends = [ - base - Cabal - cabalrpmdeps - haskell98 - ]; - description = "Create mandriva rpm from cabal package"; - license = "GPL"; - hydraPlatforms = lib.platforms.none; - mainProgram = "cabalmdvspec"; - } - ) { }; - - "cabalrpmdeps" = callPackage ( - { - mkDerivation, - base, - Cabal, - filepath, - haskell98, - }: - mkDerivation { - pname = "cabalrpmdeps"; - version = "0.0.4"; - sha256 = "19kzbwpb9gv9knz1dfvck8yb1kda5dg9rig5xrsd118wgq6xpkr1"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - Cabal - filepath - haskell98 - ]; - executableHaskellDepends = [ - base - Cabal - filepath - haskell98 - ]; - description = "Autogenerate rpm dependencies from cabal files"; - license = "GPL"; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "cabalvchk" = callPackage ( - { - mkDerivation, - base, - Cabal, - }: - mkDerivation { - pname = "cabalvchk"; - version = "0.3"; - sha256 = "1ai2yz4whbjk9qfpyzjqkdypqknnzfdr1fdp5ii7h059na0q6iq2"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - Cabal - ]; - description = "Verify installed package version against user-specified constraints"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "cabalvchk"; - broken = true; - } - ) { }; - - "cabin" = callPackage ( - { - mkDerivation, - base, - binary, - bytestring, - directory, - filepath, - optparse-applicative, - process, - unix, - }: - mkDerivation { - pname = "cabin"; - version = "0.1.0.3"; - sha256 = "0wj1x6gsr5jlnq0l6xgwy2y64jlxna7bvx7vwk73znf572rswmxk"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - binary - bytestring - directory - filepath - optparse-applicative - process - unix - ]; - description = "Cabal binary sandboxes"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "cabin"; - broken = true; - } - ) { }; - - "cabocha" = callPackage ( - { - mkDerivation, - base, - bytestring, - cabocha, - text, - text-format, - }: - mkDerivation { - pname = "cabocha"; - version = "0.1.0.0"; - sha256 = "0siqh3dly69b1kfm5y3q0sccqxx25hflwhizw6ga70icmvscwrwf"; - libraryHaskellDepends = [ - base - bytestring - text - ]; - librarySystemDepends = [ cabocha ]; - testHaskellDepends = [ - base - text-format - ]; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { cabocha = null; }; - "cache" = callPackage ( { mkDerivation, @@ -126291,43 +69719,6 @@ self: { } ) { }; - "cache-polysemy" = callPackage ( - { - mkDerivation, - base, - cache, - clock, - hashable, - polysemy, - polysemy-plugin, - }: - mkDerivation { - pname = "cache-polysemy"; - version = "0.1.2"; - sha256 = "1psgf0x9hjhhnn7kn954b26kxd1c94cbhgv8xd2w3nxpmv2qh0m2"; - libraryHaskellDepends = [ - base - cache - clock - hashable - polysemy - polysemy-plugin - ]; - testHaskellDepends = [ - base - cache - clock - hashable - polysemy - polysemy-plugin - ]; - description = "cached hashmaps"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "cached" = callPackage ( { mkDerivation, @@ -126465,46 +69856,6 @@ self: { } ) { }; - "caching" = callPackage ( - { - mkDerivation, - base, - dlist, - hashable, - mtl, - psqueues, - ref-tf, - transformers, - }: - mkDerivation { - pname = "caching"; - version = "0"; - sha256 = "0rd8ipnycf1vcxxic99d2swcpcdhaljwvbbr4vlagchl3vifxr56"; - libraryHaskellDepends = [ - base - dlist - hashable - mtl - psqueues - ref-tf - transformers - ]; - testHaskellDepends = [ - base - dlist - hashable - mtl - psqueues - ref-tf - transformers - ]; - description = "Cache combinators"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "caching-vault" = callPackage ( { mkDerivation, @@ -126944,67 +70295,6 @@ self: { } ) { }; - "cafeteria-prelude" = callPackage ( - { mkDerivation, base }: - mkDerivation { - pname = "cafeteria-prelude"; - version = "0.1.0.0"; - sha256 = "1iyasmd8zcg98vy7ffhxyyr664f02ird5z7rks9n67ixv7n60mrl"; - libraryHaskellDepends = [ base ]; - description = "Prelude subsets—take only what you want!"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "caffegraph" = callPackage ( - { - mkDerivation, - base, - bytestring, - containers, - fgl, - filepath, - graphviz, - language-lua, - lens, - mtl, - optparse-applicative, - process, - protocol-buffers, - protocol-buffers-descriptor, - template-haskell, - temporary, - text, - }: - mkDerivation { - pname = "caffegraph"; - version = "0.1.0.2"; - sha256 = "1yz427ygabkycvngqw250ksl17nwi0fy52x2fy3x6apg79cw1ng2"; - libraryHaskellDepends = [ - base - bytestring - containers - fgl - filepath - graphviz - language-lua - lens - mtl - optparse-applicative - process - protocol-buffers - protocol-buffers-descriptor - template-haskell - temporary - text - ]; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "cairo" = callPackage ( { mkDerivation, @@ -127100,54 +70390,6 @@ self: { } ) { }; - "cairo-core" = callPackage ( - { - mkDerivation, - base, - bytestring, - c2hs, - Cabal, - cairo, - directory, - filepath, - haskell-src-exts, - http-client, - http-client-tls, - hxt, - hxt-xpath, - monad-extras, - transformers, - }: - mkDerivation { - pname = "cairo-core"; - version = "1.16.7"; - sha256 = "1v3zdhvhn5iv2i7k2pmwd6jfdb7h1zsa8px7xjlhar5n0p131vzr"; - setupHaskellDepends = [ - base - bytestring - Cabal - directory - filepath - haskell-src-exts - http-client - http-client-tls - hxt - hxt-xpath - ]; - libraryHaskellDepends = [ - base - monad-extras - transformers - ]; - libraryPkgconfigDepends = [ cairo ]; - libraryToolDepends = [ c2hs ]; - description = "Cairo Haskell binding (partial)"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { inherit (pkgs) cairo; }; - "cairo-image" = callPackage ( { mkDerivation, @@ -127179,270 +70421,6 @@ self: { } ) { inherit (pkgs) cairo; }; - "cake" = callPackage ( - { - mkDerivation, - array, - base, - binary, - bytestring, - cmdargs, - containers, - derive, - directory, - filepath, - mtl, - parsek, - process, - pureMD5, - regex-tdfa, - split, - }: - mkDerivation { - pname = "cake"; - version = "1.1.0.1"; - sha256 = "168szg38gq0g0mppjszcsmsdygs8qy23w6xsz8gbg7dkh7izy1ba"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - binary - bytestring - containers - derive - directory - filepath - mtl - parsek - process - pureMD5 - split - ]; - executableHaskellDepends = [ - array - base - cmdargs - directory - filepath - process - regex-tdfa - ]; - description = "A build-system library and driver"; - license = "GPL"; - hydraPlatforms = lib.platforms.none; - mainProgram = "cake"; - } - ) { }; - - "cake3" = callPackage ( - { - mkDerivation, - array, - attoparsec, - base, - blaze-builder, - bytestring, - containers, - deepseq, - directory, - filepath, - haskell-src-meta, - mime-types, - monadloc, - mtl, - optparse-applicative, - parsec, - process, - syb, - system-filepath, - template-haskell, - text, - text-format, - transformers, - utf8-string, - }: - mkDerivation { - pname = "cake3"; - version = "0.6.5"; - sha256 = "1f8vpm9a6rv7bgi9a8zarxa0jlph1p6hj1cdqzk5g81mr4dc4vkv"; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - attoparsec - base - bytestring - containers - deepseq - directory - filepath - haskell-src-meta - mime-types - monadloc - mtl - parsec - process - syb - system-filepath - template-haskell - text - text-format - ]; - executableHaskellDepends = [ - array - attoparsec - base - blaze-builder - bytestring - containers - directory - filepath - haskell-src-meta - mime-types - monadloc - mtl - optparse-applicative - parsec - process - syb - template-haskell - text - transformers - utf8-string - ]; - description = "Third cake the Makefile EDSL"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "cakyrespa" = callPackage ( - { - mkDerivation, - base, - GLUT, - gluturtle, - lojbanParser, - yjsvg, - yjtools, - }: - mkDerivation { - pname = "cakyrespa"; - version = "0.0.29"; - sha256 = "1a2ypgkpzzp2hn14x35ava0p0k781s7mhldw29ppl1an7fs91fyx"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - GLUT - gluturtle - lojbanParser - yjsvg - yjtools - ]; - description = "run turtle like LOGO with lojban"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "cakyrespa"; - } - ) { }; - - "cal-layout" = callPackage ( - { - mkDerivation, - base, - containers, - }: - mkDerivation { - pname = "cal-layout"; - version = "0.1.0.2"; - sha256 = "11i3nn1a84brm5isfqlapwnfwh7n9iyjr6kg1jjv8a9cv5nhbq3l"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - containers - ]; - executableHaskellDepends = [ base ]; - description = "Calendar Layout Algorithm"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "bookings-test"; - broken = true; - } - ) { }; - - "cal3d" = callPackage ( - { - mkDerivation, - base, - cal3d, - }: - mkDerivation { - pname = "cal3d"; - version = "0.1"; - sha256 = "1b4pajzpf879vns2kffkqgyk5sbsfrr3q2kv5ryvls8rgwcjc3q6"; - libraryHaskellDepends = [ base ]; - librarySystemDepends = [ cal3d ]; - description = "Haskell binding to the Cal3D animation library"; - license = "LGPL"; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { cal3d = null; }; - - "cal3d-examples" = callPackage ( - { - mkDerivation, - base, - cal3d, - cal3d-opengl, - OpenGL, - SDL, - }: - mkDerivation { - pname = "cal3d-examples"; - version = "0.1"; - sha256 = "1fj6v1dw1gyy6dx4ssiziahxf8j8vr4l35n3rm04g797wypswmw0"; - isLibrary = false; - isExecutable = true; - enableSeparateDataOutput = true; - executableHaskellDepends = [ - base - cal3d - cal3d-opengl - OpenGL - SDL - ]; - description = "Examples for the Cal3d animation library"; - license = "GPL"; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "cal3d-opengl" = callPackage ( - { - mkDerivation, - base, - cal3d, - OpenGL, - }: - mkDerivation { - pname = "cal3d-opengl"; - version = "0.1"; - sha256 = "02na1ww5dw08n2y7v2vkgdvzw0zpiic5683jac7f2zvhcij68sf2"; - libraryHaskellDepends = [ - base - cal3d - OpenGL - ]; - description = "OpenGL rendering for the Cal3D animation library"; - license = "LGPL"; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "calamity" = callPackage ( { mkDerivation, @@ -127587,79 +70565,6 @@ self: { } ) { }; - "calc" = callPackage ( - { - mkDerivation, - array, - base, - harpy, - haskell98, - mtl, - }: - mkDerivation { - pname = "calc"; - version = "0.1"; - sha256 = "1h3rqxj2df68knrb2rhp75rc92q9knsa7jp749j9h24258yr6qxw"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - array - base - harpy - haskell98 - mtl - ]; - description = "A small compiler for arithmetic expressions"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "calc"; - } - ) { }; - - "calculator" = callPackage ( - { - mkDerivation, - base, - containers, - gtk, - haskeline, - hmatrix, - parsec, - plot-gtk-ui, - QuickCheck, - transformers, - }: - mkDerivation { - pname = "calculator"; - version = "0.4.1.2"; - sha256 = "07fjvzqvhn376nhbw5hv921i6ranv9g4zx4r38a7y76rq2xyysx9"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - containers - gtk - haskeline - hmatrix - parsec - plot-gtk-ui - transformers - ]; - testHaskellDepends = [ - base - containers - gtk - parsec - plot-gtk-ui - QuickCheck - ]; - description = "A calculator repl, with variables, functions & Mathematica like dynamic plots"; - license = lib.licenses.gpl2Only; - hydraPlatforms = lib.platforms.none; - mainProgram = "calculator"; - } - ) { }; - "caldims" = callPackage ( { mkDerivation, @@ -127699,39 +70604,6 @@ self: { license = "GPL"; hydraPlatforms = lib.platforms.none; mainProgram = "caldims"; - } - ) { }; - - "caledon" = callPackage ( - { - mkDerivation, - base, - containers, - cpphs, - lens, - mtl, - parsec, - transformers, - }: - mkDerivation { - pname = "caledon"; - version = "3.2.2.0"; - sha256 = "0vb5b0v6f359ni9x091asmvszh1jbchcgjaybycmxlhydvwrlkb8"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - containers - cpphs - lens - mtl - parsec - transformers - ]; - description = "a logic programming language based on the calculus of constructions"; - license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - mainProgram = "caledon"; broken = true; } ) { }; @@ -127767,109 +70639,6 @@ self: { } ) { }; - "calenderweek" = callPackage ( - { - mkDerivation, - base, - megaparsec, - optparse-generic, - text, - time, - }: - mkDerivation { - pname = "calenderweek"; - version = "1.0.0"; - sha256 = "10lv7c74jrw8v06vaz8assgqlvrk0spn08sw0nvzz1q0x0zbbwff"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - megaparsec - optparse-generic - text - time - ]; - description = "Commandline tool to get week of the year"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "kw"; - broken = true; - } - ) { }; - - "call" = callPackage ( - { - mkDerivation, - base, - bindings-portaudio, - boundingboxes, - colors, - containers, - control-bool, - deepseq, - directory, - filepath, - free, - freetype2, - GLFW-b, - hashable, - JuicyPixels, - JuicyPixels-util, - lens, - linear, - mtl, - objective, - OpenGL, - OpenGLRaw, - random, - template-haskell, - text, - transformers, - vector, - WAVE, - }: - mkDerivation { - pname = "call"; - version = "0.1.4.2"; - sha256 = "0q84q1821ilb0nh228jdpc6acxbbfngihir4mdklr8hywanz3s1g"; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base - bindings-portaudio - boundingboxes - colors - containers - control-bool - deepseq - directory - filepath - free - freetype2 - GLFW-b - hashable - JuicyPixels - JuicyPixels-util - lens - linear - mtl - objective - OpenGL - OpenGLRaw - random - template-haskell - text - transformers - vector - WAVE - ]; - description = "The call game engine"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "call-alloy" = callPackage ( { mkDerivation, @@ -127935,44 +70704,6 @@ self: { } ) { }; - "call-haskell-from-anything" = callPackage ( - { - mkDerivation, - base, - bytestring, - data-msgpack, - mtl, - storable-endian, - template-haskell, - }: - mkDerivation { - pname = "call-haskell-from-anything"; - version = "1.1.0.0"; - sha256 = "1ys5xjf1jvrr2nybv5lw36x59n4jnxwqfkf3hdmrdz770y08gp0r"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - bytestring - data-msgpack - mtl - storable-endian - template-haskell - ]; - executableHaskellDepends = [ - base - bytestring - data-msgpack - mtl - ]; - description = "Call Haskell functions from other languages via serialization and dynamic libraries"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - mainProgram = "call-haskell-from-anything.so"; - broken = true; - } - ) { }; - "call-plantuml" = callPackage ( { mkDerivation, @@ -128262,54 +70993,6 @@ self: { } ) { }; - "campfire" = callPackage ( - { - mkDerivation, - aeson, - attoparsec, - base, - bytestring, - containers, - filepath, - http-enumerator, - http-types, - mtl, - old-locale, - process, - text, - time, - transformers, - unordered-containers, - url, - }: - mkDerivation { - pname = "campfire"; - version = "0.2.1"; - sha256 = "06m5d7b6dqmp3x09b1nib1rxjh1gvx84bhvfnydlb26093za71b4"; - libraryHaskellDepends = [ - aeson - attoparsec - base - bytestring - containers - filepath - http-enumerator - http-types - mtl - old-locale - process - text - time - transformers - unordered-containers - url - ]; - description = "Haskell implementation of the Campfire API"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "can-i-haz" = callPackage ( { mkDerivation, @@ -128547,58 +71230,6 @@ self: { } ) { }; - "canon" = callPackage ( - { - mkDerivation, - arithmoi, - array, - base, - containers, - random, - }: - mkDerivation { - pname = "canon"; - version = "0.1.1.4"; - sha256 = "1srixf1m7pzgr16y2xfckhi0xk9js68ps9zw8kvnw01c37x85f48"; - libraryHaskellDepends = [ - arithmoi - array - base - containers - random - ]; - description = "Arithmetic for Psychedelically Large Numbers"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "canonical-filepath" = callPackage ( - { - mkDerivation, - base, - deepseq, - directory, - filepath, - }: - mkDerivation { - pname = "canonical-filepath"; - version = "1.0.0.3"; - sha256 = "0dg9d4v08gykbjmzafpakgwc51mq5d5m6ilmhp68czpl30sqjhwf"; - libraryHaskellDepends = [ - base - deepseq - directory - filepath - ]; - description = "Abstract data type for canonical file paths"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "canonical-json" = callPackage ( { mkDerivation, @@ -128673,153 +71304,6 @@ self: { } ) { }; - "canteven-http" = callPackage ( - { - mkDerivation, - base, - bytestring, - canteven-log, - directory, - exceptions, - filepath, - http-types, - mime-types, - monad-logger, - template-haskell, - text, - time, - transformers, - unix, - uuid, - wai, - wai-extra, - }: - mkDerivation { - pname = "canteven-http"; - version = "0.1.5.1"; - sha256 = "0rb77g2g9ddzypswwgjqw8dg31m2q70p765jbq4g5jj4jynm2vdb"; - libraryHaskellDepends = [ - base - bytestring - canteven-log - directory - exceptions - filepath - http-types - mime-types - monad-logger - template-haskell - text - time - transformers - unix - uuid - wai - wai-extra - ]; - description = "Utilities for HTTP programming"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "canteven-listen-http" = callPackage ( - { - mkDerivation, - aeson, - base, - }: - mkDerivation { - pname = "canteven-listen-http"; - version = "1.0.0.3"; - sha256 = "1vcax1ipkd8s44pasr8qdrgjav4n2jnxd2qwamrl7kf6lm1i8n18"; - libraryHaskellDepends = [ - aeson - base - ]; - description = "data types to describe HTTP services"; - license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "canteven-log" = callPackage ( - { - mkDerivation, - aeson, - base, - bytestring, - directory, - fast-logger, - filepath, - monad-logger, - template-haskell, - text, - time, - transformers, - yaml, - }: - mkDerivation { - pname = "canteven-log"; - version = "2.0.2.1"; - sha256 = "0i4lf46rj4yy8j7xr311kypi1kmmpldh914glzyp2gim08fwy10c"; - libraryHaskellDepends = [ - aeson - base - bytestring - directory - fast-logger - filepath - monad-logger - template-haskell - text - time - transformers - yaml - ]; - description = "A canteven way of setting up logging for your program"; - license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "canteven-parsedate" = callPackage ( - { - mkDerivation, - base, - Cabal, - old-locale, - time, - timezone-series, - tz, - }: - mkDerivation { - pname = "canteven-parsedate"; - version = "1.0.1.2"; - sha256 = "1dwa42w98nlp3kn6vi3fs908cb2vdjj2in92q59vkws21f3cs8l5"; - libraryHaskellDepends = [ - base - time - timezone-series - tz - ]; - testHaskellDepends = [ - base - Cabal - old-locale - time - timezone-series - tz - ]; - description = "Date / time parsing utilities that try to guess the date / time format"; - license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "canteven-template" = callPackage ( { mkDerivation, @@ -128849,61 +71333,6 @@ self: { } ) { }; - "cantor" = callPackage ( - { - mkDerivation, - base, - bytestring, - Cabal, - containers, - directory, - filepath, - hspec, - hxt, - hxt-xpath, - parsec, - QuickCheck, - split, - }: - mkDerivation { - pname = "cantor"; - version = "0.4"; - sha256 = "16dx8v29gfwrrfb2lwkjlwbbp8n6jdpdcmwh15rrfx97rz4k0qz3"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - bytestring - containers - directory - filepath - hxt - hxt-xpath - parsec - split - ]; - testHaskellDepends = [ - base - bytestring - Cabal - containers - directory - filepath - hspec - hxt - hxt-xpath - parsec - QuickCheck - split - ]; - description = "Application for analysis of java source code"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "cantor"; - broken = true; - } - ) { }; - "cantor-pairing" = callPackage ( { mkDerivation, @@ -128939,86 +71368,6 @@ self: { } ) { }; - "cao" = callPackage ( - { - mkDerivation, - alex, - array, - base, - cmdargs, - ConfigFile, - containers, - directory, - dlist, - filepath, - happy, - language-c, - mtl, - pretty, - process, - yices, - }: - mkDerivation { - pname = "cao"; - version = "0.1.1"; - sha256 = "0rmq22fiaadpszckbj5k5gi4sr1jipinyrx9hwc21k5d185vsakd"; - isLibrary = false; - isExecutable = true; - enableSeparateDataOutput = true; - executableHaskellDepends = [ - array - base - cmdargs - ConfigFile - containers - directory - dlist - filepath - language-c - mtl - pretty - process - yices - ]; - executableToolDepends = [ - alex - happy - ]; - description = "CAO Compiler"; - license = "GPL"; - hydraPlatforms = lib.platforms.none; - mainProgram = "cao"; - } - ) { }; - - "cap" = callPackage ( - { - mkDerivation, - array, - base, - containers, - haskell98, - }: - mkDerivation { - pname = "cap"; - version = "1.0.1"; - sha256 = "1492x5hy5ljf0h40c045jd3w26f7jwqplgncka3dnw4mx9kq4g15"; - isLibrary = false; - isExecutable = true; - enableSeparateDataOutput = true; - executableHaskellDepends = [ - array - base - containers - haskell98 - ]; - description = "Interprets and debug the cap language"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "cap"; - } - ) { }; - "capability" = callPackage ( { mkDerivation, @@ -129086,58 +71435,6 @@ self: { } ) { }; - "capataz" = callPackage ( - { - mkDerivation, - async, - base, - bytestring, - pretty-show, - prettyprinter, - rio, - tasty, - tasty-hunit, - tasty-smallcheck, - teardown, - time, - uuid, - }: - mkDerivation { - pname = "capataz"; - version = "0.2.1.0"; - sha256 = "14mda2yvg0phpfhkacm5whh4hqcvyw14xiilx28ghc4rkf7al0fi"; - libraryHaskellDepends = [ - async - base - bytestring - pretty-show - prettyprinter - rio - teardown - time - uuid - ]; - testHaskellDepends = [ - async - base - bytestring - pretty-show - prettyprinter - rio - tasty - tasty-hunit - tasty-smallcheck - teardown - time - uuid - ]; - description = "OTP-like supervision trees in Haskell"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "capnp" = callPackage ( { mkDerivation, @@ -129291,55 +71588,10 @@ self: { ]; description = "Cap'n Proto for Haskell"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "capnpc-haskell"; } ) { }; - "capped-list" = callPackage ( - { mkDerivation, base }: - mkDerivation { - pname = "capped-list"; - version = "1.2"; - sha256 = "0sik7svknaam6fhlvb4p1ijwaiwrgssrdl9gmq1wmfx66g069xi9"; - libraryHaskellDepends = [ base ]; - description = "A list-like type for lazy sequences, with a user-defined termination value"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "capri" = callPackage ( - { - mkDerivation, - base, - Cabal, - directory, - filepath, - process, - }: - mkDerivation { - pname = "capri"; - version = "0.1"; - sha256 = "0hsrznygvn1b2qpc75591kzmcpqh7p5fhi1mw3ws2c75igjqbni7"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - Cabal - directory - filepath - process - ]; - description = "A simple wrapper over cabal-install to operate in project-private mode"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "capri"; - broken = true; - } - ) { }; - "caps" = callPackage ( { mkDerivation, @@ -129445,6 +71697,7 @@ self: { description = "A package for integrating a variety of captcha solving services"; license = lib.licenses.mit; hydraPlatforms = lib.platforms.none; + broken = true; } ) { }; @@ -129521,6 +71774,7 @@ self: { description = "A package for integrating a variety of captcha solving services"; license = lib.licenses.mit; hydraPlatforms = lib.platforms.none; + broken = true; } ) { }; @@ -129563,6 +71817,7 @@ self: { description = "A package for integrating a variety of captcha solving services"; license = lib.licenses.mit; hydraPlatforms = lib.platforms.none; + broken = true; } ) { }; @@ -129608,126 +71863,10 @@ self: { license = lib.licenses.bsd3; hydraPlatforms = lib.platforms.none; mainProgram = "car-pool"; - } - ) { }; - - "caramia" = callPackage ( - { - mkDerivation, - base, - bytestring, - containers, - exceptions, - gl, - HUnit, - lens, - linear, - mtl, - sdl2, - semigroups, - test-framework, - test-framework-hunit, - test-framework-quickcheck2, - text, - transformers, - vector, - }: - mkDerivation { - pname = "caramia"; - version = "0.7.2.2"; - sha256 = "1cvpyad7kmkndan1bfpfaav6lara8g78x02pgascrq8n73b2jcgs"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - bytestring - containers - exceptions - gl - lens - linear - mtl - semigroups - text - transformers - vector - ]; - testHaskellDepends = [ - base - containers - HUnit - linear - sdl2 - test-framework - test-framework-hunit - test-framework-quickcheck2 - transformers - ]; - description = "High-level OpenGL bindings"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "carbonara" = callPackage ( - { - mkDerivation, - base, - mysql-simple, - postgresql-simple, - split, - time, - }: - mkDerivation { - pname = "carbonara"; - version = "0.0.1"; - sha256 = "09xz6g873714z5wpnrv01mardshhngk5b34sckdl9rqjil64v5vn"; - libraryHaskellDepends = [ - base - mysql-simple - postgresql-simple - split - time - ]; - description = "some spaghetti code"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; broken = true; } ) { }; - "carboncopy" = callPackage ( - { - mkDerivation, - base, - bytestring, - filepath, - haskell98, - IfElse, - MissingH, - }: - mkDerivation { - pname = "carboncopy"; - version = "0.1.2"; - sha256 = "1wi06n0cdqkvyqqr9ji7nyjn09qqckskrzi3djcnxgwhwwp8da3i"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - bytestring - filepath - haskell98 - IfElse - MissingH - ]; - description = "Drop emails from threads being watched into special CC folder"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "carboncopy"; - } - ) { }; - "cardano-addresses" = callPackage ( { mkDerivation, @@ -129865,540 +72004,218 @@ self: { quiet, random, text, - transformers, - vector, - }: - mkDerivation { - pname = "cardano-coin-selection"; - version = "1.0.1"; - sha256 = "1nvnkd5g0vq4vqj1w55hd1b1v7rwzhb3anhavablw9wy3w230qja"; - libraryHaskellDepends = [ - base - bytestring - containers - cryptonite - deepseq - quiet - text - transformers - ]; - testHaskellDepends = [ - base - bytestring - containers - cryptonite - deepseq - fmt - hspec - memory - QuickCheck - quiet - random - text - transformers - vector - ]; - description = "Algorithms for coin selection and fee balancing"; - license = lib.licenses.asl20; - } - ) { }; - - "cardano-crypto" = callPackage ( - { - mkDerivation, - base, - basement, - bytestring, - crypton, - deepseq, - foundation, - gauge, - hashable, - integer-gmp, - memory, - }: - mkDerivation { - pname = "cardano-crypto"; - version = "1.3.0"; - sha256 = "0yd83mvpspxbdr6k4gf00l1hbgiwm5qhaa3dfh2scn34g401ngjx"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - basement - bytestring - crypton - deepseq - foundation - hashable - integer-gmp - memory - ]; - testHaskellDepends = [ - base - basement - bytestring - crypton - foundation - memory - ]; - benchmarkHaskellDepends = [ - base - bytestring - crypton - gauge - memory - ]; - description = "Cryptography primitives for cardano"; - license = lib.licenses.mit; - } - ) { }; - - "cardano-transactions" = - callPackage - ( - { - mkDerivation, - ansi-terminal, - base, - base58-bytestring, - bytestring, - cardano-binary, - cardano-crypto, - cardano-crypto-wrapper, - cardano-ledger, - cardano-ledger-test, - cardano-tx, - cborg, - cryptonite, - extra, - hedgehog-quickcheck, - hspec, - memory, - optparse-applicative, - process, - QuickCheck, - text, - }: - mkDerivation { - pname = "cardano-transactions"; - version = "1.0.0"; - sha256 = "0qzf1yf85m0fwiayjb8g09w9dxq1zyg9xwjcd9p98i3dj6722yfa"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - base58-bytestring - bytestring - cardano-binary - cardano-crypto - cardano-crypto-wrapper - cardano-ledger - cborg - cryptonite - extra - memory - text - ]; - executableHaskellDepends = [ - ansi-terminal - base - bytestring - cborg - memory - optparse-applicative - text - ]; - testHaskellDepends = [ - base - bytestring - cardano-crypto-wrapper - cardano-ledger - cardano-ledger-test - cborg - hedgehog-quickcheck - hspec - process - QuickCheck - text - ]; - testToolDepends = [ cardano-tx ]; - description = "Library utilities for constructing and signing Cardano transactions"; - license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; - mainProgram = "cardano-tx"; - broken = true; - } - ) - { - cardano-binary = null; - cardano-crypto-wrapper = null; - cardano-ledger = null; - cardano-ledger-test = null; - cardano-tx = null; - }; - - "carettah" = callPackage ( - { - mkDerivation, - base, - cairo, - directory, - filepath, - gtk, - gtk2hs-buildtools, - hcwiid, - highlighting-kate, - mtl, - pandoc, - pango, - process, - text, - time, - }: - mkDerivation { - pname = "carettah"; - version = "0.5.1"; - sha256 = "0k0zqi6c6cqhkxhdgn5n5cpq4pjlvv1m5wzxrsiw9aj23dk9bgxa"; - isLibrary = false; - isExecutable = true; - enableSeparateDataOutput = true; - executableHaskellDepends = [ - base - cairo - directory - filepath - gtk - gtk2hs-buildtools - hcwiid - highlighting-kate - mtl - pandoc - pango - process - text - time - ]; - description = "A presentation tool written with Haskell"; - license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "carray" = callPackage ( - { - mkDerivation, - array, - base, - binary, - bytestring, - ix-shapable, - QuickCheck, - syb, - }: - mkDerivation { - pname = "carray"; - version = "0.1.6.8"; - sha256 = "04qny61gcjblqjrz761wp4bdkxk6zbm31xn6h426iybw9kanf6cg"; - revision = "2"; - editedCabalFile = "1gw70a253siym1g40nqskmmr1y8lnbnhz1aqsg5jhlmfavqscwcz"; - libraryHaskellDepends = [ - array - base - binary - bytestring - ix-shapable - QuickCheck - syb - ]; - testHaskellDepends = [ - array - base - ix-shapable - QuickCheck - ]; - benchmarkHaskellDepends = [ - array - base - ]; - description = "A C-compatible array library"; - license = lib.licenses.bsd3; - maintainers = [ lib.maintainers.thielema ]; - } - ) { }; - - "carte" = callPackage ( - { - mkDerivation, - base, - filepath, - mtl, - network, - optparse-applicative, - random, - semigroups, - time, - transformers, - tuple, - }: - mkDerivation { - pname = "carte"; - version = "0.1.0.0"; - sha256 = "0djiicsqzszn1z7pz5jz61ms3sc93cw0wqsjly140m543z0l0sis"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - filepath - mtl - network - optparse-applicative - random - semigroups - time - transformers - tuple - ]; - description = "Carte: A commandline pastebin server"; - license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - mainProgram = "carte"; - broken = true; - } - ) { }; - - "cartel" = callPackage ( - { - mkDerivation, - base, - directory, - filepath, - multiarg, - optparse-applicative, - pretty-show, - process, - QuickCheck, - random, - split, - tasty, - tasty-quickcheck, - tasty-th, - time, - transformers, - }: - mkDerivation { - pname = "cartel"; - version = "0.18.0.2"; - sha256 = "0w62dv3lw46yh0nv68zf3wiw69ah4y8g451jz5disfxppqnal9vv"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - directory - filepath - optparse-applicative - pretty-show - process - split - time - transformers - ]; - executableHaskellDepends = [ - base - directory - filepath - optparse-applicative - pretty-show - process - split - time - transformers - ]; - testHaskellDepends = [ - base - directory - filepath - multiarg - optparse-applicative - pretty-show - process - QuickCheck - random - split - tasty - tasty-quickcheck - tasty-th - time - transformers - ]; - description = "Specify Cabal files in Haskell"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "cartel-init"; - } - ) { }; - - "cas-hashable" = callPackage ( - { - mkDerivation, - aeson, - base, - bytestring, - clock, - containers, - cryptonite, - ghc-prim, - hashable, - integer-gmp, - memory, - path, - path-io, - safe-exceptions, - scientific, - text, - time, - unix, - unordered-containers, + transformers, vector, }: mkDerivation { - pname = "cas-hashable"; + pname = "cardano-coin-selection"; version = "1.0.1"; - sha256 = "13r3iiv882mq692yy24gy3kdfgg3lrk51909na5yx2hjlj47nyxd"; + sha256 = "1nvnkd5g0vq4vqj1w55hd1b1v7rwzhb3anhavablw9wy3w230qja"; libraryHaskellDepends = [ - aeson base bytestring - clock containers cryptonite - ghc-prim - hashable - integer-gmp + deepseq + quiet + text + transformers + ]; + testHaskellDepends = [ + base + bytestring + containers + cryptonite + deepseq + fmt + hspec memory - path - path-io - safe-exceptions - scientific + QuickCheck + quiet + random text - time - unix - unordered-containers + transformers vector ]; - description = "A hashing class for content-addressed storage"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; + description = "Algorithms for coin selection and fee balancing"; + license = lib.licenses.asl20; } ) { }; - "cas-hashable-s3" = callPackage ( + "cardano-crypto" = callPackage ( { mkDerivation, - aeson, - aws, base, - cas-hashable, - constraints, - http-conduit, - reflection, - resourcet, + basement, + bytestring, + crypton, + deepseq, + foundation, + gauge, + hashable, + integer-gmp, + memory, }: mkDerivation { - pname = "cas-hashable-s3"; - version = "1.0.0"; - sha256 = "07sap2kx6vqhyszdnmnvamaqkfpqn3711phj0ig961n7h8p433dz"; + pname = "cardano-crypto"; + version = "1.3.0"; + sha256 = "0yd83mvpspxbdr6k4gf00l1hbgiwm5qhaa3dfh2scn34g401ngjx"; + isLibrary = true; + isExecutable = true; libraryHaskellDepends = [ - aeson - aws base - cas-hashable - constraints - http-conduit - reflection - resourcet + basement + bytestring + crypton + deepseq + foundation + hashable + integer-gmp + memory + ]; + testHaskellDepends = [ + base + basement + bytestring + crypton + foundation + memory + ]; + benchmarkHaskellDepends = [ + base + bytestring + crypton + gauge + memory ]; - description = "ContentHashable instances for S3 objects"; + description = "Cryptography primitives for cardano"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; } ) { }; - "cas-store" = callPackage ( + "cardano-transactions" = + callPackage + ( + { + mkDerivation, + ansi-terminal, + base, + base58-bytestring, + bytestring, + cardano-binary, + cardano-crypto, + cardano-crypto-wrapper, + cardano-ledger, + cardano-ledger-test, + cardano-tx, + cborg, + cryptonite, + extra, + hedgehog-quickcheck, + hspec, + memory, + optparse-applicative, + process, + QuickCheck, + text, + }: + mkDerivation { + pname = "cardano-transactions"; + version = "1.0.0"; + sha256 = "0qzf1yf85m0fwiayjb8g09w9dxq1zyg9xwjcd9p98i3dj6722yfa"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + base + base58-bytestring + bytestring + cardano-binary + cardano-crypto + cardano-crypto-wrapper + cardano-ledger + cborg + cryptonite + extra + memory + text + ]; + executableHaskellDepends = [ + ansi-terminal + base + bytestring + cborg + memory + optparse-applicative + text + ]; + testHaskellDepends = [ + base + bytestring + cardano-crypto-wrapper + cardano-ledger + cardano-ledger-test + cborg + hedgehog-quickcheck + hspec + process + QuickCheck + text + ]; + testToolDepends = [ cardano-tx ]; + description = "Library utilities for constructing and signing Cardano transactions"; + license = lib.licenses.asl20; + hydraPlatforms = lib.platforms.none; + mainProgram = "cardano-tx"; + broken = true; + } + ) + { + cardano-binary = null; + cardano-crypto-wrapper = null; + cardano-ledger = null; + cardano-ledger-test = null; + cardano-tx = null; + }; + + "carray" = callPackage ( { mkDerivation, - aeson, - async, + array, base, + binary, bytestring, - cas-hashable, - containers, - cryptonite, - directory, - filepath, - hashable, - hinotify, - hostname, - lens, - path, - path-io, - random, - safe-exceptions, - sqlite-simple, - store, - tar, - tasty, - tasty-hunit, - text, - unix, - unliftio, + ix-shapable, + QuickCheck, + syb, }: mkDerivation { - pname = "cas-store"; - version = "1.1.0"; - sha256 = "0fky3ag03wsnlij1f912a5ag082d2q9z8qfly86cw7kwz631ld18"; + pname = "carray"; + version = "0.1.6.8"; + sha256 = "04qny61gcjblqjrz761wp4bdkxk6zbm31xn6h426iybw9kanf6cg"; + revision = "2"; + editedCabalFile = "1gw70a253siym1g40nqskmmr1y8lnbnhz1aqsg5jhlmfavqscwcz"; libraryHaskellDepends = [ - aeson - async + array base + binary bytestring - cas-hashable - containers - cryptonite - directory - filepath - hashable - hinotify - hostname - lens - path - path-io - random - safe-exceptions - sqlite-simple - store - tar - text - unix - unliftio + ix-shapable + QuickCheck + syb ]; testHaskellDepends = [ - async + array base - cas-hashable - containers - path - path-io - safe-exceptions - tasty - tasty-hunit - unix + ix-shapable + QuickCheck ]; - description = "A content-addressed storage"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; + benchmarkHaskellDepends = [ + array + base + ]; + description = "A C-compatible array library"; + license = lib.licenses.bsd3; + maintainers = [ lib.maintainers.thielema ]; } ) { }; @@ -130539,114 +72356,6 @@ self: { } ) { }; - "casadi-bindings" = callPackage ( - { - mkDerivation, - base, - binary, - casadi, - casadi-bindings-core, - casadi-bindings-internal, - cereal, - containers, - doctest, - HUnit, - linear, - QuickCheck, - spatial-math, - test-framework, - test-framework-hunit, - test-framework-quickcheck2, - vector, - vector-binary-instances, - }: - mkDerivation { - pname = "casadi-bindings"; - version = "3.4.5.0"; - sha256 = "0ps01gm27dajr8ixfppc2mfmx8yzr24fbq9k5n3c9xgxvn9w7rmc"; - libraryHaskellDepends = [ - base - binary - casadi-bindings-core - casadi-bindings-internal - cereal - containers - linear - spatial-math - vector - vector-binary-instances - ]; - librarySystemDepends = [ casadi ]; - testHaskellDepends = [ - base - containers - doctest - HUnit - QuickCheck - test-framework - test-framework-hunit - test-framework-quickcheck2 - vector - ]; - description = "mid-level bindings to CasADi"; - license = lib.licenses.lgpl3Only; - hydraPlatforms = lib.platforms.none; - } - ) { inherit (pkgs) casadi; }; - - "casadi-bindings-control" = callPackage ( - { - mkDerivation, - base, - casadi-bindings-core, - casadi-bindings-internal, - casadi_control, - vector, - }: - mkDerivation { - pname = "casadi-bindings-control"; - version = "2.0.0.1"; - sha256 = "03lpg9vp47db8wc4waajfh1z96f3nc1v29wqc9a58vrhfdnhp52w"; - libraryHaskellDepends = [ - base - casadi-bindings-core - casadi-bindings-internal - vector - ]; - libraryPkgconfigDepends = [ casadi_control ]; - description = "low level bindings to casadi-control"; - license = lib.licenses.lgpl3Only; - hydraPlatforms = lib.platforms.none; - } - ) { casadi_control = null; }; - - "casadi-bindings-core" = callPackage ( - { - mkDerivation, - base, - casadi, - casadi-bindings-internal, - containers, - vector, - }: - mkDerivation { - pname = "casadi-bindings-core"; - version = "3.4.5.0"; - sha256 = "0iqzr6gm30a0v7523yqkipgph89wlyihwmnzidpvki0vlv6fldrl"; - libraryHaskellDepends = [ - base - casadi-bindings-internal - containers - vector - ]; - librarySystemDepends = [ casadi ]; - description = "autogenerated low level bindings to casadi"; - license = lib.licenses.lgpl3Only; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { inherit (pkgs) casadi; }; - "casadi-bindings-internal" = callPackage ( { mkDerivation, @@ -130670,95 +72379,6 @@ self: { } ) { inherit (pkgs) casadi; }; - "casadi-bindings-ipopt-interface" = callPackage ( - { - mkDerivation, - base, - casadi-bindings-core, - casadi-bindings-internal, - casadi_ipopt_interface, - vector, - }: - mkDerivation { - pname = "casadi-bindings-ipopt-interface"; - version = "1.9.0.3"; - sha256 = "1h1qpl8ch8riz614fssirlp5j3vzi39jjajwjnfqvgw7h8sdam2a"; - libraryHaskellDepends = [ - base - casadi-bindings-core - casadi-bindings-internal - vector - ]; - libraryPkgconfigDepends = [ casadi_ipopt_interface ]; - description = "low level bindings to casadi-ipopt_interface"; - license = lib.licenses.lgpl3Only; - hydraPlatforms = lib.platforms.none; - } - ) { casadi_ipopt_interface = null; }; - - "casadi-bindings-snopt-interface" = callPackage ( - { - mkDerivation, - base, - casadi-bindings-core, - casadi-bindings-internal, - casadi_snopt_interface, - vector, - }: - mkDerivation { - pname = "casadi-bindings-snopt-interface"; - version = "1.9.0.3"; - sha256 = "0sygbbvdrd1za6k9yf0yqxfd48imlhghzf6sy0dh77jmdhlb8asw"; - libraryHaskellDepends = [ - base - casadi-bindings-core - casadi-bindings-internal - vector - ]; - libraryPkgconfigDepends = [ casadi_snopt_interface ]; - description = "low level bindings to casadi-snopt_interface"; - license = lib.licenses.lgpl3Only; - hydraPlatforms = lib.platforms.none; - } - ) { casadi_snopt_interface = null; }; - - "cascading" = callPackage ( - { - mkDerivation, - base, - blaze-builder, - bytestring, - colour, - containers, - lens, - mtl, - text, - utf8-string, - web-routes, - }: - mkDerivation { - pname = "cascading"; - version = "0.1.0"; - sha256 = "0w9zhaf4a09nl3b1sffllgf0zc10lzy38a8k4f7sbc0hr45wzj5y"; - libraryHaskellDepends = [ - base - blaze-builder - bytestring - colour - containers - lens - mtl - text - utf8-string - web-routes - ]; - description = "DSL for HTML CSS (Cascading Style Sheets)"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "case-conversion" = callPackage ( { mkDerivation, @@ -130826,58 +72446,6 @@ self: { } ) { }; - "case-insensitive-match" = callPackage ( - { - mkDerivation, - base, - bytestring, - case-insensitive, - criterion, - mtl, - QuickCheck, - random-strings, - tagsoup, - text, - }: - mkDerivation { - pname = "case-insensitive-match"; - version = "0.1.1.0"; - sha256 = "0dx4vcm3k1v6y8hwh1nig3yxb92swa5d2mh21vb0a3c49c906l2g"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - bytestring - text - ]; - executableHaskellDepends = [ - base - bytestring - ]; - testHaskellDepends = [ - base - bytestring - mtl - QuickCheck - text - ]; - benchmarkHaskellDepends = [ - base - bytestring - case-insensitive - criterion - random-strings - tagsoup - text - ]; - description = "A simplified, faster way to do case-insensitive matching"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "readme-example"; - broken = true; - } - ) { }; - "cased" = callPackage ( { mkDerivation, @@ -130898,27 +72466,6 @@ self: { } ) { }; - "caseof" = callPackage ( - { - mkDerivation, - base, - template-haskell, - }: - mkDerivation { - pname = "caseof"; - version = "0.0.1"; - sha256 = "1j8r8ldaxgyvka3zpqfl8qp0mbwrnh1s1xl5fgx3jjzqxlisfdp3"; - libraryHaskellDepends = [ - base - template-haskell - ]; - description = "Combinators for casing on constructors"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "cases" = callPackage ( { mkDerivation, @@ -130951,37 +72498,6 @@ self: { } ) { }; - "cash" = callPackage ( - { - mkDerivation, - base, - deepseq, - haskell98, - HaXml, - network, - parallel, - pretty, - }: - mkDerivation { - pname = "cash"; - version = "0.1.0.1"; - sha256 = "0pwn33dpv5bgs74i8x6q47hsbl0jg68xwhjjiwyjdyl6sb3rfih7"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base - deepseq - haskell98 - HaXml - network - parallel - pretty - ]; - description = "the Computer Algebra SHell"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "casing" = callPackage ( { mkDerivation, @@ -131043,412 +72559,6 @@ self: { } ) { }; - "casr-logbook-html" = callPackage ( - { - mkDerivation, - base, - casr-logbook-types, - digit, - directory, - doctest, - filepath, - lens, - lucid, - QuickCheck, - template-haskell, - text, - time, - }: - mkDerivation { - pname = "casr-logbook-html"; - version = "0.0.3"; - sha256 = "1fwl4hvbx25f6g06f6k0glz7s385ch41n3iy7b40picfm8jcvcry"; - libraryHaskellDepends = [ - base - casr-logbook-types - digit - lens - lucid - text - time - ]; - testHaskellDepends = [ - base - directory - doctest - filepath - QuickCheck - template-haskell - ]; - description = "CASR 61.345 Pilot Personal Logbook HTML output"; - license = "unknown"; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "casr-logbook-meta" = callPackage ( - { - mkDerivation, - base, - casr-logbook-types, - directory, - doctest, - filepath, - lens, - QuickCheck, - template-haskell, - }: - mkDerivation { - pname = "casr-logbook-meta"; - version = "0.0.4"; - sha256 = "143ck8fszxcv2dfq1ijpaqs8g41yz3r1fz1cm4cmfgwsnnvy93lg"; - libraryHaskellDepends = [ - base - casr-logbook-types - lens - ]; - testHaskellDepends = [ - base - directory - doctest - filepath - QuickCheck - template-haskell - ]; - description = "Meta-information about entries in a CASR 61.345 logbook (casr-logbook)"; - license = "unknown"; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "casr-logbook-meta-html" = callPackage ( - { - mkDerivation, - base, - casr-logbook-html, - casr-logbook-meta, - casr-logbook-types, - directory, - doctest, - filepath, - lens, - lucid, - QuickCheck, - template-haskell, - text, - }: - mkDerivation { - pname = "casr-logbook-meta-html"; - version = "0.0.4"; - sha256 = "1d848p9almi0zs0ig87d65njsk9s87v542w06kpgk20ys908dssj"; - libraryHaskellDepends = [ - base - casr-logbook-html - casr-logbook-meta - casr-logbook-types - lens - lucid - text - ]; - testHaskellDepends = [ - base - directory - doctest - filepath - QuickCheck - template-haskell - ]; - description = "Meta-information about entries in a CASR 61.345 logbook (casr-logbook) HTML output"; - license = "unknown"; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "casr-logbook-reports" = callPackage ( - { - mkDerivation, - base, - casr-logbook-types, - containers, - directory, - doctest, - filepath, - lens, - QuickCheck, - template-haskell, - time, - }: - mkDerivation { - pname = "casr-logbook-reports"; - version = "0.0.2"; - sha256 = "13yg75hgi81pc26yrvg95k1snci0dsl3n0xk2lsr7s6cha4qn51i"; - libraryHaskellDepends = [ - base - casr-logbook-types - containers - lens - time - ]; - testHaskellDepends = [ - base - directory - doctest - filepath - QuickCheck - template-haskell - ]; - description = "CASR 61.345 logbook (casr-logbook) reports."; - license = "unknown"; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "casr-logbook-reports-html" = callPackage ( - { - mkDerivation, - base, - casr-logbook-html, - casr-logbook-reports, - casr-logbook-types, - containers, - directory, - doctest, - filepath, - lens, - lucid, - QuickCheck, - template-haskell, - text, - time, - }: - mkDerivation { - pname = "casr-logbook-reports-html"; - version = "0.0.2"; - sha256 = "1qa78swh0c57jq5b6mrlyhal6cn781yhd3v3z3fg1cqfcjlv1250"; - libraryHaskellDepends = [ - base - casr-logbook-html - casr-logbook-reports - casr-logbook-types - containers - lens - lucid - text - time - ]; - testHaskellDepends = [ - base - directory - doctest - filepath - QuickCheck - template-haskell - ]; - description = "CASR 61.345 logbook reports HTML output"; - license = "unknown"; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "casr-logbook-reports-meta" = callPackage ( - { - mkDerivation, - base, - casr-logbook-meta, - casr-logbook-types, - directory, - doctest, - filepath, - lens, - QuickCheck, - template-haskell, - }: - mkDerivation { - pname = "casr-logbook-reports-meta"; - version = "0.0.3"; - sha256 = "1di4q1g6idc7s2mymg85qa4s9wshj01vyyx34ldbi5874zcfvzhn"; - libraryHaskellDepends = [ - base - casr-logbook-meta - casr-logbook-types - lens - ]; - testHaskellDepends = [ - base - directory - doctest - filepath - QuickCheck - template-haskell - ]; - description = "Reports on meta-information about entries in a CASR 61.345 logbook (casr-logbook)"; - license = "unknown"; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "casr-logbook-reports-meta-html" = callPackage ( - { - mkDerivation, - base, - casr-logbook-meta, - casr-logbook-meta-html, - casr-logbook-reports, - casr-logbook-reports-html, - casr-logbook-reports-meta, - casr-logbook-types, - directory, - doctest, - filepath, - lens, - lucid, - QuickCheck, - template-haskell, - text, - }: - mkDerivation { - pname = "casr-logbook-reports-meta-html"; - version = "0.0.3"; - sha256 = "09gi1r4mma4f2dc1x2bkhlg8sv55rgg8kwqfcv8v4xsva3lnjwf1"; - libraryHaskellDepends = [ - base - casr-logbook-meta - casr-logbook-meta-html - casr-logbook-reports - casr-logbook-reports-html - casr-logbook-reports-meta - casr-logbook-types - lens - lucid - text - ]; - testHaskellDepends = [ - base - directory - doctest - filepath - QuickCheck - template-haskell - ]; - description = "HTML output for reports on meta-information about entries in a CASR 61.345 logbook"; - license = "unknown"; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "casr-logbook-types" = callPackage ( - { - mkDerivation, - base, - containers, - digit, - directory, - doctest, - filepath, - lens, - QuickCheck, - template-haskell, - time, - }: - mkDerivation { - pname = "casr-logbook-types"; - version = "0.0.2"; - sha256 = "1dnbmxgfpx953sk9rmpxqzs9mgzgmyp2r55ll9knrfijavfr3arv"; - revision = "1"; - editedCabalFile = "1klq48y2wis4zaqs3lbs3bm8whqaglcayasf9qfrqjjzddjd20ms"; - libraryHaskellDepends = [ - base - containers - digit - lens - time - ]; - testHaskellDepends = [ - base - directory - doctest - filepath - QuickCheck - template-haskell - ]; - description = "CASR 61.345 Pilot Personal Logbook"; - license = "unknown"; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "cassandra-cql" = callPackage ( - { - mkDerivation, - base, - bytestring, - cereal, - containers, - cryptohash, - Decimal, - hslogger, - MonadCatchIO-transformers, - mtl, - network, - resource-pool, - stm, - text, - time, - uuid, - }: - mkDerivation { - pname = "cassandra-cql"; - version = "0.5.0.2"; - sha256 = "1nk0psvmzhvxls4h0p4blrm8qjn6lyh08bdxpiagpw6nrpvbda54"; - libraryHaskellDepends = [ - base - bytestring - cereal - containers - cryptohash - Decimal - hslogger - MonadCatchIO-transformers - mtl - network - resource-pool - stm - text - time - uuid - ]; - description = "Haskell client for Cassandra's CQL protocol"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "cassandra-thrift" = callPackage ( - { - mkDerivation, - base, - bytestring, - containers, - Thrift, - }: - mkDerivation { - pname = "cassandra-thrift"; - version = "0.8.5.1"; - sha256 = "0hmmi0g32nfwcny56sb4jw463jp7hiwj2hhv42bf8h9az30vjxwc"; - libraryHaskellDepends = [ - base - bytestring - containers - Thrift - ]; - description = "thrift bindings to the cassandra database"; - license = "unknown"; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "cassava" = callPackage ( { mkDerivation, @@ -131656,64 +72766,6 @@ self: { } ) { }; - "cassava-records" = callPackage ( - { - mkDerivation, - attoparsec, - base, - bytestring, - cassava, - containers, - foldl, - HUnit, - QuickCheck, - tasty, - tasty-hunit, - tasty-quickcheck, - template-haskell, - text, - unordered-containers, - vector, - }: - mkDerivation { - pname = "cassava-records"; - version = "0.1.0.4"; - sha256 = "13dgcqrlvcqifgisfk80f9siwzzbk96jhhbrnmrpmg95270k5y0i"; - libraryHaskellDepends = [ - attoparsec - base - bytestring - cassava - foldl - template-haskell - text - unordered-containers - vector - ]; - testHaskellDepends = [ - attoparsec - base - bytestring - cassava - containers - foldl - HUnit - QuickCheck - tasty - tasty-hunit - tasty-quickcheck - template-haskell - text - unordered-containers - vector - ]; - description = "Auto-generation of records data type"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "cassava-streams" = callPackage ( { mkDerivation, @@ -131814,92 +72866,6 @@ self: { } ) { }; - "cassy" = callPackage ( - { - mkDerivation, - aeson, - async, - attoparsec, - base, - binary, - bytestring, - cassandra-thrift, - cereal, - conduit, - containers, - data-default, - derive, - errors, - exceptions, - HUnit, - mtl, - network, - QuickCheck, - resource-pool, - retry, - safecopy, - stm, - syb, - test-framework, - test-framework-hunit, - test-framework-quickcheck2, - text, - Thrift, - time, - transformers-base, - }: - mkDerivation { - pname = "cassy"; - version = "0.7.1"; - sha256 = "0nm1xn7rkxqdap0k3lcl29jp7ajn5fypaqx3ag1zbyp8llc7xy0f"; - libraryHaskellDepends = [ - aeson - async - attoparsec - base - binary - bytestring - cassandra-thrift - cereal - conduit - containers - data-default - errors - exceptions - mtl - network - resource-pool - retry - safecopy - stm - syb - text - Thrift - time - transformers-base - ]; - testHaskellDepends = [ - base - bytestring - cassandra-thrift - containers - derive - HUnit - network - QuickCheck - test-framework - test-framework-hunit - test-framework-quickcheck2 - text - Thrift - time - ]; - description = "A high level driver for the Cassandra datastore"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "cast" = callPackage ( { mkDerivation, base }: mkDerivation { @@ -131992,70 +72958,6 @@ self: { } ) { }; - "castle" = callPackage ( - { - mkDerivation, - base, - containers, - optparse-applicative, - shelly, - system-fileio, - system-filepath, - text, - }: - mkDerivation { - pname = "castle"; - version = "0.1.0.1"; - sha256 = "0h6dvc8lzlxkgkqkj3zwxjdmws29g4fsw7p6ysd7i54xqb8vy5ka"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - containers - optparse-applicative - shelly - system-fileio - system-filepath - text - ]; - description = "A tool to manage shared cabal-install sandboxes"; - license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; - mainProgram = "castle"; - broken = true; - } - ) { }; - - "casui" = callPackage ( - { - mkDerivation, - base, - gtk, - haskell98, - mtl, - parsec, - }: - mkDerivation { - pname = "casui"; - version = "0.3"; - sha256 = "1vjhg9dxg23q0dqr07gbrg92h3m9r38d7jb3c4sxnw6gaj76f5gw"; - isLibrary = false; - isExecutable = true; - enableSeparateDataOutput = true; - executableHaskellDepends = [ - base - gtk - haskell98 - mtl - parsec - ]; - description = "Equation Manipulator"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - mainProgram = "casui"; - } - ) { }; - "catalyst" = callPackage ( { mkDerivation, @@ -132075,81 +72977,6 @@ self: { } ) { }; - "catamorphism" = callPackage ( - { - mkDerivation, - base, - hspec, - QuickCheck, - template-haskell, - }: - mkDerivation { - pname = "catamorphism"; - version = "0.7.0.0"; - sha256 = "0a01nr2lk80pfv9dr4sxyixwhfpprrvbgh44901as4jnb3gcbk33"; - libraryHaskellDepends = [ - base - template-haskell - ]; - testHaskellDepends = [ - base - hspec - QuickCheck - ]; - description = "Exposes a Template Haskell function for generating catamorphisms"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "catch-fd" = callPackage ( - { - mkDerivation, - base, - mtl, - transformers, - }: - mkDerivation { - pname = "catch-fd"; - version = "0.2.0.2"; - sha256 = "05fvrkvqyj7xdn6vvdwhfbym7rg9fl7r7lzzcsr2cx59iqi23frx"; - libraryHaskellDepends = [ - base - mtl - transformers - ]; - description = "MonadThrow and MonadCatch, using functional dependencies"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "categorical-algebra" = callPackage ( - { - mkDerivation, - base, - newtype, - pointless-haskell, - void, - }: - mkDerivation { - pname = "categorical-algebra"; - version = "0.0.0.1"; - sha256 = "1kx6195mfnw4aqmcd1m4s8z5l1s8zh69in00p9a0mxm3xj3pfvpl"; - libraryHaskellDepends = [ - base - newtype - pointless-haskell - void - ]; - description = "Categorical Monoids and Semirings"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "categories" = callPackage ( { mkDerivation, @@ -132191,168 +73018,6 @@ self: { ]; description = "Categorical types and classes"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "category-extras" = callPackage ( - { - mkDerivation, - adjunctions, - bifunctors, - categories, - comonad, - comonad-extras, - comonad-transformers, - comonads-fd, - contravariant, - distributive, - either, - free, - groupoids, - indexed, - indexed-extras, - invariant, - kan-extensions, - keys, - monad-products, - pointed, - profunctor-extras, - profunctors, - recursion-schemes, - reducers, - representable-functors, - representable-profunctors, - semigroupoid-extras, - semigroupoids, - semigroups, - void, - }: - mkDerivation { - pname = "category-extras"; - version = "1.0.2"; - sha256 = "168psp1qd80838b9945499qh99jidbl2gngcrjqk6hb0qsyhckcq"; - libraryHaskellDepends = [ - adjunctions - bifunctors - categories - comonad - comonad-extras - comonad-transformers - comonads-fd - contravariant - distributive - either - free - groupoids - indexed - indexed-extras - invariant - kan-extensions - keys - monad-products - pointed - profunctor-extras - profunctors - recursion-schemes - reducers - representable-functors - representable-profunctors - semigroupoid-extras - semigroupoids - semigroups - void - ]; - doHaddock = false; - description = "A meta-package documenting various packages inspired by category theory"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "category-printf" = callPackage ( - { - mkDerivation, - base, - bytestring, - comonad, - text, - }: - mkDerivation { - pname = "category-printf"; - version = "0.1.1.0"; - sha256 = "198bpnmmkwzx9z0n850pgzr2i9yw0kmd4g2m3fhifkhgy6zfidji"; - libraryHaskellDepends = [ - base - bytestring - comonad - text - ]; - description = "Highbrow approach to type-safe printf format specifications"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "category-traced" = callPackage ( - { - mkDerivation, - base, - categories, - }: - mkDerivation { - pname = "category-traced"; - version = "0.1.0.1"; - sha256 = "00c70xvjprq0laipa47ypd3dq8a2818b4k3sgamisgy40a7vgp10"; - revision = "2"; - editedCabalFile = "0c4bb2wa3yd1blnji9i1bpx883y2q7aklqckyr5n8c5bzwwyb9ql"; - libraryHaskellDepends = [ - base - categories - ]; - description = "Traced monoidal categories"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "catnplus" = callPackage ( - { - mkDerivation, - ansi-terminal, - base, - directory, - either, - optparse-applicative, - template-haskell, - terminal-size, - transformers, - vcs-revision, - }: - mkDerivation { - pname = "catnplus"; - version = "0.1.0.0"; - sha256 = "04bmlqgvh2cxddczdcblbdih0c5xp9d7zf8290crsjqh5f57xcbj"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - ansi-terminal - base - directory - either - optparse-applicative - template-haskell - terminal-size - transformers - vcs-revision - ]; - description = "Simple tool to display text files with line numbers and paging"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - mainProgram = "catnplus"; - broken = true; } ) { }; @@ -132442,7 +73107,6 @@ self: { ]; description = "Lays out boxes according to the CSS Box Model"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; } ) { }; @@ -132505,113 +73169,6 @@ self: { } ) { }; - "cautious-file" = callPackage ( - { - mkDerivation, - base, - bytestring, - Cabal, - directory, - filepath, - process, - unix, - }: - mkDerivation { - pname = "cautious-file"; - version = "1.0.2"; - sha256 = "1sw5ngwrarq1lsd4c6v2wdmgbhkkq6kpybb62r8ccm11ddgn3yiq"; - revision = "2"; - editedCabalFile = "02ysmm577c4z0s3mqrpdpmzvs18y834ic90iwi5czcnj02zvg22s"; - setupHaskellDepends = [ - base - Cabal - process - ]; - libraryHaskellDepends = [ - base - bytestring - directory - filepath - unix - ]; - description = "Ways to write a file cautiously, to reduce the chances of problems such as data loss due to crashes or power failures"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "cautious-gen" = callPackage ( - { - mkDerivation, - base, - cautious, - genvalidity, - genvalidity-hspec, - genvalidity-hspec-aeson, - hspec, - QuickCheck, - }: - mkDerivation { - pname = "cautious-gen"; - version = "0.0.0.0"; - sha256 = "1i9cmqkh1n6s3dkqr0f9slm6frslw82rwvngx80iw9rc95anhykl"; - libraryHaskellDepends = [ - base - cautious - genvalidity - ]; - testHaskellDepends = [ - base - cautious - genvalidity - genvalidity-hspec - genvalidity-hspec-aeson - hspec - QuickCheck - ]; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "cayene-lpp" = callPackage ( - { - mkDerivation, - base, - base16-bytestring, - binary, - bytestring, - hspec, - text, - time, - timerep, - }: - mkDerivation { - pname = "cayene-lpp"; - version = "0.1.0.0"; - sha256 = "1fflkpg2n1yv3h0d3lw2gkrxy6rp6x8jbf29pby3jsnls23v8y0d"; - libraryHaskellDepends = [ - base - binary - bytestring - text - time - timerep - ]; - testHaskellDepends = [ - base - base16-bytestring - hspec - ]; - description = "Cayenne Low Power Payload"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "cayenne-lpp" = callPackage ( { mkDerivation, @@ -132723,72 +73280,6 @@ self: { } ) { }; - "cblrepo" = callPackage ( - { - mkDerivation, - aeson, - ansi-wl-pprint, - base, - bytestring, - Cabal, - containers, - directory, - filepath, - mtl, - optparse-applicative, - process, - safe, - stringsearch, - tar, - text, - transformers, - unix, - Unixutils, - utf8-string, - vector, - zlib, - }: - mkDerivation { - pname = "cblrepo"; - version = "0.24.0"; - sha256 = "0ymgyis5spv5vlncwv5s7pwh0b5lrvqcrdyk6kih5issby6p5h83"; - isLibrary = false; - isExecutable = true; - setupHaskellDepends = [ - base - Cabal - ]; - executableHaskellDepends = [ - aeson - ansi-wl-pprint - base - bytestring - Cabal - containers - directory - filepath - mtl - optparse-applicative - process - safe - stringsearch - tar - text - transformers - unix - Unixutils - utf8-string - vector - zlib - ]; - description = "Tool to maintain a database of CABAL packages and their dependencies"; - license = "unknown"; - hydraPlatforms = lib.platforms.none; - mainProgram = "cblrepo"; - broken = true; - } - ) { }; - "cbor-tool" = callPackage ( { mkDerivation, @@ -132837,1143 +73328,449 @@ self: { base, base-orphans, base16-bytestring, - base64-bytestring, - bytestring, - containers, - deepseq, - ghc-bignum, - ghc-prim, - half, - primitive, - QuickCheck, - random, - scientific, - tasty, - tasty-hunit, - tasty-quickcheck, - text, - vector, - }: - mkDerivation { - pname = "cborg"; - version = "0.2.10.0"; - sha256 = "15y7p5rsv76fpklh4rgrxlxxaivpbchxdfdw96mqqjgw7060gzhp"; - revision = "3"; - editedCabalFile = "1ahqlq51kjc8cf5sybbmrh4rf6vsbkcd67rhxhrr9rc5w6nl9h27"; - libraryHaskellDepends = [ - array - base - bytestring - containers - deepseq - ghc-bignum - ghc-prim - half - primitive - text - ]; - testHaskellDepends = [ - aeson - array - base - base-orphans - base16-bytestring - base64-bytestring - bytestring - deepseq - half - primitive - QuickCheck - random - scientific - tasty - tasty-hunit - tasty-quickcheck - text - vector - ]; - description = "Concise Binary Object Representation (CBOR)"; - license = lib.licenses.bsd3; - } - ) { }; - - "cborg-json" = callPackage ( - { - mkDerivation, - aeson, - aeson-pretty, - base, - base-orphans, - base16-bytestring, - base64-bytestring, - bytestring, - cborg, - criterion, - deepseq, - directory, - process, - QuickCheck, - scientific, - tasty, - tasty-hunit, - text, - unordered-containers, - vector, - zlib, - }: - mkDerivation { - pname = "cborg-json"; - version = "0.2.6.0"; - sha256 = "1p6xdimwypmlsc0zdyw1vyyapnhwn2g8b9n0a83ca6h4r90722yv"; - revision = "4"; - editedCabalFile = "06pjqx8v7j8f6rvkf84vahva8y02lykaymnjdrjqrc5rgy01c6m0"; - libraryHaskellDepends = [ - aeson - aeson-pretty - base - base64-bytestring - cborg - scientific - text - unordered-containers - vector - ]; - testHaskellDepends = [ - aeson - base - base-orphans - base16-bytestring - bytestring - cborg - QuickCheck - tasty - tasty-hunit - text - ]; - benchmarkHaskellDepends = [ - aeson - base - bytestring - cborg - criterion - deepseq - directory - process - zlib - ]; - description = "A library for encoding JSON as CBOR"; - license = lib.licenses.bsd3; - } - ) { }; - - "ccast" = callPackage ( - { - mkDerivation, - base, - template-haskell, - }: - mkDerivation { - pname = "ccast"; - version = "0.1.0.0"; - sha256 = "1yls8b1kjmdc8gh1i4vaaav1sgvfccyjfqxjpvb7gw27ivma3v7l"; - libraryHaskellDepends = [ - base - template-haskell - ]; - description = "typesafe c-style casts; useful for FFI"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "cci" = callPackage ( - { - mkDerivation, - base, - binary, - bytestring, - cci, - cmdargs, - containers, - filepath, - mtl, - pretty, - process, - random, - time, - }: - mkDerivation { - pname = "cci"; - version = "0.3.1"; - sha256 = "0pvap67fn9kmjvn2qqq3x99k3mzrrsnb6q6fhawvyxv8drihsfc7"; - revision = "2"; - editedCabalFile = "123jmn7lgz1hmkygjzqckffm77783pfzddnjyvvv7rsnpgl4ckqn"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - bytestring - ]; - librarySystemDepends = [ cci ]; - testHaskellDepends = [ - base - binary - bytestring - cmdargs - containers - filepath - mtl - pretty - process - random - time - ]; - description = "Bindings for the CCI networking library"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { cci = null; }; - - "ccnx" = callPackage ( - { - mkDerivation, - base, - bytestring, - }: - mkDerivation { - pname = "ccnx"; - version = "0.0.0"; - sha256 = "18gnm6skzdnh6cis7l7v3d5813zn6irw6nywg6shffrn8v2y6xh7"; - libraryHaskellDepends = [ - base - bytestring - ]; - description = "A Haskell implementation of the CCNx network protocol"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "cctools-workqueue" = callPackage ( - { - mkDerivation, - bindings-cctools, - bytestring, - dttools, - lens, - monad-loops, - unix, - }: - mkDerivation { - pname = "cctools-workqueue"; - version = "3.6.1.0.1.0.0.1"; - sha256 = "1nqczr2f4bv107sdhqnllqcaz413r4f69f9ypshig8jyxzpcdwn3"; - libraryHaskellDepends = [ - bindings-cctools - bytestring - lens - monad-loops - unix - ]; - librarySystemDepends = [ dttools ]; - description = "High-level interface to CCTools' WorkQueue library"; - license = lib.licenses.gpl2Only; - hydraPlatforms = lib.platforms.none; - } - ) { dttools = null; }; - - "cdar-mBound" = callPackage ( - { - mkDerivation, - base, - containers, - criterion, - deepseq, - integer-gmp, - smallcheck, - tasty, - tasty-hunit, - tasty-quickcheck, - tasty-smallcheck, - }: - mkDerivation { - pname = "cdar-mBound"; - version = "0.1.0.4"; - sha256 = "1p7ri7vfvj3ym0038aq12szs6jgdkq8a4730i67appv9lmxgycfn"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - containers - deepseq - integer-gmp - ]; - executableHaskellDepends = [ base ]; - testHaskellDepends = [ - base - smallcheck - tasty - tasty-hunit - tasty-quickcheck - tasty-smallcheck - ]; - benchmarkHaskellDepends = [ - base - criterion - ]; - description = "Exact real arithmetic using Centred Dyadic Approximations"; - license = lib.licenses.bsd3; - } - ) { }; - - "cdeps" = callPackage ( - { - mkDerivation, - alex, - array, - base, - bytestring, - criterion, - directory, - filepath, - hspec, - optparse-applicative, - text, - }: - mkDerivation { - pname = "cdeps"; - version = "0.1.3.1"; - sha256 = "0r8q2i29wb47dkkws6cyy2qgwzgyhcsmx7sixv8n44rxiiv0dhcw"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - array - base - bytestring - directory - filepath - text - ]; - libraryToolDepends = [ alex ]; - executableHaskellDepends = [ - base - optparse-applicative - ]; - testHaskellDepends = [ - base - hspec - ]; - benchmarkHaskellDepends = [ - base - bytestring - criterion - ]; - description = "Extract dependencies from C code"; - license = lib.licenses.bsd3; - mainProgram = "cdeps"; - } - ) { }; - - "cdp" = callPackage ( - { - mkDerivation, - aeson, - base, - base64-bytestring, - blaze-html, - blaze-markup, - bytestring, - containers, - data-default, - directory, - extra, - filepath, - hspec, - http-conduit, - monad-loops, - mtl, - network-uri, - process, - random, - text, - utf8-string, - vector, - websockets, - }: - mkDerivation { - pname = "cdp"; - version = "0.0.2.0"; - sha256 = "1pi163mysavwhk9s2a78ldbnw0480b9vmvgyr4m426asc17g1kc9"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson - base - bytestring - containers - data-default - directory - extra - filepath - http-conduit - monad-loops - mtl - network-uri - process - random - text - vector - websockets - ]; - executableHaskellDepends = [ - aeson - base - base64-bytestring - blaze-html - blaze-markup - bytestring - containers - data-default - directory - extra - filepath - http-conduit - monad-loops - mtl - network-uri - process - random - text - utf8-string - vector - websockets - ]; - testHaskellDepends = [ - aeson - base - bytestring - containers - data-default - directory - extra - filepath - hspec - http-conduit - monad-loops - mtl - network-uri - process - random - text - vector - websockets - ]; - description = "A library for the Chrome Devtools Protocol"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "cedict" = callPackage ( - { - mkDerivation, - base, - bytestring, - containers, - mtl, - parsec, - utf8-string, - }: - mkDerivation { - pname = "cedict"; - version = "0.2.5"; - sha256 = "13nhwd07ly2ppgbakffr2cc2idacz0q5bahz0819jjascspm32vy"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - bytestring - containers - mtl - parsec - utf8-string - ]; - description = "Convenient Chinese phrase & character lookup"; - license = "GPL"; - hydraPlatforms = lib.platforms.none; - mainProgram = "zi4pu3"; - broken = true; - } - ) { }; - - "cef" = callPackage ( - { - mkDerivation, - base, - bytestring, - directory, - doctest, - filepath, - text, - time, - }: - mkDerivation { - pname = "cef"; - version = "0.1.4"; - sha256 = "1jy4prprrhcjr0xjhbyz9h7wa19s52ckn3nls8jy9zic6455hr45"; - libraryHaskellDepends = [ - base - bytestring - text - time - ]; - testHaskellDepends = [ - base - directory - doctest - filepath - ]; - description = "CEF log format"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "cef3-raw" = - callPackage - ( - { - mkDerivation, - base, - bindings-DSL, - cef, - gtk2, - }: - mkDerivation { - pname = "cef3-raw"; - version = "0.1.0"; - sha256 = "1ff9n9m3hd2kw212zqdvasbglfmv0yl9vv2q518xgb9zlkccj3p7"; - libraryHaskellDepends = [ - base - bindings-DSL - ]; - librarySystemDepends = [ cef ]; - libraryPkgconfigDepends = [ gtk2 ]; - description = "Raw CEF3 bindings"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) - { - cef = null; - inherit (pkgs) gtk2; - }; - - "cef3-simple" = callPackage ( - { - mkDerivation, - base, - cef3-raw, - }: - mkDerivation { - pname = "cef3-simple"; - version = "0.1.0"; - sha256 = "0h4k5mcbpxxv7nd9vf3nc2ynsnncc97q3q5s58gj10q2qpmvl1v7"; - libraryHaskellDepends = [ - base - cef3-raw - ]; - description = "Simple wrapper around cef3-raw"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "ceilometer-common" = callPackage ( - { - mkDerivation, - base, - bimap, - binary, - bytestring, - containers, - data-ordlist, - foldl, - hspec, - lens, - lens-properties, - mtl, - pipes, - QuickCheck, - siphash, - template-haskell, - text, - transformers, - vaultaire-common, - }: - mkDerivation { - pname = "ceilometer-common"; - version = "0.2.3"; - sha256 = "1zqqh7k627yw6vfcdihl2gw8hh3l9gxj283azmmcc9pm15grblps"; - libraryHaskellDepends = [ - base - bimap - binary - bytestring - containers - foldl - lens - pipes - siphash - template-haskell - text - vaultaire-common - ]; - testHaskellDepends = [ - base - bimap - binary - bytestring - containers - data-ordlist - foldl - hspec - lens - lens-properties - mtl - pipes - QuickCheck - siphash - template-haskell - text - transformers - vaultaire-common - ]; - description = "Common Haskell types and encoding for OpenStack Ceilometer"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "cellrenderer-cairo" = callPackage ( - { - mkDerivation, - base, - c2hs, - cairo, - glib, - gtk, - gtk2, - mtl, - }: - mkDerivation { - pname = "cellrenderer-cairo"; - version = "1.0.0.0"; - sha256 = "05cdrq1mrrhfbsk1w1dg5qayan0h9m92r4gqgcpzfa9a073w78zw"; - libraryHaskellDepends = [ - base - cairo - glib - gtk - mtl - ]; - libraryPkgconfigDepends = [ gtk2 ]; - libraryToolDepends = [ c2hs ]; - description = "Cairo-based CellRenderer"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { inherit (pkgs) gtk2; }; - - "celtchar" = callPackage ( - { - mkDerivation, - base, - bytestring, - directory, - file-embed, - filepath, - hspec, - megaparsec, - mtl, - ogmarkup, - optparse-generic, - pandoc, - raw-strings-qq, - shakespeare, - text, - unordered-containers, - yaml, - }: - mkDerivation { - pname = "celtchar"; - version = "0.1.4.0"; - sha256 = "1bd7b1prihmxc9kbvcsgl107c0bkc56c3wz6jgxvvfrwi372s4j1"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - filepath - megaparsec - mtl - ogmarkup - pandoc - shakespeare - text - unordered-containers - yaml - ]; - executableHaskellDepends = [ - base - bytestring - directory - file-embed - filepath - optparse-generic - text - yaml - ]; - testHaskellDepends = [ - base - hspec - raw-strings-qq - ]; - description = "A tool to build a novel"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - mainProgram = "celtchar"; - } - ) { }; - - "cerberus" = callPackage ( - { - mkDerivation, - base, - blaze-builder, - bytestring, - cmdargs, - conduit-extra, - ekg, - ekg-core, - hslogger, - http-client, - http-client-tls, - http-reverse-proxy, - http-types, - pretty-show, - text, - wai, - wai-middleware-caching, - wai-middleware-caching-lru, - wai-middleware-caching-redis, - wai-middleware-throttle, - warp, - }: - mkDerivation { - pname = "cerberus"; - version = "0.1.0.0"; - sha256 = "13jwm87vxn2frxk5mmx5ifzb30b01gv8rad1d6c2i7lkjjmbbj8i"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - blaze-builder - bytestring - conduit-extra - ekg - ekg-core - hslogger - http-client - http-client-tls - http-reverse-proxy - http-types - text - wai - wai-middleware-caching - wai-middleware-caching-lru - wai-middleware-caching-redis - wai-middleware-throttle - warp - ]; - executableHaskellDepends = [ - base - cmdargs - ekg - ekg-core - hslogger - pretty-show - ]; - testHaskellDepends = [ base ]; - description = "Protect and control API access with cerberus"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "cerberus"; - broken = true; - } - ) { }; - - "cereal" = callPackage ( - { - mkDerivation, - array, - base, + base64-bytestring, bytestring, containers, + deepseq, + ghc-bignum, ghc-prim, + half, + primitive, QuickCheck, - test-framework, - test-framework-quickcheck2, + random, + scientific, + tasty, + tasty-hunit, + tasty-quickcheck, + text, + vector, }: mkDerivation { - pname = "cereal"; - version = "0.5.8.3"; - sha256 = "0shg3q933cvf18j1gmxill48d4sl4mvxj2qkj6yya9hvcqh5544r"; + pname = "cborg"; + version = "0.2.10.0"; + sha256 = "15y7p5rsv76fpklh4rgrxlxxaivpbchxdfdw96mqqjgw7060gzhp"; + revision = "3"; + editedCabalFile = "1ahqlq51kjc8cf5sybbmrh4rf6vsbkcd67rhxhrr9rc5w6nl9h27"; libraryHaskellDepends = [ array base bytestring containers + deepseq + ghc-bignum ghc-prim + half + primitive + text ]; testHaskellDepends = [ + aeson + array base + base-orphans + base16-bytestring + base64-bytestring bytestring + deepseq + half + primitive QuickCheck - test-framework - test-framework-quickcheck2 + random + scientific + tasty + tasty-hunit + tasty-quickcheck + text + vector ]; - description = "A binary serialization library"; + description = "Concise Binary Object Representation (CBOR)"; license = lib.licenses.bsd3; } ) { }; - "cereal-conduit" = callPackage ( + "cborg-json" = callPackage ( { mkDerivation, + aeson, + aeson-pretty, base, + base-orphans, + base16-bytestring, + base64-bytestring, bytestring, - cereal, - conduit, - HUnit, - mtl, - resourcet, - transformers, + cborg, + criterion, + deepseq, + directory, + process, + QuickCheck, + scientific, + tasty, + tasty-hunit, + text, + unordered-containers, + vector, + zlib, }: mkDerivation { - pname = "cereal-conduit"; - version = "0.8.0"; - sha256 = "1srr7agvgfw78q5s1npjq5sgynvhjgllpihiv37ylkwqm4c4ap6r"; - revision = "2"; - editedCabalFile = "1w26az4pj699qbpa9pz55g4svkbs92ls5k6wkzjn40ghisnjk2q6"; + pname = "cborg-json"; + version = "0.2.6.0"; + sha256 = "1p6xdimwypmlsc0zdyw1vyyapnhwn2g8b9n0a83ca6h4r90722yv"; + revision = "4"; + editedCabalFile = "06pjqx8v7j8f6rvkf84vahva8y02lykaymnjdrjqrc5rgy01c6m0"; libraryHaskellDepends = [ + aeson + aeson-pretty base - bytestring - cereal - conduit - resourcet - transformers + base64-bytestring + cborg + scientific + text + unordered-containers + vector ]; testHaskellDepends = [ + aeson base + base-orphans + base16-bytestring bytestring - cereal - conduit - HUnit - mtl - transformers + cborg + QuickCheck + tasty + tasty-hunit + text ]; - description = "Turn Data.Serialize Gets and Puts into Sources, Sinks, and Conduits"; + benchmarkHaskellDepends = [ + aeson + base + bytestring + cborg + criterion + deepseq + directory + process + zlib + ]; + description = "A library for encoding JSON as CBOR"; license = lib.licenses.bsd3; } ) { }; - "cereal-data-dword" = callPackage ( + "cci" = callPackage ( { mkDerivation, base, - cereal, - data-dword, + binary, + bytestring, + cci, + cmdargs, + containers, + filepath, + mtl, + pretty, + process, + random, + time, }: mkDerivation { - pname = "cereal-data-dword"; - version = "0.1.1"; - sha256 = "14z0h7hz170l1zhz7add01q9n0v2diijskdrwfzqhvcka7a69566"; + pname = "cci"; + version = "0.3.1"; + sha256 = "0pvap67fn9kmjvn2qqq3x99k3mzrrsnb6q6fhawvyxv8drihsfc7"; + revision = "2"; + editedCabalFile = "123jmn7lgz1hmkygjzqckffm77783pfzddnjyvvv7rsnpgl4ckqn"; + isLibrary = true; + isExecutable = true; libraryHaskellDepends = [ base - cereal - data-dword + bytestring ]; - description = "Integration of \"cereal\" and \"data-dword\""; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "cereal-derive" = callPackage ( - { - mkDerivation, - base, - cereal, - ghc-prim, - }: - mkDerivation { - pname = "cereal-derive"; - version = "0.1.1"; - sha256 = "04mlg1r2qvrwdzcfbf1aqs4bf9n2gc7cwv73fbhld2ji5naa6fwb"; - libraryHaskellDepends = [ + librarySystemDepends = [ cci ]; + testHaskellDepends = [ base - cereal - ghc-prim + binary + bytestring + cmdargs + containers + filepath + mtl + pretty + process + random + time ]; - description = "Automatic deriving of Serialize using GHC.Generics"; - license = lib.licenses.gpl3Only; + description = "Bindings for the CCI networking library"; + license = lib.licenses.bsd3; hydraPlatforms = lib.platforms.none; broken = true; } - ) { }; + ) { cci = null; }; - "cereal-enumerator" = callPackage ( + "cdar-mBound" = callPackage ( { mkDerivation, base, - bytestring, - cereal, - enumerator, + containers, + criterion, + deepseq, + integer-gmp, + smallcheck, + tasty, + tasty-hunit, + tasty-quickcheck, + tasty-smallcheck, }: mkDerivation { - pname = "cereal-enumerator"; - version = "0.3.1"; - sha256 = "0lpsj4f7v4sgrr6lf8jl07xwj8j3i3wj23as0imswk71f7xwfnnk"; + pname = "cdar-mBound"; + version = "0.1.0.4"; + sha256 = "1p7ri7vfvj3ym0038aq12szs6jgdkq8a4730i67appv9lmxgycfn"; + isLibrary = true; + isExecutable = true; libraryHaskellDepends = [ base - bytestring - cereal - enumerator + containers + deepseq + integer-gmp ]; - description = "Deserialize things with cereal and enumerator"; - license = lib.licenses.publicDomain; - hydraPlatforms = lib.platforms.none; + executableHaskellDepends = [ base ]; + testHaskellDepends = [ + base + smallcheck + tasty + tasty-hunit + tasty-quickcheck + tasty-smallcheck + ]; + benchmarkHaskellDepends = [ + base + criterion + ]; + description = "Exact real arithmetic using Centred Dyadic Approximations"; + license = lib.licenses.bsd3; } ) { }; - "cereal-ieee754" = callPackage ( + "cdeps" = callPackage ( { mkDerivation, + alex, array, base, - cereal, + bytestring, + criterion, + directory, + filepath, + hspec, + optparse-applicative, + text, }: mkDerivation { - pname = "cereal-ieee754"; - version = "0.1"; - sha256 = "1gr22ziz9bj4q3y8j1vg46m648zqvbajfdks8p64xc28ci25pw2s"; + pname = "cdeps"; + version = "0.1.3.1"; + sha256 = "0r8q2i29wb47dkkws6cyy2qgwzgyhcsmx7sixv8n44rxiiv0dhcw"; + isLibrary = true; + isExecutable = true; libraryHaskellDepends = [ array base - cereal + bytestring + directory + filepath + text + ]; + libraryToolDepends = [ alex ]; + executableHaskellDepends = [ + base + optparse-applicative + ]; + testHaskellDepends = [ + base + hspec + ]; + benchmarkHaskellDepends = [ + base + bytestring + criterion ]; - description = "Floating point support for the 'cereal' serialization library"; + description = "Extract dependencies from C code"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; + mainProgram = "cdeps"; } ) { }; - "cereal-io-streams" = callPackage ( + "cdp" = callPackage ( { mkDerivation, + aeson, base, + base64-bytestring, + blaze-html, + blaze-markup, bytestring, - cereal, - cereal-conduit, - conduit, - conduit-extra, - criterion, - derive, - HUnit, - io-streams, + containers, + data-default, + directory, + extra, + filepath, + hspec, + http-conduit, + monad-loops, mtl, - QuickCheck, - tasty, - tasty-hunit, - tasty-quickcheck, + network-uri, + process, + random, + text, + utf8-string, + vector, + websockets, }: mkDerivation { - pname = "cereal-io-streams"; - version = "0.0.1.0"; - sha256 = "1wb8wmcz881sj4ljry0ibns9afc97i3h6nbb4k3zr4vgxisvfaxk"; + pname = "cdp"; + version = "0.0.2.0"; + sha256 = "1pi163mysavwhk9s2a78ldbnw0480b9vmvgyr4m426asc17g1kc9"; + isLibrary = true; + isExecutable = true; libraryHaskellDepends = [ + aeson base bytestring - cereal - io-streams + containers + data-default + directory + extra + filepath + http-conduit + monad-loops + mtl + network-uri + process + random + text + vector + websockets ]; - testHaskellDepends = [ + executableHaskellDepends = [ + aeson base + base64-bytestring + blaze-html + blaze-markup bytestring - cereal - derive - HUnit - io-streams + containers + data-default + directory + extra + filepath + http-conduit + monad-loops mtl - QuickCheck - tasty - tasty-hunit - tasty-quickcheck + network-uri + process + random + text + utf8-string + vector + websockets ]; - benchmarkHaskellDepends = [ + testHaskellDepends = [ + aeson base bytestring - cereal - cereal-conduit - conduit - conduit-extra - criterion - io-streams + containers + data-default + directory + extra + filepath + hspec + http-conduit + monad-loops + mtl + network-uri + process + random + text + vector + websockets ]; - description = "io-streams support for the cereal binary serialization library"; + description = "A library for the Chrome Devtools Protocol"; license = lib.licenses.bsd3; hydraPlatforms = lib.platforms.none; + broken = true; } ) { }; - "cereal-plus" = callPackage ( + "cereal" = callPackage ( { mkDerivation, array, base, bytestring, - cereal, containers, - errors, - hashable, - hashtables, - HTF, - HUnit, - mmorph, - mtl, + ghc-prim, QuickCheck, - quickcheck-instances, - stm, - text, - time, - unordered-containers, - vector, + test-framework, + test-framework-quickcheck2, }: mkDerivation { - pname = "cereal-plus"; - version = "0.4.2"; - sha256 = "1j81bbwhwbzzxkbvswbvw0kgnm4bppgy7dwvr1yx4074l07b9zvi"; + pname = "cereal"; + version = "0.5.8.3"; + sha256 = "0shg3q933cvf18j1gmxill48d4sl4mvxj2qkj6yya9hvcqh5544r"; libraryHaskellDepends = [ array base bytestring - cereal containers - errors - hashable - hashtables - mmorph - mtl - stm - text - time - unordered-containers - vector + ghc-prim ]; testHaskellDepends = [ - array base bytestring - cereal - containers - errors - hashable - hashtables - HTF - HUnit - mmorph - mtl QuickCheck - quickcheck-instances - stm - text - time - unordered-containers - vector + test-framework + test-framework-quickcheck2 ]; - description = "An extended serialization library on top of \"cereal\""; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; + description = "A binary serialization library"; + license = lib.licenses.bsd3; } ) { }; - "cereal-streams" = callPackage ( + "cereal-conduit" = callPackage ( { mkDerivation, base, bytestring, cereal, - cereal-conduit, conduit, - conduit-extra, - criterion, - derive, HUnit, - io-streams, mtl, - QuickCheck, - tasty, - tasty-hunit, - tasty-quickcheck, + resourcet, transformers, }: mkDerivation { - pname = "cereal-streams"; - version = "0.0.1.0"; - sha256 = "1k5pv2s4cx9n587kky53r1wq19bki4bnvr3faa6zwjx6wqp8bxzj"; + pname = "cereal-conduit"; + version = "0.8.0"; + sha256 = "1srr7agvgfw78q5s1npjq5sgynvhjgllpihiv37ylkwqm4c4ap6r"; + revision = "2"; + editedCabalFile = "1w26az4pj699qbpa9pz55g4svkbs92ls5k6wkzjn40ghisnjk2q6"; libraryHaskellDepends = [ base bytestring cereal - io-streams + conduit + resourcet + transformers ]; testHaskellDepends = [ base bytestring cereal - derive + conduit HUnit - io-streams mtl - QuickCheck - tasty - tasty-hunit - tasty-quickcheck - ]; - benchmarkHaskellDepends = [ - base - bytestring - cereal - cereal-conduit - conduit - conduit-extra - criterion - io-streams transformers ]; - description = "Use cereal to encode/decode io-streams"; + description = "Turn Data.Serialize Gets and Puts into Sources, Sinks, and Conduits"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; } ) { }; @@ -134051,29 +73848,6 @@ self: { } ) { }; - "cereal-uuid" = callPackage ( - { - mkDerivation, - base, - cereal, - uuid, - }: - mkDerivation { - pname = "cereal-uuid"; - version = "0.1.1.1"; - sha256 = "1jg8rkndb1q1l0dnqrkkl0mlsxkcyqcfldb5k8kk9d2lg3plz030"; - libraryHaskellDepends = [ - base - cereal - uuid - ]; - description = "Integration of \"cereal\" and \"uuid\""; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "cereal-vector" = callPackage ( { mkDerivation, @@ -134104,78 +73878,6 @@ self: { } ) { }; - "certificate" = callPackage ( - { - mkDerivation, - asn1-data, - base, - bytestring, - containers, - crypto-pubkey-types, - cryptohash, - directory, - filepath, - mtl, - pem, - process, - time, - }: - mkDerivation { - pname = "certificate"; - version = "1.3.9"; - sha256 = "18g5rq7lpxmvmlnz610537w6mix6z6kxjrfj2ylbhkc81r5pn9g6"; - revision = "1"; - editedCabalFile = "1fipx0vmc8kq8k9imnjiffdpng0qjqkzzwr308zgma9l3hx70jvb"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - asn1-data - base - bytestring - containers - crypto-pubkey-types - cryptohash - directory - filepath - mtl - pem - process - time - ]; - description = "Certificates and Key Reader/Writer"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "cf" = callPackage ( - { - mkDerivation, - base, - QuickCheck, - test-framework, - test-framework-quickcheck2, - test-framework-th, - }: - mkDerivation { - pname = "cf"; - version = "0.4.2"; - sha256 = "0695djx4ri1d6idmw8yl0rgbp757y74ay6fkkvjgad642cgjv1gj"; - libraryHaskellDepends = [ base ]; - testHaskellDepends = [ - base - QuickCheck - test-framework - test-framework-quickcheck2 - test-framework-th - ]; - description = "Exact real arithmetic using continued fractions"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "cfenv" = callPackage ( { mkDerivation, @@ -134270,79 +73972,6 @@ self: { } ) { }; - "cfipu" = callPackage ( - { - mkDerivation, - base, - bytestring, - containers, - data-default, - dequeue, - mtl, - }: - mkDerivation { - pname = "cfipu"; - version = "1.1.0.4"; - sha256 = "1lwgqibxrs8n3czhpyg1halizsmz5jd8r2z8ham4pwi58815fzij"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - bytestring - containers - data-default - dequeue - mtl - ]; - description = "cfipu processor for toy brainfuck-like language"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "cfipu"; - } - ) { }; - - "cflp" = callPackage ( - { - mkDerivation, - base, - containers, - control-monad-omega, - HUnit, - incremental-sat-solver, - level-monad, - logict, - MonadRandom, - mtl, - random, - stream-monad, - syb, - value-supply, - }: - mkDerivation { - pname = "cflp"; - version = "2009.2.1"; - sha256 = "01j4904fa8z2wmflqs3q1g3dg966dllbp2sbxxbghh0hhzwyg0vy"; - libraryHaskellDepends = [ - base - containers - control-monad-omega - HUnit - incremental-sat-solver - level-monad - logict - MonadRandom - mtl - random - stream-monad - syb - value-supply - ]; - description = "Constraint Functional-Logic Programming in Haskell"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "cfn-flip" = callPackage ( { mkDerivation, @@ -134392,37 +74021,6 @@ self: { } ) { }; - "cfopu" = callPackage ( - { - mkDerivation, - base, - bytestring, - containers, - data-default, - dequeue, - mtl, - }: - mkDerivation { - pname = "cfopu"; - version = "1.0.0"; - sha256 = "1vd1ilcdd1k081bg4nk1zazdsd9fbz7zzcz453ff0xxjp9xl1b3z"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - bytestring - containers - data-default - dequeue - mtl - ]; - description = "cfopu processor"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "cfopu"; - } - ) { }; - "cfuture" = callPackage ( { mkDerivation, @@ -134446,98 +74044,6 @@ self: { } ) { }; - "cg" = callPackage ( - { - mkDerivation, - base, - bytestring, - cereal, - containers, - deepseq, - directory, - filepath, - hashable, - mtl, - parallel, - parsec, - process, - split, - text, - unordered-containers, - utf8-string, - void, - }: - mkDerivation { - pname = "cg"; - version = "0.0.9.0"; - sha256 = "0slsckr1xyn1b3vb2xhd2diqhr9cdbkn9g5hfsy0q6sjiy979vpl"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - bytestring - cereal - containers - deepseq - directory - filepath - hashable - mtl - parallel - parsec - process - split - text - unordered-containers - utf8-string - void - ]; - description = "Parser for categorial grammars"; - license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - mainProgram = "CG"; - broken = true; - } - ) { }; - - "cgen" = callPackage ( - { - mkDerivation, - base, - containers, - directory, - filepath, - mtl, - parsec, - regex-posix, - safe, - template-haskell, - }: - mkDerivation { - pname = "cgen"; - version = "0.0.5"; - sha256 = "18k9na7gwmnmn5gdin1qi041cb7w49xcgdnjjpc3dhmfiqnq41q8"; - isLibrary = true; - isExecutable = true; - executableHaskellDepends = [ - base - containers - directory - filepath - mtl - parsec - regex-posix - safe - template-haskell - ]; - doHaddock = false; - description = "generates Haskell bindings and C wrappers for C++ libraries"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "cgi" = callPackage ( { mkDerivation, @@ -134598,35 +74104,6 @@ self: { } ) { }; - "cgi-utils" = callPackage ( - { - mkDerivation, - base, - cgi, - containers, - mtl, - random, - }: - mkDerivation { - pname = "cgi-utils"; - version = "0.2.1"; - sha256 = "0msljq31bz40hsrhhq9qhxrgmdlqq32l3ykcy4wviv8kmc3dic7p"; - revision = "1"; - editedCabalFile = "0lnx7n8pagi3pw57cz4nz01lhfjmsyhk3z3kwgfrmdyrb3kb276z"; - libraryHaskellDepends = [ - base - cgi - containers - mtl - random - ]; - description = "Simple modular utilities for CGI/FastCGI (sessions, etc.)"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "cgrep" = callPackage ( { mkDerivation, @@ -134900,7 +74377,6 @@ self: { ]; description = "Mining Client for Kadena Chainweb"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "chainweb-mining-client"; } ) { }; @@ -135049,106 +74525,6 @@ self: { } ) { }; - "chalkboard" = callPackage ( - { - mkDerivation, - array, - base, - binary, - bytestring, - Codec-Image-DevIL, - containers, - data-reify, - directory, - GLUT, - OpenGLRaw, - process, - time, - }: - mkDerivation { - pname = "chalkboard"; - version = "1.9.0.16"; - sha256 = "0786fxylzz73kgbyyy6pz5fhk7rfh4fnrbq0br7ghg74qka66sb9"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - array - base - binary - bytestring - Codec-Image-DevIL - containers - data-reify - directory - GLUT - OpenGLRaw - process - time - ]; - description = "Combinators for building and processing 2D images"; - license = lib.licenses.bsd3; - badPlatforms = lib.platforms.darwin; - hydraPlatforms = lib.platforms.none; - mainProgram = "chalkboard-server-1_9_0_16"; - broken = true; - } - ) { }; - - "chalkboard-viewer" = callPackage ( - { - mkDerivation, - array, - base, - chalkboard, - GLUT, - OpenGL, - time, - }: - mkDerivation { - pname = "chalkboard-viewer"; - version = "0.1"; - sha256 = "1gvnp176j8gd0s6wzq10zpiqkn3wma99pwn3f78wgxm9rh588gh2"; - libraryHaskellDepends = [ - array - base - chalkboard - GLUT - OpenGL - time - ]; - description = "OpenGL based viewer for chalkboard rendered images"; - license = lib.licenses.bsd3; - badPlatforms = lib.platforms.darwin; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "chalmers-lava2000" = callPackage ( - { - mkDerivation, - array, - base, - process, - random, - }: - mkDerivation { - pname = "chalmers-lava2000"; - version = "1.6.1"; - sha256 = "12cwp804z1grsn4pyygd2mffr5lm02g1rxibjill5wyd24k1brgb"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - array - base - process - random - ]; - description = "Hardware description EDSL"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "chan" = callPackage ( { mkDerivation, @@ -135492,6 +74868,7 @@ self: { description = "A diagnostics library for Haskell"; license = lib.licenses.mit; hydraPlatforms = lib.platforms.none; + broken = true; } ) { }; @@ -135537,27 +74914,6 @@ self: { } ) { }; - "char-qq" = callPackage ( - { - mkDerivation, - base, - template-haskell, - }: - mkDerivation { - pname = "char-qq"; - version = "0.1.1.1"; - sha256 = "01mbavg50g64bmlvjr499hzv1975imri2zwj91964g58xghfba9q"; - libraryHaskellDepends = [ - base - template-haskell - ]; - description = "Quasiquoters for characters and codepoints"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "character-cases" = callPackage ( { mkDerivation, @@ -135609,67 +74965,6 @@ self: { } ) { }; - "charade" = callPackage ( - { - mkDerivation, - base, - configurator, - containers, - filepath, - heist, - lens, - mtl, - QuickCheck, - random, - snap, - snap-core, - snap-extras, - snap-server, - text, - xmlhtml, - }: - mkDerivation { - pname = "charade"; - version = "0.1.1.2"; - sha256 = "0vi82z2c3km5shyk3wwb07y3cqcnkvkgvbl1s36a50kbz65jrl64"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - configurator - containers - heist - mtl - QuickCheck - random - snap - text - xmlhtml - ]; - executableHaskellDepends = [ - base - configurator - containers - filepath - heist - lens - mtl - QuickCheck - random - snap - snap-core - snap-extras - snap-server - text - xmlhtml - ]; - description = "Rapid prototyping websites with Snap and Heist"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "charade"; - } - ) { }; - "charset" = callPackage ( { mkDerivation, @@ -135734,72 +75029,6 @@ self: { } ) { }; - "chart-cli" = callPackage ( - { - mkDerivation, - attoparsec, - base, - Chart, - Chart-cairo, - colour, - data-default-class, - dates, - filepath, - hashable, - lens, - optparse-applicative, - text, - time, - }: - mkDerivation { - pname = "chart-cli"; - version = "0.1.0.0"; - sha256 = "0z90jzhw0k1z20gn227r0jcpnfj6ajr9y54y5g7phb6cy1ff2iv3"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - attoparsec - base - Chart - Chart-cairo - colour - data-default-class - dates - filepath - hashable - lens - optparse-applicative - text - time - ]; - description = "Command-line utility to draw charts from input data easily"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "chart"; - } - ) { }; - - "chart-histogram" = callPackage ( - { - mkDerivation, - base, - Chart, - }: - mkDerivation { - pname = "chart-histogram"; - version = "1.1"; - sha256 = "0sfv86c9sj8ihrrv56kk61fkzikxh765rz4lrp5paymri5l0m408"; - libraryHaskellDepends = [ - base - Chart - ]; - description = "Easily render histograms with Chart"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "chart-svg" = callPackage ( { mkDerivation, @@ -135856,139 +75085,6 @@ self: { } ) { }; - "chart-svg-various" = callPackage ( - { - mkDerivation, - base, - box, - box-csv, - box-socket, - chart-svg, - concurrency, - doctest, - foldl, - lens, - lucid, - mealy, - numhask, - numhask-array, - numhask-space, - text, - time, - transformers, - unordered-containers, - web-rep, - }: - mkDerivation { - pname = "chart-svg-various"; - version = "0.0.2"; - sha256 = "0ckh66pm4f3wp2w08z8bfjbwbxssp74g5chwpk9q9n786iaq9x90"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - box - box-csv - box-socket - chart-svg - concurrency - foldl - lens - lucid - mealy - numhask - numhask-array - numhask-space - text - time - transformers - unordered-containers - web-rep - ]; - executableHaskellDepends = [ - base - numhask - ]; - testHaskellDepends = [ - base - doctest - numhask - ]; - description = "See readme.md"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "chart-svg-various"; - } - ) { }; - - "chart-unit" = callPackage ( - { - mkDerivation, - base, - colour, - data-default, - diagrams-lib, - diagrams-svg, - doctest, - foldl, - formatting, - generic-lens, - lens, - linear, - numhask, - numhask-prelude, - numhask-range, - palette, - protolude, - scientific, - svg-builder, - SVGFonts, - tasty, - tasty-hspec, - text, - time, - }: - mkDerivation { - pname = "chart-unit"; - version = "0.7.0.0"; - sha256 = "03mjp806mw0qw3wc9fx5x04cj17cdznr22fki8yzk37jm7rr7y4p"; - libraryHaskellDepends = [ - base - colour - data-default - diagrams-lib - diagrams-svg - foldl - formatting - generic-lens - lens - linear - numhask - numhask-prelude - numhask-range - palette - protolude - scientific - svg-builder - SVGFonts - text - time - ]; - testHaskellDepends = [ - base - doctest - numhask - numhask-prelude - numhask-range - tasty - tasty-hspec - ]; - description = "Native haskell charts"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "charter" = callPackage ( { mkDerivation, @@ -136069,55 +75165,6 @@ self: { } ) { }; - "chaselev-deque" = callPackage ( - { - mkDerivation, - abstract-deque, - abstract-deque-tests, - array, - atomic-primops, - base, - containers, - ghc-prim, - HUnit, - test-framework, - test-framework-hunit, - transformers, - vector, - }: - mkDerivation { - pname = "chaselev-deque"; - version = "0.5.0.5"; - sha256 = "1x2301faqkchkzrvbnganly341jilvg1fmx6lazgbs98cbazhn2d"; - libraryHaskellDepends = [ - abstract-deque - array - atomic-primops - base - ghc-prim - transformers - vector - ]; - testHaskellDepends = [ - abstract-deque - abstract-deque-tests - array - atomic-primops - base - containers - ghc-prim - HUnit - test-framework - test-framework-hunit - vector - ]; - description = "Chase & Lev work-stealing lock-free double-ended queues (deques)"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "chassis" = callPackage ( { mkDerivation, @@ -136299,31 +75346,6 @@ self: { } ) { }; - "chatty-text" = callPackage ( - { - mkDerivation, - base, - chatty, - transformers, - }: - mkDerivation { - pname = "chatty-text"; - version = "0.6.2.1"; - sha256 = "00f3h0vw0mxrcqjfwas9ddx9hhcvfzvy0p43xqq29ibwdcgms3w2"; - revision = "1"; - editedCabalFile = "11vpzarrbk0jlsnamrnf4xp3gzkgwrbs6x5mr9m5rr4lrw1f9q0v"; - libraryHaskellDepends = [ - base - chatty - transformers - ]; - description = "Provides some classes and types for dealing with text, using the fundaments of Chatty"; - license = lib.licenses.agpl3Only; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "chatty-utils" = callPackage ( { mkDerivation, @@ -136349,84 +75371,6 @@ self: { } ) { }; - "chatwork" = callPackage ( - { - mkDerivation, - aeson, - aeson-casing, - base, - bytestring, - connection, - data-default-class, - hspec, - http-api-data, - http-client, - http-client-tls, - http-types, - req, - servant-server, - text, - warp, - }: - mkDerivation { - pname = "chatwork"; - version = "0.1.3.5"; - sha256 = "0nb9xhzf8apllbl75883nd3bz50mvfpf5zzkpwjw7lyg7mk82pkm"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson - aeson-casing - base - bytestring - connection - data-default-class - http-api-data - http-client - http-client-tls - http-types - req - text - ]; - executableHaskellDepends = [ - aeson - aeson-casing - base - bytestring - connection - data-default-class - http-api-data - http-client - http-client-tls - http-types - req - text - ]; - testHaskellDepends = [ - aeson - aeson-casing - base - bytestring - connection - data-default-class - hspec - http-api-data - http-client - http-client-tls - http-types - req - servant-server - text - warp - ]; - description = "The ChatWork API in Haskell"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - mainProgram = "sample-exe"; - broken = true; - } - ) { }; - "cheapskate" = callPackage ( { mkDerivation, @@ -136475,34 +75419,6 @@ self: { } ) { }; - "cheapskate-highlight" = callPackage ( - { - mkDerivation, - base, - blaze-html, - cheapskate, - highlighting-kate, - text, - }: - mkDerivation { - pname = "cheapskate-highlight"; - version = "0.1.0.0"; - sha256 = "0w6k694gmnx7h8ix79z8scsdl65zbilxni1vjr90ka2fdfrazxss"; - revision = "1"; - editedCabalFile = "1c8kxqdqf0j962xjdrrjfcbjsl0c1kax31rjykymv7w16d6hmlj4"; - libraryHaskellDepends = [ - base - blaze-html - cheapskate - highlighting-kate - text - ]; - description = "Code highlighting for cheapskate"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "cheapskate-lucid" = callPackage ( { mkDerivation, @@ -136528,65 +75444,6 @@ self: { } ) { }; - "cheapskate-terminal" = callPackage ( - { - mkDerivation, - ansi-terminal, - base, - cheapskate, - data-default, - directory, - hpygments, - hscolour, - terminal-size, - text, - }: - mkDerivation { - pname = "cheapskate-terminal"; - version = "0.1.0.0"; - sha256 = "1fg93zmaqjw7ifq0c0v0z4j7h3fv3c8x8haxd6zn7d3rk46ca0c6"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - ansi-terminal - base - cheapskate - data-default - directory - hpygments - hscolour - terminal-size - text - ]; - executableHaskellDepends = [ - ansi-terminal - base - cheapskate - data-default - directory - hpygments - hscolour - terminal-size - text - ]; - testHaskellDepends = [ - ansi-terminal - base - cheapskate - data-default - directory - hpygments - hscolour - terminal-size - text - ]; - description = "Initial project template from stack"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "cheapskate-terminal"; - } - ) { }; - "check-cfg-ambiguity" = callPackage ( { mkDerivation, @@ -136638,65 +75495,6 @@ self: { } ) { resolv = null; }; - "check-pvp" = callPackage ( - { - mkDerivation, - base, - Cabal, - containers, - explicit-exception, - filepath, - haskell-packages, - haskell-src-exts, - hse-cpp, - non-empty, - tagged, - transformers, - utility-ht, - }: - mkDerivation { - pname = "check-pvp"; - version = "0.0.3"; - sha256 = "1x7bzl7fb5h1d69ggqcg3dk0dnw75h4namjqhjh4izxf02zvic7m"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - Cabal - containers - explicit-exception - filepath - haskell-packages - haskell-src-exts - hse-cpp - non-empty - tagged - transformers - utility-ht - ]; - description = "Check whether module and package imports conform to the PVP"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - maintainers = [ lib.maintainers.thielema ]; - } - ) { }; - - "checked" = callPackage ( - { mkDerivation, base }: - mkDerivation { - pname = "checked"; - version = "0.1.0.1"; - sha256 = "00l04qxdid2pi885ixnyh91bsigsmk5rxb0jw6dl6j1mlcq27smd"; - revision = "1"; - editedCabalFile = "110g32gvn5cjdf4cbvv642asziinsh50b1c5675qzza77jg7hwid"; - libraryHaskellDepends = [ base ]; - description = "Bounds-checking integer types"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "checked-exceptions" = callPackage ( { mkDerivation, @@ -136771,82 +75569,6 @@ self: { } ) { }; - "checkmate" = callPackage ( - { - mkDerivation, - base, - bytestring, - containers, - diff-parse, - directory, - file-embed, - filepath, - github, - hlint, - hspec, - hspec-megaparsec, - interpolatedstring-perl6, - megaparsec, - monad-parallel, - optparse-applicative, - process, - QuickCheck, - quickcheck-text, - temporary, - text, - }: - mkDerivation { - pname = "checkmate"; - version = "0.4.0"; - sha256 = "0l5d1wf9pbji0h8qsqhqliv3kvzc6xcryq5zvps375pk8r5l2lvb"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - containers - diff-parse - directory - filepath - github - megaparsec - monad-parallel - text - ]; - executableHaskellDepends = [ - base - diff-parse - directory - filepath - megaparsec - optparse-applicative - process - text - ]; - testHaskellDepends = [ - base - bytestring - diff-parse - directory - file-embed - filepath - hlint - hspec - hspec-megaparsec - interpolatedstring-perl6 - megaparsec - QuickCheck - quickcheck-text - temporary - text - ]; - description = "Generate checklists relevant to a given patch"; - license = lib.licenses.agpl3Only; - hydraPlatforms = lib.platforms.none; - mainProgram = "checkmate"; - broken = true; - } - ) { }; - "checksum" = callPackage ( { mkDerivation, @@ -137226,48 +75948,6 @@ self: { } ) { }; - "chevalier-common" = callPackage ( - { - mkDerivation, - base, - bifunctors, - bytestring, - cereal, - locators, - mtl, - network, - network-uri, - protobuf, - text, - unordered-containers, - vaultaire-common, - zeromq4-haskell, - }: - mkDerivation { - pname = "chevalier-common"; - version = "0.6.0"; - sha256 = "0fg7cb5ds2ixk046isz6wala7azaxqlfsacb1p7l9j6din9mgzrs"; - libraryHaskellDepends = [ - base - bifunctors - bytestring - cereal - locators - mtl - network - network-uri - protobuf - text - unordered-containers - vaultaire-common - zeromq4-haskell - ]; - description = "Query interface for Chevalier"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "chez-grater" = callPackage ( { mkDerivation, @@ -137574,39 +76254,6 @@ self: { } ) { }; - "chitauri" = callPackage ( - { - mkDerivation, - base, - digits, - either-unwrap, - generic-trie, - haskeline, - parsec, - }: - mkDerivation { - pname = "chitauri"; - version = "0.1.0.1"; - sha256 = "0i94impyhsrj4kg7mdr1xawmgalsfr3nsazl4v9ykhn3jam4kczb"; - isLibrary = false; - isExecutable = true; - enableSeparateDataOutput = true; - executableHaskellDepends = [ - base - digits - either-unwrap - generic-trie - haskeline - parsec - ]; - testHaskellDepends = [ base ]; - description = "Helper for the Major System"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "chitauri"; - } - ) { }; - "choice" = callPackage ( { mkDerivation, base }: mkDerivation { @@ -137619,278 +76266,6 @@ self: { } ) { }; - "choose" = callPackage ( - { - mkDerivation, - base, - MonadRandom, - }: - mkDerivation { - pname = "choose"; - version = "0.1.0.0"; - sha256 = "1kzyl1n7shrsagkaqxb9ac9iyjzxn4f1f7hmxgid12iwfd5yqsg3"; - libraryHaskellDepends = [ - base - MonadRandom - ]; - description = "Choose random elements from a stream"; - license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "choose-exe" = callPackage ( - { - mkDerivation, - base, - choose, - optparse-applicative, - text, - }: - mkDerivation { - pname = "choose-exe"; - version = "0.1.0.0"; - sha256 = "06wb3n69fdb33qpx9lylp3ly372a95v59xkplwly8pqq6gqc2hpq"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - choose - optparse-applicative - text - ]; - executableHaskellDepends = [ - base - choose - optparse-applicative - text - ]; - description = "Command-line program to choose random element from a stream"; - license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; - mainProgram = "choose"; - } - ) { }; - - "chorale" = callPackage ( - { - mkDerivation, - base, - containers, - HUnit, - ieee754, - QuickCheck, - safe, - test-framework, - test-framework-hunit, - test-framework-quickcheck2, - }: - mkDerivation { - pname = "chorale"; - version = "0.1.8"; - sha256 = "0k7xavjscl0xpjrz0w3nh473clkaw58126xch66qykm3l361zgc4"; - libraryHaskellDepends = [ - base - containers - safe - ]; - testHaskellDepends = [ - base - containers - HUnit - ieee754 - QuickCheck - safe - test-framework - test-framework-hunit - test-framework-quickcheck2 - ]; - description = "A module containing basic functions that the prelude does not offer"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "chorale-geo" = callPackage ( - { - mkDerivation, - base, - binary, - chorale, - HUnit, - ieee754, - QuickCheck, - test-framework, - test-framework-hunit, - test-framework-quickcheck2, - }: - mkDerivation { - pname = "chorale-geo"; - version = "0.1.2"; - sha256 = "18wmz313qz3r1i748ax9rpc7jx28rwrg5786ms6falj6bhpx7j5c"; - libraryHaskellDepends = [ - base - binary - chorale - ]; - testHaskellDepends = [ - base - binary - chorale - HUnit - ieee754 - QuickCheck - test-framework - test-framework-hunit - test-framework-quickcheck2 - ]; - description = "A module containing basic geo functions"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "chp" = callPackage ( - { - mkDerivation, - base, - containers, - deepseq, - extensible-exceptions, - pretty, - stm, - }: - mkDerivation { - pname = "chp"; - version = "2.2.0.1"; - sha256 = "18z0836hxs4ix7mdjxvpb40i4s71dc1j3vpxfh0vj8mf5drpc942"; - libraryHaskellDepends = [ - base - containers - deepseq - extensible-exceptions - pretty - stm - ]; - description = "An implementation of concurrency ideas from Communicating Sequential Processes"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "chp-mtl" = callPackage ( - { - mkDerivation, - base, - chp, - chp-plus, - mtl, - }: - mkDerivation { - pname = "chp-mtl"; - version = "1.0.0"; - sha256 = "1x14xl9hm9n3zczj6xhffvpac09q5a13i94fhkq2kzj2s3rk1b4z"; - libraryHaskellDepends = [ - base - chp - chp-plus - mtl - ]; - description = "MTL class instances for the CHP library"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "chp-plus" = callPackage ( - { - mkDerivation, - base, - chp, - containers, - deepseq, - extensible-exceptions, - HUnit, - pretty, - QuickCheck, - stm, - }: - mkDerivation { - pname = "chp-plus"; - version = "1.3.1.2"; - sha256 = "1875fqf24jwl5vf2cys7yc70k0c53pg74i041y1xbrczincaww0z"; - libraryHaskellDepends = [ - base - chp - containers - deepseq - extensible-exceptions - HUnit - pretty - QuickCheck - stm - ]; - description = "A set of high-level concurrency utilities built on Communicating Haskell Processes"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "chp-spec" = callPackage ( - { - mkDerivation, - base, - containers, - deepseq, - mtl, - pretty, - TypeCompose, - }: - mkDerivation { - pname = "chp-spec"; - version = "1.0.0"; - sha256 = "0jil6p0cw8bbpzb0kf9lxljdnbbp0xyq7c6x7bfc7291kqkafgdi"; - libraryHaskellDepends = [ - base - containers - deepseq - mtl - pretty - TypeCompose - ]; - description = "A mirror implementation of chp that generates a specification of the program"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "chp-transformers" = callPackage ( - { - mkDerivation, - base, - chp, - chp-plus, - transformers, - }: - mkDerivation { - pname = "chp-transformers"; - version = "1.0.0"; - sha256 = "0d4hcqpjxmns1fhq918s6z9f4bxlbjlkxzq5xkpqwjxpzy83wq23"; - libraryHaskellDepends = [ - base - chp - chp-plus - transformers - ]; - description = "Transformers instances for the CHP library"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "chr-core" = callPackage ( { mkDerivation, @@ -137922,48 +76297,7 @@ self: { description = "Constraint Handling Rules"; license = lib.licenses.bsd3; hydraPlatforms = lib.platforms.none; - } - ) { }; - - "chr-data" = callPackage ( - { - mkDerivation, - array, - base, - chr-pretty, - containers, - fclabels, - hashable, - microlens, - microlens-mtl, - microlens-th, - mtl, - template-haskell, - unordered-containers, - vector, - }: - mkDerivation { - pname = "chr-data"; - version = "0.1.0.1"; - sha256 = "0w8nd6swl4k18rinvranqawf4zffdc4ixnn91a4h3ssf4kv47nsd"; - libraryHaskellDepends = [ - array - base - chr-pretty - containers - fclabels - hashable - microlens - microlens-mtl - microlens-th - mtl - template-haskell - unordered-containers - vector - ]; - description = "Datatypes required for chr library"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; + broken = true; } ) { }; @@ -138009,30 +76343,6 @@ self: { license = lib.licenses.bsd3; hydraPlatforms = lib.platforms.none; mainProgram = "chr-term"; - } - ) { }; - - "chr-parse" = callPackage ( - { - mkDerivation, - base, - containers, - uulib, - }: - mkDerivation { - pname = "chr-parse"; - version = "0.1.0.0"; - sha256 = "00jlfpanzkawiz0fh5gc4czda9ip5r203pnjwllcqhmy9w04ip9k"; - revision = "1"; - editedCabalFile = "0h3qyn306sxqsvxmz9hfba169nkc3hx7ygkxr5j2sz033fvi31jc"; - libraryHaskellDepends = [ - base - containers - uulib - ]; - description = "Parsing for chr library"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; broken = true; } ) { }; @@ -138058,154 +76368,6 @@ self: { } ) { }; - "chromatin" = callPackage ( - { - mkDerivation, - base, - bytestring, - conduit, - containers, - data-default-class, - deepseq, - directory, - filepath, - Glob, - hslogger, - HTF, - lens, - messagepack, - nvim-hs, - parsec, - prettyprinter, - resourcet, - ribosome, - split, - stm-chans, - stm-conduit, - strings, - transformers, - typed-process, - unliftio, - }: - mkDerivation { - pname = "chromatin"; - version = "0.1.1.0"; - sha256 = "15b4anslh4f4ysmypp10rfp1b1x90nx0q29my7bw9rkdhrxl5i8q"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - bytestring - conduit - containers - data-default-class - deepseq - directory - filepath - Glob - hslogger - lens - messagepack - nvim-hs - parsec - prettyprinter - resourcet - ribosome - split - stm-chans - stm-conduit - strings - transformers - typed-process - unliftio - ]; - executableHaskellDepends = [ - base - bytestring - conduit - containers - data-default-class - deepseq - directory - filepath - Glob - hslogger - lens - messagepack - nvim-hs - parsec - prettyprinter - resourcet - ribosome - split - stm-chans - stm-conduit - strings - transformers - typed-process - unliftio - ]; - testHaskellDepends = [ - base - bytestring - conduit - containers - data-default-class - deepseq - directory - filepath - Glob - hslogger - HTF - lens - messagepack - nvim-hs - parsec - prettyprinter - resourcet - ribosome - split - stm-chans - stm-conduit - strings - transformers - typed-process - unliftio - ]; - description = "neovim package manager"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - mainProgram = "chromatin"; - } - ) { }; - - "chronograph" = callPackage ( - { - mkDerivation, - base, - deepseq, - ghc-prim, - thyme, - vector-space, - }: - mkDerivation { - pname = "chronograph"; - version = "0.2.0.1"; - sha256 = "0qy2ahnp324jh0ybqwsa4nc3r2x1hkbrg6sl6f8dg1xnr0gpaag2"; - libraryHaskellDepends = [ - base - deepseq - ghc-prim - thyme - vector-space - ]; - description = "measure timings of data evaluation"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "chronologique" = callPackage ( { mkDerivation, @@ -138327,49 +76489,6 @@ self: { } ) { }; - "chronos-bench" = callPackage ( - { - mkDerivation, - ansi-terminal, - base, - bytestring, - chronos, - containers, - deepseq, - optparse-applicative, - process, - terminal-size, - }: - mkDerivation { - pname = "chronos-bench"; - version = "0.2.0.2"; - sha256 = "1h2v4nzgpr4ivn1xw0n6mlphnzjzz3b1iym6sfxd1nkk56q8060v"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - ansi-terminal - base - bytestring - chronos - containers - deepseq - optparse-applicative - process - terminal-size - ]; - executableHaskellDepends = [ - base - optparse-applicative - ]; - benchmarkHaskellDepends = [ base ]; - description = "Benchmarking tool with focus on comparing results"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "chronos"; - broken = true; - } - ) { }; - "chs-cabal" = callPackage ( { mkDerivation, @@ -138453,78 +76572,6 @@ self: { } ) { }; - "chu2" = callPackage ( - { - mkDerivation, - base, - bytestring, - data-default, - hack2, - hack2-handler-snap-server, - utf8-string, - }: - mkDerivation { - pname = "chu2"; - version = "2012.11.20"; - sha256 = "01q34kzhisb8ani3k5dfjaixa7j1vqg0nh8mbmnya52hr7p4sdiz"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base - bytestring - data-default - hack2 - hack2-handler-snap-server - utf8-string - ]; - description = "FFI for Chu2 Agda Web Server Interface"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "chuchu" = callPackage ( - { - mkDerivation, - abacate, - ansi-wl-pprint, - base, - cmdargs, - HUnit, - lifted-base, - monad-control, - parsec, - text, - transformers, - unix, - }: - mkDerivation { - pname = "chuchu"; - version = "0.4.5"; - sha256 = "04xyylp5gliwpps753xqn8r72708ygxcp08j0fypc64ykhv5pnqc"; - libraryHaskellDepends = [ - abacate - ansi-wl-pprint - base - cmdargs - lifted-base - monad-control - parsec - text - transformers - ]; - testHaskellDepends = [ - base - HUnit - text - transformers - unix - ]; - description = "Behaviour Driven Development like Cucumber for Haskell"; - license = "unknown"; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "chunked-data" = callPackage ( { mkDerivation, @@ -138554,86 +76601,6 @@ self: { } ) { }; - "chunks" = callPackage ( - { - mkDerivation, - base, - haskell98, - parsec, - template-haskell, - }: - mkDerivation { - pname = "chunks"; - version = "2007.4.18"; - sha256 = "0qdwilzhbnx5zgga65lcwd6kzwvsbvi8ybfw9i4d8ziz89190fkz"; - libraryHaskellDepends = [ - base - haskell98 - parsec - template-haskell - ]; - description = "Simple template library with static safety"; - license = "LGPL"; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "chunky" = callPackage ( - { - mkDerivation, - base, - binary, - bytestring, - HUnit, - text, - }: - mkDerivation { - pname = "chunky"; - version = "0.1.0.0"; - sha256 = "12g5hvb5qpbmfn1389wj7sfkc4qp19vg24gpn6j225yfyk8ccik7"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - binary - bytestring - text - ]; - executableHaskellDepends = [ - base - binary - bytestring - text - ]; - testHaskellDepends = [ - base - binary - bytestring - HUnit - text - ]; - description = "Human-readable storage of text/binary objects"; - license = lib.licenses.lgpl3Only; - hydraPlatforms = lib.platforms.none; - mainProgram = "chunky-test"; - broken = true; - } - ) { }; - - "church" = callPackage ( - { mkDerivation, base }: - mkDerivation { - pname = "church"; - version = "0.1.0.0"; - sha256 = "018k9a014q4zprsla5k5hrdq1zwpp7hmckc0ldaj7nf6vg1hxas2"; - libraryHaskellDepends = [ base ]; - description = "Automatically convert Generic instances to and from church representations"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "church-list" = callPackage ( { mkDerivation, base }: mkDerivation { @@ -138643,32 +76610,7 @@ self: { libraryHaskellDepends = [ base ]; doHaddock = false; description = "Removed; please see fmlist"; - license = lib.licenses.mit; - } - ) { }; - - "church-maybe" = callPackage ( - { - mkDerivation, - base, - deepseq, - semigroupoids, - semigroups, - }: - mkDerivation { - pname = "church-maybe"; - version = "0.1.0.0"; - sha256 = "0zcpqsaq5ic8zw88r1kqjb592qy174b0ljjhj5qp90cvzmm7bwyz"; - libraryHaskellDepends = [ - base - deepseq - semigroupoids - semigroups - ]; - description = "Church encoded Maybe"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; + license = lib.licenses.mit; } ) { }; @@ -138798,93 +76740,6 @@ self: { } ) { }; - "cielo" = callPackage ( - { - mkDerivation, - aeson, - base, - bytestring, - convertible, - data-default, - hspec, - http-client, - http-types, - lens, - mtl, - pretty-show, - QuickCheck, - template-haskell, - text, - uuid, - wreq, - }: - mkDerivation { - pname = "cielo"; - version = "0.1.2.0"; - sha256 = "0820l86fqbahkpyvbmxmjw8nb29351zfgb7n8g0jb9hrs3jg6zcw"; - libraryHaskellDepends = [ - aeson - base - bytestring - convertible - data-default - http-client - http-types - lens - mtl - template-haskell - text - uuid - wreq - ]; - testHaskellDepends = [ - aeson - base - bytestring - convertible - data-default - hspec - http-client - http-types - lens - mtl - pretty-show - QuickCheck - template-haskell - text - uuid - wreq - ]; - description = "Cielo API v3 Bindings for Haskell"; - license = lib.licenses.agpl3Only; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "cil" = callPackage ( - { - mkDerivation, - base, - bytestring, - language-c, - }: - mkDerivation { - pname = "cil"; - version = "0.1.1"; - sha256 = "0farjdyq6w33jm0qqdkfd6l7b8rr6k55dqfha643mj6nh1y904az"; - libraryHaskellDepends = [ - base - bytestring - language-c - ]; - description = "An interface to CIL"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "cimple" = callPackage ( { mkDerivation, @@ -138963,56 +76818,6 @@ self: { } ) { }; - "cinvoke" = callPackage ( - { - mkDerivation, - base, - bytestring, - cinvoke, - }: - mkDerivation { - pname = "cinvoke"; - version = "0.1"; - sha256 = "0niz7banhrkcwdfp6w5gwy1brz1c26mylnlavi5zxgawfq4d3sl2"; - libraryHaskellDepends = [ - base - bytestring - ]; - librarySystemDepends = [ cinvoke ]; - description = "A binding to cinvoke"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { cinvoke = null; }; - - "cio" = callPackage ( - { - mkDerivation, - base, - monad-stm, - mtl, - parallel-io, - stm, - }: - mkDerivation { - pname = "cio"; - version = "0.1.0"; - sha256 = "0518cbfyjh13ghihvnxvbhlw4060cqw5047bdrflphmigwbvpplb"; - libraryHaskellDepends = [ - base - monad-stm - mtl - parallel-io - stm - ]; - description = "A monad for concurrent IO on a thread pool"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "cipher-aes" = callPackage ( { mkDerivation, @@ -139110,60 +76915,6 @@ self: { } ) { }; - "cipher-blowfish" = callPackage ( - { - mkDerivation, - base, - byteable, - bytestring, - criterion, - crypto-cipher-benchmarks, - crypto-cipher-tests, - crypto-cipher-types, - mtl, - QuickCheck, - securemem, - test-framework, - test-framework-quickcheck2, - vector, - }: - mkDerivation { - pname = "cipher-blowfish"; - version = "0.0.3"; - sha256 = "0hb67gmiyqrknynz5am8nada1b1v47rqla87dw5nvfhxhl51fhcg"; - libraryHaskellDepends = [ - base - byteable - bytestring - crypto-cipher-types - securemem - vector - ]; - testHaskellDepends = [ - base - byteable - bytestring - crypto-cipher-tests - crypto-cipher-types - QuickCheck - test-framework - test-framework-quickcheck2 - ]; - benchmarkHaskellDepends = [ - base - bytestring - criterion - crypto-cipher-benchmarks - crypto-cipher-types - mtl - ]; - description = "Blowfish cipher"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "cipher-camellia" = callPackage ( { mkDerivation, @@ -139216,58 +76967,6 @@ self: { } ) { }; - "cipher-des" = callPackage ( - { - mkDerivation, - base, - byteable, - bytestring, - criterion, - crypto-cipher-benchmarks, - crypto-cipher-tests, - crypto-cipher-types, - mtl, - QuickCheck, - securemem, - test-framework, - test-framework-quickcheck2, - }: - mkDerivation { - pname = "cipher-des"; - version = "0.0.6"; - sha256 = "1isazxa2nr1y13y0danfk7wghy34rfpn3f43rw714nk2xk6vrwc5"; - libraryHaskellDepends = [ - base - byteable - bytestring - crypto-cipher-types - securemem - ]; - testHaskellDepends = [ - base - byteable - bytestring - crypto-cipher-tests - crypto-cipher-types - QuickCheck - test-framework - test-framework-quickcheck2 - ]; - benchmarkHaskellDepends = [ - base - bytestring - criterion - crypto-cipher-benchmarks - crypto-cipher-types - mtl - ]; - description = "DES and 3DES primitives"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "cipher-rc4" = callPackage ( { mkDerivation, @@ -139471,45 +77170,6 @@ self: { } ) { }; - "circlehs" = callPackage ( - { - mkDerivation, - aeson, - base, - http-client, - http-client-tls, - mtl, - servant, - servant-client, - text, - time, - transformers, - unordered-containers, - }: - mkDerivation { - pname = "circlehs"; - version = "0.0.3"; - sha256 = "1kry06hdlrh25rdsim908n5ggyp3lsfv792572ajf8lr56y0cnda"; - libraryHaskellDepends = [ - aeson - base - http-client - http-client-tls - mtl - servant - servant-client - text - time - transformers - unordered-containers - ]; - description = "The CircleCI REST API for Haskell"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "circuit-breaker" = callPackage ( { mkDerivation, @@ -139809,71 +77469,6 @@ self: { } ) { }; - "citation-resolve" = callPackage ( - { - mkDerivation, - aeson, - base, - bytestring, - citeproc-hs, - containers, - curl, - data-default, - directory, - doctest, - download-curl, - either, - filepath, - hspec, - lens, - MissingH, - mtl, - process, - QuickCheck, - safe, - text, - transformers, - yaml, - }: - mkDerivation { - pname = "citation-resolve"; - version = "0.4.3"; - sha256 = "1x561l7shkz1nh43xh2nj83pb183rah1swi0ql9n0wr9ykq1mh1l"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - aeson - base - bytestring - citeproc-hs - containers - curl - data-default - directory - download-curl - either - lens - mtl - process - safe - text - transformers - yaml - ]; - testHaskellDepends = [ - base - directory - doctest - filepath - hspec - MissingH - QuickCheck - ]; - description = "convert document IDs such as DOI, ISBN, arXiv ID to bibliographic reference"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "citeproc" = callPackage ( { mkDerivation, @@ -140077,55 +77672,6 @@ self: { } ) { }; - "citeproc-hs-pandoc-filter" = callPackage ( - { - mkDerivation, - aeson, - base, - bytestring, - citeproc-hs, - containers, - directory, - filepath, - mtl, - pandoc, - pandoc-types, - parsec, - tagsoup, - texmath, - utf8-string, - yaml, - }: - mkDerivation { - pname = "citeproc-hs-pandoc-filter"; - version = "0.1"; - sha256 = "1kwsmwm0yxvqdxxr7x13hmq4nm8a9plmsfkwbvfp13bbd4mwcxnj"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - aeson - base - bytestring - citeproc-hs - containers - directory - filepath - mtl - pandoc - pandoc-types - parsec - tagsoup - texmath - utf8-string - yaml - ]; - description = "A Pandoc filter for processing bibliographic references with citeproc-hs"; - license = lib.licenses.gpl2Only; - hydraPlatforms = lib.platforms.none; - mainProgram = "citeproc-hs"; - } - ) { }; - "cityhash" = callPackage ( { mkDerivation, @@ -140158,87 +77704,6 @@ self: { } ) { }; - "cj-token" = callPackage ( - { - mkDerivation, - aeson, - base, - base64-bytestring, - containers, - either, - hspec, - jwt, - QuickCheck, - text, - text-conversions, - time, - }: - mkDerivation { - pname = "cj-token"; - version = "0.0.1"; - sha256 = "0s65q242fn19bjx2alk1bx34sy19bq118qzxl3wngldn1gn6idvm"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson - base - base64-bytestring - containers - either - jwt - text - text-conversions - time - ]; - executableHaskellDepends = [ base ]; - testHaskellDepends = [ - base - hspec - jwt - QuickCheck - text - text-conversions - time - ]; - description = "A new Haskeleton package"; - license = lib.licenses.isc; - hydraPlatforms = lib.platforms.none; - mainProgram = "cj-token"; - broken = true; - } - ) { }; - - "cjk" = callPackage ( - { - mkDerivation, - attoparsec, - base, - bytestring, - containers, - text, - text-icu, - }: - mkDerivation { - pname = "cjk"; - version = "0.1.0.1"; - sha256 = "1r0rw33vqkhck0mfqz19plw9a71f56gdcjldrxl23178fps349vl"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - attoparsec - base - bytestring - containers - text - text-icu - ]; - testHaskellDepends = [ base ]; - description = "Data about Chinese, Japanese and Korean characters and languages"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "cl3" = callPackage ( { mkDerivation, @@ -140278,52 +77743,6 @@ self: { } ) { }; - "cl3-hmatrix-interface" = callPackage ( - { - mkDerivation, - base, - cl3, - hmatrix, - }: - mkDerivation { - pname = "cl3-hmatrix-interface"; - version = "2.0.0.0"; - sha256 = "0sa1gaclh7b3mpqiiyqqn2gqfwkwj2ig5yzjk1y0hkzyc7rz4l3k"; - libraryHaskellDepends = [ - base - cl3 - hmatrix - ]; - description = "Interface to/from Cl3 and HMatrix"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "cl3-linear-interface" = callPackage ( - { - mkDerivation, - base, - cl3, - linear, - }: - mkDerivation { - pname = "cl3-linear-interface"; - version = "2.0.0.0"; - sha256 = "15431azhvwk2fcd3aca5snpqrp8kf7zdlbyxh99i1xfdhvq4vc78"; - libraryHaskellDepends = [ - base - cl3 - linear - ]; - description = "Interface to/from Cl3 and Linear"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "cl3-posit" = callPackage ( { mkDerivation, @@ -140356,504 +77775,6 @@ self: { } ) { }; - "clac" = callPackage ( - { - mkDerivation, - base, - containers, - dsp, - optparse-applicative, - plailude, - pretty-tree, - safe, - split, - }: - mkDerivation { - pname = "clac"; - version = "0.5.0"; - sha256 = "1ajah3ma4ms2y2kg4wkasjycsqz728n6chx1lm1r3xaiv17akya8"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - containers - dsp - optparse-applicative - plailude - pretty-tree - safe - split - ]; - description = "Simple CLI RPN calculator"; - license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - mainProgram = "clac"; - } - ) { }; - - "clafer" = callPackage ( - { - mkDerivation, - aeson, - alex, - array, - base, - bytestring, - cmdargs, - containers, - data-stringmap, - directory, - doctest, - executable-path, - file-embed, - filepath, - happy, - HTTP, - HUnit, - json-builder, - lens, - lens-aeson, - mtl, - mtl-compat, - network, - network-uri, - parsec, - process, - QuickCheck, - split, - string-conversions, - tasty, - tasty-hunit, - tasty-th, - text, - transformers, - transformers-compat, - }: - mkDerivation { - pname = "clafer"; - version = "0.4.5"; - sha256 = "1llr7mnlh8msn9plgnnj73w3jqlcwn8v9k2m58520l9q2zfvf68b"; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - aeson - array - base - bytestring - cmdargs - containers - data-stringmap - directory - executable-path - file-embed - filepath - HTTP - json-builder - lens - lens-aeson - mtl - mtl-compat - network - network-uri - parsec - process - split - string-conversions - text - transformers - transformers-compat - ]; - libraryToolDepends = [ - alex - happy - ]; - executableHaskellDepends = [ - base - cmdargs - containers - filepath - mtl - process - split - ]; - testHaskellDepends = [ - base - containers - data-stringmap - directory - doctest - filepath - HUnit - lens - lens-aeson - mtl - mtl-compat - QuickCheck - tasty - tasty-hunit - tasty-th - transformers-compat - ]; - description = "Compiles Clafer models to other formats: Alloy, JavaScript, JSON, HTML, Dot"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - mainProgram = "clafer"; - } - ) { }; - - "claferIG" = callPackage ( - { - mkDerivation, - array, - base, - clafer, - cmdargs, - containers, - data-stringmap, - directory, - executable-path, - filepath, - haskeline, - HaXml, - HUnit, - json-builder, - mtl, - mtl-compat, - parsec, - process, - string-conversions, - tasty, - tasty-hunit, - tasty-th, - transformers, - transformers-compat, - }: - mkDerivation { - pname = "claferIG"; - version = "0.4.5"; - sha256 = "1jv1bl9fzbahhk0g64n611h9hipkr4zcasj2dw5w5v2nqlwrwdjj"; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - array - base - clafer - containers - data-stringmap - directory - executable-path - filepath - haskeline - HaXml - json-builder - mtl - mtl-compat - parsec - process - string-conversions - transformers - transformers-compat - ]; - executableHaskellDepends = [ - base - clafer - cmdargs - containers - directory - executable-path - filepath - haskeline - mtl - mtl-compat - transformers - transformers-compat - ]; - testHaskellDepends = [ - array - base - clafer - cmdargs - directory - filepath - HUnit - tasty - tasty-hunit - tasty-th - transformers - transformers-compat - ]; - description = "claferIG is an interactive tool that generates instances of Clafer models"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - mainProgram = "claferIG"; - } - ) { }; - - "claferwiki" = callPackage ( - { - mkDerivation, - base, - clafer, - containers, - directory, - gitit, - MissingH, - mtl, - network, - network-uri, - process, - SHA, - split, - time, - transformers, - transformers-compat, - utf8-string, - }: - mkDerivation { - pname = "claferwiki"; - version = "0.4.5"; - sha256 = "0rjppdxxzaf3898jklq4c0b7zjnkg6zcqr5nxbrabmvm2l53a4p0"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base - clafer - containers - directory - gitit - MissingH - mtl - network - network-uri - process - SHA - split - time - transformers - transformers-compat - utf8-string - ]; - description = "A wiki-based IDE for literate modeling with Clafer"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "clang-compilation-database" = callPackage ( - { - mkDerivation, - aeson, - base, - bytestring, - text, - }: - mkDerivation { - pname = "clang-compilation-database"; - version = "0.1.0.1"; - sha256 = "1a0wvk82k65b5lscsvg5p41shpz98rahq44d5vyf8wclfshh2ihi"; - libraryHaskellDepends = [ - aeson - base - bytestring - text - ]; - testHaskellDepends = [ - aeson - base - bytestring - ]; - description = "JSON Compilation Database Format encoding and decoding"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "clang-pure" = callPackage ( - { - mkDerivation, - base, - bytestring, - Cabal, - containers, - contravariant, - inline-c, - lens, - libclang, - microlens, - microlens-contra, - process, - singletons, - stm, - template-haskell, - vector, - }: - mkDerivation { - pname = "clang-pure"; - version = "0.2.0.6"; - sha256 = "0s7aqx2wchs834r47kj826kp6fdk3h9gl88s50b1992xhnqxv619"; - isLibrary = true; - isExecutable = true; - setupHaskellDepends = [ - base - Cabal - inline-c - process - ]; - libraryHaskellDepends = [ - base - bytestring - containers - contravariant - inline-c - microlens - microlens-contra - singletons - stm - template-haskell - vector - ]; - librarySystemDepends = [ libclang ]; - testHaskellDepends = [ - base - bytestring - lens - ]; - description = "Pure C++ code analysis with libclang"; - license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { inherit (pkgs) libclang; }; - - "clanki" = callPackage ( - { - mkDerivation, - base, - bytestring, - directory, - safe, - strict, - time, - }: - mkDerivation { - pname = "clanki"; - version = "1.2.7"; - sha256 = "0xi5kqr5xz0y290kky9h75bi53lwkkrhghh9c1almgyijbzi73gj"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - bytestring - directory - safe - strict - time - ]; - description = "Command-line spaced-repetition software"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - mainProgram = "clanki"; - broken = true; - } - ) { }; - - "clarifai" = callPackage ( - { - mkDerivation, - aeson, - base, - bytestring, - containers, - easy-file, - HTTP, - http-client, - lens, - lens-aeson, - scientific, - text, - unordered-containers, - vector, - wreq, - }: - mkDerivation { - pname = "clarifai"; - version = "0.2.0.0"; - sha256 = "0b8xqh9mw5vrlxsflq396ndkrrnw3rr7ymfv3n37258xqa92yf2a"; - libraryHaskellDepends = [ - aeson - base - bytestring - containers - easy-file - HTTP - http-client - lens - lens-aeson - scientific - text - unordered-containers - vector - wreq - ]; - description = "API Client for the Clarifai API"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "clash" = callPackage ( - { - mkDerivation, - base, - containers, - data-accessor, - data-accessor-template, - directory, - filepath, - ghc, - haskell98, - pretty, - prettyclass, - template-haskell, - tfp, - th-lift, - time, - transformers, - utility-ht, - vhdl, - }: - mkDerivation { - pname = "clash"; - version = "0.1.3.11"; - sha256 = "047dhg6y7yvp5vdarylry0q4l29a4x2dkjilk6j624lxcc17gyhx"; - libraryHaskellDepends = [ - base - containers - data-accessor - data-accessor-template - directory - filepath - ghc - haskell98 - pretty - prettyclass - template-haskell - tfp - th-lift - time - transformers - utility-ht - vhdl - ]; - description = "CAES Language for Synchronous Hardware (CLaSH)"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "clash-finite" = callPackage ( { mkDerivation, @@ -141213,32 +78134,6 @@ self: { } ) { }; - "clash-multisignal" = callPackage ( - { - mkDerivation, - base, - clash-prelude, - deepseq, - ghc-typelits-knownnat, - QuickCheck, - }: - mkDerivation { - pname = "clash-multisignal"; - version = "0.2.0.0"; - sha256 = "0jqlz3h226ql641z4kzwf921f5sb0zf9zh2c9gli4bbw7csn93nd"; - libraryHaskellDepends = [ - base - clash-prelude - deepseq - ghc-typelits-knownnat - QuickCheck - ]; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "clash-prelude" = callPackage ( { mkDerivation, @@ -141397,30 +78292,6 @@ self: { } ) { }; - "clash-prelude-quickcheck" = callPackage ( - { - mkDerivation, - base, - clash-prelude, - QuickCheck, - }: - mkDerivation { - pname = "clash-prelude-quickcheck"; - version = "0.1.2.1"; - sha256 = "1fn5wlg2lmxl6rs2ygnf0m88bgcjf62jpprbp425pqbq6lvhw70w"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base - clash-prelude - QuickCheck - ]; - description = "QuickCheck instances for various types in the CλaSH Prelude"; - license = "unknown"; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "clash-shake" = callPackage ( { mkDerivation, @@ -141460,120 +78331,6 @@ self: { } ) { }; - "clash-systemverilog" = callPackage ( - { - mkDerivation, - base, - clash-lib, - clash-prelude, - fgl, - hashable, - lens, - mtl, - text, - unordered-containers, - wl-pprint-text, - }: - mkDerivation { - pname = "clash-systemverilog"; - version = "0.7.2"; - sha256 = "056m8ynwq3y11zkkx9nkkmvamnm2m3337vk8lkx90pk96nvdiaiy"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base - clash-lib - clash-prelude - fgl - hashable - lens - mtl - text - unordered-containers - wl-pprint-text - ]; - description = "CAES Language for Synchronous Hardware - SystemVerilog backend"; - license = lib.licenses.bsd2; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "clash-verilog" = callPackage ( - { - mkDerivation, - base, - clash-lib, - clash-prelude, - fgl, - hashable, - lens, - mtl, - text, - unordered-containers, - wl-pprint-text, - }: - mkDerivation { - pname = "clash-verilog"; - version = "0.7.2"; - sha256 = "09bfrhhiml6m0qssvr18p38ypyxj1zp7vxgci974gd6k597ihi2k"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base - clash-lib - clash-prelude - fgl - hashable - lens - mtl - text - unordered-containers - wl-pprint-text - ]; - description = "CAES Language for Synchronous Hardware - Verilog backend"; - license = lib.licenses.bsd2; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "clash-vhdl" = callPackage ( - { - mkDerivation, - base, - clash-lib, - clash-prelude, - fgl, - hashable, - lens, - mtl, - text, - unordered-containers, - wl-pprint-text, - }: - mkDerivation { - pname = "clash-vhdl"; - version = "0.7.2"; - sha256 = "1c63m2gcifak0v38rsmv4j521br84jaspdb193a66957qisvfsvs"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base - clash-lib - clash-prelude - fgl - hashable - lens - mtl - text - unordered-containers - wl-pprint-text - ]; - description = "CAES Language for Synchronous Hardware - VHDL backend"; - license = lib.licenses.bsd2; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "clashilator" = callPackage ( { mkDerivation, @@ -141659,102 +78416,6 @@ self: { } ) { }; - "classify-frog" = callPackage ( - { - mkDerivation, - array, - audacity, - base, - bifunctors, - carray, - comfort-array, - concurrent-split, - containers, - deepseq, - explicit-exception, - fft, - filemanip, - gnuplot, - hmm-lapack, - lapack, - lazy-csv, - llvm-extra, - llvm-tf, - non-empty, - numeric-prelude, - optparse-applicative, - parallel, - pathtype, - pooled-io, - semigroups, - shell-utility, - soxlib, - storable-record, - storablevector, - storablevector-carray, - synthesizer-core, - synthesizer-llvm, - tagchup, - text, - time, - transformers, - utility-ht, - xml-basic, - }: - mkDerivation { - pname = "classify-frog"; - version = "0.2.4.3"; - sha256 = "0pba3a2vj9s5x8mm878q8vl0a57vrm2c4s79n0vc2pggbkb6dybc"; - isLibrary = false; - isExecutable = true; - enableSeparateDataOutput = true; - executableHaskellDepends = [ - array - audacity - base - bifunctors - carray - comfort-array - concurrent-split - containers - deepseq - explicit-exception - fft - filemanip - gnuplot - hmm-lapack - lapack - lazy-csv - llvm-extra - llvm-tf - non-empty - numeric-prelude - optparse-applicative - parallel - pathtype - pooled-io - semigroups - shell-utility - soxlib - storable-record - storablevector - storablevector-carray - synthesizer-core - synthesizer-llvm - tagchup - text - time - transformers - utility-ht - xml-basic - ]; - description = "Classify sounds produced by Xenopus laevis"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "classify-frog"; - } - ) { }; - "classy-effects" = callPackage ( { mkDerivation, @@ -141856,123 +78517,6 @@ self: { } ) { }; - "classy-influxdb-simple" = callPackage ( - { - mkDerivation, - aeson, - async-io-either, - base, - bytestring, - lens, - mtl, - scientific, - text, - time, - vector, - wreq, - }: - mkDerivation { - pname = "classy-influxdb-simple"; - version = "0.2.1.0"; - sha256 = "0qarr73rxa0zhy77n5a0i75wcg383k81n2v2hp3rqkgx282sbd3m"; - libraryHaskellDepends = [ - aeson - async-io-either - base - bytestring - lens - mtl - scientific - text - time - vector - wreq - ]; - description = "Super simple InfluxDB package in Classy-MTL style"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "classy-miso" = callPackage ( - { - mkDerivation, - base, - containers, - data-default, - lens, - megaparsec, - miso, - network-uri, - rfc, - transformers, - url, - }: - mkDerivation { - pname = "classy-miso"; - version = "0.0.0.2"; - sha256 = "12qz2s5qhmjryp5x06jcv2gl3ipjhw0knsn1qawl1kn278hpyvp9"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - containers - data-default - lens - megaparsec - miso - network-uri - rfc - transformers - url - ]; - executableHaskellDepends = [ - base - miso - rfc - ]; - testHaskellDepends = [ - base - miso - rfc - ]; - description = "Typeclass based support for Miso, the Tasty Web Framework for Haskell"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "classy-miso-demo"; - } - ) { }; - - "classy-parallel" = callPackage ( - { - mkDerivation, - base, - lifted-base, - monad-control, - parallel, - resourcet, - transformers, - }: - mkDerivation { - pname = "classy-parallel"; - version = "0.1.0.0"; - sha256 = "0vfik37g2fwzc4p343hag5aidvi77396vfhfdx1207gahbzqf21v"; - libraryHaskellDepends = [ - base - lifted-base - monad-control - parallel - resourcet - transformers - ]; - description = "Fork of the monad-parallel package using monad-control"; - license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "classy-prelude" = callPackage ( { mkDerivation, @@ -142128,36 +78672,6 @@ self: { } ) { }; - "classyplate" = callPackage ( - { - mkDerivation, - base, - criterion, - parallel, - template-haskell, - uniplate, - }: - mkDerivation { - pname = "classyplate"; - version = "0.3.2.0"; - sha256 = "0yjja83y7ccnhvy0jarwm297jnz44wmdi0krbrp2vnbgdfzfybki"; - libraryHaskellDepends = [ - base - template-haskell - ]; - benchmarkHaskellDepends = [ - base - criterion - parallel - uniplate - ]; - description = "Fuseable type-class based generics"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "clay" = callPackage ( { mkDerivation, @@ -142303,7 +78817,6 @@ self: { libraryToolDepends = [ hsx2hs ]; description = "A secure, reliable content management system (CMS) and blogging platform"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; } ) { inherit (pkgs) openssl; }; @@ -142350,273 +78863,10 @@ self: { ]; description = "a command-line interface for adminstrating some aspects of clckwrks"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "clckwrks-cli"; } ) { }; - "clckwrks-dot-com" = callPackage ( - { - mkDerivation, - base, - clckwrks, - clckwrks-plugin-media, - clckwrks-plugin-page, - clckwrks-theme-clckwrks, - containers, - happstack-server, - hsp, - hsx2hs, - mtl, - network, - text, - web-plugins, - }: - mkDerivation { - pname = "clckwrks-dot-com"; - version = "0.3.11"; - sha256 = "0f39ws919qy00090l002k3g8dkcldq7rwayf0wyxg8mfycrnb700"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - clckwrks - clckwrks-plugin-media - clckwrks-plugin-page - clckwrks-theme-clckwrks - containers - happstack-server - hsp - mtl - network - text - web-plugins - ]; - executableToolDepends = [ hsx2hs ]; - description = "clckwrks.com"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "clckwrks-dot-com-server"; - } - ) { }; - - "clckwrks-plugin-bugs" = callPackage ( - { - mkDerivation, - acid-state, - attoparsec, - base, - cereal, - clckwrks, - clckwrks-plugin-page, - containers, - directory, - filepath, - happstack-authenticate, - happstack-hsp, - happstack-server, - hsp, - hsx2hs, - ixset, - mtl, - network, - network-uri, - reform, - reform-happstack, - reform-hsp, - safecopy, - text, - time, - web-plugins, - web-routes, - web-routes-th, - }: - mkDerivation { - pname = "clckwrks-plugin-bugs"; - version = "0.7.5"; - sha256 = "0la4ivk8sbh8wq1g2nhxx522ir2idffz5818bghjf8qffmqa47fv"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - acid-state - attoparsec - base - cereal - clckwrks - clckwrks-plugin-page - containers - directory - filepath - happstack-authenticate - happstack-hsp - happstack-server - hsp - ixset - mtl - network - network-uri - reform - reform-happstack - reform-hsp - safecopy - text - time - web-plugins - web-routes - web-routes-th - ]; - libraryToolDepends = [ hsx2hs ]; - description = "bug tracking plugin for clckwrks"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "clckwrks-plugin-ircbot" = callPackage ( - { - mkDerivation, - acid-state, - attoparsec, - base, - blaze-html, - bytestring, - clckwrks, - containers, - directory, - filepath, - happstack-hsp, - happstack-server, - hsp, - hsx2hs, - ircbot, - ixset, - mtl, - network, - reform, - reform-happstack, - reform-hsp, - safecopy, - text, - web-plugins, - web-routes, - web-routes-th, - }: - mkDerivation { - pname = "clckwrks-plugin-ircbot"; - version = "0.6.17.5"; - sha256 = "069dvpw4g61da7v9n9ygs3lsw4c68qph4iqy6c5l9kcrkww9s3pv"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - acid-state - attoparsec - base - blaze-html - bytestring - clckwrks - containers - directory - filepath - happstack-hsp - happstack-server - hsp - ircbot - ixset - mtl - network - reform - reform-happstack - reform-hsp - safecopy - text - web-plugins - web-routes - web-routes-th - ]; - libraryToolDepends = [ hsx2hs ]; - description = "ircbot plugin for clckwrks"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "clckwrks-plugin-mailinglist" = callPackage ( - { - mkDerivation, - acid-state, - attoparsec, - base, - bytestring, - clckwrks, - containers, - directory, - filepath, - happstack-authenticate, - happstack-hsp, - happstack-server, - hsp, - HStringTemplate, - hsx2hs, - html-email-validate, - ixset, - lens, - mime-mail, - mtl, - network-uri, - reform, - reform-happstack, - reform-hsp, - safecopy, - text, - time, - uuid, - uuid-orphans, - web-plugins, - web-routes, - web-routes-th, - }: - mkDerivation { - pname = "clckwrks-plugin-mailinglist"; - version = "0.3.0.2"; - sha256 = "1zhcqkzas3pcnviwka0v174spq8wn457kvmxk6nafcxkwf27p52m"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - acid-state - attoparsec - base - bytestring - clckwrks - containers - directory - filepath - happstack-authenticate - happstack-hsp - happstack-server - hsp - HStringTemplate - hsx2hs - html-email-validate - ixset - lens - mime-mail - mtl - network-uri - reform - reform-happstack - reform-hsp - safecopy - text - time - uuid - uuid-orphans - web-plugins - web-routes - web-routes-th - ]; - description = "mailing list plugin for clckwrks"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "clckwrks-plugin-media" = callPackage ( { mkDerivation, @@ -142678,7 +78928,6 @@ self: { ]; description = "media plugin for clckwrks"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; } ) { }; @@ -142757,7 +79006,6 @@ self: { libraryToolDepends = [ hsx2hs ]; description = "support for CMS/Blogging in clckwrks"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; } ) { }; @@ -142829,7 +79077,6 @@ self: { ]; description = "support redirects for CMS/Blogging in clckwrks"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; } ) { }; @@ -142866,92 +79113,6 @@ self: { ]; description = "simple bootstrap based template for clckwrks"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "clckwrks-theme-clckwrks" = callPackage ( - { - mkDerivation, - base, - clckwrks, - containers, - happstack-authenticate, - hsp, - hsx2hs, - mtl, - text, - web-plugins, - }: - mkDerivation { - pname = "clckwrks-theme-clckwrks"; - version = "0.5.2.1"; - sha256 = "14pksv77afppp43dfba5f4brnycqhca2kylvb1bpjdb61lni9sk7"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base - clckwrks - containers - happstack-authenticate - hsp - hsx2hs - mtl - text - web-plugins - ]; - description = "simple bootstrap based template for clckwrks"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "clckwrks-theme-geo-bootstrap" = callPackage ( - { - mkDerivation, - base, - clckwrks, - hsp, - text, - }: - mkDerivation { - pname = "clckwrks-theme-geo-bootstrap"; - version = "0.1.1"; - sha256 = "1qxik7hdz300n5lfb5xzh2md44b4xwwlr0c92y9x2na2xz41da7k"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base - clckwrks - hsp - text - ]; - description = "geo bootstrap based template for clckwrks"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "cld2" = callPackage ( - { - mkDerivation, - base, - bytestring, - hashable, - text, - }: - mkDerivation { - pname = "cld2"; - version = "0.1.1.1"; - sha256 = "04sh2077pn67y1apgzx6rp4z15dw7qbvwg6yrwg416k40ilz7nbd"; - libraryHaskellDepends = [ - base - bytestring - hashable - text - ]; - description = "Haskell bindings to Google's Compact Language Detector 2"; - license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; - broken = true; } ) { }; @@ -142986,20 +79147,6 @@ self: { } ) { }; - "clean-unions" = callPackage ( - { mkDerivation, base }: - mkDerivation { - pname = "clean-unions"; - version = "0.1.1"; - sha256 = "1y4cj15s6gjcazwk0iycyc2qs7chrqcvchf4g5h4xnf2x8ld4i21"; - libraryHaskellDepends = [ base ]; - description = "Open unions without need for Typeable"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "cleff" = callPackage ( { mkDerivation, @@ -143146,39 +79293,6 @@ self: { } ) { }; - "cless" = callPackage ( - { - mkDerivation, - base, - highlighting-kate, - optparse-applicative, - process, - terminfo, - wl-pprint-extras, - wl-pprint-terminfo, - }: - mkDerivation { - pname = "cless"; - version = "0.3.0.0"; - sha256 = "16v2hj2qxw7ij8aqhbx11fs4ss62d4d0jwi4mk0kc76yfdwl61hg"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - highlighting-kate - optparse-applicative - process - terminfo - wl-pprint-extras - wl-pprint-terminfo - ]; - description = "Colorized LESS"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - mainProgram = "cless"; - } - ) { }; - "cleveland" = callPackage ( { mkDerivation, @@ -143292,61 +79406,6 @@ self: { testToolDepends = [ tasty-discover ]; description = "Testing framework for Morley"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "clevercss" = callPackage ( - { - mkDerivation, - base, - containers, - mtl, - parsec, - }: - mkDerivation { - pname = "clevercss"; - version = "0.2.4"; - sha256 = "0nnczd93j160747dc11z06ds81g938bw8lnqywg7mgylsfxalznl"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - containers - mtl - parsec - ]; - executableHaskellDepends = [ parsec ]; - description = "A CSS preprocessor"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "clevercss"; - broken = true; - } - ) { }; - - "clexer" = callPackage ( - { - mkDerivation, - base, - containers, - mtl, - parsec, - }: - mkDerivation { - pname = "clexer"; - version = "0.1.0.0"; - sha256 = "1x2q496jqvgqjbwncszl1h9ylkq6rn8h2fsp7w771xkyslfq46xy"; - libraryHaskellDepends = [ - base - containers - mtl - parsec - ]; - description = "Lexes C++ code into simple tokens"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; } ) { }; @@ -143405,44 +79464,6 @@ self: { } ) { }; - "cli-builder" = callPackage ( - { - mkDerivation, - base, - doctest, - either, - exceptions, - filemanip, - hspec, - optparse-applicative, - QuickCheck, - transformers, - }: - mkDerivation { - pname = "cli-builder"; - version = "0.1.0"; - sha256 = "1r94mlrsvyxk0gw1na2qjpd0d4cf2h05scg0p163r48x8smdnwha"; - libraryHaskellDepends = [ - base - either - exceptions - optparse-applicative - transformers - ]; - testHaskellDepends = [ - base - doctest - filemanip - hspec - QuickCheck - ]; - description = "Simple project template from stack"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "cli-extras" = callPackage ( { mkDerivation, @@ -143592,45 +79613,6 @@ self: { } ) { }; - "click-clack" = callPackage ( - { - mkDerivation, - base, - containers, - GLFW, - Hipmunk, - MonadRandom, - mtl, - OpenGL, - random, - StateVar, - transformers, - }: - mkDerivation { - pname = "click-clack"; - version = "1.0.1"; - sha256 = "0ngvdq0i82qxwawqb5pqa3fscnyv1kxc3ifc3qijnn5v4py9ydd8"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - containers - GLFW - Hipmunk - MonadRandom - mtl - OpenGL - random - StateVar - transformers - ]; - description = "Toy game (tetris on billiard board). Hipmunk in action."; - license = "unknown"; - hydraPlatforms = lib.platforms.none; - mainProgram = "click-clack"; - } - ) { }; - "clickhouse-haskell" = callPackage ( { mkDerivation, @@ -143828,180 +79810,6 @@ self: { } ) { }; - "clif" = callPackage ( - { - mkDerivation, - base, - containers, - QuickCheck, - tasty, - tasty-quickcheck, - tasty-th, - time, - }: - mkDerivation { - pname = "clif"; - version = "0.1.1.0"; - sha256 = "08mamsaycd2k2sjz08sg808yd153hhw9gfi4170448xl8icadkx5"; - libraryHaskellDepends = [ - base - containers - QuickCheck - ]; - testHaskellDepends = [ - base - containers - tasty - tasty-quickcheck - tasty-th - ]; - benchmarkHaskellDepends = [ - base - time - ]; - description = "A Clifford algebra number type for Haskell"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "clifford" = callPackage ( - { - mkDerivation, - base, - cereal, - Chart, - Chart-cairo, - colour, - converge, - criterion, - data-default-class, - data-ordlist, - deepseq, - derive, - gnuplot, - hspec, - lens, - MemoTrie, - monoid-extras, - nats, - numeric-prelude, - permutation, - QuickCheck, - reflection, - semigroupoids, - stream-fusion, - tagged, - vector, - }: - mkDerivation { - pname = "clifford"; - version = "0.1.0.14"; - sha256 = "00xxvwa60ihrd24267hzs5ssjm6nrli39qlh9gm4fkdnrzif9r4r"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - cereal - converge - criterion - data-ordlist - deepseq - derive - hspec - lens - MemoTrie - monoid-extras - nats - numeric-prelude - permutation - QuickCheck - reflection - semigroupoids - stream-fusion - tagged - vector - ]; - executableHaskellDepends = [ - base - Chart - Chart-cairo - colour - data-default-class - gnuplot - lens - numeric-prelude - stream-fusion - ]; - testHaskellDepends = [ - base - hspec - nats - numeric-prelude - QuickCheck - ]; - benchmarkHaskellDepends = [ - base - criterion - numeric-prelude - stream-fusion - ]; - description = "A Clifford algebra library"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "pendulum"; - } - ) { }; - - "clifm" = callPackage ( - { - mkDerivation, - base, - brick, - byteunits, - conduit, - containers, - directory, - filepath, - lens, - optparse-applicative, - pointedlist, - process, - time, - vector, - vty, - }: - mkDerivation { - pname = "clifm"; - version = "0.5.2.1"; - sha256 = "0prbasvk804mzdwjzprj7v1s1wjzlqjih0pdzi1vdskfqjcyy9n2"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - brick - byteunits - conduit - containers - directory - filepath - lens - optparse-applicative - pointedlist - process - time - vector - vty - ]; - description = "Command Line Interface File Manager"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "clifm"; - broken = true; - } - ) { }; - "climb" = callPackage ( { mkDerivation, @@ -144033,271 +79841,37 @@ self: { executableHaskellDepends = [ base bytestring - containers - exceptions - linenoise - mtl - text - unliftio-core - ]; - description = "Building blocks for a GHCi-like REPL with colon-commands"; - license = lib.licenses.bsd3; - mainProgram = "climb-demo"; - } - ) { }; - - "clingo" = callPackage ( - { - mkDerivation, - base, - bifunctors, - clingo, - deepseq, - exceptions, - hashable, - mtl, - StateVar, - text, - transformers, - wl-pprint-text, - }: - mkDerivation { - pname = "clingo"; - version = "0.2.0.0"; - sha256 = "1swc0fkzfsrg29jcncaskj167j0bk4y21irna8p7v9b1wp4yhnc3"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - bifunctors - deepseq - exceptions - hashable - mtl - StateVar - text - transformers - wl-pprint-text - ]; - librarySystemDepends = [ clingo ]; - description = "Haskell bindings to the Clingo ASP solver"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { inherit (pkgs) clingo; }; - - "clippard" = callPackage ( - { - mkDerivation, - base, - process, - }: - mkDerivation { - pname = "clippard"; - version = "0.1.1"; - sha256 = "0qhi727irlkvi4ygx5qvd6h1zzz22588lymi39s0gcjir473a538"; - libraryHaskellDepends = [ - base - process - ]; - description = "A simple Haskell library for copying text to the clipboard in a cross-platform way"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "clipper" = callPackage ( - { mkDerivation, base }: - mkDerivation { - pname = "clipper"; - version = "0.0.1"; - sha256 = "0s4n8d07190yarkxpa2kjphkm6lw2ljgwcix3x6m3lxcxrvc3nr0"; - libraryHaskellDepends = [ base ]; - description = "Haskell API to clipper (2d polygon union/intersection/xor/clipping API)"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "clippings" = callPackage ( - { - mkDerivation, - assertions, - base, - bifunctors, - bytestring, - cassava, - data-default, - filepath, - functor-infix, - old-locale, - parsec, - safecopy, - strptime, - time, - }: - mkDerivation { - pname = "clippings"; - version = "0.2.0"; - sha256 = "1nsvhb7lbkclhqpbvs3ccwclpr4g8p6zmsyn072bc0d0icf4hql5"; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base - data-default - functor-infix - old-locale - parsec - strptime - time - ]; - executableHaskellDepends = [ - base - bifunctors - bytestring - cassava - functor-infix - parsec - safecopy - ]; - testHaskellDepends = [ - assertions - base - data-default - filepath - old-locale - parsec - time - ]; - description = "A parser/generator for Kindle-format clipping files (`My Clippings.txt`),"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - mainProgram = "clippings2tsv"; - } - ) { }; - - "clisparkline" = callPackage ( - { mkDerivation, base }: - mkDerivation { - pname = "clisparkline"; - version = "0.1.0.0"; - sha256 = "1ldsjx6y74cspxy5c143zdww7pxa50pn59s4v2dd1iky1x2yrygc"; - libraryHaskellDepends = [ base ]; - testHaskellDepends = [ base ]; - description = "Tiny library to pretty print sparklines onto the CLI"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "clist" = callPackage ( - { - mkDerivation, - base, - natural-induction, - peano, - }: - mkDerivation { - pname = "clist"; - version = "0.3.0.1"; - sha256 = "1k6i4gjfqv19cgnnmycy4dyjg5wh9wlykvi62qwzxl1vswd8mzgy"; - libraryHaskellDepends = [ - base - natural-induction - peano - ]; - description = "Counted list"; - license = "unknown"; - } - ) { }; - - "clit" = callPackage ( - { - mkDerivation, - ansi-wl-pprint, - authenticate-oauth, - base, - bytestring, - data-default, - directory, - http-client, - http-client-tls, - http-types, - lens, - megaparsec, - MissingH, - optparse-applicative, - split, - text, - }: - mkDerivation { - pname = "clit"; - version = "0.4.0.6"; - sha256 = "14rl2sq1i0y8myhczs84mfyn7qcw7np63x6fv2krz6w24nakyih9"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - ansi-wl-pprint - authenticate-oauth - base - bytestring - data-default - directory - http-client - http-client-tls - http-types - lens - megaparsec - MissingH - optparse-applicative - split + containers + exceptions + linenoise + mtl text + unliftio-core ]; - executableHaskellDepends = [ base ]; - description = "Post tweets from stdin"; + description = "Building blocks for a GHCi-like REPL with colon-commands"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "tweet"; - broken = true; + mainProgram = "climb-demo"; } ) { }; - "cloben" = callPackage ( + "clist" = callPackage ( { mkDerivation, base, - foldl, - process, - system-filepath, - temporary, - text, - turtle, + natural-induction, + peano, }: mkDerivation { - pname = "cloben"; - version = "0.1.1.0"; - sha256 = "14vkga43sm995rg4s4npjca7xslgs33kl1ivknbflfidvgpdlxmb"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ + pname = "clist"; + version = "0.3.0.1"; + sha256 = "1k6i4gjfqv19cgnnmycy4dyjg5wh9wlykvi62qwzxl1vswd8mzgy"; + libraryHaskellDepends = [ base - foldl - process - system-filepath - temporary - text - turtle + natural-induction + peano ]; - description = "Clone and benchmark Haskell cabal projects"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "cloben"; - broken = true; + description = "Counted list"; + license = "unknown"; } ) { }; @@ -144328,61 +79902,6 @@ self: { } ) { }; - "clock-extras" = callPackage ( - { - mkDerivation, - base, - clock, - hspec, - }: - mkDerivation { - pname = "clock-extras"; - version = "0.1.0.2"; - sha256 = "0nfsxm1apd4gk7yd8b95w849n927wdkmzg2mlp3572ylm5x0kvd9"; - libraryHaskellDepends = [ - base - clock - ]; - testHaskellDepends = [ - base - hspec - ]; - description = "A couple functions that probably should be in the 'clock' package"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "clocked" = callPackage ( - { - mkDerivation, - base, - clock, - containers, - MonadCatchIO-transformers, - QtCore, - transformers, - }: - mkDerivation { - pname = "clocked"; - version = "0.4.1.3"; - sha256 = "1z9n4nisa73zlwch7arixg6633w3jmcqw5w97jf4p5559q874wi8"; - libraryHaskellDepends = [ - base - clock - containers - MonadCatchIO-transformers - transformers - ]; - libraryPkgconfigDepends = [ QtCore ]; - description = "timer functionality to clock IO commands"; - license = lib.licenses.lgpl3Only; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { QtCore = null; }; - "clod" = callPackage ( { mkDerivation, @@ -144475,81 +79994,6 @@ self: { } ) { }; - "clogparse" = callPackage ( - { - mkDerivation, - attoparsec, - base, - bytestring, - filepath, - text, - time, - timezone-olson, - timezone-series, - }: - mkDerivation { - pname = "clogparse"; - version = "0.2"; - sha256 = "17n5rwi64wjyv2xcxm86bawgmnpfrg7fjzwr9l3bj5jg0ggbyrbx"; - libraryHaskellDepends = [ - attoparsec - base - bytestring - filepath - text - time - timezone-olson - timezone-series - ]; - description = "Parse IRC logs such as the #haskell logs on tunes.org"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "clone-all" = callPackage ( - { - mkDerivation, - aeson, - base, - bytestring, - directory, - github, - optparse-applicative, - process, - system-fileio, - system-filepath, - text, - transformers, - }: - mkDerivation { - pname = "clone-all"; - version = "0.1.0.0"; - sha256 = "1mif1cqwpgp1wis7lplqrvv5aikdl0iv5ddazwgm6zgrxz645p09"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - aeson - base - bytestring - directory - github - optparse-applicative - process - system-fileio - system-filepath - text - transformers - ]; - description = "Clone all github repositories from a given user"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - mainProgram = "clone-all"; - broken = true; - } - ) { }; - "closed" = callPackage ( { mkDerivation, @@ -144656,152 +80100,6 @@ self: { } ) { }; - "closure" = callPackage ( - { - mkDerivation, - base, - hashable, - unordered-containers, - }: - mkDerivation { - pname = "closure"; - version = "0.1.0.0"; - sha256 = "1z9clkwjpj01g258h8bldlc759vwsgdlyppn29sr11kyani1zjwf"; - libraryHaskellDepends = [ - base - hashable - unordered-containers - ]; - description = "Depth- and breadth-first set closures"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "cloud-haskell" = callPackage ( - { - mkDerivation, - distributed-process, - distributed-process-async, - distributed-process-client-server, - distributed-process-execution, - distributed-process-extras, - distributed-process-supervisor, - distributed-process-task, - distributed-static, - network-transport, - rank1dynamic, - }: - mkDerivation { - pname = "cloud-haskell"; - version = "0.3.0.0"; - sha256 = "1rs8mgnxv84ffp2wzibbf7n82ll0wzwbrvw63km2x01zgrh5gjnp"; - libraryHaskellDepends = [ - distributed-process - distributed-process-async - distributed-process-client-server - distributed-process-execution - distributed-process-extras - distributed-process-supervisor - distributed-process-task - distributed-static - network-transport - rank1dynamic - ]; - doHaddock = false; - description = "The Cloud Haskell Application Platform"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "cloud-seeder" = callPackage ( - { - mkDerivation, - aeson, - amazonka, - amazonka-cloudformation, - amazonka-core, - amazonka-kms, - amazonka-s3, - base, - bytestring, - containers, - crypto-api, - deepseq, - exceptions, - fast-logger, - hspec, - lens, - monad-control, - monad-logger, - monad-mock, - mtl, - optparse-applicative, - text, - text-conversions, - these, - transformers, - transformers-base, - unordered-containers, - uuid, - yaml, - }: - mkDerivation { - pname = "cloud-seeder"; - version = "0.2.0.0"; - sha256 = "0886c6lfqcvwbq3cdxpq2rg25a0p9msjxqv3ncsw02rdcww0dsqc"; - libraryHaskellDepends = [ - aeson - amazonka - amazonka-cloudformation - amazonka-core - amazonka-kms - amazonka-s3 - base - bytestring - containers - crypto-api - deepseq - exceptions - lens - monad-control - monad-logger - mtl - optparse-applicative - text - text-conversions - transformers - transformers-base - unordered-containers - uuid - yaml - ]; - testHaskellDepends = [ - amazonka-cloudformation - base - bytestring - containers - deepseq - fast-logger - hspec - lens - monad-logger - monad-mock - mtl - optparse-applicative - text - these - transformers - yaml - ]; - description = "A tool for interacting with AWS CloudFormation"; - license = lib.licenses.isc; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "cloudevents-haskell" = callPackage ( { mkDerivation, @@ -144842,41 +80140,6 @@ self: { } ) { }; - "cloudfront-signer" = callPackage ( - { - mkDerivation, - asn1-encoding, - asn1-types, - base, - base64-bytestring, - bytestring, - crypto-pubkey-types, - old-locale, - RSA, - time, - }: - mkDerivation { - pname = "cloudfront-signer"; - version = "0.0.0.1"; - sha256 = "1ikjrlb421rxsj4c7dl4dw8a3kls43gzn4mapg1y9b2bkd7q6ywz"; - libraryHaskellDepends = [ - asn1-encoding - asn1-types - base - base64-bytestring - bytestring - crypto-pubkey-types - old-locale - RSA - time - ]; - description = "CloudFront URL signer"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "cloudi" = callPackage ( { mkDerivation, @@ -145006,51 +80269,6 @@ self: { } ) { }; - "cloudyfs" = callPackage ( - { - mkDerivation, - base, - bytestring, - containers, - convertible, - datetime, - filepath, - HFuse, - HTTP, - regex-base, - regex-tdfa, - tagsoup, - timerep, - unix, - }: - mkDerivation { - pname = "cloudyfs"; - version = "0.0.2"; - sha256 = "0jfv3830kg3yp1vqqs75bmiwflv4y8ya86q575bsw1l695dc5lwg"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - bytestring - containers - convertible - datetime - filepath - HFuse - HTTP - regex-base - regex-tdfa - tagsoup - timerep - unix - ]; - description = "A cloud in the file system"; - license = "unknown"; - hydraPlatforms = lib.platforms.none; - mainProgram = "cloudyfs"; - } - ) { }; - "clplug" = callPackage ( { mkDerivation, @@ -145100,192 +80318,6 @@ self: { } ) { }; - "clr-bindings" = callPackage ( - { - mkDerivation, - base, - clr-host, - clr-marshal, - clr-typed, - pipes, - template-haskell, - text, - }: - mkDerivation { - pname = "clr-bindings"; - version = "0.2.0"; - sha256 = "1q2s4bg4lilcn9pfp14vj11m67l4f3lpqr5h1j17mklzp5cbhv85"; - libraryHaskellDepends = [ - base - clr-host - clr-marshal - clr-typed - pipes - template-haskell - text - ]; - testHaskellDepends = [ base ]; - description = "Glue between clr-host and clr-typed"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "clr-host" = - callPackage - ( - { - mkDerivation, - base, - bytestring, - Cabal, - clr-marshal, - directory, - file-embed, - filepath, - glib, - mono, - text, - transformers, - }: - mkDerivation { - pname = "clr-host"; - version = "0.2.1.0"; - sha256 = "192yzi7xx2hrk2q0i4qzq0plam2b0xgg9r5s3kjzcvf9hq1vyapy"; - setupHaskellDepends = [ - base - Cabal - directory - filepath - transformers - ]; - libraryHaskellDepends = [ - base - bytestring - clr-marshal - file-embed - text - ]; - librarySystemDepends = [ - glib - mono - ]; - testHaskellDepends = [ base ]; - description = "Hosting the Common Language Runtime"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) - { - inherit (pkgs) glib; - inherit (pkgs) mono; - }; - - "clr-inline" = callPackage ( - { - mkDerivation, - base, - bytestring, - Cabal, - case-insensitive, - clr-host, - clr-marshal, - containers, - criterion, - directory, - extra, - filepath, - here, - hspec, - lens, - parsec, - pipes, - process, - split, - template-haskell, - temporary, - text, - transformers, - }: - mkDerivation { - pname = "clr-inline"; - version = "0.2.0.1"; - sha256 = "0zalf8mxdyak8kvannafyv4ckbqbnyrwnbz9z6v4qys1jqggiphh"; - libraryHaskellDepends = [ - base - bytestring - Cabal - case-insensitive - clr-host - clr-marshal - containers - directory - extra - filepath - here - lens - parsec - pipes - process - split - template-haskell - temporary - text - transformers - ]; - testHaskellDepends = [ - base - bytestring - Cabal - case-insensitive - clr-host - clr-marshal - containers - directory - extra - filepath - here - hspec - lens - parsec - pipes - process - split - template-haskell - temporary - text - transformers - ]; - benchmarkHaskellDepends = [ - base - bytestring - Cabal - case-insensitive - clr-host - clr-marshal - containers - criterion - directory - extra - filepath - here - lens - parsec - pipes - process - split - template-haskell - temporary - text - transformers - ]; - description = "Quasiquoters for inline C# and F#"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "clr-marshal" = callPackage ( { mkDerivation, @@ -145305,40 +80337,6 @@ self: { } ) { }; - "clr-typed" = callPackage ( - { - mkDerivation, - base, - clr-marshal, - ghc-prim, - hspec, - text, - tuple, - }: - mkDerivation { - pname = "clr-typed"; - version = "0.2.0"; - sha256 = "1ay3970fccvr4hbmv5dah2qdxv51q09n1v3m9wkj62mbpsp3zk2y"; - libraryHaskellDepends = [ - base - clr-marshal - ghc-prim - text - tuple - ]; - testHaskellDepends = [ - base - clr-marshal - hspec - text - ]; - description = "A strongly typed Haskell interface to the CLR type system"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "clr-win-linker" = callPackage ( { mkDerivation, @@ -145367,69 +80365,6 @@ self: { } ) { }; - "cltw" = callPackage ( - { - mkDerivation, - base, - curl, - mtl, - random, - tagsoup, - }: - mkDerivation { - pname = "cltw"; - version = "1.1.4"; - sha256 = "08nishc8ngmvx0pdksn4z8a6l8vdgm3jiyz3w6d302pwp566z4q9"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - curl - mtl - random - tagsoup - ]; - description = "Command line Twitter utility"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "cltw"; - broken = true; - } - ) { }; - - "clua" = callPackage ( - { - mkDerivation, - base, - bytestring, - containers, - haskell98, - language-c, - pretty, - pretty-show, - }: - mkDerivation { - pname = "clua"; - version = "0.3"; - sha256 = "0xzhpjsb9nf8xw7fa111n5gki46gz67aiyd2wr1k50pzyjrvl3vv"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - bytestring - containers - haskell98 - language-c - pretty - pretty-show - ]; - description = "C to Lua data wrapper generator"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "clua"; - } - ) { }; - "clumpiness" = callPackage ( { mkDerivation, @@ -145451,168 +80386,6 @@ self: { } ) { }; - "cluss" = callPackage ( - { - mkDerivation, - base, - template-haskell, - }: - mkDerivation { - pname = "cluss"; - version = "0.3"; - sha256 = "1q5km2f8zwnzcwnzj0khnszsgrb1x53zp0ryjwz2nfx9ajvh7zgg"; - libraryHaskellDepends = [ - base - template-haskell - ]; - description = "simple alternative to type classes"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "clustering" = callPackage ( - { - mkDerivation, - base, - binary, - containers, - criterion, - hierarchical-clustering, - inline-r, - matrices, - mwc-random, - parallel, - primitive, - split, - tasty, - tasty-hunit, - tasty-quickcheck, - unordered-containers, - vector, - }: - mkDerivation { - pname = "clustering"; - version = "0.4.1"; - sha256 = "0p9hbnisqqlsb6239y8rprwvwa3zmkgdbqqkq9rfgsnr0azf8rwm"; - libraryHaskellDepends = [ - base - binary - containers - matrices - mwc-random - parallel - primitive - unordered-containers - vector - ]; - testHaskellDepends = [ - base - binary - hierarchical-clustering - inline-r - matrices - mwc-random - split - tasty - tasty-hunit - tasty-quickcheck - vector - ]; - benchmarkHaskellDepends = [ - base - criterion - hierarchical-clustering - matrices - mwc-random - vector - ]; - description = "High performance clustering algorithms"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "clustertools" = callPackage ( - { - mkDerivation, - base, - bio, - bytestring, - containers, - QuickCheck, - regex-compat, - simpleargs, - }: - mkDerivation { - pname = "clustertools"; - version = "0.1.5"; - sha256 = "0in6fqzr1aki2dhbkv3vlmw17vla5m39g6msaplk4vix5yjw7vkq"; - isLibrary = false; - isExecutable = true; - enableSeparateDataOutput = true; - executableHaskellDepends = [ - base - bio - bytestring - containers - QuickCheck - regex-compat - simpleargs - ]; - description = "Tools for manipulating sequence clusters"; - license = "GPL"; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "clutterhs" = - callPackage - ( - { - mkDerivation, - array, - base, - c2hs, - cairo, - clutter, - glib, - gtk, - haskell98, - mtl, - pango, - X11, - }: - mkDerivation { - pname = "clutterhs"; - version = "0.1"; - sha256 = "0mcl6pc0qjyijyqqlf1wh3548gn71kv6xy0jaqgrjddf20qlc8xl"; - libraryHaskellDepends = [ - array - base - cairo - glib - gtk - haskell98 - mtl - X11 - ]; - libraryPkgconfigDepends = [ - clutter - pango - ]; - libraryToolDepends = [ c2hs ]; - description = "Bindings to the Clutter animation library"; - license = "LGPL"; - hydraPlatforms = lib.platforms.none; - } - ) - { - inherit (pkgs) clutter; - inherit (pkgs) pango; - }; - "cmaes" = callPackage ( { mkDerivation, @@ -145760,35 +80533,6 @@ self: { } ) { }; - "cmark-highlight" = callPackage ( - { - mkDerivation, - base, - blaze-html, - cmark, - highlighting-kate, - text, - }: - mkDerivation { - pname = "cmark-highlight"; - version = "0.2.0.0"; - sha256 = "0aw1y0bl7ddvm4ai66x7apdijw6mza272ir8jkbdbz6k0gbrqxny"; - revision = "1"; - editedCabalFile = "1zdxr3bfj9bn2yclm5m17aa7wid6zwhvg6mj245wd2y34p696znw"; - libraryHaskellDepends = [ - base - blaze-html - cmark - highlighting-kate - text - ]; - description = "Code highlighting for cmark"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "cmark-lucid" = callPackage ( { mkDerivation, @@ -145812,168 +80556,6 @@ self: { } ) { }; - "cmark-patterns" = callPackage ( - { - mkDerivation, - base, - cmark, - }: - mkDerivation { - pname = "cmark-patterns"; - version = "0.1.0.0"; - sha256 = "15pdlcc0ak1pbx7qz6w5xfv4g9wkapx0flxqqkhcksa4k1h3hr1f"; - libraryHaskellDepends = [ - base - cmark - ]; - description = "Pattern synonyms for cmark"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "cmark-sections" = callPackage ( - { - mkDerivation, - base, - base-prelude, - cmark, - containers, - hspec, - microlens, - QuickCheck, - split, - text, - }: - mkDerivation { - pname = "cmark-sections"; - version = "0.3.0.1"; - sha256 = "0k8mv6fa2xzm3ppirhxr2l7vrq1jhb4mp20fdy2pliy4n93rfvlv"; - libraryHaskellDepends = [ - base - base-prelude - cmark - containers - microlens - split - text - ]; - testHaskellDepends = [ - base - base-prelude - cmark - containers - hspec - QuickCheck - text - ]; - description = "Represent cmark-parsed Markdown as a tree of sections"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "cmath" = callPackage ( - { mkDerivation, base }: - mkDerivation { - pname = "cmath"; - version = "0.3"; - sha256 = "1hb92cgblmwp49lv0x0ib8g557mhjk6db7ihnim75ldii2f93dnm"; - libraryHaskellDepends = [ base ]; - description = "A binding to the standard C math library"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "cmathml3" = callPackage ( - { - mkDerivation, - array, - arrowapply-utils, - base, - Cabal, - containers, - filepath, - hxt, - monads-tf, - parsec, - syb, - transformers, - url, - }: - mkDerivation { - pname = "cmathml3"; - version = "0.1"; - sha256 = "0mh6qzdlbfc1lfx7353p2qfa2j77xjlnnnnw3csmv125zha4y96d"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - array - arrowapply-utils - base - containers - hxt - monads-tf - parsec - syb - transformers - url - ]; - executableHaskellDepends = [ - base - Cabal - filepath - ]; - description = "Data model, parser, serialiser and transformations for Content MathML 3"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "mathtest"; - } - ) { }; - - "cmd-item" = callPackage ( - { - mkDerivation, - base, - containers, - hspec, - hspec-laws, - HUnit, - QuickCheck, - quickcheck-instances, - templater, - text, - }: - mkDerivation { - pname = "cmd-item"; - version = "0.0.1.0"; - sha256 = "1lawn0v32dn38xf3jaz70gks99llbq453zlf876pylinh5id7q62"; - libraryHaskellDepends = [ - base - containers - templater - text - ]; - testHaskellDepends = [ - base - hspec - hspec-laws - HUnit - QuickCheck - quickcheck-instances - text - ]; - description = "Library to compose and reuse command line fragments"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "cmdargs" = callPackage ( { mkDerivation, @@ -146075,82 +80657,6 @@ self: { } ) { }; - "cmdtheline" = callPackage ( - { - mkDerivation, - base, - containers, - directory, - filepath, - HUnit, - parsec, - pretty, - process, - test-framework, - test-framework-hunit, - transformers, - }: - mkDerivation { - pname = "cmdtheline"; - version = "0.2.3"; - sha256 = "1jwbr34xgccjbz6nm58bdsg1vqyv87rh45yia5j36vlfbaclyb04"; - libraryHaskellDepends = [ - base - containers - directory - filepath - parsec - pretty - process - transformers - ]; - testHaskellDepends = [ - base - containers - directory - filepath - HUnit - parsec - pretty - process - test-framework - test-framework-hunit - transformers - ]; - description = "Declarative command-line option parsing and documentation library"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "cmf" = callPackage ( - { - mkDerivation, - base, - containers, - hedgehog, - }: - mkDerivation { - pname = "cmf"; - version = "0.1"; - sha256 = "16d83x6qggifljm7n8sqlawy79iz7lkrb6vknrr825wa0zg1bc49"; - libraryHaskellDepends = [ - base - containers - ]; - testHaskellDepends = [ - base - containers - hedgehog - ]; - description = "(C)oncurrent (M)onoidal (F)olds"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "cml" = callPackage ( { mkDerivation, base }: mkDerivation { @@ -146163,157 +80669,6 @@ self: { } ) { }; - "cmonad" = callPackage ( - { - mkDerivation, - array, - base, - }: - mkDerivation { - pname = "cmonad"; - version = "0.1.1.1"; - sha256 = "07adwhpsmg3q4nhifjpdjv2dy1m08n0qkvlssmbl3b6gklvb82sk"; - libraryHaskellDepends = [ - array - base - ]; - description = "A library for C-like programming"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "cmph" = callPackage ( - { - mkDerivation, - array, - base, - bytestring, - cmph, - containers, - hspec, - QuickCheck, - semigroups, - text, - }: - mkDerivation { - pname = "cmph"; - version = "0.0.1"; - sha256 = "0g4jmkghbhssyigxjmw4d84pjc2h5smvsr16rnkvdmh39wlcl233"; - libraryHaskellDepends = [ - array - base - bytestring - containers - ]; - librarySystemDepends = [ cmph ]; - testHaskellDepends = [ - base - bytestring - containers - hspec - QuickCheck - semigroups - text - ]; - testSystemDepends = [ cmph ]; - description = "low level interface to CMPH"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { inherit (pkgs) cmph; }; - - "cmptype" = callPackage ( - { - mkDerivation, - base, - ghc, - magic-tyfams, - should-not-typecheck, - }: - mkDerivation { - pname = "cmptype"; - version = "0.2.0.0"; - sha256 = "0pkflrrwrwks7qjw3rpqnrk1k3p1dw4dq75cqzq12m356m3a2fpc"; - libraryHaskellDepends = [ - base - ghc - magic-tyfams - ]; - testHaskellDepends = [ - base - ghc - magic-tyfams - should-not-typecheck - ]; - description = "Compare types of any kinds"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "cmt" = callPackage ( - { - mkDerivation, - ansi-terminal, - attoparsec, - base, - classy-prelude, - containers, - directory, - file-embed, - filepath, - process, - tasty, - tasty-discover, - tasty-expected-failure, - tasty-hunit, - terminal-size, - text, - }: - mkDerivation { - pname = "cmt"; - version = "0.7.1.0"; - sha256 = "16nlsfah6gqx529nixjai6l1g6c02mjimz9n1xf7fr0vayp4a4dj"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - ansi-terminal - attoparsec - base - classy-prelude - containers - directory - file-embed - filepath - process - terminal-size - text - ]; - executableHaskellDepends = [ - base - classy-prelude - ]; - testHaskellDepends = [ - base - classy-prelude - file-embed - tasty - tasty-discover - tasty-expected-failure - tasty-hunit - ]; - testToolDepends = [ tasty-discover ]; - description = "Write consistent git commit messages"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "cmt"; - broken = true; - } - ) { }; - "cmu" = callPackage ( { mkDerivation, @@ -146343,155 +80698,6 @@ self: { } ) { }; - "cmv" = callPackage ( - { - mkDerivation, - aeson, - base, - BiobaseInfernal, - BiobaseTypes, - BiobaseXNA, - BioHMM, - bytestring, - cmdargs, - colour, - containers, - diagrams-cairo, - diagrams-core, - diagrams-lib, - directory, - either-unwrap, - filepath, - mtl, - parsec, - ParsecTools, - PrimitiveArray, - StockholmAlignment, - SVGFonts, - template-haskell, - text, - vector, - }: - mkDerivation { - pname = "cmv"; - version = "1.0.8"; - sha256 = "1l113yawclfpvhb5p3j6mhi3nqh8d1ix64k7d2q9slnvs3vdvphb"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - BiobaseInfernal - BiobaseTypes - BiobaseXNA - BioHMM - colour - containers - diagrams-cairo - diagrams-core - diagrams-lib - directory - either-unwrap - filepath - mtl - parsec - ParsecTools - PrimitiveArray - StockholmAlignment - SVGFonts - text - vector - ]; - executableHaskellDepends = [ - aeson - base - BiobaseInfernal - BiobaseXNA - BioHMM - bytestring - cmdargs - colour - containers - diagrams-lib - directory - either-unwrap - filepath - parsec - StockholmAlignment - template-haskell - text - vector - ]; - description = "Detailed visualization of CMs, HMMs and their comparisions"; - license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "cnc-spec-compiler" = callPackage ( - { - mkDerivation, - ansi-terminal, - array, - base, - binary, - bytestring, - containers, - directory, - fgl, - filepath, - graphviz, - HaXml, - haxr, - hubigraph, - HUnit, - mtl, - parsec, - pretty, - prettyclass, - process, - split, - stringtable-atom, - unix, - zlib, - }: - mkDerivation { - pname = "cnc-spec-compiler"; - version = "0.2.0.1"; - sha256 = "0nfqglz6szbi3s8xf5i87rnac7hc8cqfyrx2rs5ydb5i439s22b0"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - ansi-terminal - array - base - binary - bytestring - containers - directory - fgl - filepath - graphviz - HaXml - haxr - hubigraph - HUnit - mtl - parsec - pretty - prettyclass - process - split - stringtable-atom - unix - zlib - ]; - description = "Compiler/Translator for CnC Specification Files"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "cnc"; - } - ) { }; - "cndict" = callPackage ( { mkDerivation, @@ -146565,7 +80771,6 @@ self: { ]; description = "Hardware software co-design Feldspar"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; } ) { }; @@ -146875,55 +81080,6 @@ self: { } ) { }; - "co-log-sys" = callPackage ( - { - mkDerivation, - aeson, - base, - co-log-core, - fmt, - microlens, - monad-control, - mtl, - network, - universum, - unix, - }: - mkDerivation { - pname = "co-log-sys"; - version = "0.1.1.0"; - sha256 = "12qpbil3zzh7hy28fms4hc1pfmkf9bxqncimwz3mqys7gc3qzi3x"; - libraryHaskellDepends = [ - aeson - base - co-log-core - fmt - microlens - monad-control - mtl - network - universum - unix - ]; - testHaskellDepends = [ - aeson - base - co-log-core - fmt - microlens - monad-control - mtl - network - universum - unix - ]; - description = "Syslog implementation on top of 'co-log-core'"; - license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "coalpit" = callPackage ( { mkDerivation, @@ -147125,92 +81281,6 @@ self: { } ) { }; - "cobot-tools" = callPackage ( - { - mkDerivation, - array, - base, - bytestring, - cobot, - containers, - data-default, - data-msgpack, - deepseq, - hspec, - lens, - mtl, - neat-interpolation, - QuickCheck, - random, - regex-tdfa, - RNA, - text, - }: - mkDerivation { - pname = "cobot-tools"; - version = "0.1.2.3"; - sha256 = "1yvmxbh6si4k3ah5iikjx1fcx5vmsv3b2cvrnw3737d874g880nj"; - libraryHaskellDepends = [ - array - base - bytestring - cobot - containers - data-default - data-msgpack - deepseq - lens - mtl - regex-tdfa - text - ]; - librarySystemDepends = [ RNA ]; - testHaskellDepends = [ - array - base - bytestring - cobot - containers - data-default - data-msgpack - deepseq - hspec - lens - mtl - neat-interpolation - QuickCheck - random - regex-tdfa - text - ]; - description = "Biological data file formats and IO"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { RNA = null; }; - - "code-builder" = callPackage ( - { - mkDerivation, - base, - containers, - }: - mkDerivation { - pname = "code-builder"; - version = "0.1.3"; - sha256 = "1ax4c19xkszahcxvwc1wa1hrgk6ajck5sbprbplsi1gc9jj4g7jm"; - libraryHaskellDepends = [ - base - containers - ]; - description = "Simple system for generating code"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "code-conjure" = callPackage ( { mkDerivation, @@ -147255,58 +81325,6 @@ self: { } ) { }; - "codec" = callPackage ( - { - mkDerivation, - aeson, - base, - binary, - binary-bits, - bytestring, - generic-arbitrary, - mtl, - profunctors, - tasty, - tasty-quickcheck, - template-haskell, - text, - transformers, - unordered-containers, - vector, - }: - mkDerivation { - pname = "codec"; - version = "0.2.1"; - sha256 = "0a2vqaislh9jwqb5jr59s448456iawc4cs0b1c6dkhq8h6sn3hpz"; - libraryHaskellDepends = [ - aeson - base - binary - binary-bits - bytestring - mtl - profunctors - template-haskell - text - transformers - unordered-containers - vector - ]; - testHaskellDepends = [ - aeson - base - binary - bytestring - generic-arbitrary - tasty - tasty-quickcheck - ]; - description = "Simple bidirectional serialization"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "codec-beam" = callPackage ( { mkDerivation, @@ -147343,54 +81361,6 @@ self: { } ) { }; - "codec-libevent" = callPackage ( - { - mkDerivation, - array, - base, - binary, - binary-strict, - bytestring, - containers, - parsec, - QuickCheck, - regex-compat, - }: - mkDerivation { - pname = "codec-libevent"; - version = "0.1.2"; - sha256 = "17v7adxs65jq74ngid0iywg3p5pq5j2p9mznqwj7i53238l3p60l"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - array - base - binary - binary-strict - bytestring - containers - parsec - QuickCheck - regex-compat - ]; - executableHaskellDepends = [ - array - base - binary - binary-strict - bytestring - containers - parsec - QuickCheck - regex-compat - ]; - description = "Cross-platform structure serialisation"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "codec-libevent-generate"; - } - ) { }; - "codec-mbox" = callPackage ( { mkDerivation, @@ -147410,127 +81380,6 @@ self: { } ) { }; - "codec-rpm" = callPackage ( - { - mkDerivation, - attoparsec, - attoparsec-binary, - base, - bytestring, - conduit, - conduit-extra, - cpio-conduit, - exceptions, - hspec, - hspec-attoparsec, - HUnit, - lzma-conduit, - mtl, - parsec, - pretty, - resourcet, - text, - }: - mkDerivation { - pname = "codec-rpm"; - version = "0.2.2"; - sha256 = "15sbxns2p3fcc5gc8kf2jmjich6rnrimfl9rdjshi6y7ilvqhjx3"; - libraryHaskellDepends = [ - attoparsec - attoparsec-binary - base - bytestring - conduit - conduit-extra - cpio-conduit - exceptions - lzma-conduit - mtl - parsec - pretty - resourcet - text - ]; - testHaskellDepends = [ - attoparsec - attoparsec-binary - base - bytestring - hspec - hspec-attoparsec - HUnit - parsec - pretty - text - ]; - description = "A library for manipulating RPM files"; - license = lib.licenses.lgpl21Only; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "codecov-haskell" = callPackage ( - { - mkDerivation, - aeson, - async, - base, - bytestring, - cmdargs, - containers, - curl, - hpc, - HUnit, - process, - regex-posix, - retry, - safe, - split, - }: - mkDerivation { - pname = "codecov-haskell"; - version = "0.5.0"; - sha256 = "0g9m1z4qpjgyav8wa10cxdprsgf0b5ij430ql7jyw4sj20warhfg"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson - base - bytestring - cmdargs - containers - curl - hpc - retry - safe - split - ]; - executableHaskellDepends = [ - aeson - async - base - bytestring - cmdargs - containers - curl - hpc - process - regex-posix - retry - safe - split - ]; - testHaskellDepends = [ - base - HUnit - ]; - description = "Codecov.io support for Haskell."; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "codeforces-cli" = callPackage ( { mkDerivation, @@ -147607,78 +81456,6 @@ self: { } ) { }; - "codemonitor" = callPackage ( - { - mkDerivation, - base, - cairo, - containers, - directory, - filepath, - gtk, - haskell98, - hinotify, - MissingH, - process, - regex-posix, - time, - }: - mkDerivation { - pname = "codemonitor"; - version = "0.2"; - sha256 = "14jywd60mxbj5q1srxj4igs1ah0ddf8ww5k4n5d9g7cp1b1yv1mc"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - cairo - containers - directory - filepath - gtk - haskell98 - hinotify - MissingH - process - regex-posix - time - ]; - description = "Tool that automatically runs arbitrary commands when files change on disk"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "codemonitor"; - } - ) { }; - - "codepad" = callPackage ( - { - mkDerivation, - base, - curl, - mtl, - network, - tagsoup, - }: - mkDerivation { - pname = "codepad"; - version = "0.1"; - sha256 = "03jvbbv4cgrmk0ihz34shd1ydv5jhl1h1xiwqrln60622jlh8mr1"; - revision = "3"; - editedCabalFile = "11kw4xs61c5d3kvlanx9waws8sj5k4d5445a8w1p5zx69x9im7bg"; - libraryHaskellDepends = [ - base - curl - mtl - network - tagsoup - ]; - description = "Submit and retrieve paste output from CodePad.org."; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "codet" = callPackage ( { mkDerivation, @@ -147853,106 +81630,6 @@ self: { } ) { }; - "codex" = callPackage ( - { - mkDerivation, - ascii-progress, - base, - bytestring, - Cabal, - conduit, - containers, - cryptonite, - directory, - filepath, - hackage-db, - http-client, - http-client-tls, - memory, - network, - process, - tar, - text, - transformers, - yaml, - zlib, - }: - mkDerivation { - pname = "codex"; - version = "0.6.0.0"; - sha256 = "1xak07a2sn2fafrng53n8yksf6z73wn2r8paqymmc4385shhmndc"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - ascii-progress - base - bytestring - Cabal - conduit - containers - cryptonite - directory - filepath - hackage-db - http-client - memory - process - tar - text - transformers - yaml - zlib - ]; - executableHaskellDepends = [ - ascii-progress - base - Cabal - directory - filepath - hackage-db - http-client-tls - network - process - transformers - yaml - ]; - description = "A ctags file generator for cabal project dependencies"; - license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; - mainProgram = "codex"; - broken = true; - } - ) { }; - - "codo-notation" = callPackage ( - { - mkDerivation, - base, - comonad, - haskell-src-meta, - parsec, - template-haskell, - uniplate, - }: - mkDerivation { - pname = "codo-notation"; - version = "0.5.2"; - sha256 = "1bwfjg0bzph0vka1rx8m6f505l9dmj8nn6al9kmjkva18l05gsvq"; - libraryHaskellDepends = [ - base - comonad - haskell-src-meta - parsec - template-haskell - uniplate - ]; - description = "A notation for comonads, analogous to the do-notation for monads"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "coerce-role" = callPackage ( { mkDerivation, @@ -148044,429 +81721,26 @@ self: { editedCabalFile = "0swbc29c1c742d7pam2flv7xqqwis5df10657yvzms83mfg4lv6a"; libraryHaskellDepends = [ base ]; testHaskellDepends = [ base ]; - benchmarkHaskellDepends = [ - base - gauge - ]; - description = "Utility functions for Coercible types"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "coercion-extras" = callPackage ( - { - mkDerivation, - base, - containers, - }: - mkDerivation { - pname = "coercion-extras"; - version = "0.1.0.0"; - sha256 = "051gh93yncgclmi5i16rm07wg7v0zqz7s1q40h50vny39glsgwc7"; - libraryHaskellDepends = [ base ]; - testHaskellDepends = [ - base - containers - ]; - description = "Extra utilities for manipulating nominal and representational coercions"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "coformat" = callPackage ( - { - mkDerivation, - aeson, - async, - async-pool, - base, - bytestring, - can-i-haz, - command, - command-qq, - containers, - dom-selector, - extra, - fast-logger, - generic-data, - hashable, - html-conduit, - interpolate, - lens, - lens-aeson, - monad-logger, - mtl, - optparse-generic, - scientific, - temporary, - text, - unordered-containers, - xml-conduit, - yaml, - }: - mkDerivation { - pname = "coformat"; - version = "0.3.0.0"; - sha256 = "0bx7h5lbcyba3nwrif7b6rcpqskxqn81ana74ra8f43bjdvps4nw"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson - async - async-pool - base - bytestring - can-i-haz - command - command-qq - containers - dom-selector - extra - fast-logger - generic-data - hashable - html-conduit - interpolate - lens - lens-aeson - monad-logger - mtl - optparse-generic - scientific - temporary - text - unordered-containers - xml-conduit - yaml - ]; - executableHaskellDepends = [ - aeson - async - async-pool - base - bytestring - can-i-haz - command - command-qq - containers - dom-selector - extra - fast-logger - generic-data - hashable - html-conduit - interpolate - lens - lens-aeson - monad-logger - mtl - optparse-generic - scientific - temporary - text - unordered-containers - xml-conduit - yaml - ]; - testHaskellDepends = [ - aeson - async - async-pool - base - bytestring - can-i-haz - command - command-qq - containers - dom-selector - extra - fast-logger - generic-data - hashable - html-conduit - interpolate - lens - lens-aeson - monad-logger - mtl - optparse-generic - scientific - temporary - text - unordered-containers - xml-conduit - yaml - ]; - description = "Generate clang-format config based on some existing code base"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "coformat-exe"; - } - ) { }; - - "cofunctor" = callPackage ( - { mkDerivation, base }: - mkDerivation { - pname = "cofunctor"; - version = "0.1.0.1"; - sha256 = "0xn4k1c7l9z3g0slbwvlfg9kpfq8jbk0qf9363qz7azv7ks1149p"; - libraryHaskellDepends = [ base ]; - description = "DEPRECATED: use the \"contravariant\" package"; - license = lib.licenses.bsd3; - } - ) { }; - - "cognimeta-utils" = callPackage ( - { - mkDerivation, - array, - base, - bytestring, - collections-api, - comonad-transformers, - containers, - data-lens, - data-lens-fd, - data-lens-template, - deepseq, - ghc-prim, - mtl, - primitive, - QuickCheck, - stm, - tagged, - template-haskell, - transformers, - }: - mkDerivation { - pname = "cognimeta-utils"; - version = "0.1.2"; - sha256 = "00bq5qad7x8x0fac1gb8aq97zm4pylnk7n9bg4nkhyyvwnmjsy5l"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - array - base - bytestring - collections-api - comonad-transformers - containers - data-lens - data-lens-fd - data-lens-template - deepseq - ghc-prim - mtl - primitive - QuickCheck - stm - tagged - template-haskell - transformers - ]; - executableHaskellDepends = [ - base - bytestring - containers - mtl - QuickCheck - template-haskell - transformers - ]; - description = "Utilities for Cognimeta products (such as perdure). API may change often."; - license = "unknown"; - hydraPlatforms = lib.platforms.none; - mainProgram = "cognimeta-utils"; - } - ) { }; - - "coin" = callPackage ( - { - mkDerivation, - aeson, - base, - binary, - bytestring, - containers, - directory, - filepath, - glib, - gtk3, - lens, - monad-control, - monad-logger, - mtl, - persistent, - persistent-sqlite, - persistent-template, - resourcet, - text, - time, - transformers, - }: - mkDerivation { - pname = "coin"; - version = "1.2.1"; - sha256 = "0076dvka5c0m3smppp58lklnf26ry9kibzyiy4yx1ygw5rn7m7pc"; - isLibrary = false; - isExecutable = true; - enableSeparateDataOutput = true; - executableHaskellDepends = [ - aeson - base - binary - bytestring - containers - directory - filepath - glib - gtk3 - lens - monad-control - monad-logger - mtl - persistent - persistent-sqlite - persistent-template - resourcet - text - time - transformers - ]; - description = "Simple account manager"; - license = "GPL"; - hydraPlatforms = lib.platforms.none; - mainProgram = "coin"; - broken = true; - } - ) { }; - - "coinbase-exchange" = callPackage ( - { - mkDerivation, - aeson, - aeson-casing, - async, - base, - base64-bytestring, - byteable, - bytestring, - conduit, - conduit-extra, - cryptohash, - deepseq, - exceptions, - hashable, - http-client, - http-client-tls, - http-conduit, - http-types, - mtl, - network, - old-locale, - random, - resourcet, - scientific, - tasty, - tasty-hunit, - tasty-quickcheck, - tasty-th, - text, - time, - transformers, - transformers-base, - unordered-containers, - uuid, - uuid-aeson, - vector, - websockets, - wuss, - }: - mkDerivation { - pname = "coinbase-exchange"; - version = "0.4.0.0"; - sha256 = "0592myr7z3yggbpjcanzivvdzkb06pr9il6bsgjc2fcfaggw5j4p"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson - aeson-casing - base - base64-bytestring - byteable - bytestring - conduit - conduit-extra - cryptohash - deepseq - exceptions - hashable - http-conduit - http-types - mtl - network - old-locale - resourcet - scientific - text - time - transformers-base - unordered-containers - uuid - uuid-aeson - vector - websockets - wuss - ]; - executableHaskellDepends = [ - aeson - base - bytestring - conduit - conduit-extra - http-client - http-client-tls - http-conduit - network - old-locale - resourcet - scientific - text - time - transformers - unordered-containers - uuid - websockets - wuss - ]; - testHaskellDepends = [ - aeson - async - base - bytestring - http-client-tls - http-conduit - old-locale - random - scientific - tasty - tasty-hunit - tasty-quickcheck - tasty-th - time - transformers - unordered-containers - uuid - websockets + benchmarkHaskellDepends = [ + base + gauge ]; - description = "Connector library for the coinbase exchange"; - license = lib.licenses.mit; + description = "Utility functions for Coercible types"; + license = lib.licenses.bsd3; hydraPlatforms = lib.platforms.none; - mainProgram = "sandbox"; + broken = true; + } + ) { }; + + "cofunctor" = callPackage ( + { mkDerivation, base }: + mkDerivation { + pname = "cofunctor"; + version = "0.1.0.1"; + sha256 = "0xn4k1c7l9z3g0slbwvlfg9kpfq8jbk0qf9363qz7azv7ks1149p"; + libraryHaskellDepends = [ base ]; + description = "DEPRECATED: use the \"contravariant\" package"; + license = lib.licenses.bsd3; } ) { }; @@ -148779,111 +82053,6 @@ self: { } ) { }; - "colada" = callPackage ( - { - mkDerivation, - base, - bytestring, - cereal, - cmdargs, - containers, - fclabels, - ghc-prim, - ListZipper, - monad-atom, - mtl, - nlp-scores, - split, - swift-lda, - text, - vector, - }: - mkDerivation { - pname = "colada"; - version = "0.8.4.0"; - sha256 = "16inmr2hp2racg85crrpwd45p1wgjhcp7w242nixc8dlwdy1lkz3"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - bytestring - cereal - cmdargs - containers - fclabels - ghc-prim - ListZipper - monad-atom - mtl - nlp-scores - split - swift-lda - text - vector - ]; - executableHaskellDepends = [ - base - bytestring - cereal - cmdargs - containers - fclabels - ghc-prim - ListZipper - monad-atom - mtl - nlp-scores - split - swift-lda - text - vector - ]; - description = "Colada implements incremental word class class induction using online LDA"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "colada"; - } - ) { }; - - "colchis" = callPackage ( - { - mkDerivation, - aeson, - base, - conceit, - network, - network-simple, - pipes, - pipes-aeson, - pipes-attoparsec, - pipes-network, - text, - transformers, - }: - mkDerivation { - pname = "colchis"; - version = "0.2.0.3"; - sha256 = "1fhamxm740r59q0sazs2np1b8hv74dhhbb4ah73m94im96729rbb"; - libraryHaskellDepends = [ - aeson - base - conceit - network - network-simple - pipes - pipes-aeson - pipes-attoparsec - pipes-network - text - transformers - ]; - description = "Rudimentary JSON-RPC 2.0 client over raw TCP."; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "cold-widow" = callPackage ( { mkDerivation, @@ -148915,40 +82084,6 @@ self: { } ) { }; - "collada-output" = callPackage ( - { - mkDerivation, - base, - collada-types, - containers, - SVGPath, - time, - vector, - xml, - }: - mkDerivation { - pname = "collada-output"; - version = "0.6"; - sha256 = "1k6k2ljz9x06j0nrpbbpcgd3axamf3cgr6jyslam0xkgxzsi7w7x"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - collada-types - containers - SVGPath - time - vector - xml - ]; - description = "Generate animated 3d objects in COLLADA"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "Examples"; - broken = true; - } - ) { }; - "collada-types" = callPackage ( { mkDerivation, @@ -148974,67 +82109,6 @@ self: { } ) { }; - "collapse-duplication" = callPackage ( - { - mkDerivation, - base, - bytestring, - bytestring-show, - cassava, - containers, - hierarchical-clustering, - lens, - optparse-generic, - split, - }: - mkDerivation { - pname = "collapse-duplication"; - version = "0.4.0.1"; - sha256 = "0azfyayvlw6vmgim98rsmgz5gx2dmwnbk9dwmm23781wdbm448a5"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - bytestring - bytestring-show - cassava - containers - hierarchical-clustering - lens - ]; - executableHaskellDepends = [ - base - bytestring - cassava - containers - lens - optparse-generic - split - ]; - description = "Collapse the duplication output into clones and return their frequencies"; - license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - mainProgram = "collapse-duplication"; - } - ) { }; - - "collapse-util" = callPackage ( - { mkDerivation, base }: - mkDerivation { - pname = "collapse-util"; - version = "0.1.0.1"; - sha256 = "02r4cz92wjm3hcih8jf5jvimw3ijwbp4x7iw90rkj05360ajikj7"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ base ]; - description = "utility for collapsing adjacent writes"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "collapse"; - broken = true; - } - ) { }; - "collate" = callPackage ( { mkDerivation, @@ -149103,131 +82177,6 @@ self: { } ) { }; - "collection-json" = callPackage ( - { - mkDerivation, - aeson, - base, - bytestring, - hspec, - hspec-discover, - network-arbitrary, - network-uri, - network-uri-json, - QuickCheck, - quickcheck-instances, - test-invariant, - text, - }: - mkDerivation { - pname = "collection-json"; - version = "1.3.1.3"; - sha256 = "098in13gkrv4lrdn67b010c5wsl0zqwzcyfd504039wdcm6pazng"; - libraryHaskellDepends = [ - aeson - base - network-uri - network-uri-json - text - ]; - testHaskellDepends = [ - aeson - base - bytestring - hspec - network-arbitrary - network-uri - network-uri-json - QuickCheck - quickcheck-instances - test-invariant - text - ]; - testToolDepends = [ hspec-discover ]; - description = "Collection+JSON—Hypermedia Type Tools"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "collections" = callPackage ( - { - mkDerivation, - array, - base, - bytestring, - containers, - QuickCheck, - }: - mkDerivation { - pname = "collections"; - version = "0.3.1.1"; - sha256 = "0a5km8k2jwjv4gfd2vf0jiq3f9cw47dgz8f3lspmpx2b0g2pac7g"; - libraryHaskellDepends = [ - array - base - bytestring - containers - QuickCheck - ]; - description = "Useful standard collections types and related functions"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "collections-api" = callPackage ( - { - mkDerivation, - array, - base, - QuickCheck, - }: - mkDerivation { - pname = "collections-api"; - version = "1.0.0.0"; - sha256 = "0vgw1spiv6wnk11j3y45d95r3axgr1sgksb5lilnxdjj2pn4gp5l"; - revision = "2"; - editedCabalFile = "073x7vwgsj2xcqpywqdwk7pbj9zc9sinm17sknafgyxacx1r15xl"; - libraryHaskellDepends = [ - array - base - QuickCheck - ]; - description = "API for collection data structures"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "collections-base-instances" = callPackage ( - { - mkDerivation, - array, - base, - bytestring, - collections-api, - containers, - }: - mkDerivation { - pname = "collections-base-instances"; - version = "1.0.0.0"; - sha256 = "0nw6wpzqsj33pnffsflc6ipjcx6lknzdnxgn4rm3vhrl5y9rgpzk"; - libraryHaskellDepends = [ - array - base - bytestring - collections-api - containers - ]; - description = "Useful standard collections types and related functions"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "colock" = callPackage ( { mkDerivation, @@ -149293,69 +82242,6 @@ self: { } ) { }; - "color-counter" = callPackage ( - { - mkDerivation, - aeson, - base, - cmdargs, - colour, - containers, - data-default, - directory, - friday, - friday-devil, - split, - v4l2, - vector, - vector-space, - yaml, - }: - mkDerivation { - pname = "color-counter"; - version = "0.1.2.2"; - sha256 = "0vyzjv5r9jww4n35yp9qmq5bb8h7k6gmr7iw6igm08cnlwx9pirr"; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - aeson - base - colour - containers - data-default - directory - friday - friday-devil - split - v4l2 - vector - vector-space - yaml - ]; - executableHaskellDepends = [ - aeson - base - cmdargs - colour - containers - data-default - directory - friday - friday-devil - split - v4l2 - vector - vector-space - yaml - ]; - description = "Count colors in images"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - mainProgram = "color-counter"; - } - ) { }; - "colorful-monoids" = callPackage ( { mkDerivation, base }: mkDerivation { @@ -149419,129 +82305,6 @@ self: { } ) { }; - "colorless" = callPackage ( - { - mkDerivation, - aeson, - base, - bytestring, - containers, - errors, - exceptions, - hspec, - lifted-async, - monad-control, - monad-logger, - mtl, - random, - safe-exceptions, - scientific, - text, - text-conversions, - tuple, - unordered-containers, - vector, - }: - mkDerivation { - pname = "colorless"; - version = "2.2.20"; - sha256 = "1wg0p06bvp6zvnc8qi9k942l1ijzcnksmd6jxnk0c7v9f2kdnib2"; - libraryHaskellDepends = [ - aeson - base - bytestring - containers - errors - exceptions - lifted-async - monad-control - monad-logger - mtl - random - safe-exceptions - scientific - text - text-conversions - unordered-containers - vector - ]; - testHaskellDepends = [ - aeson - base - containers - hspec - scientific - text - tuple - vector - ]; - description = "Colorless | The Programmatic IDL"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "colorless-http-client" = callPackage ( - { - mkDerivation, - aeson, - base, - bytestring, - colorless, - http-client, - http-types, - text-conversions, - }: - mkDerivation { - pname = "colorless-http-client"; - version = "0.0.4"; - sha256 = "1mncp7qsb99s4kwyd3z3xrmypb7wjdkkr8jpxaip2892z4n52l22"; - libraryHaskellDepends = [ - aeson - base - bytestring - colorless - http-client - http-types - text-conversions - ]; - description = "Http Client addon for Colorless"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "colorless-scotty" = callPackage ( - { - mkDerivation, - aeson, - base, - colorless, - mtl, - scotty, - text, - wai, - }: - mkDerivation { - pname = "colorless-scotty"; - version = "0.0.2"; - sha256 = "1jbdysm2ya5h5hw0s8149vi6wcnr98wh53iwyhmygdg0hz25nslk"; - libraryHaskellDepends = [ - aeson - base - colorless - mtl - scotty - text - wai - ]; - description = "Scotty server add-on for Colorless"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "colors" = callPackage ( { mkDerivation, @@ -149736,96 +82499,6 @@ self: { } ) { }; - "coltrane" = callPackage ( - { - mkDerivation, - base, - bytestring, - HTTP, - http-types, - HUnit, - mtl, - regex-compat, - text, - wai, - wai-extra, - warp, - }: - mkDerivation { - pname = "coltrane"; - version = "0.1.0.0"; - sha256 = "131arfizyniapjvc9ds6l90z7gig98imhm17k1vza5wvgjqbb5fa"; - libraryHaskellDepends = [ - base - bytestring - HTTP - http-types - HUnit - mtl - regex-compat - text - wai - wai-extra - warp - ]; - description = "A jazzy, minimal web framework for Haskell, inspired by Sinatra"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "columbia" = callPackage ( - { - mkDerivation, - array, - base, - bytestring, - containers, - contravariant, - data-endian, - directory, - filelock, - invariant, - mmap, - mmorph, - monad-loops, - mtl, - parallel, - pointless-haskell, - syb-with-class, - transformers, - }: - mkDerivation { - pname = "columbia"; - version = "0.2"; - sha256 = "065mrgyrb82vsfwwidz3zsj7pnbry9ifz7fspi2jfmyjp69y7cmz"; - libraryHaskellDepends = [ - array - base - bytestring - containers - contravariant - data-endian - directory - filelock - invariant - mmap - mmorph - monad-loops - mtl - parallel - pointless-haskell - syb-with-class - transformers - ]; - doHaddock = false; - description = "Enhanced serialization using seeking"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "columnar" = callPackage ( { mkDerivation, @@ -149882,39 +82555,6 @@ self: { } ) { }; - "comark" = callPackage ( - { - mkDerivation, - base, - comark-html, - comark-parser, - comark-syntax, - text, - }: - mkDerivation { - pname = "comark"; - version = "0.1.0"; - sha256 = "0kkwjz7ycszg4dg7cpcvfv86qm61vzipy55qran9i792psa0rcd0"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - comark-html - comark-parser - comark-syntax - text - ]; - executableHaskellDepends = [ - base - text - ]; - description = "Commonmark processing in pure haskell"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "comark-hs"; - } - ) { }; - "comark-html" = callPackage ( { mkDerivation, @@ -150021,29 +82661,6 @@ self: { } ) { comark-testutils = null; }; - "comark-syntax" = callPackage ( - { - mkDerivation, - base, - containers, - deepseq, - }: - mkDerivation { - pname = "comark-syntax"; - version = "0.1.0"; - sha256 = "0y1fp6griivzzxwp621cm2mrizxmrnjazhayl21aqfp7mb5i4ib2"; - libraryHaskellDepends = [ - base - containers - deepseq - ]; - description = "Definitions of AST that represents a Commonmark (markdown) document"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "combinat" = callPackage ( { mkDerivation, @@ -150093,130 +82710,6 @@ self: { } ) { }; - "combinat-compat" = callPackage ( - { - mkDerivation, - array, - base, - containers, - QuickCheck, - random, - test-framework, - test-framework-quickcheck2, - transformers, - }: - mkDerivation { - pname = "combinat-compat"; - version = "0.2.8.2"; - sha256 = "0mh5f8vmbwnib1qv9vvp45gwwj6942l1jhxnglq9i4za40k1r8ff"; - libraryHaskellDepends = [ - array - base - containers - random - transformers - ]; - testHaskellDepends = [ - array - base - containers - QuickCheck - random - test-framework - test-framework-quickcheck2 - transformers - ]; - description = "Generate and manipulate various combinatorial objects"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "combinat-diagrams" = callPackage ( - { - mkDerivation, - array, - base, - colour, - combinat, - containers, - diagrams-core, - diagrams-lib, - linear, - transformers, - }: - mkDerivation { - pname = "combinat-diagrams"; - version = "0.2"; - sha256 = "0jm9846xna4kcxrqb3izw3sc93z0k21r4vqk8n55i4lcdh9g1j3h"; - libraryHaskellDepends = [ - array - base - colour - combinat - containers - diagrams-core - diagrams-lib - linear - transformers - ]; - description = "Graphical representations for various combinatorial objects"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "combinator-interactive" = callPackage ( - { - mkDerivation, - base, - bytestring, - cereal, - containers, - directory, - lens, - mtl, - template-haskell, - th-lift, - trifecta, - void, - }: - mkDerivation { - pname = "combinator-interactive"; - version = "0.1.2"; - sha256 = "0yxdy413pj6ah4d5qcpajbphfg02p0gxgs1x9salfa18fyflljc4"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - lens - template-haskell - th-lift - trifecta - void - ]; - executableHaskellDepends = [ - base - bytestring - cereal - containers - directory - lens - mtl - template-haskell - th-lift - trifecta - void - ]; - description = "SKI Combinator interpreter"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "lazyi"; - broken = true; - } - ) { }; - "combinatorial" = callPackage ( { mkDerivation, @@ -150258,37 +82751,6 @@ self: { } ) { }; - "combinatorial-problems" = callPackage ( - { - mkDerivation, - array, - base, - bytestring, - bytestring-lexing, - containers, - parsec, - random, - }: - mkDerivation { - pname = "combinatorial-problems"; - version = "0.0.5"; - sha256 = "1k3isi62i66xbisn48b018w7fcfhwwng1f64ca530qkk600fg850"; - libraryHaskellDepends = [ - array - base - bytestring - bytestring-lexing - containers - parsec - random - ]; - description = "A number of data structures to represent and allow the manipulation of standard combinatorial problems, used as test problems in computer science"; - license = "GPL"; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "combinatorics" = callPackage ( { mkDerivation, base }: mkDerivation { @@ -150320,33 +82782,6 @@ self: { } ) { }; - "combobuffer" = callPackage ( - { - mkDerivation, - base, - containers, - template-haskell, - vector, - vector-space, - }: - mkDerivation { - pname = "combobuffer"; - version = "0.2"; - sha256 = "1zsdi9c9my6nrxpqqsy584swp4zg8lckrymfig1ywisbdfzb8rjh"; - libraryHaskellDepends = [ - base - containers - template-haskell - vector - vector-space - ]; - description = "Various buffer implementations"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "comfort-array" = callPackage ( { mkDerivation, @@ -150802,39 +83237,6 @@ self: { } ) { }; - "commander" = callPackage ( - { - mkDerivation, - base, - containers, - mtl, - transformers, - }: - mkDerivation { - pname = "commander"; - version = "0.1.0.0"; - sha256 = "09glhq3xr3pz3mzrx5jcnv2p0hbnxzq0ld083iang6qw0wb4kymc"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - containers - mtl - transformers - ]; - executableHaskellDepends = [ - base - containers - ]; - testHaskellDepends = [ base ]; - description = "pattern matching against string based commands"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "example1"; - broken = true; - } - ) { }; - "commander-cli" = callPackage ( { mkDerivation, @@ -150908,81 +83310,6 @@ self: { } ) { }; - "commodities" = callPackage ( - { - mkDerivation, - base, - comonad, - containers, - directory, - distributive, - doctest, - failure, - filepath, - hspec, - hspec-expectations, - keys, - lens, - linear, - mtl, - numbers, - parsers, - PSQueue, - QuickCheck, - semigroupoids, - semigroups, - split, - text, - thyme, - transformers, - trifecta, - }: - mkDerivation { - pname = "commodities"; - version = "0.2.0.1"; - sha256 = "0c4i0n64w2918282ih8jpp23avjcjhnwvn3r016z3xmcqp1z4n7s"; - libraryHaskellDepends = [ - base - comonad - containers - distributive - failure - keys - lens - linear - mtl - numbers - parsers - PSQueue - semigroupoids - semigroups - split - text - thyme - transformers - trifecta - ]; - testHaskellDepends = [ - base - containers - directory - doctest - filepath - hspec - hspec-expectations - lens - QuickCheck - semigroups - thyme - transformers - ]; - description = "Library for working with commoditized amounts and price histories"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "commonmark" = callPackage ( { mkDerivation, @@ -151276,72 +83603,6 @@ self: { } ) { }; - "commsec" = callPackage ( - { - mkDerivation, - base, - bytestring, - cipher-aes128, - crypto-api, - network, - }: - mkDerivation { - pname = "commsec"; - version = "0.3.5"; - sha256 = "1lshp876qm29370mpa3bh0gijcv317sf1y8vajixzz1083bkpngm"; - libraryHaskellDepends = [ - base - bytestring - cipher-aes128 - crypto-api - network - ]; - description = "Provide communications security using symmetric ephemeral keys"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "commsec-keyexchange" = callPackage ( - { - mkDerivation, - base, - bytestring, - cereal, - cipher-aes128, - commsec, - crypto-api, - crypto-pubkey-types, - cryptohash-cryptoapi, - DRBG, - monadcryptorandom, - network, - RSA, - }: - mkDerivation { - pname = "commsec-keyexchange"; - version = "0.3.3"; - sha256 = "1c207fv429frkyb742n0r1z0kkvlwnkcxblfkrjm1lwqfkdx0prn"; - libraryHaskellDepends = [ - base - bytestring - cereal - cipher-aes128 - commsec - crypto-api - crypto-pubkey-types - cryptohash-cryptoapi - DRBG - monadcryptorandom - network - RSA - ]; - description = "Key agreement for commsec"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "commutative" = callPackage ( { mkDerivation, @@ -151432,59 +83693,6 @@ self: { } ) { }; - "comonad-extras" = callPackage ( - { - mkDerivation, - array, - base, - comonad, - containers, - distributive, - semigroupoids, - transformers, - }: - mkDerivation { - pname = "comonad-extras"; - version = "4.0.1"; - sha256 = "1vsxxgqsiizprm2xxjks1n77mlx5rb9ybx36ag49fkzyb01rbb34"; - libraryHaskellDepends = [ - array - base - comonad - containers - distributive - semigroupoids - transformers - ]; - description = "Exotic comonad transformers"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "comonad-random" = callPackage ( - { - mkDerivation, - base, - category-extras, - random, - }: - mkDerivation { - pname = "comonad-random"; - version = "0.1.2"; - sha256 = "11jak28rpnnaswrlf2wgn91v096zkz1laq2cdhjfc7abgmkx9gay"; - libraryHaskellDepends = [ - base - category-extras - random - ]; - description = "Comonadic interface for random values"; - license = "unknown"; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "comonad-transformers" = callPackage ( { mkDerivation, @@ -151676,240 +83884,6 @@ self: { } ) { }; - "compact-list" = callPackage ( - { - mkDerivation, - base, - ghc-prim, - }: - mkDerivation { - pname = "compact-list"; - version = "0.1.0"; - sha256 = "0mg2s7mm908gy5j958abmiylfc05fs4y08dcjz4805ayi9cb1qqd"; - libraryHaskellDepends = [ - base - ghc-prim - ]; - testHaskellDepends = [ base ]; - description = "An append only list in a compact region"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "compact-map" = callPackage ( - { - mkDerivation, - array, - base, - binary, - bytestring, - containers, - }: - mkDerivation { - pname = "compact-map"; - version = "2008.11.9"; - sha256 = "0rk2g5swblbbairwabv5azp6a7cjqywhv49prm1rz8mc361dd9by"; - libraryHaskellDepends = [ - array - base - binary - bytestring - containers - ]; - description = "Compact Data.Map implementation using Data.Binary"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "compact-mutable" = callPackage ( - { - mkDerivation, - base, - containers, - ghc-compact, - ghc-prim, - prim-array, - primitive, - transformers, - }: - mkDerivation { - pname = "compact-mutable"; - version = "0.1"; - sha256 = "0xc28aflb8cs8cbvp2mimswh0nflwpvzwlrh2dvqsq3qx02cvh36"; - libraryHaskellDepends = [ - base - ghc-compact - ghc-prim - prim-array - primitive - ]; - testHaskellDepends = [ - base - containers - ghc-compact - ghc-prim - prim-array - primitive - transformers - ]; - description = "Mutable arrays living on the compact heap"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "compact-mutable-vector" = callPackage ( - { - mkDerivation, - base, - compact, - ghc-prim, - hspec, - primitive, - vector, - }: - mkDerivation { - pname = "compact-mutable-vector"; - version = "0.0.0.1"; - sha256 = "1plz7rwn66r3b03hn60gsh8w5wk8hgzj0g3hdnc36f2rrav4n7mj"; - libraryHaskellDepends = [ - base - compact - ghc-prim - primitive - vector - ]; - testHaskellDepends = [ - base - compact - hspec - ]; - description = "Mutable vector with different GC characteristics"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "compact-sequences" = callPackage ( - { - mkDerivation, - base, - mtl, - primitive, - QuickCheck, - tasty, - tasty-quickcheck, - transformers, - }: - mkDerivation { - pname = "compact-sequences"; - version = "0.2.0.0"; - sha256 = "0v7s99d7syspgc8z8mhdykyrsjyx0r0vjyf64plidndld2zg0swn"; - libraryHaskellDepends = [ - base - mtl - primitive - transformers - ]; - testHaskellDepends = [ - base - QuickCheck - tasty - tasty-quickcheck - ]; - description = "Stacks, queues, and deques with compact representations"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "compact-socket" = callPackage ( - { - mkDerivation, - base, - binary, - bytestring, - compact, - deepseq, - directory, - filepath, - network, - unix, - }: - mkDerivation { - pname = "compact-socket"; - version = "0.1.0.0"; - sha256 = "0fzfr70nq9n1gfxd4swj1zm5dnr9ynqmwbgy2g0fnfh1sc4fwn77"; - libraryHaskellDepends = [ - base - binary - bytestring - compact - deepseq - directory - filepath - network - unix - ]; - description = "Socket functions for compact normal form"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "compact-string" = callPackage ( - { - mkDerivation, - base, - bytestring, - }: - mkDerivation { - pname = "compact-string"; - version = "0.3.1"; - sha256 = "02lqxl82jmw276mzxwsc0gmps1kb5i62im85bpjvzqwycbf3gnj8"; - revision = "1"; - editedCabalFile = "03cw0x4dg0qwaysf2sndyzm27sva6x415dxd70fs2vcbys5m1j8j"; - libraryHaskellDepends = [ - base - bytestring - ]; - description = "Fast, packed and strict strings with Unicode support, based on bytestrings"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "compact-string-fix" = callPackage ( - { - mkDerivation, - base, - bytestring, - }: - mkDerivation { - pname = "compact-string-fix"; - version = "0.3.2"; - sha256 = "161z0lmrrqvy77ppdgz7m6nazcmlmy1azxa8rx0cgpqmyxzkf87n"; - revision = "1"; - editedCabalFile = "1akx1kzpirl1fc3lfcrsa88jvrk023f9qyj2b2fbpz4p11d07qfc"; - libraryHaskellDepends = [ - base - bytestring - ]; - description = "Same as compact-string except with a small fix so it builds on ghc-6.12"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "compact-word-vectors" = callPackage ( { mkDerivation, @@ -152212,53 +84186,6 @@ self: { } ) { }; - "compdata-dags" = callPackage ( - { - mkDerivation, - base, - compdata, - containers, - HUnit, - mtl, - QuickCheck, - test-framework, - test-framework-hunit, - test-framework-quickcheck2, - unordered-containers, - vector, - }: - mkDerivation { - pname = "compdata-dags"; - version = "0.2.1"; - sha256 = "0h2ijhwpxv4bzfz81zhvhi7f42slzqsxawgqd9swk4kmqqzlfr58"; - libraryHaskellDepends = [ - base - compdata - containers - mtl - unordered-containers - vector - ]; - testHaskellDepends = [ - base - compdata - containers - HUnit - mtl - QuickCheck - test-framework - test-framework-hunit - test-framework-quickcheck2 - unordered-containers - vector - ]; - description = "Compositional Data Types on DAGs"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "compdata-fixplate" = callPackage ( { mkDerivation, @@ -152286,48 +84213,6 @@ self: { } ) { }; - "compdata-param" = callPackage ( - { - mkDerivation, - base, - compdata, - containers, - HUnit, - mtl, - template-haskell, - test-framework, - test-framework-hunit, - transformers, - }: - mkDerivation { - pname = "compdata-param"; - version = "0.9.2"; - sha256 = "1cfs7q6pw642dg1xjibrsvpkw1bg15g9lmj70y25xka192d9c2w2"; - libraryHaskellDepends = [ - base - compdata - mtl - template-haskell - transformers - ]; - testHaskellDepends = [ - base - compdata - containers - HUnit - mtl - template-haskell - test-framework - test-framework-hunit - transformers - ]; - description = "Parametric Compositional Data Types"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "compdoc" = callPackage ( { mkDerivation, @@ -152362,7 +84247,6 @@ self: { ]; description = "Parse a Pandoc to a composite value"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; } ) { }; @@ -152396,7 +84280,6 @@ self: { ]; description = "Allows you to write FromDhall instances for Compdoc"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; } ) { }; @@ -152485,50 +84368,6 @@ self: { } ) { }; - "competition" = callPackage ( - { - mkDerivation, - base, - filepath, - parsec, - }: - mkDerivation { - pname = "competition"; - version = "0.2.0.0"; - sha256 = "07c6b6yai8x9i8qndimzmyp5bzhwckis8kg207n152gnskk7i3zn"; - libraryHaskellDepends = [ - base - filepath - parsec - ]; - description = "Helpers and runners for code competitions"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "compilation" = callPackage ( - { - mkDerivation, - base, - MissingH, - }: - mkDerivation { - pname = "compilation"; - version = "0.0.0.3"; - sha256 = "0a1pp1jafra1agsx2jizdb33afzg02w6jh4a4pyw5w71kzqfrril"; - libraryHaskellDepends = [ - base - MissingH - ]; - description = "Haskell functionality for quickly assembling simple compilers"; - license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "compiler-warnings" = callPackage ( { mkDerivation, @@ -152566,29 +84405,6 @@ self: { } ) { }; - "complex-generic" = callPackage ( - { - mkDerivation, - base, - template-haskell, - }: - mkDerivation { - pname = "complex-generic"; - version = "0.1.1.1"; - sha256 = "03wb599difj0qm1dpzgxdymq3bql69qmkdk5fspcyc19nnd5qlqz"; - revision = "4"; - editedCabalFile = "00v0mr5fc090wph3s9ks3ppf81nqbkd0yfa347fkn3zrq3daqr8f"; - libraryHaskellDepends = [ - base - template-haskell - ]; - description = "complex numbers with non-mandatory RealFloat"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "complex-integrate" = callPackage ( { mkDerivation, base }: mkDerivation { @@ -152601,40 +84417,6 @@ self: { } ) { }; - "complexity" = callPackage ( - { - mkDerivation, - base, - Chart, - colour, - data-accessor, - hstats, - parallel, - pretty, - time, - transformers, - }: - mkDerivation { - pname = "complexity"; - version = "0.1.3"; - sha256 = "16crk93qyh0arcgqq2bx0i61cah2yhm8wwdr6sasma8y5hlw76lj"; - libraryHaskellDepends = [ - base - Chart - colour - data-accessor - hstats - parallel - pretty - time - transformers - ]; - description = "Empirical algorithmic complexity"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "componentm" = callPackage ( { mkDerivation, @@ -152790,27 +84572,6 @@ self: { } ) { }; - "compose-trans" = callPackage ( - { - mkDerivation, - base, - mtl, - }: - mkDerivation { - pname = "compose-trans"; - version = "0.1"; - sha256 = "0p2fd0knfbfjk4s0aalzrsrzpxffrykmaprxyakbgs1lmp4jyq9z"; - libraryHaskellDepends = [ - base - mtl - ]; - description = "Composable monad transformers"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "composite-aeson" = callPackage ( { mkDerivation, @@ -152973,32 +84734,6 @@ self: { } ) { }; - "composite-aeson-throw" = callPackage ( - { - mkDerivation, - aeson, - aeson-better-errors, - base, - composite-aeson, - exceptions, - }: - mkDerivation { - pname = "composite-aeson-throw"; - version = "0.1.0.0"; - sha256 = "0724mf1visv7ay306qngsz41blb28ykw074r6wfki17mfss1kh8y"; - libraryHaskellDepends = [ - aeson - aeson-better-errors - base - composite-aeson - exceptions - ]; - description = "MonadThrow behaviour for composite-aeson"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "composite-aeson-writeonly" = callPackage ( { mkDerivation, @@ -153465,28 +85200,6 @@ self: { } ) { }; - "composite-xstep" = callPackage ( - { - mkDerivation, - base, - composite-base, - vinyl, - }: - mkDerivation { - pname = "composite-xstep"; - version = "0.1.0.0"; - sha256 = "18q75ynlywr6yap6nn11x5kzxncn0b6ghmvbg642617pznznpfm9"; - libraryHaskellDepends = [ - base - composite-base - vinyl - ]; - description = "ReaderT transformer pattern for higher kinded composite data"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "composition" = callPackage ( { mkDerivation }: mkDerivation { @@ -153531,30 +85244,6 @@ self: { } ) { }; - "composition-tree" = callPackage ( - { - mkDerivation, - base, - doctest, - QuickCheck, - }: - mkDerivation { - pname = "composition-tree"; - version = "0.2.0.4"; - sha256 = "0n707qc1xx96wpq4vl1fs47jkm9vbxp8ff3hi7bj1cnd77yzhf01"; - libraryHaskellDepends = [ base ]; - testHaskellDepends = [ - base - doctest - QuickCheck - ]; - description = "Composition trees for arbitrary monoids"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "compositional-data" = callPackage ( { mkDerivation, @@ -153618,379 +85307,6 @@ self: { } ) { }; - "comprehensions-ghc" = callPackage ( - { - mkDerivation, - base, - base-unicode-symbols, - ghc, - syb, - util, - }: - mkDerivation { - pname = "comprehensions-ghc"; - version = "0.1.0.1"; - sha256 = "04s83q9mvsdnxy9glc15n1nbqk6imbdzi40skvvhasjppgb9ysbm"; - revision = "1"; - editedCabalFile = "0in3a8v2si3r92ak85gbq873b5k8fg88153wypzn6razg1c66rx0"; - libraryHaskellDepends = [ - base - base-unicode-symbols - ghc - syb - util - ]; - testHaskellDepends = [ base ]; - description = "Plugin to generalize comprehensions"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "compressed" = callPackage ( - { - mkDerivation, - base, - comonad, - containers, - fingertree, - hashable, - keys, - pointed, - reducers, - semigroupoids, - semigroups, - unordered-containers, - }: - mkDerivation { - pname = "compressed"; - version = "3.11"; - sha256 = "0gfxmfyzgpa176igsby50jpfhpfvd078d7nyvwwg2cjx8hpvyyyp"; - revision = "1"; - editedCabalFile = "0h3kfr2kdn74vk0mam5mwk6phclrcm79khd8yz2pp8j9zv1v8q3r"; - libraryHaskellDepends = [ - base - comonad - containers - fingertree - hashable - keys - pointed - reducers - semigroupoids - semigroups - unordered-containers - ]; - description = "Compressed containers and reducers"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "compression" = callPackage ( - { - mkDerivation, - base, - mtl, - }: - mkDerivation { - pname = "compression"; - version = "0.1"; - sha256 = "0cy7851i7dvn5aphg649jr3wmw9x57s29adk7qv0mvwz99fb4cpr"; - libraryHaskellDepends = [ - base - mtl - ]; - description = "Common compression algorithms"; - license = "unknown"; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "compstrat" = callPackage ( - { - mkDerivation, - base, - compdata, - mtl, - template-haskell, - th-expand-syns, - transformers, - }: - mkDerivation { - pname = "compstrat"; - version = "0.1.0.2"; - sha256 = "1jdxvyqkszwkry3vly65nh80519cpfw4ghzg1lsbnhyrbhvlchkg"; - libraryHaskellDepends = [ - base - compdata - mtl - template-haskell - th-expand-syns - transformers - ]; - description = "Strategy combinators for compositional data types"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "comptrans" = callPackage ( - { - mkDerivation, - base, - compdata, - containers, - deepseq, - deepseq-generics, - ghc-prim, - lens, - template-haskell, - th-expand-syns, - }: - mkDerivation { - pname = "comptrans"; - version = "0.1.0.5"; - sha256 = "05r07900bniy1gazvgj3wj4g07j33h493885bhh7gq1n1xilqgkm"; - libraryHaskellDepends = [ - base - compdata - containers - deepseq - deepseq-generics - ghc-prim - lens - template-haskell - th-expand-syns - ]; - description = "Automatically converting ASTs into compositional data types"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "computational-algebra" = callPackage ( - { - mkDerivation, - algebra, - algebraic-prelude, - arithmoi, - base, - constraints, - containers, - control-monad-loop, - convertible, - criterion, - deepseq, - dlist, - entropy, - equational-reasoning, - ghc-typelits-knownnat, - ghc-typelits-natnormalise, - ghc-typelits-presburger, - hashable, - heaps, - hmatrix, - hspec, - HUnit, - hybrid-vectors, - integer-logarithms, - lens, - ListLike, - matrix, - monad-loops, - MonadRandom, - mono-traversable, - monomorphic, - mtl, - parallel, - primes, - process, - QuickCheck, - quickcheck-instances, - random, - reflection, - semigroups, - singletons, - sized, - smallcheck, - tagged, - template-haskell, - test-framework, - test-framework-hunit, - text, - transformers, - type-natural, - unamb, - unordered-containers, - vector, - vector-algorithms, - }: - mkDerivation { - pname = "computational-algebra"; - version = "0.5.1.0"; - sha256 = "1ivhfw60gv1gxv6fl8z2n3a468dkvrwff8kg1brypaixzwp589gx"; - revision = "1"; - editedCabalFile = "1yhxqqrfqdr9dgzxz7rqk2kisg571dplhhyhd0490jbmd4z40ly6"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - algebra - algebraic-prelude - arithmoi - base - constraints - containers - control-monad-loop - convertible - deepseq - dlist - entropy - equational-reasoning - ghc-typelits-knownnat - ghc-typelits-natnormalise - ghc-typelits-presburger - hashable - heaps - hmatrix - hybrid-vectors - integer-logarithms - lens - ListLike - matrix - monad-loops - MonadRandom - mono-traversable - monomorphic - mtl - parallel - primes - reflection - semigroups - singletons - sized - tagged - template-haskell - text - type-natural - unamb - unordered-containers - vector - vector-algorithms - ]; - testHaskellDepends = [ - algebra - base - constraints - containers - convertible - deepseq - equational-reasoning - hspec - HUnit - lens - matrix - MonadRandom - monomorphic - process - QuickCheck - quickcheck-instances - reflection - singletons - sized - smallcheck - tagged - test-framework - test-framework-hunit - text - type-natural - vector - ]; - benchmarkHaskellDepends = [ - algebra - base - constraints - containers - criterion - deepseq - equational-reasoning - hspec - HUnit - lens - matrix - MonadRandom - monomorphic - parallel - process - QuickCheck - quickcheck-instances - random - reflection - singletons - sized - smallcheck - tagged - test-framework - test-framework-hunit - transformers - type-natural - vector - ]; - description = "Well-kinded computational algebra library, currently supporting Groebner basis"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "computational-geometry" = callPackage ( - { - mkDerivation, - ansi-wl-pprint, - base, - containers, - lens-family-core, - linear, - protolude, - vector, - }: - mkDerivation { - pname = "computational-geometry"; - version = "0.1.0.3"; - sha256 = "0hslx5g5qzkrxx79f12x82b9jfn0kxvwb7y8whiq85887p4w7zxh"; - libraryHaskellDepends = [ - ansi-wl-pprint - base - containers - lens-family-core - linear - protolude - vector - ]; - description = "Collection of algorithms in Computational Geometry"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "computations" = callPackage ( - { mkDerivation, base }: - mkDerivation { - pname = "computations"; - version = "0.0.0.0"; - sha256 = "1kyg3dmgq5z0217rxgljs3x7x3xvcdly2aqj2ky4h4kbw1h0r260"; - libraryHaskellDepends = [ base ]; - description = "Advanced notions of computation"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "conala-dataset" = callPackage ( { mkDerivation, @@ -154033,542 +85349,91 @@ self: { mkDerivation, base, template-haskell, - }: - mkDerivation { - pname = "concatenative"; - version = "1.0.1"; - sha256 = "05xwqvcdnk8bsyj698ab9jxpa1nk23pf3m7wi9mwmw0q8n99fngd"; - libraryHaskellDepends = [ - base - template-haskell - ]; - description = "A library for postfix control flow"; - license = lib.licenses.bsd3; - } - ) { }; - - "conceit" = callPackage ( - { mkDerivation, base }: - mkDerivation { - pname = "conceit"; - version = "0.5.0.0"; - sha256 = "0aprzrslrbsl3d7j49nmx0kxx71m39zi7xlfyw8wnazqpi8mfwwb"; - libraryHaskellDepends = [ base ]; - description = "Concurrent actions that may fail with a value"; - license = lib.licenses.bsd3; - } - ) { }; - - "concise" = callPackage ( - { - mkDerivation, - base, - bytestring, - lens, - QuickCheck, - quickcheck-instances, - tasty, - tasty-quickcheck, - text, - }: - mkDerivation { - pname = "concise"; - version = "0.1.0.1"; - sha256 = "09crgc6gjfidlad6263253xx1di6wfhc9awhira21s0z7rddy9sw"; - libraryHaskellDepends = [ - base - bytestring - lens - text - ]; - testHaskellDepends = [ - base - bytestring - lens - QuickCheck - quickcheck-instances - tasty - tasty-quickcheck - text - ]; - description = "Utilities for Control.Lens.Cons"; - license = lib.licenses.bsd3; - } - ) { }; - - "concorde" = callPackage ( - { - mkDerivation, - base, - containers, - process, - safe, - temporary, - }: - mkDerivation { - pname = "concorde"; - version = "0.1"; - sha256 = "0903lrj6bzajjdr01hbld1jm6vf7assn84hqk4kgrrs1mr3ykc20"; - libraryHaskellDepends = [ - base - containers - process - safe - temporary - ]; - description = "Simple interface to the Concorde solver for the Traveling Salesperson Problem"; - license = lib.licenses.bsd3; - } - ) { }; - - "concraft" = callPackage ( - { - mkDerivation, - aeson, - array, - base, - binary, - bytestring, - cmdargs, - comonad, - containers, - crf-chain1-constrained, - crf-chain2-tiers, - data-lens, - data-memocombinators, - lazy-io, - monad-codec, - monad-ox, - parallel, - pedestrian-dag, - sgd, - tagset-positional, - temporary, - text, - text-binary, - transformers, - vector, - vector-binary, - zlib, - }: - mkDerivation { - pname = "concraft"; - version = "0.14.2"; - sha256 = "151cp99iah0fd50fkizidcla7f1kvb0jwgl1cj3j6f25j21894dy"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson - array - base - binary - bytestring - cmdargs - comonad - containers - crf-chain1-constrained - crf-chain2-tiers - data-lens - data-memocombinators - lazy-io - monad-codec - monad-ox - parallel - pedestrian-dag - sgd - tagset-positional - temporary - text - text-binary - transformers - vector - vector-binary - zlib - ]; - description = "Morphological disambiguation based on constrained CRFs"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "concraft-hr" = callPackage ( - { - mkDerivation, - aeson, - base, - binary, - bytestring, - cmdargs, - concraft, - containers, - double-conversion, - lazy-io, - moan, - network, - sgd, - split, - tagset-positional, - text, - }: - mkDerivation { - pname = "concraft-hr"; - version = "0.1.0.2"; - sha256 = "0q2l2yqxk210ycw1alcps9x7l2f60g9sb0wan7d1d2fkbfhq3z41"; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - aeson - base - binary - bytestring - concraft - containers - double-conversion - lazy-io - moan - network - sgd - split - tagset-positional - text - ]; - executableHaskellDepends = [ cmdargs ]; - description = "Part-of-speech tagger for Croatian"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "concraft-hr"; - } - ) { }; - - "concraft-pl" = callPackage ( - { - mkDerivation, - aeson, - base, - binary, - bytestring, - cmdargs, - concraft, - containers, - crf-chain1-constrained, - crf-chain2-tiers, - dhall, - filepath, - http-types, - lazy-io, - lens, - mtl, - network, - pedestrian-dag, - process, - scotty, - sgd, - split, - tagset-positional, - text, - transformers, - vector, - wreq, - }: - mkDerivation { - pname = "concraft-pl"; - version = "2.4.0"; - sha256 = "0gc50aadzryy1a8mj85i4afgip34w6pk4s2kqsn10910634lmy6h"; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - aeson - base - binary - bytestring - concraft - containers - crf-chain1-constrained - crf-chain2-tiers - dhall - http-types - lazy-io - lens - mtl - network - pedestrian-dag - process - scotty - sgd - split - tagset-positional - text - transformers - vector - wreq - ]; - executableHaskellDepends = [ - base - bytestring - cmdargs - concraft - containers - crf-chain1-constrained - dhall - filepath - pedestrian-dag - sgd - tagset-positional - text - ]; - description = "Morphological tagger for Polish"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "concraft-pl"; - } - ) { }; - - "concrete-haskell" = callPackage ( - { - mkDerivation, - base, - binary, - bytestring, - bzlib, - bzlib-conduit, - concrete-haskell-autogen, - conduit, - conduit-combinators, - conduit-extra, - containers, - cryptohash-conduit, - deepseq, - directory, - filepath, - hashable, - lens, - megaparsec, - monad-extras, - mtl, - network, - optparse-generic, - path, - path-io, - process, - QuickCheck, - scientific, - stm, - tar, - tar-conduit, - text, - thrift, - time, - unordered-containers, - uuid, - vector, - zip, - zip-conduit, - zlib, - }: - mkDerivation { - pname = "concrete-haskell"; - version = "0.1.0.16"; - sha256 = "1bjdbvsi7saqrlxybrzi35x47a08b01nlghvz9r6l04dkikjy2xc"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - binary - bytestring - bzlib - bzlib-conduit - concrete-haskell-autogen - conduit - conduit-combinators - conduit-extra - containers - cryptohash-conduit - deepseq - directory - filepath - hashable - lens - megaparsec - monad-extras - mtl - network - optparse-generic - path - path-io - process - QuickCheck - scientific - stm - tar - tar-conduit - text - thrift - time - unordered-containers - uuid - vector - zip - zip-conduit - zlib - ]; - executableHaskellDepends = [ - base - binary - bytestring - bzlib - bzlib-conduit - concrete-haskell-autogen - conduit - conduit-combinators - conduit-extra - containers - cryptohash-conduit - deepseq - directory - filepath - hashable - lens - megaparsec - monad-extras - mtl - network - optparse-generic - path - path-io - process - QuickCheck - scientific - stm - tar - tar-conduit - text - thrift - time - unordered-containers - uuid - vector - zip - zip-conduit - zlib - ]; - testHaskellDepends = [ - base - binary - bytestring - bzlib - bzlib-conduit - concrete-haskell-autogen - conduit - conduit-combinators - conduit-extra - containers - cryptohash-conduit - deepseq - directory - filepath - hashable - lens - megaparsec - monad-extras - mtl - network - optparse-generic - path - path-io - process - QuickCheck - scientific - stm - tar - tar-conduit - text - thrift - time - unordered-containers - uuid - vector - zip - zip-conduit - zlib + }: + mkDerivation { + pname = "concatenative"; + version = "1.0.1"; + sha256 = "05xwqvcdnk8bsyj698ab9jxpa1nk23pf3m7wi9mwmw0q8n99fngd"; + libraryHaskellDepends = [ + base + template-haskell ]; - description = "Library for the Concrete data format"; - license = "GPL"; - hydraPlatforms = lib.platforms.none; + description = "A library for postfix control flow"; + license = lib.licenses.bsd3; + } + ) { }; + + "conceit" = callPackage ( + { mkDerivation, base }: + mkDerivation { + pname = "conceit"; + version = "0.5.0.0"; + sha256 = "0aprzrslrbsl3d7j49nmx0kxx71m39zi7xlfyw8wnazqpi8mfwwb"; + libraryHaskellDepends = [ base ]; + description = "Concurrent actions that may fail with a value"; + license = lib.licenses.bsd3; } ) { }; - "concrete-haskell-autogen" = callPackage ( + "concise" = callPackage ( { mkDerivation, base, bytestring, - containers, - hashable, lens, QuickCheck, + quickcheck-instances, + tasty, + tasty-quickcheck, text, - thrift, - unordered-containers, - vector, }: mkDerivation { - pname = "concrete-haskell-autogen"; - version = "0.0.0.3"; - sha256 = "0csdzkhw1v84ryzdzfii5iphyyclqf8gl1mh5qvg13jyxvh5z7rk"; + pname = "concise"; + version = "0.1.0.1"; + sha256 = "09crgc6gjfidlad6263253xx1di6wfhc9awhira21s0z7rddy9sw"; libraryHaskellDepends = [ base bytestring - containers - hashable + lens + text + ]; + testHaskellDepends = [ + base + bytestring lens QuickCheck + quickcheck-instances + tasty + tasty-quickcheck text - thrift - unordered-containers - vector ]; - description = "Automatically generated Thrift definitions for the Concrete data format"; - license = "GPL"; - hydraPlatforms = lib.platforms.none; + description = "Utilities for Control.Lens.Cons"; + license = lib.licenses.bsd3; } ) { }; - "concrete-relaxng-parser" = callPackage ( + "concorde" = callPackage ( { mkDerivation, base, - cmdargs, containers, - hxt, - hxt-charproperties, - hxt-curl, - hxt-relaxng, - hxt-tagsoup, + process, + safe, + temporary, }: mkDerivation { - pname = "concrete-relaxng-parser"; - version = "0.1.1"; - sha256 = "1w4bg284fcnd15yg7097d8sh0rzxr76zlrr1bfj2dksw8ddy3jda"; - isLibrary = false; - isExecutable = true; - enableSeparateDataOutput = true; - executableHaskellDepends = [ + pname = "concorde"; + version = "0.1"; + sha256 = "0903lrj6bzajjdr01hbld1jm6vf7assn84hqk4kgrrs1mr3ykc20"; + libraryHaskellDepends = [ base - cmdargs containers - hxt - hxt-charproperties - hxt-curl - hxt-relaxng - hxt-tagsoup + process + safe + temporary ]; - description = "A parser driven by a standard RELAX NG schema with concrete syntax extensions"; - license = "GPL"; - hydraPlatforms = lib.platforms.none; - mainProgram = "parse-concrete"; - broken = true; + description = "Simple interface to the Concorde solver for the Traveling Salesperson Problem"; + license = lib.licenses.bsd3; } ) { }; @@ -154666,65 +85531,6 @@ self: { } ) { }; - "concurrency-benchmarks" = callPackage ( - { - mkDerivation, - async, - base, - bench-graph, - bytestring, - Chart, - Chart-diagrams, - csv, - deepseq, - directory, - gauge, - getopt-generics, - mtl, - random, - split, - streamly, - text, - transformers, - typed-process, - }: - mkDerivation { - pname = "concurrency-benchmarks"; - version = "0.1.1"; - sha256 = "1zbkyyryh24k67kh3amzscfh7mljj1l6yqd926bkl4ps4d1mdn5d"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - bench-graph - bytestring - Chart - Chart-diagrams - csv - directory - getopt-generics - split - text - transformers - typed-process - ]; - benchmarkHaskellDepends = [ - async - base - deepseq - gauge - mtl - random - streamly - transformers - ]; - description = "Benchmarks to compare concurrency APIs"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - mainProgram = "makecharts"; - } - ) { }; - "concurrent-barrier" = callPackage ( { mkDerivation, base }: mkDerivation { @@ -154758,50 +85564,6 @@ self: { } ) { }; - "concurrent-buffer" = callPackage ( - { - mkDerivation, - base, - base-prelude, - bug, - bytestring, - criterion, - quickcheck-instances, - rerebase, - tasty, - tasty-hunit, - tasty-quickcheck, - }: - mkDerivation { - pname = "concurrent-buffer"; - version = "0.1"; - sha256 = "0qrnsp98x42blvngixm9wzk9cnwk335s5axslwrl6hq8pawx2ycd"; - libraryHaskellDepends = [ - base - base-prelude - bug - bytestring - ]; - testHaskellDepends = [ - bug - quickcheck-instances - rerebase - tasty - tasty-hunit - tasty-quickcheck - ]; - benchmarkHaskellDepends = [ - bug - criterion - rerebase - ]; - description = "Concurrent expanding buffer"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "concurrent-dns-cache" = callPackage ( { mkDerivation, @@ -155125,56 +85887,6 @@ self: { } ) { }; - "concurrent-st" = callPackage ( - { - mkDerivation, - base, - ghc-prim, - }: - mkDerivation { - pname = "concurrent-st"; - version = "0.1"; - sha256 = "08zjpyf1jrsn161z9dngag63s47vrvz4m8aani9lvmlacbzpjfwd"; - libraryHaskellDepends = [ - base - ghc-prim - ]; - description = "Concurrent Haskell in ST"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "concurrent-state" = callPackage ( - { - mkDerivation, - base, - exceptions, - mtl, - stm, - transformers, - }: - mkDerivation { - pname = "concurrent-state"; - version = "0.6.0.0"; - sha256 = "0b9lndzqm451j9wv2694gjd9w9j2vmhp32j57fqnq43pq8a1h1z6"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - exceptions - mtl - stm - transformers - ]; - description = "MTL-like library using TVars"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "concurrent-supply" = callPackage ( { mkDerivation, @@ -155281,107 +85993,6 @@ self: { } ) { }; - "condor" = callPackage ( - { - mkDerivation, - base, - binary, - Cabal, - containers, - directory, - filepath, - glider-nlp, - HUnit, - text, - }: - mkDerivation { - pname = "condor"; - version = "0.3"; - sha256 = "0ahikfb6h2clkx3pi6a7gyp39jhv2am98vyyaknyd1nvfvxl96x7"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - binary - containers - glider-nlp - text - ]; - executableHaskellDepends = [ - base - binary - containers - directory - filepath - glider-nlp - text - ]; - testHaskellDepends = [ - base - binary - Cabal - containers - glider-nlp - HUnit - text - ]; - description = "Information retrieval library"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "condor"; - } - ) { }; - - "condorcet" = callPackage ( - { - mkDerivation, - array, - base, - }: - mkDerivation { - pname = "condorcet"; - version = "0.0.1"; - sha256 = "1raf8mrnfnn90ymcnyhqf1kzb9mpfsk83qlmajibjd8n94iq76nd"; - libraryHaskellDepends = [ - array - base - ]; - description = "Library for Condorcet voting"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "conductive-base" = callPackage ( - { - mkDerivation, - array, - base, - containers, - random, - stm, - time, - }: - mkDerivation { - pname = "conductive-base"; - version = "0.3"; - sha256 = "1jdslfnwyh7l10xhk9i0293p0qnw0xsd70d5xgpc6xlijhrsg8wp"; - libraryHaskellDepends = [ - array - base - containers - random - stm - time - ]; - description = "a library for live coding and real-time musical applications"; - license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "conductive-clock" = callPackage ( { mkDerivation }: mkDerivation { @@ -155394,62 +86005,6 @@ self: { } ) { }; - "conductive-hsc3" = callPackage ( - { - mkDerivation, - base, - conductive-base, - conductive-song, - containers, - directory, - filepath, - hosc, - hsc3, - random, - }: - mkDerivation { - pname = "conductive-hsc3"; - version = "0.3.1"; - sha256 = "1z037753mxkfqbqqrlkpg5a6z9afpjj16bfplsmbbx3r3vrxbkpa"; - libraryHaskellDepends = [ - base - conductive-base - conductive-song - containers - directory - filepath - hosc - hsc3 - random - ]; - description = "a library with examples of using Conductive with hsc3"; - license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "conductive-song" = callPackage ( - { - mkDerivation, - base, - conductive-base, - random, - }: - mkDerivation { - pname = "conductive-song"; - version = "0.2"; - sha256 = "16bdsjv64fc3ydv230rja5q9rqzlr4vd9mh3jabiyahck44imrvi"; - libraryHaskellDepends = [ - base - conductive-base - random - ]; - description = "a library of functions which are useful for composing music"; - license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "conduino" = callPackage ( { mkDerivation, @@ -155763,109 +86318,6 @@ self: { } ) { }; - "conduit-audio-lame" = callPackage ( - { - mkDerivation, - base, - bytestring, - c2hs, - conduit, - conduit-audio, - mp3lame, - resourcet, - transformers, - vector, - }: - mkDerivation { - pname = "conduit-audio-lame"; - version = "0.1.2.1"; - sha256 = "1zyq0m5lblphp892ljvg6ix75rxa1ds5ksfk3cvj7kf074jw66za"; - revision = "2"; - editedCabalFile = "09cly6yly3vdlp8qbv6iyrk84aca7v6d160hwg9ai0dmjxk0jkl4"; - libraryHaskellDepends = [ - base - bytestring - conduit - conduit-audio - resourcet - transformers - vector - ]; - librarySystemDepends = [ mp3lame ]; - libraryToolDepends = [ c2hs ]; - description = "conduit-audio interface to the LAME MP3 library"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { mp3lame = null; }; - - "conduit-audio-samplerate" = callPackage ( - { - mkDerivation, - base, - c2hs, - conduit, - conduit-audio, - resourcet, - samplerate, - transformers, - vector, - }: - mkDerivation { - pname = "conduit-audio-samplerate"; - version = "0.1.0.3"; - sha256 = "07hbqf7is7010ibp2k5fh4lx3s22vp6c4ihsid05ismk0sdpdypi"; - revision = "2"; - editedCabalFile = "1xp5mqd8svgdz9lwz2vw5mwkm98n834i2k83axwfwvpqr2jlkqa9"; - libraryHaskellDepends = [ - base - conduit - conduit-audio - resourcet - transformers - vector - ]; - librarySystemDepends = [ samplerate ]; - libraryToolDepends = [ c2hs ]; - description = "conduit-audio interface to the libsamplerate resampling library"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { samplerate = null; }; - - "conduit-audio-sndfile" = callPackage ( - { - mkDerivation, - base, - conduit, - conduit-audio, - hsndfile, - hsndfile-vector, - resourcet, - transformers, - }: - mkDerivation { - pname = "conduit-audio-sndfile"; - version = "0.1.2.2"; - sha256 = "1pfvsq0jz9j66ajzc0avnhchn77l22clp71kf2p7dnrib05xc757"; - libraryHaskellDepends = [ - base - conduit - conduit-audio - hsndfile - hsndfile-vector - resourcet - transformers - ]; - description = "conduit-audio interface to the libsndfile audio file library"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "conduit-combinators" = callPackage ( { mkDerivation, base }: mkDerivation { @@ -155922,51 +86374,6 @@ self: { } ) { }; - "conduit-connection" = callPackage ( - { - mkDerivation, - base, - bytestring, - conduit, - connection, - HUnit, - network, - resourcet, - test-framework, - test-framework-hunit, - transformers, - }: - mkDerivation { - pname = "conduit-connection"; - version = "0.1.0.5"; - sha256 = "0mvsvxfps6pnlanl5zx7cz6qxpn907qgx5bcl18vb9vhn8frh0m6"; - libraryHaskellDepends = [ - base - bytestring - conduit - connection - resourcet - transformers - ]; - testHaskellDepends = [ - base - bytestring - conduit - connection - HUnit - network - resourcet - test-framework - test-framework-hunit - transformers - ]; - description = "Conduit source and sink for Network.Connection."; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "conduit-extra" = callPackage ( { mkDerivation, @@ -156163,53 +86570,6 @@ self: { } ) { }; - "conduit-iconv" = callPackage ( - { - mkDerivation, - base, - bytestring, - conduit, - criterion, - mtl, - QuickCheck, - test-framework, - test-framework-quickcheck2, - text, - }: - mkDerivation { - pname = "conduit-iconv"; - version = "0.1.1.3"; - sha256 = "1dmcsdx0nz0b9sans2fr8lmrii2n0fsjh41jhwlrlng4h93k0w8w"; - libraryHaskellDepends = [ - base - bytestring - conduit - ]; - testHaskellDepends = [ - base - bytestring - conduit - mtl - QuickCheck - test-framework - test-framework-quickcheck2 - text - ]; - benchmarkHaskellDepends = [ - base - bytestring - conduit - criterion - mtl - text - ]; - description = "Conduit for character encoding conversion"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "conduit-merge" = callPackage ( { mkDerivation, @@ -156231,35 +86591,6 @@ self: { } ) { }; - "conduit-network-stream" = callPackage ( - { - mkDerivation, - base, - bytestring, - conduit, - mtl, - network-conduit, - resourcet, - }: - mkDerivation { - pname = "conduit-network-stream"; - version = "0.2"; - sha256 = "0ch0b23z7k4kxnbkvfd3gaxc7xrnlbjz7hv0pshp4k6xqg2bymv4"; - libraryHaskellDepends = [ - base - bytestring - conduit - mtl - network-conduit - resourcet - ]; - description = "A base layer for network protocols using Conduits"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "conduit-parse" = callPackage ( { mkDerivation, @@ -156308,301 +86639,6 @@ self: { } ) { }; - "conduit-resumablesink" = callPackage ( - { - mkDerivation, - base, - bytestring, - conduit, - hspec, - resourcet, - transformers, - void, - }: - mkDerivation { - pname = "conduit-resumablesink"; - version = "0.2"; - sha256 = "0pk4qvsxmmvrx9kfypbsjiq6kgcma73w97873rk3nrc9vdcm888v"; - libraryHaskellDepends = [ - base - conduit - void - ]; - testHaskellDepends = [ - base - bytestring - conduit - hspec - resourcet - transformers - void - ]; - description = "Allows conduit to resume sinks to feed multiple sources into it"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "conduit-throttle" = callPackage ( - { - mkDerivation, - async, - base, - conduit, - conduit-combinators, - conduit-extra, - HUnit, - monad-control, - resourcet, - stm, - stm-chans, - stm-conduit, - test-framework, - test-framework-hunit, - throttle-io-stream, - unliftio, - unliftio-core, - }: - mkDerivation { - pname = "conduit-throttle"; - version = "0.3.1.0"; - sha256 = "0ad3balm1r5jm4jvf26pr1kaiqnzvjznjh5kidk2bknxylbddmld"; - libraryHaskellDepends = [ - async - base - conduit - conduit-combinators - conduit-extra - monad-control - resourcet - stm - stm-chans - throttle-io-stream - unliftio - unliftio-core - ]; - testHaskellDepends = [ - async - base - conduit - conduit-combinators - conduit-extra - HUnit - monad-control - resourcet - stm - stm-chans - stm-conduit - test-framework - test-framework-hunit - throttle-io-stream - unliftio - unliftio-core - ]; - description = "Throttle Conduit Producers"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "conduit-tokenize-attoparsec" = callPackage ( - { - mkDerivation, - attoparsec, - base, - bytestring, - conduit, - hspec, - resourcet, - text, - }: - mkDerivation { - pname = "conduit-tokenize-attoparsec"; - version = "0.1.0.0"; - sha256 = "1bq0mmnyb12f6cx9iyk7b7cg8d5hl7zkda6vljmqncv4gh9f3f6b"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - attoparsec - base - bytestring - conduit - resourcet - text - ]; - executableHaskellDepends = [ - attoparsec - base - conduit - resourcet - ]; - testHaskellDepends = [ - attoparsec - base - conduit - hspec - resourcet - ]; - description = "Conduits for tokenizing streams"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "conduit-tokenize-attoparsec-example"; - broken = true; - } - ) { }; - - "conduit-vfs" = callPackage ( - { - mkDerivation, - base, - bytestring, - classy-prelude, - conduit, - conduit-extra, - directory, - exceptions, - extra, - filepath, - monad-loops, - mono-traversable, - mtl, - resourcet, - text, - transformers, - unix, - unliftio, - unordered-containers, - }: - mkDerivation { - pname = "conduit-vfs"; - version = "0.1.0.3"; - sha256 = "1nsq4s0cxag6drynkfl79q0lirh37r3l59nzhkdyjlak4bzq5g1f"; - libraryHaskellDepends = [ - base - bytestring - classy-prelude - conduit - conduit-extra - directory - exceptions - extra - filepath - monad-loops - mono-traversable - mtl - resourcet - text - transformers - unix - unliftio - unordered-containers - ]; - testHaskellDepends = [ - base - bytestring - classy-prelude - conduit - conduit-extra - directory - exceptions - extra - filepath - monad-loops - mono-traversable - mtl - resourcet - text - transformers - unix - unliftio - unordered-containers - ]; - description = "Virtual file system for Conduit; disk, pure, and in-memory impls"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "conduit-vfs-zip" = callPackage ( - { - mkDerivation, - base, - bytestring, - classy-prelude, - conduit, - conduit-extra, - conduit-vfs, - directory, - exceptions, - extra, - filepath, - monad-loops, - mono-traversable, - mtl, - resourcet, - text, - transformers, - unix, - unliftio, - unordered-containers, - zip-archive, - }: - mkDerivation { - pname = "conduit-vfs-zip"; - version = "0.1.0.1"; - sha256 = "07c2r03if3bminakcf4z7k990c8nf94w3q41csrzd4zy3qk0acr5"; - libraryHaskellDepends = [ - base - bytestring - classy-prelude - conduit - conduit-extra - conduit-vfs - directory - exceptions - extra - filepath - monad-loops - mono-traversable - mtl - resourcet - text - transformers - unix - unliftio - unordered-containers - zip-archive - ]; - testHaskellDepends = [ - base - bytestring - classy-prelude - conduit - conduit-extra - conduit-vfs - directory - exceptions - extra - filepath - monad-loops - mono-traversable - mtl - resourcet - text - transformers - unix - unliftio - unordered-containers - zip-archive - ]; - description = "Zip archive interface for the Conduit Virtual File System"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "conduit-zstd" = callPackage ( { mkDerivation, @@ -156644,38 +86680,6 @@ self: { } ) { }; - "conf" = callPackage ( - { - mkDerivation, - base, - haskell-src, - HUnit, - test-framework, - test-framework-hunit, - test-framework-th, - }: - mkDerivation { - pname = "conf"; - version = "0.1.1.0"; - sha256 = "1mxrr14188ikizyxb06764qq1iwhnh19g150mz310q8yw6cypbfw"; - libraryHaskellDepends = [ - base - haskell-src - ]; - testHaskellDepends = [ - base - HUnit - test-framework - test-framework-hunit - test-framework-th - ]; - description = "Parser for Haskell-based configuration files"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "conf-json" = callPackage ( { mkDerivation, @@ -156711,112 +86715,6 @@ self: { } ) { }; - "confcrypt" = callPackage ( - { - mkDerivation, - amazonka, - amazonka-kms, - base, - base64-bytestring, - bytestring, - conduit, - containers, - crypto-pubkey-openssh, - crypto-pubkey-types, - cryptonite, - deepseq, - HUnit, - lens, - megaparsec, - memory, - mtl, - optparse-applicative, - parser-combinators, - QuickCheck, - tasty, - tasty-hunit, - tasty-quickcheck, - text, - transformers, - }: - mkDerivation { - pname = "confcrypt"; - version = "0.2.3.3"; - sha256 = "18z0p9bd2ca43a64k3idsywm2f1vv6qh03l8isgnahjh7j96ngih"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - amazonka - amazonka-kms - base - base64-bytestring - bytestring - conduit - containers - crypto-pubkey-openssh - crypto-pubkey-types - cryptonite - deepseq - lens - megaparsec - mtl - optparse-applicative - parser-combinators - text - transformers - ]; - executableHaskellDepends = [ - amazonka - amazonka-kms - base - base64-bytestring - bytestring - conduit - containers - crypto-pubkey-openssh - crypto-pubkey-types - cryptonite - deepseq - lens - megaparsec - mtl - optparse-applicative - parser-combinators - text - transformers - ]; - testHaskellDepends = [ - amazonka - amazonka-kms - base - base64-bytestring - bytestring - conduit - containers - crypto-pubkey-openssh - crypto-pubkey-types - cryptonite - deepseq - HUnit - lens - megaparsec - memory - mtl - optparse-applicative - parser-combinators - QuickCheck - tasty - tasty-hunit - tasty-quickcheck - text - transformers - ]; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - mainProgram = "confcrypt"; - } - ) { }; - "conferer" = callPackage ( { mkDerivation, @@ -157020,129 +86918,6 @@ self: { } ) { }; - "conferer-provider-dhall" = callPackage ( - { - mkDerivation, - base, - bytestring, - conferer, - conferer-provider-json, - dhall, - dhall-json, - directory, - hspec, - text, - }: - mkDerivation { - pname = "conferer-provider-dhall"; - version = "0.3.0.0"; - sha256 = "0gdfc1np6p80sb2ddz2jzhqqzzw7jz0rkbhrvyd9k5bp7ivzhfk3"; - libraryHaskellDepends = [ - base - bytestring - conferer - conferer-provider-json - dhall - dhall-json - directory - text - ]; - testHaskellDepends = [ - base - bytestring - conferer - conferer-provider-json - dhall - dhall-json - directory - hspec - text - ]; - description = "Configuration for reading dhall files"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "conferer-provider-json" = callPackage ( - { - mkDerivation, - aeson, - aeson-qq, - base, - bytestring, - conferer, - directory, - hspec, - text, - unordered-containers, - vector, - }: - mkDerivation { - pname = "conferer-provider-json"; - version = "0.3.0.0"; - sha256 = "0jrq1cpfhlyq9dvnf4kmx3wqjwz7x18g0hwbg4gkv12spjffpnc9"; - libraryHaskellDepends = [ - aeson - base - bytestring - conferer - directory - text - unordered-containers - vector - ]; - testHaskellDepends = [ - aeson - aeson-qq - base - bytestring - conferer - directory - hspec - text - unordered-containers - vector - ]; - description = "conferer's provider for reading json files"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "conferer-provider-yaml" = callPackage ( - { - mkDerivation, - base, - conferer, - conferer-provider-json, - hspec, - yaml, - }: - mkDerivation { - pname = "conferer-provider-yaml"; - version = "0.3.0.0"; - sha256 = "0w1niybl4qa3yv5yzyvybs3v1h0a0ay051cvcpzimwx7kg6vqjv6"; - libraryHaskellDepends = [ - base - conferer - conferer-provider-json - yaml - ]; - testHaskellDepends = [ - base - conferer - conferer-provider-json - hspec - yaml - ]; - description = "Configuration for reading yaml files"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "conferer-snap" = callPackage ( { mkDerivation, @@ -157181,129 +86956,6 @@ self: { } ) { }; - "conferer-source-dhall" = callPackage ( - { - mkDerivation, - base, - bytestring, - conferer, - conferer-source-json, - dhall, - dhall-json, - directory, - hspec, - text, - }: - mkDerivation { - pname = "conferer-source-dhall"; - version = "0.4.0.1"; - sha256 = "00i3sk948bg6brf97m41n9s4da4m25n220l5gkddb589li0lq0rk"; - libraryHaskellDepends = [ - base - bytestring - conferer - conferer-source-json - dhall - dhall-json - directory - text - ]; - testHaskellDepends = [ - base - bytestring - conferer - conferer-source-json - dhall - dhall-json - directory - hspec - text - ]; - description = "Configuration for reading dhall files"; - license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "conferer-source-json" = callPackage ( - { - mkDerivation, - aeson, - aeson-qq, - base, - bytestring, - conferer, - directory, - hspec, - text, - unordered-containers, - vector, - }: - mkDerivation { - pname = "conferer-source-json"; - version = "0.4.0.1"; - sha256 = "01kfm771qks7b66z0nlv2b108r002xv8bzacr9p6ih7nsbcbiqdn"; - libraryHaskellDepends = [ - aeson - base - bytestring - conferer - directory - text - unordered-containers - vector - ]; - testHaskellDepends = [ - aeson - aeson-qq - base - bytestring - conferer - directory - hspec - text - unordered-containers - vector - ]; - description = "conferer's source for reading json files"; - license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "conferer-source-yaml" = callPackage ( - { - mkDerivation, - base, - conferer, - conferer-source-json, - hspec, - yaml, - }: - mkDerivation { - pname = "conferer-source-yaml"; - version = "0.4.0.1"; - sha256 = "0ydciicxd7lxz2b6jmcc8ipyp99rp9gr9s2s2fnhmnhjv0xw6d7a"; - libraryHaskellDepends = [ - base - conferer - conferer-source-json - yaml - ]; - testHaskellDepends = [ - base - conferer - conferer-source-json - hspec - yaml - ]; - description = "Configuration for reading yaml files"; - license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "conferer-warp" = callPackage ( { mkDerivation, @@ -157427,70 +87079,6 @@ self: { } ) { }; - "conffmt" = callPackage ( - { - mkDerivation, - base, - language-conf, - megaparsec, - optparse-applicative, - pretty, - text, - }: - mkDerivation { - pname = "conffmt"; - version = "0.2.3.0"; - sha256 = "1fzbhfx8yxvqc79h48xh49bzqa2xymc3y7amvp1hbv4xwwy6l57l"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - language-conf - megaparsec - optparse-applicative - pretty - text - ]; - description = "A .conf file formatter"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - mainProgram = "conffmt"; - } - ) { }; - - "confide" = callPackage ( - { - mkDerivation, - base, - deiko-config, - exceptions, - tasty, - tasty-hunit, - text, - }: - mkDerivation { - pname = "confide"; - version = "0.1.0.3"; - sha256 = "0agq5naldbs1lwpw9nf5jldzrqh6pbc1n5vn5cb3kk7rj7j1a8ik"; - libraryHaskellDepends = [ - base - deiko-config - exceptions - text - ]; - testHaskellDepends = [ - base - deiko-config - tasty - tasty-hunit - text - ]; - description = "derive typeclass instances for decoding types from HOCON conf"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "config-ini" = callPackage ( { mkDerivation, @@ -157576,40 +87164,6 @@ self: { } ) { }; - "config-parser" = callPackage ( - { - mkDerivation, - base, - extra, - hspec, - lens, - parsec, - text, - }: - mkDerivation { - pname = "config-parser"; - version = "1.2.0.0"; - sha256 = "1jmb8c2ksxp9gfryymg100hjfn5kfshi95a1533d6h18ypqd5zb3"; - libraryHaskellDepends = [ - base - parsec - text - ]; - testHaskellDepends = [ - base - extra - hspec - lens - parsec - text - ]; - description = "Parse config files using parsec and generate parse errors on unhandled keys"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "config-schema" = callPackage ( { mkDerivation, @@ -157650,35 +87204,6 @@ self: { } ) { }; - "config-select" = callPackage ( - { - mkDerivation, - base, - directory, - filepath, - unix, - vty-menu, - }: - mkDerivation { - pname = "config-select"; - version = "0.0.1"; - sha256 = "1b1fs42c5y5sixgag972m5hb6xwbwp1d64p0gadqg9mg1vknl34y"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - directory - filepath - unix - vty-menu - ]; - description = "A small program for swapping out dot files"; - license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - mainProgram = "config-select"; - } - ) { }; - "config-value" = callPackage ( { mkDerivation, @@ -157716,121 +87241,6 @@ self: { } ) { }; - "config-value-getopt" = callPackage ( - { - mkDerivation, - base, - config-value, - text, - }: - mkDerivation { - pname = "config-value-getopt"; - version = "0.1.1.1"; - sha256 = "103afdadsh7vqfam61mixk0l2fxy41m0451bl2hl2djs3acj60b2"; - revision = "1"; - editedCabalFile = "1b5wfbqjjx6y8ll5h3vp2cmcdrcnjd3295y8ykd25yjx6f3swsja"; - libraryHaskellDepends = [ - base - config-value - text - ]; - description = "Interface between config-value and System.GetOpt"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "configifier" = callPackage ( - { - mkDerivation, - aeson, - aeson-pretty, - base, - bytestring, - case-insensitive, - containers, - directory, - either, - functor-infix, - hspec, - hspec-discover, - mtl, - pretty-show, - QuickCheck, - safe, - scientific, - string-conversions, - template-haskell, - unordered-containers, - vector, - yaml, - }: - mkDerivation { - pname = "configifier"; - version = "0.1.1"; - sha256 = "049fnwyk3phbjwn3h9i5phcfcyakm8xmhkhhapk6d1s35nrxbjsj"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - bytestring - case-insensitive - containers - directory - either - functor-infix - mtl - safe - string-conversions - template-haskell - unordered-containers - vector - yaml - ]; - testHaskellDepends = [ - aeson - aeson-pretty - base - case-insensitive - hspec - hspec-discover - mtl - pretty-show - QuickCheck - scientific - string-conversions - unordered-containers - vector - ]; - testToolDepends = [ hspec-discover ]; - description = "parser for config files, shell variables, command line args"; - license = lib.licenses.agpl3Only; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "configuration" = callPackage ( - { - mkDerivation, - base, - containers, - }: - mkDerivation { - pname = "configuration"; - version = "0.1.1"; - sha256 = "1jqc5xpbxrlnpxk2yci861gpxl5c9vm9lffchrpp1hk8ag5wkxk1"; - libraryHaskellDepends = [ - base - containers - ]; - description = "Simple data type for application configuration"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "configuration-tools" = callPackage ( { mkDerivation, @@ -157998,63 +87408,6 @@ self: { } ) { }; - "configurator-ng" = callPackage ( - { - mkDerivation, - attoparsec, - base, - bytestring, - critbit, - data-ordlist, - directory, - dlist, - fail, - filepath, - hashable, - HUnit, - scientific, - test-framework, - test-framework-hunit, - text, - unix-compat, - unordered-containers, - }: - mkDerivation { - pname = "configurator-ng"; - version = "0.0.0.1"; - sha256 = "0aq1iyvd3b2d26myp0scwi9vp97grfcrp2802s4xpg84vpapldis"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - attoparsec - base - bytestring - critbit - data-ordlist - directory - dlist - fail - hashable - scientific - text - unix-compat - unordered-containers - ]; - testHaskellDepends = [ - base - bytestring - directory - filepath - HUnit - test-framework - test-framework-hunit - text - ]; - description = "The next generation of configuration management"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "configurator-pg" = callPackage ( { mkDerivation, @@ -158144,44 +87497,6 @@ self: { } ) { }; - "confsolve" = callPackage ( - { - mkDerivation, - attoparsec, - base, - cmdargs, - process, - system-fileio, - system-filepath, - text, - time, - unordered-containers, - }: - mkDerivation { - pname = "confsolve"; - version = "0.5.6"; - sha256 = "0bsribar35vrq1q22nijxgnymkbrfa49vyvfa60ink8wj7q47jzp"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - attoparsec - base - cmdargs - process - system-fileio - system-filepath - text - time - unordered-containers - ]; - description = "A command line tool for resolving conflicts of file synchronizers"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "confsolve"; - broken = true; - } - ) { }; - "conftrack" = callPackage ( { mkDerivation, @@ -158237,29 +87552,6 @@ self: { } ) { }; - "congruence-relation" = callPackage ( - { - mkDerivation, - array, - base, - containers, - }: - mkDerivation { - pname = "congruence-relation"; - version = "0.1.0.0"; - sha256 = "1pj4kby5pba1xfz2fvv2lij7h2i8crf3qkhgs3rp4ziay0jkg18v"; - libraryHaskellDepends = [ - array - base - containers - ]; - description = "Decidable congruence relations for Haskell: up to you whether this is a joke"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "conic-graphs" = callPackage ( { mkDerivation, @@ -158307,114 +87599,6 @@ self: { } ) { }; - "conjure" = callPackage ( - { - mkDerivation, - array, - base, - bytestring, - containers, - filepath, - html, - HTTP, - mtl, - network, - old-time, - parsec, - pretty, - random, - stm, - unix, - }: - mkDerivation { - pname = "conjure"; - version = "0.1"; - sha256 = "02a33940rnwq5bzqx50fjy76q0z6nimsg2fk3q17ai4kvi0rw0p3"; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - array - base - bytestring - containers - filepath - html - HTTP - mtl - network - old-time - parsec - pretty - random - stm - unix - ]; - description = "A BitTorrent client"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "conjure"; - broken = true; - } - ) { }; - - "conkin" = callPackage ( - { - mkDerivation, - base, - data-default, - doctest, - markdown-unlit, - pretty-show, - }: - mkDerivation { - pname = "conkin"; - version = "1.0.2"; - sha256 = "1843mlmf09jgdj6hd7jzn81pwd4biimrc4rxaki9s2df2qd2zr6r"; - libraryHaskellDepends = [ base ]; - testHaskellDepends = [ - base - data-default - doctest - markdown-unlit - pretty-show - ]; - testToolDepends = [ markdown-unlit ]; - description = "Tools for functors from Hask^k to Hask"; - license = lib.licenses.publicDomain; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "conlogger" = callPackage ( - { - mkDerivation, - base, - text, - }: - mkDerivation { - pname = "conlogger"; - version = "0.1.0.1"; - sha256 = "1bxpn27spj4cq9cwg5b486xb35gmwb8hnrhq5g5dpmm7lxgijzh3"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - text - ]; - executableHaskellDepends = [ - base - text - ]; - description = "A logger for a concurrent program"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - mainProgram = "example"; - broken = true; - } - ) { }; - "connection" = callPackage ( { mkDerivation, @@ -158458,75 +87642,6 @@ self: { } ) { }; - "connection-pool" = callPackage ( - { - mkDerivation, - base, - between, - data-default-class, - monad-control, - network, - resource-pool, - streaming-commons, - time, - transformers-base, - }: - mkDerivation { - pname = "connection-pool"; - version = "0.2.2"; - sha256 = "0lvkcsd042s936fj5c9y5gg4iiq09n42adkv8q2rnwcbd6vl7kzj"; - libraryHaskellDepends = [ - base - between - data-default-class - monad-control - network - resource-pool - streaming-commons - time - transformers-base - ]; - description = "Connection pool built on top of resource-pool and streaming-commons"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "connection-string" = callPackage ( - { - mkDerivation, - base, - case-insensitive, - containers, - doctest, - megaparsec, - parser-combinators, - text, - }: - mkDerivation { - pname = "connection-string"; - version = "0.2.0.0"; - sha256 = "0gj9czggj7nrp0jjwbi0v1fzl0qvyw3yvi1q5kvjnx3l6ikk3z1j"; - libraryHaskellDepends = [ - base - case-insensitive - containers - megaparsec - parser-combinators - ]; - testHaskellDepends = [ - base - doctest - text - ]; - description = "A library for parsing connection strings"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "connections" = callPackage ( { mkDerivation, @@ -158566,85 +87681,6 @@ self: { } ) { }; - "consistent" = callPackage ( - { - mkDerivation, - base, - lifted-async, - lifted-base, - monad-control, - stm, - transformers, - transformers-base, - unordered-containers, - }: - mkDerivation { - pname = "consistent"; - version = "0.1.0"; - sha256 = "0cq8da3fhxj5mihd4xf5cjz4v3f1b72dm60wd0l0jkxwqg1q7ngq"; - libraryHaskellDepends = [ - base - lifted-async - lifted-base - monad-control - stm - transformers - transformers-base - unordered-containers - ]; - testHaskellDepends = [ - base - lifted-async - transformers - ]; - description = "Eventually consistent STM transactions"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "console-program" = callPackage ( - { - mkDerivation, - ansi-terminal, - ansi-wl-pprint, - base, - containers, - directory, - haskeline, - parsec, - parsec-extra, - split, - transformers, - unix, - utility-ht, - }: - mkDerivation { - pname = "console-program"; - version = "0.4.2.3"; - sha256 = "165ay133dxr0midy8yhsnsw5pf1lqh6pg4x63gjip945hfjl0lwq"; - libraryHaskellDepends = [ - ansi-terminal - ansi-wl-pprint - base - containers - directory - haskeline - parsec - parsec-extra - split - transformers - unix - utility-ht - ]; - description = "Interpret the command line and a config file as commands and options"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "console-prompt" = callPackage ( { mkDerivation, base }: mkDerivation { @@ -158657,29 +87693,6 @@ self: { } ) { }; - "console-style" = callPackage ( - { - mkDerivation, - base, - mtl, - transformers, - }: - mkDerivation { - pname = "console-style"; - version = "0.0.2.1"; - sha256 = "0zxxs59bzgf81d3ww285znmmciij3rswfgyc89ngxb6p86l8x0bd"; - libraryHaskellDepends = [ - base - mtl - transformers - ]; - description = "Styled console text output using ANSI escape sequences"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "const" = callPackage ( { mkDerivation, @@ -158705,36 +87718,6 @@ self: { } ) { }; - "const-math-ghc-plugin" = callPackage ( - { - mkDerivation, - base, - containers, - directory, - ghc, - process, - }: - mkDerivation { - pname = "const-math-ghc-plugin"; - version = "1.0.0.0"; - sha256 = "1fcj3ssfyxnq4cmb3lr5cg7qkgnkhf1ra0469cbw61gr2fl3kzdl"; - libraryHaskellDepends = [ - base - containers - ghc - ]; - testHaskellDepends = [ - base - directory - process - ]; - description = "Compiler plugin for constant math elimination"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "constable" = callPackage ( { mkDerivation, @@ -158780,34 +87763,6 @@ self: { } ) { }; - "constr-eq" = callPackage ( - { mkDerivation, base }: - mkDerivation { - pname = "constr-eq"; - version = "0.1.0.0"; - sha256 = "0vk3cz6897vjnn1q7y1sqxy42ii4pq5h7jxw1zyybi99p6c4vgm6"; - libraryHaskellDepends = [ base ]; - description = "Equality by only Constructor"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "constrained" = callPackage ( - { mkDerivation, base }: - mkDerivation { - pname = "constrained"; - version = "0.1"; - sha256 = "00bd12gkv5yrqn52dyw3yjk2yind3m6d11k2d517gxanq9jqyx2c"; - libraryHaskellDepends = [ base ]; - description = "Generalization of standard Functor, Foldable, and Traversable classes"; - license = lib.licenses.bsd2; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "constrained-categories" = callPackage ( { mkDerivation, @@ -158837,123 +87792,6 @@ self: { } ) { }; - "constrained-category" = callPackage ( - { - mkDerivation, - alg, - base, - category, - constraint, - criterion, - smallcheck, - tasty, - tasty-smallcheck, - unconstrained, - }: - mkDerivation { - pname = "constrained-category"; - version = "0.1.0.0"; - sha256 = "01r5jyydixfh82zynjpacsv5dc0mz28bcm8xaz2pgf2pc4gcfl9h"; - revision = "2"; - editedCabalFile = "1zjb5pzq479r3i4mphmxs7rqb4jiivhf1mm7273fzjrfykx50y4c"; - libraryHaskellDepends = [ - alg - base - category - constraint - unconstrained - ]; - testHaskellDepends = [ - base - smallcheck - tasty - tasty-smallcheck - ]; - benchmarkHaskellDepends = [ - base - criterion - ]; - description = "Constrained Categories"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "constrained-dynamic" = callPackage ( - { - mkDerivation, - base, - tasty, - tasty-hunit, - }: - mkDerivation { - pname = "constrained-dynamic"; - version = "0.1.0.0"; - sha256 = "0jcgkj8l0nq5mqsy1rc6gd2rz7x8wsc2l380hh2p7jqgqibji590"; - libraryHaskellDepends = [ base ]; - testHaskellDepends = [ - base - tasty - tasty-hunit - ]; - description = "Dynamic typing with retained constraints"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "constrained-monads" = callPackage ( - { - mkDerivation, - base, - containers, - criterion, - deepseq, - doctest, - free, - nat-sized-numbers, - QuickCheck, - smallcheck, - transformers, - vector, - }: - mkDerivation { - pname = "constrained-monads"; - version = "0.5.0.0"; - sha256 = "1h07vgn8cw42ckdy20xwz7rrny2d4v2gsmkb8i0qrly4bqa8sqcf"; - libraryHaskellDepends = [ - base - containers - deepseq - free - transformers - ]; - testHaskellDepends = [ - base - containers - doctest - QuickCheck - transformers - ]; - benchmarkHaskellDepends = [ - base - containers - criterion - deepseq - nat-sized-numbers - QuickCheck - smallcheck - transformers - vector - ]; - description = "Typeclasses and instances for monads with constraints"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "constrained-normal" = callPackage ( { mkDerivation, base }: mkDerivation { @@ -158968,32 +87806,6 @@ self: { } ) { }; - "constrained-platform-instances" = callPackage ( - { - mkDerivation, - array, - base, - constrained, - containers, - vector, - }: - mkDerivation { - pname = "constrained-platform-instances"; - version = "0.1"; - sha256 = "041fnmgy3adnzhvgrh3qm2jhcjwfz9adnjfpdamzjg34pw5a3ryz"; - libraryHaskellDepends = [ - array - base - constrained - containers - vector - ]; - description = "Instances of standard platform types for 'constrained' package"; - license = lib.licenses.bsd2; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "constrained-some" = callPackage ( { mkDerivation, base }: mkDerivation { @@ -159007,30 +87819,6 @@ self: { } ) { }; - "constraint" = callPackage ( - { - mkDerivation, - base, - category, - unconstrained, - }: - mkDerivation { - pname = "constraint"; - version = "0.1.4.0"; - sha256 = "0cdncdzpgyr9a0v213g9f6fqfd4311j5rg84gh85xynp8hhh0rr4"; - revision = "1"; - editedCabalFile = "0ivca43m1lqi75462z4hacvzs27whqzjnby7y7jjji8kqaw8wlda"; - libraryHaskellDepends = [ - base - category - unconstrained - ]; - description = "Reified constraints"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "constraint-classes" = callPackage ( { mkDerivation, @@ -159052,50 +87840,6 @@ self: { } ) { }; - "constraint-manip" = callPackage ( - { - mkDerivation, - base, - indextype, - }: - mkDerivation { - pname = "constraint-manip"; - version = "0.1.1.0"; - sha256 = "1kxg2iid906rw53r12rha8q3031ixdi3wlviprswig911x9c0zbk"; - libraryHaskellDepends = [ - base - indextype - ]; - description = "Some conviencience type functions for manipulating constraints"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "constraint-reflection" = callPackage ( - { - mkDerivation, - base, - category, - constraint, - reflection, - }: - mkDerivation { - pname = "constraint-reflection"; - version = "0.1.0.0"; - sha256 = "1v1m5vvicjmmz7mdp6fqf75fi2vf0hy25fyxgxpd4d7fbbyjvnh1"; - libraryHaskellDepends = [ - base - category - constraint - reflection - ]; - description = "Constraint reflection"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "constraint-tuples" = callPackage ( { mkDerivation, @@ -159197,41 +87941,6 @@ self: { } ) { }; - "constraints-emerge" = callPackage ( - { - mkDerivation, - base, - constraints, - containers, - ghc, - hashable, - hspec, - transformers, - }: - mkDerivation { - pname = "constraints-emerge"; - version = "0.1.2"; - sha256 = "1l3n5k8q2jfhsiqbzzbpy798zvcv2dvwsvd165c38b2yvxn6zird"; - libraryHaskellDepends = [ - base - constraints - containers - ghc - hashable - ]; - testHaskellDepends = [ - base - constraints - hspec - transformers - ]; - description = "Defer instance lookups until runtime"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "constraints-extras" = callPackage ( { mkDerivation, @@ -159370,103 +88079,6 @@ self: { description = "Exact computation with constructible real numbers"; license = lib.licenses.bsd3; hydraPlatforms = lib.platforms.none; - } - ) { }; - - "constructive-algebra" = callPackage ( - { - mkDerivation, - base, - QuickCheck, - type-level, - }: - mkDerivation { - pname = "constructive-algebra"; - version = "0.3.0"; - sha256 = "17ab0vkq5w3zwh76ws7b82wbc0871qdmvrxhxga78h3h0axjiz1x"; - libraryHaskellDepends = [ - base - QuickCheck - type-level - ]; - description = "A library of constructive algebra"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "consul-haskell" = callPackage ( - { - mkDerivation, - aeson, - base, - base64-bytestring, - bytestring, - connection, - either, - exceptions, - http-client, - http-client-tls, - http-types, - HUnit, - network, - random, - retry, - stm, - tasty, - tasty-hunit, - text, - transformers, - typed-process, - unliftio, - unordered-containers, - uuid, - vector, - }: - mkDerivation { - pname = "consul-haskell"; - version = "0.5.0"; - sha256 = "1axwkrqkhiaich7swibx9b6fvxbq1sphzxrwzc1q6fqznp568zzl"; - libraryHaskellDepends = [ - aeson - base - base64-bytestring - bytestring - connection - either - exceptions - http-client - http-client-tls - http-types - network - retry - stm - text - transformers - unliftio - unordered-containers - vector - ]; - testHaskellDepends = [ - base - bytestring - http-client - HUnit - network - random - retry - tasty - tasty-hunit - text - transformers - typed-process - unliftio - uuid - ]; - description = "A consul client for Haskell"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; broken = true; } ) { }; @@ -159576,34 +88188,6 @@ self: { } ) { }; - "container" = callPackage ( - { - mkDerivation, - base, - containers, - convert, - lens, - text, - vector, - }: - mkDerivation { - pname = "container"; - version = "1.1.6"; - sha256 = "0q4zgd7hsnpq5wnn5gk5rz9nq1kfp8ci5kc6yp1rmzbyky3j0211"; - libraryHaskellDepends = [ - base - containers - convert - lens - text - vector - ]; - description = "Containers abstraction and utilities"; - license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "container-builder" = callPackage ( { mkDerivation, @@ -159659,79 +88243,6 @@ self: { } ) { }; - "containers-accelerate" = callPackage ( - { - mkDerivation, - accelerate, - accelerate-llvm-native, - base, - containers, - half, - hashable-accelerate, - hedgehog, - tasty, - tasty-hedgehog, - }: - mkDerivation { - pname = "containers-accelerate"; - version = "0.1.0.0"; - sha256 = "1bfw5k6nq15szgwjkzd17inmlk0ii0pd6a4lrixi8gyjf6ksm6n1"; - libraryHaskellDepends = [ - accelerate - base - hashable-accelerate - ]; - testHaskellDepends = [ - accelerate - accelerate-llvm-native - base - containers - half - hashable-accelerate - hedgehog - tasty - tasty-hedgehog - ]; - description = "Hashing-based container types"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "containers-benchmark" = callPackage ( - { - mkDerivation, - base, - bytestring, - containers, - criterion, - deepseq, - ghc-prim, - random, - }: - mkDerivation { - pname = "containers-benchmark"; - version = "1.1.0.0"; - sha256 = "11h88lgwgiyacv9b9k96aih95ydjq1i4ny03z0zw8iyd3c0yi7m0"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - bytestring - containers - criterion - deepseq - ghc-prim - random - ]; - description = "Extensive benchmark suite for containers package"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "benchmark"; - broken = true; - } - ) { }; - "containers-deepseq" = callPackage ( { mkDerivation, @@ -159804,92 +88315,6 @@ self: { } ) { }; - "containers-verified" = callPackage ( - { mkDerivation, containers }: - mkDerivation { - pname = "containers-verified"; - version = "0.6.0.1"; - sha256 = "08cwfn71ffvjfp252l3whic90rqyq1jvrk0m9xp54kh3g2rdqma9"; - libraryHaskellDepends = [ containers ]; - description = "Formally verified drop-in replacement of containers"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "content-store" = callPackage ( - { - mkDerivation, - aeson, - base, - bytestring, - cond, - conduit, - conduit-combinators, - conduit-extra, - cryptonite, - directory, - filepath, - hspec, - htoml, - lzma-conduit, - memory, - monad-control, - mtl, - resourcet, - temporary, - text, - transformers, - transformers-base, - unix, - }: - mkDerivation { - pname = "content-store"; - version = "0.2.1"; - sha256 = "1c3l2fmznx3f1853scnpf6c60bbm1z99lkpxx36ldxrxizj2lmaj"; - libraryHaskellDepends = [ - aeson - base - bytestring - cond - conduit - conduit-combinators - conduit-extra - cryptonite - directory - filepath - htoml - lzma-conduit - memory - monad-control - mtl - resourcet - temporary - text - transformers - transformers-base - unix - ]; - testHaskellDepends = [ - base - bytestring - conduit - conduit-combinators - directory - filepath - hspec - memory - mtl - resourcet - temporary - ]; - description = "Store and retrieve data from an on-disk store"; - license = lib.licenses.lgpl21Only; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "context" = callPackage ( { mkDerivation, @@ -160109,31 +88534,6 @@ self: { } ) { }; - "context-stack" = callPackage ( - { - mkDerivation, - base, - classy-prelude, - mtl, - unordered-containers, - }: - mkDerivation { - pname = "context-stack"; - version = "0.1.0.1"; - sha256 = "0y51xlva4364658bgbchcasbq5pka2ixlvhdf9g38xwlmhfg736x"; - libraryHaskellDepends = [ - base - classy-prelude - mtl - unordered-containers - ]; - description = "An abstraction of a stack and stack-based monadic context"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "context-wai-middleware" = callPackage ( { mkDerivation, @@ -160226,85 +88626,6 @@ self: { } ) { }; - "contiguous-checked" = callPackage ( - { - mkDerivation, - base, - contiguous, - primitive, - }: - mkDerivation { - pname = "contiguous-checked"; - version = "0.3.2.0"; - sha256 = "0jfqxz0v107xw6mjr0wb1abb6v5zd3siy7z0gk9nqcvyacb80z4a"; - libraryHaskellDepends = [ - base - contiguous - primitive - ]; - description = "contiguous with bounds checks"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "contiguous-fft" = callPackage ( - { - mkDerivation, - base, - contiguous, - primitive, - semirings, - }: - mkDerivation { - pname = "contiguous-fft"; - version = "0.2.2.0"; - sha256 = "0nnxr6yihb82c7in0hsb7k9jkjccx5040pvxj5gb06ahzz5ls5yn"; - libraryHaskellDepends = [ - base - contiguous - primitive - semirings - ]; - description = "dft of contiguous memory structures"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "continue" = callPackage ( - { - mkDerivation, - base, - bifunctors, - monad-control, - mtl, - semigroupoids, - transformers, - transformers-base, - }: - mkDerivation { - pname = "continue"; - version = "0.2.0"; - sha256 = "0iyqwqbzmk8v4j6xdmfir8mdxjgzl1dh76c9ngwzyccpv7xbz59a"; - libraryHaskellDepends = [ - base - bifunctors - monad-control - mtl - semigroupoids - transformers - transformers-base - ]; - description = "Monads with suspension and arbitrary-spot reentry"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "continued-fraction" = callPackage ( { mkDerivation, @@ -160334,34 +88655,6 @@ self: { } ) { }; - "continued-fractions" = callPackage ( - { - mkDerivation, - base, - containers, - QuickCheck, - test-framework, - test-framework-quickcheck2, - }: - mkDerivation { - pname = "continued-fractions"; - version = "0.10.0.2"; - sha256 = "03s1vrsps2l114b3jg8nmglbv9bwsrjv79j06lyg9pxgvhk4lcpx"; - libraryHaskellDepends = [ base ]; - testHaskellDepends = [ - base - containers - QuickCheck - test-framework - test-framework-quickcheck2 - ]; - description = "Continued fractions"; - license = lib.licenses.publicDomain; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "continuum" = callPackage ( { mkDerivation, @@ -160528,34 +88821,6 @@ self: { } ) { }; - "control" = callPackage ( - { - mkDerivation, - base, - basic, - stm, - template-haskell, - transformers, - }: - mkDerivation { - pname = "control"; - version = "0.1.1.0"; - sha256 = "1393w30mgzhgppfrzjsh62gdw9agbjfxw9ahxphjabf0zdf34xzg"; - revision = "1"; - editedCabalFile = "1nngr12zwv1lxjq79qcxrwrw86yvyg1cxiahy3jn46bnw0k20ym2"; - libraryHaskellDepends = [ - base - basic - stm - template-haskell - transformers - ]; - description = "Class of monad transformers which control operations can be lifted thru"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "control-block" = callPackage ( { mkDerivation, @@ -160660,202 +88925,6 @@ self: { } ) { }; - "control-iso" = callPackage ( - { - mkDerivation, - base, - bytestring, - newtype-generics, - profunctors, - text, - }: - mkDerivation { - pname = "control-iso"; - version = "0.1.0.2"; - sha256 = "0n4n2m4r06wcmsa98gvfrlfn92sbjg2arkdb4y00p9yfxq7a963d"; - libraryHaskellDepends = [ - base - bytestring - newtype-generics - profunctors - text - ]; - description = "A typeclass for type isomorphisms"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "control-monad-attempt" = callPackage ( - { - mkDerivation, - attempt, - base, - transformers, - }: - mkDerivation { - pname = "control-monad-attempt"; - version = "0.3.0.1"; - sha256 = "140n27vdbyjz5qycrwlrmyd7s48fxcl6msl16g7czg40k5y23j5s"; - libraryHaskellDepends = [ - attempt - base - transformers - ]; - description = "Monad transformer for attempt. (deprecated)"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "control-monad-exception" = callPackage ( - { - mkDerivation, - base, - failure, - lifted-base, - monad-control, - monadloc, - transformers, - transformers-base, - }: - mkDerivation { - pname = "control-monad-exception"; - version = "0.11.4"; - sha256 = "124qqhr4w9b224bdfm88dvxfsalcki46yc06swm52jirag06hn6r"; - libraryHaskellDepends = [ - base - failure - lifted-base - monad-control - monadloc - transformers - transformers-base - ]; - description = "Explicitly typed, checked exceptions with stack traces"; - license = lib.licenses.publicDomain; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "control-monad-exception-monadsfd" = callPackage ( - { - mkDerivation, - base, - control-monad-exception, - monads-fd, - transformers, - }: - mkDerivation { - pname = "control-monad-exception-monadsfd"; - version = "0.10.3"; - sha256 = "1izyxqry863jg9i88gcs7cib39q9c2mnm74mxdyl1d84kj1hrnim"; - libraryHaskellDepends = [ - base - control-monad-exception - monads-fd - transformers - ]; - description = "Monads-fd instances for the EMT exceptions monad transformer"; - license = lib.licenses.publicDomain; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "control-monad-exception-monadstf" = callPackage ( - { - mkDerivation, - base, - control-monad-exception, - monads-tf, - transformers, - }: - mkDerivation { - pname = "control-monad-exception-monadstf"; - version = "0.10.3"; - sha256 = "1qj4y71g5p6b4aa5wn5fp4i5c9iw0pdrqs9yvzr6f41v6knw16za"; - libraryHaskellDepends = [ - base - control-monad-exception - monads-tf - transformers - ]; - description = "Monads-tf instances for the EMT exceptions monad transformer"; - license = lib.licenses.publicDomain; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "control-monad-exception-mtl" = callPackage ( - { - mkDerivation, - base, - control-monad-exception, - mtl, - }: - mkDerivation { - pname = "control-monad-exception-mtl"; - version = "0.10.3"; - sha256 = "1wwqn3xcd2fspfd2cnf9cym0cbbgvlajr3pkx7f2v3b37mx6blni"; - libraryHaskellDepends = [ - base - control-monad-exception - mtl - ]; - doHaddock = false; - description = "MTL instances for the EMT exceptions monad transformer"; - license = lib.licenses.publicDomain; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "control-monad-failure" = callPackage ( - { - mkDerivation, - base, - failure, - transformers, - }: - mkDerivation { - pname = "control-monad-failure"; - version = "0.7.0.1"; - sha256 = "1g304wb1fhx81iw2vv7nv6cp2qmy69frwiv3vax85lxw03s4nlkq"; - libraryHaskellDepends = [ - base - failure - transformers - ]; - description = "A class for monads which can fail with an error. (deprecated)"; - license = lib.licenses.publicDomain; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "control-monad-failure-mtl" = callPackage ( - { - mkDerivation, - base, - failure, - mtl, - }: - mkDerivation { - pname = "control-monad-failure-mtl"; - version = "0.7.1"; - sha256 = "0j9i85vq033789vx2589mfqwk954hqy1wla527ssbyf05k6vkn8j"; - libraryHaskellDepends = [ - base - failure - mtl - ]; - description = "A class for monads which can fail with an error for mtl 1 (deprecated)"; - license = lib.licenses.publicDomain; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "control-monad-free" = callPackage ( { mkDerivation, @@ -160977,52 +89046,6 @@ self: { } ) { }; - "contstuff-monads-tf" = callPackage ( - { - mkDerivation, - base, - contstuff, - monads-tf, - }: - mkDerivation { - pname = "contstuff-monads-tf"; - version = "0.2.1"; - sha256 = "0j4y76ar0m642jxcyrvlrxagawrlq637cvx3fqprw5sl5cslgxh5"; - libraryHaskellDepends = [ - base - contstuff - monads-tf - ]; - description = "ContStuff instances for monads-tf transformers (deprecated)"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "contstuff-transformers" = callPackage ( - { - mkDerivation, - base, - contstuff, - transformers, - }: - mkDerivation { - pname = "contstuff-transformers"; - version = "0.1.1"; - sha256 = "0b5vskp1bxqpi4ffcxwjw6kr0jd6n8v8jlhf03p54ckfd5ym4ai6"; - libraryHaskellDepends = [ - base - contstuff - transformers - ]; - description = "Deprecated interface between contstuff 0.7.0 and the transformers package"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "converge" = callPackage ( { mkDerivation, base }: mkDerivation { @@ -161164,104 +89187,6 @@ self: { } ) { }; - "convert" = callPackage ( - { - mkDerivation, - ansi-wl-pprint, - base, - bytestring, - containers, - data-default, - impossible, - lens, - template-haskell, - text, - utf8-string, - }: - mkDerivation { - pname = "convert"; - version = "1.5.1"; - sha256 = "044syln587z5mc4fia0d81p47rpkbvzkyyrcxyckqkh2yj3b2k85"; - libraryHaskellDepends = [ - ansi-wl-pprint - base - bytestring - containers - data-default - impossible - lens - template-haskell - text - utf8-string - ]; - description = "Safe and unsafe data conversion utilities with strong type-level operation. checking."; - license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "convert-annotation" = callPackage ( - { - mkDerivation, - aeson, - base, - bytestring, - cassava, - containers, - deepseq, - HTTP, - inline-r, - lens, - lens-aeson, - optparse-generic, - pipes, - pipes-bytestring, - pipes-csv, - req, - safe, - text, - vector, - }: - mkDerivation { - pname = "convert-annotation"; - version = "0.5.1.0"; - sha256 = "1m6b5b7drgxb6cc4qqhi9s5k93rpsny7yf83a9m5q0a585nwmk0q"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson - base - bytestring - containers - deepseq - HTTP - inline-r - lens - lens-aeson - req - safe - text - ]; - executableHaskellDepends = [ - base - bytestring - cassava - inline-r - lens - optparse-generic - pipes - pipes-bytestring - pipes-csv - text - vector - ]; - description = "Convert the annotation of a gene to another in a delimited file using a variety of different databases"; - license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - mainProgram = "convert-annotation"; - } - ) { }; - "convert-units" = callPackage ( { mkDerivation, @@ -161334,74 +89259,6 @@ self: { } ) { }; - "convertible-ascii" = callPackage ( - { - mkDerivation, - ascii, - base, - base-unicode-symbols, - blaze-builder, - bytestring, - convertible-text, - failure, - text, - }: - mkDerivation { - pname = "convertible-ascii"; - version = "0.1.0.1"; - sha256 = "0yzfq0r430ziclxn44k9x3jwl675gs3lafr5d1cb6y9j20fl1sjw"; - libraryHaskellDepends = [ - ascii - base - base-unicode-symbols - blaze-builder - bytestring - convertible-text - failure - text - ]; - description = "convertible instances for ascii"; - license = lib.licenses.publicDomain; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "convertible-text" = callPackage ( - { - mkDerivation, - attempt, - base, - bytestring, - containers, - old-time, - template-haskell, - text, - time, - }: - mkDerivation { - pname = "convertible-text"; - version = "0.4.0.2"; - sha256 = "1wqpl9dms1rsd24d00f18l9sm601nm6kr7h4ig8y70jdzy8w73fz"; - revision = "1"; - editedCabalFile = "0fa9n4dpz5qli4svcgahl2amhbz42xmsynfhzm2sb4fv23l7w73g"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - attempt - base - bytestring - containers - old-time - template-haskell - text - time - ]; - description = "Typeclasses and instances for converting between types (deprecated)"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "convex-schema-parser" = callPackage ( { mkDerivation, @@ -161661,36 +89518,6 @@ self: { } ) { }; - "coordinate" = callPackage ( - { - mkDerivation, - base, - HUnit, - lens, - papa, - transformers, - }: - mkDerivation { - pname = "coordinate"; - version = "0.2"; - sha256 = "1sph59d8008amhb4pi4gk8ymwjf2r6iy378phriqb42zy01bn0vb"; - libraryHaskellDepends = [ - base - lens - papa - transformers - ]; - testHaskellDepends = [ - base - HUnit - lens - ]; - description = "A representation of latitude and longitude"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "copilot" = callPackage ( { mkDerivation, @@ -161918,43 +89745,11 @@ self: { QuickCheck random test-framework - test-framework-hunit - test-framework-quickcheck2 - unix - ]; - description = "A compiler for Copilot targeting C99"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "copilot-cbmc" = callPackage ( - { - mkDerivation, - base, - bytestring, - copilot-c99, - copilot-core, - copilot-sbv, - directory, - pretty, - process, - }: - mkDerivation { - pname = "copilot-cbmc"; - version = "2.2.1"; - sha256 = "0xcm6qgylhvnjaih1jbl4dripik10nqm6536rdspj6kzg81qifd9"; - libraryHaskellDepends = [ - base - bytestring - copilot-c99 - copilot-core - copilot-sbv - directory - pretty - process + test-framework-hunit + test-framework-quickcheck2 + unix ]; - description = "Copilot interface to a C model-checker"; + description = "A compiler for Copilot targeting C99"; license = lib.licenses.bsd3; hydraPlatforms = lib.platforms.none; } @@ -162342,36 +90137,6 @@ self: { } ) { }; - "copilot-sbv" = callPackage ( - { - mkDerivation, - base, - containers, - copilot-core, - directory, - filepath, - pretty, - sbv, - }: - mkDerivation { - pname = "copilot-sbv"; - version = "2.2.1"; - sha256 = "00gym2xadw7zi5mrkfrnvxi6cr7c5rgmbwiflrif63j2q7v0z25l"; - libraryHaskellDepends = [ - base - containers - copilot-core - directory - filepath - pretty - sbv - ]; - description = "A compiler for CoPilot targeting SBV"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "copilot-theorem" = callPackage ( { mkDerivation, @@ -162682,48 +90447,6 @@ self: { } ) { }; - "copr" = callPackage ( - { - mkDerivation, - aeson, - base, - bytestring, - containers, - hlint, - HsOpenSSL, - http-streams, - io-streams, - semigroups, - text, - }: - mkDerivation { - pname = "copr"; - version = "1.1.1"; - sha256 = "0zgg60ri8yvz96gk08wdfn0445wqszigh2p0964nr2zdnffq5rnw"; - revision = "1"; - editedCabalFile = "0994z9ivgxaw8qslmqqhcnyy4q4q90nyczb4wklylzr5gnzbi7zg"; - libraryHaskellDepends = [ - aeson - base - bytestring - containers - HsOpenSSL - http-streams - io-streams - semigroups - text - ]; - testHaskellDepends = [ - base - hlint - ]; - description = "Haskell interface to the Fedora Copr system"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "copr-api" = callPackage ( { mkDerivation, @@ -162820,70 +90543,6 @@ self: { } ) { }; - "core" = callPackage ( - { - mkDerivation, - base, - bytestring, - parsec, - pretty, - }: - mkDerivation { - pname = "core"; - version = "0.5"; - sha256 = "1fqgfbd3in8l84250kda67paakz4sr2ywf5qzsy403546w7q9ccz"; - libraryHaskellDepends = [ - base - bytestring - parsec - pretty - ]; - description = "External core parser and pretty printer"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "core-compiler" = callPackage ( - { - mkDerivation, - alex, - array, - base, - containers, - happy, - text, - unordered-containers, - }: - mkDerivation { - pname = "core-compiler"; - version = "0.1.0.2"; - sha256 = "1bz7lxklbsw12y0v89nvrcyy7m35zb0cldn0wzyxz4h5szx5cji6"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - containers - text - unordered-containers - ]; - executableHaskellDepends = [ - array - base - ]; - executableToolDepends = [ - alex - happy - ]; - description = "compile your own mini functional language with Core"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - mainProgram = "core-compiler-exe"; - broken = true; - } - ) { }; - "core-data" = callPackage ( { mkDerivation, @@ -162954,34 +90613,6 @@ self: { } ) { }; - "core-haskell" = callPackage ( - { - mkDerivation, - base, - haskeline, - haskell-src-exts, - hint, - }: - mkDerivation { - pname = "core-haskell"; - version = "0.6.4"; - sha256 = "1wjmj2p8j6xw7cga01jsjgpi4dswrxif3j6mml48fq8a4k19zqxr"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - haskeline - haskell-src-exts - hint - ]; - description = "A subset of Haskell using in UCC for teaching purpose"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "core-haskell"; - broken = true; - } - ) { }; - "core-program" = callPackage ( { mkDerivation, @@ -163247,74 +90878,6 @@ self: { } ) { }; - "corebot-bliki" = callPackage ( - { - mkDerivation, - aeson, - base, - blaze-builder, - bytestring, - containers, - directory, - filepath, - filestore, - http-types, - monads-tf, - pandoc, - template-haskell, - text, - time, - yesod, - }: - mkDerivation { - pname = "corebot-bliki"; - version = "0.2.2.0"; - sha256 = "10pfz4bw1wh55c2cizd8jiwh8bkaqw9p773976vl52f0jrhns1qg"; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - aeson - base - blaze-builder - bytestring - containers - directory - filepath - filestore - http-types - monads-tf - pandoc - template-haskell - text - time - yesod - ]; - executableHaskellDepends = [ - aeson - base - blaze-builder - bytestring - containers - directory - filepath - filestore - http-types - monads-tf - pandoc - template-haskell - text - time - yesod - ]; - description = "A bliki written using yesod. Uses pandoc to process files stored in git."; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "corebot-bliki"; - broken = true; - } - ) { }; - "corecursive-main" = callPackage ( { mkDerivation, @@ -163349,57 +90912,6 @@ self: { } ) { }; - "corenlp-parser" = callPackage ( - { - mkDerivation, - aeson, - async, - base, - cryptonite, - data-default, - directory, - process, - raw-strings-qq, - rocksdb, - rocksdb-haskell, - safe-exceptions, - split, - store, - string-class, - temporary, - text, - unordered-containers, - }: - mkDerivation { - pname = "corenlp-parser"; - version = "0.4.0.0"; - sha256 = "0li43xmig52npq9dc1nm5sv876nw7n1g4r3djy5saw3h38sz1zdz"; - libraryHaskellDepends = [ - aeson - async - base - cryptonite - data-default - directory - process - raw-strings-qq - rocksdb-haskell - safe-exceptions - split - store - string-class - temporary - text - unordered-containers - ]; - librarySystemDepends = [ rocksdb ]; - description = "Launches CoreNLP and parses the JSON output"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { inherit (pkgs) rocksdb; }; - "corenlp-types" = callPackage ( { mkDerivation, @@ -163629,349 +91141,6 @@ self: { } ) { }; - "coroutine-enumerator" = callPackage ( - { - mkDerivation, - base, - enumerator, - monad-coroutine, - }: - mkDerivation { - pname = "coroutine-enumerator"; - version = "0.1.1"; - sha256 = "1rjbhpy5vw1maawi47jsrnagqm19say9w1i31pgcpxl45vhrshp7"; - libraryHaskellDepends = [ - base - enumerator - monad-coroutine - ]; - description = "Bridge between the monad-coroutine and enumerator packages"; - license = "GPL"; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "coroutine-iteratee" = callPackage ( - { - mkDerivation, - base, - iteratee, - monad-coroutine, - }: - mkDerivation { - pname = "coroutine-iteratee"; - version = "0.1.1"; - sha256 = "1ycir4kwpcz34yg64cdb9q0jxv3ma12vrrs28cr5jm64jmi8m0wd"; - libraryHaskellDepends = [ - base - iteratee - monad-coroutine - ]; - description = "Bridge between the monad-coroutine and iteratee packages"; - license = "GPL"; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "coroutine-object" = callPackage ( - { - mkDerivation, - base, - either, - free, - mtl, - transformers, - }: - mkDerivation { - pname = "coroutine-object"; - version = "0.3.0"; - sha256 = "1hgpy3fswhars994mz3756firiy0g5brx7w9is4nfhg8mr5vf3yg"; - libraryHaskellDepends = [ - base - either - free - mtl - transformers - ]; - description = "Object-oriented programming realization using coroutine"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "couch-hs" = callPackage ( - { - mkDerivation, - aeson, - attoparsec, - base, - bytestring, - hint, - random, - text, - transformers, - vector, - }: - mkDerivation { - pname = "couch-hs"; - version = "0.1.6"; - sha256 = "0mrx0mjh9kzk6nx53gn5hvhjgmhlwphxkl5yn9a1x17l62v3x6q7"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson - attoparsec - base - bytestring - hint - random - text - transformers - vector - ]; - description = "A CouchDB view server for Haskell"; - license = lib.licenses.publicDomain; - hydraPlatforms = lib.platforms.none; - mainProgram = "couch-hs"; - broken = true; - } - ) { }; - - "couch-simple" = callPackage ( - { - mkDerivation, - aeson, - attoparsec, - base, - bifunctors, - bytestring, - couchdb, - data-default, - directory, - exceptions, - filepath, - hjsonschema, - hlint, - http-client, - http-types, - integer-gmp, - mtl, - random, - tasty, - tasty-hunit, - text, - transformers, - unordered-containers, - uuid, - vector, - }: - mkDerivation { - pname = "couch-simple"; - version = "0.0.1.0"; - sha256 = "17dba5h80ahjvp75wwnvvckg0lfl1aq4pfiakrr1rwvr770sqqmz"; - libraryHaskellDepends = [ - aeson - attoparsec - base - bifunctors - bytestring - data-default - exceptions - http-client - http-types - integer-gmp - mtl - text - transformers - unordered-containers - uuid - vector - ]; - testHaskellDepends = [ - aeson - base - bytestring - data-default - directory - exceptions - filepath - hjsonschema - hlint - http-client - http-types - random - tasty - tasty-hunit - text - transformers - unordered-containers - uuid - ]; - testToolDepends = [ couchdb ]; - description = "A modern, lightweight, complete client for CouchDB"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - } - ) { couchdb = null; }; - - "couchdb-conduit" = callPackage ( - { - mkDerivation, - aeson, - attoparsec, - attoparsec-conduit, - base, - blaze-builder, - bytestring, - conduit, - containers, - data-default, - http-conduit, - http-types, - HUnit, - lifted-base, - monad-control, - resourcet, - string-conversions, - syb, - test-framework, - test-framework-hunit, - text, - transformers, - transformers-base, - unordered-containers, - vector, - }: - mkDerivation { - pname = "couchdb-conduit"; - version = "0.10.6"; - sha256 = "0rp5pj56m9n20g5hjjw8gbx81lb2z0ckwpgpvyr2a5sgk6b7z2al"; - libraryHaskellDepends = [ - aeson - attoparsec - attoparsec-conduit - base - blaze-builder - bytestring - conduit - containers - data-default - http-conduit - http-types - lifted-base - monad-control - resourcet - string-conversions - syb - text - transformers - unordered-containers - vector - ]; - testHaskellDepends = [ - aeson - attoparsec - attoparsec-conduit - base - blaze-builder - bytestring - conduit - containers - data-default - http-conduit - http-types - HUnit - lifted-base - monad-control - string-conversions - syb - test-framework - test-framework-hunit - text - transformers - transformers-base - unordered-containers - ]; - description = "Couch DB client library using http-conduit and aeson"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "couchdb-enumerator" = callPackage ( - { - mkDerivation, - aeson, - attoparsec, - attoparsec-enumerator, - base, - bytestring, - enumerator, - http-enumerator, - http-types, - HUnit, - lifted-base, - monad-control, - QuickCheck, - test-framework, - test-framework-hunit, - test-framework-quickcheck2, - text, - transformers, - unordered-containers, - utf8-string, - vector, - }: - mkDerivation { - pname = "couchdb-enumerator"; - version = "0.3.7"; - sha256 = "02h0a61dbchyjp0shpj0shsdfcggx0cm5psxgw9g67vv3v8f98pn"; - libraryHaskellDepends = [ - aeson - attoparsec - attoparsec-enumerator - base - bytestring - enumerator - http-enumerator - http-types - lifted-base - monad-control - text - transformers - unordered-containers - utf8-string - ]; - testHaskellDepends = [ - aeson - attoparsec - attoparsec-enumerator - base - bytestring - enumerator - http-enumerator - http-types - HUnit - lifted-base - monad-control - QuickCheck - test-framework - test-framework-hunit - test-framework-quickcheck2 - text - transformers - unordered-containers - utf8-string - vector - ]; - description = "Couch DB client library using http-enumerator and aeson"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "count" = callPackage ( { mkDerivation, base }: mkDerivation { @@ -164086,27 +91255,6 @@ self: { } ) { }; - "counter" = callPackage ( - { - mkDerivation, - base, - containers, - }: - mkDerivation { - pname = "counter"; - version = "0.1.0.2"; - sha256 = "0jc34nrbzxzilrr1s2k7krrp9g5xc40hpf2srw6mccfrcsyacsnc"; - libraryHaskellDepends = [ - base - containers - ]; - description = "An object frequency counter"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "country" = callPackage ( { mkDerivation, @@ -164178,147 +91326,6 @@ self: { } ) { }; - "country-codes" = callPackage ( - { - mkDerivation, - aeson, - base, - deepseq, - HTF, - HUnit, - shakespeare, - text, - }: - mkDerivation { - pname = "country-codes"; - version = "0.1.4"; - sha256 = "1ilzknxzppldprxvq6lxc1cn2l91iipfh62i9brjqa0jaicidzz3"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson - base - deepseq - shakespeare - text - ]; - testHaskellDepends = [ - aeson - base - HTF - HUnit - ]; - description = "ISO 3166 country codes and i18n names"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "courier" = callPackage ( - { - mkDerivation, - async, - base, - bytestring, - cereal, - containers, - directory, - hslogger, - HUnit, - network, - stm, - test-framework, - test-framework-hunit, - text, - uuid, - }: - mkDerivation { - pname = "courier"; - version = "0.1.1.5"; - sha256 = "1lrlqdxd19yj05hhvla1nc4a81rqkf2r4a6sffqlgqrxyd7ng7mc"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - async - base - bytestring - cereal - containers - hslogger - network - stm - text - uuid - ]; - executableHaskellDepends = [ - base - cereal - ]; - testHaskellDepends = [ - async - base - cereal - containers - directory - hslogger - HUnit - network - stm - test-framework - test-framework-hunit - ]; - description = "A message-passing library for simplifying network applications"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "court" = callPackage ( - { - mkDerivation, - aeson, - base, - bytestring, - directory, - filepath, - old-locale, - optparse-applicative, - process, - stm, - text, - time, - unix, - }: - mkDerivation { - pname = "court"; - version = "0.1.0.1"; - sha256 = "1yv3lj86fkaf9mfxb97ic5v8hm4xx0vv3q4qj0c9n0ki21ymsa5z"; - isLibrary = false; - isExecutable = true; - enableSeparateDataOutput = true; - executableHaskellDepends = [ - aeson - base - bytestring - directory - filepath - old-locale - optparse-applicative - process - stm - text - time - unix - ]; - description = "Simple and flexible CI system"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "covariance" = callPackage ( { mkDerivation, @@ -164423,32 +91430,6 @@ self: { } ) { }; - "coverage" = callPackage ( - { - mkDerivation, - base, - hspec, - HUnit, - QuickCheck, - }: - mkDerivation { - pname = "coverage"; - version = "0.1.0.4"; - sha256 = "1nl2wzvv9azba96haaa19vx87qrdfnm0y8sj3f24yvc0byg4kdyr"; - libraryHaskellDepends = [ base ]; - testHaskellDepends = [ - base - hspec - HUnit - QuickCheck - ]; - description = "Exhaustivity Checking Library"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "coya" = callPackage ( { mkDerivation, @@ -164511,86 +91492,6 @@ self: { } ) { libcozo_c = null; }; - "cparsing" = callPackage ( - { - mkDerivation, - base, - containers, - directory, - either, - filepath, - HUnit, - lens, - mtl, - parsec, - split, - template-haskell, - transformers, - }: - mkDerivation { - pname = "cparsing"; - version = "0.1.0.0"; - sha256 = "0yq09q03j9wsgq0pl92b6c4rs9v1nv7znylwzwsbj3x7fp01n6pc"; - libraryHaskellDepends = [ - base - containers - directory - either - filepath - HUnit - lens - mtl - parsec - split - template-haskell - transformers - ]; - description = "A simple C++ parser with preprocessor features. C++ refactorings included."; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "cpio-conduit" = callPackage ( - { - mkDerivation, - base, - base16-bytestring, - binary, - bytestring, - conduit, - conduit-extra, - resourcet, - }: - mkDerivation { - pname = "cpio-conduit"; - version = "0.7.0"; - sha256 = "04zma03ivg9x5f1xkdpc828fk2lh6qrn7cig7gprci13id9yf2wg"; - libraryHaskellDepends = [ - base - base16-bytestring - binary - bytestring - conduit - conduit-extra - ]; - testHaskellDepends = [ - base - base16-bytestring - binary - bytestring - conduit - conduit-extra - resourcet - ]; - description = "Conduit-based CPIO"; - license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "cpkg" = callPackage ( { mkDerivation, @@ -164719,39 +91620,6 @@ self: { } ) { inherit (pkgs) cplex; }; - "cplusplus-th" = callPackage ( - { - mkDerivation, - base, - bytestring, - containers, - process, - QuickCheck, - template-haskell, - }: - mkDerivation { - pname = "cplusplus-th"; - version = "1.0.0.0"; - sha256 = "0gmsn35rd6ij4ax4j626hg9pdb40ilj22zg0nxrnl6n1828a9rqj"; - libraryHaskellDepends = [ - base - bytestring - containers - process - template-haskell - ]; - testHaskellDepends = [ - base - process - QuickCheck - ]; - description = "C++ Foreign Import Generation"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "cpmonad" = callPackage ( { mkDerivation, @@ -164928,34 +91796,6 @@ self: { } ) { }; - "cprng-aes-effect" = callPackage ( - { - mkDerivation, - base, - cprng-aes, - crypto-random, - crypto-random-effect, - extensible-effects, - }: - mkDerivation { - pname = "cprng-aes-effect"; - version = "0.1.0.2"; - sha256 = "0443h7jfpjvc6vmp3kfx0h6j2aynvgfznssz7lin9fmsxghlvsfb"; - revision = "1"; - editedCabalFile = "0zh5l6h0z88dxsy55wmnxs0bznh9ddviibvfjxkdlr0ppd922xdr"; - libraryHaskellDepends = [ - base - cprng-aes - crypto-random - crypto-random-effect - extensible-effects - ]; - description = "Run random effect using cprng-aes, a crypto pseudo number generator"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "cps-except" = callPackage ( { mkDerivation, @@ -165086,32 +91926,6 @@ self: { } ) { }; - "cpuperf" = callPackage ( - { - mkDerivation, - base, - mtl, - process, - }: - mkDerivation { - pname = "cpuperf"; - version = "0.1.1"; - sha256 = "1xnmrm3agkxziflvanihckg6q97z5w9gh7yv7mbbc7gqax3sz6l0"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - mtl - process - ]; - description = "Modify the cpu frequency on OpenBSD systems"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "cpuperf"; - broken = true; - } - ) { }; - "cpython" = callPackage ( { mkDerivation, @@ -165293,30 +92107,6 @@ self: { } ) { }; - "cql-io-tinylog" = callPackage ( - { - mkDerivation, - base, - bytestring, - cql-io, - tinylog, - }: - mkDerivation { - pname = "cql-io-tinylog"; - version = "0.1.0"; - sha256 = "14mr1i7g61h25fn2xa02iyzq1mxcgzkisfmiakdakiya4zxjk10f"; - libraryHaskellDepends = [ - base - bytestring - cql-io - tinylog - ]; - description = "Tinylog integration for cql-io"; - license = lib.licenses.publicDomain; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "cqrs" = callPackage ( { mkDerivation, base }: mkDerivation { @@ -165330,314 +92120,6 @@ self: { } ) { }; - "cqrs-core" = callPackage ( - { - mkDerivation, - base, - bytestring, - containers, - deepseq, - io-streams, - transformers, - uuid-types, - }: - mkDerivation { - pname = "cqrs-core"; - version = "0.10.0"; - sha256 = "172zhfy4xjlyi23iv1dypnr83w3r63ids33ly9ynkpd7dywbkmr1"; - libraryHaskellDepends = [ - base - bytestring - containers - deepseq - io-streams - transformers - uuid-types - ]; - description = "Command-Query Responsibility Segregation"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "cqrs-example" = callPackage ( - { - mkDerivation, - aeson, - async, - base, - blaze-builder, - bytestring, - cereal, - containers, - cqrs-core, - cqrs-memory, - deepseq, - io-streams, - random, - scotty, - stm, - text, - transformers, - uuid-types, - wai-extra, - wai-middleware-static, - warp, - }: - mkDerivation { - pname = "cqrs-example"; - version = "0.10.0"; - sha256 = "1c2pc5g51z4gv19cwvz6klkkhh4r4yjcka70v49v6ncynb04hlzy"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - aeson - async - base - blaze-builder - bytestring - cereal - containers - cqrs-core - cqrs-memory - deepseq - io-streams - random - scotty - stm - text - transformers - uuid-types - wai-extra - wai-middleware-static - warp - ]; - description = "Example for cqrs package"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - mainProgram = "cqrs-example"; - } - ) { }; - - "cqrs-memory" = callPackage ( - { - mkDerivation, - base, - bytestring, - containers, - cqrs-core, - cqrs-testkit, - hspec, - io-streams, - random, - stm, - uuid-types, - }: - mkDerivation { - pname = "cqrs-memory"; - version = "0.10.0"; - sha256 = "1w4q4xih04ab52j5wh00wlmc5jrbk05ilxy8iklwi8wxlfy57w1n"; - libraryHaskellDepends = [ - base - bytestring - containers - cqrs-core - io-streams - stm - uuid-types - ]; - testHaskellDepends = [ - base - cqrs-core - cqrs-testkit - hspec - random - ]; - description = "Memory backend for the cqrs package"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "cqrs-postgresql" = callPackage ( - { - mkDerivation, - base, - bytestring, - bytestring-lexing, - cqrs-core, - cqrs-testkit, - deepseq, - enclosed-exceptions, - hspec, - io-streams, - pg-harness-client, - postgresql-libpq, - random, - resource-pool, - text, - time, - transformers, - uuid-types, - }: - mkDerivation { - pname = "cqrs-postgresql"; - version = "0.10.0"; - sha256 = "0c7al166jksbkny0zvy3pzq0zxxpqj2rl8asq5wql17zqd4248p4"; - libraryHaskellDepends = [ - base - bytestring - bytestring-lexing - cqrs-core - deepseq - enclosed-exceptions - io-streams - postgresql-libpq - resource-pool - text - time - transformers - uuid-types - ]; - testHaskellDepends = [ - base - bytestring - cqrs-core - cqrs-testkit - hspec - io-streams - pg-harness-client - postgresql-libpq - random - resource-pool - uuid-types - ]; - description = "PostgreSQL backend for the cqrs package"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "cqrs-sqlite3" = callPackage ( - { - mkDerivation, - base, - bytestring, - conduit, - cqrs-test, - cqrs-types, - direct-sqlite, - hspec, - pool-conduit, - text, - transformers, - }: - mkDerivation { - pname = "cqrs-sqlite3"; - version = "0.9.0"; - sha256 = "086g5z7ajr2x2didd0q8qcvnxdsf2gfrn27436gbj8y81cbg0fsh"; - libraryHaskellDepends = [ - base - bytestring - conduit - cqrs-types - direct-sqlite - pool-conduit - text - transformers - ]; - testHaskellDepends = [ - base - bytestring - conduit - cqrs-test - direct-sqlite - hspec - pool-conduit - text - transformers - ]; - description = "SQLite3 backend for the cqrs package"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "cqrs-test" = callPackage ( - { - mkDerivation, - base, - bytestring, - conduit, - cqrs-types, - hspec, - HUnit, - pool-conduit, - stm, - transformers, - }: - mkDerivation { - pname = "cqrs-test"; - version = "0.9.0"; - sha256 = "1i47c2d7c64kp63spm12jkwg3g21i0z4n9z9gdwvmsr1s638k5gl"; - libraryHaskellDepends = [ - base - bytestring - conduit - cqrs-types - hspec - HUnit - pool-conduit - stm - transformers - ]; - description = "Command-Query Responsibility Segregation Test Support"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "cqrs-testkit" = callPackage ( - { - mkDerivation, - base, - bytestring, - containers, - cqrs-core, - deepseq, - hspec, - HUnit, - io-streams, - lifted-base, - random, - transformers, - uuid-types, - }: - mkDerivation { - pname = "cqrs-testkit"; - version = "0.10.0"; - sha256 = "1mg7zkqcl3jmqnsk5frpbixvxmdkidh46s1g3pj0wfwa91rd5j2h"; - libraryHaskellDepends = [ - base - bytestring - containers - cqrs-core - deepseq - hspec - HUnit - io-streams - lifted-base - random - transformers - uuid-types - ]; - description = "Command-Query Responsibility Segregation Test Support"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "cqrs-types" = callPackage ( { mkDerivation, base }: mkDerivation { @@ -165651,62 +92133,6 @@ self: { } ) { }; - "cr" = callPackage ( - { - mkDerivation, - base, - cmdargs, - directory, - process, - shelly, - text, - transformers, - unix, - }: - mkDerivation { - pname = "cr"; - version = "1.2"; - sha256 = "107chyp8br2ryjqdf7100109k0wg3jawzva76wf4r6fndjr3gin1"; - isLibrary = false; - isExecutable = true; - enableSeparateDataOutput = true; - executableHaskellDepends = [ - base - cmdargs - directory - process - shelly - text - transformers - unix - ]; - description = "Code review tool"; - license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - mainProgram = "cr"; - broken = true; - } - ) { }; - - "crack" = callPackage ( - { - mkDerivation, - base, - crack, - }: - mkDerivation { - pname = "crack"; - version = "0.1"; - sha256 = "0rfwvvb3q0a7z8is95yjh3wfvz818xyblp1hrwh8fwddppncrzrk"; - libraryHaskellDepends = [ base ]; - librarySystemDepends = [ crack ]; - description = "A haskell binding to cracklib"; - license = "GPL"; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { crack = null; }; - "crackNum" = callPackage ( { mkDerivation, @@ -165802,339 +92228,6 @@ self: { } ) { }; - "craft" = callPackage ( - { - mkDerivation, - aeson, - aeson-pretty, - ansi-terminal, - async, - base, - bytestring, - conduit, - conduit-combinators, - conduit-extra, - containers, - cryptonite, - derive, - directory, - exceptions, - fast-logger, - filepath, - formatting, - free, - hspec, - hspec-megaparsec, - ini, - lens, - lifted-base, - megaparsec, - memory, - MissingH, - monad-logger, - mtl, - path, - path-io, - process, - process-extras, - pureMD5, - QuickCheck, - random, - split, - streaming-commons, - template-haskell, - text, - transformers, - unix, - unordered-containers, - versions, - wreq, - yaml, - }: - mkDerivation { - pname = "craft"; - version = "0.0.0.1"; - sha256 = "1lvaxgb8m2i8q48d6jz2364gl58sqnvhq5xg6k4c05d1mx18rjrl"; - libraryHaskellDepends = [ - aeson - aeson-pretty - ansi-terminal - async - base - bytestring - conduit - conduit-combinators - conduit-extra - containers - cryptonite - derive - directory - exceptions - fast-logger - filepath - formatting - free - ini - lens - lifted-base - megaparsec - memory - MissingH - monad-logger - mtl - path - path-io - process - process-extras - pureMD5 - QuickCheck - random - split - streaming-commons - template-haskell - text - transformers - unix - unordered-containers - versions - wreq - yaml - ]; - testHaskellDepends = [ - base - hspec - hspec-megaparsec - megaparsec - QuickCheck - ]; - description = "A UNIX configuration management library in Haskell"; - license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "craftwerk" = callPackage ( - { - mkDerivation, - base, - colour, - mtl, - vector-space, - }: - mkDerivation { - pname = "craftwerk"; - version = "0.1"; - sha256 = "0002n3fq3afmby843gfi0dnwm2saq29w6hnn6lzqhsalw33j97d3"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - colour - mtl - vector-space - ]; - description = "2D graphics library with integrated TikZ output"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "craftwerk-cairo" = callPackage ( - { - mkDerivation, - base, - cairo, - craftwerk, - mtl, - }: - mkDerivation { - pname = "craftwerk-cairo"; - version = "0.1"; - sha256 = "16in87l2v49k785fldm7fvprywg0v497kz29jr22y91q5j5gnm4z"; - libraryHaskellDepends = [ - base - cairo - craftwerk - mtl - ]; - description = "Cairo backend for Craftwerk"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "craftwerk-gtk" = callPackage ( - { - mkDerivation, - base, - cairo, - containers, - craftwerk, - craftwerk-cairo, - gtk, - mtl, - }: - mkDerivation { - pname = "craftwerk-gtk"; - version = "0.1"; - sha256 = "18b63yh4p5ry38c3p6plyhk5j0gmmnyjw25r2dxdaddpnn051nff"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - cairo - containers - craftwerk - craftwerk-cairo - gtk - mtl - ]; - description = "Gtk UI for Craftwerk"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "crawlchain" = callPackage ( - { - mkDerivation, - base, - bytestring, - directory, - HsOpenSSL, - http-streams, - network-uri, - split, - tagsoup, - text, - time, - }: - mkDerivation { - pname = "crawlchain"; - version = "0.3.1.0"; - sha256 = "1w4bwd8aqqpzp5lj5rqnvzaqnr2hh0civ0rj1hjc0gdyb96mwd2s"; - libraryHaskellDepends = [ - base - bytestring - directory - HsOpenSSL - http-streams - network-uri - split - tagsoup - text - time - ]; - testHaskellDepends = [ - base - bytestring - directory - HsOpenSSL - http-streams - network-uri - split - tagsoup - text - time - ]; - description = "Simulation user crawl paths"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "craze" = callPackage ( - { - mkDerivation, - async, - base, - bytestring, - containers, - curl, - data-default-class, - doctest, - doctest-discover, - haxy, - hspec, - hspec-discover, - HTTP, - http-types, - lens, - lifted-async, - lifted-base, - monad-control, - mtl, - optparse-generic, - text, - transformers, - transformers-base, - }: - mkDerivation { - pname = "craze"; - version = "0.1.3.0"; - sha256 = "1nxil1b7c05r6jxq9298sy5nakiaki2864rhm2nld9jlr3ipww5j"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - async - base - bytestring - containers - curl - data-default-class - lens - lifted-async - lifted-base - monad-control - mtl - text - transformers - transformers-base - ]; - executableHaskellDepends = [ - base - bytestring - curl - lens - lifted-async - lifted-base - monad-control - mtl - optparse-generic - text - transformers - transformers-base - ]; - testHaskellDepends = [ - base - bytestring - curl - doctest - doctest-discover - haxy - hspec - hspec-discover - HTTP - http-types - lens - lifted-async - lifted-base - monad-control - mtl - text - transformers - transformers-base - ]; - testToolDepends = [ hspec-discover ]; - description = "HTTP Racing Library"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - mainProgram = "craze-example"; - } - ) { }; - "crc" = callPackage ( { mkDerivation, @@ -166176,27 +92269,6 @@ self: { } ) { }; - "crc16" = callPackage ( - { - mkDerivation, - base, - bytestring, - }: - mkDerivation { - pname = "crc16"; - version = "0.1.1"; - sha256 = "15x3xwq2vyg474m09jak1c2zx9w5acpfjgmy5jj4asxj33z9n7bz"; - libraryHaskellDepends = [ - base - bytestring - ]; - description = "Calculate the crc16-ccitt"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "crc16-table" = callPackage ( { mkDerivation, @@ -166433,52 +92505,6 @@ self: { } ) { }; - "credential-store" = callPackage ( - { - mkDerivation, - base, - bytestring, - containers, - cryptonite, - dbus, - memory, - safe-exceptions, - tasty, - tasty-hunit, - }: - mkDerivation { - pname = "credential-store"; - version = "0.1.2"; - sha256 = "114jdbpiyx8xnjxnpz05nqpnb5s29y1iv330b0i491vik8hvrbad"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - bytestring - containers - cryptonite - dbus - memory - safe-exceptions - ]; - executableHaskellDepends = [ - base - bytestring - ]; - testHaskellDepends = [ - base - bytestring - tasty - tasty-hunit - ]; - description = "Library to access secure credential storage providers"; - license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; - mainProgram = "credential-store-exe"; - broken = true; - } - ) { }; - "credentials" = callPackage ( { mkDerivation, @@ -166535,69 +92561,6 @@ self: { } ) { }; - "credentials-cli" = callPackage ( - { - mkDerivation, - aeson, - aeson-pretty, - amazonka, - amazonka-core, - amazonka-dynamodb, - attoparsec, - base, - bytestring, - conduit, - conduit-extra, - credentials, - cryptonite, - exceptions, - lens, - mmorph, - mtl, - optparse-applicative, - resourcet, - text, - transformers-base, - unordered-containers, - uri-bytestring, - }: - mkDerivation { - pname = "credentials-cli"; - version = "0.0.2"; - sha256 = "103rc970bd86h2vdvi1br37a6a3vnj6mfrhg9vg1kjdf5cjvi56i"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - aeson - aeson-pretty - amazonka - amazonka-core - amazonka-dynamodb - attoparsec - base - bytestring - conduit - conduit-extra - credentials - cryptonite - exceptions - lens - mmorph - mtl - optparse-applicative - resourcet - text - transformers-base - unordered-containers - uri-bytestring - ]; - description = "Secure Credentials Administration"; - license = "unknown"; - hydraPlatforms = lib.platforms.none; - mainProgram = "credentials"; - } - ) { }; - "creditmonad" = callPackage ( { mkDerivation, @@ -166681,180 +92644,6 @@ self: { } ) { }; - "crf-chain1" = callPackage ( - { - mkDerivation, - array, - base, - binary, - containers, - data-lens-light, - logfloat, - monad-codec, - parallel, - random, - sgd, - vector, - vector-binary-instances, - vector-th-unbox, - }: - mkDerivation { - pname = "crf-chain1"; - version = "0.2.3"; - sha256 = "0k805zqjqixicf4s0gs04jc1gijckcnrb3w43sykhhsbz194p0s2"; - libraryHaskellDepends = [ - array - base - binary - containers - data-lens-light - logfloat - monad-codec - parallel - random - sgd - vector - vector-binary-instances - vector-th-unbox - ]; - description = "First-order, linear-chain conditional random fields"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "crf-chain1-constrained" = callPackage ( - { - mkDerivation, - array, - base, - binary, - containers, - data-lens, - data-memocombinators, - logfloat, - monad-codec, - parallel, - pedestrian-dag, - random, - sgd, - vector, - vector-binary, - vector-th-unbox, - }: - mkDerivation { - pname = "crf-chain1-constrained"; - version = "0.6.0"; - sha256 = "0yzwvzknn0qd8d2b0fqk1lznz8fplv6gx8x5hlmhqmi2f625yav7"; - libraryHaskellDepends = [ - array - base - binary - containers - data-lens - data-memocombinators - logfloat - monad-codec - parallel - pedestrian-dag - random - sgd - vector - vector-binary - vector-th-unbox - ]; - description = "First-order, constrained, linear-chain conditional random fields"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "crf-chain2-generic" = callPackage ( - { - mkDerivation, - array, - base, - binary, - comonad-transformers, - containers, - data-lens, - logfloat, - monad-codec, - parallel, - sgd, - vector, - vector-binary, - }: - mkDerivation { - pname = "crf-chain2-generic"; - version = "0.3.0"; - sha256 = "104r52rf5q84bm6977bsfm4djcz8c08warfkk4xmympb0cmxkhxy"; - libraryHaskellDepends = [ - array - base - binary - comonad-transformers - containers - data-lens - logfloat - monad-codec - parallel - sgd - vector - vector-binary - ]; - description = "Second-order, generic, constrained, linear conditional random fields"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "crf-chain2-tiers" = callPackage ( - { - mkDerivation, - array, - base, - binary, - comonad, - containers, - data-lens, - data-memocombinators, - logfloat, - monad-codec, - parallel, - pedestrian-dag, - sgd, - vector, - vector-binary, - vector-th-unbox, - }: - mkDerivation { - pname = "crf-chain2-tiers"; - version = "0.6.0"; - sha256 = "14vn96vq7ck9xs1gnjmsxi6hr8mlpa6vbr53v2v4lmbav29jqrhr"; - libraryHaskellDepends = [ - array - base - binary - comonad - containers - data-lens - data-memocombinators - logfloat - monad-codec - parallel - pedestrian-dag - sgd - vector - vector-binary - vector-th-unbox - ]; - description = "Second-order, tiered, constrained, linear conditional random fields"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "critbit" = callPackage ( { mkDerivation, @@ -167257,281 +93046,6 @@ self: { } ) { }; - "criterion-plus" = callPackage ( - { - mkDerivation, - base, - criterion, - deepseq, - HTF, - HUnit, - loch-th, - monad-control, - mtl, - optparse-applicative, - placeholders, - QuickCheck, - statistics, - string-conversions, - system-fileio, - system-filepath, - text, - th-printf, - transformers, - transformers-base, - vector, - }: - mkDerivation { - pname = "criterion-plus"; - version = "0.1.3"; - sha256 = "127nqhp2gczbfqablvrrk92am4kpsnzhvyl4kcy98kdv313vcwdl"; - libraryHaskellDepends = [ - base - criterion - deepseq - loch-th - monad-control - mtl - optparse-applicative - placeholders - statistics - string-conversions - system-fileio - system-filepath - text - th-printf - transformers - transformers-base - vector - ]; - testHaskellDepends = [ - base - criterion - deepseq - HTF - HUnit - loch-th - monad-control - mtl - optparse-applicative - placeholders - QuickCheck - statistics - string-conversions - system-fileio - system-filepath - text - th-printf - transformers - transformers-base - vector - ]; - description = "Enhancement of the \"criterion\" benchmarking library"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "criterion-to-html" = callPackage ( - { - mkDerivation, - aeson, - base, - blaze-html, - blaze-markup, - bytestring, - containers, - filepath, - }: - mkDerivation { - pname = "criterion-to-html"; - version = "0.0.0.3"; - sha256 = "010x56czgipw3p1cfkx07mlcy4yj6advq3zzgrxpmjhrxzsa89xn"; - isLibrary = false; - isExecutable = true; - enableSeparateDataOutput = true; - executableHaskellDepends = [ - aeson - base - blaze-html - blaze-markup - bytestring - containers - filepath - ]; - description = "Convert criterion output to HTML reports"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "criterion-to-html"; - broken = true; - } - ) { }; - - "criu-rpc" = callPackage ( - { - mkDerivation, - base, - criu-rpc-types, - lens-family, - network, - process, - proto-lens, - text, - unix, - }: - mkDerivation { - pname = "criu-rpc"; - version = "0.0.2"; - sha256 = "1kk005fxchzc7ib3dldsks5ag4i2cjrsvb0mbibj2h4kx9z2d7lw"; - libraryHaskellDepends = [ - base - criu-rpc-types - lens-family - network - process - proto-lens - text - unix - ]; - description = "CRIU RPC client"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "criu-rpc-types" = callPackage ( - { - mkDerivation, - base, - proto-lens, - proto-lens-protoc, - protobuf, - }: - mkDerivation { - pname = "criu-rpc-types"; - version = "0.0.0.2"; - sha256 = "11nmp8qy7dd0rb8gvpis3j9gbwpwnk7zm8hi4igrgxphpkhn3fpz"; - setupHaskellDepends = [ - base - proto-lens-protoc - ]; - libraryHaskellDepends = [ - base - proto-lens - proto-lens-protoc - ]; - libraryPkgconfigDepends = [ protobuf ]; - description = "Criu RPC protocol buffer types"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { inherit (pkgs) protobuf; }; - - "crjdt-haskell" = callPackage ( - { - mkDerivation, - base, - containers, - free, - hedgehog, - hspec, - mtl, - text, - }: - mkDerivation { - pname = "crjdt-haskell"; - version = "0.3.0"; - sha256 = "1cxfmpvsm4zjaks6afcf7fjcr7k50p9nx2pasah6862j47j4npgc"; - revision = "1"; - editedCabalFile = "118xzpnj3mlhag71dhpr0lj35pfxkz5xgykw9wqjyfldqy53p00b"; - libraryHaskellDepends = [ - base - containers - free - mtl - text - ]; - testHaskellDepends = [ - base - containers - hedgehog - hspec - mtl - ]; - description = "A Conflict-Free Replicated JSON Datatype for Haskell"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "crockford" = callPackage ( - { - mkDerivation, - base, - digits, - QuickCheck, - safe, - }: - mkDerivation { - pname = "crockford"; - version = "0.2"; - sha256 = "1fgsmf2k0v1j7b3gv06q9c65410qa2ivl59rwkm7j931wsymsg26"; - libraryHaskellDepends = [ - base - digits - QuickCheck - safe - ]; - description = "An implementation of Douglas Crockford's base32 encoding"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "crocodile" = callPackage ( - { - mkDerivation, - base, - bmp, - bytestring, - deepseq, - ghc-prim, - heap, - HUnit, - mersenne-random-pure64, - mtl, - parallel, - }: - mkDerivation { - pname = "crocodile"; - version = "0.1.2"; - sha256 = "1krvcn5yb9i6jxwn2wwnpc8ylivhn27315a2sifn19f1l2vvy038"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - bmp - bytestring - deepseq - ghc-prim - heap - HUnit - mersenne-random-pure64 - mtl - parallel - ]; - description = "An offline renderer supporting ray tracing and photon mapping"; - license = lib.licenses.gpl2Only; - hydraPlatforms = lib.platforms.none; - mainProgram = "crocodile"; - broken = true; - } - ) { }; - "cron" = callPackage ( { mkDerivation, @@ -167590,97 +93104,6 @@ self: { } ) { }; - "cron-compat" = callPackage ( - { - mkDerivation, - attoparsec, - base, - cron, - derive, - hspec, - hspec-expectations, - mtl, - mtl-compat, - old-locale, - QuickCheck, - text, - time, - transformers, - transformers-compat, - }: - mkDerivation { - pname = "cron-compat"; - version = "0.2.6"; - sha256 = "0km70j3xfqvpra9mvbxpvpqd7arjjfcpazmilvmj6kjxk6cw7pfx"; - libraryHaskellDepends = [ - attoparsec - base - mtl - mtl-compat - old-locale - text - time - transformers-compat - ]; - testHaskellDepends = [ - attoparsec - base - cron - derive - hspec - hspec-expectations - QuickCheck - text - time - transformers - ]; - description = "Cron datatypes and Attoparsec parser"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "cronus" = callPackage ( - { - mkDerivation, - base, - bytestring, - comonad, - containers, - deepseq, - hashable, - mtl, - profunctors, - text, - transformers, - unordered-containers, - vector, - }: - mkDerivation { - pname = "cronus"; - version = "0.1.0.0"; - sha256 = "10mypmm3q1icxdmgqxpvha8igyr6nddwmpbhpxkksaqfgy7a6g63"; - libraryHaskellDepends = [ - base - bytestring - comonad - containers - deepseq - hashable - mtl - profunctors - text - transformers - unordered-containers - vector - ]; - description = "Another bloated standard library"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "cropty" = callPackage ( { mkDerivation, @@ -168110,80 +93533,6 @@ self: { } ) { }; - "cruncher-types" = callPackage ( - { - mkDerivation, - aeson, - base, - containers, - hlint, - lens, - text, - }: - mkDerivation { - pname = "cruncher-types"; - version = "1.1.0"; - sha256 = "0kp0vm8mvgn12kk5csyhzv6g6az43acl6iwjbhvfdfr2mqif2b9h"; - libraryHaskellDepends = [ - aeson - base - containers - lens - text - ]; - testHaskellDepends = [ - base - hlint - ]; - description = "Request and Response types for Eval.so's API"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "crunghc" = callPackage ( - { - mkDerivation, - base, - bytestring, - directory, - filelock, - filepath, - process, - SHA, - text, - time, - transformers, - unix, - }: - mkDerivation { - pname = "crunghc"; - version = "0.1.1.1"; - sha256 = "08341mvdca70nlkdi2im344hhkv62s278a1gkp02hj0zrixzfkqm"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - bytestring - directory - filelock - filepath - process - SHA - text - time - transformers - unix - ]; - description = "A runghc replacement with transparent caching"; - license = lib.licenses.publicDomain; - hydraPlatforms = lib.platforms.none; - mainProgram = "crunghc"; - broken = true; - } - ) { }; - "crux" = callPackage ( { mkDerivation, @@ -168497,39 +93846,6 @@ self: { } ) { }; - "crypto-cipher-benchmarks" = callPackage ( - { - mkDerivation, - base, - byteable, - bytestring, - criterion, - crypto-cipher-types, - mtl, - pretty, - securemem, - }: - mkDerivation { - pname = "crypto-cipher-benchmarks"; - version = "0.0.5"; - sha256 = "1ddyz0fn3srvm37afbiw86lv0z7iwrmnhazgvk0gg5n3ic57anhq"; - libraryHaskellDepends = [ - base - byteable - bytestring - criterion - crypto-cipher-types - mtl - pretty - securemem - ]; - description = "Generic cryptography cipher benchmarks"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "crypto-cipher-tests" = callPackage ( { mkDerivation, @@ -168603,93 +93919,6 @@ self: { } ) { }; - "crypto-classical" = callPackage ( - { - mkDerivation, - base, - bytestring, - containers, - crypto-numbers, - crypto-random, - modular-arithmetic, - QuickCheck, - text, - transformers, - }: - mkDerivation { - pname = "crypto-classical"; - version = "0.3.0"; - sha256 = "1jkgdaln74sznkqr1knainpn3pbjih76rk3r7wmx28jvy57pm1b3"; - libraryHaskellDepends = [ - base - bytestring - containers - crypto-numbers - crypto-random - modular-arithmetic - text - transformers - ]; - testHaskellDepends = [ - base - bytestring - QuickCheck - ]; - description = "An educational tool for studying classical cryptography schemes"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "crypto-conduit" = callPackage ( - { - mkDerivation, - base, - bytestring, - cereal, - conduit, - conduit-extra, - crypto-api, - cryptocipher, - cryptohash-cryptoapi, - hspec, - resourcet, - skein, - transformers, - }: - mkDerivation { - pname = "crypto-conduit"; - version = "0.5.5"; - sha256 = "0zd4smj3rk2x1msl8z8f5y01x4b87rhgm45g26g6c3dsdasn1lyf"; - libraryHaskellDepends = [ - base - bytestring - cereal - conduit - conduit-extra - crypto-api - resourcet - transformers - ]; - testHaskellDepends = [ - base - bytestring - cereal - conduit - conduit-extra - crypto-api - cryptocipher - cryptohash-cryptoapi - hspec - skein - transformers - ]; - description = "Conduit interface for cryptographic operations (from crypto-api)"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "crypto-enigma" = callPackage ( { mkDerivation, @@ -168764,225 +93993,6 @@ self: { } ) { }; - "crypto-multihash" = callPackage ( - { - mkDerivation, - base, - base58-bytestring, - bytestring, - containers, - cryptonite, - hspec, - memory, - QuickCheck, - string-conversions, - }: - mkDerivation { - pname = "crypto-multihash"; - version = "0.4.2.0"; - sha256 = "11bypl9lgd4ajv2qx8f48kk97iknz6d0nscgicgamprrvqdfgx81"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - base58-bytestring - bytestring - containers - cryptonite - memory - string-conversions - ]; - executableHaskellDepends = [ - base - bytestring - ]; - testHaskellDepends = [ - base - bytestring - hspec - QuickCheck - ]; - description = "Multihash library on top of cryptonite crypto library"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "mh"; - broken = true; - } - ) { }; - - "crypto-numbers" = callPackage ( - { - mkDerivation, - base, - byteable, - bytestring, - criterion, - crypto-random, - ghc-prim, - integer-gmp, - mtl, - tasty, - tasty-hunit, - tasty-quickcheck, - vector, - }: - mkDerivation { - pname = "crypto-numbers"; - version = "0.2.7"; - sha256 = "19l9y5jzvqrqfam13xin9m9ca0s5ql86yv0cjn6dzkydx4byn2j2"; - revision = "1"; - editedCabalFile = "1jjkhid8kwrz5894nad537rqxzzyx6b687bmgyk70nv0ny336j9b"; - libraryHaskellDepends = [ - base - bytestring - crypto-random - ghc-prim - integer-gmp - vector - ]; - testHaskellDepends = [ - base - byteable - bytestring - crypto-random - tasty - tasty-hunit - tasty-quickcheck - vector - ]; - benchmarkHaskellDepends = [ - base - bytestring - criterion - mtl - ]; - description = "Cryptographic numbers: functions and algorithms"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "crypto-pubkey" = callPackage ( - { - mkDerivation, - base, - byteable, - bytestring, - criterion, - crypto-numbers, - crypto-pubkey-types, - crypto-random, - cryptohash, - deepseq, - mtl, - tasty, - tasty-hunit, - tasty-kat, - tasty-quickcheck, - }: - mkDerivation { - pname = "crypto-pubkey"; - version = "0.2.8"; - sha256 = "0vmmx2fqq2xc3xfavy22i2nyynpk88jhmjr62qgxw5w5qgsz5k60"; - libraryHaskellDepends = [ - base - byteable - bytestring - crypto-numbers - crypto-pubkey-types - crypto-random - cryptohash - ]; - testHaskellDepends = [ - base - byteable - bytestring - crypto-numbers - crypto-pubkey-types - crypto-random - cryptohash - tasty - tasty-hunit - tasty-kat - tasty-quickcheck - ]; - benchmarkHaskellDepends = [ - base - bytestring - criterion - crypto-pubkey-types - crypto-random - cryptohash - deepseq - mtl - ]; - description = "Public Key cryptography"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "crypto-pubkey-openssh" = callPackage ( - { - mkDerivation, - asn1-encoding, - asn1-types, - attoparsec, - base, - base64-bytestring, - bytestring, - cereal, - crypto-pubkey-types, - deepseq, - filepath, - pem, - process, - QuickCheck, - tasty, - tasty-quickcheck, - temporary, - }: - mkDerivation { - pname = "crypto-pubkey-openssh"; - version = "0.2.7"; - sha256 = "0ndb1crjl3xbd18bfs3ipqbzn120mpqnn27jfi4vjqf5ak48b444"; - libraryHaskellDepends = [ - asn1-encoding - asn1-types - attoparsec - base - base64-bytestring - bytestring - cereal - crypto-pubkey-types - pem - ]; - testHaskellDepends = [ - asn1-encoding - asn1-types - attoparsec - base - base64-bytestring - bytestring - cereal - crypto-pubkey-types - deepseq - filepath - pem - process - QuickCheck - tasty - tasty-quickcheck - temporary - ]; - description = "OpenSSH keys decoder/encoder"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "crypto-pubkey-types" = callPackage ( { mkDerivation, @@ -169054,37 +94064,6 @@ self: { } ) { }; - "crypto-random-effect" = callPackage ( - { - mkDerivation, - base, - bytestring, - crypto-random, - extensible-effects, - securemem, - transformers, - }: - mkDerivation { - pname = "crypto-random-effect"; - version = "0.2.0.4.1"; - sha256 = "1gj40r6i79jvsghyv4nqm3yrjlby9fkxxhzp0lkr5j1b9b3b2xwr"; - revision = "1"; - editedCabalFile = "0ccwjlmyr03aym3ha83jg2lcjnq14mivvp5ir7yf7vxi2qw5f5zj"; - libraryHaskellDepends = [ - base - bytestring - crypto-random - extensible-effects - securemem - transformers - ]; - description = "A random effect using crypto-random"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "crypto-rng" = callPackage ( { mkDerivation, @@ -169155,38 +94134,6 @@ self: { } ) { }; - "crypto-simple" = callPackage ( - { - mkDerivation, - base, - bytestring, - cryptonite, - hspec, - QuickCheck, - }: - mkDerivation { - pname = "crypto-simple"; - version = "0.1.0.0"; - sha256 = "0vifwsgvrgpmdc5mxqn81icnsaawf3l49pw1jn2f3vmv8ck3w3x9"; - libraryHaskellDepends = [ - base - bytestring - cryptonite - ]; - testHaskellDepends = [ - base - bytestring - cryptonite - hspec - QuickCheck - ]; - description = "A simple high level encryption interface based on cryptonite"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "crypto-sodium" = callPackage ( { mkDerivation, @@ -169308,36 +94255,6 @@ self: { } ) { }; - "cryptocipher" = callPackage ( - { - mkDerivation, - base, - cipher-aes, - cipher-blowfish, - cipher-camellia, - cipher-des, - cipher-rc4, - crypto-cipher-types, - }: - mkDerivation { - pname = "cryptocipher"; - version = "0.6.2"; - sha256 = "0ip3a2as0df6drl29sryayxx22sx55v6bs60s2fh3i1nxqnydf9l"; - libraryHaskellDepends = [ - base - cipher-aes - cipher-blowfish - cipher-camellia - cipher-des - cipher-rc4 - crypto-cipher-types - ]; - description = "Symmetrical block and stream ciphers"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "cryptocompare" = callPackage ( { mkDerivation, @@ -169387,65 +94304,6 @@ self: { } ) { }; - "cryptoconditions" = callPackage ( - { - mkDerivation, - aeson, - aeson-quick, - asn1-encoding, - asn1-parse, - asn1-types, - base, - base16-bytestring, - base64-bytestring, - bytestring, - containers, - cryptonite, - memory, - tasty, - tasty-hunit, - text, - transformers, - }: - mkDerivation { - pname = "cryptoconditions"; - version = "0.2.5"; - sha256 = "0p4y5irjqvd79qr1gq5v57pnyg1z4vm9pmlv9dx3v59vakz0yfcf"; - libraryHaskellDepends = [ - aeson - asn1-encoding - asn1-parse - asn1-types - base - base64-bytestring - bytestring - containers - cryptonite - memory - text - ]; - testHaskellDepends = [ - aeson - aeson-quick - asn1-encoding - base - base16-bytestring - base64-bytestring - bytestring - containers - cryptonite - tasty - tasty-hunit - text - transformers - ]; - description = "Interledger Crypto-Conditions"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "cryptohash" = callPackage ( { mkDerivation, @@ -170772,158 +95630,6 @@ self: { } ) { }; - "crystalfontz" = callPackage ( - { - mkDerivation, - base, - crc16-table, - MaybeT, - serialport, - }: - mkDerivation { - pname = "crystalfontz"; - version = "0.1"; - sha256 = "14mh098kgckncips17bdsbg08q78xk1114174zq860z4znmc1gxv"; - libraryHaskellDepends = [ - base - crc16-table - MaybeT - serialport - ]; - description = "Control Crystalfontz LCD displays"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "csa" = callPackage ( - { - mkDerivation, - base, - hedgehog, - hmatrix, - tasty, - tasty-hedgehog, - tasty-hspec, - }: - mkDerivation { - pname = "csa"; - version = "0.1.0"; - sha256 = "0jnhn4lgj5l466c31h2lwslnal3ypk3ma2j75zw0ghjf35i07qvr"; - libraryHaskellDepends = [ - base - hmatrix - ]; - testHaskellDepends = [ - base - hedgehog - hmatrix - tasty - tasty-hedgehog - tasty-hspec - ]; - description = "Connection-set algebra (CSA) library"; - license = "GPL"; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "cse-ghc-plugin" = callPackage ( - { - mkDerivation, - base, - ghc, - }: - mkDerivation { - pname = "cse-ghc-plugin"; - version = "0.1.1"; - sha256 = "123x10ircbj8lrsqapf6cb9b3ibjgp1q8l862a3i6i0ak7ash49f"; - libraryHaskellDepends = [ - base - ghc - ]; - description = "Compiler plugin for common subexpression elimination"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "csg" = callPackage ( - { - mkDerivation, - attoparsec, - base, - bytestring, - containers, - criterion, - doctest, - doctest-driver-gen, - gloss, - gloss-raster, - QuickCheck, - simple-vec3, - strict, - system-filepath, - tasty, - tasty-hunit, - tasty-quickcheck, - transformers, - turtle, - vector, - }: - mkDerivation { - pname = "csg"; - version = "0.1.0.6"; - sha256 = "0i4sr9qf78fs841j8d9rkdd73dm9i34rj6sp0475r3pnj7czqcq6"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - attoparsec - base - bytestring - containers - QuickCheck - simple-vec3 - strict - transformers - ]; - executableHaskellDepends = [ - base - gloss - gloss-raster - QuickCheck - simple-vec3 - strict - system-filepath - turtle - ]; - testHaskellDepends = [ - base - bytestring - doctest - doctest-driver-gen - simple-vec3 - tasty - tasty-hunit - tasty-quickcheck - ]; - benchmarkHaskellDepends = [ - base - criterion - simple-vec3 - strict - vector - ]; - description = "Analytical CSG (Constructive Solid Geometry) library"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "csg-raycaster"; - broken = true; - } - ) { }; - "csound-catalog" = callPackage ( { mkDerivation, @@ -171206,82 +95912,6 @@ self: { } ) { }; - "cspmchecker" = callPackage ( - { - mkDerivation, - base, - directory, - filepath, - haskeline, - libcspm, - mtl, - }: - mkDerivation { - pname = "cspmchecker"; - version = "1.0.0"; - sha256 = "1yz94yvggw6a7fh2p7fszyp02nnk7labbl6z079gqn3smayzfs31"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - directory - filepath - haskeline - libcspm - mtl - ]; - description = "A command line type checker for CSPM files"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "cspretty" = callPackage ( - { - mkDerivation, - base, - containers, - pretty, - }: - mkDerivation { - pname = "cspretty"; - version = "1.0"; - sha256 = "029r1a6w76v9nqf70w3p5yqjmmnba4xyi3ldx10wl526d247r9r9"; - libraryHaskellDepends = [ - base - containers - pretty - ]; - description = "AST and pretty printer for CSPm"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "css" = callPackage ( - { - mkDerivation, - base, - mtl, - text, - }: - mkDerivation { - pname = "css"; - version = "0.2"; - sha256 = "150gdsf059x658z6cbclrydzbynw06nhrpf4i1l9gwb6siarvjv9"; - libraryHaskellDepends = [ - base - mtl - text - ]; - description = "Minimal monadic CSS DSL"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "css-easings" = callPackage ( { mkDerivation, @@ -171579,79 +96209,6 @@ self: { } ) { }; - "csv-enumerator" = callPackage ( - { - mkDerivation, - attoparsec, - attoparsec-enumerator, - base, - bytestring, - containers, - directory, - enumerator, - safe, - transformers, - unix-compat, - }: - mkDerivation { - pname = "csv-enumerator"; - version = "0.10.2.0"; - sha256 = "0n1zc9rwzj9w39nmjfn65qawj19b6zay3d62ss2crnxbgqnh07gh"; - libraryHaskellDepends = [ - attoparsec - attoparsec-enumerator - base - bytestring - containers - directory - enumerator - safe - transformers - unix-compat - ]; - description = "A flexible, fast, enumerator-based CSV parser library for Haskell"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "csv-nptools" = callPackage ( - { - mkDerivation, - aeson, - base, - bytestring, - csv, - html, - tabular, - text, - txt-sushi, - vector, - }: - mkDerivation { - pname = "csv-nptools"; - version = "0.4.1"; - sha256 = "0898553pikxjgmycdyiw92bbmzxgbl4dl8029qljyjzlzlasj7by"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - aeson - base - bytestring - csv - html - tabular - text - txt-sushi - vector - ]; - description = "A collection of CSV tools"; - license = "GPL"; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "csv-sip" = callPackage ( { mkDerivation, @@ -171753,88 +96310,10 @@ self: { regex-tdfa split spreadsheet - ]; - description = "A small program that will read csv files and create qif files"; - license = lib.licenses.bsd3; - mainProgram = "csv-to-qif"; - } - ) { }; - - "ctemplate" = callPackage ( - { - mkDerivation, - base, - bytestring, - ctemplate, - }: - mkDerivation { - pname = "ctemplate"; - version = "0.1"; - sha256 = "02xsw0zpg728cq018w6zjgbzk6d7px62mapn40gir9c0hi6rqlx8"; - libraryHaskellDepends = [ - base - bytestring - ]; - librarySystemDepends = [ ctemplate ]; - description = "Binding to the Google ctemplate library"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { ctemplate = null; }; - - "ctkl" = callPackage ( - { - mkDerivation, - array, - base, - }: - mkDerivation { - pname = "ctkl"; - version = "0.27.0.0"; - sha256 = "0sqrg04zlwq62jggjvrd1dq7a2alwx2190w6b19d3jn51n0s907m"; - libraryHaskellDepends = [ - array - base - ]; - description = "packaging of Manuel Chakravarty's CTK Light for Hackage"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "ctpl" = callPackage ( - { - mkDerivation, - array, - base, - chatty-text, - chatty-utils, - }: - mkDerivation { - pname = "ctpl"; - version = "0.1.0.4"; - sha256 = "03vcy5qb4wg1wpqcpnr33nwfmyfq3fk01ga3vawh6alppingbvi9"; - revision = "1"; - editedCabalFile = "02wisimqzgjbpaw95fvmwqq97bh3zix710k672gcdbkqsx9x06kn"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - array - base - chatty-text - chatty-utils - ]; - executableHaskellDepends = [ - array - base - chatty-text - chatty-utils - ]; - description = "A programming language for text modification"; - license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; + ]; + description = "A small program that will read csv files and create qif files"; + license = lib.licenses.bsd3; + mainProgram = "csv-to-qif"; } ) { }; @@ -171894,85 +96373,6 @@ self: { } ) { }; - "cube" = callPackage ( - { - mkDerivation, - base, - bytestring, - cereal, - containers, - hspec, - STL, - }: - mkDerivation { - pname = "cube"; - version = "0.2.0"; - sha256 = "0shclcwnh1az40ckvmhpw93xbhrr19wfhhvclcnv2fijy29667yp"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - bytestring - cereal - containers - STL - ]; - testHaskellDepends = [ - base - bytestring - cereal - containers - hspec - STL - ]; - description = "Cubic DSL for 3D printing"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "cubical" = callPackage ( - { - mkDerivation, - alex, - array, - base, - BNFC, - directory, - filepath, - happy, - haskeline, - mtl, - transformers, - }: - mkDerivation { - pname = "cubical"; - version = "0.2.0"; - sha256 = "1n44d39s3r5iakbhjf99w49gb1y8l1xl46lz40jkhx7k4knwb1fj"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - array - base - BNFC - directory - filepath - haskeline - mtl - transformers - ]; - executableToolDepends = [ - alex - happy - ]; - description = "Implementation of Univalence in Cubical Sets"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - mainProgram = "cubical"; - broken = true; - } - ) { }; - "cubicbezier" = callPackage ( { mkDerivation, @@ -172078,32 +96478,6 @@ self: { } ) { }; - "cuboid" = callPackage ( - { - mkDerivation, - base, - GLUT, - Yampa, - }: - mkDerivation { - pname = "cuboid"; - version = "0.14.2"; - sha256 = "08l8qf98d5p9d5qyj3kh35rzp8fih77bd2pras4dkn7an39pmr6b"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - GLUT - Yampa - ]; - description = "3D Yampa/GLUT Puzzle Game"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - mainProgram = "cuboid"; - broken = true; - } - ) { }; - "cuckoo" = callPackage ( { mkDerivation, @@ -172153,74 +96527,6 @@ self: { } ) { }; - "cuckoo-filter" = callPackage ( - { - mkDerivation, - aeson, - array, - base, - bytestring, - cereal, - containers, - criterion, - hashable, - QuickCheck, - random, - tasty, - tasty-hunit, - tasty-quickcheck, - time, - }: - mkDerivation { - pname = "cuckoo-filter"; - version = "0.2.0.2"; - sha256 = "1yya8r3igwms910xp3cc4y1y34f5yw3yqqy1wy49d4xsi6smyjdc"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson - array - base - bytestring - cereal - containers - hashable - time - ]; - executableHaskellDepends = [ - aeson - array - base - bytestring - cereal - containers - criterion - hashable - random - time - ]; - testHaskellDepends = [ - aeson - array - base - bytestring - cereal - containers - hashable - QuickCheck - tasty - tasty-hunit - tasty-quickcheck - time - ]; - description = "Pure and impure Cuckoo Filter"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - mainProgram = "benchmarks"; - broken = true; - } - ) { }; - "cuda" = callPackage ( { mkDerivation, @@ -172267,35 +96573,6 @@ self: { } ) { }; - "cudd" = callPackage ( - { - mkDerivation, - array, - base, - c2hs, - cudd, - mtl, - transformers, - }: - mkDerivation { - pname = "cudd"; - version = "0.1.0.4"; - sha256 = "186pn63698h3vj26sld5ki13d1p1r1wsz2xpr80x4acd9nrranyi"; - libraryHaskellDepends = [ - array - base - mtl - transformers - ]; - librarySystemDepends = [ cudd ]; - libraryToolDepends = [ c2hs ]; - description = "Bindings to the CUDD binary decision diagrams library"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { inherit (pkgs) cudd; }; - "cuddle" = callPackage ( { mkDerivation, @@ -172791,33 +97068,6 @@ self: { } ) { }; - "currency-convert" = callPackage ( - { - mkDerivation, - aeson, - base, - http-conduit, - text, - unordered-containers, - }: - mkDerivation { - pname = "currency-convert"; - version = "0.2.1.0"; - sha256 = "0y1kkh420zadnp36bk1qid62jjak40smw11kpdhkwnkmsm4akdy4"; - libraryHaskellDepends = [ - aeson - base - http-conduit - text - unordered-containers - ]; - description = "Typesafe currency conversion"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "current-locale" = callPackage ( { mkDerivation, @@ -172855,50 +97105,6 @@ self: { } ) { }; - "curry-base" = callPackage ( - { - mkDerivation, - base, - Cabal, - containers, - directory, - extra, - filepath, - mtl, - parsec, - pretty, - time, - transformers, - }: - mkDerivation { - pname = "curry-base"; - version = "1.1.1"; - sha256 = "0dczgya46jk80j8b7sswjcck64hzw7fifipixnhylhlfvd1cqdlb"; - libraryHaskellDepends = [ - base - containers - directory - extra - filepath - mtl - parsec - pretty - time - transformers - ]; - testHaskellDepends = [ - base - Cabal - filepath - mtl - ]; - description = "Functions for manipulating Curry programs"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "curry-frontend" = callPackage ( { mkDerivation, @@ -173204,35 +97410,6 @@ self: { } ) { }; - "curryrs" = callPackage ( - { - mkDerivation, - base, - mtl, - tasty, - tasty-hunit, - }: - mkDerivation { - pname = "curryrs"; - version = "0.2.0"; - sha256 = "1nwspgwc1h3h4q6azrn3pjin8ldq0rq6mcyv4i9cmnrnb5s5bnqw"; - libraryHaskellDepends = [ - base - mtl - ]; - testHaskellDepends = [ - base - tasty - tasty-hunit - ]; - benchmarkHaskellDepends = [ base ]; - description = "Easy to use FFI Bridge for using Rust in Haskell"; - license = "unknown"; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "cursedcsv" = callPackage ( { mkDerivation, @@ -173510,38 +97687,6 @@ self: { } ) { }; - "curves" = callPackage ( - { - mkDerivation, - base, - bytestring, - containers, - filepath, - HaXml, - JuicyPixels, - QuickCheck, - }: - mkDerivation { - pname = "curves"; - version = "1.1.0.2"; - sha256 = "074gc55yf09949yqgal830plz2408zk86mdfx4n864xxdksklfda"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base - bytestring - containers - filepath - HaXml - JuicyPixels - QuickCheck - ]; - description = "Library for drawing curve based images"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "cusolver" = callPackage ( { mkDerivation, @@ -173653,29 +97798,6 @@ self: { } ) { }; - "custom-prelude" = callPackage ( - { - mkDerivation, - base, - basic-prelude, - monad-loops, - }: - mkDerivation { - pname = "custom-prelude"; - version = "0.2.2.0"; - sha256 = "00lkpkl79kznib0s6xm644f3k13dv59x5z06ccymvx6l6iqxyzn6"; - libraryHaskellDepends = [ - base - basic-prelude - monad-loops - ]; - description = "An enhanced prelude, serving as a foundation for my projects"; - license = "GPL"; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "cut-the-crap" = callPackage ( @@ -173820,39 +97942,6 @@ self: { } ) { }; - "cv-combinators" = callPackage ( - { - mkDerivation, - allocated-processor, - base, - HOpenCV, - vector-space, - }: - mkDerivation { - pname = "cv-combinators"; - version = "0.2.0.2"; - sha256 = "0zlfv7qfkm12a7dnrpcdr6xcyp948l5n2szb0a3xpjkyxnw4zd7x"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - allocated-processor - base - HOpenCV - vector-space - ]; - executableHaskellDepends = [ - allocated-processor - base - HOpenCV - vector-space - ]; - description = "Functional Combinators for Computer Vision"; - license = lib.licenses.gpl2Only; - hydraPlatforms = lib.platforms.none; - mainProgram = "test-cv-combinators"; - } - ) { }; - "cve" = callPackage ( { mkDerivation, @@ -174023,50 +98112,6 @@ self: { } ) { }; - "cypher" = callPackage ( - { - mkDerivation, - aeson, - attoparsec, - base, - bytestring, - classy-parallel, - conduit, - http-conduit, - http-types, - resourcet, - text, - transformers, - transformers-base, - unordered-containers, - vector, - }: - mkDerivation { - pname = "cypher"; - version = "0.8.1"; - sha256 = "0f79791j9nczm80cifpc4iq5pqkhca67s94c5wqm0kiprlxblc53"; - libraryHaskellDepends = [ - aeson - attoparsec - base - bytestring - classy-parallel - conduit - http-conduit - http-types - resourcet - text - transformers - transformers-base - unordered-containers - vector - ]; - description = "Haskell bindings for the neo4j \"cypher\" query language"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "czipwith" = callPackage ( { mkDerivation, @@ -174093,97 +98138,6 @@ self: { } ) { }; - "d-bus" = callPackage ( - { - mkDerivation, - async, - attoparsec, - base, - binary, - blaze-builder, - bytestring, - conduit, - conduit-extra, - containers, - data-binary-ieee754, - data-default, - exceptions, - free, - hslogger, - mtl, - network, - QuickCheck, - singletons, - stm, - tasty, - tasty-hunit, - tasty-quickcheck, - tasty-th, - template-haskell, - text, - transformers, - xml-conduit, - xml-hamlet, - xml-picklers, - xml-types, - }: - mkDerivation { - pname = "d-bus"; - version = "0.1.8"; - sha256 = "1s9md4865mzal0n69mmfbrd2xifhs8j40dl3vjympifw4li25l8q"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - async - attoparsec - base - binary - blaze-builder - bytestring - conduit - conduit-extra - containers - data-binary-ieee754 - data-default - exceptions - free - hslogger - mtl - network - singletons - stm - template-haskell - text - transformers - xml-conduit - xml-picklers - xml-types - ]; - executableHaskellDepends = [ - base - text - ]; - testHaskellDepends = [ - base - binary - bytestring - mtl - QuickCheck - singletons - tasty - tasty-hunit - tasty-quickcheck - tasty-th - text - xml-hamlet - ]; - description = "Permissively licensed D-Bus client library"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "d10" = callPackage ( { mkDerivation, @@ -174272,55 +98226,6 @@ self: { dxguid = null; }; - "d3js" = callPackage ( - { - mkDerivation, - base, - mtl, - random, - text, - }: - mkDerivation { - pname = "d3js"; - version = "0.1.0.0"; - sha256 = "0wrxvfgss9fiv1pwsdi1md0plc4mf9sadkhgm46dsfq16dwrp3q2"; - libraryHaskellDepends = [ - base - mtl - random - text - ]; - description = "Declarative visualization on a web browser with DSL approach"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "daemonize-doublefork" = callPackage ( - { - mkDerivation, - base, - directory, - unix, - }: - mkDerivation { - pname = "daemonize-doublefork"; - version = "0.1.1"; - sha256 = "1g446qxff8ajv44341y0f9v39j8idmnn23lwi08gq3ps4qrz0py2"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base - directory - unix - ]; - description = "Start background daemons by double-forking"; - license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "daemons" = callPackage ( { mkDerivation, @@ -174386,38 +98291,6 @@ self: { } ) { }; - "dag" = callPackage ( - { - mkDerivation, - base, - constraints, - hspec, - QuickCheck, - quickcheck-instances, - singletons, - }: - mkDerivation { - pname = "dag"; - version = "0.1.0.2"; - sha256 = "0khfyyzqzw7jj4n8p1k96wdrb2087jd380fzhlkmf0g7s4346pvp"; - libraryHaskellDepends = [ - base - constraints - singletons - ]; - testHaskellDepends = [ - base - hspec - QuickCheck - quickcheck-instances - ]; - description = "Compile-time, type-safe directed acyclic graphs"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "dahdit" = callPackage ( { mkDerivation, @@ -174794,56 +98667,10 @@ self: { ]; description = "daino is a static site generator (SSG) using shake and pandoc"; license = "GPL"; - hydraPlatforms = lib.platforms.none; mainProgram = "daino"; } ) { }; - "damnpacket" = callPackage ( - { - mkDerivation, - attoparsec, - base, - bytestring, - fail, - hspec, - html-entity, - HUnit, - QuickCheck, - semigroups, - template-haskell, - text, - th-lift-instances, - }: - mkDerivation { - pname = "damnpacket"; - version = "1.3.1"; - sha256 = "1b58n30shmfncv8swj7q68dp0j0p184rlyy6psd8yq07vsk02vq1"; - libraryHaskellDepends = [ - attoparsec - base - bytestring - fail - html-entity - semigroups - template-haskell - text - th-lift-instances - ]; - testHaskellDepends = [ - base - bytestring - hspec - HUnit - QuickCheck - ]; - description = "Parsing dAmn messages"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "dani-servant-lucid2" = callPackage ( { mkDerivation, @@ -174878,157 +98705,6 @@ self: { } ) { }; - "danibot" = callPackage ( - { - mkDerivation, - aeson, - async, - attoparsec, - base, - bytestring, - conceit, - containers, - foldl, - lens, - lens-aeson, - monoid-subclasses, - network, - optparse-applicative, - stm, - streaming, - text, - transformers, - websockets, - wreq, - wuss, - }: - mkDerivation { - pname = "danibot"; - version = "0.2.0.0"; - sha256 = "18qgf85rngrgfhfx51yhr37wadqb0zawzipxwaj460gz3v9k9gd8"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson - async - attoparsec - base - bytestring - conceit - containers - foldl - lens - lens-aeson - monoid-subclasses - network - stm - streaming - text - transformers - websockets - wreq - wuss - ]; - executableHaskellDepends = [ - base - optparse-applicative - ]; - description = "Basic Slack bot framework"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - mainProgram = "danibot"; - broken = true; - } - ) { }; - - "dao" = callPackage ( - { - mkDerivation, - array, - base, - binary, - bytestring, - containers, - Crypto, - data-binary-ieee754, - deepseq, - directory, - filepath, - mtl, - process, - random, - time, - transformers, - utf8-string, - }: - mkDerivation { - pname = "dao"; - version = "0.1.0.1"; - sha256 = "0caas3ql32925rzsghb7rdrm17bw3hn84cizkl9dqmz6nwlhclk9"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - array - base - binary - bytestring - containers - Crypto - data-binary-ieee754 - deepseq - directory - filepath - mtl - process - random - time - transformers - utf8-string - ]; - executableHaskellDepends = [ - array - base - binary - bytestring - containers - Crypto - data-binary-ieee754 - deepseq - directory - filepath - mtl - process - random - time - transformers - utf8-string - ]; - testHaskellDepends = [ - array - base - binary - bytestring - containers - Crypto - data-binary-ieee754 - deepseq - directory - filepath - mtl - process - random - time - transformers - utf8-string - ]; - description = "Dao is meta programming language with its own built-in interpreted language, designed with artificial intelligence applications in mind"; - license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - mainProgram = "dao"; - broken = true; - } - ) { }; - "dap" = callPackage ( { mkDerivation, @@ -175102,47 +98778,6 @@ self: { } ) { }; - "dapi" = callPackage ( - { - mkDerivation, - base, - containers, - explicit-exception, - multiarg, - old-locale, - parsec, - prednote, - rainbow, - text, - time, - transformers, - }: - mkDerivation { - pname = "dapi"; - version = "0.2.0.0"; - sha256 = "0idi472qqks286fbw718vddk5kc3vxicrb8m38sllw6x663xnljz"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - containers - explicit-exception - multiarg - old-locale - parsec - prednote - rainbow - text - time - transformers - ]; - description = "Prints a series of dates"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "dapi"; - } - ) { }; - "darcs" = callPackage ( { mkDerivation, @@ -175329,393 +98964,6 @@ self: { } ) { }; - "darcs-benchmark" = callPackage ( - { - mkDerivation, - base, - bytestring, - cmdargs, - containers, - datetime, - directory, - filepath, - hs-gchart, - html, - HTTP, - json, - mtl, - network, - old-locale, - process, - regex-posix, - SHA, - split, - statistics, - strict, - tabular, - tar, - time, - utf8-string, - uvector, - zlib, - }: - mkDerivation { - pname = "darcs-benchmark"; - version = "0.1.9"; - sha256 = "1qwh4yas6alp65lwimh8xlz3i572nxn4iwqsppx7qqlj8kjhbyvj"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - bytestring - cmdargs - containers - datetime - directory - filepath - hs-gchart - html - HTTP - json - mtl - network - old-locale - process - regex-posix - SHA - split - statistics - strict - tabular - tar - time - utf8-string - uvector - zlib - ]; - description = "Comparative benchmark suite for darcs"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "darcs-benchmark"; - } - ) { }; - - "darcs-beta" = callPackage ( - { - mkDerivation, - array, - base, - bytestring, - containers, - curl, - directory, - extensible-exceptions, - filepath, - hashed-storage, - haskeline, - html, - HTTP, - mmap, - mtl, - network, - old-time, - parsec, - process, - random, - regex-compat, - tar, - terminfo, - text, - unix, - vector, - zlib, - }: - mkDerivation { - pname = "darcs-beta"; - version = "2.7.99.2"; - sha256 = "0jkgy8k2i7hhcl7dzm4zvbm0q189hhp4cza9aslslzcq15jsa225"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - array - base - bytestring - containers - directory - extensible-exceptions - filepath - hashed-storage - haskeline - html - HTTP - mmap - mtl - network - old-time - parsec - process - random - regex-compat - tar - terminfo - text - unix - vector - zlib - ]; - librarySystemDepends = [ curl ]; - executableHaskellDepends = [ - array - base - bytestring - containers - directory - extensible-exceptions - filepath - hashed-storage - haskeline - html - HTTP - mmap - mtl - network - old-time - parsec - process - random - regex-compat - tar - terminfo - text - unix - vector - zlib - ]; - executableSystemDepends = [ curl ]; - description = "a distributed, interactive, smart revision control system"; - license = "GPL"; - hydraPlatforms = lib.platforms.none; - mainProgram = "darcs"; - } - ) { inherit (pkgs) curl; }; - - "darcs-buildpackage" = callPackage ( - { - mkDerivation, - base, - ConfigFile, - directory, - hslogger, - MissingH, - network, - parsec, - process, - regex-compat, - unix, - }: - mkDerivation { - pname = "darcs-buildpackage"; - version = "0.5.12"; - sha256 = "0c82r7bgz8wj172q1n4dfz9kfn4466v7k159vlkfdqv7as0qj8qf"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - ConfigFile - directory - hslogger - MissingH - network - parsec - process - regex-compat - unix - ]; - description = "Tools to help manage Debian packages with Darcs"; - license = "GPL"; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "darcs-cabalized" = - callPackage - ( - { - mkDerivation, - array, - base, - bytestring, - containers, - curl, - directory, - html, - HUnit, - mtl, - ncurses, - old-time, - parsec, - process, - QuickCheck, - regex-compat, - unix, - zlib, - }: - mkDerivation { - pname = "darcs-cabalized"; - version = "2.0.2.2"; - sha256 = "1lc1v30zmlcrp6i22d3arghqhy9pjncddr34df6zd8s0r9wsi61d"; - isLibrary = false; - isExecutable = true; - enableSeparateDataOutput = true; - executableHaskellDepends = [ - array - base - bytestring - containers - directory - html - HUnit - mtl - old-time - parsec - process - QuickCheck - regex-compat - unix - ]; - executableSystemDepends = [ - curl - ncurses - zlib - ]; - description = "David's Advanced Version Control System"; - license = "GPL"; - hydraPlatforms = lib.platforms.none; - mainProgram = "darcs"; - broken = true; - } - ) - { - inherit (pkgs) curl; - inherit (pkgs) ncurses; - inherit (pkgs) zlib; - }; - - "darcs-fastconvert" = callPackage ( - { - mkDerivation, - attoparsec, - base, - bytestring, - cmdlib, - containers, - darcs, - datetime, - directory, - filepath, - hashed-storage, - mtl, - old-time, - utf8-string, - }: - mkDerivation { - pname = "darcs-fastconvert"; - version = "0.2.1"; - sha256 = "1a49v3l9n5cqlmdpjj8mzz5v6b47my84id62ag7004ynr11vih9s"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - attoparsec - base - bytestring - cmdlib - containers - darcs - datetime - directory - filepath - hashed-storage - mtl - old-time - utf8-string - ]; - description = "Import/export git fast-import streams to/from darcs"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "darcs-fastconvert"; - } - ) { }; - - "darcs-graph" = callPackage ( - { - mkDerivation, - base, - bytestring, - containers, - directory, - old-locale, - old-time, - process, - time, - }: - mkDerivation { - pname = "darcs-graph"; - version = "1.0"; - sha256 = "01404plnjrds57lf7widss2piwpal9khl0gq22xkswj68zzfjcv6"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - bytestring - containers - directory - old-locale - old-time - process - time - ]; - description = "Generate graphs of darcs repository activity"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "darcs-graph"; - broken = true; - } - ) { }; - - "darcs-monitor" = callPackage ( - { - mkDerivation, - base, - containers, - directory, - HaXml, - mtl, - process, - }: - mkDerivation { - pname = "darcs-monitor"; - version = "0.4.2"; - sha256 = "0rp6flaizbaxzr28fr82vaacl4wajh6zdqnwcbgyhwz5dj7rdanq"; - isLibrary = false; - isExecutable = true; - enableSeparateDataOutput = true; - executableHaskellDepends = [ - base - containers - directory - HaXml - mtl - process - ]; - description = "Darcs repository monitor (sends email)"; - license = "GPL"; - hydraPlatforms = lib.platforms.none; - mainProgram = "darcs-monitor"; - broken = true; - } - ) { }; - "darcs-scripts" = callPackage ( { mkDerivation, base }: mkDerivation { @@ -175730,460 +98978,6 @@ self: { } ) { }; - "darcs2dot" = callPackage ( - { - mkDerivation, - base, - containers, - darcs, - graph-wrapper, - string-conversions, - }: - mkDerivation { - pname = "darcs2dot"; - version = "0.1.0.1"; - sha256 = "0r6hri2kpfq7r0c25qrlrj5y9pi2j76njvwsgrpnpm6p4gg151wk"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - containers - darcs - graph-wrapper - string-conversions - ]; - description = "Outputs dependencies of darcs patches in dot format"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "darcs2dot"; - broken = true; - } - ) { }; - - "darcsden" = callPackage ( - { - mkDerivation, - aeson, - base, - base64-string, - blaze-builder, - blaze-html, - blaze-markup, - bytestring, - containers, - CouchDB, - darcs, - directory, - filepath, - harp, - hashed-storage, - highlighting-kate, - HsOpenSSL, - hsp, - http-conduit, - HUnit, - json, - mime-mail, - mtl, - old-locale, - old-time, - pandoc, - pcre-light, - process, - pureMD5, - random, - redis, - safe, - SHA, - snap-core, - snap-server, - split, - ssh, - system-uuid, - text, - time, - utf8-string, - webdriver, - xhtml, - xml, - }: - mkDerivation { - pname = "darcsden"; - version = "1.1.1"; - sha256 = "1dz87a6a6bmi2sfk0q21syipgnhpg9fdlr86m7sdrlk4s9s1s0c5"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - aeson - base - base64-string - blaze-builder - blaze-html - blaze-markup - bytestring - containers - CouchDB - darcs - directory - filepath - harp - hashed-storage - highlighting-kate - HsOpenSSL - hsp - http-conduit - HUnit - json - mime-mail - mtl - old-locale - old-time - pandoc - pcre-light - process - pureMD5 - random - redis - safe - SHA - snap-core - snap-server - split - ssh - system-uuid - text - time - utf8-string - webdriver - xhtml - xml - ]; - description = "Darcs repository UI and hosting/collaboration app (hub.darcs.net branch)."; - license = "GPL"; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "darcswatch" = callPackage ( - { - mkDerivation, - base, - bytestring, - cgi, - concurrentoutput, - containers, - Crypto, - directory, - filepath, - HTTP, - mime-string, - mtl, - nano-md5, - network, - old-locale, - old-time, - parsec, - process, - regex-compat, - safe, - time, - unix, - xhtml, - zlib, - }: - mkDerivation { - pname = "darcswatch"; - version = "0.4.4"; - sha256 = "1gl0wplzlhb6ynacq7bv38ijhazpwr642zc0a2dixbpibchgxksf"; - isLibrary = false; - isExecutable = true; - enableSeparateDataOutput = true; - executableHaskellDepends = [ - base - bytestring - cgi - concurrentoutput - containers - Crypto - directory - filepath - HTTP - mime-string - mtl - nano-md5 - network - old-locale - old-time - parsec - process - regex-compat - safe - time - unix - xhtml - zlib - ]; - description = "Track application of Darcs patches"; - license = "GPL"; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "darkplaces-demo" = callPackage ( - { - mkDerivation, - base, - binary, - bytestring, - containers, - criterion, - darkplaces-text, - data-binary-ieee754, - directory, - mtl, - optparse-applicative, - regex-tdfa, - transformers, - }: - mkDerivation { - pname = "darkplaces-demo"; - version = "0.1"; - sha256 = "0map78fnnqm2nlh92xrxmg3fs9q2hb4pl87hyara41v2dvwlsj3f"; - revision = "1"; - editedCabalFile = "00cd99bpsa3z35qga6jrbsq6a6afaa7d6mq49847c10655z0ysyi"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - binary - bytestring - containers - data-binary-ieee754 - regex-tdfa - transformers - ]; - executableHaskellDepends = [ - base - bytestring - darkplaces-text - directory - mtl - optparse-applicative - ]; - benchmarkHaskellDepends = [ - base - binary - bytestring - criterion - transformers - ]; - description = "Utility and parser for DarkPlaces demo files"; - license = lib.licenses.gpl2Only; - hydraPlatforms = lib.platforms.none; - mainProgram = "demoinfo"; - } - ) { }; - - "darkplaces-rcon" = callPackage ( - { - mkDerivation, - base, - byteable, - bytestring, - cryptohash, - hspec, - hspec-core, - network, - time, - }: - mkDerivation { - pname = "darkplaces-rcon"; - version = "0.1"; - sha256 = "0ngxjb6zja7l905ixkr0cjyan21m311wc5dqdzacw5j5w7119v75"; - libraryHaskellDepends = [ - base - byteable - bytestring - cryptohash - network - time - ]; - testHaskellDepends = [ - base - bytestring - hspec - hspec-core - ]; - description = "Darkplaces rcon client library"; - license = lib.licenses.gpl2Only; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "darkplaces-rcon-util" = callPackage ( - { - mkDerivation, - base, - bytestring, - ConfigFile, - containers, - darkplaces-rcon, - darkplaces-text, - directory, - filepath, - haskeline, - HostAndPort, - hspec, - hspec-core, - mtl, - optparse-applicative, - text, - time, - utf8-string, - }: - mkDerivation { - pname = "darkplaces-rcon-util"; - version = "0.1.1"; - sha256 = "1xv9906ag2vgkzbk66f9r6lr5j6qwlwss246hjl7iriq315dmqlg"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - bytestring - ConfigFile - containers - darkplaces-rcon - darkplaces-text - directory - filepath - haskeline - HostAndPort - mtl - optparse-applicative - text - time - utf8-string - ]; - executableHaskellDepends = [ - base - bytestring - darkplaces-rcon - darkplaces-text - haskeline - mtl - optparse-applicative - text - utf8-string - ]; - testHaskellDepends = [ - base - bytestring - darkplaces-rcon - darkplaces-text - hspec - hspec-core - text - ]; - description = "Darplaces rcon utility"; - license = lib.licenses.gpl2Only; - hydraPlatforms = lib.platforms.none; - mainProgram = "drcon"; - } - ) { }; - - "darkplaces-text" = callPackage ( - { - mkDerivation, - alex, - ansi-terminal, - array, - base, - bytestring, - hspec, - QuickCheck, - text, - utf8-string, - vector, - }: - mkDerivation { - pname = "darkplaces-text"; - version = "0.2.1"; - sha256 = "12nsr005pk0v1nril61javh6nrjhqcvlif11mfhch8bvvcaiy4rm"; - libraryHaskellDepends = [ - ansi-terminal - array - base - bytestring - text - utf8-string - vector - ]; - libraryToolDepends = [ alex ]; - testHaskellDepends = [ - base - bytestring - hspec - QuickCheck - ]; - description = "Parser for darkplaces colorful text"; - license = lib.licenses.gpl2Only; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "dash-haskell" = callPackage ( - { - mkDerivation, - base, - Cabal, - containers, - direct-sqlite, - directory, - either, - filepath, - ghc, - haddock-api, - optparse-applicative, - parsec, - pipes, - sqlite-simple, - tagsoup, - text, - transformers, - }: - mkDerivation { - pname = "dash-haskell"; - version = "1.1.0.2"; - sha256 = "1h22ay2cl5j2ngm2xi2hyvvprnmz48qcpzxiq9ldkzx8gg3gs36j"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - Cabal - containers - direct-sqlite - directory - either - filepath - ghc - haddock-api - optparse-applicative - parsec - pipes - sqlite-simple - tagsoup - text - transformers - ]; - description = "Convert package Haddock to Dash docsets (IDE docs)"; - license = lib.licenses.lgpl3Only; - hydraPlatforms = lib.platforms.none; - mainProgram = "dash-haskell"; - } - ) { }; - "data-accessor" = callPackage ( { mkDerivation, @@ -176210,79 +99004,6 @@ self: { } ) { }; - "data-accessor-monadLib" = callPackage ( - { - mkDerivation, - base, - data-accessor, - monadLib, - }: - mkDerivation { - pname = "data-accessor-monadLib"; - version = "0.0.1"; - sha256 = "0l1ywmr4jry4cys7lq6k0w0nsdpqj1g5l3vsnxyf0ai1901zk18i"; - libraryHaskellDepends = [ - base - data-accessor - monadLib - ]; - description = "Accessor functions for monadLib's monads"; - license = "unknown"; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "data-accessor-monads-fd" = callPackage ( - { - mkDerivation, - base, - data-accessor, - monads-fd, - transformers, - }: - mkDerivation { - pname = "data-accessor-monads-fd"; - version = "0.2.0.3"; - sha256 = "1yvfk55qra7f9ggcybw3j68xg9dzx2f07swj99v4f588gh32ixhz"; - libraryHaskellDepends = [ - base - data-accessor - monads-fd - transformers - ]; - description = "Use Accessor to access state in monads-fd State monad class"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "data-accessor-monads-tf" = callPackage ( - { - mkDerivation, - base, - data-accessor, - monads-tf, - transformers, - }: - mkDerivation { - pname = "data-accessor-monads-tf"; - version = "0.2.1.4"; - sha256 = "12skayn01s8svfdr4h5am2y2dw7ax6s83pb7vy3jxyddywpm04mk"; - libraryHaskellDepends = [ - base - data-accessor - monads-tf - transformers - ]; - description = "Use Accessor to access state in monads-tf State monad type family"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "data-accessor-mtl" = callPackage ( { mkDerivation, @@ -176305,34 +99026,6 @@ self: { } ) { }; - "data-accessor-template" = callPackage ( - { - mkDerivation, - base, - data-accessor, - template-haskell, - utility-ht, - }: - mkDerivation { - pname = "data-accessor-template"; - version = "0.2.1.16"; - sha256 = "15gd6xlrq5ica514m5rdcz2dl8bibdmbsmnc98ddhx491c9g5rwk"; - revision = "1"; - editedCabalFile = "0zz2v420zvinphs6jnngc40x7h8jn5rqj3nj8alpgfyqx59w41my"; - libraryHaskellDepends = [ - base - data-accessor - template-haskell - utility-ht - ]; - description = "Utilities for accessing and manipulating fields of records"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - maintainers = [ lib.maintainers.thielema ]; - broken = true; - } - ) { }; - "data-accessor-transformers" = callPackage ( { mkDerivation, @@ -176439,98 +99132,6 @@ self: { } ) { }; - "data-aviary" = callPackage ( - { mkDerivation, base }: - mkDerivation { - pname = "data-aviary"; - version = "0.4.0"; - sha256 = "03jhlb7w98bwx5xa23as9i6id0qxcl4f7k9rql2cgcy8nxf7c2xn"; - libraryHaskellDepends = [ base ]; - description = "Combinator birds"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "data-base" = callPackage ( - { mkDerivation, base }: - mkDerivation { - pname = "data-base"; - version = "1.1"; - sha256 = "1l95mrl6333hp46vsv54fglg4gwz8p14z3rysx6115blc81yx18x"; - libraryHaskellDepends = [ base ]; - description = "Utilities for accessing and comparing types based on so called bases - representations with limited polymorphism"; - license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "data-basic" = callPackage ( - { - mkDerivation, - aeson, - attoparsec, - base, - binary, - bytestring, - cases, - containers, - hssqlppp, - lens, - lens-aeson, - mtl, - overload, - postgresql-simple, - scientific, - simple-effects, - simple-logging, - string-conv, - template-haskell, - text, - time, - }: - mkDerivation { - pname = "data-basic"; - version = "0.3.0.0"; - sha256 = "0ssixfnkgxd132pp6mlpgrkbwqbkrx5zn4ayd7br9ncjvpj2j0gr"; - libraryHaskellDepends = [ - aeson - attoparsec - base - binary - bytestring - cases - containers - hssqlppp - lens - lens-aeson - mtl - overload - postgresql-simple - scientific - simple-effects - simple-logging - string-conv - template-haskell - text - time - ]; - testHaskellDepends = [ - aeson - base - lens - postgresql-simple - string-conv - time - ]; - description = "A database library with a focus on ease of use, type safety and useful error messages"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "data-binary-ieee754" = callPackage ( { mkDerivation, @@ -176630,34 +99231,6 @@ self: { } ) { }; - "data-check" = callPackage ( - { - mkDerivation, - base, - containers, - hspec, - QuickCheck, - }: - mkDerivation { - pname = "data-check"; - version = "0.1.1"; - sha256 = "00di2szqavzmbx4y5b6dq7qalm5pgalb19lfqcdawd5n61fj2gq1"; - libraryHaskellDepends = [ - base - containers - ]; - testHaskellDepends = [ - base - hspec - QuickCheck - ]; - description = "Library for checking and normalization of data (e.g. from web forms)"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "data-checked" = callPackage ( { mkDerivation, @@ -176703,27 +99276,6 @@ self: { } ) { }; - "data-combinator-gen" = callPackage ( - { - mkDerivation, - base, - template-haskell, - }: - mkDerivation { - pname = "data-combinator-gen"; - version = "0.1.0.4"; - sha256 = "0f1qw5rk9x3yd7nfhkwmpig7a6dc46yzl78fi8aaxpwqbsazpkjy"; - libraryHaskellDepends = [ - base - template-haskell - ]; - description = "Generate a special combinator from any data type"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "data-compat" = callPackage ( { mkDerivation, @@ -176743,97 +99295,6 @@ self: { } ) { }; - "data-concurrent-queue" = callPackage ( - { - mkDerivation, - base, - stm, - }: - mkDerivation { - pname = "data-concurrent-queue"; - version = "0.3.0.0"; - sha256 = "0rmn4pq5pgvam78vxp4y7431jai8dklml322r4nw47jjc1m20kmv"; - libraryHaskellDepends = [ - base - stm - ]; - description = "A Library for directional queues"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "data-construction" = callPackage ( - { mkDerivation, base }: - mkDerivation { - pname = "data-construction"; - version = "1.1"; - sha256 = "0hdkj8fpa0mmi57ljl744kkh6hk99d4x8dbm2djprw7rvrj5irg8"; - libraryHaskellDepends = [ base ]; - description = "Data construction abstractions including Constructor, Destructor, Maker, Destroyer, Producer and Consumer"; - license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "data-constructors" = callPackage ( - { - mkDerivation, - base, - criterion, - deepseq, - QuickCheck, - template-haskell, - }: - mkDerivation { - pname = "data-constructors"; - version = "0.1.0.0"; - sha256 = "0mjzhknwhfnd359rzrl3a59vl0mnwpc0j4i3dkl5f04mki0r54cd"; - libraryHaskellDepends = [ - base - template-haskell - ]; - testHaskellDepends = [ - base - QuickCheck - ]; - benchmarkHaskellDepends = [ - base - criterion - deepseq - QuickCheck - ]; - description = "Generically compare data by their constructors"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "data-cycle" = callPackage ( - { - mkDerivation, - base, - collections-api, - collections-base-instances, - }: - mkDerivation { - pname = "data-cycle"; - version = "0.1.2"; - sha256 = "1k7a2k4vvbwilayh5827na7fifaww66fnmd7mr9vzwmsw9g6q80g"; - libraryHaskellDepends = [ - base - collections-api - collections-base-instances - ]; - description = "a cyclic doubly linked list"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "data-debruijn" = callPackage ( { mkDerivation, @@ -176901,42 +99362,6 @@ self: { } ) { }; - "data-default-extra" = callPackage ( - { - mkDerivation, - base, - data-default-class, - data-default-instances-bytestring, - data-default-instances-case-insensitive, - data-default-instances-containers, - data-default-instances-new-base, - data-default-instances-old-locale, - data-default-instances-text, - data-default-instances-unordered-containers, - data-default-instances-vector, - }: - mkDerivation { - pname = "data-default-extra"; - version = "0.1.0"; - sha256 = "1yg5vvapyj91b0iqi374rali3gbfn9y5g8fr6rbn3bkgwxxarskz"; - libraryHaskellDepends = [ - base - data-default-class - data-default-instances-bytestring - data-default-instances-case-insensitive - data-default-instances-containers - data-default-instances-new-base - data-default-instances-old-locale - data-default-instances-text - data-default-instances-unordered-containers - data-default-instances-vector - ]; - description = "A class for types with a default value"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "data-default-generics" = callPackage ( { mkDerivation, @@ -177009,54 +99434,6 @@ self: { } ) { }; - "data-default-instances-bytestring" = callPackage ( - { - mkDerivation, - base, - bytestring, - data-default-class, - }: - mkDerivation { - pname = "data-default-instances-bytestring"; - version = "0.0.1"; - sha256 = "083jck7v6zsnlamj96d2nbcqhpv1v1qdp08jagym846ws1w14hsc"; - revision = "1"; - editedCabalFile = "0gpdba4y17rp0kp9pd2qj6r4pnrc86vx47fkk3zfkggmv73pa82r"; - libraryHaskellDepends = [ - base - bytestring - data-default-class - ]; - description = "Default instances for (lazy and strict) ByteString, Builder and ShortByteString"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "data-default-instances-case-insensitive" = callPackage ( - { - mkDerivation, - case-insensitive, - data-default-class, - }: - mkDerivation { - pname = "data-default-instances-case-insensitive"; - version = "0.0.1"; - sha256 = "1d0a0y3fgq820brwbad58xsz1imxfjsiwg9s9h577l6ri9q3a0a3"; - revision = "1"; - editedCabalFile = "0w8k7zjxwbj1y2acxadg956pfpf7y70jc23wgjivqvafbv69ra25"; - libraryHaskellDepends = [ - case-insensitive - data-default-class - ]; - description = "Default instance for CI type from case-insensitive package"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "data-default-instances-containers" = callPackage ( { mkDerivation, @@ -177103,27 +99480,6 @@ self: { } ) { }; - "data-default-instances-new-base" = callPackage ( - { - mkDerivation, - base, - data-default-class, - }: - mkDerivation { - pname = "data-default-instances-new-base"; - version = "0.0.2"; - sha256 = "0hzi7szmjf2df3v4aaid6pk6i4ma25k78v5mcxkhd6w52ifg67c3"; - libraryHaskellDepends = [ - base - data-default-class - ]; - description = "Default instances for types in newer versions of base package"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "data-default-instances-old-locale" = callPackage ( { mkDerivation, @@ -177147,132 +99503,6 @@ self: { } ) { }; - "data-default-instances-text" = callPackage ( - { - mkDerivation, - base, - data-default-class, - text, - }: - mkDerivation { - pname = "data-default-instances-text"; - version = "0.0.1"; - sha256 = "1pqc0rqh26vc7qfq4qdxp40c1qa85h7zxbyhzxb5kkinrx34qpfv"; - revision = "1"; - editedCabalFile = "01125vbzwq35rkppm96x8fnwjyfid7x6ay6wq8n0qhr0skhcp2js"; - libraryHaskellDepends = [ - base - data-default-class - text - ]; - description = "Default instances for (lazy and strict) Text and Text Builder"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "data-default-instances-unordered-containers" = callPackage ( - { - mkDerivation, - data-default-class, - unordered-containers, - }: - mkDerivation { - pname = "data-default-instances-unordered-containers"; - version = "0.0.1"; - sha256 = "1h1gap1afpyixz2amw1bfsdrc5rsxvksapz9h9vi4qgxj3mag0mk"; - revision = "1"; - editedCabalFile = "1ghfz68s70jrkz91qhnawc4bq3ylmqxg849d49zxckzg0pk7jbpw"; - libraryHaskellDepends = [ - data-default-class - unordered-containers - ]; - description = "Default instances for unordered-containers"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "data-default-instances-vector" = callPackage ( - { - mkDerivation, - data-default-class, - vector, - }: - mkDerivation { - pname = "data-default-instances-vector"; - version = "0.0.1"; - sha256 = "0rj6g6fky806h91cw5sy5lxqrhd06i5gi9ayg5g0r2xgldrl9j4s"; - revision = "1"; - editedCabalFile = "0piq9b9ywzyk12glndy9w6dka6d5zrc1mywq5j032li3j6sbwy4a"; - libraryHaskellDepends = [ - data-default-class - vector - ]; - description = "Default instances for types defined in vector package"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "data-dispersal" = callPackage ( - { - mkDerivation, - AES, - array, - base, - binary, - bytestring, - entropy, - finite-field, - matrix, - QuickCheck, - secret-sharing, - spool, - syb, - test-framework, - test-framework-quickcheck2, - vector, - }: - mkDerivation { - pname = "data-dispersal"; - version = "1.0.0.2"; - sha256 = "1x6wd4xah19isysk2b9waws3fyvzx3w6l917zyw0cvdzf1lkpbw6"; - libraryHaskellDepends = [ - AES - array - base - binary - bytestring - entropy - finite-field - matrix - secret-sharing - syb - vector - ]; - testHaskellDepends = [ - array - base - binary - bytestring - QuickCheck - spool - syb - test-framework - test-framework-quickcheck2 - vector - ]; - description = "Space-efficient and privacy-preserving data dispersal algorithms"; - license = lib.licenses.lgpl21Only; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "data-diverse" = callPackage ( { mkDerivation, @@ -177311,43 +99541,6 @@ self: { } ) { }; - "data-diverse-lens" = callPackage ( - { - mkDerivation, - base, - data-diverse, - data-has, - hspec, - lens, - profunctors, - tagged, - }: - mkDerivation { - pname = "data-diverse-lens"; - version = "4.3.0.0"; - sha256 = "11nrisgx7yb7qp03s3hxkbygc170fggbi3mcid196dhakxv4kl4p"; - libraryHaskellDepends = [ - base - data-diverse - data-has - lens - profunctors - tagged - ]; - testHaskellDepends = [ - base - data-diverse - hspec - lens - tagged - ]; - description = "Isos & Lens for Data.Diverse.Many and Prisms for Data.Diverse.Which"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "data-dword" = callPackage ( { mkDerivation, @@ -177380,54 +99573,6 @@ self: { } ) { }; - "data-easy" = callPackage ( - { - mkDerivation, - base, - containers, - directory, - errors, - haskell-src-exts, - hlint, - hspec, - HUnit, - QuickCheck, - safe, - text, - transformers, - unix, - }: - mkDerivation { - pname = "data-easy"; - version = "0.7.0"; - sha256 = "1n164yzvlik1jbywhmd2l5byc1y0jwxzzd822xq0k4fqv76vl79h"; - libraryHaskellDepends = [ - base - containers - safe - ]; - testHaskellDepends = [ - base - containers - directory - errors - haskell-src-exts - hlint - hspec - HUnit - QuickCheck - safe - text - transformers - unix - ]; - description = "Consistent set of utility functions for Maybe, Either, List and Monoids"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "data-effects" = callPackage ( { mkDerivation, @@ -177662,20 +99807,6 @@ self: { } ) { }; - "data-emoticons" = callPackage ( - { mkDerivation, base }: - mkDerivation { - pname = "data-emoticons"; - version = "0.1.0"; - sha256 = "0brfvlx7hihgnlc87r3n17dncbydfwxs49dc8kgppxycqqss6vh1"; - libraryHaskellDepends = [ base ]; - description = "Combinator emoticons: data-aviary in the flavor of emoticons"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "data-endian" = callPackage ( { mkDerivation, base }: mkDerivation { @@ -177722,35 +99853,6 @@ self: { } ) { }; - "data-filepath" = callPackage ( - { - mkDerivation, - base, - bifunctors, - ghc-prim, - semigroups, - split, - template-haskell, - }: - mkDerivation { - pname = "data-filepath"; - version = "2.2.0.0"; - sha256 = "1l71sg02rqgk7i6w401il7crx3ikdbxi5wbb6ida677pfdrpm7f7"; - libraryHaskellDepends = [ - base - bifunctors - ghc-prim - semigroups - split - template-haskell - ]; - description = "A type safe file path data structure"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "data-files-gen" = callPackage ( { mkDerivation, @@ -177810,59 +99912,6 @@ self: { } ) { }; - "data-fin" = callPackage ( - { - mkDerivation, - base, - lazysmallcheck, - prelude-safeenum, - QuickCheck, - reflection, - smallcheck, - tagged, - }: - mkDerivation { - pname = "data-fin"; - version = "0.1.1.3"; - sha256 = "02n3dr4gj73z549vwq5h7h1kvmx2j8vaxjcggpdlppps9wl6flry"; - libraryHaskellDepends = [ - base - lazysmallcheck - prelude-safeenum - QuickCheck - reflection - smallcheck - tagged - ]; - description = "Finite totally ordered sets"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "data-fin-simple" = callPackage ( - { - mkDerivation, - base, - doctest, - }: - mkDerivation { - pname = "data-fin-simple"; - version = "0.1.0.0"; - sha256 = "17qj3b3lkrakdk3vbs9nqc2pvqr81n43qxphcznfbkv91k1ygrp6"; - libraryHaskellDepends = [ base ]; - testHaskellDepends = [ - base - doctest - ]; - description = "Simple integral finite set"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "data-findcycle" = callPackage ( { mkDerivation, @@ -177975,20 +100024,6 @@ self: { } ) { }; - "data-flagset" = callPackage ( - { mkDerivation, base }: - mkDerivation { - pname = "data-flagset"; - version = "1.0.0.0"; - sha256 = "0ygvzrcb2vskjf203svk9wpv8lw4447rd218zvys4a0787ss1aw2"; - libraryHaskellDepends = [ base ]; - description = "An efficient data type for sets of flags"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "data-foldapp" = callPackage ( { mkDerivation, @@ -178176,32 +100211,6 @@ self: { } ) { }; - "data-index" = callPackage ( - { - mkDerivation, - base, - containers, - doctest, - }: - mkDerivation { - pname = "data-index"; - version = "0.1.0.0"; - sha256 = "0rfb688h0q6prsiyf1rfax1xv20m2r69m2389qar1z85izk2hfjf"; - libraryHaskellDepends = [ - base - containers - ]; - testHaskellDepends = [ - base - doctest - ]; - description = "Extending the concept of indices for lists and other containers"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "data-interval" = callPackage ( { mkDerivation, @@ -178268,27 +100277,6 @@ self: { } ) { }; - "data-ivar" = callPackage ( - { - mkDerivation, - base, - containers, - }: - mkDerivation { - pname = "data-ivar"; - version = "0.30"; - sha256 = "1vnbmvihkrcknys33sam9zlb5qk5qqkxz6w3wamsbdmpp0q6zfb2"; - libraryHaskellDepends = [ - base - containers - ]; - description = "Write-once variables with concurrency support"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "data-json-token" = callPackage ( { mkDerivation, base }: mkDerivation { @@ -178306,59 +100294,6 @@ self: { } ) { }; - "data-kiln" = callPackage ( - { - mkDerivation, - base, - containers, - data-fix, - IfElse, - mtl, - transformers, - }: - mkDerivation { - pname = "data-kiln"; - version = "0.1.0.0"; - sha256 = "13pkpmpjy787cjn1hcsl9r04w70nxrzdx8xrn9w6ifbzb2xj2iny"; - libraryHaskellDepends = [ - base - containers - data-fix - IfElse - mtl - transformers - ]; - description = "Sculpt mutable recursive data with reference equality; bake it using a data kiln into an immutable lazy structure"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "data-layer" = callPackage ( - { - mkDerivation, - base, - convert, - data-construction, - lens, - }: - mkDerivation { - pname = "data-layer"; - version = "1.0.4"; - sha256 = "0vck7a3vgdqml2pg3ilkw41d52pmx452sgh2h2q4qzysq26vw49w"; - libraryHaskellDepends = [ - base - convert - data-construction - lens - ]; - description = "Data layering utilities. Layer is a data-type which wrapps other one, but keeping additional information. If you want to access content of simple newtype object, use Lens.Wrapper instead."; - license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "data-layout" = callPackage ( { mkDerivation, @@ -178405,57 +100340,6 @@ self: { } ) { }; - "data-lens-fd" = callPackage ( - { - mkDerivation, - base, - comonad, - data-lens, - mtl, - transformers, - }: - mkDerivation { - pname = "data-lens-fd"; - version = "2.0.6"; - sha256 = "10fxf87avc6zqlsypxjhn3nckbjrqxwg339pzpjdzf390gk58np9"; - libraryHaskellDepends = [ - base - comonad - data-lens - mtl - transformers - ]; - description = "Lenses"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "data-lens-ixset" = callPackage ( - { - mkDerivation, - base, - data-lens, - ixset, - QuickCheck, - }: - mkDerivation { - pname = "data-lens-ixset"; - version = "0.1.4"; - sha256 = "0frzjfcp7w1ayfai1m07n0fpj3z1vbi971bc1kn1iarxhakny651"; - libraryHaskellDepends = [ - base - data-lens - ixset - ]; - testHaskellDepends = [ QuickCheck ]; - description = "A Lens for IxSet"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "data-lens-light" = callPackage ( { mkDerivation, @@ -178478,29 +100362,6 @@ self: { } ) { }; - "data-lens-template" = callPackage ( - { - mkDerivation, - base, - data-lens, - template-haskell, - }: - mkDerivation { - pname = "data-lens-template"; - version = "2.2"; - sha256 = "1w1a32298naha7sv8d0v018l8z1bmwpwnb3jg09a3n65ci9hy2zm"; - libraryHaskellDepends = [ - base - data-lens - template-haskell - ]; - description = "Utilities for Data.Lens"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "data-list-sequences" = callPackage ( { mkDerivation, base }: mkDerivation { @@ -178525,27 +100386,6 @@ self: { } ) { }; - "data-map-multikey" = callPackage ( - { - mkDerivation, - base, - containers, - }: - mkDerivation { - pname = "data-map-multikey"; - version = "0.0.1.2"; - sha256 = "04h4k2zn6w8rahzyr80hwf8mvsmzgbqh7aw2138sva874bsk9mkf"; - libraryHaskellDepends = [ - base - containers - ]; - description = "Data.Map with multiple, unique keys"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "data-memocombinators" = callPackage ( { mkDerivation, @@ -178673,151 +100513,6 @@ self: { } ) { }; - "data-named" = callPackage ( - { - mkDerivation, - attoparsec, - base, - binary, - containers, - text, - }: - mkDerivation { - pname = "data-named"; - version = "0.6.2"; - sha256 = "03f4xc4ayql17s48ajza2ny79j885mcmp0x3mrwcfdc42dlnd7nb"; - libraryHaskellDepends = [ - attoparsec - base - binary - containers - text - ]; - description = "Data types for named entities"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "data-nat" = callPackage ( - { - mkDerivation, - base, - semigroups, - }: - mkDerivation { - pname = "data-nat"; - version = "0.1.2"; - sha256 = "1yzxkch0xzy76iyad0yshfnpvz38xklqdlyj8lgqnqsllw0vwh0m"; - libraryHaskellDepends = [ - base - semigroups - ]; - description = "data Nat = Zero | Succ Nat"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "data-object" = callPackage ( - { - mkDerivation, - base, - bytestring, - failure, - text, - time, - }: - mkDerivation { - pname = "data-object"; - version = "0.3.1.9"; - sha256 = "0z8m23kw8mj6hhy1r8y1vvlxxpwl273dhanszig2673a1sw0l98l"; - libraryHaskellDepends = [ - base - bytestring - failure - text - time - ]; - description = "Represent hierachichal structures, called objects in JSON. (deprecated)"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "data-object-json" = callPackage ( - { - mkDerivation, - base, - bytestring, - bytestring-trie, - convertible-text, - data-object, - failure, - JSONb, - text, - }: - mkDerivation { - pname = "data-object-json"; - version = "0.3.1.8"; - sha256 = "06zkiqj4pkl5q4fmh816y4yj74rzwi2b91k542lxswjvfa3za3qk"; - libraryHaskellDepends = [ - base - bytestring - bytestring-trie - convertible-text - data-object - failure - JSONb - text - ]; - description = "Serialize JSON data to/from Haskell using the data-object library. (deprecated)"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "data-object-yaml" = callPackage ( - { - mkDerivation, - base, - bytestring, - conduit, - containers, - convertible-text, - data-object, - failure, - text, - transformers, - yaml, - }: - mkDerivation { - pname = "data-object-yaml"; - version = "0.3.4.2"; - sha256 = "18a9r4wfpb7icjb6nji9iy3abq6sxafmsnfwqpnm1nn2nn3fm1ap"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - bytestring - conduit - containers - convertible-text - data-object - failure - text - transformers - yaml - ]; - description = "Serialize data to and from Yaml files (deprecated)"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "data-or" = callPackage ( { mkDerivation, base }: mkDerivation { @@ -178944,81 +100639,25 @@ self: { pname = "data-prometheus"; version = "0.1.0.0"; sha256 = "1zric3dwnxn5szi5lviih0w59djm2izaf2345ycmam7m87938gz1"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - attoparsec - base - containers - mtl - text - transformers - ]; - testHaskellDepends = [ - attoparsec - base - containers - hspec - raw-strings-qq - ]; - description = "Prometheus metrics text format"; - license = lib.licenses.bsd3; - } - ) { }; - - "data-quotientref" = callPackage ( - { mkDerivation, base }: - mkDerivation { - pname = "data-quotientref"; - version = "0.1"; - sha256 = "0ylimakhw37klz2axg8qrdhwag34mfa1byb2z2mz2i8z0w4737j8"; - libraryHaskellDepends = [ base ]; - description = "Reference cells that need two independent indices to be accessed"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "data-r-tree" = callPackage ( - { - mkDerivation, - base, - binary, - containers, - deepseq, - ghc-heap-view, - HUnit, - QuickCheck, - test-framework, - test-framework-hunit, - test-framework-quickcheck2, - }: - mkDerivation { - pname = "data-r-tree"; - version = "0.6.0"; - sha256 = "07s35yavzcfv6mhyj0cfhgsv1h10k5cq4sb875hb7l2c8jif91nl"; + isLibrary = true; + isExecutable = true; libraryHaskellDepends = [ + attoparsec base - binary - deepseq + containers + mtl + text + transformers ]; testHaskellDepends = [ + attoparsec base - binary containers - deepseq - ghc-heap-view - HUnit - QuickCheck - test-framework - test-framework-hunit - test-framework-quickcheck2 + hspec + raw-strings-qq ]; - description = "R-Tree is a spatial data structure similar to Quadtrees or B-Trees"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; + description = "Prometheus metrics text format"; + license = lib.licenses.bsd3; } ) { }; @@ -179078,29 +100717,6 @@ self: { } ) { }; - "data-reify-cse" = callPackage ( - { - mkDerivation, - base, - containers, - data-reify, - }: - mkDerivation { - pname = "data-reify-cse"; - version = "0.0.3"; - sha256 = "0vjfpbp0maqwirvi8j21z9qbs396l76dk5npn8zxac56j0i6l62r"; - libraryHaskellDepends = [ - base - containers - data-reify - ]; - description = "Common Sub-Expression Elimination for graphs generated by Data.Reify."; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "data-reify-gadt" = callPackage ( { mkDerivation, @@ -179141,125 +100757,6 @@ self: { } ) { }; - "data-repr" = callPackage ( - { - mkDerivation, - base, - generic-deriving, - lens, - }: - mkDerivation { - pname = "data-repr"; - version = "1.0"; - sha256 = "14k4agv5z8vlvb21vmfz9x1dcz6cgph6ix6qrac9mfyylywdffa9"; - libraryHaskellDepends = [ - base - generic-deriving - lens - ]; - description = "Alternative to Show data printing utility"; - license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "data-result" = callPackage ( - { - mkDerivation, - base, - poly-control, - prologue, - }: - mkDerivation { - pname = "data-result"; - version = "1.0"; - sha256 = "0186py0zj9k987vxbsaxbckc7ik64rx87kq3mzkjzvam9qcc0rmj"; - libraryHaskellDepends = [ - base - poly-control - prologue - ]; - description = "Data types for returning results distinguishable by types"; - license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "data-rev" = callPackage ( - { - mkDerivation, - base, - bytestring, - containers, - text, - vector, - }: - mkDerivation { - pname = "data-rev"; - version = "0.1.0.1"; - sha256 = "13bqp3vvsc6i6lcvw480i08fz2rm3f8varwyhvrp44dzv2q8zkl1"; - libraryHaskellDepends = [ - base - bytestring - containers - text - vector - ]; - description = "A typeclass for reversing order of contents"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "data-rope" = callPackage ( - { - mkDerivation, - base, - bytestring, - bytestring-mmap, - unix, - }: - mkDerivation { - pname = "data-rope"; - version = "0.3"; - sha256 = "06sz6z0kd53av4acmgxh4668fsn588hx5k5qp752rrjf2nx9vww8"; - libraryHaskellDepends = [ - base - bytestring - bytestring-mmap - unix - ]; - description = "Ropes, an alternative to (Byte)Strings"; - license = "GPL"; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "data-rtuple" = callPackage ( - { - mkDerivation, - base, - lens, - typelevel, - }: - mkDerivation { - pname = "data-rtuple"; - version = "1.0"; - sha256 = "01gv16yz5y3wyc370a2snihz95wdnl7sk1jz9k7aypixsaw28a2f"; - libraryHaskellDepends = [ - base - lens - typelevel - ]; - description = "Recursive tuple data structure. It is very usefull when implementing some lo-level operations, allowing to traverse different elements using Haskell's type classes."; - license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "data-serializer" = callPackage ( { mkDerivation, @@ -179299,33 +100796,6 @@ self: { } ) { }; - "data-size" = callPackage ( - { - mkDerivation, - base, - bytestring, - containers, - deepseq, - text, - }: - mkDerivation { - pname = "data-size"; - version = "0.1.1.7"; - sha256 = "0j1g39ha2fjgd960zd0gbhpznisw3qw07mbdacbx226bw50nwa7y"; - libraryHaskellDepends = [ - base - bytestring - containers - deepseq - text - ]; - description = "Profiling of data structures"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "data-sketches" = callPackage ( { mkDerivation, @@ -179426,50 +100896,6 @@ self: { } ) { }; - "data-spacepart" = callPackage ( - { - mkDerivation, - base, - vector-space, - }: - mkDerivation { - pname = "data-spacepart"; - version = "20090215.0"; - sha256 = "0h6z4yibjbnzck2fvh9mnppz9j0lzgx8nzmzm08q5yzmzjydy3rk"; - libraryHaskellDepends = [ - base - vector-space - ]; - description = "Deprecated. Now called \"spacepart\". Space partitioning data structures."; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "data-standards" = callPackage ( - { - mkDerivation, - base, - hashable, - unordered-containers, - }: - mkDerivation { - pname = "data-standards"; - version = "0.1.0.2"; - sha256 = "1xllcy2yn26shmcibnjczi7nm3mp9rqa6685iqc8a8vcic7mqcj9"; - libraryHaskellDepends = [ - base - hashable - unordered-containers - ]; - description = "A collection of standards representable by simple data types"; - license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "data-stm32" = callPackage ( { mkDerivation, @@ -179528,171 +100954,6 @@ self: { } ) { }; - "data-store" = callPackage ( - { - mkDerivation, - base, - bytestring, - cereal, - containers, - criterion, - deepseq, - ixset, - lens, - mtl, - QuickCheck, - random, - safecopy, - tables, - tagged, - test-framework, - test-framework-quickcheck2, - transformers, - unordered-containers, - vector, - }: - mkDerivation { - pname = "data-store"; - version = "0.3.0.7"; - sha256 = "0cv02d3fwyyyxjv3519k9wilaagxlcn8m2nfifrcq0q0qihxd1bd"; - libraryHaskellDepends = [ - base - cereal - containers - deepseq - lens - safecopy - transformers - ]; - testHaskellDepends = [ - base - cereal - containers - deepseq - lens - QuickCheck - safecopy - test-framework - test-framework-quickcheck2 - transformers - vector - ]; - benchmarkHaskellDepends = [ - base - bytestring - cereal - containers - criterion - deepseq - ixset - lens - mtl - random - safecopy - tables - tagged - transformers - unordered-containers - vector - ]; - description = "Type safe, in-memory dictionary with multidimensional keys"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "data-stringmap" = callPackage ( - { - mkDerivation, - base, - binary, - containers, - deepseq, - ghc-heap-view, - HUnit, - QuickCheck, - test-framework, - test-framework-hunit, - test-framework-quickcheck2, - }: - mkDerivation { - pname = "data-stringmap"; - version = "1.0.1.1"; - sha256 = "0djbky5m6hxr04jgxi2cq3fsivja32nzn16zs8ffqgadxw030pa1"; - libraryHaskellDepends = [ - base - binary - containers - deepseq - ]; - testHaskellDepends = [ - base - containers - deepseq - ghc-heap-view - HUnit - QuickCheck - test-framework - test-framework-hunit - test-framework-quickcheck2 - ]; - description = "An efficient implementation of maps from strings to arbitrary values"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "data-structure-inferrer" = callPackage ( - { - mkDerivation, - alex, - ansi-terminal, - array, - base, - deepseq, - derive, - directory, - filepath, - happy, - language-c, - mtl, - random, - safe, - utility-ht, - }: - mkDerivation { - pname = "data-structure-inferrer"; - version = "1.0"; - sha256 = "0jkbysk1rmbkjvjizwx72h58amvnz4iyjbs0lcx6987m4fn456w9"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - ansi-terminal - array - base - deepseq - derive - directory - filepath - language-c - mtl - random - safe - utility-ht - ]; - executableToolDepends = [ - alex - happy - ]; - description = "Program that infers the fastest data structure available for your program"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - mainProgram = "dsinf"; - } - ) { }; - "data-svd" = callPackage ( { mkDerivation, @@ -179932,34 +101193,6 @@ self: { } ) { }; - "data-type" = callPackage ( - { mkDerivation, base }: - mkDerivation { - pname = "data-type"; - version = "0.1.0"; - sha256 = "1x3wsnilp9sxy061sfmyyg0f6b0k2lxvi0g4qf2gkldrz32c4qvj"; - libraryHaskellDepends = [ base ]; - description = "Basic type wrangling types and classes"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "data-util" = callPackage ( - { mkDerivation, base }: - mkDerivation { - pname = "data-util"; - version = "0.5"; - sha256 = "0zhpr40sf1vqa4k7f4j5crjkd701xls86whxrhdq8v8h08ssxvxj"; - libraryHaskellDepends = [ base ]; - description = "utilities for handle data"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "data-validation" = callPackage ( { mkDerivation, @@ -179992,27 +101225,6 @@ self: { } ) { }; - "data-variant" = callPackage ( - { - mkDerivation, - base, - safe, - }: - mkDerivation { - pname = "data-variant"; - version = "0.28.0.5"; - sha256 = "11ia37q28xz8a87xkc8yyvqqd3qzfvcbdnp2caxdbzvdnjbazhmk"; - libraryHaskellDepends = [ - base - safe - ]; - description = "A variant data type, useful for modeling dynamically-typed programming languages"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "data-vector-growable" = callPackage ( { mkDerivation, @@ -180065,94 +101277,6 @@ self: { } ) { }; - "database-id-groundhog" = callPackage ( - { - mkDerivation, - aeson, - base, - database-id-class, - groundhog, - template-haskell, - }: - mkDerivation { - pname = "database-id-groundhog"; - version = "0.1.0.1"; - sha256 = "16q90lzxjbisfdvcl4lbjlfmn02xnscsxkv9hm35xw9z8q19zlsx"; - libraryHaskellDepends = [ - aeson - base - database-id-class - groundhog - template-haskell - ]; - description = "HasId/Groundhog interop"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "database-migrate" = callPackage ( - { - mkDerivation, - base, - bytestring, - cmdargs, - containers, - directory, - either, - filepath, - lens, - postgresql-simple, - text, - time, - transformers, - }: - mkDerivation { - pname = "database-migrate"; - version = "0.2.0"; - sha256 = "1hhx3851yzgq7cf397sifdbnznk0sfqf3blflxfl50yq68rmwbzy"; - libraryHaskellDepends = [ - base - bytestring - cmdargs - containers - directory - either - filepath - lens - postgresql-simple - text - time - transformers - ]; - description = "Database versioning and migration (experimental)"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "database-study" = callPackage ( - { - mkDerivation, - base, - containers, - }: - mkDerivation { - pname = "database-study"; - version = "0.0.1"; - sha256 = "1aqp7a46p758f1q99cn700mgc1dic896gpsih3vj2fmffqj42gd7"; - libraryHaskellDepends = [ - base - containers - ]; - description = "Demonstrate how a database can be implemented the functional way"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "datacrypto" = callPackage ( { mkDerivation, base }: mkDerivation { @@ -180257,105 +101381,6 @@ self: { } ) { }; - "datadog-tracing" = callPackage ( - { - mkDerivation, - aeson, - base, - bytestring, - containers, - data-default, - ffunctor, - generic-random, - hspec-golden-aeson, - http-media, - jaeger-flamegraph, - msgpack, - mtl, - prettyprinter, - QuickCheck, - quickcheck-text, - refined, - scientific, - servant, - servant-client, - servant-server, - tasty, - tasty-discover, - tasty-hspec, - text, - time, - unordered-containers, - vector, - wai-extra, - warp, - }: - mkDerivation { - pname = "datadog-tracing"; - version = "1.5.1"; - sha256 = "1jjgavp9winbl2gyix61y30myvzhvzb500l2zwcb087cqzy7z6nb"; - revision = "2"; - editedCabalFile = "1mb0g3lddphaki1q946dpayhjdma9g0xcx55wdmksbhkjrbm0rgb"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson - base - bytestring - containers - ffunctor - generic-random - http-media - jaeger-flamegraph - msgpack - mtl - prettyprinter - QuickCheck - quickcheck-text - refined - scientific - servant - servant-client - text - time - unordered-containers - vector - ]; - executableHaskellDepends = [ - aeson - base - bytestring - containers - data-default - jaeger-flamegraph - mtl - servant - servant-server - text - wai-extra - warp - ]; - testHaskellDepends = [ - aeson - base - bytestring - containers - hspec-golden-aeson - jaeger-flamegraph - mtl - servant - tasty - tasty-hspec - text - ]; - testToolDepends = [ tasty-discover ]; - description = "Datadog tracing client and mock agent"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "datadog-agent"; - } - ) { }; - "dataenc" = callPackage ( { mkDerivation, @@ -180379,168 +101404,6 @@ self: { } ) { }; - "datafix" = callPackage ( - { - mkDerivation, - base, - Cabal, - cabal-doctest, - cabal-toolkit, - containers, - criterion, - deepseq, - directory, - doctest, - filepath, - ghc, - ghc-paths, - lattices, - pomaps, - primitive, - QuickCheck, - tasty, - tasty-hunit, - tasty-smallcheck, - text, - transformers, - turtle, - vector, - }: - mkDerivation { - pname = "datafix"; - version = "0.0.1.0"; - sha256 = "1rp3lwrqd8ghmjbqk22sb4mfhl13swm3vij28l5ygj2f3sb8x2zi"; - revision = "1"; - editedCabalFile = "0gx0knrmljam25wz2b0zpn33bw2bxfmcwq8ilxr9j8ndqxy36n6n"; - isLibrary = true; - isExecutable = true; - setupHaskellDepends = [ - base - Cabal - cabal-doctest - cabal-toolkit - ]; - libraryHaskellDepends = [ - base - containers - lattices - pomaps - primitive - transformers - vector - ]; - executableHaskellDepends = [ - base - containers - ]; - testHaskellDepends = [ - base - Cabal - cabal-toolkit - containers - directory - doctest - filepath - ghc - ghc-paths - lattices - primitive - QuickCheck - tasty - tasty-hunit - tasty-smallcheck - text - transformers - turtle - ]; - benchmarkHaskellDepends = [ - base - Cabal - cabal-toolkit - containers - criterion - deepseq - directory - filepath - ghc - ghc-paths - lattices - primitive - text - transformers - turtle - ]; - description = "Fixing data-flow problems"; - license = lib.licenses.isc; - hydraPlatforms = lib.platforms.none; - mainProgram = "firstfollow-example"; - } - ) { }; - - "dataflow" = callPackage ( - { - mkDerivation, - aeson, - base, - blaze-html, - bytestring, - containers, - filepath, - gitrev, - hastache, - hspec, - HUnit, - markdown, - MissingH, - mtl, - parsec, - text, - vector, - }: - mkDerivation { - pname = "dataflow"; - version = "0.7.3.0"; - sha256 = "0fl8mx5iw8921a664w3b6ism6gj42g8z3i5kdr6y7mybjw22ybri"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson - base - blaze-html - bytestring - containers - filepath - hastache - markdown - MissingH - mtl - parsec - text - vector - ]; - executableHaskellDepends = [ - base - bytestring - gitrev - text - ]; - testHaskellDepends = [ - aeson - base - bytestring - containers - hspec - HUnit - parsec - vector - ]; - description = "Generate Graphviz documents from a Haskell representation"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "dataflow"; - } - ) { }; - "dataflower" = callPackage ( { mkDerivation, @@ -180781,260 +101644,6 @@ self: { } ) { }; - "datalog" = callPackage ( - { - mkDerivation, - base, - containers, - exceptions, - hashable, - haskeline, - HUnit, - parsec, - pretty, - test-framework, - test-framework-hunit, - text, - transformers, - unordered-containers, - vector, - }: - mkDerivation { - pname = "datalog"; - version = "0.2.0.2"; - sha256 = "1nfjmgf6j8a8602rmk7fg3kbkafiyd7lsnhvnwc95ms90icg0r86"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - containers - exceptions - hashable - text - transformers - unordered-containers - vector - ]; - executableHaskellDepends = [ - base - containers - exceptions - hashable - haskeline - parsec - pretty - text - transformers - unordered-containers - vector - ]; - testHaskellDepends = [ - base - containers - hashable - HUnit - test-framework - test-framework-hunit - text - ]; - description = "An implementation of datalog in Haskell"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "datalog-repl"; - broken = true; - } - ) { }; - - "datapacker" = callPackage ( - { - mkDerivation, - base, - directory, - filepath, - hslogger, - MissingH, - mtl, - process, - unix, - }: - mkDerivation { - pname = "datapacker"; - version = "1.0.1"; - sha256 = "10fj1z4wbr76wfnp9h1jzyd8afzn495r6xvbjiw55bimy0hasalg"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - directory - filepath - hslogger - MissingH - mtl - process - unix - ]; - description = "Tool to help pack files into the minimum number of CDs/DVDs/etc"; - license = "GPL"; - hydraPlatforms = lib.platforms.none; - mainProgram = "datapacker"; - broken = true; - } - ) { }; - - "datarobot" = callPackage ( - { - mkDerivation, - aeson, - base, - bytestring, - exceptions, - microlens, - network-uri, - safe, - scientific, - string-conversions, - text, - unordered-containers, - vector, - wreq, - }: - mkDerivation { - pname = "datarobot"; - version = "1.0.1"; - sha256 = "0arxjghmx50ci9hng6jmcm3jmx7c5k8vycn76d5paw6bjpd1n3mf"; - libraryHaskellDepends = [ - aeson - base - bytestring - exceptions - microlens - network-uri - safe - scientific - string-conversions - text - unordered-containers - vector - wreq - ]; - testHaskellDepends = [ - aeson - base - bytestring - exceptions - microlens - network-uri - safe - scientific - string-conversions - text - unordered-containers - vector - wreq - ]; - description = "Client for DataRobot API"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "datasets" = callPackage ( - { - mkDerivation, - aeson, - attoparsec, - base, - bytestring, - cassava, - criterion, - deepseq, - directory, - exceptions, - file-embed, - filepath, - hashable, - hspec, - JuicyPixels, - microlens, - mtl, - mwc-random, - parallel, - QuickCheck, - req, - safe-exceptions, - streaming, - streaming-attoparsec, - streaming-bytestring, - streaming-cassava, - streaming-commons, - stringsearch, - tar, - text, - time, - transformers, - vector, - zlib, - }: - mkDerivation { - pname = "datasets"; - version = "0.4.0"; - sha256 = "1ifml0gh7qm9anknqq0r0fi561b8zn7g1sqdlv718pyhx9y7g6i0"; - libraryHaskellDepends = [ - aeson - attoparsec - base - bytestring - cassava - deepseq - directory - exceptions - file-embed - filepath - hashable - JuicyPixels - microlens - mtl - mwc-random - parallel - req - safe-exceptions - streaming - streaming-attoparsec - streaming-bytestring - streaming-cassava - streaming-commons - stringsearch - tar - text - time - transformers - vector - zlib - ]; - testHaskellDepends = [ - base - hspec - QuickCheck - ]; - benchmarkHaskellDepends = [ - base - criterion - deepseq - directory - filepath - JuicyPixels - mwc-random - req - safe-exceptions - streaming - ]; - description = "Classical data sets for statistics and machine learning"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "dataurl" = callPackage ( { mkDerivation, @@ -181088,37 +101697,6 @@ self: { } ) { }; - "date-conversions" = callPackage ( - { - mkDerivation, - base, - dates, - hspec, - QuickCheck, - time, - }: - mkDerivation { - pname = "date-conversions"; - version = "0.3.0.0"; - sha256 = "086vmgq58n2gcmz93idngh2hq1zfz8d231qazjzv19p08np5j3zm"; - libraryHaskellDepends = [ - base - dates - time - ]; - testHaskellDepends = [ - base - dates - hspec - QuickCheck - time - ]; - description = "Date conversions"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "dates" = callPackage ( { mkDerivation, @@ -181153,157 +101731,6 @@ self: { } ) { }; - "datetime" = callPackage ( - { - mkDerivation, - base, - HUnit, - old-locale, - old-time, - QuickCheck, - test-framework, - test-framework-hunit, - test-framework-quickcheck2, - time, - }: - mkDerivation { - pname = "datetime"; - version = "0.3.1"; - sha256 = "0jmxxmv5s9rch84ivfjhqxdqnvqqzvabjs152wyv47h5qmvpag1k"; - libraryHaskellDepends = [ - base - old-locale - old-time - time - ]; - testHaskellDepends = [ - base - HUnit - old-locale - old-time - QuickCheck - test-framework - test-framework-hunit - test-framework-quickcheck2 - time - ]; - description = "Utilities to make Data.Time.* easier to use"; - license = "GPL"; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "datetime-sb" = callPackage ( - { - mkDerivation, - base, - HUnit, - old-locale, - old-time, - QuickCheck, - test-framework, - test-framework-hunit, - test-framework-quickcheck2, - time, - }: - mkDerivation { - pname = "datetime-sb"; - version = "0.2.4"; - sha256 = "1p2pn0jdidqcvmmi80njqm9z4amn1qp05nlxbnz1svpp6nc7amjf"; - libraryHaskellDepends = [ - base - old-locale - old-time - time - ]; - testHaskellDepends = [ - base - HUnit - old-locale - old-time - QuickCheck - test-framework - test-framework-hunit - test-framework-quickcheck2 - time - ]; - description = "Utilities to make Data.Time.* easier to use."; - license = "GPL"; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "dawdle" = callPackage ( - { - mkDerivation, - base, - filepath, - parsec, - pretty, - text, - time, - }: - mkDerivation { - pname = "dawdle"; - version = "0.1.0.2"; - sha256 = "0mhqjkd6a1lbq6kpnjzbgsbibc6kr8jvv0zadj9pfd8d62ys6a32"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - parsec - pretty - text - time - ]; - executableHaskellDepends = [ - base - filepath - parsec - pretty - text - ]; - description = "Generates DDL suggestions based on a CSV file"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - mainProgram = "dawdle"; - broken = true; - } - ) { }; - - "dawg" = callPackage ( - { - mkDerivation, - base, - binary, - containers, - mtl, - transformers, - vector, - vector-binary, - }: - mkDerivation { - pname = "dawg"; - version = "0.11"; - sha256 = "0xvkw5hp66r46v59ld0s7yi2jzvlcc4vc8ignadai9vqxayzm799"; - libraryHaskellDepends = [ - base - binary - containers - mtl - transformers - vector - vector-binary - ]; - description = "Directed acyclic word graphs"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "dawg-ord" = callPackage ( { mkDerivation, @@ -181491,108 +101918,6 @@ self: { } ) { }; - "dbf" = callPackage ( - { - mkDerivation, - base, - binary, - bytestring, - monad-loops, - rwlock, - }: - mkDerivation { - pname = "dbf"; - version = "0.0.0.2"; - sha256 = "1pay47bbmxvishmczs3kgn19nzkfmmip3m51h4zlwydm5kxfc5n2"; - libraryHaskellDepends = [ - base - binary - bytestring - monad-loops - rwlock - ]; - description = "Read and write XBase \".dbf\" files"; - license = lib.licenses.publicDomain; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "dbjava" = callPackage ( - { - mkDerivation, - base, - binary, - bytestring, - haskell98, - process, - uulib, - }: - mkDerivation { - pname = "dbjava"; - version = "1.7"; - sha256 = "06xz0a38sjjr64sz19lg0wzb73yz1msdlbg5s02ldd8n4b9yjk5f"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - binary - bytestring - haskell98 - process - uulib - ]; - executableHaskellDepends = [ - base - binary - bytestring - haskell98 - process - uulib - ]; - description = "Decompiler Bytecode Java"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "dbjava"; - } - ) { }; - - "dbm" = callPackage ( - { - mkDerivation, - base, - direct-sqlite, - directory, - ini, - optparse-applicative, - sqlite-simple, - text, - time, - }: - mkDerivation { - pname = "dbm"; - version = "0.3"; - sha256 = "177b4bwq0l5czcqrvs43q586pnqimgbhplxlf823005yxxkk95pn"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - direct-sqlite - directory - ini - optparse-applicative - sqlite-simple - text - time - ]; - description = "A *simple* database migration tool"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "dbm"; - broken = true; - } - ) { }; - "dbmigrations" = callPackage ( { mkDerivation, @@ -181678,121 +102003,6 @@ self: { } ) { }; - "dbmigrations-mysql" = callPackage ( - { - mkDerivation, - base, - dbmigrations, - HUnit, - mysql, - mysql-simple, - process, - split, - time, - }: - mkDerivation { - pname = "dbmigrations-mysql"; - version = "2.0.0"; - sha256 = "0p0z8807wgr6qm4qg8rf7gpr7pxraipylc20ccijkzvbwk4l9ga5"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - dbmigrations - mysql - mysql-simple - split - time - ]; - executableHaskellDepends = [ - base - dbmigrations - ]; - testHaskellDepends = [ - base - dbmigrations - HUnit - mysql - mysql-simple - process - ]; - description = "The dbmigrations tool built for MySQL databases"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "moo-mysql"; - } - ) { }; - - "dbmigrations-postgresql" = callPackage ( - { - mkDerivation, - base, - dbmigrations, - HDBC, - HDBC-postgresql, - HUnit, - process, - }: - mkDerivation { - pname = "dbmigrations-postgresql"; - version = "2.0.0"; - sha256 = "0by97vlbzzg312v9rzp5vsz77j977jwqbiajlj7iq1rfirvm7xzw"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - dbmigrations - HDBC-postgresql - ]; - testHaskellDepends = [ - base - dbmigrations - HDBC - HDBC-postgresql - HUnit - process - ]; - description = "The dbmigrations tool built for PostgreSQL databases"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "moo-postgresql"; - } - ) { }; - - "dbmigrations-sqlite" = callPackage ( - { - mkDerivation, - base, - dbmigrations, - HDBC, - HDBC-sqlite3, - HUnit, - }: - mkDerivation { - pname = "dbmigrations-sqlite"; - version = "2.0.0"; - sha256 = "080k92d8pjw9kl3318v0xh71jk2vsayj0p7ljc68j6brq8519a0c"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - dbmigrations - HDBC-sqlite3 - ]; - testHaskellDepends = [ - base - dbmigrations - HDBC - HDBC-sqlite3 - HUnit - ]; - description = "The dbmigrations tool built for SQLite databases"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "moo-sqlite"; - } - ) { }; - "dbmonitor" = callPackage ( { mkDerivation, @@ -181849,1242 +102059,248 @@ self: { ]; executableHaskellDepends = [ ansi-terminal - async - base - bytestring - dhall - directory - filepath - fsnotify - hasql - lifted-base - monad-control - mtl - optparse-applicative - stm - telegram-bot-simple - text - time - transformers-base - unordered-containers - vector - ]; - description = "Data consistency alerting for PostgreSQL"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "dbmonitor"; - broken = true; - } - ) { }; - - "dbus" = callPackage ( - { - mkDerivation, - base, - bytestring, - cereal, - conduit, - containers, - deepseq, - directory, - exceptions, - extra, - filepath, - lens, - network, - parsec, - process, - QuickCheck, - random, - resourcet, - split, - tasty, - tasty-hunit, - tasty-quickcheck, - template-haskell, - temporary, - text, - th-lift, - transformers, - unix, - vector, - xml-conduit, - xml-types, - }: - mkDerivation { - pname = "dbus"; - version = "1.4.1"; - sha256 = "016xrx8gnvldpwgalpsxzvkwagavpzw9m7j65w5msskaxk474ln7"; - libraryHaskellDepends = [ - base - bytestring - cereal - conduit - containers - deepseq - exceptions - filepath - lens - network - parsec - random - split - template-haskell - text - th-lift - transformers - unix - vector - xml-conduit - xml-types - ]; - testHaskellDepends = [ - base - bytestring - cereal - containers - directory - extra - filepath - network - parsec - process - QuickCheck - random - resourcet - tasty - tasty-hunit - tasty-quickcheck - temporary - text - transformers - unix - vector - ]; - doCheck = false; - description = "A client library for the D-Bus IPC system"; - license = lib.licenses.asl20; - } - ) { }; - - "dbus-app-launcher" = callPackage ( - { - mkDerivation, - base, - containers, - dbus, - extra, - regex-tdfa, - shellwords, - unix, - }: - mkDerivation { - pname = "dbus-app-launcher"; - version = "0.1.1.0"; - sha256 = "0hzaif160jp16wd5x92fsdxz74flf8pq0pp91pg5hjz47z90nyqw"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - containers - dbus - extra - regex-tdfa - shellwords - unix - ]; - description = "Simple app launcher for D-Bus"; - license = lib.licenses.mit; - mainProgram = "dbus-app-launcher"; - } - ) { }; - - "dbus-client" = callPackage ( - { - mkDerivation, - base, - containers, - dbus-core, - monads-tf, - text, - transformers, - }: - mkDerivation { - pname = "dbus-client"; - version = "0.4.1"; - sha256 = "0z7061kafjzd4jaws4xcp1xzh2kx559bgp7cmcjq55mbxr1rrsjq"; - libraryHaskellDepends = [ - base - containers - dbus-core - monads-tf - text - transformers - ]; - description = "Monadic and object-oriented interfaces to DBus"; - license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "dbus-core" = callPackage ( - { - mkDerivation, - base, - binary, - bytestring, - containers, - data-binary-ieee754, - libxml-sax, - network, - parsec, - text, - unix, - vector, - xml-types, - }: - mkDerivation { - pname = "dbus-core"; - version = "0.9.3"; - sha256 = "110373yinimq0k7hl8wkk7g4hm3hj563dpa2y8ag2lpl9yydzgfa"; - libraryHaskellDepends = [ - base - binary - bytestring - containers - data-binary-ieee754 - libxml-sax - network - parsec - text - unix - vector - xml-types - ]; - description = "Low-level D-Bus protocol implementation"; - license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "dbus-hslogger" = callPackage ( - { - mkDerivation, - base, - dbus, - hslogger, - optparse-applicative, - }: - mkDerivation { - pname = "dbus-hslogger"; - version = "0.1.0.1"; - sha256 = "0i2y69kagp53cmlb7p3y6ysr9k5wvfd0vcnpwsasyn1jpk6g80zi"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - dbus - hslogger - ]; - executableHaskellDepends = [ - base - dbus - hslogger - optparse-applicative - ]; - description = "Expose a dbus server to control hslogger"; - license = lib.licenses.bsd3; - mainProgram = "dbus-hslogger-client"; - } - ) { }; - - "dbus-qq" = callPackage ( - { - mkDerivation, - base, - containers, - dbus, - parsec, - QuickCheck, - template-haskell, - }: - mkDerivation { - pname = "dbus-qq"; - version = "0.1.0"; - sha256 = "0dg03nv7bsjydywhby0rv1a6jc90gf2885djxd8pb9aly2ncpjxx"; - libraryHaskellDepends = [ - base - containers - dbus - parsec - template-haskell - ]; - testHaskellDepends = [ - base - containers - dbus - QuickCheck - ]; - description = "Quasi-quoter for DBus functions"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "dbus-th" = callPackage ( - { - mkDerivation, - base, - containers, - dbus, - syb, - template-haskell, - text, - }: - mkDerivation { - pname = "dbus-th"; - version = "0.1.3.0"; - sha256 = "0b1ansjk6j7fzfi2s26dqvka7s85bflw7cl665vplm1sq0is2a0j"; - libraryHaskellDepends = [ - base - containers - dbus - syb - template-haskell - text - ]; - description = "TemplateHaskell generator of DBus bindings"; - license = lib.licenses.bsd3; - } - ) { }; - - "dbus-th-introspection" = callPackage ( - { - mkDerivation, - base, - cmdargs, - containers, - dbus, - dbus-th, - template-haskell, - }: - mkDerivation { - pname = "dbus-th-introspection"; - version = "0.1.2.0"; - sha256 = "1d8hqra3sfpvscc3jpgcyllq3gaha24jj0n4y17y4wkhz437ni4f"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - containers - dbus - dbus-th - template-haskell - ]; - executableHaskellDepends = [ - base - cmdargs - containers - dbus - dbus-th - template-haskell - ]; - description = "Generate bindings for DBus calls by using DBus introspection and dbus-th"; - license = lib.licenses.bsd3; - mainProgram = "dbus-introspect-hs"; - } - ) { }; - - "dclabel" = callPackage ( - { - mkDerivation, - base, - bytestring, - cereal, - containers, - criterion, - QuickCheck, - quickcheck-instances, - test-framework, - test-framework-quickcheck2, - }: - mkDerivation { - pname = "dclabel"; - version = "0.9.0.0"; - sha256 = "0bnbqbjpbx98wjgsz7kgr5znljbwhd6lsb8m9ky7dmzqygzybvir"; - libraryHaskellDepends = [ - base - bytestring - cereal - containers - ]; - testHaskellDepends = [ - base - bytestring - cereal - containers - QuickCheck - quickcheck-instances - test-framework - test-framework-quickcheck2 - ]; - benchmarkHaskellDepends = [ - base - bytestring - cereal - containers - criterion - QuickCheck - quickcheck-instances - ]; - description = "This packge is deprecated. See the the \"LIO.DCLabel\" in the \"lio\" package."; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "dclabel-eci11" = callPackage ( - { - mkDerivation, - base, - pretty, - QuickCheck, - }: - mkDerivation { - pname = "dclabel-eci11"; - version = "0.3"; - sha256 = "1bfc9ip4fqzjzlzppkrnspnm6gc50f4rkf0wngnxyj7f79fvjr6k"; - libraryHaskellDepends = [ - base - pretty - QuickCheck - ]; - description = "The Disjunction Category Label Format"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "dcpu16" = callPackage ( - { - mkDerivation, - base, - bytestring, - containers, - filepath, - optparse-applicative, - parsec, - sdl2, - spool, - vector, - }: - mkDerivation { - pname = "dcpu16"; - version = "0.1.0.2"; - sha256 = "1z67rpnzxi1znf52rf276znv9kf10rxi47vkpsa1w1c7y122iplj"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - bytestring - containers - parsec - sdl2 - spool - vector - ]; - executableHaskellDepends = [ - base - filepath - optparse-applicative - ]; - testHaskellDepends = [ base ]; - description = "DCPU-16 Emulator & Assembler"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "dcpu16-exe"; - broken = true; - } - ) { }; - - "ddate" = callPackage ( - { - mkDerivation, - base, - dates, - time, - }: - mkDerivation { - pname = "ddate"; - version = "0.1.0.0"; - sha256 = "1mw0qn7c6ag2w6gn6pwpjf979m3p5v3p9a1kal2x8g8ncx98dcn5"; - libraryHaskellDepends = [ - base - dates - time - ]; - description = "Discordian Date Types for Haskell"; - license = lib.licenses.gpl2Only; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "ddc-base" = callPackage ( - { - mkDerivation, - base, - containers, - deepseq, - parsec, - transformers, - wl-pprint, - }: - mkDerivation { - pname = "ddc-base"; - version = "0.4.2.1"; - sha256 = "1z5k0aacyr4a8jzwwbjhbkvkmbc2ygfmmjnih296my7ixjyvww08"; - libraryHaskellDepends = [ - base - containers - deepseq - parsec - transformers - wl-pprint - ]; - description = "Disciplined Disciple Compiler common utilities"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "ddc-build" = callPackage ( - { - mkDerivation, - base, - containers, - ddc-core, - ddc-core-babel, - ddc-core-flow, - ddc-core-llvm, - ddc-core-salt, - ddc-core-simpl, - ddc-core-tetra, - ddc-source-tetra, - deepseq, - directory, - filepath, - mtl, - process, - text, - time, - }: - mkDerivation { - pname = "ddc-build"; - version = "0.4.3.1"; - sha256 = "19z3qz03p8ggm8xi8fn48p6n468sy57xgqrz7y1qz78c1rf956l5"; - libraryHaskellDepends = [ - base - containers - ddc-core - ddc-core-babel - ddc-core-flow - ddc-core-llvm - ddc-core-salt - ddc-core-simpl - ddc-core-tetra - ddc-source-tetra - deepseq - directory - filepath - mtl - process - text - time - ]; - description = "Disciplined Disciple Compiler build framework"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "ddc-code" = callPackage ( - { - mkDerivation, - base, - filepath, - }: - mkDerivation { - pname = "ddc-code"; - version = "0.4.3.2"; - sha256 = "19ah5j1l84g06szyaf0qni89cqdnpygrlczppzx3qjl280q1qpzd"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base - filepath - ]; - description = "Disciplined Disciple Compiler base libraries"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "ddc-core" = callPackage ( - { - mkDerivation, - array, - base, - containers, - deepseq, - directory, - filepath, - inchworm, - mtl, - parsec, - text, - transformers, - wl-pprint, - }: - mkDerivation { - pname = "ddc-core"; - version = "0.4.3.1"; - sha256 = "0k33pkg9yr1y3q01qd1qw4d5y57775gifgasz10mh7i3nn1f48r6"; - libraryHaskellDepends = [ - array - base - containers - deepseq - directory - filepath - inchworm - mtl - parsec - text - transformers - wl-pprint - ]; - description = "Disciplined Disciple Compiler core language and type checker"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "ddc-core-babel" = callPackage ( - { - mkDerivation, - base, - containers, - ddc-core, - ddc-core-tetra, - }: - mkDerivation { - pname = "ddc-core-babel"; - version = "0.4.3.1"; - sha256 = "1wvgbbq6lww6ihs744mfl5hnf5sn0nfh7sxqc4wgz82hqjkhd2ig"; - libraryHaskellDepends = [ - base - containers - ddc-core - ddc-core-tetra - ]; - description = "Disciplined Disciple Compiler PHP code generator"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "ddc-core-eval" = callPackage ( - { - mkDerivation, - array, - base, - containers, - ddc-base, - ddc-core, - deepseq, - mtl, - transformers, - }: - mkDerivation { - pname = "ddc-core-eval"; - version = "0.4.1.3"; - sha256 = "0s11wzl75fa4pnjclgqdvymddk8srpknvpf6p3vkm2b09y0fryxd"; - libraryHaskellDepends = [ - array - base - containers - ddc-base - ddc-core - deepseq - mtl - transformers - ]; - description = "Disciplined Disciple Compiler semantic evaluator for the core language"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "ddc-core-flow" = callPackage ( - { - mkDerivation, - array, - base, - containers, - ddc-core, - ddc-core-salt, - ddc-core-simpl, - ddc-core-tetra, - deepseq, - limp, - limp-cbc, - mtl, - transformers, - }: - mkDerivation { - pname = "ddc-core-flow"; - version = "0.4.3.1"; - sha256 = "1xs9rzw9gxdwmrsc3n39hqfq5x1mjxmlcg8iwz66gknnqamjwsyr"; - libraryHaskellDepends = [ - array - base - containers - ddc-core - ddc-core-salt - ddc-core-simpl - ddc-core-tetra - deepseq - limp - limp-cbc - mtl - transformers - ]; - description = "Disciplined Disciple Compiler data flow compiler"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "ddc-core-llvm" = callPackage ( - { - mkDerivation, - array, - base, - bytestring, - containers, - ddc-core, - ddc-core-salt, - ddc-core-simpl, - mtl, - text, - transformers, - }: - mkDerivation { - pname = "ddc-core-llvm"; - version = "0.4.3.1"; - sha256 = "1c8d11l3aynaddlgv2zdpl8dagp8d8jxzpg943b46prssgfmpvvk"; - libraryHaskellDepends = [ - array - base - bytestring - containers - ddc-core - ddc-core-salt - ddc-core-simpl - mtl - text - transformers - ]; - description = "Disciplined Disciple Compiler LLVM code generator"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "ddc-core-salt" = callPackage ( - { - mkDerivation, - array, - base, - containers, - ddc-core, - deepseq, - mtl, - text, - transformers, - }: - mkDerivation { - pname = "ddc-core-salt"; - version = "0.4.3.1"; - sha256 = "13pch0z076m4i92a6z4lhg0axlqmzc41jd749sya5ijyr05f6bzs"; - libraryHaskellDepends = [ - array - base - containers - ddc-core - deepseq - mtl - text - transformers - ]; - description = "Disciplined Disciple Compiler C code generator"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "ddc-core-simpl" = callPackage ( - { - mkDerivation, - array, - base, - containers, - ddc-core, - deepseq, - mtl, - transformers, - }: - mkDerivation { - pname = "ddc-core-simpl"; - version = "0.4.3.1"; - sha256 = "0j01j81m9fz8vj4wwl191qa3crn5b539w3rh0qwm4g3q1nxvl4cf"; - libraryHaskellDepends = [ - array - base - containers - ddc-core - deepseq - mtl - transformers - ]; - description = "Disciplined Disciple Compiler code transformations"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "ddc-core-tetra" = callPackage ( - { - mkDerivation, - array, - base, - containers, - ddc-core, - ddc-core-salt, - ddc-core-simpl, - deepseq, - mtl, - pretty-show, - text, - transformers, - }: - mkDerivation { - pname = "ddc-core-tetra"; - version = "0.4.3.1"; - sha256 = "0ybsq10h5mmnbdgag0qqlck7ipgk094a207d8xjpsbyhi6h8qi68"; - libraryHaskellDepends = [ - array - base - containers - ddc-core - ddc-core-salt - ddc-core-simpl - deepseq - mtl - pretty-show - text - transformers - ]; - description = "Disciplined Disciple Compiler intermediate language"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "ddc-driver" = callPackage ( - { - mkDerivation, - base, - containers, - ddc-build, - ddc-core, - ddc-core-flow, - ddc-core-llvm, - ddc-core-salt, - ddc-core-simpl, - ddc-core-tetra, - ddc-source-tetra, - deepseq, - directory, - filepath, - mtl, - process, - time, - transformers, - }: - mkDerivation { - pname = "ddc-driver"; - version = "0.4.3.1"; - sha256 = "092vhj4l6w1q6l6pbzvfw2x5yy0v7q8hzkaw99jb8r1x848xywb6"; - libraryHaskellDepends = [ - base - containers - ddc-build - ddc-core - ddc-core-flow - ddc-core-llvm - ddc-core-salt - ddc-core-simpl - ddc-core-tetra - ddc-source-tetra - deepseq - directory - filepath - mtl - process - time - transformers - ]; - description = "Disciplined Disciple Compiler top-level driver"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "ddc-interface" = callPackage ( - { - mkDerivation, - base, - containers, - ddc-base, - directory, - }: - mkDerivation { - pname = "ddc-interface"; - version = "0.4.1.3"; - sha256 = "0pbsnxzlbx9xblqf9199wrl80aard59l3193gm8gzxx7ispfhs3f"; - libraryHaskellDepends = [ - base - containers - ddc-base - directory - ]; - description = "Disciplined Disciple Compiler user interface support"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "ddc-source-tetra" = callPackage ( - { - mkDerivation, - array, - base, - containers, - ddc-core, - ddc-core-salt, - ddc-core-tetra, - deepseq, - mtl, - pretty-show, - text, - transformers, - }: - mkDerivation { - pname = "ddc-source-tetra"; - version = "0.4.3.1"; - sha256 = "17znz614bm7rni52wihqf914klj9wpc9ykrhl9cl20xq6vxr914x"; - libraryHaskellDepends = [ - array + async base - containers - ddc-core - ddc-core-salt - ddc-core-tetra - deepseq + bytestring + dhall + directory + filepath + fsnotify + hasql + lifted-base + monad-control mtl - pretty-show + optparse-applicative + stm + telegram-bot-simple text - transformers + time + transformers-base + unordered-containers + vector ]; - description = "Disciplined Disciple Compiler source language"; - license = lib.licenses.mit; + description = "Data consistency alerting for PostgreSQL"; + license = lib.licenses.bsd3; hydraPlatforms = lib.platforms.none; + mainProgram = "dbmonitor"; + broken = true; } ) { }; - "ddc-tools" = callPackage ( + "dbus" = callPackage ( { mkDerivation, base, + bytestring, + cereal, + conduit, containers, - ddc-build, - ddc-code, - ddc-core, - ddc-core-flow, - ddc-core-llvm, - ddc-core-salt, - ddc-core-simpl, - ddc-core-tetra, - ddc-driver, - ddc-source-tetra, + deepseq, directory, + exceptions, + extra, filepath, - haskeline, - mtl, + lens, + network, + parsec, process, + QuickCheck, + random, + resourcet, + split, + tasty, + tasty-hunit, + tasty-quickcheck, + template-haskell, + temporary, + text, + th-lift, transformers, + unix, + vector, + xml-conduit, + xml-types, }: mkDerivation { - pname = "ddc-tools"; - version = "0.4.3.1"; - sha256 = "19ghpdcbjjy1aizhf2q5fhiswxhw2i3amlb2ccl283p1a3mr59jn"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ + pname = "dbus"; + version = "1.4.1"; + sha256 = "016xrx8gnvldpwgalpsxzvkwagavpzw9m7j65w5msskaxk474ln7"; + libraryHaskellDepends = [ base + bytestring + cereal + conduit containers - ddc-build - ddc-code - ddc-core - ddc-core-flow - ddc-core-llvm - ddc-core-salt - ddc-core-simpl - ddc-core-tetra - ddc-driver - ddc-source-tetra - directory + deepseq + exceptions filepath - haskeline - mtl - process + lens + network + parsec + random + split + template-haskell + text + th-lift transformers + unix + vector + xml-conduit + xml-types ]; - description = "Disciplined Disciple Compiler command line tools"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "ddc-war" = callPackage ( - { - mkDerivation, - base, - buildbox, - containers, - directory, - filepath, - process, - random, - stm, - }: - mkDerivation { - pname = "ddc-war"; - version = "0.4.1.3"; - sha256 = "0y9h4z1drgwgmw9wjf8ga2kiagmfgppdy29l9cz0j4rjz3mm302y"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ + testHaskellDepends = [ base - buildbox + bytestring + cereal containers directory + extra filepath + network + parsec process + QuickCheck random - stm + resourcet + tasty + tasty-hunit + tasty-quickcheck + temporary + text + transformers + unix + vector ]; - description = "Disciplined Disciple Compiler test driver and buildbot"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - mainProgram = "ddc-war"; + doCheck = false; + description = "A client library for the D-Bus IPC system"; + license = lib.licenses.asl20; } ) { }; - "ddci-core" = callPackage ( + "dbus-app-launcher" = callPackage ( { mkDerivation, base, containers, - ddc-base, - ddc-core, - ddc-core-eval, - ddc-core-simpl, - haskeline, - haskell-src-exts, + dbus, + extra, + regex-tdfa, + shellwords, + unix, }: mkDerivation { - pname = "ddci-core"; - version = "0.2.1.2"; - sha256 = "1w4kcqivphc9gmj4xnkqx2hbzd3cmssww5hqgja1kh0b03q026w0"; + pname = "dbus-app-launcher"; + version = "0.1.1.0"; + sha256 = "0hzaif160jp16wd5x92fsdxz74flf8pq0pp91pg5hjz47z90nyqw"; isLibrary = false; isExecutable = true; executableHaskellDepends = [ base containers - ddc-base - ddc-core - ddc-core-eval - ddc-core-simpl - haskeline - haskell-src-exts + dbus + extra + regex-tdfa + shellwords + unix ]; - description = "Disciple Core language interactive interpreter"; + description = "Simple app launcher for D-Bus"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - mainProgram = "ddci-core"; + mainProgram = "dbus-app-launcher"; } ) { }; - "dde" = callPackage ( + "dbus-hslogger" = callPackage ( { mkDerivation, base, - criterion, - free-vector-spaces, - lens, - linear, - vector, + dbus, + hslogger, + optparse-applicative, }: mkDerivation { - pname = "dde"; - version = "0.3.0"; - sha256 = "0jji0q9wqgpl0g2nvac0i4vrlarx4pz0rb8xgpq1iqyprniz5k4p"; + pname = "dbus-hslogger"; + version = "0.1.0.1"; + sha256 = "0i2y69kagp53cmlb7p3y6ysr9k5wvfd0vcnpwsasyn1jpk6g80zi"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ base - free-vector-spaces - lens - linear - vector + dbus + hslogger ]; executableHaskellDepends = [ base - free-vector-spaces - lens - linear - vector - ]; - testHaskellDepends = [ - base - free-vector-spaces - lens - linear - vector - ]; - benchmarkHaskellDepends = [ - base - criterion - free-vector-spaces - lens - linear - vector + dbus + hslogger + optparse-applicative ]; - description = "Delay differential equations"; + description = "Expose a dbus server to control hslogger"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; + mainProgram = "dbus-hslogger-client"; } ) { }; - "dead-code-detection" = callPackage ( + "dbus-th" = callPackage ( { mkDerivation, base, containers, - directory, - filepath, - getopt-generics, - ghc, - ghc-paths, - gitrev, - Glob, - graph-wrapper, - hspec, - interpolate, - mockery, - silently, - string-conversions, - uniplate, + dbus, + syb, + template-haskell, + text, }: mkDerivation { - pname = "dead-code-detection"; - version = "0.8.1"; - sha256 = "1yy1ddr2dvnnxicjqzvqc7vg7369v92v3yynririvhnswcd7fsbb"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - containers - directory - getopt-generics - ghc - ghc-paths - gitrev - Glob - graph-wrapper - silently - string-conversions - uniplate - ]; - testHaskellDepends = [ + pname = "dbus-th"; + version = "0.1.3.0"; + sha256 = "0b1ansjk6j7fzfi2s26dqvka7s85bflw7cl665vplm1sq0is2a0j"; + libraryHaskellDepends = [ base containers - directory - filepath - getopt-generics - ghc - ghc-paths - gitrev - Glob - graph-wrapper - hspec - interpolate - mockery - silently - string-conversions - uniplate + dbus + syb + template-haskell + text ]; - description = "detect dead code in haskell projects"; + description = "TemplateHaskell generator of DBus bindings"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "dead-code-detection"; - broken = true; } ) { }; - "dead-simple-json" = callPackage ( + "dbus-th-introspection" = callPackage ( { mkDerivation, base, + cmdargs, containers, - parsec, + dbus, + dbus-th, template-haskell, - transformers, - vector, }: mkDerivation { - pname = "dead-simple-json"; - version = "0.1.2"; - sha256 = "10wp97pxhkvlk3lhknvsnwkl9p7lm1v7y1wk0nn55q68jx1b5zpr"; + pname = "dbus-th-introspection"; + version = "0.1.2.0"; + sha256 = "1d8hqra3sfpvscc3jpgcyllq3gaha24jj0n4y17y4wkhz437ni4f"; + isLibrary = true; + isExecutable = true; libraryHaskellDepends = [ base containers - parsec + dbus + dbus-th template-haskell - transformers - vector ]; - description = "Dead simple JSON parser, with some Template Haskell sugar"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; + executableHaskellDepends = [ + base + cmdargs + containers + dbus + dbus-th + template-haskell + ]; + description = "Generate bindings for DBus calls by using DBus introspection and dbus-th"; + license = lib.licenses.bsd3; + mainProgram = "dbus-introspect-hs"; } ) { }; @@ -183383,85 +102599,6 @@ self: { } ) { }; - "debug" = callPackage ( - { - mkDerivation, - aeson, - base, - bytestring, - clock, - containers, - deepseq, - directory, - extra, - filepath, - ghc-prim, - hashable, - Hoed, - libgraph, - open-browser, - prettyprinter, - prettyprinter-compat-ansi-wl-pprint, - template-haskell, - text, - uniplate, - unordered-containers, - vector, - yaml, - }: - mkDerivation { - pname = "debug"; - version = "0.1.1"; - sha256 = "0j4jskz8zq2ww81mfarshi5g2m6xfivgl26grkhcacqq6k3483rk"; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - aeson - base - bytestring - clock - containers - deepseq - directory - extra - ghc-prim - hashable - Hoed - libgraph - open-browser - prettyprinter - prettyprinter-compat-ansi-wl-pprint - template-haskell - text - uniplate - unordered-containers - vector - ]; - executableHaskellDepends = [ - aeson - base - directory - filepath - yaml - ]; - testHaskellDepends = [ - aeson - base - bytestring - containers - directory - extra - filepath - text - ]; - description = "Simple trace-based debugger"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "debug-pp"; - } - ) { }; - "debug-diff" = callPackage ( { mkDerivation, @@ -183749,35 +102886,6 @@ self: { } ) { }; - "debug-tracy" = callPackage ( - { - mkDerivation, - base, - lens, - random, - transformers, - }: - mkDerivation { - pname = "debug-tracy"; - version = "0.1.0.3"; - sha256 = "00rl7s1v12w8wa9cxfmbq327q0gdpwqd980pddap5pn4llcj4gmv"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - lens - random - transformers - ]; - executableHaskellDepends = [ base ]; - description = "More useful trace functions for investigating bugs"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "test"; - broken = true; - } - ) { }; - "debuggable" = callPackage ( { mkDerivation, @@ -183889,27 +102997,6 @@ self: { } ) { }; - "decepticons" = callPackage ( - { - mkDerivation, - base, - comonad-transformers, - }: - mkDerivation { - pname = "decepticons"; - version = "0.1.0.0"; - sha256 = "1fnp2c2rdpihvxm5j22z1mrf8pnpcnasvfsrlg7lvg5m76md7k3v"; - libraryHaskellDepends = [ - base - comonad-transformers - ]; - description = "The categorical dual of transformers"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "decidable" = callPackage ( { mkDerivation, @@ -183937,42 +103024,6 @@ self: { } ) { }; - "decimal-arithmetic" = callPackage ( - { - mkDerivation, - base, - binary, - binary-bits, - deepseq, - doctest, - hspec, - mtl, - QuickCheck, - }: - mkDerivation { - pname = "decimal-arithmetic"; - version = "0.5.1.0"; - sha256 = "0ig25l60ix79v4yl2kix8wkhfvsdniaxrzk49hfwqiblwz17kxla"; - libraryHaskellDepends = [ - base - binary - binary-bits - deepseq - mtl - ]; - testHaskellDepends = [ - base - binary - doctest - hspec - QuickCheck - ]; - description = "An implementation of the General Decimal Arithmetic Specification"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "decimal-literals" = callPackage ( { mkDerivation, @@ -184127,85 +103178,6 @@ self: { } ) { }; - "decoder-conduit" = callPackage ( - { - mkDerivation, - base, - binary, - bytestring, - conduit, - }: - mkDerivation { - pname = "decoder-conduit"; - version = "0.0.1.1"; - sha256 = "0z5krcl4xd385f7v2bsnfyr7zidqwfjvc6b432gbbn2vcrx966c7"; - libraryHaskellDepends = [ - base - binary - bytestring - conduit - ]; - description = "Conduit for decoding ByteStrings using Data.Binary.Get"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "dedukti" = callPackage ( - { - mkDerivation, - base, - bytestring, - containers, - directory, - filepath, - haskell-src-exts, - haskell-src-exts-qq, - hmk, - mtl, - parsec, - process, - Stream, - stringtable-atom, - time, - unix, - wl-pprint, - }: - mkDerivation { - pname = "dedukti"; - version = "1.1.4"; - sha256 = "0b7328529m3xl8bj7sncv5rr13ld2aghgqkf55j4n15jagv6g72d"; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - time - unix - ]; - executableHaskellDepends = [ - base - bytestring - containers - directory - filepath - haskell-src-exts - haskell-src-exts-qq - hmk - mtl - parsec - process - Stream - stringtable-atom - wl-pprint - ]; - description = "A type-checker for the λΠ-modulo calculus"; - license = "GPL"; - hydraPlatforms = lib.platforms.none; - mainProgram = "dedukti"; - } - ) { }; - "deep-map" = callPackage ( { mkDerivation, @@ -184269,46 +103241,6 @@ self: { } ) { }; - "deepcontrol" = callPackage ( - { - mkDerivation, - base, - containers, - doctest, - HUnit, - mmorph, - mtl, - QuickCheck, - safe, - transformers, - }: - mkDerivation { - pname = "deepcontrol"; - version = "0.5.4.3"; - sha256 = "0d8fmagrxqvg5w8bzi3d5vw2xhlp0sfq934hvz1sa80iac9km51f"; - libraryHaskellDepends = [ - base - mmorph - mtl - transformers - ]; - testHaskellDepends = [ - base - containers - doctest - HUnit - mtl - QuickCheck - safe - transformers - ]; - description = "A library that provides deep-level programming style and(or) notation on Applicative and Monad"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "deepl" = callPackage ( { mkDerivation, @@ -184367,62 +103299,6 @@ self: { } ) { }; - "deeplearning-hs" = callPackage ( - { - mkDerivation, - accelerate, - base, - mtl, - QuickCheck, - repa, - repa-algorithms, - test-framework, - test-framework-quickcheck2, - vector, - }: - mkDerivation { - pname = "deeplearning-hs"; - version = "0.1.0.2"; - sha256 = "1cw29xisgykb20qv3jkpcpaiijicyzkfsgglrsbx1admfzbqv98d"; - revision = "1"; - editedCabalFile = "1yiac94m5gn21bdjsfz18fww45wnic7sgw9bsnpi2qwv0zz3x8pc"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - accelerate - base - mtl - repa - repa-algorithms - vector - ]; - executableHaskellDepends = [ - accelerate - base - mtl - repa - repa-algorithms - vector - ]; - testHaskellDepends = [ - accelerate - base - mtl - QuickCheck - repa - repa-algorithms - test-framework - test-framework-quickcheck2 - vector - ]; - description = "Deep Learning in Haskell"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - mainProgram = "deeplearning_demonstration"; - broken = true; - } - ) { }; - "deepseq_1_5_2_0" = callPackage ( { mkDerivation, @@ -184447,61 +103323,6 @@ self: { } ) { }; - "deepseq-bounded" = callPackage ( - { - mkDerivation, - array, - base, - cpphs, - deepseq, - deepseq-generics, - generics-sop, - ghc-prim, - HUnit, - mtl, - parallel, - random, - syb, - template-haskell, - }: - mkDerivation { - pname = "deepseq-bounded"; - version = "0.8.0.0"; - sha256 = "192hqyidgbrsig2yx7x9vdx180w1jfcqxsgg4wslwfwj7d3sa81f"; - revision = "1"; - editedCabalFile = "12wvwmbvy63bcr1ml3cx9y0zc52wgr6cjgr0xnakryya6s7vp706"; - libraryHaskellDepends = [ - array - base - cpphs - deepseq - deepseq-generics - generics-sop - mtl - parallel - random - syb - ]; - testHaskellDepends = [ - base - cpphs - deepseq - deepseq-generics - generics-sop - ghc-prim - HUnit - parallel - random - syb - template-haskell - ]; - description = "Bounded deepseq, including support for generic deriving"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "deepseq-generics" = callPackage ( { mkDerivation, @@ -184531,117 +103352,6 @@ self: { } ) { }; - "deepseq-instances" = callPackage ( - { - mkDerivation, - array, - base, - deepseq, - stm, - }: - mkDerivation { - pname = "deepseq-instances"; - version = "0.1.0.1"; - sha256 = "0shhk3hqy02qkrbbd85sbzhga7pvk6fwjnadnp6dkip55gllm24z"; - libraryHaskellDepends = [ - array - base - deepseq - stm - ]; - description = "Candidate NFData Instances for Types in base"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "deepseq-magic" = callPackage ( - { mkDerivation, base }: - mkDerivation { - pname = "deepseq-magic"; - version = "1.0.0.3"; - sha256 = "15nisjmhcfippz153b8l8f291halkgbrync5c2v6xwkh07ibn7yp"; - libraryHaskellDepends = [ base ]; - description = "Deep evaluation of data structures without NFData"; - license = lib.licenses.publicDomain; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "deepseq-th" = callPackage ( - { - mkDerivation, - base, - deepseq, - template-haskell, - }: - mkDerivation { - pname = "deepseq-th"; - version = "0.1.0.4"; - sha256 = "12wk8higrp12b22zzz1b4ar1q5h7flk22bp2rvswsqri2zkbi965"; - libraryHaskellDepends = [ - base - deepseq - template-haskell - ]; - testHaskellDepends = [ - base - deepseq - template-haskell - ]; - description = "Template Haskell based deriver for optimised NFData instances"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "deepzoom" = callPackage ( - { - mkDerivation, - base, - directory, - filepath, - hsmagick, - }: - mkDerivation { - pname = "deepzoom"; - version = "0.1"; - sha256 = "1hisk6yfq4182ak7d1mi1kmnwwlcl8w7gwc8wqkq4l8m3zfyij8k"; - libraryHaskellDepends = [ - base - directory - filepath - hsmagick - ]; - description = "A DeepZoom image slicer. Only known to work on 32bit Linux"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "defargs" = callPackage ( - { - mkDerivation, - base, - cluss, - }: - mkDerivation { - pname = "defargs"; - version = "0.3"; - sha256 = "1rz37w83awji034spyv4cnfbqb6r98r1bbvzh2i979qh5c5s6ckg"; - libraryHaskellDepends = [ - base - cluss - ]; - description = "default arguments in haskell"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "defaultable-map" = callPackage ( { mkDerivation, @@ -184714,275 +103424,6 @@ self: { } ) { }; - "definitive-base" = callPackage ( - { - mkDerivation, - array, - base, - bytestring, - containers, - deepseq, - ghc-prim, - GLURaw, - OpenGL, - OpenGLRaw, - primitive, - vector, - }: - mkDerivation { - pname = "definitive-base"; - version = "2.3"; - sha256 = "126ln7k6k188xjnig60ksc425fp3hql5znb98h5c1w157jgg0sw9"; - libraryHaskellDepends = [ - array - base - bytestring - containers - deepseq - ghc-prim - GLURaw - OpenGL - OpenGLRaw - primitive - vector - ]; - description = "The base modules of the Definitive framework"; - license = "unknown"; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "definitive-filesystem" = callPackage ( - { - mkDerivation, - array, - base, - bytestring, - clock, - containers, - deepseq, - definitive-base, - definitive-reactive, - directory, - filepath, - old-locale, - primitive, - time, - unix, - vector, - }: - mkDerivation { - pname = "definitive-filesystem"; - version = "1.2"; - sha256 = "0bc098igiqzbm25bjaxdxm4jq17kc8bgz1ab0pgm0h5jvy1bf8id"; - revision = "1"; - editedCabalFile = "089isrgdbc7xv4msnwqhz7kbncj1kjbjmdl9v2awm4d2mbcd8y1s"; - libraryHaskellDepends = [ - array - base - bytestring - clock - containers - deepseq - definitive-base - definitive-reactive - directory - filepath - old-locale - primitive - time - unix - vector - ]; - description = "A library that enable you to interact with the filesystem in a definitive way"; - license = "unknown"; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "definitive-graphics" = callPackage ( - { - mkDerivation, - array, - base, - binary, - bytestring, - clock, - containers, - cpu, - deepseq, - definitive-base, - definitive-parser, - definitive-reactive, - GLFW, - JuicyPixels, - mtl, - primitive, - stb-truetype, - transformers, - utf8-string, - vector, - zlib, - }: - mkDerivation { - pname = "definitive-graphics"; - version = "1.2"; - sha256 = "0ah19j2al9l6pbin821rsicidmg3rd4cc74r8qw095773sa98zyr"; - revision = "1"; - editedCabalFile = "1vds2sa35gllj5zhk2qck97hbjjlz20qq20cyjphsfcqh3m6gn56"; - libraryHaskellDepends = [ - array - base - binary - bytestring - clock - containers - cpu - deepseq - definitive-base - definitive-parser - definitive-reactive - GLFW - JuicyPixels - mtl - primitive - stb-truetype - transformers - utf8-string - vector - zlib - ]; - description = "A definitive package allowing you to open windows, read image files and render text to be displayed or saved"; - license = "unknown"; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "definitive-parser" = callPackage ( - { - mkDerivation, - array, - base, - bytestring, - containers, - cpu, - deepseq, - definitive-base, - ghc-prim, - GLURaw, - OpenGL, - OpenGLRaw, - primitive, - utf8-string, - vector, - }: - mkDerivation { - pname = "definitive-parser"; - version = "2.1"; - sha256 = "0sl77xgk7vjn69mx89k4f3yviz821mg01fga0klqplcccbkzknmh"; - libraryHaskellDepends = [ - array - base - bytestring - containers - cpu - deepseq - definitive-base - ghc-prim - GLURaw - OpenGL - OpenGLRaw - primitive - utf8-string - vector - ]; - description = "A parser combinator library for the Definitive framework"; - license = "unknown"; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "definitive-reactive" = callPackage ( - { - mkDerivation, - array, - base, - bytestring, - clock, - containers, - deepseq, - definitive-base, - primitive, - vector, - }: - mkDerivation { - pname = "definitive-reactive"; - version = "1.0"; - sha256 = "0gk39602k5yjxxgpd725dnvqhlcnaqgds7g0c8v1h509lc0d7xm3"; - revision = "1"; - editedCabalFile = "15vpplck9h6ys5szhn8i69409cbgsv8hd01cwgnnjxffqky6lg4c"; - libraryHaskellDepends = [ - array - base - bytestring - clock - containers - deepseq - definitive-base - primitive - vector - ]; - description = "A simple Reactive library"; - license = "unknown"; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "definitive-sound" = callPackage ( - { - mkDerivation, - alsa-core, - alsa-pcm, - array, - base, - bytestring, - clock, - containers, - deepseq, - definitive-base, - primitive, - sample-frame, - storable-record, - vector, - }: - mkDerivation { - pname = "definitive-sound"; - version = "1.0"; - sha256 = "01k4h7av4fhp4xchrcbnc1gnnbsh5ngasq55l16n3l438pr73vzj"; - revision = "1"; - editedCabalFile = "0w9x8k62c6bhm360bj38gkzbbwx770klk50sy2l4xf273yhg148l"; - libraryHaskellDepends = [ - alsa-core - alsa-pcm - array - base - bytestring - clock - containers - deepseq - definitive-base - primitive - sample-frame - storable-record - vector - ]; - description = "A definitive package to handle sound and play it back"; - license = "unknown"; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "defun" = callPackage ( { mkDerivation, @@ -185064,39 +103505,6 @@ self: { } ) { }; - "deiko-config" = callPackage ( - { - mkDerivation, - array, - base, - containers, - exceptions, - mtl, - parsec, - text, - transformers, - }: - mkDerivation { - pname = "deiko-config"; - version = "0.5.0.1"; - sha256 = "0jcnidr4b52n12byx96y6k25949xwn3krby691la58jnvgmi22dr"; - libraryHaskellDepends = [ - array - base - containers - exceptions - mtl - parsec - text - transformers - ]; - description = "Small and typesafe configuration library"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "dejafu" = callPackage ( { mkDerivation, @@ -185132,82 +103540,6 @@ self: { } ) { }; - "deka" = callPackage ( - { - mkDerivation, - base, - bytestring, - mpdec, - parsec, - transformers, - }: - mkDerivation { - pname = "deka"; - version = "0.6.0.2"; - sha256 = "1l23b5v0wjg72vlnyxa87v3j2dxbld536ws8j03ddcwgqgws1fj4"; - libraryHaskellDepends = [ - base - bytestring - parsec - transformers - ]; - librarySystemDepends = [ mpdec ]; - description = "Decimal floating point arithmetic"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { mpdec = null; }; - - "deka-tests" = callPackage ( - { - mkDerivation, - base, - bytestring, - containers, - deka, - parsec, - pipes, - QuickCheck, - quickpull, - transformers, - }: - mkDerivation { - pname = "deka-tests"; - version = "0.6.0.2"; - sha256 = "08226vca64v8brcgci8a3s5fnf4qy8g9drk3lzzd0dq6g8yvypy9"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - bytestring - deka - QuickCheck - ]; - executableHaskellDepends = [ - base - bytestring - containers - deka - parsec - pipes - QuickCheck - transformers - ]; - testHaskellDepends = [ - base - bytestring - deka - QuickCheck - quickpull - ]; - description = "Tests for deka, decimal floating point arithmetic"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "deka-dectest"; - } - ) { }; - "delaunay" = callPackage ( { mkDerivation, @@ -185303,85 +103635,6 @@ self: { } ) { }; - "delicious" = callPackage ( - { - mkDerivation, - base, - bytestring, - curl, - feed, - json, - nano-md5, - xml, - }: - mkDerivation { - pname = "delicious"; - version = "0.3.4"; - sha256 = "1dx2y2ggzcwcjs618jmg21342pcd0maqx8pj2hwv80zq6f5v0c50"; - libraryHaskellDepends = [ - base - bytestring - curl - feed - json - nano-md5 - xml - ]; - description = "Accessing the del.icio.us APIs from Haskell (v2)"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "delimited-text" = callPackage ( - { - mkDerivation, - attoparsec, - base, - binary, - bytestring, - bytestring-show, - }: - mkDerivation { - pname = "delimited-text"; - version = "0.3.0"; - sha256 = "0mn6sv4nm3wbzq5cc9s9kb3xbm9jd5i059xr6qr9mqxa18j78c05"; - libraryHaskellDepends = [ - attoparsec - base - binary - bytestring - bytestring-show - ]; - description = "Parse character delimited textual data"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "delimiter-separated" = callPackage ( - { - mkDerivation, - base, - uhc-util, - uulib, - }: - mkDerivation { - pname = "delimiter-separated"; - version = "0.1.0.0"; - sha256 = "17ff9ipsnqicjkwsfg7zfb5gm0k9scsb44dl82gmf8i0f0nnd0h6"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base - uhc-util - uulib - ]; - description = "Library for dealing with tab and/or comma (or other) separated files"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "delivery-status-notification" = callPackage ( { mkDerivation, @@ -185407,97 +103660,6 @@ self: { } ) { }; - "delta" = callPackage ( - { - mkDerivation, - base, - containers, - directory, - filepath, - hspec, - optparse-applicative, - process, - sodium, - time, - }: - mkDerivation { - pname = "delta"; - version = "0.2.1.2"; - sha256 = "0r2a2vffs3rn2xp56nhanyywzbm2wph5664spgj4lbsna6zgjnfj"; - revision = "2"; - editedCabalFile = "1p8lkmdck2w802g2f841swk2161kssrmby3ikjs59zijf6h8a3k3"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - containers - directory - filepath - sodium - time - ]; - executableHaskellDepends = [ - base - directory - optparse-applicative - process - sodium - ]; - testHaskellDepends = [ - base - directory - filepath - hspec - ]; - description = "A library for detecting file changes"; - license = lib.licenses.lgpl3Only; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "delta-h" = callPackage ( - { - mkDerivation, - base, - binary, - bytestring, - containers, - monad-atom, - nlp-scores, - text, - }: - mkDerivation { - pname = "delta-h"; - version = "0.0.3"; - sha256 = "0ya0hgvpa9w41gswngg84yxhvll3fyr6b3h56p80yc5bldw700wg"; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base - binary - bytestring - containers - monad-atom - nlp-scores - text - ]; - executableHaskellDepends = [ - base - binary - bytestring - containers - monad-atom - nlp-scores - text - ]; - description = "Online entropy-based model of lexical category acquisition"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "delta-h"; - } - ) { }; - "delta-store" = callPackage ( { mkDerivation, @@ -185623,20 +103785,6 @@ self: { } ) { }; - "delude" = callPackage ( - { mkDerivation, base }: - mkDerivation { - pname = "delude"; - version = "0.1.0.3"; - sha256 = "0kq6kz064jy6x1b7x46h2a9mf9n5irzbkzr4dd2by4yvac9yc5kw"; - libraryHaskellDepends = [ base ]; - description = "Generalized the Prelude more functionally"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "demangler" = callPackage ( { mkDerivation, @@ -185692,65 +103840,6 @@ self: { } ) { }; - "demarcate" = callPackage ( - { - mkDerivation, - base, - free, - hspec, - transformers, - }: - mkDerivation { - pname = "demarcate"; - version = "0.1.0"; - sha256 = "130yk7461rwmjgzivsya10xzh0d0ca8pfkxh7fpll239r7xlbds3"; - libraryHaskellDepends = [ - base - free - transformers - ]; - testHaskellDepends = [ - base - hspec - ]; - description = "Demarcating transformed monad"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "denominate" = callPackage ( - { - mkDerivation, - base, - directory, - filepath, - }: - mkDerivation { - pname = "denominate"; - version = "0.5.0"; - sha256 = "06jdr1236wlsmapwn6hdmjl41qlig7ck541lynyds0qd6ymcb9k1"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - directory - filepath - ]; - executableHaskellDepends = [ - base - directory - filepath - ]; - description = "Functions supporting bulk file and directory name normalization"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "denominate"; - broken = true; - } - ) { }; - "dense" = callPackage ( { mkDerivation, @@ -185822,51 +103911,6 @@ self: { } ) { }; - "dense-int-set" = callPackage ( - { - mkDerivation, - base, - cereal, - cereal-vector, - deferred-folds, - hashable, - QuickCheck, - quickcheck-instances, - rerebase, - tasty, - tasty-hunit, - tasty-quickcheck, - vector, - vector-algorithms, - }: - mkDerivation { - pname = "dense-int-set"; - version = "0.3"; - sha256 = "04aww0ffsw1mfj7v3qhvfrbllqiwihyipis3zah0m4y47197x8gh"; - libraryHaskellDepends = [ - base - cereal - cereal-vector - deferred-folds - hashable - vector - vector-algorithms - ]; - testHaskellDepends = [ - QuickCheck - quickcheck-instances - rerebase - tasty - tasty-hunit - tasty-quickcheck - ]; - description = "Dense int-set"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "dense-linear-algebra" = callPackage ( { mkDerivation, @@ -186219,46 +104263,6 @@ self: { } ) { }; - "dependent-hashmap" = callPackage ( - { - mkDerivation, - base, - constraints, - constraints-extras, - dependent-sum, - hashable, - hedgehog, - mtl, - unordered-containers, - }: - mkDerivation { - pname = "dependent-hashmap"; - version = "0.1.0.1"; - sha256 = "14jfak4jp0xvjmfh680gygvbf9yg1gzaidjh6wpnrhyv484ldcpl"; - libraryHaskellDepends = [ - base - constraints-extras - dependent-sum - hashable - unordered-containers - ]; - testHaskellDepends = [ - base - constraints - constraints-extras - dependent-sum - hashable - hedgehog - mtl - unordered-containers - ]; - description = "Dependent hash maps"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "dependent-literals" = callPackage ( { mkDerivation, @@ -186390,30 +104394,6 @@ self: { } ) { }; - "dependent-state" = callPackage ( - { - mkDerivation, - base, - lens, - mtl, - prologue, - }: - mkDerivation { - pname = "dependent-state"; - version = "1.0.1"; - sha256 = "0rvl1svd0ya8wrmlimkcb7iki33gvpm5h0ix9vac2id38l4a4fh9"; - libraryHaskellDepends = [ - base - lens - mtl - prologue - ]; - description = "Control structure similar to Control.Monad.State, allowing multiple nested states, distinguishable by provided phantom types."; - license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "dependent-sum" = callPackage ( { mkDerivation, @@ -186504,85 +104484,6 @@ self: { } ) { }; - "depends" = callPackage ( - { - mkDerivation, - base, - containers, - directory, - filepath, - hspec, - process, - QuickCheck, - transformers, - yaml-config, - }: - mkDerivation { - pname = "depends"; - version = "0.0.1"; - sha256 = "0y43bhxx5s4v72gc0y1cwfy2h4hyz9x5cab2fbkd7rvj5wn4w4gq"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - containers - directory - filepath - process - transformers - yaml-config - ]; - testHaskellDepends = [ - base - containers - directory - filepath - hspec - process - QuickCheck - transformers - yaml-config - ]; - description = "A simple configuration management tool for Haskell"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - mainProgram = "depends"; - } - ) { }; - - "dephd" = callPackage ( - { - mkDerivation, - base, - bio, - bytestring, - cmdargs, - directory, - process, - regex-compat, - }: - mkDerivation { - pname = "dephd"; - version = "0.1.6"; - sha256 = "0qgqlnj7wkmjba5f2rql51g9jhak0ksx3xdmr25j3p6qwb43k5ih"; - isLibrary = false; - isExecutable = true; - enableSeparateDataOutput = true; - executableHaskellDepends = [ - base - bio - bytestring - cmdargs - directory - process - regex-compat - ]; - description = "Analyze quality of nucleotide sequences"; - license = "GPL"; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "depq" = callPackage ( { mkDerivation, @@ -186615,111 +104516,6 @@ self: { } ) { }; - "deptrack-core" = callPackage ( - { - mkDerivation, - base, - containers, - dlist, - mtl, - parsec, - }: - mkDerivation { - pname = "deptrack-core"; - version = "0.1.0.0"; - sha256 = "11v9yvvsp3m3igpqqqqkx1cp648s87xpa4d06vbsxnz4k6yp4bjj"; - libraryHaskellDepends = [ - base - containers - dlist - mtl - parsec - ]; - description = "DepTrack Core types and model"; - license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "deptrack-devops" = callPackage ( - { - mkDerivation, - array, - async, - base, - base64-bytestring, - binary, - bytestring, - containers, - deptrack-core, - distributed-closure, - dotgen, - hashable, - lens, - mtl, - safe, - stm, - text, - }: - mkDerivation { - pname = "deptrack-devops"; - version = "0.1.0.0"; - sha256 = "13m6y88icsy6068h6n8klv480hnrjsmqy0szmssrcgsqjnjzpdzh"; - libraryHaskellDepends = [ - array - async - base - base64-bytestring - binary - bytestring - containers - deptrack-core - distributed-closure - dotgen - hashable - lens - mtl - safe - stm - text - ]; - description = "DepTrack applied to DevOps"; - license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "deptrack-dot" = callPackage ( - { - mkDerivation, - base, - containers, - deptrack-core, - dotgen, - }: - mkDerivation { - pname = "deptrack-dot"; - version = "0.1.0.0"; - sha256 = "1lxkab4c3qwgsv0wldvii8qspzq57j82y4bdc28kpp023g38gvb6"; - libraryHaskellDepends = [ - base - containers - deptrack-core - dotgen - ]; - testHaskellDepends = [ - base - containers - deptrack-core - dotgen - ]; - description = "Facilitate Graphviz representations of DepTrack dependencies"; - license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "deque" = callPackage ( { mkDerivation, @@ -186753,148 +104549,6 @@ self: { } ) { }; - "dequeue" = callPackage ( - { - mkDerivation, - base, - Cabal, - cabal-test-quickcheck, - QuickCheck, - safe, - }: - mkDerivation { - pname = "dequeue"; - version = "0.1.12"; - sha256 = "1ar12ziah2sxph5hmfsj8ssjqbz4m3li47qmnw3zxbv536xys2n7"; - libraryHaskellDepends = [ - base - QuickCheck - safe - ]; - testHaskellDepends = [ - base - Cabal - cabal-test-quickcheck - ]; - description = "A typeclass and an implementation for double-ended queues"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "derangement" = callPackage ( - { - mkDerivation, - base, - fgl, - }: - mkDerivation { - pname = "derangement"; - version = "0.1.0"; - sha256 = "13w257bndjpaz7fiz4g2w4v2bmlch07ay5pxxv5ifc4llh665ch0"; - libraryHaskellDepends = [ - base - fgl - ]; - description = "Find derangements of lists"; - license = "GPL"; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "derivation-trees" = callPackage ( - { - mkDerivation, - applicative-extras, - base, - labeled-tree, - mtl, - }: - mkDerivation { - pname = "derivation-trees"; - version = "0.7.3"; - sha256 = "05f77vkqzia91rywkg68ad24j98a7h9aqkd0568x2zmqcndzbisy"; - libraryHaskellDepends = [ - applicative-extras - base - labeled-tree - mtl - ]; - description = "Typeset Derivation Trees via MetaPost"; - license = "GPL"; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "derive" = callPackage ( - { - mkDerivation, - base, - bytestring, - containers, - directory, - filepath, - haskell-src-exts, - pretty, - process, - syb, - template-haskell, - transformers, - uniplate, - }: - mkDerivation { - pname = "derive"; - version = "2.6.5"; - sha256 = "1rfh7pahrksjzypdkrs8wcijybdwnv2wlkiqax7svn11wgnym3c1"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - bytestring - containers - directory - filepath - haskell-src-exts - pretty - process - syb - template-haskell - transformers - uniplate - ]; - executableHaskellDepends = [ base ]; - description = "A program and library to derive instances for data types"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "derive"; - broken = true; - } - ) { }; - - "derive-IG" = callPackage ( - { - mkDerivation, - base, - instant-generics, - template-haskell, - }: - mkDerivation { - pname = "derive-IG"; - version = "0.1.1"; - sha256 = "0bggj2jb3bbgxcz75v8q2yx29v88skiwjaj3fxkkynnv5zvrbgwr"; - libraryHaskellDepends = [ - base - instant-generics - template-haskell - ]; - description = "Macro to derive instances for Instant-Generics using Template Haskell"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "derive-enumerable" = callPackage ( { mkDerivation, @@ -186916,43 +104570,6 @@ self: { } ) { }; - "derive-gadt" = callPackage ( - { - mkDerivation, - base, - containers, - haskell-src-exts, - haskell-src-meta, - pretty, - template-haskell, - }: - mkDerivation { - pname = "derive-gadt"; - version = "0.1.1"; - sha256 = "0s6vb3b3chf1gy44a6zsi2z19d6snk12qlk4v8q2smipmj42v7d6"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - containers - haskell-src-exts - haskell-src-meta - pretty - template-haskell - ]; - executableHaskellDepends = [ - base - haskell-src-exts - haskell-src-meta - template-haskell - ]; - description = "Instance deriving for (a subset of) GADTs"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "derive-has-field" = callPackage ( { mkDerivation, @@ -187032,36 +104649,6 @@ self: { } ) { }; - "derive-monoid" = callPackage ( - { - mkDerivation, - base, - semigroups, - template-haskell, - }: - mkDerivation { - pname = "derive-monoid"; - version = "0.0.1"; - sha256 = "1laix5isk8lnp2dl7lsm06vb2yafqgsh55fnhaakdg0k0nd98x4r"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - template-haskell - ]; - executableHaskellDepends = [ base ]; - testHaskellDepends = [ - base - semigroups - ]; - description = "derive Semigroup/Monoid/IsList"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - mainProgram = "example-derive-monoid"; - broken = true; - } - ) { }; - "derive-prim" = callPackage ( { mkDerivation, @@ -187210,31 +104797,6 @@ self: { } ) { }; - "derive-trie" = callPackage ( - { - mkDerivation, - array, - base, - containers, - template-haskell, - }: - mkDerivation { - pname = "derive-trie"; - version = "0.2.1"; - sha256 = "11c378mh5razibd9ljffm5353v4plrgvkfb62p6029f04sf29jnc"; - libraryHaskellDepends = [ - array - base - containers - template-haskell - ]; - description = "Automatic derivation of Trie implementations"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "deriveJsonNoPrefix" = callPackage ( { mkDerivation, @@ -187477,27 +105039,6 @@ self: { } ) { }; - "derp-lib" = callPackage ( - { - mkDerivation, - base, - derp, - }: - mkDerivation { - pname = "derp-lib"; - version = "0.0.0.1"; - sha256 = "0j883w01k9scz6cfxljkw9s2kgs9f7vdxyyxxhlvvkgzb0050v0x"; - libraryHaskellDepends = [ - base - derp - ]; - description = "combinators based on parsing with derivatives (derp) package"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "derulo" = callPackage ( { mkDerivation, @@ -187524,63 +105065,6 @@ self: { } ) { }; - "describe" = callPackage ( - { - mkDerivation, - base, - bytestring, - cereal, - fixed-vector, - lens, - mmorph, - monad-control, - mtl, - profunctors, - QuickCheck, - template-haskell, - text, - transformers, - }: - mkDerivation { - pname = "describe"; - version = "0.4.0.5"; - sha256 = "0hy4p78hp6zgilfj9jn9mj6x5w32jm9kdb9w4vkchlncid5r9bzl"; - libraryHaskellDepends = [ - base - bytestring - cereal - fixed-vector - lens - mmorph - monad-control - mtl - profunctors - template-haskell - text - transformers - ]; - testHaskellDepends = [ - base - bytestring - cereal - fixed-vector - lens - mmorph - monad-control - mtl - profunctors - QuickCheck - template-haskell - text - transformers - ]; - description = "Combinators for describing binary data structures"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "descrilo" = callPackage ( { mkDerivation, base }: mkDerivation { @@ -187593,164 +105077,6 @@ self: { } ) { }; - "descript-lang" = callPackage ( - { - mkDerivation, - aeson, - array, - autoexporter, - base, - bifunctors, - bytestring, - containers, - data-default, - directory, - exceptions, - filepath, - fsnotify, - hashtables, - haskell-lsp, - hslogger, - hspec, - HUnit, - lens, - megaparsec, - mtl, - network-uri, - optparse-applicative, - QuickCheck, - rainbow, - stm, - text, - transformers, - unordered-containers, - vector, - yaml, - yi-rope, - }: - mkDerivation { - pname = "descript-lang"; - version = "0.2.0.0"; - sha256 = "0gar05gz7xvz74c9573h6zgv8rflwclzr3aw21cnyy1wpkqlbsnl"; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - array - autoexporter - base - bifunctors - bytestring - containers - filepath - hashtables - megaparsec - stm - text - transformers - ]; - executableHaskellDepends = [ - aeson - array - autoexporter - base - bifunctors - bytestring - containers - data-default - exceptions - filepath - fsnotify - hashtables - haskell-lsp - hslogger - lens - megaparsec - mtl - network-uri - optparse-applicative - rainbow - stm - text - transformers - unordered-containers - vector - yi-rope - ]; - testHaskellDepends = [ - array - autoexporter - base - bifunctors - bytestring - containers - directory - filepath - hashtables - hspec - HUnit - megaparsec - QuickCheck - stm - text - transformers - yaml - ]; - description = "Library, interpreter, and CLI for Descript programming language"; - license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - mainProgram = "descript-cli"; - } - ) { }; - - "descriptive" = callPackage ( - { - mkDerivation, - aeson, - base, - bifunctors, - containers, - hspec, - HUnit, - mtl, - scientific, - text, - transformers, - vector, - }: - mkDerivation { - pname = "descriptive"; - version = "0.9.5"; - sha256 = "0y5693zm2kvqjilybbmrcv1g6n6x2p6zjgi0k0axjw1sdhh1g237"; - libraryHaskellDepends = [ - aeson - base - bifunctors - containers - mtl - scientific - text - transformers - vector - ]; - testHaskellDepends = [ - aeson - base - bifunctors - containers - hspec - HUnit - mtl - text - transformers - ]; - description = "Self-describing consumers/parsers; forms, cmd-line args, JSON, etc"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "desert" = callPackage ( { mkDerivation, @@ -187881,32 +105207,6 @@ self: { } ) { }; - "deterministic-game-engine" = callPackage ( - { - mkDerivation, - base, - hspec, - mtl, - }: - mkDerivation { - pname = "deterministic-game-engine"; - version = "0.4.0"; - sha256 = "1hdwr1vxfng3yc9mdnnsraapikq9kq1c07ik16csgp2ggnhgpprs"; - libraryHaskellDepends = [ - base - mtl - ]; - testHaskellDepends = [ - base - hspec - ]; - description = "Simple deterministic game engine"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "detour-via-sci" = callPackage ( { mkDerivation, @@ -187953,117 +105253,6 @@ self: { } ) { }; - "detour-via-uom" = callPackage ( - { - mkDerivation, - aeson, - base, - cassava, - detour-via-sci, - doctest, - hlint, - newtype, - scientific, - uom-plugin, - }: - mkDerivation { - pname = "detour-via-uom"; - version = "1.0.0"; - sha256 = "07jhj5mrfkfi2l05fyax6aylq4rp0nixvpsymv2xjzvbv2pfmdq7"; - revision = "1"; - editedCabalFile = "1l8az0mqcms0w59dr1bvklplmdqzr8yliwq522smcrn4krj3rl10"; - libraryHaskellDepends = [ - aeson - base - cassava - detour-via-sci - newtype - scientific - uom-plugin - ]; - testHaskellDepends = [ - aeson - base - cassava - detour-via-sci - doctest - hlint - newtype - scientific - uom-plugin - ]; - description = "JSON and CSV encoding for quantities"; - license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "detrospector" = callPackage ( - { - mkDerivation, - base, - binary, - bytestring, - cmdargs, - containers, - hashable, - mwc-random, - text, - unordered-containers, - zlib, - }: - mkDerivation { - pname = "detrospector"; - version = "0.3"; - sha256 = "0fsdbagj9zhbm6hh5rsjgz3iq1raxkljnr65ba506nwxmc052xcn"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - binary - bytestring - cmdargs - containers - hashable - mwc-random - text - unordered-containers - zlib - ]; - description = "Markov chain text generator"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "detrospector"; - broken = true; - } - ) { }; - - "deunicode" = callPackage ( - { - mkDerivation, - base, - bytestring, - utf8-string, - }: - mkDerivation { - pname = "deunicode"; - version = "0.1"; - sha256 = "08skd630jj9h3mlxm86s7qkdrpcwhknk21dmlj69126dn67v159f"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - bytestring - utf8-string - ]; - description = "Get rid of unicode (utf-8) symbols in Haskell sources"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - mainProgram = "deunicode"; - broken = true; - } - ) { }; - "devanagari-transliterations" = callPackage ( { mkDerivation, @@ -188109,48 +105298,6 @@ self: { } ) { }; - "devil" = callPackage ( - { - mkDerivation, - aeson, - base, - bytestring, - directory, - filepath, - hinotify, - process, - split, - text, - unix, - unordered-containers, - }: - mkDerivation { - pname = "devil"; - version = "0.1.1.0"; - sha256 = "1n5rzm40srakb0jv8j9gin6m15x5l37knmdckc4xhwvliyvllrf4"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - aeson - base - bytestring - directory - filepath - hinotify - process - split - text - unix - unordered-containers - ]; - description = "A small tool to make it easier to update program managed by Angel"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - mainProgram = "devil"; - broken = true; - } - ) { }; - "devtools" = callPackage ( { mkDerivation, @@ -188205,34 +105352,6 @@ self: { } ) { }; - "dewdrop" = callPackage ( - { - mkDerivation, - base, - bytestring, - containers, - elf, - hdis86, - syb, - }: - mkDerivation { - pname = "dewdrop"; - version = "0.1"; - sha256 = "1xi78d31hljbybpm3jzs4l3g35sdfhmmm7ksivjdi91gv9m88l0n"; - libraryHaskellDepends = [ - base - bytestring - containers - elf - hdis86 - syb - ]; - description = "Find gadgets for return-oriented programming on x86"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "df1" = callPackage ( { mkDerivation, @@ -188351,113 +105470,6 @@ self: { } ) { }; - "dfinity-radix-tree" = callPackage ( - { - mkDerivation, - aeson, - base, - base16-bytestring, - BoundedChan, - bytestring, - clock, - concurrent-extra, - conduit, - containers, - cryptonite, - data-default-class, - deepseq, - directory, - dlist, - filepath, - hashtables, - lens-simple, - leveldb, - leveldb-haskell, - lrucaching, - memory, - mtl, - QuickCheck, - reducers, - resourcet, - serialise, - tasty, - tasty-hunit, - tasty-quickcheck, - temporary, - text, - transformers, - unordered-containers, - }: - mkDerivation { - pname = "dfinity-radix-tree"; - version = "0.6.3"; - sha256 = "0rr02k5wycd7qy9p2pqhck7hqnr85aps4cl5wdfw32jcjvk325mj"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - base16-bytestring - BoundedChan - bytestring - concurrent-extra - conduit - containers - cryptonite - data-default-class - deepseq - directory - dlist - hashtables - lens-simple - leveldb-haskell - lrucaching - memory - mtl - reducers - resourcet - serialise - temporary - transformers - ]; - librarySystemDepends = [ leveldb ]; - executableHaskellDepends = [ - base - base16-bytestring - bytestring - containers - ]; - testHaskellDepends = [ - aeson - base - base16-bytestring - BoundedChan - bytestring - clock - concurrent-extra - conduit - containers - cryptonite - filepath - leveldb-haskell - memory - mtl - QuickCheck - resourcet - tasty - tasty-hunit - tasty-quickcheck - temporary - text - transformers - unordered-containers - ]; - description = "A generic data integrity layer"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "dfinity-radix-tree-example"; - } - ) { inherit (pkgs) leveldb; }; - "dfrac" = callPackage ( { mkDerivation, @@ -188477,103 +105489,6 @@ self: { } ) { }; - "dfsbuild" = callPackage ( - { - mkDerivation, - base, - ConfigFile, - directory, - filepath, - HSH, - hslogger, - MissingH, - network, - old-time, - parsec, - random, - regex-compat, - unix, - }: - mkDerivation { - pname = "dfsbuild"; - version = "1.0.2"; - sha256 = "0nh5cvb8macw523iids072rs9kylkv8zrliraw1jrvmhsznkj05x"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - ConfigFile - directory - filepath - HSH - hslogger - MissingH - network - old-time - parsec - random - regex-compat - unix - ]; - description = "Build Debian From Scratch CD/DVD images"; - license = "GPL"; - hydraPlatforms = lib.platforms.none; - mainProgram = "dfsbuild"; - broken = true; - } - ) { }; - - "dgim" = callPackage ( - { - mkDerivation, - base, - Cabal, - QuickCheck, - }: - mkDerivation { - pname = "dgim"; - version = "0.0.3"; - sha256 = "1brffyfawrdgr2659hbda42mpn9jiiq474a0yd57kj7z0dzq25f6"; - libraryHaskellDepends = [ base ]; - testHaskellDepends = [ - base - Cabal - QuickCheck - ]; - description = "Implementation of DGIM algorithm"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "dgs" = callPackage ( - { - mkDerivation, - base, - HTTP, - mtl, - network, - split, - }: - mkDerivation { - pname = "dgs"; - version = "0.2"; - sha256 = "100xlxqhy33kllyb4dy7q0bwwy5wn9w45qy1cb5f0yb0dqff1pnx"; - libraryHaskellDepends = [ - base - HTTP - mtl - network - split - ]; - description = "Haskell front-end for DGS' bot interface"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "dhall" = callPackage ( { mkDerivation, @@ -189258,42 +106173,6 @@ self: { } ) { }; - "dhall-check" = callPackage ( - { - mkDerivation, - base, - containers, - dhall, - directory, - filepath, - fsnotify, - text, - trifecta, - }: - mkDerivation { - pname = "dhall-check"; - version = "1.1.0.0"; - sha256 = "0j8axynspdm9dmrxqq329cnbxjlynakcfr5xfszs1szhvylsqx8a"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - containers - dhall - directory - filepath - fsnotify - text - trifecta - ]; - description = "Check all dhall files in a project"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "dhall-check"; - broken = true; - } - ) { }; - "dhall-csv" = callPackage ( { mkDerivation, @@ -189464,84 +106343,6 @@ self: { } ) { }; - "dhall-fly" = callPackage ( - { - mkDerivation, - aeson, - aeson-casing, - aeson-yaml, - base, - bytestring, - dhall, - dhall-json, - hspec, - hspec-discover, - optparse-applicative, - ordered-containers, - scientific, - text, - transformers, - unordered-containers, - vector, - }: - mkDerivation { - pname = "dhall-fly"; - version = "0.3.0"; - sha256 = "01152n1g8wfhbsl6znd6jnwb2rkdzcr3wcmdixnp6j3sxbgqbqln"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson - aeson-casing - base - dhall - optparse-applicative - ordered-containers - scientific - text - transformers - unordered-containers - vector - ]; - executableHaskellDepends = [ - aeson - aeson-casing - aeson-yaml - base - bytestring - dhall - dhall-json - optparse-applicative - ordered-containers - scientific - text - transformers - unordered-containers - vector - ]; - testHaskellDepends = [ - aeson - aeson-casing - base - dhall - hspec - optparse-applicative - ordered-containers - scientific - text - transformers - unordered-containers - vector - ]; - testToolDepends = [ hspec-discover ]; - description = "Translate concourse config from Dhall to YAML"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "dhall-fly"; - broken = true; - } - ) { }; - "dhall-json" = callPackage ( { mkDerivation, @@ -189622,49 +106423,6 @@ self: { } ) { }; - "dhall-lex" = callPackage ( - { - mkDerivation, - alex, - array, - base, - bytestring, - criterion, - deepseq, - hspec, - hspec-dirstream, - scientific, - }: - mkDerivation { - pname = "dhall-lex"; - version = "0.2.0.0"; - sha256 = "0yxffkmpkab7apvxj5i8a3x233smb5wps5j39h38d91v6kqf5yy2"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - array - base - bytestring - deepseq - scientific - ]; - libraryToolDepends = [ alex ]; - testHaskellDepends = [ - base - bytestring - hspec - hspec-dirstream - ]; - benchmarkHaskellDepends = [ - base - bytestring - criterion - ]; - description = "Lexer for the Dhall language"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "dhall-lsp-server" = callPackage ( { mkDerivation, @@ -190118,82 +106876,6 @@ self: { } ) { }; - "dhall-to-cabal" = callPackage ( - { - mkDerivation, - base, - bytestring, - Cabal, - containers, - contravariant, - dhall, - Diff, - directory, - filepath, - microlens, - optparse-applicative, - prettyprinter, - tasty, - tasty-golden, - tasty-hunit, - text, - transformers, - vector, - }: - mkDerivation { - pname = "dhall-to-cabal"; - version = "1.3.4.0"; - sha256 = "1z69nx98wgrjhgra0rw6lvsgnjzmqpixjwd673nvs79jg98yafm7"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - bytestring - Cabal - containers - contravariant - dhall - filepath - microlens - text - transformers - vector - ]; - executableHaskellDepends = [ - base - bytestring - Cabal - containers - dhall - directory - filepath - microlens - optparse-applicative - prettyprinter - text - transformers - ]; - testHaskellDepends = [ - base - bytestring - Cabal - dhall - Diff - filepath - microlens - prettyprinter - tasty - tasty-golden - tasty-hunit - text - ]; - description = "Compile Dhall expressions to Cabal files"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "dhall-toml" = callPackage ( { mkDerivation, @@ -190317,144 +106999,6 @@ self: { } ) { }; - "dhcp-lease-parser" = callPackage ( - { - mkDerivation, - attoparsec, - base, - bytestring, - chronos, - ip, - tasty, - tasty-hunit, - text, - }: - mkDerivation { - pname = "dhcp-lease-parser"; - version = "0.1"; - sha256 = "00h40vr2x77ajv1kks9gdg7a6nmrykc8pjf13zs1bq3pvgygqacs"; - libraryHaskellDepends = [ - attoparsec - base - bytestring - chronos - ip - text - ]; - testHaskellDepends = [ - attoparsec - base - bytestring - chronos - ip - tasty - tasty-hunit - ]; - description = "Parse a DHCP lease file"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "dhrun" = callPackage ( - { - mkDerivation, - aeson, - ansi-terminal, - base, - bytestring, - conduit, - conduit-extra, - containers, - dhall, - directory, - editor-open, - filepath, - generic-random, - Glob, - hspec, - mtl, - optparse-applicative, - process, - protolude, - quickcheck-text, - tasty, - tasty-golden, - tasty-hspec, - tasty-hunit, - tasty-quickcheck, - text, - time, - unix, - unliftio, - unliftio-core, - yaml, - }: - mkDerivation { - pname = "dhrun"; - version = "1.0.1"; - sha256 = "1gyg5221g1qsq2h62lcdwi4g7amis26692hh3fdi824bjylz8pal"; - isLibrary = false; - isExecutable = true; - libraryHaskellDepends = [ - ansi-terminal - base - bytestring - conduit - conduit-extra - containers - dhall - directory - mtl - process - protolude - text - time - unix - unliftio-core - yaml - ]; - executableHaskellDepends = [ - base - bytestring - dhall - directory - editor-open - filepath - optparse-applicative - protolude - ]; - testHaskellDepends = [ - aeson - base - bytestring - dhall - filepath - generic-random - Glob - hspec - mtl - protolude - quickcheck-text - tasty - tasty-golden - tasty-hspec - tasty-hunit - tasty-quickcheck - text - unliftio - yaml - ]; - doHaddock = false; - description = "Dhall/YAML configurable concurrent integration test executor"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - mainProgram = "dhrun"; - broken = true; - } - ) { }; - "dhscanner-ast" = callPackage ( { mkDerivation, @@ -190541,6 +107085,7 @@ self: { ]; description = "knowledge base predicates for static code analysis"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; } ) { }; @@ -190782,61 +107327,6 @@ self: { } ) { }; - "dia-base" = callPackage ( - { - mkDerivation, - base, - deepseq, - }: - mkDerivation { - pname = "dia-base"; - version = "0.1.1.4"; - sha256 = "09lyzl0ppgk7izmsb3hq86dfmyb31w866h582vazpphbyvrbpihz"; - revision = "1"; - editedCabalFile = "0jp6vxj2m984dl7gnphs7119zxs8pplhq73nnicvbhjcliixyl6w"; - libraryHaskellDepends = [ - base - deepseq - ]; - description = "An EDSL for teaching Haskell with diagrams - data types"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "dia-functions" = callPackage ( - { - mkDerivation, - base, - containers, - data-pprint, - deepseq, - dia-base, - mtl, - xhtml, - }: - mkDerivation { - pname = "dia-functions"; - version = "0.2.1.5"; - sha256 = "1q9jywy6rmh5wkd8z5rw9rkilbh9jxd4py2w4xxqz93rzz2gzy5g"; - revision = "1"; - editedCabalFile = "0zyg7mrnp8qp9v0hm1188n4xqp223g6wqdnz43dw3dchqs2qpwbx"; - libraryHaskellDepends = [ - base - containers - data-pprint - deepseq - dia-base - mtl - xhtml - ]; - description = "An EDSL for teaching Haskell with diagrams - functions"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "diagnose" = callPackage ( { mkDerivation, @@ -190911,31 +107401,6 @@ self: { } ) { }; - "diagrams-boolean" = callPackage ( - { - mkDerivation, - base, - cubicbezier, - diagrams-lib, - }: - mkDerivation { - pname = "diagrams-boolean"; - version = "0.1.0"; - sha256 = "17mna7qwrwayx1nfdqq0v3kk6aamm6bqg9n6dqg4dp764g679cf0"; - revision = "3"; - editedCabalFile = "1cqibxx1a00m8nl9k48c0m0ln589rr4qw3f41xl1jk68b83r3x1k"; - libraryHaskellDepends = [ - base - cubicbezier - diagrams-lib - ]; - description = "deprecated, part of diagrams-contrib since 1.4"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "diagrams-braille" = callPackage ( { mkDerivation, @@ -191828,49 +108293,6 @@ self: { } ) { }; - "diagrams-pdf" = callPackage ( - { - mkDerivation, - base, - cmdargs, - colour, - diagrams-core, - diagrams-lib, - filepath, - HPDF, - lens, - monoid-extras, - mtl, - semigroups, - split, - vector-space, - }: - mkDerivation { - pname = "diagrams-pdf"; - version = "0.3.1"; - sha256 = "0wi38w0r1n1zm49r16vhmgg14v3pw7ca6wwb85y3zrbjmzfa37vy"; - libraryHaskellDepends = [ - base - cmdargs - colour - diagrams-core - diagrams-lib - filepath - HPDF - lens - monoid-extras - mtl - semigroups - split - vector-space - ]; - description = "PDF backend for diagrams drawing EDSL"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "diagrams-pgf" = callPackage ( { mkDerivation, @@ -191967,33 +108389,6 @@ self: { } ) { }; - "diagrams-qrcode" = callPackage ( - { - mkDerivation, - array, - base, - colour, - diagrams-core, - diagrams-lib, - }: - mkDerivation { - pname = "diagrams-qrcode"; - version = "1.3"; - sha256 = "1pd7nbc7ypi2jjyd2kv0wghzsglih1cnnm3j33xv34n3pldmfzzx"; - libraryHaskellDepends = [ - array - base - colour - diagrams-core - diagrams-lib - ]; - description = "Draw QR codes to SVG, PNG, PDF or PS files"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "diagrams-rasterific" = callPackage ( { mkDerivation, @@ -192080,33 +108475,6 @@ self: { ]; description = "reflex backend for diagrams drawing EDSL"; license = lib.licenses.bsd3; - } - ) { }; - - "diagrams-rubiks-cube" = callPackage ( - { - mkDerivation, - adjunctions, - base, - data-default-class, - diagrams-lib, - distributive, - lens, - }: - mkDerivation { - pname = "diagrams-rubiks-cube"; - version = "0.3.0.0"; - sha256 = "10j9zag6b5mlhhmd3j0p2vxpm26rhm74ihs8xjcwh77xkywbfi7z"; - libraryHaskellDepends = [ - adjunctions - base - data-default-class - diagrams-lib - distributive - lens - ]; - description = "Library for drawing the Rubik's Cube"; - license = lib.licenses.mit; hydraPlatforms = lib.platforms.none; broken = true; } @@ -192191,98 +108559,6 @@ self: { } ) { }; - "diagrams-tikz" = callPackage ( - { - mkDerivation, - base, - diagrams-core, - diagrams-lib, - dlist, - mtl, - }: - mkDerivation { - pname = "diagrams-tikz"; - version = "0.6"; - sha256 = "1qs4m1xy62pv6gjgip9vx2pwlv2gzjq1h86yiiq15yg4gcbn5fav"; - libraryHaskellDepends = [ - base - diagrams-core - diagrams-lib - dlist - mtl - ]; - description = "TikZ backend for diagrams drawing EDSL"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "diagrams-wx" = callPackage ( - { - mkDerivation, - base, - cairo, - diagrams-cairo, - diagrams-lib, - wx, - wxcore, - }: - mkDerivation { - pname = "diagrams-wx"; - version = "0.1.1.0"; - sha256 = "1fmr6pxcm7fc9vvyzrih7i3ya8gbn2lrn29m5807ipzpsjy5aa27"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - cairo - diagrams-cairo - diagrams-lib - wx - wxcore - ]; - description = "Backend for rendering diagrams in wxWidgets"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "dialog" = callPackage ( - { - mkDerivation, - base, - bytestring, - filepath, - glib, - gtk3, - open-browser, - text, - transformers, - webkitgtk3, - }: - mkDerivation { - pname = "dialog"; - version = "0.3.0.0"; - sha256 = "1lhsd48zb6d00jr7zdmpnhx8gkb3da8kr1qr09qpqais71mxhzz4"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base - bytestring - filepath - glib - gtk3 - open-browser - text - transformers - webkitgtk3 - ]; - description = "Simple dialog-based user interfaces"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "dialogflow-fulfillment" = callPackage ( { mkDerivation, @@ -192354,61 +108630,6 @@ self: { } ) { }; - "dib" = callPackage ( - { - mkDerivation, - ansi-terminal, - base, - bytestring, - cereal, - containers, - digest, - directory, - filepath, - mtl, - process, - text, - time, - }: - mkDerivation { - pname = "dib"; - version = "0.7.2"; - sha256 = "0r1hk45fdyhygmscnphl4n6dcs0rvgavhbg5si0aqsck4wsnql83"; - revision = "1"; - editedCabalFile = "08lhqgh1apzik4mrz0g0qwnpafgl3hm2cb49rwghzv1bf66wxq4n"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - ansi-terminal - base - bytestring - cereal - containers - digest - directory - filepath - mtl - process - text - time - ]; - executableHaskellDepends = [ - base - containers - directory - filepath - mtl - process - time - ]; - description = "A simple, forward build system"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - mainProgram = "dib"; - broken = true; - } - ) { }; - "dice" = callPackage ( { mkDerivation, @@ -192484,135 +108705,6 @@ self: { } ) { }; - "dice2tex" = callPackage ( - { mkDerivation, base }: - mkDerivation { - pname = "dice2tex"; - version = "0.1.0.1"; - sha256 = "0hd8g623k7m6fqd5hk470vayqfk4a43yz98y1b0ylz5x0ha9d1d9"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ base ]; - description = "Convert a Diceware wordlist into a printer-ready LaTeX file"; - license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - mainProgram = "dice2tex"; - broken = true; - } - ) { }; - - "dicom" = callPackage ( - { - mkDerivation, - base, - binary, - bytestring, - pretty, - safe, - time, - }: - mkDerivation { - pname = "dicom"; - version = "0.3.0.0"; - sha256 = "081xkz75vp7cvz2djkki5s2795xyk1ar51i9a33h6f46p5fsw5nn"; - libraryHaskellDepends = [ - base - binary - bytestring - pretty - safe - time - ]; - description = "A library for reading and writing DICOM files in the Explicit VR Little Endian transfer syntax"; - license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "dictionaries" = callPackage ( - { - mkDerivation, - attoparsec, - base, - binary, - bytestring, - containers, - criterion, - data-default, - deepseq, - directory, - exceptions, - filepath, - hspec, - QuickCheck, - random, - random-shuffle, - tagged, - text, - time, - transformers, - zlib, - }: - mkDerivation { - pname = "dictionaries"; - version = "0.2.0.4"; - sha256 = "1m581w0fmb9ggwqkyfgxjw6zxfkk6iapmh17sizsqkmg2vbw7qzx"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - attoparsec - base - binary - bytestring - containers - data-default - deepseq - directory - exceptions - filepath - tagged - text - time - transformers - zlib - ]; - executableHaskellDepends = [ - base - bytestring - containers - criterion - deepseq - directory - exceptions - filepath - random - random-shuffle - tagged - text - transformers - ]; - testHaskellDepends = [ - base - bytestring - containers - directory - filepath - hspec - QuickCheck - random - tagged - text - time - ]; - description = "Tools to handle StarDict dictionaries"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "bench"; - broken = true; - } - ) { }; - "dictionary-sharing" = callPackage ( { mkDerivation, @@ -192634,132 +108726,6 @@ self: { } ) { }; - "dictparser" = callPackage ( - { - mkDerivation, - base, - hspec, - parsec, - split, - }: - mkDerivation { - pname = "dictparser"; - version = "0.3.0.0"; - sha256 = "1wjxcn53h9rp8jancspb9yq4h26215b63pghw802wgh073vp9h0i"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - parsec - split - ]; - executableHaskellDepends = [ - base - parsec - ]; - testHaskellDepends = [ - base - hspec - parsec - ]; - description = "Parsec parsers for the DICT format produced by dictfmt -t"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "dictparser"; - broken = true; - } - ) { }; - - "diet" = callPackage ( - { - mkDerivation, - base, - containers, - contiguous, - primitive, - QuickCheck, - quickcheck-classes, - tasty, - tasty-quickcheck, - }: - mkDerivation { - pname = "diet"; - version = "0.1.0.0"; - sha256 = "17mqgkxjpimr1fipiszabf8djxp0k63gmd3l3dbbsr49cfnnimr2"; - libraryHaskellDepends = [ - base - contiguous - primitive - ]; - testHaskellDepends = [ - base - containers - primitive - QuickCheck - quickcheck-classes - tasty - tasty-quickcheck - ]; - description = "Discrete Interval Encoding Trees"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "diff" = callPackage ( - { - mkDerivation, - base, - Enum, - util, - }: - mkDerivation { - pname = "diff"; - version = "0.1.0.0"; - sha256 = "19sn53b4sb0sa7ibcz9wvpn3vhja0yx62p8f9ibawrycm4cpbpzl"; - libraryHaskellDepends = [ - base - Enum - util - ]; - description = "Diff and patch"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "diff-gestalt" = callPackage ( - { - mkDerivation, - base, - Diff, - KMP, - QuickCheck, - string-similarity, - }: - mkDerivation { - pname = "diff-gestalt"; - version = "0.2.0.0"; - sha256 = "1aaqyak7sk7j1zscf2p3n0n4gmq1l7ih8mx0b96qfnk328aj4kbk"; - libraryHaskellDepends = [ - base - Diff - KMP - QuickCheck - string-similarity - ]; - testHaskellDepends = [ - base - Diff - ]; - description = "A diff algorithm based on recursive longest common substrings"; - license = "unknown"; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "diff-loc" = callPackage ( { mkDerivation, @@ -192858,44 +108824,6 @@ self: { } ) { }; - "diffcabal" = callPackage ( - { - mkDerivation, - base, - bytestring, - Cabal, - containers, - Diff, - directory, - filepath, - pretty, - process, - }: - mkDerivation { - pname = "diffcabal"; - version = "0.1.1"; - sha256 = "0ggla2i4jw24a3vdq2xyz70asp80s5jl5nkwms6ck4r69zm3mci6"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - bytestring - Cabal - containers - Diff - directory - filepath - pretty - process - ]; - description = "Diff two .cabal files syntactically"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "diffcabal"; - broken = true; - } - ) { }; - "diffdump" = callPackage ( { mkDerivation, @@ -192935,54 +108863,6 @@ self: { } ) { }; - "difference-monoid" = callPackage ( - { - mkDerivation, - adjunctions, - base, - comonad, - containers, - deepseq, - distributive, - doctest, - groups, - hedgehog, - hedgehog-checkers, - QuickCheck, - semigroupoids, - }: - mkDerivation { - pname = "difference-monoid"; - version = "0.1.0.0"; - sha256 = "1i99hcxb07142227x4f0p2giayvzpr49ynx6apys178bgi99ih3k"; - libraryHaskellDepends = [ - adjunctions - base - comonad - deepseq - distributive - groups - semigroupoids - ]; - testHaskellDepends = [ - adjunctions - base - comonad - containers - deepseq - distributive - doctest - groups - hedgehog - hedgehog-checkers - QuickCheck - semigroupoids - ]; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "differential" = callPackage ( { mkDerivation, @@ -193045,83 +108925,6 @@ self: { } ) { }; - "diffmap" = callPackage ( - { - mkDerivation, - base, - containers, - }: - mkDerivation { - pname = "diffmap"; - version = "0.1.0.0"; - sha256 = "0i6dyvp8ds1wz9jm7nva076pc18mz24fiz50gqgq3xv76aghl0i0"; - revision = "1"; - editedCabalFile = "0gkcsdf9jrfs5lwhayl808flwlv446mixdn3n91v5gsxbcqqrsi7"; - libraryHaskellDepends = [ - base - containers - ]; - description = "diff on maps"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "difftodo" = callPackage ( - { - mkDerivation, - base, - bytestring, - diff-parse, - highlighter2, - optparse-applicative, - pretty-show, - process, - protolude, - tasty, - tasty-hunit, - text, - }: - mkDerivation { - pname = "difftodo"; - version = "0.2.0"; - sha256 = "16dqz88i095i0jdfp1hx959czmlgnwxjh8vnycmawmalw5rw9cmx"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - bytestring - diff-parse - highlighter2 - protolude - text - ]; - executableHaskellDepends = [ - base - bytestring - optparse-applicative - process - protolude - text - ]; - testHaskellDepends = [ - base - bytestring - highlighter2 - pretty-show - protolude - tasty - tasty-hunit - text - ]; - description = "Generate todo lists from source code"; - license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "digamma" = callPackage ( { mkDerivation, @@ -193162,38 +108965,6 @@ self: { } ) { inherit (pkgs) zlib; }; - "digest-pure" = callPackage ( - { - mkDerivation, - array, - base, - bytestring, - digest, - QuickCheck, - }: - mkDerivation { - pname = "digest-pure"; - version = "0.0.3"; - sha256 = "0rb5jkzn1d4z90hd47qh98mf4n90wvj0cqf3qfpj7ndvw52yy95w"; - libraryHaskellDepends = [ - array - base - bytestring - ]; - testHaskellDepends = [ - array - base - bytestring - digest - QuickCheck - ]; - description = "Pure hash functions for bytestrings"; - license = "unknown"; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "digest-sig" = callPackage ( { mkDerivation, @@ -193216,67 +108987,6 @@ self: { } ) { }; - "digestive-bootstrap" = callPackage ( - { - mkDerivation, - base, - blaze-bootstrap, - blaze-html, - digestive-functors, - digestive-functors-blaze, - http-types, - text, - }: - mkDerivation { - pname = "digestive-bootstrap"; - version = "0.3.0.0"; - sha256 = "00zcxv0y1i4yi9h3683fa2p6yhk96lxjnhfhcdvqp8c7k0z9g62q"; - libraryHaskellDepends = [ - base - blaze-bootstrap - blaze-html - digestive-functors - digestive-functors-blaze - http-types - text - ]; - description = "Speed up form designing using digestive functors and bootstrap"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "digestive-foundation-lucid" = callPackage ( - { - mkDerivation, - base, - digestive-functors, - digestive-functors-lucid, - http-types, - lucid, - lucid-foundation, - text, - }: - mkDerivation { - pname = "digestive-foundation-lucid"; - version = "0.0.0.1"; - sha256 = "1gpmmbf5s4kxf9xhbhf086b5n3kkr9ay2qlm6xlnf8cx1l9rn6bi"; - libraryHaskellDepends = [ - base - digestive-functors - digestive-functors-lucid - http-types - lucid - lucid-foundation - text - ]; - description = "Speed up form designing using digestive functors and foundation"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "digestive-functors" = callPackage ( { mkDerivation, @@ -193330,59 +109040,6 @@ self: { } ) { }; - "digestive-functors-aeson" = callPackage ( - { - mkDerivation, - aeson, - base, - bytestring, - containers, - digestive-functors, - HUnit, - lens, - lens-aeson, - mtl, - safe, - scientific, - tasty, - tasty-hunit, - text, - vector, - }: - mkDerivation { - pname = "digestive-functors-aeson"; - version = "1.1.27"; - sha256 = "05di6xs4y2cj8gv7piqk2x8lylbqdnipgb4zdzahqwpif4n74i7j"; - libraryHaskellDepends = [ - aeson - base - containers - digestive-functors - lens - lens-aeson - safe - text - vector - ]; - testHaskellDepends = [ - aeson - base - bytestring - digestive-functors - HUnit - mtl - scientific - tasty - tasty-hunit - text - ]; - description = "Run digestive-functors forms against JSON"; - license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "digestive-functors-blaze" = callPackage ( { mkDerivation, @@ -193410,189 +109067,6 @@ self: { } ) { }; - "digestive-functors-happstack" = callPackage ( - { - mkDerivation, - base, - bytestring, - digestive-functors, - happstack-server, - text, - }: - mkDerivation { - pname = "digestive-functors-happstack"; - version = "0.6.1.3"; - sha256 = "1kjmjxmlaaawfkk96wzlzd0kbcb5j0pvqssh3ynjm074cy6h89fd"; - libraryHaskellDepends = [ - base - bytestring - digestive-functors - happstack-server - text - ]; - description = "Happstack backend for the digestive-functors library"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "digestive-functors-heist" = callPackage ( - { - mkDerivation, - base, - blaze-builder, - digestive-functors, - heist, - map-syntax, - mtl, - text, - xmlhtml, - }: - mkDerivation { - pname = "digestive-functors-heist"; - version = "0.8.8.1"; - sha256 = "1gfh94c52g6vhny2j7hf61w3gp2vmh3gp9bssmmx6mklwk3lzg3y"; - libraryHaskellDepends = [ - base - blaze-builder - digestive-functors - heist - map-syntax - mtl - text - xmlhtml - ]; - description = "Heist frontend for the digestive-functors library"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "digestive-functors-hsp" = callPackage ( - { - mkDerivation, - base, - digestive-functors, - hsp, - hsx, - text, - trhsx, - }: - mkDerivation { - pname = "digestive-functors-hsp"; - version = "0.5.0"; - sha256 = "00n1cxkrkd3ayl7pp6pr7nyx6zcwqpsqzflnnnf0f8dabrz4wzdc"; - libraryHaskellDepends = [ - base - digestive-functors - hsp - hsx - text - ]; - libraryToolDepends = [ trhsx ]; - description = "HSP support for digestive-functors"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "digestive-functors-lucid" = callPackage ( - { - mkDerivation, - base, - digestive-functors, - lucid, - text, - }: - mkDerivation { - pname = "digestive-functors-lucid"; - version = "0.0.0.5"; - sha256 = "176vc7gsm0379100imk1i8y8r2gx0l66dijgmxkqbq1qwkjfizs5"; - libraryHaskellDepends = [ - base - digestive-functors - lucid - text - ]; - description = "Lucid frontend for the digestive-functors library"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "digestive-functors-scotty" = callPackage ( - { - mkDerivation, - base, - bytestring, - digestive-functors, - http-types, - scotty, - text, - wai, - wai-extra, - }: - mkDerivation { - pname = "digestive-functors-scotty"; - version = "0.2.0.2"; - sha256 = "0flm1akhx3fj8pli3nz9s7asah7cfm9afz99jx3f4rv7352saclp"; - revision = "1"; - editedCabalFile = "103m858yxjsqnyzx0p6il8mxdc1zpwk09ija79l10y90a3498zax"; - libraryHaskellDepends = [ - base - bytestring - digestive-functors - http-types - scotty - text - wai - wai-extra - ]; - description = "Scotty backend for the digestive-functors library"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "digestive-functors-snap" = callPackage ( - { - mkDerivation, - base, - bytestring, - containers, - digestive-functors, - directory, - filepath, - mtl, - snap-core, - text, - }: - mkDerivation { - pname = "digestive-functors-snap"; - version = "0.7.0.1"; - sha256 = "14i42q6ngajzg01zl2mp38800j3bzn4389s3kgbpg0am2mn0458z"; - libraryHaskellDepends = [ - base - bytestring - containers - digestive-functors - directory - filepath - mtl - snap-core - text - ]; - description = "Snap backend for the digestive-functors library"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "digit" = callPackage ( { mkDerivation, @@ -193648,46 +109122,6 @@ self: { } ) { }; - "digitalocean-kzs" = callPackage ( - { - mkDerivation, - aeson, - base, - bytestring, - doctest, - hspec, - HTTP, - http-conduit, - http-types, - text, - transformers, - }: - mkDerivation { - pname = "digitalocean-kzs"; - version = "0.1.0.3"; - sha256 = "0w1gbh84sbaab4gn9avjqmwd29rzv0b2dyxqqg22vq1da8g3bzng"; - libraryHaskellDepends = [ - aeson - base - bytestring - HTTP - http-conduit - http-types - text - transformers - ]; - testHaskellDepends = [ - base - doctest - hspec - ]; - description = "digitalocean api for haskell"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "digits" = callPackage ( { mkDerivation, @@ -193782,36 +109216,6 @@ self: { } ) { }; - "dijkstra-simple" = callPackage ( - { - mkDerivation, - base, - containers, - fingertree, - hspec, - }: - mkDerivation { - pname = "dijkstra-simple"; - version = "0.1.0"; - sha256 = "068jfmkk14fmyd8ars13zi8z716d7ak0mxj3zm5f1zyj31901wz8"; - libraryHaskellDepends = [ - base - containers - fingertree - ]; - testHaskellDepends = [ - base - containers - fingertree - hspec - ]; - description = "A simpler Dijkstra shortest paths implementation"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "dimensional" = callPackage ( { mkDerivation, @@ -193875,28 +109279,6 @@ self: { } ) { }; - "dimensional-tf" = callPackage ( - { - mkDerivation, - base, - numtype-tf, - time, - }: - mkDerivation { - pname = "dimensional-tf"; - version = "0.3.0.4"; - sha256 = "052daw4kj1ivj3h2lvs39m3xz1xy5ra8fj5pmpfnjmjgg5kfv2w1"; - libraryHaskellDepends = [ - base - numtype-tf - time - ]; - description = "Statically checked physical dimensions, implemented using type families"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "dimensions" = callPackage ( { mkDerivation, @@ -193929,163 +109311,6 @@ self: { } ) { }; - "dingo-core" = callPackage ( - { - mkDerivation, - aeson, - attoparsec, - base, - base64-bytestring, - blaze-builder, - blaze-html, - blaze-textual, - bytestring, - conduit, - containers, - cookie, - deepseq, - fclabels, - file-embed, - hashable, - http-types, - random, - SHA, - shakespeare-js, - strict-concurrency, - template-haskell, - text, - transformers, - unordered-containers, - wai, - wai-eventsource, - wai-extra, - warp, - web-css, - }: - mkDerivation { - pname = "dingo-core"; - version = "0.2.0"; - sha256 = "1h0ir5h6nq2c8qk4irbcai87mxgiyahyi2lcxps959zja70pmqf5"; - libraryHaskellDepends = [ - aeson - attoparsec - base - base64-bytestring - blaze-builder - blaze-html - blaze-textual - bytestring - conduit - containers - cookie - deepseq - fclabels - file-embed - hashable - http-types - random - SHA - shakespeare-js - strict-concurrency - template-haskell - text - transformers - unordered-containers - wai - wai-eventsource - wai-extra - warp - web-css - ]; - description = "Dingo is a Rich Internet Application platform based on the Warp web server"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "dingo-example" = callPackage ( - { - mkDerivation, - aeson, - base, - blaze-html, - bytestring, - dingo-core, - dingo-widgets, - fclabels, - shakespeare-js, - template-haskell, - text, - transformers, - }: - mkDerivation { - pname = "dingo-example"; - version = "0.2.0"; - sha256 = "0mla83bijf077bx16r9rsvbyr8v684j1bfllfw7kswlgyz37rf4b"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - aeson - base - blaze-html - bytestring - dingo-core - dingo-widgets - fclabels - shakespeare-js - template-haskell - text - transformers - ]; - description = "Dingo Example"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - mainProgram = "dingo-example"; - } - ) { }; - - "dingo-widgets" = callPackage ( - { - mkDerivation, - aeson, - base, - blaze-html, - bytestring, - containers, - dingo-core, - fclabels, - file-embed, - shakespeare-js, - template-haskell, - text, - transformers, - unordered-containers, - }: - mkDerivation { - pname = "dingo-widgets"; - version = "0.2.0"; - sha256 = "1d61l2c6vwpngffr5ynm3zrvn7as9zgsm3zg18ldq958s0mvdn8p"; - libraryHaskellDepends = [ - aeson - base - blaze-html - bytestring - containers - dingo-core - fclabels - file-embed - shakespeare-js - template-haskell - text - transformers - unordered-containers - ]; - description = "Dingo Widgets"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "dino" = callPackage ( { mkDerivation, @@ -194228,127 +109453,6 @@ self: { } ) { }; - "diophantine" = callPackage ( - { - mkDerivation, - array, - base, - happy, - }: - mkDerivation { - pname = "diophantine"; - version = "0.2.1.0"; - sha256 = "118r59mwvihzqsjd530x4pdnvqjk87b3jjdhx5avq31cfdbiyaj9"; - libraryHaskellDepends = [ - array - base - ]; - libraryToolDepends = [ happy ]; - description = "A quadratic diophantine equation solving library"; - license = lib.licenses.gpl2Only; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "diplomacy" = callPackage ( - { - mkDerivation, - base, - containers, - HUnit, - parsec, - transformers, - TypeNat, - }: - mkDerivation { - pname = "diplomacy"; - version = "0.2.0.0"; - sha256 = "0n0vqc65rjkbplamjhc3zx0ahlx6lf72yyqrkd2d7b03jzfmjvfq"; - libraryHaskellDepends = [ - base - containers - HUnit - parsec - transformers - TypeNat - ]; - description = "Diplomacy board game"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "diplomacy-server" = callPackage ( - { - mkDerivation, - aeson, - async, - base, - bytestring, - containers, - deepseq, - diplomacy, - filepath, - hourglass, - json-schema, - mtl, - optparse-applicative, - parsec, - random, - rest-core, - rest-wai, - stm, - Stream, - text, - transformers, - transformers-compat, - TypeNat, - wai, - warp, - warp-tls, - }: - mkDerivation { - pname = "diplomacy-server"; - version = "0.1.0.0"; - sha256 = "1xnwwkrg8wsggs83vkhbm1kn5p37sinjknpi6vx32cw4aikqxpin"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - aeson - async - base - bytestring - containers - deepseq - diplomacy - filepath - hourglass - json-schema - mtl - optparse-applicative - parsec - random - rest-core - rest-wai - stm - Stream - text - transformers - transformers-compat - TypeNat - wai - warp - warp-tls - ]; - description = "Play Diplomacy over HTTP"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "diplomacy-server"; - } - ) { }; - "dir-traverse" = callPackage ( { mkDerivation, @@ -194379,206 +109483,46 @@ self: { pipes-safe system-filepath ]; - description = "Simple directory traversal library"; - license = lib.licenses.bsd3; - } - ) { }; - - "direct-binary-files" = callPackage ( - { - mkDerivation, - base, - bytestring, - mtl, - }: - mkDerivation { - pname = "direct-binary-files"; - version = "1.0"; - sha256 = "0ci6av8sgrlsn12dbpvqf3imq9w1hm2ll5np2fz7gh9760vvdidr"; - libraryHaskellDepends = [ - base - bytestring - mtl - ]; - description = "Serialization and deserialization monads for streams and ByteStrings"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "direct-daemonize" = callPackage ( - { - mkDerivation, - base, - unix, - }: - mkDerivation { - pname = "direct-daemonize"; - version = "3.1"; - sha256 = "0698l8zylkgafx8g91icysz6rq2lyrnd25blhday67s9vkdpbvxh"; - libraryHaskellDepends = [ - base - unix - ]; - description = "Library to switch to daemon mode using built-in OS facilities"; - license = lib.licenses.bsd3; - } - ) { }; - - "direct-fastcgi" = callPackage ( - { - mkDerivation, - base, - bytestring, - containers, - mtl, - network, - utf8-string, - }: - mkDerivation { - pname = "direct-fastcgi"; - version = "1.0.3"; - sha256 = "049z23gkssk3h8sx9xr3baln3hz5cykf2zp9kzmvbk2n4ky8fs78"; - libraryHaskellDepends = [ - base - bytestring - containers - mtl - network - utf8-string - ]; - description = "Native implementation of the FastCGI protocol"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "direct-http" = callPackage ( - { - mkDerivation, - base, - bytestring, - containers, - direct-daemonize, - lifted-base, - monad-control, - mtl, - network, - old-locale, - SafeSemaphore, - time, - transformers-base, - unix, - utf8-string, - }: - mkDerivation { - pname = "direct-http"; - version = "0.6"; - sha256 = "0aghfhg0nx2bqi56cw5hnnqxnjbziihn36yqpq12gyhnahwdfvpg"; - libraryHaskellDepends = [ - base - bytestring - containers - direct-daemonize - lifted-base - monad-control - mtl - network - old-locale - SafeSemaphore - time - transformers-base - unix - utf8-string - ]; - description = "Native webserver that acts as a library"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "direct-murmur-hash" = callPackage ( - { - mkDerivation, - base, - bytestring, - }: - mkDerivation { - pname = "direct-murmur-hash"; - version = "1.0.1"; - sha256 = "09hv06hslz83gpqfxxv6bfg4i6l7pfv82jxab4lf8g964ciaa42q"; - libraryHaskellDepends = [ - base - bytestring - ]; - description = "An implementation of the MurmurHash3 algorithm"; + description = "Simple directory traversal library"; license = lib.licenses.bsd3; } ) { }; - "direct-plugins" = callPackage ( + "direct-daemonize" = callPackage ( { mkDerivation, base, - ghc, - ghc-paths, + unix, }: mkDerivation { - pname = "direct-plugins"; - version = "1.1"; - sha256 = "03f7jrx0skqiirvpzzakk3wwwdjanjxpzv8j5nwpzvqpb4syshcr"; + pname = "direct-daemonize"; + version = "3.1"; + sha256 = "0698l8zylkgafx8g91icysz6rq2lyrnd25blhday67s9vkdpbvxh"; libraryHaskellDepends = [ base - ghc - ghc-paths + unix ]; - description = "Lightweight replacement for Plugins, specific to GHC"; + description = "Library to switch to daemon mode using built-in OS facilities"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; } ) { }; - "direct-rocksdb" = callPackage ( + "direct-murmur-hash" = callPackage ( { mkDerivation, base, bytestring, - Cabal, - cabal-toolkit, - directory, - filepath, - safe-exceptions, }: mkDerivation { - pname = "direct-rocksdb"; - version = "0.0.3"; - sha256 = "12h5hasv7pm3iglxhbvdmdzybi4m1czi4f5hrhv2685nwvkqsdc4"; - setupHaskellDepends = [ - base - Cabal - cabal-toolkit - directory - filepath - ]; + pname = "direct-murmur-hash"; + version = "1.0.1"; + sha256 = "09hv06hslz83gpqfxxv6bfg4i6l7pfv82jxab4lf8g964ciaa42q"; libraryHaskellDepends = [ base bytestring - safe-exceptions - ]; - testHaskellDepends = [ - base - bytestring - directory - filepath - safe-exceptions ]; - description = "Bindings to RocksDB"; + description = "An implementation of the MurmurHash3 algorithm"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; } ) { }; @@ -194616,41 +109560,6 @@ self: { } ) { }; - "directed-cubical" = callPackage ( - { - mkDerivation, - base, - bytestring, - containers, - deepseq, - hashable, - parallel, - QuickCheck, - unordered-containers, - vector, - }: - mkDerivation { - pname = "directed-cubical"; - version = "0.1.2.0"; - sha256 = "0wy6p5nymri7l1ldc6c34b9y4ncmzr2wpidbqjrmacxg07iypn3z"; - libraryHaskellDepends = [ - base - bytestring - containers - deepseq - hashable - parallel - QuickCheck - unordered-containers - vector - ]; - description = "Finite directed cubical complexes and associated algorithms"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "directory_1_3_9_0" = callPackage ( { mkDerivation, @@ -194898,61 +109807,6 @@ self: { } ) { }; - "direm" = callPackage ( - { - mkDerivation, - base, - directory, - }: - mkDerivation { - pname = "direm"; - version = "0.1.0.0"; - sha256 = "048503bgikwffvqa00yxawr1lmqy523i9zvs05dyim6v927m1fmx"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - directory - ]; - description = "Deletes a directory and retains its contents in the parent directory"; - license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - mainProgram = "direm"; - broken = true; - } - ) { }; - - "dirfiles" = callPackage ( - { - mkDerivation, - aeson, - base, - containers, - hblock, - safecopy, - text, - time, - unordered-containers, - }: - mkDerivation { - pname = "dirfiles"; - version = "0.1.0.9"; - sha256 = "0jqavj2s28ffaql3mcgasxa8fg0bv0v6irr2a5334jqydksj0b96"; - libraryHaskellDepends = [ - aeson - base - containers - hblock - safecopy - text - time - unordered-containers - ]; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "dirforest" = callPackage ( { mkDerivation, @@ -195252,65 +110106,6 @@ self: { } ) { }; - "discogs-haskell" = callPackage ( - { - mkDerivation, - aeson, - api-builder, - base, - bytestring, - Cabal, - data-default-class, - free, - hspec, - http-client, - http-client-tls, - http-types, - network, - text, - time, - transformers, - unordered-containers, - vector, - }: - mkDerivation { - pname = "discogs-haskell"; - version = "0.0.5.0"; - sha256 = "0hpdc559lkbgnbg4z0hmsg8049cnlzxhg59iy37jxix9zr6zkmxc"; - libraryHaskellDepends = [ - aeson - api-builder - base - bytestring - data-default-class - free - http-client - http-client-tls - http-types - network - text - time - transformers - unordered-containers - vector - ]; - testHaskellDepends = [ - aeson - api-builder - base - bytestring - Cabal - hspec - text - time - transformers - ]; - description = "Client for Discogs REST API"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "discokitty" = callPackage ( { mkDerivation, @@ -195330,40 +110125,6 @@ self: { } ) { }; - "discord-gateway" = callPackage ( - { - mkDerivation, - aeson, - base, - discord-types, - hslogger, - transformers, - url, - websockets, - wuss, - }: - mkDerivation { - pname = "discord-gateway"; - version = "0.2.2"; - sha256 = "1pc8j2pqrpmgvf31kx24gwj6n96npxdjj6mjf2w9wzh500rdrrzy"; - revision = "1"; - editedCabalFile = "0aw47024gk2hvj0zzy7h01rvv6wxhnjqqjg8prb4x1pajjalg9l5"; - libraryHaskellDepends = [ - aeson - base - discord-types - hslogger - transformers - url - websockets - wuss - ]; - description = "An API wrapper for Discord in Haskell"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "discord-haskell" = callPackage ( { mkDerivation, @@ -195512,38 +110273,6 @@ self: { } ) { }; - "discord-hs" = callPackage ( - { - mkDerivation, - base, - discord-gateway, - discord-rest, - discord-types, - hashable, - mtl, - url, - websockets, - }: - mkDerivation { - pname = "discord-hs"; - version = "0.4.2"; - sha256 = "0lv299wn7jisgavmcpm2h7vf9dalz5dmi6j8qvlbbiyqg1c0jn2a"; - libraryHaskellDepends = [ - base - discord-gateway - discord-rest - discord-types - hashable - mtl - url - websockets - ]; - description = "An API wrapper for Discord in Haskell"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "discord-register" = callPackage ( { mkDerivation, @@ -195629,110 +110358,6 @@ self: { } ) { }; - "discord-rest" = callPackage ( - { - mkDerivation, - aeson, - base, - bytestring, - comonad, - data-default, - discord-types, - hashable, - hslogger, - http-client, - mtl, - req, - stm, - text, - time, - url, - }: - mkDerivation { - pname = "discord-rest"; - version = "0.2.2"; - sha256 = "02sg05zf2m83d6hq5z51cjvw7ycarrmwx9y00c71wiw3hvb84fb3"; - revision = "1"; - editedCabalFile = "0hwiwzgh359cha0j97mwhdjmg1y2zppppbn538pn4ggfn6i7ma11"; - libraryHaskellDepends = [ - aeson - base - bytestring - comonad - data-default - discord-types - hashable - hslogger - http-client - mtl - req - stm - text - time - url - ]; - description = "An API wrapper for Discord in Haskell"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "discord-types" = callPackage ( - { - mkDerivation, - aeson, - base, - hashable, - text, - time, - transformers, - unordered-containers, - vector, - }: - mkDerivation { - pname = "discord-types"; - version = "0.2.2"; - sha256 = "12smb4z6mrj9hhk7jc9r2cz6p4lcix2016ahwp9qapklrql539sc"; - revision = "1"; - editedCabalFile = "015i65pzkxrx6pring1q0fv772r54xrbrbrwa339yqjgzm7c7z7w"; - libraryHaskellDepends = [ - aeson - base - hashable - text - time - transformers - unordered-containers - vector - ]; - description = "Type information for discord-hs"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "discordian-calendar" = callPackage ( - { - mkDerivation, - base, - time, - }: - mkDerivation { - pname = "discordian-calendar"; - version = "0.1"; - sha256 = "0ykbfisrb6k8vsqx5avv99j0z4j4615hmql263h12jzhjxfzd22d"; - libraryHaskellDepends = [ - base - time - ]; - description = "library for handling Discordian calendar dates"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "discount" = callPackage ( { mkDerivation, @@ -195786,22 +110411,6 @@ self: { } ) { }; - "discrete" = callPackage ( - { mkDerivation, base }: - mkDerivation { - pname = "discrete"; - version = "0.1.0.0"; - sha256 = "1888rv1lqmzip0g2c6f12b01kpwcd5vwk2ixby0g2291xnl7zs2w"; - revision = "1"; - editedCabalFile = "1ary1xyh2gy099p1madapfqhw2r1ys1pd8xg396xxaas4vjmqqkh"; - libraryHaskellDepends = [ base ]; - description = "replacement for enum"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "discrete-intervals" = callPackage ( { mkDerivation, base }: mkDerivation { @@ -195958,74 +110567,6 @@ self: { } ) { }; - "disjoint-set" = callPackage ( - { - mkDerivation, - base, - containers, - HUnit, - mtl, - QuickCheck, - transformers, - }: - mkDerivation { - pname = "disjoint-set"; - version = "0.2"; - sha256 = "05m7liind4fdw5lw8a8381hm6rjzsqz86qzir79y30pj0axayc3z"; - libraryHaskellDepends = [ - base - containers - mtl - transformers - ]; - testHaskellDepends = [ - base - containers - HUnit - mtl - QuickCheck - transformers - ]; - description = "Persistent disjoint-sets, a.k.a union-find."; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "disjoint-set-stateful" = callPackage ( - { - mkDerivation, - base, - hspec, - primitive, - ref-tf, - vector, - }: - mkDerivation { - pname = "disjoint-set-stateful"; - version = "0.1.1.0"; - sha256 = "0fl3yii5pr41hy5fqg9vg902xq342l6xvfl6vb4nf15vbsff84c5"; - libraryHaskellDepends = [ - base - primitive - ref-tf - vector - ]; - testHaskellDepends = [ - base - hspec - primitive - ref-tf - vector - ]; - description = "Monadic disjoint set"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "disjoint-sets-st" = callPackage ( { mkDerivation, @@ -196095,45 +110636,6 @@ self: { } ) { }; - "diskhash" = callPackage ( - { - mkDerivation, - base, - bytestring, - directory, - HUnit, - QuickCheck, - test-framework, - test-framework-hunit, - test-framework-quickcheck2, - test-framework-th, - }: - mkDerivation { - pname = "diskhash"; - version = "0.0.4.2"; - sha256 = "0rjbjjvvr75ki8kw8y3xf1z8x8cg46h10c73600lcz3bnxba188c"; - libraryHaskellDepends = [ - base - bytestring - ]; - testHaskellDepends = [ - base - bytestring - directory - HUnit - QuickCheck - test-framework - test-framework-hunit - test-framework-quickcheck2 - test-framework-th - ]; - description = "Disk-based hash table"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "display" = callPackage ( { mkDerivation, @@ -196176,76 +110678,6 @@ self: { } ) { }; - "disposable" = callPackage ( - { - mkDerivation, - base, - ghcjs-base-stub, - stm, - }: - mkDerivation { - pname = "disposable"; - version = "1.0.0.0"; - sha256 = "0kzyzbhhjm005fi2n59j4in58kps4rciaza9pzi0qd2xnn9j5iqv"; - libraryHaskellDepends = [ - base - ghcjs-base-stub - stm - ]; - description = "Allows storing different resource-releasing actions together"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "dist-upload" = callPackage ( - { - mkDerivation, - base, - Cabal, - directory, - filepath, - process, - }: - mkDerivation { - pname = "dist-upload"; - version = "0.0.4"; - sha256 = "1i9g4jqmmjydcvi07878k6yb5kvxab6dlw3j6nkjdn4mcsc50s71"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - Cabal - directory - filepath - process - ]; - doHaddock = false; - description = "Generate/Upload cabal package to Hackage"; - license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - mainProgram = "dist-upload"; - broken = true; - } - ) { }; - - "distance" = callPackage ( - { mkDerivation, base }: - mkDerivation { - pname = "distance"; - version = "0.1.0.0"; - sha256 = "0n2arnkkpsc2rwlg0989aawgyqh1ccq1cz5dbn88z3pzaqfgnz00"; - revision = "1"; - editedCabalFile = "0iysmnl4p1fsb4zd0mmr6q7zc7w90jrwcxxm7vi38658x19r8qmq"; - libraryHaskellDepends = [ base ]; - description = "Useful distance datatype and functions"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "distance-of-time" = callPackage ( { mkDerivation, @@ -196366,84 +110798,6 @@ self: { } ) { }; - "distributed-fork-aws-lambda" = callPackage ( - { - mkDerivation, - aeson, - aeson-qq, - amazonka, - amazonka-cloudformation, - amazonka-core, - amazonka-lambda, - amazonka-s3, - amazonka-sqs, - async, - base, - base64-bytestring, - bytestring, - containers, - distributed-fork, - elf, - interpolate, - lens, - lens-aeson, - safe-exceptions, - SHA, - stm, - stratosphere, - tasty, - tasty-hunit, - text, - time, - unordered-containers, - zip-archive, - }: - mkDerivation { - pname = "distributed-fork-aws-lambda"; - version = "0.0.2.0"; - sha256 = "02lkr9w766v2392k7c0lh8r4g9iyw1hnb3z2pqablqjxpi514s4g"; - libraryHaskellDepends = [ - aeson - aeson-qq - amazonka - amazonka-cloudformation - amazonka-core - amazonka-lambda - amazonka-s3 - amazonka-sqs - async - base - base64-bytestring - bytestring - containers - distributed-fork - elf - interpolate - lens - lens-aeson - safe-exceptions - SHA - stm - stratosphere - text - time - unordered-containers - zip-archive - ]; - testHaskellDepends = [ - base - distributed-fork - tasty - tasty-hunit - text - ]; - description = "AWS Lambda backend for distributed-fork"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "distributed-process" = callPackage ( { mkDerivation, @@ -196540,58 +110894,6 @@ self: { } ) { }; - "distributed-process-azure" = callPackage ( - { - mkDerivation, - azure-service-api, - base, - binary, - bytestring, - certificate, - distributed-process, - distributed-static, - executable-path, - filepath, - libssh2, - mtl, - network-transport, - network-transport-tcp, - pureMD5, - rank1dynamic, - transformers, - unix, - }: - mkDerivation { - pname = "distributed-process-azure"; - version = "0.1.0"; - sha256 = "0dc0izlsxzcr5jyiad5yvgs5sp5b6dqwr6gxxkk99p7h1wpd4r2g"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - azure-service-api - base - binary - bytestring - certificate - distributed-process - distributed-static - executable-path - filepath - libssh2 - mtl - network-transport - network-transport-tcp - pureMD5 - rank1dynamic - transformers - unix - ]; - description = "Microsoft Azure backend for Cloud Haskell"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "distributed-process-client-server" = callPackage ( { mkDerivation, @@ -196783,155 +111085,6 @@ self: { } ) { }; - "distributed-process-fsm" = callPackage ( - { - mkDerivation, - ansi-terminal, - base, - binary, - bytestring, - containers, - data-accessor, - deepseq, - distributed-process, - distributed-process-client-server, - distributed-process-extras, - distributed-process-systest, - distributed-static, - exceptions, - fingertree, - ghc-prim, - hashable, - HUnit, - mtl, - network, - network-transport, - network-transport-tcp, - QuickCheck, - rematch, - stm, - test-framework, - test-framework-hunit, - test-framework-quickcheck2, - time, - transformers, - unordered-containers, - }: - mkDerivation { - pname = "distributed-process-fsm"; - version = "0.0.1"; - sha256 = "1fv0xc0gpdibvw2yjbl5sw1qa1a34awqkv6y4vwpvd1ms0jasff6"; - libraryHaskellDepends = [ - base - binary - containers - deepseq - distributed-process - distributed-process-client-server - distributed-process-extras - exceptions - mtl - stm - time - transformers - unordered-containers - ]; - testHaskellDepends = [ - ansi-terminal - base - binary - bytestring - containers - data-accessor - deepseq - distributed-process - distributed-process-extras - distributed-process-systest - distributed-static - fingertree - ghc-prim - hashable - HUnit - mtl - network - network-transport - network-transport-tcp - QuickCheck - rematch - stm - test-framework - test-framework-hunit - test-framework-quickcheck2 - time - transformers - unordered-containers - ]; - description = "The Cloud Haskell implementation of Erlang/OTP gen_statem"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "distributed-process-lifted" = callPackage ( - { - mkDerivation, - base, - binary, - deepseq, - distributed-process, - distributed-process-monad-control, - HUnit, - lifted-base, - monad-control, - mtl, - network, - network-transport, - network-transport-tcp, - rematch, - test-framework, - test-framework-hunit, - transformers, - transformers-base, - }: - mkDerivation { - pname = "distributed-process-lifted"; - version = "0.3.0.1"; - sha256 = "1074f1wblsmx89hkblds3npf2ha3p8ighdq0kjywb5522addbxrk"; - libraryHaskellDepends = [ - base - deepseq - distributed-process - distributed-process-monad-control - lifted-base - monad-control - mtl - network-transport - transformers - transformers-base - ]; - testHaskellDepends = [ - base - binary - distributed-process - HUnit - lifted-base - mtl - network - network-transport - network-transport-tcp - rematch - test-framework - test-framework-hunit - transformers - ]; - description = "monad-control style typeclass and transformer instances for Process monad"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "distributed-process-monad-control" = callPackage ( { mkDerivation, @@ -196957,222 +111110,6 @@ self: { } ) { }; - "distributed-process-p2p" = callPackage ( - { - mkDerivation, - base, - binary, - bytestring, - containers, - distributed-process, - mtl, - network, - network-transport, - network-transport-tcp, - }: - mkDerivation { - pname = "distributed-process-p2p"; - version = "0.1.5.0"; - sha256 = "0izlk0m0n0s8rdr31lfc05nbsqdwr2zfl2ai3j60r7hzq62i7rby"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - binary - bytestring - containers - distributed-process - mtl - network - network-transport - network-transport-tcp - ]; - executableHaskellDepends = [ - base - distributed-process - mtl - ]; - description = "Peer-to-peer node discovery for Cloud Haskell"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "jollycloud"; - broken = true; - } - ) { }; - - "distributed-process-platform" = callPackage ( - { - mkDerivation, - ansi-terminal, - base, - binary, - bytestring, - containers, - data-accessor, - deepseq, - distributed-process, - distributed-static, - fingertree, - ghc-prim, - hashable, - HUnit, - mtl, - network, - network-transport, - network-transport-tcp, - QuickCheck, - rematch, - stm, - test-framework, - test-framework-hunit, - test-framework-quickcheck2, - time, - transformers, - unordered-containers, - }: - mkDerivation { - pname = "distributed-process-platform"; - version = "0.1.0"; - sha256 = "0bxfynvqkzvah7gbg74yzwpma8j32bamnyysj6dk39da0v880abm"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - binary - containers - data-accessor - deepseq - distributed-process - fingertree - hashable - mtl - stm - time - transformers - unordered-containers - ]; - testHaskellDepends = [ - ansi-terminal - base - binary - bytestring - containers - data-accessor - deepseq - distributed-process - distributed-static - fingertree - ghc-prim - hashable - HUnit - mtl - network - network-transport - network-transport-tcp - QuickCheck - rematch - stm - test-framework - test-framework-hunit - test-framework-quickcheck2 - time - transformers - unordered-containers - ]; - description = "The Cloud Haskell Application Platform"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "distributed-process-registry" = callPackage ( - { - mkDerivation, - ansi-terminal, - base, - binary, - bytestring, - containers, - data-accessor, - deepseq, - distributed-process, - distributed-process-client-server, - distributed-process-extras, - distributed-process-supervisor, - distributed-process-tests, - distributed-static, - fingertree, - hashable, - HUnit, - mtl, - network, - network-transport, - network-transport-tcp, - rematch, - stm, - test-framework, - test-framework-hunit, - time, - transformers, - unordered-containers, - }: - mkDerivation { - pname = "distributed-process-registry"; - version = "0.1.0.2"; - sha256 = "1lkm11bak05yzs6yj80fk672zfps8crhf2fv6fzlqd43vv4nwbmf"; - libraryHaskellDepends = [ - base - binary - containers - data-accessor - deepseq - distributed-process - distributed-process-client-server - distributed-process-extras - distributed-process-supervisor - fingertree - hashable - mtl - stm - time - transformers - unordered-containers - ]; - testHaskellDepends = [ - ansi-terminal - base - binary - bytestring - containers - data-accessor - deepseq - distributed-process - distributed-process-extras - distributed-process-tests - distributed-static - fingertree - hashable - HUnit - mtl - network - network-transport - network-transport-tcp - rematch - stm - test-framework - test-framework-hunit - time - transformers - unordered-containers - ]; - description = "Cloud Haskell Extended Process Registry"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "distributed-process-simplelocalnet" = callPackage ( { mkDerivation, @@ -197310,103 +111247,6 @@ self: { } ) { }; - "distributed-process-task" = callPackage ( - { - mkDerivation, - ansi-terminal, - base, - binary, - bytestring, - containers, - data-accessor, - deepseq, - distributed-process, - distributed-process-async, - distributed-process-client-server, - distributed-process-extras, - distributed-process-tests, - distributed-static, - fingertree, - ghc-prim, - hashable, - HUnit, - mtl, - network, - network-transport, - network-transport-tcp, - QuickCheck, - rematch, - stm, - test-framework, - test-framework-hunit, - test-framework-quickcheck2, - time, - transformers, - unordered-containers, - }: - mkDerivation { - pname = "distributed-process-task"; - version = "0.1.2.2"; - sha256 = "08sws0nay3li3bwh6jzmfcz77ac8wq5j2iij8dkd31ci3gqcl9gc"; - revision = "1"; - editedCabalFile = "09lwjaq1wlh078dbx0j2jrrw4ggjmijh812mwpn3h3vgc54si098"; - libraryHaskellDepends = [ - base - binary - containers - data-accessor - deepseq - distributed-process - distributed-process-async - distributed-process-client-server - distributed-process-extras - fingertree - hashable - mtl - stm - time - transformers - unordered-containers - ]; - testHaskellDepends = [ - ansi-terminal - base - binary - bytestring - containers - data-accessor - deepseq - distributed-process - distributed-process-async - distributed-process-client-server - distributed-process-extras - distributed-process-tests - distributed-static - fingertree - ghc-prim - hashable - HUnit - mtl - network - network-transport - network-transport-tcp - QuickCheck - rematch - stm - test-framework - test-framework-hunit - test-framework-quickcheck2 - time - transformers - unordered-containers - ]; - description = "Task Framework for The Cloud Haskell Application Platform"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "distributed-process-tests" = callPackage ( { mkDerivation, @@ -197546,33 +111386,6 @@ self: { } ) { }; - "distribution" = callPackage ( - { - mkDerivation, - array, - base, - containers, - MonadRandom, - random, - }: - mkDerivation { - pname = "distribution"; - version = "1.1.1.0"; - sha256 = "1cc16020b8jifcqb2k61g9rv100i8iga7dfsi8jf502myvpgilpx"; - libraryHaskellDepends = [ - array - base - containers - MonadRandom - random - ]; - description = "Finite discrete probability distributions"; - license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "distribution-nixpkgs" = callPackage ( { mkDerivation, @@ -197681,38 +111494,6 @@ self: { } ) { }; - "distribution-plot" = callPackage ( - { - mkDerivation, - base, - Chart, - Chart-cairo, - colour, - containers, - data-default-class, - distribution, - lens, - }: - mkDerivation { - pname = "distribution-plot"; - version = "1.0.0.0"; - sha256 = "16k57dxg79x3i7j62ln063j4g4v4n5x80b12pajjrpxrmaffy79n"; - libraryHaskellDepends = [ - base - Chart - Chart-cairo - colour - containers - data-default-class - distribution - lens - ]; - description = "Easily plot distributions from the distribution package.."; - license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "distributive" = callPackage ( { mkDerivation, @@ -197837,33 +111618,6 @@ self: { } ) { }; - "ditto-lucid" = callPackage ( - { - mkDerivation, - base, - ditto, - lucid, - path-pieces, - text, - }: - mkDerivation { - pname = "ditto-lucid"; - version = "0.4"; - sha256 = "1if543wf7div8ww90ifdh75i2w99lhbfh8pfnzmd1yaw2j1m35ff"; - libraryHaskellDepends = [ - base - ditto - lucid - path-pieces - text - ]; - description = "Add support for using lucid with Ditto"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "diversity" = callPackage ( { mkDerivation, @@ -197913,156 +111667,6 @@ self: { } ) { }; - "dixi" = callPackage ( - { - mkDerivation, - acid-state, - aeson, - aeson-pretty, - attoparsec, - base, - base-orphans, - blaze-html, - blaze-markup, - bytestring, - composition-tree, - containers, - data-default, - directory, - either, - filepath, - heredoc, - lens, - network-uri, - pandoc, - pandoc-types, - patches-vector, - safecopy, - servant, - servant-blaze, - servant-docs, - servant-server, - shakespeare, - template-haskell, - text, - time, - time-locale-compat, - timezone-olson, - timezone-series, - transformers, - vector, - warp, - yaml, - }: - mkDerivation { - pname = "dixi"; - version = "0.6.9.2"; - sha256 = "1mxnvh42ji4dlsxp1982dzlzpvncc9nqah6i6gqkjbwcckshl69r"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - acid-state - aeson - base - base-orphans - blaze-html - blaze-markup - bytestring - composition-tree - containers - data-default - either - heredoc - lens - network-uri - pandoc - pandoc-types - patches-vector - safecopy - servant - servant-blaze - servant-server - shakespeare - template-haskell - text - time - time-locale-compat - timezone-olson - timezone-series - transformers - vector - ]; - executableHaskellDepends = [ - acid-state - base - base-orphans - directory - filepath - servant-server - text - warp - yaml - ]; - testHaskellDepends = [ - aeson - aeson-pretty - attoparsec - base - base-orphans - bytestring - lens - patches-vector - servant - servant-blaze - servant-docs - shakespeare - text - time - vector - ]; - description = "A wiki implemented with a firm theoretical foundation"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "dixi"; - } - ) { }; - - "djembe" = callPackage ( - { - mkDerivation, - base, - hmidi, - hspec, - lens, - mtl, - QuickCheck, - random, - }: - mkDerivation { - pname = "djembe"; - version = "0.1.1.2"; - sha256 = "0a3sxdblg2k1xaagvs28358vm3p8nzfa1l2dggqzm7f2z7qqjajj"; - libraryHaskellDepends = [ - base - hmidi - hspec - lens - mtl - QuickCheck - random - ]; - testHaskellDepends = [ - base - hspec - QuickCheck - ]; - description = "Hit drums with haskell"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "djinn" = callPackage ( { mkDerivation, @@ -198093,37 +111697,6 @@ self: { } ) { }; - "djinn-ghc" = callPackage ( - { - mkDerivation, - async, - base, - containers, - djinn-lib, - ghc, - mtl, - transformers, - }: - mkDerivation { - pname = "djinn-ghc"; - version = "0.0.2.3"; - sha256 = "190llfn8dvxkdan806nybn3d4psmnr1126zg8lmk8p5wd7nnm5fb"; - libraryHaskellDepends = [ - async - base - containers - djinn-lib - ghc - mtl - transformers - ]; - description = "Generate Haskell code from a type. Bridge from Djinn to GHC API."; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "djinn-lib" = callPackage ( { mkDerivation, @@ -198147,31 +111720,6 @@ self: { } ) { }; - "djinn-th" = callPackage ( - { - mkDerivation, - base, - containers, - logict, - template-haskell, - }: - mkDerivation { - pname = "djinn-th"; - version = "0.0.1"; - sha256 = "089b6z8hcv6q9y77zy8m96lc00r1ckzmff0mybp9l1akj7gwdpix"; - libraryHaskellDepends = [ - base - containers - logict - template-haskell - ]; - description = "Generate executable Haskell code from a type"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "djot" = callPackage ( { mkDerivation, @@ -198483,228 +112031,6 @@ self: { } ) { }; - "dmcc" = callPackage ( - { - mkDerivation, - aeson, - base, - binary, - bytestring, - case-insensitive, - classy-prelude, - configurator, - containers, - HsOpenSSL, - http-client, - io-streams, - lens, - monad-control, - monad-logger, - network, - openssl-streams, - random, - safe-exceptions, - stm, - text, - time, - transformers-base, - unix, - unliftio, - websockets, - xml-conduit, - xml-hamlet, - }: - mkDerivation { - pname = "dmcc"; - version = "1.1.0.2"; - sha256 = "0xm5lxnaqlrsgxvcr4xhf85angv5is1rhy992frkiz75w74adzd7"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson - base - binary - bytestring - case-insensitive - classy-prelude - containers - HsOpenSSL - http-client - io-streams - lens - monad-control - monad-logger - network - openssl-streams - safe-exceptions - stm - text - time - transformers-base - unliftio - xml-conduit - xml-hamlet - ]; - executableHaskellDepends = [ - aeson - base - bytestring - classy-prelude - configurator - containers - monad-control - monad-logger - random - stm - text - unix - unliftio - websockets - ]; - description = "AVAYA DMCC API bindings and WebSockets server for AVAYA"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "dmcc-ws"; - broken = true; - } - ) { }; - - "dmenu" = callPackage ( - { - mkDerivation, - base, - containers, - directory, - lens, - mtl, - process, - transformers, - }: - mkDerivation { - pname = "dmenu"; - version = "0.3.1.1"; - sha256 = "0d76pdddsp60ip1sfx0qm0jbnf4zyiwjv6yxqv2maqsds76pyi11"; - libraryHaskellDepends = [ - base - containers - directory - lens - mtl - process - transformers - ]; - description = "Complete bindings to the dmenu and dmenu2 command line tools"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "dmenu-pkill" = callPackage ( - { - mkDerivation, - base, - containers, - directory, - dmenu, - lens, - mtl, - process, - transformers, - }: - mkDerivation { - pname = "dmenu-pkill"; - version = "0.1.0.1"; - sha256 = "0y5vkrfwrvnwvfmd340w92ngy9iwyf8kl6gmvb15dpb7z8bi6vz3"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - containers - directory - dmenu - lens - mtl - process - transformers - ]; - description = "dmenu script for killing applications. Sortable by process id or CPU/MEM usage."; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "dmenu-pkill"; - } - ) { }; - - "dmenu-pmount" = callPackage ( - { - mkDerivation, - base, - containers, - directory, - dmenu, - lens, - mtl, - process, - transformers, - }: - mkDerivation { - pname = "dmenu-pmount"; - version = "0.1.0.1"; - sha256 = "0hv6gyjhnxwqyfd9z50na51fdaxxbj2cc1xraqigdi3b03mdpjy5"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - containers - directory - dmenu - lens - mtl - process - transformers - ]; - description = "Mounting and unmounting linux devices as user with dmenu and pmount"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "dmenu-pmount"; - } - ) { }; - - "dmenu-search" = callPackage ( - { - mkDerivation, - base, - containers, - directory, - dmenu, - lens, - mtl, - process, - transformers, - }: - mkDerivation { - pname = "dmenu-search"; - version = "0.1.0.1"; - sha256 = "1j9yngj78g1i9g8b8zd3bsa4772w2jcqskqd9znv7fk4jzl9zcla"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - containers - directory - dmenu - lens - mtl - process - transformers - ]; - description = "dmenu script for searching the web with customizable search engines"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "dmenu-search"; - } - ) { }; - "dnf-repo" = callPackage ( { mkDerivation, @@ -198846,92 +112172,6 @@ self: { } ) { }; - "dnscache" = callPackage ( - { - mkDerivation, - base, - bytestring, - containers, - contstuff, - dns, - iproute, - time, - }: - mkDerivation { - pname = "dnscache"; - version = "1.1.0"; - sha256 = "0bwpfw7fsis0sqnqrgw13ifla17mcm2xk9b9jagjjqmim66d6zxb"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - bytestring - containers - contstuff - dns - iproute - time - ]; - executableHaskellDepends = [ base ]; - description = "Caching DNS resolver library and mass DNS resolver utility"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "massdns"; - broken = true; - } - ) { }; - - "dnsrbl" = callPackage ( - { - mkDerivation, - base, - containers, - hsdns, - HUnit, - network, - }: - mkDerivation { - pname = "dnsrbl"; - version = "0.0.3"; - sha256 = "07xq52aqqmzq1f68m8spr7fyax0cqnpv9mh5m4x3klxm0iznv9xm"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base - containers - hsdns - HUnit - network - ]; - description = "Asynchronous DNS RBL lookup"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "dnssd" = callPackage ( - { - mkDerivation, - base, - dns_sd, - transformers, - }: - mkDerivation { - pname = "dnssd"; - version = "0.1.0.0"; - sha256 = "0gfyyr1wcxni0r0r9df6lkmv6gvi0qvwclwi9majzg10pas6dk2n"; - libraryHaskellDepends = [ - base - transformers - ]; - librarySystemDepends = [ dns_sd ]; - description = "DNS service discovery bindings"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { dns_sd = null; }; - "do-list" = callPackage ( { mkDerivation, @@ -198984,34 +112224,6 @@ self: { } ) { }; - "do-notation-dsl" = callPackage ( - { - mkDerivation, - base, - containers, - doctest, - doctest-discover, - temporary, - }: - mkDerivation { - pname = "do-notation-dsl"; - version = "0.1.0.3"; - sha256 = "1q81hl8z4p2mqzijg69znf5cycv27phrrdd9f934brsv8fyvsbzx"; - libraryHaskellDepends = [ base ]; - testHaskellDepends = [ - base - containers - doctest - doctest-discover - temporary - ]; - description = "An alternative to monads"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "do-spaces" = callPackage ( { mkDerivation, @@ -199101,34 +112313,6 @@ self: { } ) { }; - "dobutok" = callPackage ( - { mkDerivation, base }: - mkDerivation { - pname = "dobutok"; - version = "0.1.0.2"; - sha256 = "06wi9p4gyxqiwaih1hg5p4wypi77si5y8c1akqsvh3ssr0sds74r"; - libraryHaskellDepends = [ base ]; - description = "Creates the time intervals for CLI changing messages on the screen"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "dobutokO" = callPackage ( - { mkDerivation, base }: - mkDerivation { - pname = "dobutokO"; - version = "0.3.2.0"; - sha256 = "1qps4zvk3qn2d93778cs2b6kf1k9fjgw5248hyx9v0n05crfw2i8"; - libraryHaskellDepends = [ base ]; - description = "The library is intended to print updated messages on the terminal screen"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "dobutokO-effects" = callPackage ( { mkDerivation, @@ -199160,102 +112344,6 @@ self: { } ) { }; - "dobutokO-poetry" = callPackage ( - { - mkDerivation, - base, - dobutokO-poetry-general, - mmsyn3, - mmsyn6ukr, - mmsyn7s, - uniqueness-periods, - vector, - }: - mkDerivation { - pname = "dobutokO-poetry"; - version = "0.17.0.0"; - sha256 = "0swngd363lgyya80jvsyqj5a3mp8lkiirnbvy6kxdrharcqj2ahd"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - dobutokO-poetry-general - mmsyn3 - mmsyn6ukr - mmsyn7s - uniqueness-periods - vector - ]; - executableHaskellDepends = [ - base - dobutokO-poetry-general - mmsyn3 - mmsyn6ukr - mmsyn7s - uniqueness-periods - vector - ]; - description = "Helps to order the 7 or less Ukrainian words to obtain somewhat suitable for poetry or music text"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - mainProgram = "dobutokO-poetry"; - } - ) { }; - - "dobutokO-poetry-general" = callPackage ( - { - mkDerivation, - base, - mmsyn3, - mmsyn6ukr, - mmsyn7s, - vector, - }: - mkDerivation { - pname = "dobutokO-poetry-general"; - version = "0.1.0.0"; - sha256 = "0gdhihblshxq70av2x8ni7vywdfic750kwq7qsbhagrqr71fvqb1"; - libraryHaskellDepends = [ - base - mmsyn3 - mmsyn6ukr - mmsyn7s - vector - ]; - description = "Helps to order the 7 or less words (first of all the Ukrainian ones) to obtain somewhat suitable for poetry or music text"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "dobutokO-poetry-general-languages" = callPackage ( - { - mkDerivation, - base, - dobutokO-poetry-general, - mmsyn3, - mmsyn6ukr, - uniqueness-periods-general, - vector, - }: - mkDerivation { - pname = "dobutokO-poetry-general-languages"; - version = "0.2.0.0"; - sha256 = "0gw89nagj1adb70k1li1p1syzgmc6g4lb0yfnjr9caiddq9mi9x5"; - libraryHaskellDepends = [ - base - dobutokO-poetry-general - mmsyn3 - mmsyn6ukr - uniqueness-periods-general - vector - ]; - description = "Helps to order the 7 or less words to obtain somewhat suitable for poetry or music text"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "dobutokO2" = callPackage ( { mkDerivation, @@ -199312,232 +112400,6 @@ self: { } ) { }; - "dobutokO3" = callPackage ( - { - mkDerivation, - base, - bytestring, - directory, - dobutokO2, - mmsyn2, - mmsyn3, - mmsyn6ukr, - mmsyn7l, - mmsyn7s, - mmsyn7ukr, - process, - vector, - }: - mkDerivation { - pname = "dobutokO3"; - version = "0.3.0.0"; - sha256 = "1dbax6j2sdn6cd6crskwr0r90ymxmjk596a9ak8gvlkrwpk1cbdm"; - libraryHaskellDepends = [ - base - bytestring - directory - dobutokO2 - mmsyn2 - mmsyn3 - mmsyn6ukr - mmsyn7l - mmsyn7s - mmsyn7ukr - process - vector - ]; - description = "Helps to create more complex experimental music from a file (especially timbre)"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "dobutokO4" = callPackage ( - { - mkDerivation, - base, - directory, - dobutokO2, - mmsyn3, - mmsyn7l, - process, - vector, - vector-doublezip, - }: - mkDerivation { - pname = "dobutokO4"; - version = "0.8.0.0"; - sha256 = "073kjv1m3qcrfyk8j8zs5hrc8x0bkyqnw6pa72afhkxq08dzj9y9"; - libraryHaskellDepends = [ - base - directory - dobutokO2 - mmsyn3 - mmsyn7l - process - vector - vector-doublezip - ]; - description = "Helps to create experimental music. Uses SoX inside."; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "doc-review" = callPackage ( - { - mkDerivation, - base, - base64-bytestring, - binary, - bytestring, - containers, - directory, - feed, - filepath, - haskell98, - heist, - hexpat, - json, - MonadCatchIO-transformers, - MonadRandom, - monads-fd, - network, - old-locale, - snap-core, - snap-server, - sqlite, - tagchup, - text, - time, - transformers, - unix, - xhtml-combinators, - xml, - xml-basic, - }: - mkDerivation { - pname = "doc-review"; - version = "0.7.1"; - sha256 = "0009gpm6hgjr78bsp0cd4skvhbms83j4j9axf6zns7pnfqvc6inf"; - isLibrary = false; - isExecutable = true; - enableSeparateDataOutput = true; - executableHaskellDepends = [ - base - base64-bytestring - binary - bytestring - containers - directory - feed - filepath - haskell98 - heist - hexpat - json - MonadCatchIO-transformers - MonadRandom - monads-fd - network - old-locale - snap-core - snap-server - sqlite - tagchup - text - time - transformers - unix - xhtml-combinators - xml - xml-basic - ]; - description = "Document review Web application, like http://book.realworldhaskell.org/"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "doc-review"; - } - ) { }; - - "doccheck" = callPackage ( - { - mkDerivation, - attoparsec, - base, - directory, - directory-tree, - filepath, - ghc, - ghc-paths, - text, - }: - mkDerivation { - pname = "doccheck"; - version = "0.1.0.0"; - sha256 = "055jns09s50iyzgk9m9d7gbxvnmgd4wxfb5axsxra8qnlfq331lb"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - attoparsec - base - directory - directory-tree - filepath - ghc - ghc-paths - text - ]; - description = "Checks Haddock comments for pitfalls and version changes"; - license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - mainProgram = "doccheck"; - broken = true; - } - ) { }; - - "docidx" = callPackage ( - { - mkDerivation, - base, - Cabal, - containers, - directory, - filepath, - html, - MissingH, - mtl, - old-locale, - tagsoup, - time, - }: - mkDerivation { - pname = "docidx"; - version = "1.1.0"; - sha256 = "0020pi4m0n6cvb6hdzhai5f9jidwc8dy6qq3pjs6g4dwql9igsb8"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - Cabal - containers - directory - filepath - html - MissingH - mtl - old-locale - tagsoup - time - ]; - description = "Generate an HTML index of installed Haskell packages and their documentation"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "docidx"; - broken = true; - } - ) { }; - "docker" = callPackage ( { mkDerivation, @@ -199658,163 +112520,6 @@ self: { } ) { }; - "docker-build-cacher" = callPackage ( - { - mkDerivation, - aeson, - base, - containers, - foldl, - language-docker, - system-filepath, - text, - turtle, - }: - mkDerivation { - pname = "docker-build-cacher"; - version = "2.1.1"; - sha256 = "0n8x0mcb0rznazbwf9yrnl4mha6zxvpn9kqwna7xd9rxqasqzv0n"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson - base - containers - foldl - language-docker - system-filepath - text - turtle - ]; - executableHaskellDepends = [ - aeson - base - containers - foldl - language-docker - system-filepath - text - turtle - ]; - description = "Builds a docker image and caches all of its intermediate stages"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "docker-build-cacher"; - broken = true; - } - ) { }; - - "dockercook" = callPackage ( - { - mkDerivation, - aeson, - aeson-pretty, - attoparsec, - base, - base16-bytestring, - bytestring, - conduit, - conduit-combinators, - conduit-extra, - containers, - cryptohash, - directory, - filepath, - hashable, - hslogger, - HTF, - http-client, - lens, - monad-logger, - mtl, - optparse-applicative, - persistent-sqlite, - persistent-template, - process, - regex-compat, - resourcet, - retry, - stm, - streaming-commons, - system-filepath, - temporary, - text, - time, - transformers, - unix, - unordered-containers, - vector, - wreq, - }: - mkDerivation { - pname = "dockercook"; - version = "0.5.0.3"; - sha256 = "0cp0rbrvc06ikswyzc5c042rrsdk92n7fgn5cx3zps1m2n94a7ms"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson - attoparsec - base - base16-bytestring - bytestring - conduit - conduit-combinators - conduit-extra - containers - cryptohash - directory - filepath - hashable - hslogger - http-client - lens - monad-logger - mtl - persistent-sqlite - persistent-template - process - regex-compat - resourcet - retry - stm - streaming-commons - system-filepath - temporary - text - time - transformers - unix - unordered-containers - vector - wreq - ]; - executableHaskellDepends = [ - aeson-pretty - base - bytestring - directory - filepath - hslogger - optparse-applicative - process - text - unordered-containers - ]; - testHaskellDepends = [ - base - HTF - text - vector - ]; - description = "A build tool for multiple docker image layers"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - mainProgram = "dockercook"; - broken = true; - } - ) { }; - "dockerfile" = callPackage ( { mkDerivation, @@ -200258,53 +112963,6 @@ self: { } ) { }; - "doctest-discover-configurator" = callPackage ( - { - mkDerivation, - base, - bytestring, - configurator, - directory, - doctest, - filepath, - }: - mkDerivation { - pname = "doctest-discover-configurator"; - version = "0.1.0.6"; - sha256 = "1n2x8rp67ddifyahxcny0k7r514qa82lbxg13z7yg2kvmrfip7r8"; - revision = "1"; - editedCabalFile = "0i8anaxkzw4j9gygcj6vvxxn7mcrzqpysc07hm7vmb0hzw02mxkr"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - bytestring - configurator - directory - doctest - filepath - ]; - executableHaskellDepends = [ - base - bytestring - configurator - directory - doctest - filepath - ]; - testHaskellDepends = [ - base - doctest - ]; - doHaddock = false; - description = "Easy way to run doctests via cabal (no aeson dependency, uses configurator instead)"; - license = lib.licenses.publicDomain; - hydraPlatforms = lib.platforms.none; - mainProgram = "doctest-discover"; - broken = true; - } - ) { }; - "doctest-driver-gen" = callPackage ( { mkDerivation, @@ -200490,36 +113148,6 @@ self: { } ) { }; - "doctest-prop" = callPackage ( - { - mkDerivation, - base, - doctest, - HUnit, - QuickCheck, - }: - mkDerivation { - pname = "doctest-prop"; - version = "0.2.0.1"; - sha256 = "1amfsq53s0bgal77g7hbsvbn1vlqh1jc3qvcjwv0achc6z65dc2a"; - libraryHaskellDepends = [ - base - HUnit - QuickCheck - ]; - testHaskellDepends = [ - base - doctest - HUnit - QuickCheck - ]; - description = "Allow QuickCheck-style property testing within doctest"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "docusign-base" = callPackage ( { mkDerivation, @@ -200629,200 +113257,6 @@ self: { } ) { }; - "docusign-example" = callPackage ( - { - mkDerivation, - base, - bytestring, - docusign-base, - docusign-client, - exceptions, - filepath, - optparse-generic, - text, - uuid, - }: - mkDerivation { - pname = "docusign-example"; - version = "0.1.0.0"; - sha256 = "0fhyzmgdjq5rds0p0gifwg6pfsq17yyhj4nwvi6zpgzmww4vya21"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - bytestring - docusign-base - docusign-client - exceptions - filepath - optparse-generic - text - uuid - ]; - description = "DocuSign examples"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "docusign-example"; - broken = true; - } - ) { }; - - "docvim" = callPackage ( - { - mkDerivation, - base, - bytestring, - containers, - deepseq, - directory, - dlist, - filepath, - hlint, - lens, - mtl, - optparse-applicative, - parsec, - pretty-show, - process, - split, - tasty, - tasty-golden, - tasty-hunit, - temporary, - }: - mkDerivation { - pname = "docvim"; - version = "0.3.2.1"; - sha256 = "0kq7jgj533118a2404yc6fk7q8g9s2z36qkr6pdgwb6syh2r0jzx"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - containers - directory - dlist - filepath - lens - mtl - optparse-applicative - parsec - pretty-show - split - ]; - executableHaskellDepends = [ base ]; - testHaskellDepends = [ - base - bytestring - containers - deepseq - directory - dlist - filepath - hlint - lens - mtl - parsec - pretty-show - process - split - tasty - tasty-golden - tasty-hunit - temporary - ]; - description = "Documentation generator for Vim plug-ins"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - mainProgram = "docvim"; - broken = true; - } - ) { }; - - "doi" = callPackage ( - { - mkDerivation, - async, - base, - bibtex, - directory, - filepath, - haskeline, - MissingH, - optparse-applicative, - parsec, - process, - regex-base, - regex-compat, - regex-tdfa, - safe, - strict, - tagsoup, - temporary, - time, - transformers, - urlencoded, - utility-ht, - }: - mkDerivation { - pname = "doi"; - version = "0.0.2"; - sha256 = "19arn8diacykcq7y7c66x35w7106c9akvmznhyi7g45lyxdplb10"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - async - base - bibtex - directory - filepath - haskeline - MissingH - optparse-applicative - parsec - process - regex-base - regex-compat - regex-tdfa - safe - strict - tagsoup - temporary - time - transformers - urlencoded - utility-ht - ]; - executableHaskellDepends = [ - async - base - bibtex - directory - filepath - haskeline - MissingH - optparse-applicative - parsec - process - regex-base - regex-compat - regex-tdfa - safe - strict - tagsoup - temporary - time - transformers - urlencoded - utility-ht - ]; - description = "Automatic Bibtex and fulltext of scientific articles"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - mainProgram = "doi"; - broken = true; - } - ) { }; - "dojang" = callPackage ( { mkDerivation, @@ -201004,30 +113438,6 @@ self: { } ) { }; - "dom-events" = callPackage ( - { - mkDerivation, - base, - text, - unordered-containers, - }: - mkDerivation { - pname = "dom-events"; - version = "0.0.0.4"; - sha256 = "1yyhinrv6pm275fi9kg8hdi3vzv33i8nm785fih402fw0a9g8r35"; - libraryHaskellDepends = [ - base - text - unordered-containers - ]; - testHaskellDepends = [ base ]; - description = "DOM Events expressed as Haskell types"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "dom-lt" = callPackage ( { mkDerivation, @@ -201117,55 +113527,6 @@ self: { } ) { }; - "dom-selector" = callPackage ( - { - mkDerivation, - base, - blaze-html, - containers, - html-conduit, - parsec, - QuickCheck, - template-haskell, - text, - th-lift, - xml-conduit, - }: - mkDerivation { - pname = "dom-selector"; - version = "0.2.0.1"; - sha256 = "1nm3r79k4is5lh5fna4v710vhb0n5hpp3d21r0w6hmqizhdrkb22"; - libraryHaskellDepends = [ - base - blaze-html - containers - html-conduit - parsec - QuickCheck - template-haskell - text - th-lift - xml-conduit - ]; - testHaskellDepends = [ - base - blaze-html - containers - html-conduit - parsec - QuickCheck - template-haskell - text - th-lift - xml-conduit - ]; - description = "DOM traversal by CSS selectors for xml-conduit package"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "domain" = callPackage ( { mkDerivation, @@ -201535,118 +113896,39 @@ self: { sha256 = "177xb2kpq14g3dhs56lzjknx9vkzgzc4wxmlh9rqzbybqdn4ppx7"; libraryHaskellDepends = [ aeson - async - base - bytestring - containers - deepseq - exceptions - generic-lens - http-types - microlens - mtl - postgresql-simple - random - streamly - template-haskell - time - transformers - unliftio - unliftio-pool - unordered-containers - uuid - vector - ]; - testHaskellDepends = [ - aeson - base - hspec - postgresql-simple - streamly - time - unliftio-pool - uuid - ]; - description = "Batteries included event sourcing and CQRS"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "dominion" = callPackage ( - { - mkDerivation, - base, - containers, - hspec, - lens, - mtl, - random, - }: - mkDerivation { - pname = "dominion"; - version = "0.1.1.0"; - sha256 = "04mi8vkkx69ksmigsdv0gnv83vhhqchk0zzhlc4n8qzqr9h1385y"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - containers - lens - mtl - random - ]; - executableHaskellDepends = [ - base - containers - lens - mtl - random - ]; - testHaskellDepends = [ - base - containers - hspec - lens - mtl - random - ]; - description = "A simulator for the board game Dominion"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "dominion"; - broken = true; - } - ) { }; - - "domplate" = callPackage ( - { - mkDerivation, - base, - bytestring, - containers, - tagsoup, - text, - unordered-containers, - vector, - yaml, - }: - mkDerivation { - pname = "domplate"; - version = "0.1.0.1"; - sha256 = "1njzjxz7mymjfismmv8rxkqb24m0gindbsiszbjgy1wm1lwrspb4"; - libraryHaskellDepends = [ + async base bytestring containers - tagsoup - text + deepseq + exceptions + generic-lens + http-types + microlens + mtl + postgresql-simple + random + streamly + template-haskell + time + transformers + unliftio + unliftio-pool unordered-containers + uuid vector - yaml ]; - description = "A simple templating library using HTML5 as its template language"; + testHaskellDepends = [ + aeson + base + hspec + postgresql-simple + streamly + time + unliftio-pool + uuid + ]; + description = "Batteries included event sourcing and CQRS"; license = lib.licenses.bsd3; hydraPlatforms = lib.platforms.none; broken = true; @@ -201818,62 +114100,6 @@ self: { } ) { }; - "dot-linker" = callPackage ( - { - mkDerivation, - attoparsec, - base, - bytestring, - HUnit, - system-filepath, - tasty, - tasty-hunit, - text, - turtle, - unix, - unordered-containers, - }: - mkDerivation { - pname = "dot-linker"; - version = "0.1.0.0"; - sha256 = "1zlpkw8c19ncskp4pmb47lh948fmkl7fn9nyzqliy8xmsc67b8d1"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - attoparsec - base - bytestring - system-filepath - text - turtle - unix - unordered-containers - ]; - executableHaskellDepends = [ - attoparsec - base - text - turtle - unordered-containers - ]; - testHaskellDepends = [ - attoparsec - base - bytestring - HUnit - tasty - tasty-hunit - turtle - unordered-containers - ]; - description = "Initial project template from stack"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "dot-linker"; - broken = true; - } - ) { }; - "dot2graphml" = callPackage ( { mkDerivation, @@ -201984,86 +114210,6 @@ self: { } ) { }; - "dotfs" = callPackage ( - { - mkDerivation, - base, - bytestring, - containers, - directory, - filepath, - haskell-src, - HFuse, - HUnit, - parsec, - process, - QuickCheck, - template-haskell, - test-framework, - test-framework-hunit, - test-framework-quickcheck2, - transformers, - unix, - }: - mkDerivation { - pname = "dotfs"; - version = "0.1.1.3"; - sha256 = "0hj21rvjbn8hmb3kf4225ir57j75d8jyzhw2rw8kmjxw3w62l49f"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - bytestring - containers - directory - filepath - haskell-src - HFuse - HUnit - parsec - process - QuickCheck - template-haskell - test-framework - test-framework-hunit - test-framework-quickcheck2 - transformers - unix - ]; - executableHaskellDepends = [ - base - bytestring - containers - directory - filepath - HFuse - parsec - process - transformers - unix - ]; - testHaskellDepends = [ - base - containers - haskell-src - HUnit - parsec - QuickCheck - template-haskell - test-framework - test-framework-hunit - test-framework-quickcheck2 - transformers - ]; - doHaddock = false; - description = "Filesystem to manage and parse dotfiles"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "dotfs"; - broken = true; - } - ) { }; - "dotgen" = callPackage ( { mkDerivation, @@ -202278,20 +114424,6 @@ self: { } ) { }; - "doublify-toolkit" = callPackage ( - { mkDerivation, base }: - mkDerivation { - pname = "doublify-toolkit"; - version = "0.0.1"; - sha256 = "0libb7w3a8ffcr08x6s3xqzhbkxb8n111f53g638jr0xpz3r98yv"; - libraryHaskellDepends = [ base ]; - description = "Doublify API toolkit for Haskell"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "dove" = callPackage ( { mkDerivation, @@ -202483,40 +114615,6 @@ self: { } ) { }; - "dow" = callPackage ( - { - mkDerivation, - array, - base, - directory, - elerea, - GLFW, - mersenne-random, - OpenGL, - }: - mkDerivation { - pname = "dow"; - version = "0.2.6"; - sha256 = "0capas1h8d8y8j5sd0zbzayf18jknh1w6q8jcwrx3dqgfd316dqp"; - isLibrary = false; - isExecutable = true; - enableSeparateDataOutput = true; - executableHaskellDepends = [ - array - base - directory - elerea - GLFW - mersenne-random - OpenGL - ]; - description = "Dungeons of Wor"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "dow"; - } - ) { }; - "downhill" = callPackage ( { mkDerivation, @@ -202617,293 +114715,6 @@ self: { } ) { }; - "download-media-content" = callPackage ( - { - mkDerivation, - base, - bytestring, - filepath, - http-enumerator, - tagsoup, - text, - }: - mkDerivation { - pname = "download-media-content"; - version = "0.0.0.1"; - sha256 = "1bj4310j3s26xd4ic6hm284dlk91npwilfbwvrk1zz8fas6yr6z6"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - bytestring - filepath - http-enumerator - tagsoup - text - ]; - description = "Simple tool to download images from RSS feeds (e.g. Flickr, Picasa)"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "download-media-content"; - } - ) { }; - - "downloader" = callPackage ( - { - mkDerivation, - base, - directory, - filepath, - network-uri, - process, - safe, - }: - mkDerivation { - pname = "downloader"; - version = "0.1.0.1"; - sha256 = "1mjsdnghlbi1c0pzhrng1dcvs1syisxrv7ygg5267f9hmcwk5zgn"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base - directory - filepath - network-uri - process - safe - ]; - description = "A small, low-dependency library that provides turn-key file download over HTTP and HTTPS"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "dozenal" = callPackage ( - { mkDerivation, base }: - mkDerivation { - pname = "dozenal"; - version = "0.1.0.0"; - sha256 = "0sqvxyj3aybqvjlrz2a93lnp1vbjiqikysm575wizri2rd3vfj1l"; - libraryHaskellDepends = [ base ]; - description = "A Haskell library for using Dozenal (Duodecimal - Base 12) numbers"; - license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "dozens" = callPackage ( - { - mkDerivation, - aeson, - base, - bytestring, - data-default-class, - http-client, - http-types, - reflection, - scientific, - text, - transformers, - }: - mkDerivation { - pname = "dozens"; - version = "0.1.1"; - sha256 = "1hvsdc69ag4x8rp2pzr3cxjfbl4fh9bdj4bwlkfvpr755qdi45ky"; - revision = "1"; - editedCabalFile = "0llfm3cf2jkqz535zlj4kwv6rfm6cprbhp5ac4r7bv76gdyjkrh8"; - libraryHaskellDepends = [ - aeson - base - bytestring - data-default-class - http-client - http-types - reflection - scientific - text - transformers - ]; - description = "dozens api library"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "dph-base" = callPackage ( - { - mkDerivation, - array, - base, - ghc-prim, - pretty, - random, - vector, - }: - mkDerivation { - pname = "dph-base"; - version = "0.7.0.1"; - sha256 = "19rc0h94lgxyndaw41wgnc0prwffl780i6nqsn9b7byvgy97f15y"; - libraryHaskellDepends = [ - array - base - ghc-prim - pretty - random - vector - ]; - description = "Data Parallel Haskell common config and debugging functions"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "dph-examples" = callPackage ( - { - mkDerivation, - base, - containers, - dph-base, - dph-lifted-vseg, - dph-prim-par, - HUnit, - old-time, - parseargs, - random, - vector, - }: - mkDerivation { - pname = "dph-examples"; - version = "0.7.0.5"; - sha256 = "1qbj8hsgpmcx95qsqycb6cnfb5vfk9h3w1jyq4k02hf9g7gyvckz"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - containers - dph-base - dph-lifted-vseg - dph-prim-par - HUnit - old-time - parseargs - random - vector - ]; - description = "Data Parallel Haskell example programs"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "dph-lifted-base" = callPackage ( - { - mkDerivation, - array, - base, - containers, - dph-base, - dph-prim-par, - ghc, - pretty, - random, - template-haskell, - vector, - }: - mkDerivation { - pname = "dph-lifted-base"; - version = "0.7.0.1"; - sha256 = "1gp3l9bgpmly3h74hyfxi3yfm8v4r918800ca64q1b16019hk20k"; - libraryHaskellDepends = [ - array - base - containers - dph-base - dph-prim-par - ghc - pretty - random - template-haskell - vector - ]; - description = "Data Parallel Haskell common definitions used by other dph-lifted packages"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "dph-lifted-copy" = callPackage ( - { - mkDerivation, - array, - base, - dph-base, - dph-prim-par, - ghc, - random, - template-haskell, - vector, - }: - mkDerivation { - pname = "dph-lifted-copy"; - version = "0.7.0.1"; - sha256 = "11aaiarvrm5463b77r2jimw78pr39g8apjk7bim3d8rl3ija775q"; - libraryHaskellDepends = [ - array - base - dph-base - dph-prim-par - ghc - random - template-haskell - vector - ]; - description = "Data Parallel Haskell lifted array combinators. (deprecated version)"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "dph-lifted-vseg" = callPackage ( - { - mkDerivation, - array, - base, - containers, - dph-base, - dph-lifted-base, - dph-prim-par, - ghc, - pretty, - random, - template-haskell, - vector, - }: - mkDerivation { - pname = "dph-lifted-vseg"; - version = "0.7.0.1"; - sha256 = "0vkq7kyd65znzqxh32ql2lrm30vg1wy85bnjg8g08s9q9j3j6a45"; - libraryHaskellDepends = [ - array - base - containers - dph-base - dph-lifted-base - dph-prim-par - ghc - pretty - random - template-haskell - vector - ]; - description = "Data Parallel Haskell lifted array combinators"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "dph-par" = callPackage ( { mkDerivation }: mkDerivation { @@ -202916,90 +114727,6 @@ self: { } ) { }; - "dph-prim-interface" = callPackage ( - { - mkDerivation, - base, - dph-base, - random, - vector, - }: - mkDerivation { - pname = "dph-prim-interface"; - version = "0.7.0.1"; - sha256 = "17m03gylc61d7mx26rz70kwmi014rv1g14683vraa1b77pci5h8j"; - libraryHaskellDepends = [ - base - dph-base - random - vector - ]; - description = "Data Parallel Haskell segmented arrays. (abstract interface)"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "dph-prim-par" = callPackage ( - { - mkDerivation, - base, - dph-base, - dph-prim-interface, - dph-prim-seq, - old-time, - random, - vector, - }: - mkDerivation { - pname = "dph-prim-par"; - version = "0.7.0.1"; - sha256 = "13x7ribvcm965pnzissj0cwk17r5f0ag1zs7w31za17kal3r91pp"; - libraryHaskellDepends = [ - base - dph-base - dph-prim-interface - dph-prim-seq - old-time - random - vector - ]; - description = "Data Parallel Haskell segmented arrays. (production version)"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "dph-prim-seq" = callPackage ( - { - mkDerivation, - base, - dph-base, - dph-prim-interface, - ghc-prim, - primitive, - random, - vector, - }: - mkDerivation { - pname = "dph-prim-seq"; - version = "0.7.0.1"; - sha256 = "1fz95qzvk2f7zg8am73vdbk14ms420vfvapz79piip0s4bv8cnqr"; - libraryHaskellDepends = [ - base - dph-base - dph-prim-interface - ghc-prim - primitive - random - vector - ]; - description = "Data Parallel Haskell segmented arrays. (sequential implementation)"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "dph-seq" = callPackage ( { mkDerivation }: mkDerivation { @@ -203012,76 +114739,6 @@ self: { } ) { }; - "dpkg" = - callPackage - ( - { - mkDerivation, - base, - bindings-DSL, - bytestring, - dpkg, - HUnit, - libdpkg, - monad-loops, - }: - mkDerivation { - pname = "dpkg"; - version = "0.0.3"; - sha256 = "1bqrj1vqqjnv3qcs1s7lbwyzry95fzxrhi6340zqv0ibvyqnaz5k"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base - bindings-DSL - bytestring - monad-loops - ]; - libraryPkgconfigDepends = [ libdpkg ]; - testHaskellDepends = [ - base - bytestring - HUnit - ]; - testSystemDepends = [ dpkg ]; - testPkgconfigDepends = [ libdpkg ]; - description = "libdpkg bindings"; - license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) - { - inherit (pkgs) dpkg; - libdpkg = null; - }; - - "dpor" = callPackage ( - { - mkDerivation, - base, - containers, - deepseq, - random, - semigroups, - }: - mkDerivation { - pname = "dpor"; - version = "0.2.0.0"; - sha256 = "1qn839lhnjsx2swq0ca8l2qr0szypdb2dsbfi1412m25p11cryvf"; - libraryHaskellDepends = [ - base - containers - deepseq - random - semigroups - ]; - description = "A generic implementation of dynamic partial-order reduction (DPOR) for testing arbitrary models of concurrency"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "dprox" = callPackage ( { mkDerivation, @@ -203192,75 +114849,6 @@ self: { } ) { }; - "drClickOn" = callPackage ( - { - mkDerivation, - base, - containers, - }: - mkDerivation { - pname = "drClickOn"; - version = "0.1"; - sha256 = "10rcmqa2x5xlh5pqfsg9dagf2lmrwc2bby3zklzv3x4s3yqg2ar3"; - libraryHaskellDepends = [ - base - containers - ]; - description = "Monadic FRP"; - license = lib.licenses.publicDomain; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "dragen" = callPackage ( - { - mkDerivation, - base, - containers, - extra, - ghc-prim, - matrix, - QuickCheck, - split, - template-haskell, - text, - transformers, - }: - mkDerivation { - pname = "dragen"; - version = "0.1.0.0"; - sha256 = "079r8d3j5qm15cqg0d12iz4n6z0lxlmhbcqpv37dhdafjf12dyy7"; - libraryHaskellDepends = [ - base - containers - extra - ghc-prim - matrix - QuickCheck - split - template-haskell - transformers - ]; - testHaskellDepends = [ - base - containers - extra - ghc-prim - matrix - QuickCheck - split - template-haskell - text - transformers - ]; - description = "Automatic derivation of optimized QuickCheck random generators"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "drama" = callPackage ( { mkDerivation, @@ -203347,57 +114935,6 @@ self: { } ) { }; - "dresdner-verkehrsbetriebe" = callPackage ( - { - mkDerivation, - aeson, - base, - bytestring, - HTTP, - old-locale, - optparse-applicative, - text, - time, - unordered-containers, - vector, - }: - mkDerivation { - pname = "dresdner-verkehrsbetriebe"; - version = "1.0.0"; - sha256 = "02mj0697yhqkrnqa9lksl1b4cr3zzydgvxmmbs47r31v5xzsn8wc"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson - base - bytestring - HTTP - old-locale - text - time - unordered-containers - vector - ]; - executableHaskellDepends = [ - aeson - base - bytestring - HTTP - old-locale - optparse-applicative - text - time - unordered-containers - vector - ]; - description = "Library and program for querying DVB (Dresdner Verkehrsbetriebe AG)"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - mainProgram = "dresdner-verkehrsbetriebe"; - broken = true; - } - ) { }; - "drifter" = callPackage ( { mkDerivation, @@ -203570,83 +115107,6 @@ self: { } ) { }; - "drmaa" = callPackage ( - { - mkDerivation, - base, - c2hs, - directory, - drmaa, - exceptions, - }: - mkDerivation { - pname = "drmaa"; - version = "0.3.0"; - sha256 = "1x1r3m1gqikm6n5m006zy3c9z106qa4ykl7qa90pa29wg03475z5"; - libraryHaskellDepends = [ - base - directory - exceptions - ]; - librarySystemDepends = [ drmaa ]; - libraryToolDepends = [ c2hs ]; - description = "A Haskell bindings to the DRMAA C library"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { drmaa = null; }; - - "drone" = callPackage ( - { - mkDerivation, - aeson, - base, - bytestring, - containers, - extensible, - formatting, - hspec, - microlens, - req, - servant-server, - text, - warp, - }: - mkDerivation { - pname = "drone"; - version = "1.1.0"; - sha256 = "0c0xinvr36mmwk9kl970ya53w4z4v6scpxxa9i3lwjjnkcadp9kp"; - libraryHaskellDepends = [ - base - bytestring - containers - extensible - formatting - microlens - req - text - ]; - testHaskellDepends = [ - aeson - base - bytestring - containers - extensible - formatting - hspec - microlens - req - servant-server - text - warp - ]; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "dropbox" = callPackage ( { mkDerivation, @@ -203717,101 +115177,6 @@ self: { } ) { }; - "dropbox-sdk" = callPackage ( - { - mkDerivation, - base, - blaze-builder, - bytestring, - case-insensitive, - certificate, - conduit, - HTTP, - http-conduit, - http-types, - json, - monad-control, - network, - old-locale, - pem, - resourcet, - template-haskell, - time, - tls, - tls-extra, - transformers, - urlencoded, - utf8-string, - }: - mkDerivation { - pname = "dropbox-sdk"; - version = "0.3.1"; - sha256 = "1s0aki1ayjickkkwmn1mc38gnd257v24wy6yj9p05qm2g8gm7xy2"; - libraryHaskellDepends = [ - base - blaze-builder - bytestring - case-insensitive - certificate - conduit - HTTP - http-conduit - http-types - json - monad-control - network - old-locale - pem - resourcet - template-haskell - time - tls - tls-extra - transformers - urlencoded - utf8-string - ]; - description = "A library to access the Dropbox HTTP API"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "dropsolve" = callPackage ( - { - mkDerivation, - base, - containers, - directory, - filepath, - haskell98, - process, - regex-posix, - time, - }: - mkDerivation { - pname = "dropsolve"; - version = "0.1.2.1"; - sha256 = "1nrvrcf51jdy5vhqbnrllb3y5rgrhg1qwsd05z24s38ra40whbgp"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - containers - directory - filepath - haskell98 - process - regex-posix - time - ]; - description = "A command line tool for resolving dropbox conflicts. Deprecated! Please use confsolve."; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "dropsolve"; - } - ) { }; - "drunken-bishop" = callPackage ( { mkDerivation, @@ -203839,286 +115204,6 @@ self: { } ) { }; - "ds-kanren" = callPackage ( - { - mkDerivation, - base, - containers, - logict, - QuickCheck, - tasty, - tasty-quickcheck, - }: - mkDerivation { - pname = "ds-kanren"; - version = "0.2.0.1"; - sha256 = "14sgqd55jnqahp0mi4x46a5903bnj2f2crlfrkyg9qds73wjj7fk"; - libraryHaskellDepends = [ - base - containers - logict - ]; - testHaskellDepends = [ - base - QuickCheck - tasty - tasty-quickcheck - ]; - description = "A subset of the miniKanren language"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "dsc" = callPackage ( - { - mkDerivation, - base, - base64-bytestring, - bytestring, - hspec, - QuickCheck, - SimpleAES, - string-conversions, - }: - mkDerivation { - pname = "dsc"; - version = "0.2.0"; - sha256 = "04ym4b4rwn60knaamqdgw0jin889rghwv4i176z5m558g4jaai7g"; - libraryHaskellDepends = [ - base - base64-bytestring - bytestring - SimpleAES - string-conversions - ]; - testHaskellDepends = [ - base - base64-bytestring - bytestring - hspec - QuickCheck - SimpleAES - string-conversions - ]; - description = "Helper functions for setting up Double Submit Cookie defense for forms"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "dsh-sql" = callPackage ( - { - mkDerivation, - aeson, - algebra-dag, - algebra-sql, - base, - bytestring, - bytestring-lexing, - containers, - Decimal, - DSH, - either, - HDBC, - HDBC-odbc, - HUnit, - mtl, - process, - QuickCheck, - random, - semigroups, - set-monad, - template-haskell, - test-framework, - test-framework-hunit, - test-framework-quickcheck2, - text, - vector, - }: - mkDerivation { - pname = "dsh-sql"; - version = "0.2.0.2"; - sha256 = "00r1wbgbkpnza1jjd14vqr4hwgfkhnz7yivkx4bla5frfdlv5q58"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson - algebra-dag - algebra-sql - base - bytestring - bytestring-lexing - containers - Decimal - DSH - either - HDBC - HDBC-odbc - mtl - process - random - semigroups - set-monad - template-haskell - text - vector - ]; - executableHaskellDepends = [ - base - bytestring - bytestring-lexing - containers - DSH - HDBC - HDBC-odbc - HUnit - QuickCheck - test-framework - test-framework-hunit - test-framework-quickcheck2 - text - vector - ]; - description = "SQL backend for Database Supported Haskell (DSH)"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "sqltests"; - } - ) { }; - - "dsmc" = callPackage ( - { - mkDerivation, - attoparsec, - base, - bytestring, - containers, - entropy, - hslogger, - mwc-random, - parallel, - primitive, - repa, - strict, - transformers, - vector, - }: - mkDerivation { - pname = "dsmc"; - version = "0.1.0.1"; - sha256 = "0va22bx3fj80rl03mv3pnwvsdjkax41pp8qxyj3yiicbyi6zzaa5"; - libraryHaskellDepends = [ - attoparsec - base - bytestring - containers - entropy - hslogger - mwc-random - parallel - primitive - repa - strict - transformers - vector - ]; - description = "DSMC library for rarefied gas dynamics"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "dsmc-tools" = callPackage ( - { - mkDerivation, - base, - bytestring, - cmdargs, - ConfigFile, - dsmc, - gloss, - gloss-raster, - hslogger, - mtl, - repa, - strict, - transformers, - vector, - }: - mkDerivation { - pname = "dsmc-tools"; - version = "0.1.0.1"; - sha256 = "0wry1dwcf3dwd780aic3v6jlrdjplrsciw1rr582a78c7anasjr0"; - isLibrary = false; - isExecutable = true; - enableSeparateDataOutput = true; - executableHaskellDepends = [ - base - bytestring - cmdargs - ConfigFile - dsmc - gloss - gloss-raster - hslogger - mtl - repa - strict - transformers - vector - ]; - description = "DSMC toolkit for rarefied gas dynamics"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "dson" = callPackage ( - { - mkDerivation, - base, - parsec, - }: - mkDerivation { - pname = "dson"; - version = "0.3.0.1"; - sha256 = "1vv32n736ncjsy4psp8zlqmpp0r7mncjq65zwkhq5i99jx4chb1q"; - libraryHaskellDepends = [ - base - parsec - ]; - description = "Haskell Doge Serialized Object Notation Parser"; - license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "dson-parsec" = callPackage ( - { - mkDerivation, - base, - parsec, - }: - mkDerivation { - pname = "dson-parsec"; - version = "0.4.1.1"; - sha256 = "1zflz9vhcz7psssn6hrizmwdmrvpagxhl0648k6f1n9xj50kp99y"; - libraryHaskellDepends = [ - base - parsec - ]; - description = "DSON parser"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "dsp" = callPackage ( { mkDerivation, @@ -204154,29 +115239,6 @@ self: { } ) { }; - "dstring" = callPackage ( - { - mkDerivation, - base, - base-unicode-symbols, - dlist, - }: - mkDerivation { - pname = "dstring"; - version = "0.4.0.4"; - sha256 = "15zy1dhfs87hxq1qm54ym0pdhvg7l76m7vy5y06dnksb1sblhaqm"; - libraryHaskellDepends = [ - base - base-unicode-symbols - dlist - ]; - description = "Difference strings"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "dsv" = callPackage ( { mkDerivation, @@ -204284,83 +115346,6 @@ self: { } ) { }; - "dtd" = callPackage ( - { - mkDerivation, - attoparsec, - attoparsec-conduit, - base, - blaze-builder, - conduit, - containers, - lifted-base, - monad-control, - network, - resourcet, - text, - transformers, - uri-conduit, - xml-catalog, - xml-conduit, - xml-types, - }: - mkDerivation { - pname = "dtd"; - version = "1.1.0.2"; - sha256 = "11sqmsxw36rn2xkccr7zrmpzijpc3j0z1cxsjcfncnj3l5iaqryp"; - libraryHaskellDepends = [ - attoparsec - attoparsec-conduit - base - blaze-builder - conduit - containers - lifted-base - monad-control - network - resourcet - text - transformers - uri-conduit - xml-catalog - xml-conduit - xml-types - ]; - description = "Parse and render DTD files (deprecated)"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "dtd-text" = callPackage ( - { - mkDerivation, - attoparsec, - base, - containers, - dtd-types, - text, - xml-types, - }: - mkDerivation { - pname = "dtd-text"; - version = "0.1.2.0"; - sha256 = "1czygz52aparm4qbkfsskm9qd5wirdpccjn66nh7d62d440j1as8"; - libraryHaskellDepends = [ - attoparsec - base - containers - dtd-types - text - xml-types - ]; - description = "Parse and render XML DTDs"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "dtd-types" = callPackage ( { mkDerivation, @@ -204396,61 +115381,6 @@ self: { } ) { }; - "dtw" = callPackage ( - { - mkDerivation, - base, - containers, - QuickCheck, - test-framework, - test-framework-quickcheck2, - thyme, - vector, - vector-space, - }: - mkDerivation { - pname = "dtw"; - version = "1.0.3.0"; - sha256 = "1xdij82mk1lwpgkk9rgqi946m186dchgkrgilwkq56iq993y7g34"; - libraryHaskellDepends = [ - base - containers - vector - vector-space - ]; - testHaskellDepends = [ - base - containers - QuickCheck - test-framework - test-framework-quickcheck2 - thyme - vector - vector-space - ]; - description = "(Fast) Dynamic Time Warping"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "dual" = callPackage ( - { mkDerivation, base }: - mkDerivation { - pname = "dual"; - version = "0.1.1.1"; - sha256 = "0rf7vywr342llc0p7rmd4l0r8gsaxza0mh6cdb5mg13m9jfb4125"; - revision = "1"; - editedCabalFile = "1cm80lc3p8bpzj0crxccx2fp33p171gz4j56r9fc5g5kza390nrb"; - libraryHaskellDepends = [ base ]; - description = "Dual category"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "dual-game" = callPackage ( { mkDerivation, @@ -204739,76 +115669,6 @@ self: { } ) { }; - "duet" = callPackage ( - { - mkDerivation, - aeson, - base, - containers, - deepseq, - edit-distance, - exceptions, - hspec, - monad-logger, - mtl, - optparse-simple, - parsec, - syb, - text, - }: - mkDerivation { - pname = "duet"; - version = "0.0.2"; - sha256 = "16hjhyn254d307ibg5541y00x0l6n5rwk06r5cdkj5x07jmgcafm"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson - base - containers - deepseq - edit-distance - exceptions - monad-logger - mtl - parsec - syb - text - ]; - executableHaskellDepends = [ - aeson - base - containers - deepseq - exceptions - monad-logger - mtl - optparse-simple - syb - text - ]; - testHaskellDepends = [ - aeson - base - containers - deepseq - edit-distance - exceptions - hspec - monad-logger - mtl - parsec - syb - text - ]; - description = "A tiny language, a subset of Haskell (with type classes) aimed at aiding teachers to teach Haskell"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "duet"; - broken = true; - } - ) { }; - "dumb-cas" = callPackage ( { mkDerivation, @@ -204962,31 +115822,6 @@ self: { } ) { }; - "dunai-core" = callPackage ( - { - mkDerivation, - base, - MonadRandom, - transformers, - transformers-base, - }: - mkDerivation { - pname = "dunai-core"; - version = "0.5.1.0"; - sha256 = "1p8161m671dgf13q0rnpp797nymdxpi5nf6xl9mh9zj495libbzz"; - libraryHaskellDepends = [ - base - MonadRandom - transformers - transformers-base - ]; - description = "Generalised reactive framework supporting classic, arrowized and monadic FRP. (Core library fork.)"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "dunai-test" = callPackage ( { mkDerivation, @@ -205043,150 +115878,6 @@ self: { } ) { }; - "duplo" = callPackage ( - { - mkDerivation, - aeson, - aeson-pretty, - ansi-terminal, - base, - base64-bytestring, - bytestring, - containers, - directory, - executable-path, - filepath, - fsnotify, - http-types, - HUnit, - language-javascript, - lens, - MissingH, - mtl, - process, - QuickCheck, - regex-compat, - scotty, - shake, - system-fileio, - system-filepath, - tasty, - tasty-hunit, - tasty-quickcheck, - text, - text-format, - transformers, - unordered-containers, - utf8-string, - wai, - warp, - }: - mkDerivation { - pname = "duplo"; - version = "1.8.1"; - sha256 = "1k63904aly7qwx96vqys0yx4amys8y5dl9xb9hp4x7ymw0b6h43i"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson - aeson-pretty - ansi-terminal - base - bytestring - containers - directory - executable-path - filepath - fsnotify - http-types - language-javascript - lens - MissingH - mtl - regex-compat - scotty - shake - system-fileio - text - text-format - transformers - unordered-containers - utf8-string - wai - warp - ]; - executableHaskellDepends = [ - aeson - aeson-pretty - ansi-terminal - base - base64-bytestring - bytestring - containers - directory - filepath - fsnotify - http-types - language-javascript - lens - MissingH - mtl - process - regex-compat - scotty - shake - system-filepath - text - text-format - transformers - unordered-containers - wai - warp - ]; - testHaskellDepends = [ - base - HUnit - MissingH - QuickCheck - tasty - tasty-hunit - tasty-quickcheck - ]; - description = "Frontend development build tool"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - mainProgram = "duplo"; - broken = true; - } - ) { }; - - "dura" = callPackage ( - { - mkDerivation, - base, - bytestring, - directory, - filepath, - }: - mkDerivation { - pname = "dura"; - version = "0.1"; - sha256 = "0sm5f8678lym1maavvx0jsl0px3phry6687wsvf5askbrdyla84m"; - revision = "1"; - editedCabalFile = "018pwi48hx6jcy9gkbbc4gcbjxa2n8b4lbfmd18mnm49ymwyyqlv"; - libraryHaskellDepends = [ - base - bytestring - directory - filepath - ]; - description = "durable/atomic file system writes (from rio package)"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "duration" = callPackage ( { mkDerivation, @@ -205276,150 +115967,6 @@ self: { } ) { }; - "dvault" = callPackage ( - { - mkDerivation, - base, - bytestring, - containers, - crypto-rng, - data-default, - directory, - process, - vector, - }: - mkDerivation { - pname = "dvault"; - version = "0.1.0.0"; - sha256 = "1djk7c7zbkhr95nvrn4wf864yl425w0ifwgsb5f4al0gyv1cx0c9"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - bytestring - containers - crypto-rng - data-default - directory - process - vector - ]; - description = "Dead simple password manager"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - mainProgram = "dvault"; - broken = true; - } - ) { }; - - "dvda" = callPackage ( - { - mkDerivation, - ad, - base, - containers, - directory, - fgl, - file-location, - graphviz, - hashable, - hashtables, - mtl, - process, - QuickCheck, - test-framework, - test-framework-quickcheck2, - unordered-containers, - vector, - }: - mkDerivation { - pname = "dvda"; - version = "0.4"; - sha256 = "1q8avdmzqxnr63ak0i1n6n4cvc23qkrmqlii628mis7vzfcw2yp8"; - libraryHaskellDepends = [ - base - containers - hashable - hashtables - mtl - unordered-containers - vector - ]; - testHaskellDepends = [ - ad - base - containers - directory - fgl - file-location - graphviz - hashable - hashtables - mtl - process - QuickCheck - test-framework - test-framework-quickcheck2 - unordered-containers - ]; - description = "Efficient automatic differentiation and code generation"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "dvdread" = callPackage ( - { - mkDerivation, - base, - bytestring, - c2hs, - dvdread, - mtl, - }: - mkDerivation { - pname = "dvdread"; - version = "0.1"; - sha256 = "1lxqm9r4zcw364yzpqaaf4nrja5n88vlwa527ixifhc80x6ffx0m"; - libraryHaskellDepends = [ - base - bytestring - mtl - ]; - libraryPkgconfigDepends = [ dvdread ]; - libraryToolDepends = [ c2hs ]; - description = "A monadic interface to libdvdread"; - license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { dvdread = null; }; - - "dvi-processing" = callPackage ( - { - mkDerivation, - base, - bytestring, - filepath, - transformers, - }: - mkDerivation { - pname = "dvi-processing"; - version = "0.3.1"; - sha256 = "0dp6acmrvlns85nzbbh65vd6fjam04h11kxd9bk6j6hqa2qaqa43"; - libraryHaskellDepends = [ - base - bytestring - filepath - transformers - ]; - description = "Read/write DVI and TFM file"; - license = lib.licenses.publicDomain; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "dvorak" = callPackage ( { mkDerivation, @@ -205446,32 +115993,6 @@ self: { } ) { }; - "dwarf" = callPackage ( - { - mkDerivation, - base, - binary, - bytestring, - containers, - }: - mkDerivation { - pname = "dwarf"; - version = "0.23"; - sha256 = "0h6bzh628cz0qnbk4aiz5859r9va99q307scbwzvs1wn3nm6dszl"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base - binary - bytestring - containers - ]; - description = "Parser for DWARF debug format"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "dwarf-el" = callPackage ( { mkDerivation, @@ -205641,39 +116162,6 @@ self: { } ) { d3dx9 = null; }; - "dyckword" = callPackage ( - { - mkDerivation, - ansi-terminal, - base, - exact-combinatorics, - hspec, - text, - }: - mkDerivation { - pname = "dyckword"; - version = "0.1.0.4"; - sha256 = "1904dy0f30jbv3b43vpkfsczr27xsfsnvmh21xhd9y4lvdah0rbr"; - revision = "1"; - editedCabalFile = "0w0az7jkkyfvaldh44b9pmqlwrfvjxmfk07hvrdiwxl62klg4plq"; - libraryHaskellDepends = [ - base - exact-combinatorics - text - ]; - testHaskellDepends = [ - ansi-terminal - base - hspec - text - ]; - description = "A library for working with binary Dyck words"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "dyepack" = callPackage ( { mkDerivation, @@ -205928,165 +116416,6 @@ self: { } ) { }; - "dynamic-cabal" = callPackage ( - { - mkDerivation, - base, - containers, - data-default, - directory, - doctest, - filepath, - ghc, - ghc-paths, - haskell-generate, - haskell-src-exts, - HUnit, - tasty, - tasty-hunit, - tasty-th, - time, - void, - }: - mkDerivation { - pname = "dynamic-cabal"; - version = "0.3.5"; - sha256 = "0fkr3hps3v0ygcah4dpzfqyfxm0rj4knivbbarllzv86h042vwxw"; - libraryHaskellDepends = [ - base - containers - data-default - directory - filepath - ghc - ghc-paths - haskell-generate - haskell-src-exts - time - void - ]; - testHaskellDepends = [ - base - containers - directory - doctest - filepath - ghc - HUnit - tasty - tasty-hunit - tasty-th - ]; - description = "Access the functions from the Cabal library without depending on it"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "dynamic-graph" = callPackage ( - { - mkDerivation, - base, - cairo, - colour, - GLFW-b, - GLUtil, - OpenGL, - pango, - pipes, - transformers, - }: - mkDerivation { - pname = "dynamic-graph"; - version = "0.1.0.13"; - sha256 = "1gx3hqbps8mvhxm03j5wri7v4qy3z42kcy8rhhcxq7dd0mryd4rz"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base - cairo - colour - GLFW-b - GLUtil - OpenGL - pango - pipes - transformers - ]; - description = "Draw and update graphs in real time with OpenGL"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "dynamic-graphs" = callPackage ( - { - mkDerivation, - aeson, - base, - bytestring, - containers, - criterion, - deepseq, - hashable, - hashtables, - mwc-random, - primitive, - QuickCheck, - semigroups, - test-framework, - test-framework-quickcheck2, - test-framework-th, - text, - unordered-containers, - vector, - }: - mkDerivation { - pname = "dynamic-graphs"; - version = "0.1.0.3"; - sha256 = "1zwrvpg8nxc4lx3mc5jaj1fcbg1hhk4b52ng4qh5r57xkhqj6xg5"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - containers - hashable - hashtables - mwc-random - primitive - semigroups - unordered-containers - vector - ]; - testHaskellDepends = [ - aeson - base - bytestring - containers - deepseq - hashable - mwc-random - primitive - QuickCheck - semigroups - test-framework - test-framework-quickcheck2 - test-framework-th - text - unordered-containers - ]; - benchmarkHaskellDepends = [ - base - criterion - primitive - ]; - description = "Dynamic graph algorithms"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "dynamic-linker-template" = callPackage ( { mkDerivation, @@ -206140,72 +116469,6 @@ self: { } ) { }; - "dynamic-mvector" = callPackage ( - { - mkDerivation, - base, - primitive, - vector, - }: - mkDerivation { - pname = "dynamic-mvector"; - version = "0.1.0.5"; - sha256 = "0hsy9mgnl2yf94kqxy69wgmr5hjqxpp55qvij3f53sxxywjrxdi2"; - libraryHaskellDepends = [ - base - primitive - vector - ]; - description = "A wrapper around MVector that enables pushing, popping and extending"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "dynamic-object" = callPackage ( - { - mkDerivation, - base, - containers, - doctest, - ghc, - hspec, - lens, - mtl, - QuickCheck, - text, - transformers, - }: - mkDerivation { - pname = "dynamic-object"; - version = "0.2.1"; - sha256 = "1xzjwsdq4v08m66lph81h67sii7qkvni5pygmh3iblx7rybsvflb"; - libraryHaskellDepends = [ - base - containers - lens - mtl - QuickCheck - text - transformers - ]; - testHaskellDepends = [ - base - doctest - ghc - hspec - lens - QuickCheck - transformers - ]; - description = "Object-oriented programming with duck typing and singleton classes"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "dynamic-pipeline" = callPackage ( { mkDerivation, @@ -206340,477 +116603,74 @@ self: { vector vector-space ]; - description = "Interactive diagram windows"; - license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "dynamic-pp" = callPackage ( - { - mkDerivation, - ansi-terminal, - base, - blaze-builder, - bytestring, - Cabal, - hashable, - HUnit-Plus, - unordered-containers, - utf8-string, - }: - mkDerivation { - pname = "dynamic-pp"; - version = "0.2.0"; - sha256 = "03y9sl3xcnp1ixi4y0i1a7frd2bgfvnb0r4pqjs38bvjkz96bbdd"; - libraryHaskellDepends = [ - ansi-terminal - base - blaze-builder - bytestring - Cabal - hashable - unordered-containers - utf8-string - ]; - testHaskellDepends = [ - ansi-terminal - base - blaze-builder - bytestring - Cabal - hashable - HUnit-Plus - unordered-containers - utf8-string - ]; - description = "A pretty-print library that employs a dynamic programming algorithm for optimal rendering"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "dynamic-state" = callPackage ( - { - mkDerivation, - base, - binary, - bytestring, - hashable, - unordered-containers, - }: - mkDerivation { - pname = "dynamic-state"; - version = "0.3.2"; - sha256 = "1nwdiwi5v96p8jbifj9qz6cm65sz977pq3bznm4kd7mlqp2sglfr"; - libraryHaskellDepends = [ - base - binary - bytestring - hashable - unordered-containers - ]; - description = "Optionally serializable dynamic state keyed by type"; - license = lib.licenses.gpl2Only; - } - ) { }; - - "dynamodb-simple" = callPackage ( - { - mkDerivation, - aeson, - amazonka, - amazonka-core, - amazonka-dynamodb, - base, - bytestring, - conduit, - containers, - double-conversion, - exceptions, - generics-sop, - hashable, - hspec, - lens, - monad-loops, - mtl, - safe-exceptions, - scientific, - semigroups, - tagged, - template-haskell, - text, - transformers, - unordered-containers, - uuid-types, - vector, - }: - mkDerivation { - pname = "dynamodb-simple"; - version = "0.6.0.2"; - sha256 = "1mx2ylbvcyskv0pc053mcwlz3mycqrq3g4rgrbk4qhnywx8p7gav"; - libraryHaskellDepends = [ - aeson - amazonka - amazonka-core - amazonka-dynamodb - base - bytestring - conduit - containers - double-conversion - exceptions - generics-sop - hashable - lens - monad-loops - mtl - scientific - semigroups - tagged - template-haskell - text - transformers - unordered-containers - uuid-types - vector - ]; - testHaskellDepends = [ - amazonka - amazonka-dynamodb - base - conduit - containers - hashable - hspec - lens - safe-exceptions - semigroups - tagged - text - transformers - unordered-containers - ]; - description = "Typesafe library for working with DynamoDB database"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "dynloader" = callPackage ( - { - mkDerivation, - base, - ghc, - ghc-paths, - hspec, - }: - mkDerivation { - pname = "dynloader"; - version = "0.1.0"; - sha256 = "1xmys4018zfaahhi9il2fygpw9mjfs7r3fcpkd0k5y77r0g1i88h"; - libraryHaskellDepends = [ - base - ghc - ghc-paths - ]; - testHaskellDepends = [ - base - ghc - ghc-paths - hspec - ]; - description = "Dynamically runtime loading packages"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "dynobud" = callPackage ( - { - mkDerivation, - aeson, - base, - binary, - casadi-bindings, - casadi-bindings-core, - cereal, - containers, - data-default-class, - directory, - distributive, - doctest, - generic-accessors, - hmatrix, - hmatrix-gsl, - HUnit, - jacobi-roots, - lens, - linear, - mtl, - mwc-random, - Plot-ho-matic, - process, - QuickCheck, - reflection, - spatial-math, - test-framework, - test-framework-hunit, - test-framework-quickcheck2, - time, - vector, - vector-binary-instances, - }: - mkDerivation { - pname = "dynobud"; - version = "1.9.1.0"; - sha256 = "1rfxxryjcda1navajrp2b1c4p3wvljzjzdrqzhqax4x4dhca359r"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson - base - binary - casadi-bindings - casadi-bindings-core - cereal - containers - data-default-class - directory - distributive - generic-accessors - hmatrix - hmatrix-gsl - jacobi-roots - lens - linear - mtl - mwc-random - Plot-ho-matic - process - reflection - spatial-math - time - vector - vector-binary-instances - ]; - testHaskellDepends = [ - base - binary - casadi-bindings - cereal - containers - doctest - hmatrix - hmatrix-gsl - HUnit - linear - QuickCheck - test-framework - test-framework-hunit - test-framework-quickcheck2 - vector - ]; - description = "your dynamic optimization buddy"; - license = lib.licenses.lgpl3Only; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "dyre" = callPackage ( - { - mkDerivation, - base, - binary, - directory, - executable-path, - filepath, - io-storage, - process, - time, - unix, - xdg-basedir, - }: - mkDerivation { - pname = "dyre"; - version = "0.9.2"; - sha256 = "170gx5a0xs4zifbpml3c9rxw7jyidlcmbfl67fk5lpkjfmad23i4"; - libraryHaskellDepends = [ - base - binary - directory - executable-path - filepath - io-storage - process - time - unix - xdg-basedir - ]; - testHaskellDepends = [ - base - directory - process - ]; - description = "Dynamic reconfiguration in Haskell"; - license = lib.licenses.bsd3; - } - ) { }; - - "dywapitchtrack" = callPackage ( - { - mkDerivation, - base, - bytestring, - transformers, - }: - mkDerivation { - pname = "dywapitchtrack"; - version = "0.1.0.1"; - sha256 = "1fmn8aypgcvmbpfs0dr8yfkqq4p5jw2mh0wldjhhl6bffymkszgf"; - libraryHaskellDepends = [ - base - bytestring - transformers - ]; - description = "Bindings to the dywapitchtrack pitch tracking library"; - license = lib.licenses.mit; + description = "Interactive diagram windows"; + license = lib.licenses.gpl3Only; hydraPlatforms = lib.platforms.none; - broken = true; } ) { }; - "dzen-dhall" = callPackage ( + "dynamic-state" = callPackage ( { mkDerivation, - ansi-terminal, base, + binary, bytestring, - dhall, - directory, - file-embed-lzma, - filepath, - generic-random, hashable, - hourglass, - hspec, - http-conduit, - http-types, - HUnit, - megaparsec, - microlens, - microlens-th, - network-uri, - optparse-applicative, - parsec, - parsers, - pipes, - prettyprinter, - prettyprinter-ansi-terminal, - process, - QuickCheck, - random, - tasty, - tasty-hspec, - tasty-hunit, - tasty-quickcheck, - template-haskell, - text, - transformers, - unix, unordered-containers, - utf8-string, - vector, }: mkDerivation { - pname = "dzen-dhall"; - version = "1.0.2"; - sha256 = "1pa399smd588jm06sammacsqmvxs0wywyzpczc6jdnc10qccb3rl"; - isLibrary = true; - isExecutable = true; + pname = "dynamic-state"; + version = "0.3.2"; + sha256 = "1nwdiwi5v96p8jbifj9qz6cm65sz977pq3bznm4kd7mlqp2sglfr"; libraryHaskellDepends = [ - ansi-terminal base + binary bytestring - dhall - directory - file-embed-lzma - filepath hashable - hourglass - http-conduit - http-types - megaparsec - microlens - microlens-th - network-uri - optparse-applicative - parsec - parsers - pipes - prettyprinter - prettyprinter-ansi-terminal - process - random - text - transformers - unix - unordered-containers - utf8-string - vector - ]; - executableHaskellDepends = [ base ]; - testHaskellDepends = [ - base - dhall - filepath - generic-random - hspec - HUnit - microlens - network-uri - optparse-applicative - parsec - QuickCheck - tasty - tasty-hspec - tasty-hunit - tasty-quickcheck - template-haskell - text unordered-containers - vector ]; - description = "Configure dzen2 bars in Dhall language"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "dzen-dhall"; - broken = true; + description = "Optionally serializable dynamic state keyed by type"; + license = lib.licenses.gpl2Only; } ) { }; - "dzen-utils" = callPackage ( + "dyre" = callPackage ( { mkDerivation, base, - colour, + binary, + directory, + executable-path, + filepath, + io-storage, process, + time, + unix, + xdg-basedir, }: mkDerivation { - pname = "dzen-utils"; - version = "0.1.1"; - sha256 = "05s47s40amydwd6dc75rnaganx2qi2spx668p8x0xs0fdwnqvsf0"; + pname = "dyre"; + version = "0.9.2"; + sha256 = "170gx5a0xs4zifbpml3c9rxw7jyidlcmbfl67fk5lpkjfmad23i4"; libraryHaskellDepends = [ base - colour + binary + directory + executable-path + filepath + io-storage process + time + unix + xdg-basedir ]; - description = "Utilities for creating inputs for dzen"; - license = "GPL"; - hydraPlatforms = lib.platforms.none; - broken = true; + testHaskellDepends = [ + base + directory + process + ]; + description = "Dynamic reconfiguration in Haskell"; + license = lib.licenses.bsd3; } ) { }; @@ -206898,61 +116758,6 @@ self: { } ) { }; - "each" = callPackage ( - { - mkDerivation, - base, - dlist, - hspec, - QuickCheck, - template-haskell, - }: - mkDerivation { - pname = "each"; - version = "1.1.1.0"; - sha256 = "078qlgdk256rcjh8k9lv7i14rqky952b2zzbnymswciqiiha5bvb"; - libraryHaskellDepends = [ - base - dlist - template-haskell - ]; - testHaskellDepends = [ - base - hspec - QuickCheck - ]; - description = "Template Haskell library for writing monadic expressions more easily"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "eager-sockets" = callPackage ( - { - mkDerivation, - base, - bytestring, - network, - }: - mkDerivation { - pname = "eager-sockets"; - version = "0.1"; - sha256 = "10g8w50hhw8ap6lvsv9apmmfaqvqjwzhnq4mx1npapb8cmsmzgdb"; - revision = "1"; - editedCabalFile = "0qqr585ipr0arcwik604ivd17dx93yypg2sf77lznydrr76rpy9b"; - libraryHaskellDepends = [ - base - bytestring - network - ]; - description = "Socket operations with timeouts"; - license = "unknown"; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "eap" = callPackage ( { mkDerivation, @@ -206984,55 +116789,6 @@ self: { } ) { }; - "earclipper" = callPackage ( - { - mkDerivation, - base, - filepath, - hspec, - }: - mkDerivation { - pname = "earclipper"; - version = "0.0.0.1"; - sha256 = "05b69qwk23iyp3ydsr368sw7li3n0ixmpx3imyhmf1jjx7lxn2lz"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base ]; - executableHaskellDepends = [ base ]; - testHaskellDepends = [ - base - filepath - hspec - ]; - description = "Ear Clipping Triangulation"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - mainProgram = "earclipper"; - broken = true; - } - ) { }; - - "earcut" = callPackage ( - { - mkDerivation, - base, - vector, - }: - mkDerivation { - pname = "earcut"; - version = "0.1.0.4"; - sha256 = "0nssl7n697rzwlfb5lq4kl64j4mrb4i19rp5kzjpmc7iin9fzxsf"; - libraryHaskellDepends = [ - base - vector - ]; - description = "Binding to C++ earcut library"; - license = lib.licenses.isc; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "early" = callPackage ( { mkDerivation, @@ -207093,39 +116849,6 @@ self: { } ) { }; - "easy-api" = callPackage ( - { - mkDerivation, - aeson, - base, - bytestring, - either, - http-conduit, - mtl, - resourcet, - text, - }: - mkDerivation { - pname = "easy-api"; - version = "0.1.0.0"; - sha256 = "0ch4vb7h499gfc2j60gfzj164f3s8rk9hw22g36ymiihsi3ipl1b"; - libraryHaskellDepends = [ - aeson - base - bytestring - either - http-conduit - mtl - resourcet - text - ]; - description = "Utility code for building HTTP API bindings more quickly"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "easy-args" = callPackage ( { mkDerivation, @@ -207151,47 +116874,6 @@ self: { } ) { }; - "easy-bitcoin" = callPackage ( - { - mkDerivation, - aeson, - base, - base16-bytestring, - binary, - byteable, - bytestring, - cryptohash, - deepseq, - lens, - postgresql-simple, - safe, - text, - }: - mkDerivation { - pname = "easy-bitcoin"; - version = "0.0.0.2"; - sha256 = "1dgp6blz00q4s6m3qx2rdf9mvbc8vrq7zh55yay7kqv8yb9xs81v"; - libraryHaskellDepends = [ - aeson - base - base16-bytestring - binary - byteable - bytestring - cryptohash - deepseq - lens - postgresql-simple - safe - text - ]; - description = "types and functions for bitcoin applications"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "easy-file" = callPackage ( { mkDerivation, @@ -207276,35 +116958,6 @@ self: { } ) { }; - "easyjson" = callPackage ( - { - mkDerivation, - base, - mtl, - parsec, - text, - unordered-containers, - vector, - }: - mkDerivation { - pname = "easyjson"; - version = "0.1.0.1"; - sha256 = "19464q0xc3pk1jbf3p94ym97i90600dzhyy4ddv9xf4ligvgbsg2"; - libraryHaskellDepends = [ - base - mtl - parsec - text - unordered-containers - vector - ]; - description = "Haskell JSON library with an emphasis on simplicity, minimal dependencies, and ease of use"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "easyplot" = callPackage ( { mkDerivation, @@ -207326,33 +116979,6 @@ self: { } ) { }; - "easyrender" = callPackage ( - { - mkDerivation, - base, - bytestring, - containers, - mtl, - zlib, - }: - mkDerivation { - pname = "easyrender"; - version = "0.1.1.4"; - sha256 = "0vj9j41706lalxc2sankpnxrn3mg650wfd4rl6yw32pns6bdq86f"; - libraryHaskellDepends = [ - base - bytestring - containers - mtl - zlib - ]; - description = "User-friendly creation of EPS, PostScript, and PDF files"; - license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "easytensor" = callPackage ( { mkDerivation, @@ -207421,72 +117047,6 @@ self: { } ) { }; - "easytest" = callPackage ( - { - mkDerivation, - base, - call-stack, - directory, - hedgehog, - mtl, - profunctors, - split, - stm, - tagged, - transformers, - unix, - }: - mkDerivation { - pname = "easytest"; - version = "0.3"; - sha256 = "0hvdbc7p1wzjpzxifg70sd2bzj9s7vfznal5y2594n6h6s8nj6yf"; - libraryHaskellDepends = [ - base - call-stack - hedgehog - mtl - profunctors - split - stm - tagged - transformers - ]; - testHaskellDepends = [ - base - directory - hedgehog - profunctors - transformers - unix - ]; - description = "Simple, expressive testing library"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "ebeats" = callPackage ( - { - mkDerivation, - base, - time, - }: - mkDerivation { - pname = "ebeats"; - version = "0.1.0"; - sha256 = "0r3pl63fxrrfafwp3791xh0c47pb4jqqcm9lk52g0gaqg0s8x5qk"; - libraryHaskellDepends = [ - base - time - ]; - description = "Time in ebeats"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "ebird-api" = callPackage ( { mkDerivation, @@ -207640,45 +117200,6 @@ self: { } ) { }; - "ebnf-bff" = callPackage ( - { - mkDerivation, - aeson, - base, - bytestring, - cond, - directory, - parsec, - text, - }: - mkDerivation { - pname = "ebnf-bff"; - version = "0.1.1.0"; - sha256 = "103xs9mwknd7na6bp86ssx52hg78whraihsyg7mkzf05ns2ycg38"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson - base - parsec - text - ]; - executableHaskellDepends = [ - aeson - base - bytestring - cond - directory - parsec - ]; - description = "Parser combinators & EBNF, BFFs!"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - mainProgram = "ebnf-parse"; - broken = true; - } - ) { }; - "ec2-signature" = callPackage ( { mkDerivation, @@ -207719,56 +117240,6 @@ self: { } ) { }; - "ec2-unikernel" = callPackage ( - { - mkDerivation, - amazonka, - amazonka-core, - amazonka-ec2, - amazonka-s3, - base, - bytestring, - directory, - filepath, - lens, - process, - semigroups, - temporary, - text, - time, - unix, - }: - mkDerivation { - pname = "ec2-unikernel"; - version = "0.9.8"; - sha256 = "137rq45d0d7ap77wlgiqp5sd2r0jwxkaw4mvxmj1lyi8yc52mxbg"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - amazonka - amazonka-core - amazonka-ec2 - amazonka-s3 - base - bytestring - directory - filepath - lens - process - semigroups - temporary - text - time - unix - ]; - description = "A handy tool for uploading unikernels to Amazon's EC2"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "ec2-unikernel"; - broken = true; - } - ) { }; - "eccrypto" = callPackage ( { mkDerivation, @@ -207834,32 +117305,6 @@ self: { } ) { }; - "ecdsa" = callPackage ( - { - mkDerivation, - base, - bytestring, - crypto-api, - crypto-pubkey-types, - hecc, - }: - mkDerivation { - pname = "ecdsa"; - version = "0.2"; - sha256 = "1300m9rszfjmwqbqb7x9clg6y3qwgwa9s38w72r6plhzbiqmy28n"; - libraryHaskellDepends = [ - base - bytestring - crypto-api - crypto-pubkey-types - hecc - ]; - description = "Basic ECDSA signing implementation"; - license = "unknown"; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "ech-config" = callPackage ( { mkDerivation, @@ -207908,41 +117353,6 @@ self: { } ) { }; - "ecma262" = callPackage ( - { - mkDerivation, - base, - containers, - data-default, - lens, - parsec, - safe, - transformers, - }: - mkDerivation { - pname = "ecma262"; - version = "0.0.0"; - sha256 = "1hvi5adgqjkxq1y10d7jr39h4i63khmgrgmlfk09114flllnh8gm"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - containers - data-default - lens - parsec - safe - transformers - ]; - executableHaskellDepends = [ base ]; - description = "A ECMA-262 interpreter library"; - license = lib.licenses.bsd2; - hydraPlatforms = lib.platforms.none; - mainProgram = "ecma262"; - broken = true; - } - ) { }; - "ecstasy" = callPackage ( { mkDerivation, @@ -208109,39 +117519,6 @@ self: { } ) { }; - "ecu" = callPackage ( - { - mkDerivation, - base, - bytestring, - canlib, - digest, - directory, - process, - vcd, - }: - mkDerivation { - pname = "ecu"; - version = "0.0.8"; - sha256 = "1afb507ywpy2y29zmvywj25qw4gn1h5sd0k051jiw03yvdasn0wj"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - bytestring - digest - directory - process - vcd - ]; - executableSystemDepends = [ canlib ]; - description = "Tools for automotive ECU development"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { canlib = null; }; - "ed25519" = callPackage ( { mkDerivation, @@ -208208,38 +117585,6 @@ self: { } ) { }; - "eddie" = callPackage ( - { - mkDerivation, - base, - bifunctors, - classy-prelude, - hint, - optparse-applicative, - safe, - }: - mkDerivation { - pname = "eddie"; - version = "1.0.0"; - sha256 = "1zq2xadpl33mxdn99aim5rscwqgpy5w0lk7pa3k3h9x3d3c3qzxx"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - bifunctors - classy-prelude - hint - optparse-applicative - safe - ]; - description = "Command line file filtering with haskell"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "eddie"; - broken = true; - } - ) { }; - "ede" = callPackage ( { mkDerivation, @@ -208326,305 +117671,6 @@ self: { } ) { }; - "edenmodules" = callPackage ( - { - mkDerivation, - base, - containers, - deepseq, - parallel, - }: - mkDerivation { - pname = "edenmodules"; - version = "1.2.0.0"; - sha256 = "1wbasb9lsw2rycl2ibd8r9p3d9dl8gd75390qsc83znqx802ylxj"; - libraryHaskellDepends = [ - base - containers - deepseq - parallel - ]; - description = "Semi-explicit parallel programming library"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "edenskel" = callPackage ( - { - mkDerivation, - base, - edenmodules, - parallel, - }: - mkDerivation { - pname = "edenskel"; - version = "2.1.0.0"; - sha256 = "1bf5zw1x4f6a801ig2b8b84kbnmp0asn804gkm18v9fjcchz3j9q"; - libraryHaskellDepends = [ - base - edenmodules - parallel - ]; - description = "Semi-explicit parallel programming skeleton library"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "edentv" = callPackage ( - { - mkDerivation, - array, - base, - binary, - bytestring, - cairo, - containers, - directory, - filepath, - ghc-events-parallel, - gtk, - mtl, - text, - zip-archive, - }: - mkDerivation { - pname = "edentv"; - version = "4.10.0"; - sha256 = "0jkcva53vm8lm76z947xms8a2zkh9sn9951cwry8k7r132dmcn32"; - isLibrary = false; - isExecutable = true; - enableSeparateDataOutput = true; - executableHaskellDepends = [ - array - base - binary - bytestring - cairo - containers - directory - filepath - ghc-events-parallel - gtk - mtl - text - zip-archive - ]; - description = "A Tool to Visualize Parallel Functional Program Executions"; - license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - mainProgram = "edentv"; - } - ) { }; - - "edf" = callPackage ( - { - mkDerivation, - base, - binary, - bytestring, - text, - }: - mkDerivation { - pname = "edf"; - version = "1.0.0.0"; - sha256 = "0zxg57381wi23r17mgzl16ajgg61icxyy25kxyxyji9hw5aw22nw"; - libraryHaskellDepends = [ - base - binary - bytestring - text - ]; - description = "EDF parsing library"; - license = lib.licenses.bsd2; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "edge" = callPackage ( - { - mkDerivation, - ALUT, - base, - cmdtheline, - containers, - gloss, - OpenAL, - random, - wraparound, - }: - mkDerivation { - pname = "edge"; - version = "0.9.1.1"; - sha256 = "0zvwkk7sdgi4h1gld4h4c0lznkp5nd9p3cxpfj2yq393x27jamc0"; - isLibrary = false; - isExecutable = true; - enableSeparateDataOutput = true; - executableHaskellDepends = [ - ALUT - base - cmdtheline - containers - gloss - OpenAL - random - wraparound - ]; - description = "Top view space combat arcade game"; - license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - mainProgram = "edge"; - } - ) { }; - - "edges" = callPackage ( - { - mkDerivation, - base, - cereal, - cereal-data-dword, - cereal-vector, - contravariant, - data-dword, - deepseq, - deferred-folds, - foldl, - hashable, - monad-par, - pointed, - potoki, - potoki-cereal, - primitive, - primitive-extras, - profunctors, - QuickCheck, - quickcheck-instances, - rerebase, - semigroupoids, - tasty, - tasty-hunit, - tasty-quickcheck, - text, - unordered-containers, - vector, - vector-th-unbox, - }: - mkDerivation { - pname = "edges"; - version = "0.11.0.3"; - sha256 = "02735ky371hvxxxkgal7lzg6v8cmq5s115j6qx459lwj8p42az77"; - libraryHaskellDepends = [ - base - cereal - cereal-data-dword - cereal-vector - contravariant - data-dword - deepseq - deferred-folds - foldl - hashable - monad-par - pointed - potoki - potoki-cereal - primitive - primitive-extras - profunctors - QuickCheck - semigroupoids - text - unordered-containers - vector - vector-th-unbox - ]; - testHaskellDepends = [ - cereal - foldl - QuickCheck - quickcheck-instances - rerebase - tasty - tasty-hunit - tasty-quickcheck - ]; - description = "Tools for efficient immutable graphs"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "edis" = callPackage ( - { - mkDerivation, - base, - bytestring, - cereal, - hedis, - }: - mkDerivation { - pname = "edis"; - version = "0.0.1.0"; - sha256 = "1bznnqa4jmaj315sp1r0zr8g15s91yxbzdglki733hvwrsir05dj"; - libraryHaskellDepends = [ - base - bytestring - cereal - hedis - ]; - description = "Statically typechecked client for Redis"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "edit" = callPackage ( - { - mkDerivation, - base, - comonad, - deepseq, - doctest, - QuickCheck, - tasty, - tasty-discover, - tasty-quickcheck, - transformers, - uniplate, - }: - mkDerivation { - pname = "edit"; - version = "1.0.1.0"; - sha256 = "0114fcb1cpfrvn01vqq4wcharny0ri412a3gsy888g739k61a4gj"; - libraryHaskellDepends = [ - base - comonad - deepseq - QuickCheck - transformers - ]; - testHaskellDepends = [ - base - comonad - doctest - QuickCheck - tasty - tasty-discover - tasty-quickcheck - uniplate - ]; - testToolDepends = [ tasty-discover ]; - description = "A monad for rewriting things"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "edit-distance" = callPackage ( { mkDerivation, @@ -208750,33 +117796,6 @@ self: { } ) { }; - "edit-lenses" = callPackage ( - { - mkDerivation, - base, - containers, - data-default, - lattices, - mtl, - }: - mkDerivation { - pname = "edit-lenses"; - version = "0.2"; - sha256 = "1nrpbrq38q779s0fbzaxig2fdqgg9qg41vajx7lbhasal6aiclya"; - libraryHaskellDepends = [ - base - containers - data-default - lattices - mtl - ]; - description = "Symmetric, stateful edit lenses"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "edit-lenses-demo" = callPackage ( { mkDerivation, base }: mkDerivation { @@ -208792,44 +117811,6 @@ self: { } ) { }; - "editable" = callPackage ( - { - mkDerivation, - base, - text, - vty, - vty-ui, - }: - mkDerivation { - pname = "editable"; - version = "1.0.0.2"; - sha256 = "15jz0b913xd8yd3nzk4vrlj0vzbhjarl05h9j0mdcfgxns5j0yxi"; - libraryHaskellDepends = [ - base - text - vty - vty-ui - ]; - description = "Interactive editors for Generics"; - license = lib.licenses.bsd2; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "editline" = callPackage ( - { mkDerivation, base }: - mkDerivation { - pname = "editline"; - version = "0.2.1.1"; - sha256 = "101zhzja14n8bhbrly7w2aywx3sxyzgyjdrmgpg4gn4alf4lzdlz"; - libraryHaskellDepends = [ base ]; - description = "Bindings to the editline library (libedit)"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "editor-open" = callPackage ( { mkDerivation, @@ -208954,68 +117935,6 @@ self: { } ) { }; - "effect-handlers" = callPackage ( - { - mkDerivation, - base, - criterion, - free, - hspec, - hspec-discover, - HUnit, - kan-extensions, - mtl, - QuickCheck, - }: - mkDerivation { - pname = "effect-handlers"; - version = "0.1.0.8"; - sha256 = "0358kbgv60ayg7g6iz9bqxqp0nih349bk740q9pj7ny8drxsff94"; - libraryHaskellDepends = [ - base - free - kan-extensions - mtl - ]; - testHaskellDepends = [ - base - hspec - hspec-discover - HUnit - QuickCheck - ]; - testToolDepends = [ hspec-discover ]; - benchmarkHaskellDepends = [ - base - criterion - ]; - description = "A library for writing extensible algebraic effects and handlers. Similar to extensible-effects but with deep handlers."; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "effect-monad" = callPackage ( - { - mkDerivation, - base, - type-level-sets, - }: - mkDerivation { - pname = "effect-monad"; - version = "0.8.1.0"; - sha256 = "0lrx586ij1c09hv1rj14l2xi3papzdg8496kas6czdld0kfj8kw1"; - libraryHaskellDepends = [ - base - type-level-sets - ]; - description = "Embeds effect systems and program logics into Haskell using graded monads and parameterised monads"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "effect-stack" = callPackage ( { mkDerivation, @@ -209387,95 +118306,6 @@ self: { } ) { }; - "effective-aspects" = callPackage ( - { - mkDerivation, - base, - Cabal, - ghc-prim, - hashtables, - HUnit, - mtl, - QuickCheck, - test-framework, - test-framework-hunit, - test-framework-quickcheck2, - }: - mkDerivation { - pname = "effective-aspects"; - version = "0.1.0.0"; - sha256 = "0hcczdc98w8mqhap20dm0dmxbmqrxa8xxs8mjx4lga7y2n6wq22i"; - libraryHaskellDepends = [ - base - ghc-prim - hashtables - HUnit - mtl - QuickCheck - ]; - testHaskellDepends = [ - base - Cabal - ghc-prim - hashtables - HUnit - mtl - QuickCheck - test-framework - test-framework-hunit - test-framework-quickcheck2 - ]; - description = "A monadic embedding of aspect oriented programming"; - license = "unknown"; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "effective-aspects-mzv" = callPackage ( - { - mkDerivation, - base, - Cabal, - ghc-prim, - hashtables, - HUnit, - mzv, - QuickCheck, - test-framework, - test-framework-hunit, - test-framework-quickcheck2, - }: - mkDerivation { - pname = "effective-aspects-mzv"; - version = "0.1.0.1"; - sha256 = "03mignf38inf10l19mcsjgjb0935lm53b29xy39pkcycrpmp0ckj"; - libraryHaskellDepends = [ - base - ghc-prim - hashtables - HUnit - mzv - QuickCheck - ]; - testHaskellDepends = [ - base - Cabal - ghc-prim - hashtables - HUnit - mzv - QuickCheck - test-framework - test-framework-hunit - test-framework-quickcheck2 - ]; - description = "A monadic embedding of aspect oriented programming, using \"Monads, Zippers and Views\" instead of mtl"; - license = "unknown"; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "effects" = callPackage ( { mkDerivation, @@ -209557,27 +118387,6 @@ self: { } ) { }; - "effin" = callPackage ( - { - mkDerivation, - base, - mtl, - }: - mkDerivation { - pname = "effin"; - version = "0.3.0.3"; - sha256 = "1kq5n25m7bzw4zrz35b5zc8r4q0p0ai801hdf7r537fim0ia973x"; - libraryHaskellDepends = [ - base - mtl - ]; - description = "A Typeable-free implementation of extensible effects"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "eflint" = callPackage ( { mkDerivation, @@ -209873,32 +118682,6 @@ self: { } ) { }; - "egison-quote" = callPackage ( - { - mkDerivation, - base, - egison, - mtl, - parsec, - template-haskell, - }: - mkDerivation { - pname = "egison-quote"; - version = "0.2"; - sha256 = "1qmbivr4lp8m27ns5cz38fkkynfky9z73hqr173dhyvqccjamfgk"; - libraryHaskellDepends = [ - base - egison - mtl - parsec - template-haskell - ]; - description = "A quasi quotes for using Egison expression in Haskell code"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "egison-tutorial" = callPackage ( { mkDerivation, @@ -209948,42 +118731,6 @@ self: { } ) { }; - "ehaskell" = callPackage ( - { - mkDerivation, - base, - directory, - filepath, - mtlparse, - process, - regexpr, - utf8-string, - yjtools, - }: - mkDerivation { - pname = "ehaskell"; - version = "0.7"; - sha256 = "0d7j20lrxy5qy1ybgywfjk0d0f6iin37nfw9zdbmhi1z2l89mmnj"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - directory - filepath - mtlparse - process - regexpr - utf8-string - yjtools - ]; - description = "like eruby, ehaskell is embedded haskell"; - license = "GPL"; - hydraPlatforms = lib.platforms.none; - mainProgram = "ehs"; - broken = true; - } - ) { }; - "ehlo" = callPackage ( { mkDerivation, @@ -210015,116 +118762,6 @@ self: { } ) { }; - "ehs" = callPackage ( - { - mkDerivation, - base, - bytestring, - haskell-src-meta, - parsec, - template-haskell, - text, - transformers, - }: - mkDerivation { - pname = "ehs"; - version = "0.7.0"; - sha256 = "0kckic7v6gab6ksbdmnxbv41fm68zvhfcmvshln9hxmq2mgli11x"; - revision = "3"; - editedCabalFile = "08l28ncsvjmic0pf29rcgzpp20smbmhcvarhwdhqx1mk0kkajzp2"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - bytestring - haskell-src-meta - parsec - template-haskell - text - transformers - ]; - description = "Embedded haskell template using quasiquotes"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "eibd-client-simple" = callPackage ( - { - mkDerivation, - base, - bytestring, - containers, - eibclient, - mtl, - transformers, - }: - mkDerivation { - pname = "eibd-client-simple"; - version = "0.0.4"; - sha256 = "14nxahznqy6xfjgyi8d11b4hgrw431ywqc5hkz0lbpgxysgkc61d"; - revision = "1"; - editedCabalFile = "103xb7w0sqs1np2ygn9d3vyn2f959dhz54pf1k3b889m13ws0m2i"; - libraryHaskellDepends = [ - base - bytestring - containers - mtl - transformers - ]; - librarySystemDepends = [ eibclient ]; - description = "EIBd Client"; - license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { eibclient = null; }; - - "eigen" = callPackage ( - { - mkDerivation, - base, - binary, - bytestring, - constraints, - ghc-prim, - mtl, - primitive, - transformers, - vector, - }: - mkDerivation { - pname = "eigen"; - version = "3.3.7.0"; - sha256 = "0smpfli12kzmgpw92azx9lsb1kiq6zn490yr1fmhv1a3lynm53rs"; - libraryHaskellDepends = [ - base - binary - bytestring - constraints - ghc-prim - primitive - transformers - vector - ]; - testHaskellDepends = [ - base - binary - bytestring - ghc-prim - mtl - primitive - transformers - vector - ]; - description = "Eigen C++ library (linear algebra: matrices, sparse matrices, vectors, numerical solvers)"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "eio" = callPackage ( { mkDerivation, @@ -210182,32 +118819,6 @@ self: { } ) { }; - "either-both" = callPackage ( - { - mkDerivation, - base, - smallcheck, - tasty, - tasty-smallcheck, - }: - mkDerivation { - pname = "either-both"; - version = "0.1.1.1"; - sha256 = "1cm6g0wvwqlm405y8svv2fi49kpxqs7hffwd4gnsvlk2rfxng93f"; - libraryHaskellDepends = [ base ]; - testHaskellDepends = [ - base - smallcheck - tasty - tasty-smallcheck - ]; - description = "Either or both"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "either-list-functions" = callPackage ( { mkDerivation, @@ -210397,122 +119008,6 @@ self: { } ) { }; - "ekg-bosun" = callPackage ( - { - mkDerivation, - aeson, - base, - ekg-core, - http-client, - lens, - network, - network-uri, - old-locale, - text, - time, - unordered-containers, - vector, - wreq, - }: - mkDerivation { - pname = "ekg-bosun"; - version = "1.0.15"; - sha256 = "1j6nvg4xi6v63lq3kpsirz4dvmh3xwl8515qkgvn5ybg0axpzwmm"; - libraryHaskellDepends = [ - aeson - base - ekg-core - http-client - lens - network - network-uri - old-locale - text - time - unordered-containers - vector - wreq - ]; - description = "Send ekg metrics to a Bosun instance"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "ekg-carbon" = callPackage ( - { - mkDerivation, - base, - ekg-core, - network, - network-carbon, - text, - time, - unordered-containers, - vector, - }: - mkDerivation { - pname = "ekg-carbon"; - version = "1.0.11"; - sha256 = "02cmwpdbqfi6n9dqk2y6yqvds2i6rmbs6vzkab0l90507c7rdqf8"; - libraryHaskellDepends = [ - base - ekg-core - network - network-carbon - text - time - unordered-containers - vector - ]; - description = "An EKG backend to send statistics to Carbon (part of Graphite monitoring tools)"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "ekg-cloudwatch" = callPackage ( - { - mkDerivation, - amazonka, - amazonka-cloudwatch, - amazonka-core, - base, - bytestring, - ekg-core, - lens, - resourcet, - semigroups, - text, - time, - unordered-containers, - }: - mkDerivation { - pname = "ekg-cloudwatch"; - version = "0.0.1.6"; - sha256 = "038l510n8h1v97j6wqyrlmrz7i7hwyllj4nvw2m3ccrvbfpdky59"; - libraryHaskellDepends = [ - amazonka - amazonka-cloudwatch - amazonka-core - base - bytestring - ekg-core - lens - resourcet - semigroups - text - time - unordered-containers - ]; - description = "An ekg backend for Amazon Cloudwatch"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "ekg-core" = callPackage ( { mkDerivation, @@ -210539,86 +119034,6 @@ self: { } ) { }; - "ekg-elastic" = callPackage ( - { - mkDerivation, - aeson, - base, - bytestring, - ekg-core, - hostname, - http-client, - lens, - text, - time, - unordered-containers, - wreq, - }: - mkDerivation { - pname = "ekg-elastic"; - version = "0.2.2.0"; - sha256 = "06cfinya56nwwsa7990l20s427ksqva61dp4m7xffn2xqvmy48df"; - libraryHaskellDepends = [ - aeson - base - bytestring - ekg-core - hostname - http-client - lens - text - time - unordered-containers - wreq - ]; - description = "Push metrics to elastic"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "ekg-elasticsearch" = callPackage ( - { - mkDerivation, - aeson, - base, - bytestring, - data-default-class, - ekg-core, - hostname, - http-client, - lens, - req, - text, - time, - unordered-containers, - }: - mkDerivation { - pname = "ekg-elasticsearch"; - version = "0.4.0.0"; - sha256 = "03bh278n6xvvjr9z8lws25nf1x0j5rw12zmd7h55vmfjn0iblajy"; - libraryHaskellDepends = [ - aeson - base - bytestring - data-default-class - ekg-core - hostname - http-client - lens - req - text - time - unordered-containers - ]; - description = "Push metrics to elasticsearch"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "ekg-influxdb" = callPackage ( { mkDerivation, @@ -210681,45 +119096,6 @@ self: { } ) { }; - "ekg-log" = callPackage ( - { - mkDerivation, - aeson, - base, - bytestring, - directory, - ekg-core, - fast-logger, - filepath, - text, - time, - unix, - unordered-containers, - }: - mkDerivation { - pname = "ekg-log"; - version = "0.1.0.4"; - sha256 = "1vgvvcib9mx2ff5sydi4k1a97wc4wlqjlpphl8ggw2d81fppx0hh"; - libraryHaskellDepends = [ - aeson - base - bytestring - directory - ekg-core - fast-logger - filepath - text - time - unix - unordered-containers - ]; - description = "Push metrics to a log file"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "ekg-prometheus-adapter" = callPackage ( { mkDerivation, @@ -210752,83 +119128,6 @@ self: { } ) { }; - "ekg-push" = callPackage ( - { - mkDerivation, - base, - bytestring, - ekg-core, - text, - time, - unordered-containers, - }: - mkDerivation { - pname = "ekg-push"; - version = "0.0.3"; - sha256 = "1yxp0s3i87zc205bqkw8arq8n0y225gin94x98csldb9rd0k0s5y"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - bytestring - ekg-core - text - time - unordered-containers - ]; - description = "Small framework to push metric deltas to a broadcast channel using the ekg-core library"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "ekg-rrd" = callPackage ( - { - mkDerivation, - base, - directory, - ekg-core, - HUnit, - mtl, - process, - test-framework, - test-framework-hunit, - text, - time, - unordered-containers, - }: - mkDerivation { - pname = "ekg-rrd"; - version = "0.2.1.69"; - sha256 = "172p0whjyql5in94rcpr6h13zilhd84qp54z8qvk23kg5jqaf43r"; - libraryHaskellDepends = [ - base - directory - ekg-core - mtl - process - text - time - unordered-containers - ]; - testHaskellDepends = [ - base - ekg-core - HUnit - test-framework - test-framework-hunit - text - time - unordered-containers - ]; - description = "Passes ekg statistics to rrdtool"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "ekg-statsd" = callPackage ( { mkDerivation, @@ -211022,7 +119321,6 @@ self: { ]; description = "Electrs client library for Haskell"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; } ) { }; @@ -211097,32 +119395,6 @@ self: { } ) { }; - "elerea-examples" = callPackage ( - { - mkDerivation, - base, - elerea, - GLFW, - OpenGL, - }: - mkDerivation { - pname = "elerea-examples"; - version = "2.9.0"; - sha256 = "0dlxmsqhcgl6n091ywa55qcjgk5akiihqyldaln6q5rsi92vb1l4"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - elerea - GLFW - OpenGL - ]; - description = "Example applications for Elerea"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "elerea-sdl" = callPackage ( { mkDerivation, @@ -211144,29 +119416,6 @@ self: { } ) { }; - "elevator" = callPackage ( - { - mkDerivation, - base, - extensible, - transformers, - }: - mkDerivation { - pname = "elevator"; - version = "0.2.3"; - sha256 = "1m509dh5k9ci87g22gd2j8lfg4hm4wn156gvd86p3r636c5hbdw2"; - libraryHaskellDepends = [ - base - extensible - transformers - ]; - description = "Immediately lifts to a desired level"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "elf" = callPackage ( { mkDerivation, @@ -211279,89 +119528,6 @@ self: { } ) { }; - "elision" = callPackage ( - { - mkDerivation, - base, - profunctors, - }: - mkDerivation { - pname = "elision"; - version = "0.1.3.2"; - sha256 = "1487s0dfyilc0jia5wsag680yifizvpbb4bkh5jhzngz1sra0h2y"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - profunctors - ]; - executableHaskellDepends = [ base ]; - description = "Arrows with holes"; - license = lib.licenses.bsd2; - hydraPlatforms = lib.platforms.none; - mainProgram = "example"; - broken = true; - } - ) { }; - - "elliptic-curve" = callPackage ( - { - mkDerivation, - base, - criterion, - galois-field, - groups, - MonadRandom, - protolude, - tasty, - tasty-hunit, - tasty-quickcheck, - text, - wl-pprint-text, - }: - mkDerivation { - pname = "elliptic-curve"; - version = "0.3.0"; - sha256 = "1rvil4va3dy04474kiihadsplhqbpbrkjsqnmaykw23lqgzp32iq"; - libraryHaskellDepends = [ - base - galois-field - groups - MonadRandom - protolude - tasty-quickcheck - text - wl-pprint-text - ]; - testHaskellDepends = [ - base - galois-field - groups - MonadRandom - protolude - tasty - tasty-hunit - tasty-quickcheck - text - wl-pprint-text - ]; - benchmarkHaskellDepends = [ - base - criterion - galois-field - groups - MonadRandom - protolude - tasty-quickcheck - text - wl-pprint-text - ]; - description = "Elliptic curve library"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "elliptic-integrals" = callPackage ( { mkDerivation, @@ -211417,159 +119583,6 @@ self: { } ) { }; - "elm-build-lib" = callPackage ( - { - mkDerivation, - base, - bytestring, - containers, - elm-compiler, - elm-core-sources, - file-embed, - template-haskell, - }: - mkDerivation { - pname = "elm-build-lib"; - version = "0.14.0.0"; - sha256 = "12hhyjr3bshbz66zxl5jfs4s3qx6laqqwcim3kf8rj2vh12h6wj5"; - libraryHaskellDepends = [ - base - bytestring - containers - elm-compiler - elm-core-sources - file-embed - template-haskell - ]; - description = "Compile Elm code to JS within Haskell"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "elm-compiler" = callPackage ( - { - mkDerivation, - aeson, - aeson-pretty, - base, - binary, - blaze-html, - blaze-markup, - bytestring, - cmdargs, - containers, - directory, - edit-distance, - filemanip, - filepath, - HUnit, - indents, - language-ecmascript, - language-glsl, - mtl, - parsec, - pretty, - process, - QuickCheck, - test-framework, - test-framework-hunit, - test-framework-quickcheck2, - text, - transformers, - union-find, - unordered-containers, - }: - mkDerivation { - pname = "elm-compiler"; - version = "0.15"; - sha256 = "1g3q1z6bji1vx36kfkn8qayidds29b0jkk7k70sip4055jr4jc5n"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson - aeson-pretty - base - binary - blaze-html - blaze-markup - bytestring - cmdargs - containers - directory - edit-distance - filepath - indents - language-ecmascript - language-glsl - mtl - parsec - pretty - process - text - transformers - union-find - unordered-containers - ]; - executableHaskellDepends = [ - aeson - aeson-pretty - base - binary - bytestring - cmdargs - containers - directory - filepath - indents - language-glsl - mtl - parsec - pretty - process - text - transformers - union-find - ]; - testHaskellDepends = [ - aeson - aeson-pretty - base - binary - blaze-html - blaze-markup - bytestring - cmdargs - containers - directory - edit-distance - filemanip - filepath - HUnit - indents - language-ecmascript - language-glsl - mtl - parsec - pretty - process - QuickCheck - test-framework - test-framework-hunit - test-framework-quickcheck2 - text - transformers - union-find - unordered-containers - ]; - description = "Values to help with elm-package, elm-make, and elm-lang.org."; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "elm-core-sources" = callPackage ( { mkDerivation, @@ -211679,79 +119692,6 @@ self: { } ) { }; - "elm-get" = callPackage ( - { - mkDerivation, - aeson, - aeson-pretty, - ansi-wl-pprint, - base, - binary, - bytestring, - containers, - directory, - Elm, - filepath, - HTTP, - http-client, - http-client-tls, - http-types, - mtl, - network, - optparse-applicative, - process, - vector, - }: - mkDerivation { - pname = "elm-get"; - version = "0.1.3"; - sha256 = "1did7vjd1h2kh5alndd2b63zi8b1m9hf6k1k75yxwvw6f6mz5i4q"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson - base - bytestring - directory - Elm - filepath - http-client - http-client-tls - http-types - mtl - network - process - vector - ]; - executableHaskellDepends = [ - aeson - aeson-pretty - ansi-wl-pprint - base - binary - bytestring - containers - directory - Elm - filepath - HTTP - http-client - http-client-tls - http-types - mtl - network - optparse-applicative - process - vector - ]; - description = "Tool for sharing and using Elm libraries"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "elm-get"; - broken = true; - } - ) { }; - "elm-hybrid" = callPackage ( { mkDerivation, @@ -211823,326 +119763,6 @@ self: { } ) { }; - "elm-make" = callPackage ( - { - mkDerivation, - ansi-wl-pprint, - base, - binary, - blaze-html, - blaze-markup, - bytestring, - containers, - directory, - elm-compiler, - elm-package, - filepath, - mtl, - optparse-applicative, - text, - }: - mkDerivation { - pname = "elm-make"; - version = "0.1.2"; - sha256 = "10yli9nxfyykkr3p2dma5zgblwgx2434axjj17a878xd0r4841sb"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - ansi-wl-pprint - base - binary - blaze-html - blaze-markup - bytestring - containers - directory - elm-compiler - elm-package - filepath - mtl - optparse-applicative - text - ]; - description = "A build tool for Elm projects"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "elm-make"; - broken = true; - } - ) { }; - - "elm-package" = callPackage ( - { - mkDerivation, - aeson, - aeson-pretty, - ansi-wl-pprint, - base, - binary, - bytestring, - containers, - directory, - elm-compiler, - filepath, - HTTP, - http-client, - http-client-tls, - http-types, - mtl, - network, - optparse-applicative, - pretty, - process, - text, - time, - unordered-containers, - vector, - zip-archive, - }: - mkDerivation { - pname = "elm-package"; - version = "0.5"; - sha256 = "08wsl42gf5wf9pmsnld38p2m675ljihpzkrvn3dzh6zf0dwblm5n"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson - aeson-pretty - base - binary - bytestring - containers - directory - elm-compiler - filepath - HTTP - http-client - http-client-tls - http-types - mtl - network - process - text - time - unordered-containers - vector - zip-archive - ]; - executableHaskellDepends = [ - aeson - aeson-pretty - ansi-wl-pprint - base - binary - bytestring - containers - directory - elm-compiler - filepath - HTTP - http-client - http-client-tls - http-types - mtl - network - optparse-applicative - pretty - process - text - time - unordered-containers - vector - zip-archive - ]; - description = "Package manager for Elm libraries"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "elm-package"; - broken = true; - } - ) { }; - - "elm-reactor" = callPackage ( - { - mkDerivation, - base, - blaze-html, - blaze-markup, - bytestring, - cmdargs, - containers, - directory, - elm-compiler, - filepath, - fsnotify, - HTTP, - mtl, - process, - snap-core, - snap-server, - system-filepath, - text, - time, - transformers, - unordered-containers, - websockets, - websockets-snap, - }: - mkDerivation { - pname = "elm-reactor"; - version = "0.3.1"; - sha256 = "0j8md3cqg7wrcx85s5hj8g812zvrr3y4833n0wc3dvfa3wlblpga"; - isLibrary = false; - isExecutable = true; - enableSeparateDataOutput = true; - executableHaskellDepends = [ - base - blaze-html - blaze-markup - bytestring - cmdargs - containers - directory - elm-compiler - filepath - fsnotify - HTTP - mtl - process - snap-core - snap-server - system-filepath - text - time - transformers - unordered-containers - websockets - websockets-snap - ]; - description = "Interactive development tool for Elm programs"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "elm-reactor"; - broken = true; - } - ) { }; - - "elm-repl" = callPackage ( - { - mkDerivation, - base, - binary, - bytestring, - bytestring-trie, - cmdargs, - containers, - directory, - elm-compiler, - elm-package, - filepath, - haskeline, - HUnit, - mtl, - parsec, - process, - QuickCheck, - test-framework, - test-framework-hunit, - test-framework-quickcheck2, - }: - mkDerivation { - pname = "elm-repl"; - version = "0.4.1"; - sha256 = "05fyk3q7243c8p4kw03jggrvp8qfgcfanr291bmgnn9s1lk0q253"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - binary - bytestring - bytestring-trie - cmdargs - containers - directory - elm-compiler - elm-package - filepath - haskeline - mtl - parsec - process - ]; - testHaskellDepends = [ - base - bytestring - bytestring-trie - cmdargs - directory - elm-compiler - elm-package - filepath - haskeline - HUnit - mtl - parsec - process - QuickCheck - test-framework - test-framework-hunit - test-framework-quickcheck2 - ]; - description = "a REPL for Elm"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "elm-repl"; - broken = true; - } - ) { }; - - "elm-server" = callPackage ( - { - mkDerivation, - base, - bytestring, - cmdargs, - containers, - directory, - Elm, - filepath, - mtl, - process, - snap-core, - snap-server, - unordered-containers, - }: - mkDerivation { - pname = "elm-server"; - version = "0.11.0.1"; - sha256 = "0nnkhmmm4cl6a314xxh5qwxkjsc3k3vcwdfar62578ykarxb53g1"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - bytestring - cmdargs - containers - directory - Elm - filepath - mtl - process - snap-core - snap-server - unordered-containers - ]; - description = "Server for developing Elm projects"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "elm-server"; - broken = true; - } - ) { }; - "elm-street" = callPackage ( { mkDerivation, @@ -212235,116 +119855,6 @@ self: { } ) { }; - "elm-websocket" = callPackage ( - { - mkDerivation, - aeson, - base, - bytestring, - concurrent-extra, - containers, - directory, - formatting, - hspec, - http-types, - lens, - mtl, - network, - scotty, - stm, - text, - time, - wai, - wai-middleware-static, - wai-websockets, - warp, - websockets, - wl-pprint-text, - }: - mkDerivation { - pname = "elm-websocket"; - version = "1.0"; - sha256 = "10v97m93dl34apvv3jn26jfcb7f206q3bqvwqk220j83s8kas07a"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson - base - bytestring - concurrent-extra - containers - directory - formatting - lens - mtl - stm - text - time - wai - wai-websockets - websockets - wl-pprint-text - ]; - executableHaskellDepends = [ - aeson - base - concurrent-extra - http-types - scotty - text - wai - wai-middleware-static - warp - ]; - testHaskellDepends = [ - aeson - base - concurrent-extra - hspec - http-types - mtl - network - text - wai - warp - websockets - ]; - description = "Generate ELM code from a Wai websocket application"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "elm-yesod" = callPackage ( - { - mkDerivation, - base, - blaze-markup, - Elm, - shakespeare-js, - text, - yesod-core, - }: - mkDerivation { - pname = "elm-yesod"; - version = "0.2"; - sha256 = "0hza3khwspwlqbyllh2w1083hh19hslc0lhdryq1bbs8bssird39"; - libraryHaskellDepends = [ - base - blaze-markup - Elm - shakespeare-js - text - yesod-core - ]; - description = "The Elm language Yesod compatibility module"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "elm2nix" = callPackage ( { mkDerivation, @@ -212552,58 +120062,6 @@ self: { } ) { }; - "elocrypt" = callPackage ( - { - mkDerivation, - base, - containers, - hlint, - MonadRandom, - proctest, - QuickCheck, - random, - tasty, - tasty-quickcheck, - tasty-th, - }: - mkDerivation { - pname = "elocrypt"; - version = "2.1.0"; - sha256 = "1mz400y28qminfz39zl2wsia6hv2pmvg836gc18z6hakmw80jnmk"; - revision = "1"; - editedCabalFile = "04ciqcmycpms6qvbh04fkq7kli7mcd031x9lqhv2ps46f4v9zx1b"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - containers - MonadRandom - random - ]; - executableHaskellDepends = [ - base - random - ]; - testHaskellDepends = [ - base - containers - hlint - MonadRandom - proctest - QuickCheck - random - tasty - tasty-quickcheck - tasty-th - ]; - description = "Generate easy-to-remember, hard-to-guess passwords"; - license = "unknown"; - hydraPlatforms = lib.platforms.none; - mainProgram = "elocrypt"; - broken = true; - } - ) { }; - "elsa" = callPackage ( { mkDerivation, @@ -212655,6 +120113,7 @@ self: { license = lib.licenses.mit; hydraPlatforms = lib.platforms.none; mainProgram = "elsa"; + broken = true; } ) { }; @@ -213380,44 +120839,6 @@ self: { } ) { }; - "emacs-keys" = callPackage ( - { - mkDerivation, - base, - doctest, - split, - tasty, - tasty-hspec, - tasty-quickcheck, - template-haskell, - th-lift, - xkbcommon, - }: - mkDerivation { - pname = "emacs-keys"; - version = "0.0.2.0"; - sha256 = "12zxvjmlp06rjlhb7iaz7qrzb7cr1rgqg5ql5vv3lkz7z84h82ph"; - libraryHaskellDepends = [ - base - split - template-haskell - th-lift - xkbcommon - ]; - testHaskellDepends = [ - base - doctest - tasty - tasty-hspec - tasty-quickcheck - xkbcommon - ]; - description = "library to parse emacs style keybinding into the modifiers and the chars"; - license = lib.licenses.isc; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "emacs-module" = callPackage ( { mkDerivation, @@ -213469,127 +120890,6 @@ self: { } ) { }; - "email" = callPackage ( - { - mkDerivation, - array, - base, - bytestring, - encoding, - HaskellNet, - hsemail, - old-locale, - old-time, - parsec, - process, - time, - }: - mkDerivation { - pname = "email"; - version = "0.1.1.2"; - sha256 = "144a53an7laivcc6zxawsjz8yijknswnlbrd8id87d6x6lbq1cw3"; - libraryHaskellDepends = [ - array - base - bytestring - encoding - HaskellNet - hsemail - old-locale - old-time - parsec - process - time - ]; - description = "Sending eMail in Haskell made easy"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "email-header" = callPackage ( - { - mkDerivation, - attoparsec, - base, - base64-bytestring, - bytestring, - case-insensitive, - containers, - exceptions, - QuickCheck, - tasty, - tasty-quickcheck, - text, - text-icu, - time, - }: - mkDerivation { - pname = "email-header"; - version = "0.4.1"; - sha256 = "14xs001ab0p2y6f9hl9lw8bwd4fcg23y5ia3wfcafn6893pbb5f6"; - libraryHaskellDepends = [ - attoparsec - base - base64-bytestring - bytestring - case-insensitive - containers - exceptions - text - text-icu - time - ]; - testHaskellDepends = [ - base - bytestring - case-insensitive - containers - QuickCheck - tasty - tasty-quickcheck - text - time - ]; - description = "Parsing and rendering of email and MIME headers"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "email-postmark" = callPackage ( - { - mkDerivation, - aeson, - attoparsec, - base, - bytestring, - containers, - HTTP, - network, - }: - mkDerivation { - pname = "email-postmark"; - version = "0.2"; - sha256 = "17zby98j1glsslrndmxl6zwrc3q7ir9771yvfxijawp4wdx6nayy"; - libraryHaskellDepends = [ - aeson - attoparsec - base - bytestring - containers - HTTP - network - ]; - description = "A simple wrapper to send emails via the api of the service postmark (http://postmarkapp.com/)"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "email-validate" = callPackage ( { mkDerivation, @@ -213659,122 +120959,6 @@ self: { } ) { }; - "emailaddress" = callPackage ( - { - mkDerivation, - aeson, - base, - bifunctors, - bytestring, - doctest, - email-validate, - Glob, - http-api-data, - opaleye, - path-pieces, - persistent, - postgresql-simple, - product-profunctors, - profunctors, - text, - }: - mkDerivation { - pname = "emailaddress"; - version = "0.2.0.0"; - sha256 = "0p61v5b39z618ryqlcfcf9qmrv961zy87b8jp2aadlx2iyphl2rr"; - libraryHaskellDepends = [ - aeson - base - bifunctors - bytestring - email-validate - http-api-data - opaleye - path-pieces - persistent - postgresql-simple - product-profunctors - profunctors - text - ]; - testHaskellDepends = [ - base - doctest - Glob - ]; - description = "Wrapper around email-validate library adding instances for common type classes"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "emailparse" = callPackage ( - { - mkDerivation, - attoparsec, - base, - bytestring, - either, - either-unwrap, - HUnit, - mime, - MissingH, - mtl, - QuickCheck, - strptime, - tasty, - tasty-hunit, - tasty-quickcheck, - text, - text-icu, - time, - word8, - }: - mkDerivation { - pname = "emailparse"; - version = "0.2.0.10"; - sha256 = "0w6jkimaiy1ld6aydmq5jz4g248awkj4wnpq6knpn0wfxjsqz0r8"; - libraryHaskellDepends = [ - attoparsec - base - bytestring - either - either-unwrap - mime - MissingH - strptime - text - text-icu - time - word8 - ]; - testHaskellDepends = [ - attoparsec - base - bytestring - either - either-unwrap - HUnit - mime - MissingH - mtl - QuickCheck - strptime - tasty - tasty-hunit - tasty-quickcheck - text - text-icu - time - word8 - ]; - description = "An email parser that will parse everything"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "emanote" = callPackage ( { mkDerivation, @@ -214136,61 +121320,6 @@ self: { } ) { }; - "embla" = callPackage ( - { - mkDerivation, - base, - chronos, - }: - mkDerivation { - pname = "embla"; - version = "0.1"; - sha256 = "1nk689j21ghaiymqnddlf4j8pgb9z61xflfrcgxw3zrxiv5jslk6"; - libraryHaskellDepends = [ - base - chronos - ]; - description = "execute actions periodically while avoiding drift"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "embroidery" = callPackage ( - { - mkDerivation, - base, - bytestring, - dlist, - gloss, - haskell98, - HCodecs, - mtl, - }: - mkDerivation { - pname = "embroidery"; - version = "0.1"; - sha256 = "1vqksv7a12xzi6zp4b2qfnsb5gaarg5bhxanhbi4qkn1jmwy82yx"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - bytestring - dlist - gloss - haskell98 - HCodecs - mtl - ]; - executableHaskellDepends = [ base ]; - description = "support for embroidery formats in haskell"; - license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - mainProgram = "example"; - } - ) { }; - "emd" = callPackage ( { mkDerivation, @@ -214273,32 +121402,6 @@ self: { } ) { }; - "emgm" = callPackage ( - { - mkDerivation, - base, - HUnit, - QuickCheck, - syb, - }: - mkDerivation { - pname = "emgm"; - version = "0.4"; - sha256 = "0cpcwrb6wqwq371wqjmhzfhdwk3vfhjjgz4vgjsjvw6cdhbpw5p1"; - libraryHaskellDepends = [ base ]; - testHaskellDepends = [ - base - HUnit - QuickCheck - syb - ]; - description = "Extensible and Modular Generics for the Masses"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "emhell" = callPackage ( { mkDerivation, @@ -214424,44 +121527,6 @@ self: { } ) { }; - "empty-monad" = callPackage ( - { mkDerivation, base }: - mkDerivation { - pname = "empty-monad"; - version = "0.1.0.1"; - sha256 = "0h68fff0qpyapkpsqcd6mgg8nyxcbjsw389dv8z8vm4hrqh1pip5"; - libraryHaskellDepends = [ base ]; - description = "A container that always has no values"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "enchant" = callPackage ( - { - mkDerivation, - base, - c2hs, - enchant, - }: - mkDerivation { - pname = "enchant"; - version = "0.1.0.0"; - sha256 = "1z3dwf5k2759jslh9zfvqqcivrqay5k33q21fjhdy67scg63cdam"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base ]; - libraryPkgconfigDepends = [ enchant ]; - libraryToolDepends = [ c2hs ]; - testHaskellDepends = [ base ]; - description = "Binding to the Enchant library"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { inherit (pkgs) enchant; }; - "enclosed-exceptions" = callPackage ( { mkDerivation, @@ -214497,166 +121562,54 @@ self: { monad-control QuickCheck stm - transformers - transformers-base - ]; - description = "Catching all exceptions from within an enclosed computation"; - license = lib.licenses.mit; - } - ) { }; - - "encode-string" = callPackage ( - { - mkDerivation, - base, - bytestring, - QuickCheck, - quickcheck-instances, - text, - }: - mkDerivation { - pname = "encode-string"; - version = "0.1.0.0"; - sha256 = "145r1il5s1a3rrrnwb6rq25fm5g1q3822r7pan2q5zwb0m9vy4zv"; - libraryHaskellDepends = [ - base - bytestring - text - ]; - testHaskellDepends = [ - base - bytestring - QuickCheck - quickcheck-instances - text - ]; - description = "Safe string conversion and encoding"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "encoding" = callPackage ( - { - mkDerivation, - array, - base, - binary, - bytestring, - containers, - extensible-exceptions, - ghc-prim, - HUnit, - mtl, - QuickCheck, - regex-compat, - }: - mkDerivation { - pname = "encoding"; - version = "0.10.2"; - sha256 = "07fclvjvd25cb21j6hakkcrk83f46ri9mkc9qdgllhb5p9zwxdig"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - array - base - binary - bytestring - containers - extensible-exceptions - ghc-prim - mtl - regex-compat - ]; - testHaskellDepends = [ - base - bytestring - HUnit - QuickCheck - ]; - description = "A library for various character encodings"; - license = lib.licenses.bsd3; - } - ) { }; - - "encoding-io" = callPackage ( - { - mkDerivation, - base, - chunked-data, - deepseq, - transformers-base, - }: - mkDerivation { - pname = "encoding-io"; - version = "0.0.1"; - sha256 = "1yr6b2c3cmn0rb8l1ks6gyx4hv96g6mbksq6q7z1ndd8rjlpqmkw"; - libraryHaskellDepends = [ - base - chunked-data - deepseq + transformers transformers-base ]; - description = "Encoding-aware file I/O"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; + description = "Catching all exceptions from within an enclosed computation"; + license = lib.licenses.mit; } ) { }; - "encryptable" = callPackage ( + "encoding" = callPackage ( { mkDerivation, + array, base, + binary, bytestring, - cryptonite, - esqueleto, - generic-arbitrary, - hspec, - persistent, - persistent-template, + containers, + extensible-exceptions, + ghc-prim, + HUnit, + mtl, QuickCheck, - quickcheck-instances, - text, - universum, + regex-compat, }: mkDerivation { - pname = "encryptable"; - version = "0.1"; - sha256 = "0svvzk2js91qzcmbsfjcs2qs65a2b5ywgbpnyqidz53dlnbbk2r1"; + pname = "encoding"; + version = "0.10.2"; + sha256 = "07fclvjvd25cb21j6hakkcrk83f46ri9mkc9qdgllhb5p9zwxdig"; + isLibrary = true; + isExecutable = true; libraryHaskellDepends = [ + array base + binary bytestring - cryptonite - esqueleto - generic-arbitrary - hspec - persistent - persistent-template - QuickCheck - quickcheck-instances - text - universum + containers + extensible-exceptions + ghc-prim + mtl + regex-compat ]; testHaskellDepends = [ base bytestring - cryptonite - esqueleto - generic-arbitrary - hspec - persistent - persistent-template + HUnit QuickCheck - quickcheck-instances - text - universum ]; - description = "Typed encryption with persistent support"; + description = "A library for various character encodings"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; } ) { }; @@ -214679,35 +121632,6 @@ self: { } ) { }; - "endo" = callPackage ( - { - mkDerivation, - base, - between, - data-default-class, - mtl, - transformers, - }: - mkDerivation { - pname = "endo"; - version = "0.3.0.1"; - sha256 = "0sjg6sgbdnqkiqy7p19c4d3nclp5118y75asf60j0c8022kqs11l"; - revision = "1"; - editedCabalFile = "1dwyx3nhnbrz8gxazmvbfiv3y7mjkyxmcgqrz4qj9is4prba96bj"; - libraryHaskellDepends = [ - base - between - data-default-class - mtl - transformers - ]; - description = "Endomorphism utilities"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "eng-stemmer" = callPackage ( { mkDerivation, @@ -214801,171 +121725,6 @@ self: { } ) { }; - "engine-io-growler" = callPackage ( - { - mkDerivation, - base, - bytestring, - engine-io, - growler, - http-types, - mtl, - pipes, - pipes-attoparsec, - pipes-wai, - socket-io, - text, - transformers, - unordered-containers, - wai, - wai-websockets, - websockets, - }: - mkDerivation { - pname = "engine-io-growler"; - version = "0.1.0.1"; - sha256 = "1yk7cpg89nsmd9kvmxdrxcgyr8wilara4kw35hyxl4l2b9c9pwjc"; - libraryHaskellDepends = [ - base - bytestring - engine-io - growler - http-types - mtl - pipes - pipes-attoparsec - pipes-wai - socket-io - text - transformers - unordered-containers - wai - wai-websockets - websockets - ]; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "engine-io-snap" = callPackage ( - { - mkDerivation, - base, - bytestring, - containers, - engine-io, - io-streams, - lifted-base, - snap-core, - unordered-containers, - websockets, - websockets-snap, - }: - mkDerivation { - pname = "engine-io-snap"; - version = "1.0.7"; - sha256 = "0qvdsspv0q9fp93bifp03gqa1jbxcxrf4mhyrncwmy24my2nvq1z"; - libraryHaskellDepends = [ - base - bytestring - containers - engine-io - io-streams - lifted-base - snap-core - unordered-containers - websockets - websockets-snap - ]; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "engine-io-wai" = callPackage ( - { - mkDerivation, - attoparsec, - base, - bytestring, - either, - engine-io, - http-types, - mtl, - text, - transformers, - transformers-compat, - unordered-containers, - wai, - wai-websockets, - websockets, - }: - mkDerivation { - pname = "engine-io-wai"; - version = "1.0.10"; - sha256 = "07vjjb7d5ndv8cailnrv5qif0d3kmi09bq1s38hwjyp5ml8dlfis"; - libraryHaskellDepends = [ - attoparsec - base - bytestring - either - engine-io - http-types - mtl - text - transformers - transformers-compat - unordered-containers - wai - wai-websockets - websockets - ]; - description = "An @engine-io@ @ServerAPI@ that is compatible with @Wai@"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "engine-io-yesod" = callPackage ( - { - mkDerivation, - base, - bytestring, - conduit, - conduit-extra, - engine-io, - http-types, - text, - unordered-containers, - wai, - wai-websockets, - websockets, - yesod-core, - }: - mkDerivation { - pname = "engine-io-yesod"; - version = "1.0.4"; - sha256 = "1ifvvhv5y2fd90waj776g1wz5k1gw0kylky0livcl7il54bncsfm"; - libraryHaskellDepends = [ - base - bytestring - conduit - conduit-extra - engine-io - http-types - text - unordered-containers - wai - wai-websockets - websockets - yesod-core - ]; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "engineering-units" = callPackage ( { mkDerivation, base }: mkDerivation { @@ -214978,40 +121737,6 @@ self: { } ) { }; - "entangle" = callPackage ( - { - mkDerivation, - base, - containers, - matrix, - mtl, - quipper-core, - }: - mkDerivation { - pname = "entangle"; - version = "0.1.1"; - sha256 = "1g6sxq2wsr45lnfwiwq30xgzi75whqqhy2y3zk8qmmkibijgcdi8"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - containers - matrix - mtl - quipper-core - ]; - executableHaskellDepends = [ - base - matrix - quipper-core - ]; - description = "An application (and library) to convert quipper circuits into Qpmc models"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - mainProgram = "entangle"; - } - ) { }; - "entropy" = callPackage ( { mkDerivation, @@ -215044,88 +121769,6 @@ self: { } ) { }; - "entwine" = callPackage ( - { - mkDerivation, - async, - base, - clock, - containers, - criterion, - directory, - exceptions, - monad-loops, - process, - QuickCheck, - quickcheck-instances, - quickcheck-properties, - quickcheck-text, - random, - retry, - SafeSemaphore, - semigroups, - stm, - text, - time, - transformers, - transformers-either, - unordered-containers, - }: - mkDerivation { - pname = "entwine"; - version = "0.0.4"; - sha256 = "1k150jbn2jb4ckadmcb655x7ck1cw659zkv03ngwp0wmx8l51n6b"; - libraryHaskellDepends = [ - async - base - clock - containers - exceptions - monad-loops - retry - SafeSemaphore - semigroups - stm - text - time - transformers - transformers-either - unordered-containers - ]; - testHaskellDepends = [ - async - base - directory - exceptions - process - QuickCheck - quickcheck-instances - text - time - transformers - transformers-either - ]; - benchmarkHaskellDepends = [ - base - criterion - directory - process - QuickCheck - quickcheck-instances - quickcheck-properties - quickcheck-text - random - text - transformers - transformers-either - ]; - description = "entwine - Concurrency tools"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "enum-subset-generate" = callPackage ( { mkDerivation, @@ -215214,45 +121857,6 @@ self: { } ) { }; - "enum-text-rio" = callPackage ( - { - mkDerivation, - base, - bytestring, - enum-text, - fmt, - rio, - text, - }: - mkDerivation { - pname = "enum-text-rio"; - version = "1.2.0.0"; - sha256 = "0cz91i1m9ibphlm153i23i03nhx41bca398hkfzf9hq904ziarna"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - bytestring - enum-text - fmt - rio - text - ]; - executableHaskellDepends = [ - base - bytestring - enum-text - fmt - rio - text - ]; - description = "Making fmt available with rio"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "demo-enum-text-rio"; - } - ) { }; - "enum-types" = callPackage ( { mkDerivation, base }: mkDerivation { @@ -215265,37 +121869,6 @@ self: { } ) { }; - "enum-utf8" = callPackage ( - { - mkDerivation, - array, - base, - bytestring, - hashable, - possibly, - render-utf8, - unordered-containers, - }: - mkDerivation { - pname = "enum-utf8"; - version = "0.1.0.0"; - sha256 = "0mlzlwvrii5dbkz5nqv49npfqqbgngzali2din4rz7f4im4g0bxp"; - libraryHaskellDepends = [ - array - base - bytestring - hashable - possibly - render-utf8 - unordered-containers - ]; - description = "An experimental Utf8 parsing toolkit for enumerated types"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "enumerable" = callPackage ( { mkDerivation, @@ -215317,303 +121890,6 @@ self: { } ) { }; - "enumerate" = callPackage ( - { - mkDerivation, - array, - base, - containers, - deepseq, - ghc-prim, - spiros, - template-haskell, - vinyl, - }: - mkDerivation { - pname = "enumerate"; - version = "0.2.2"; - sha256 = "1265ja5z3pqjp1kxlpw2q92hrm1gjsy4ad5v4y4x7jhac4rf8631"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - array - base - containers - deepseq - ghc-prim - spiros - template-haskell - vinyl - ]; - executableHaskellDepends = [ base ]; - description = "enumerate all the values in a finite type (automatically)"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - mainProgram = "example-enumerate"; - } - ) { }; - - "enumerate-function" = callPackage ( - { - mkDerivation, - base, - containers, - criterion, - deepseq, - doctest, - enumerate, - exceptions, - hspec, - MemoTrie, - QuickCheck, - semigroups, - }: - mkDerivation { - pname = "enumerate-function"; - version = "0.0.1"; - sha256 = "0cn06vjf26mnjgdzvx2gxfgk6kpfxj6rqdh0srzdl5yk0ckqc9px"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - containers - deepseq - enumerate - exceptions - MemoTrie - semigroups - ]; - executableHaskellDepends = [ base ]; - testHaskellDepends = [ - base - doctest - hspec - QuickCheck - ]; - benchmarkHaskellDepends = [ - base - criterion - deepseq - ]; - description = "simple package for inverting functions and testing totality, via brute enumeration of the domain"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "example-enumerate-function"; - } - ) { }; - - "enumeration" = callPackage ( - { - mkDerivation, - arith-encode, - base, - binary, - containers, - heap, - HUnit-Plus, - integer-logarithms, - }: - mkDerivation { - pname = "enumeration"; - version = "0.2.0"; - sha256 = "0lhyvsiibzk70czway3wx5wsm1gjfxip47clf4l5nskq1qxs9q8l"; - libraryHaskellDepends = [ - arith-encode - base - binary - containers - heap - integer-logarithms - ]; - testHaskellDepends = [ - arith-encode - base - binary - HUnit-Plus - ]; - description = "A practical API for building recursive enumeration procedures and enumerating datatypes"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "enumerator" = callPackage ( - { - mkDerivation, - base, - bytestring, - containers, - text, - transformers, - }: - mkDerivation { - pname = "enumerator"; - version = "0.4.20"; - sha256 = "02a75dggj295zkhgjry5cb43s6y6ydpjb5w6vgl7kd9b6ma11qik"; - revision = "1"; - editedCabalFile = "10mn8a6sj7fvcprfmngr5z1h434k6yhdij064lqxjpiqyr1srg9z"; - libraryHaskellDepends = [ - base - bytestring - containers - text - transformers - ]; - description = "Reliable, high-performance processing with left-fold enumerators"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "enumerator-fd" = callPackage ( - { - mkDerivation, - base, - enumerator, - mtl, - }: - mkDerivation { - pname = "enumerator-fd"; - version = "0.1.0.2"; - sha256 = "0xbrkv65m206qlvnjlbfb52kvjhw91rdnihwv3y31p2qj5zlz29p"; - libraryHaskellDepends = [ - base - enumerator - mtl - ]; - description = "Enumerator instances for monads-fd classes"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "enumerator-tf" = callPackage ( - { - mkDerivation, - base, - enumerator, - monads-tf, - }: - mkDerivation { - pname = "enumerator-tf"; - version = "0.1.1"; - sha256 = "0s47j6pf05nwl105i2vwvsn18gis1v96gid85kj49ngb8ax0pjsp"; - libraryHaskellDepends = [ - base - enumerator - monads-tf - ]; - description = "Enumerator instances for monads-tf classes"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "enumfun" = callPackage ( - { - mkDerivation, - base, - enummapset-th, - }: - mkDerivation { - pname = "enumfun"; - version = "0.5.1.0"; - sha256 = "1fq4zmhc825bmyslfm7kbsa29qq773cgrz4npj2bcfl0jkbl3ndc"; - libraryHaskellDepends = [ - base - enummapset-th - ]; - description = "Finitely represented /total/ EnumMaps"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "enummapmap" = callPackage ( - { - mkDerivation, - base, - cereal, - containers, - contravariant, - criterion, - data-default, - deepseq, - ghc-prim, - hspec, - hspec-expectations, - HUnit, - lens, - mtl, - QuickCheck, - safecopy, - semigroups, - }: - mkDerivation { - pname = "enummapmap"; - version = "0.7.0"; - sha256 = "17rlynm46i3y76ms8s5ajkz50cj5m1anw83dizj281887qg63iwr"; - libraryHaskellDepends = [ - base - contravariant - data-default - deepseq - ghc-prim - lens - safecopy - semigroups - ]; - testHaskellDepends = [ - base - cereal - containers - deepseq - hspec - hspec-expectations - HUnit - lens - QuickCheck - safecopy - semigroups - ]; - benchmarkHaskellDepends = [ - base - containers - criterion - deepseq - mtl - ]; - description = "Map of maps using Enum types as keys"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "enummaps" = callPackage ( - { - mkDerivation, - base, - containers, - deepseq, - }: - mkDerivation { - pname = "enummaps"; - version = "0.6.2.1.7"; - sha256 = "0p4klnhwr10yiv3w209vl1j09280257z0pz626ynbxbff4mh9wg4"; - libraryHaskellDepends = [ - base - containers - deepseq - ]; - description = "Enum wrappers for IntMap and IntSet"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "enummapset" = callPackage ( { mkDerivation, @@ -215776,51 +122052,6 @@ self: { } ) { }; - "env-parser" = callPackage ( - { - mkDerivation, - aeson, - attoparsec, - base, - base16-bytestring, - base64-bytestring, - bytestring, - containers, - http-types, - mtl, - network, - old-locale, - text, - time, - transformers, - }: - mkDerivation { - pname = "env-parser"; - version = "0.0.2.1"; - sha256 = "13d6yi5jbdi84nccn3ffiw96v5knbz4madjfg980izxfrnbsl1rr"; - libraryHaskellDepends = [ - aeson - attoparsec - base - base16-bytestring - base64-bytestring - bytestring - containers - http-types - mtl - network - old-locale - text - time - transformers - ]; - description = "Pull configuration information from the ENV"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "envelope" = callPackage ( { mkDerivation, @@ -215882,50 +122113,6 @@ self: { } ) { }; - "envstatus" = callPackage ( - { - mkDerivation, - base, - ConfigFile, - mtl, - parsec, - process, - PyF, - tasty, - tasty-hspec, - unix, - }: - mkDerivation { - pname = "envstatus"; - version = "1.0.2"; - sha256 = "1wdvhlmqwzwxv0y3n8xhw5yjy158c7xgiyd0p2zhjghws2p1jvp5"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - ConfigFile - mtl - parsec - process - unix - ]; - executableHaskellDepends = [ base ]; - testHaskellDepends = [ - base - ConfigFile - parsec - PyF - tasty - tasty-hspec - ]; - description = "Display efficiently the state of the local environment"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - mainProgram = "envstatus"; - broken = true; - } - ) { }; - "envy" = callPackage ( { mkDerivation, @@ -215970,44 +122157,6 @@ self: { } ) { }; - "envy-extensible" = callPackage ( - { - mkDerivation, - base, - doctest, - envy, - extensible, - hspec, - hspec-discover, - main-tester, - QuickCheck, - }: - mkDerivation { - pname = "envy-extensible"; - version = "0.2.0.1"; - sha256 = "0800a7drik9h3bxnkqriwjg2j31j8k3pw5fsmswnmfh4wwv2bb6v"; - libraryHaskellDepends = [ - base - envy - extensible - ]; - testHaskellDepends = [ - base - doctest - envy - extensible - hspec - main-tester - QuickCheck - ]; - testToolDepends = [ hspec-discover ]; - description = "Provides FromEnv in envy instance for Record of extensible"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "eo-phi-normalizer" = callPackage ( { mkDerivation, @@ -216195,43 +122344,6 @@ self: { } ) { }; - "epanet-haskell" = callPackage ( - { mkDerivation, base }: - mkDerivation { - pname = "epanet-haskell"; - version = "2.0.12.4"; - sha256 = "1jpz58zlkhgf2fl4fzicpdkqqdbwy3sw56dga8yvjmgv5zcqqshx"; - libraryHaskellDepends = [ base ]; - description = "Haskell binding for EPANET"; - license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "epass" = callPackage ( - { - mkDerivation, - base, - stm, - time, - }: - mkDerivation { - pname = "epass"; - version = "0.2.1"; - sha256 = "0sg5pipzc4s9xq83ari7rigjbvhyh76kqnp57i98bs3k54ba53ym"; - libraryHaskellDepends = [ - base - stm - time - ]; - description = "Baisc, Erlang-like message passing supporting sockets"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "ephemeral" = callPackage ( { mkDerivation, @@ -216294,7 +122406,6 @@ self: { ]; description = "See readme.md"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; } ) { }; @@ -216341,94 +122452,6 @@ self: { } ) { }; - "epic" = callPackage ( - { - mkDerivation, - array, - base, - Cabal, - directory, - mtl, - process, - }: - mkDerivation { - pname = "epic"; - version = "0.9.3.3"; - sha256 = "0ap8jr11sk8v2sdi03pahjhaxx3mc4ba7qbh3m8nsg0g5wr4962m"; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - array - base - Cabal - directory - mtl - process - ]; - executableHaskellDepends = [ - array - base - Cabal - directory - mtl - process - ]; - description = "Compiler for a simple functional language"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "epic"; - broken = true; - } - ) { }; - - "epoll" = callPackage ( - { - mkDerivation, - base, - unix, - }: - mkDerivation { - pname = "epoll"; - version = "0.2.2"; - sha256 = "0iz1x6lb5b71h4sgiacsnv5f8zj445v88a3rsra7vbza5g35nwnp"; - revision = "1"; - editedCabalFile = "1f0asynn06lr4mjn0cf29a624pfn45n2vddmamv8plxmdg176mi1"; - libraryHaskellDepends = [ - base - unix - ]; - description = "epoll bindings"; - license = "LGPL"; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "eprocess" = callPackage ( - { - mkDerivation, - base, - exceptions, - mtl, - }: - mkDerivation { - pname = "eprocess"; - version = "1.7.2"; - sha256 = "190qgsqj41dbkphjrgljif7q0zjm9ddp8wawc9wx8qklb897jrvj"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base - exceptions - mtl - ]; - description = "Basic Erlang-like process support for Haskell"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "epub" = callPackage ( { mkDerivation, @@ -216566,36 +122589,6 @@ self: { } ) { }; - "epubname" = callPackage ( - { - mkDerivation, - base, - directory, - epub-metadata, - mtl, - regex-compat, - }: - mkDerivation { - pname = "epubname"; - version = "2.3.2"; - sha256 = "1l3vi5z46x4m5h3x97hgr9g76i4s5scmpmpjzf97c1kddw31hlh3"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - directory - epub-metadata - mtl - regex-compat - ]; - description = "Rename epub ebook files based on meta information"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "epubname"; - broken = true; - } - ) { }; - "eq" = callPackage ( { mkDerivation, @@ -216675,77 +122668,6 @@ self: { } ) { }; - "equational-reasoning-induction" = callPackage ( - { - mkDerivation, - base, - singletons, - template-haskell, - th-extras, - }: - mkDerivation { - pname = "equational-reasoning-induction"; - version = "0.6.0.0"; - sha256 = "1pp1li32jcspjlfsblannf11q487715fwczf3srffbxyj802ini8"; - libraryHaskellDepends = [ - base - singletons - template-haskell - th-extras - ]; - description = "Proof assistant for Haskell using DataKinds & PolyKinds"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "equeue" = callPackage ( - { - mkDerivation, - base, - containers, - contravariant, - delay, - mtl, - semigroups, - stm, - tasty, - tasty-hunit, - time, - }: - mkDerivation { - pname = "equeue"; - version = "0"; - sha256 = "14risb13sv4mz5scyhcvg6knb791lx4b9jm3k9189fhxkr5a28cc"; - revision = "1"; - editedCabalFile = "0i8gjfmi6jbfbmqs9yckzg694mp7v92b1m99r1hn1yw3xbizvf2j"; - libraryHaskellDepends = [ - base - containers - contravariant - mtl - semigroups - stm - ]; - testHaskellDepends = [ - base - containers - contravariant - delay - semigroups - stm - tasty - tasty-hunit - time - ]; - description = "Application level triggered, and edge triggered event multiqueues"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "equivalence" = callPackage ( { mkDerivation, @@ -216780,65 +122702,6 @@ self: { } ) { }; - "erd" = callPackage ( - { - mkDerivation, - base, - bytestring, - containers, - directory, - filepath, - gitrev, - graphviz, - parsec, - raw-strings-qq, - tasty, - tasty-hunit, - text, - yaml, - }: - mkDerivation { - pname = "erd"; - version = "0.2.1.0"; - sha256 = "1p21q4x5l29mhnm17j77b4w5rqc9n4jd24czawz7p1srmzvl67hs"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - bytestring - containers - directory - filepath - gitrev - graphviz - parsec - raw-strings-qq - text - yaml - ]; - testHaskellDepends = [ - base - bytestring - containers - directory - filepath - gitrev - graphviz - parsec - raw-strings-qq - tasty - tasty-hunit - text - yaml - ]; - description = "An entity-relationship diagram generator from a plain text description"; - license = lib.licenses.publicDomain; - hydraPlatforms = lib.platforms.none; - mainProgram = "erd"; - broken = true; - } - ) { }; - "erebos" = callPackage ( { mkDerivation, @@ -217002,59 +122865,6 @@ self: { } ) { }; - "erf-native" = callPackage ( - { - mkDerivation, - base, - polynomial, - }: - mkDerivation { - pname = "erf-native"; - version = "1.0.0.1"; - sha256 = "0i031ws189rjl5gn44qpkfylx8kz7rdf3nzw9h0dmy2h86xbkckc"; - libraryHaskellDepends = [ - base - polynomial - ]; - description = "Native Haskell implementation of the interface from the erf package"; - license = "GPL"; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "erlang" = callPackage ( - { - mkDerivation, - base, - binary, - bytestring, - directory, - filepath, - MissingH, - network, - random, - }: - mkDerivation { - pname = "erlang"; - version = "0.2.3"; - sha256 = "1sh4ajq819rki2nc1l6a9kq05z74rnpjmi50grwyrr7652b8wwga"; - libraryHaskellDepends = [ - base - binary - bytestring - directory - filepath - MissingH - network - random - ]; - description = "FFI interface to Erlang"; - license = "GPL"; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "erlang-ffi" = callPackage ( { mkDerivation, @@ -217100,68 +122910,6 @@ self: { } ) { }; - "eros" = callPackage ( - { - mkDerivation, - aeson, - base, - bytestring, - containers, - text, - }: - mkDerivation { - pname = "eros"; - version = "0.6.0.0"; - sha256 = "0nr0c2qq30ji50pyjrklrb6a73i6qkqws7ywbfpa4pcd176xwlrw"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - aeson - base - bytestring - containers - text - ]; - description = "A text censorship library"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "eros-client" = callPackage ( - { - mkDerivation, - aeson, - aeson-pretty, - base, - bytestring, - containers, - eros, - text, - }: - mkDerivation { - pname = "eros-client"; - version = "0.5.0.1"; - sha256 = "15pi4khibvfpxni4v3kz6f92s8s34kmkx4q7kwq1rxk5gb6p8rcb"; - isLibrary = false; - isExecutable = true; - enableSeparateDataOutput = true; - executableHaskellDepends = [ - aeson - aeson-pretty - base - bytestring - containers - eros - text - ]; - description = "DEPRECATED in favor of eros-http"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "erosc"; - } - ) { }; - "eros-http" = callPackage ( { mkDerivation, @@ -217199,6 +122947,7 @@ self: { license = lib.licenses.bsd3; hydraPlatforms = lib.platforms.none; mainProgram = "eros-http"; + broken = true; } ) { }; @@ -217291,27 +123040,6 @@ self: { } ) { }; - "errno" = callPackage ( - { - mkDerivation, - base, - mtl, - }: - mkDerivation { - pname = "errno"; - version = "0.1"; - sha256 = "0jix16b2c24pfbc3rig01nl68zdwpi28zzbciscalmq8lkpp10fa"; - libraryHaskellDepends = [ - base - mtl - ]; - description = "a FFI utility"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "error" = callPackage ( { mkDerivation, @@ -217395,136 +123123,6 @@ self: { } ) { }; - "error-context" = callPackage ( - { - mkDerivation, - aeson, - base, - bytestring, - exceptions, - katip, - monad-logger, - mtl, - resourcet, - safe-exceptions, - tasty, - tasty-hunit, - text, - unliftio-core, - unordered-containers, - }: - mkDerivation { - pname = "error-context"; - version = "0.2.0.1"; - sha256 = "033z3niag5hf9dynjxdrg6v9s6f05hpndknfs7xlgkwrrgq3gmnb"; - libraryHaskellDepends = [ - aeson - base - bytestring - exceptions - katip - monad-logger - mtl - resourcet - safe-exceptions - text - unliftio-core - unordered-containers - ]; - testHaskellDepends = [ - aeson - base - bytestring - exceptions - katip - monad-logger - mtl - resourcet - safe-exceptions - tasty - tasty-hunit - text - unliftio-core - unordered-containers - ]; - description = "Provides API for enriching errors with contexts"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "error-continuations" = callPackage ( - { - mkDerivation, - base, - either, - mtl, - transformers, - }: - mkDerivation { - pname = "error-continuations"; - version = "0.1.0.0"; - sha256 = "0rv59fhlfr03qis957mjgl4gyk1i5axfyvr680z3ykbfd3k5gc1s"; - libraryHaskellDepends = [ - base - either - mtl - transformers - ]; - description = "Error Continuations"; - license = lib.licenses.publicDomain; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "error-list" = callPackage ( - { - mkDerivation, - base, - mtl, - text, - text-render, - }: - mkDerivation { - pname = "error-list"; - version = "0.1.0.3"; - sha256 = "0k0rpscg4h55215mgkd72yd5la3f2im21vlsgyg7v4pkrxd1cj1j"; - libraryHaskellDepends = [ - base - mtl - text - text-render - ]; - description = "A useful type for collecting error messages"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "error-loc" = callPackage ( - { - mkDerivation, - base, - template-haskell, - }: - mkDerivation { - pname = "error-loc"; - version = "0.1.0.0"; - sha256 = "0ch7c537fp52yg3qmc1v9rs4y70cc0zyb3g3i0bmmhgdhxd90bm5"; - libraryHaskellDepends = [ - base - template-haskell - ]; - description = "An error replacement with call-site metadata"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "error-location" = callPackage ( { mkDerivation, @@ -217544,34 +123142,6 @@ self: { } ) { }; - "error-message" = callPackage ( - { - mkDerivation, - ansi-wl-pprint, - base, - containers, - either-unwrap, - InfixApplicative, - mtl, - }: - mkDerivation { - pname = "error-message"; - version = "1.1"; - sha256 = "0xnz5l3r9x81pmb6nddzrrws1yqzdqydqkr2g1ib4pwmdwazf7f9"; - libraryHaskellDepends = [ - ansi-wl-pprint - base - containers - either-unwrap - InfixApplicative - mtl - ]; - description = "Composable error messages"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "error-or" = callPackage ( { mkDerivation, @@ -217618,27 +123188,6 @@ self: { } ) { }; - "error-util" = callPackage ( - { - mkDerivation, - base, - transformers, - }: - mkDerivation { - pname = "error-util"; - version = "0.0.1.2"; - sha256 = "01jfbq43ps6wjl9z5l1g8zfdi225mfn3xy59n6vrfxh0vsi1c6fz"; - libraryHaskellDepends = [ - base - transformers - ]; - description = "Set of utils and operators for error handling"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "errorcall-eq-instance" = callPackage ( { mkDerivation, @@ -217741,60 +123290,6 @@ self: { } ) { }; - "ersaconcat" = callPackage ( - { - mkDerivation, - base, - directory, - doctest, - filepath, - HTTP, - network-uri, - process, - QuickCheck, - tagsoup, - template-haskell, - }: - mkDerivation { - pname = "ersaconcat"; - version = "0.0.1"; - sha256 = "17qkxjiy237dr3y2mdmfyjrxs8l4rmbvdx5zmdmkcsb7c2dwalkn"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - directory - filepath - HTTP - network-uri - process - tagsoup - ]; - executableHaskellDepends = [ - base - directory - filepath - HTTP - network-uri - process - tagsoup - ]; - testHaskellDepends = [ - base - directory - doctest - filepath - QuickCheck - template-haskell - ]; - description = "A script to concatenate AIP ERSA"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "ersaconcat"; - broken = true; - } - ) { }; - "ersatz" = callPackage ( { mkDerivation, @@ -217900,86 +123395,6 @@ self: { } ) { }; - "ert" = callPackage ( - { - mkDerivation, - aeson, - attoparsec, - attoparsec-expr, - base, - bytestring, - regex-compat, - text, - unordered-containers, - vector, - yaml, - }: - mkDerivation { - pname = "ert"; - version = "0.0.2.1"; - sha256 = "0ica7vir4ragcc3xrkzlmhncnn0ddx8ky61cj32z7ginybfjq2ig"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson - attoparsec - attoparsec-expr - base - bytestring - regex-compat - text - unordered-containers - vector - ]; - executableHaskellDepends = [ - aeson - attoparsec - base - bytestring - yaml - ]; - description = "Easy Runtime Templates"; - license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - mainProgram = "ert"; - broken = true; - } - ) { }; - - "escape-artist" = callPackage ( - { - mkDerivation, - base, - bytestring, - hspec, - QuickCheck, - silently, - text, - }: - mkDerivation { - pname = "escape-artist"; - version = "1.2.0.1"; - sha256 = "1plr0vj3zjic1hy0bbr3sipqrawrym9ypakkihcdaw5fff98i4n3"; - libraryHaskellDepends = [ - base - bytestring - text - ]; - testHaskellDepends = [ - base - bytestring - hspec - QuickCheck - silently - text - ]; - description = "ANSI Escape Sequence Text Decoration Made Easy"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "escaped" = callPackage ( { mkDerivation, @@ -218022,126 +123437,6 @@ self: { } ) { }; - "escoger" = callPackage ( - { - mkDerivation, - base, - bytestring, - criterion, - HUnit, - mtl, - test-framework, - test-framework-hunit, - unix, - vector, - vector-algorithms, - vty, - }: - mkDerivation { - pname = "escoger"; - version = "0.1.0.0"; - sha256 = "0xcs1wg5d6dphnx255pcvvcszkpib0v8gy79w25grrrda5gyplvx"; - isLibrary = false; - isExecutable = true; - libraryHaskellDepends = [ - base - bytestring - mtl - unix - vector - vector-algorithms - vty - ]; - executableHaskellDepends = [ - base - bytestring - mtl - unix - vector - vty - ]; - testHaskellDepends = [ - base - HUnit - test-framework - test-framework-hunit - vector - ]; - benchmarkHaskellDepends = [ - base - bytestring - criterion - unix - vector - vty - ]; - doHaddock = false; - description = "Terminal fuzzy selector"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - mainProgram = "escoger"; - broken = true; - } - ) { }; - - "esotericbot" = callPackage ( - { - mkDerivation, - attoparsec, - base, - bytestring, - containers, - directory, - fgl, - mtl, - network, - stm, - stream-fusion, - tuple, - unix, - }: - mkDerivation { - pname = "esotericbot"; - version = "0.0.6"; - sha256 = "0r77y94ff210nqjga0xm2hrraa01dgjfaxs3ijrg11z6hfz523s7"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - attoparsec - base - bytestring - containers - directory - fgl - mtl - network - stm - stream-fusion - tuple - unix - ]; - executableHaskellDepends = [ - attoparsec - base - bytestring - containers - directory - fgl - mtl - network - stm - stream-fusion - tuple - unix - ]; - doHaddock = false; - description = "Esotericbot is a sophisticated, lightweight IRC bot"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "esotericbot"; - } - ) { }; - "espial" = callPackage ( { mkDerivation, @@ -218712,20 +124007,6 @@ self: { } ) { }; - "ess" = callPackage ( - { mkDerivation, base }: - mkDerivation { - pname = "ess"; - version = "0.1.0.0"; - sha256 = "0pxrs9vr6gc61md9q4rxdc5fikvjandqw2rygs0xamrqlna51bcq"; - libraryHaskellDepends = [ base ]; - description = "The type-level S combinator in Haskell"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "essence-of-live-coding" = callPackage ( { mkDerivation, @@ -219125,866 +124406,129 @@ self: { description = "General purpose live coding framework - vivid backend"; license = lib.licenses.bsd3; } - ) { }; - - "essence-of-live-coding-warp" = callPackage ( - { - mkDerivation, - base, - bytestring, - essence-of-live-coding, - http-client, - http-types, - wai, - warp, - }: - mkDerivation { - pname = "essence-of-live-coding-warp"; - version = "0.2.8"; - sha256 = "1562vw03zqpzzn9v9yss6xs9vfly9glg7j2im9cllivfzngw5fas"; - libraryHaskellDepends = [ - base - essence-of-live-coding - http-types - wai - warp - ]; - testHaskellDepends = [ - base - bytestring - essence-of-live-coding - http-client - ]; - description = "General purpose live coding framework"; - license = lib.licenses.bsd3; - maintainers = [ lib.maintainers.turion ]; - } - ) { }; - - "essence-of-live-coding-warp_0_2_9" = callPackage ( - { - mkDerivation, - base, - bytestring, - essence-of-live-coding, - http-client, - http-types, - wai, - warp, - }: - mkDerivation { - pname = "essence-of-live-coding-warp"; - version = "0.2.9"; - sha256 = "186va3094dyn1qb8phlhgdbnmqm3yxda9zn720amncflnbsbi3ps"; - libraryHaskellDepends = [ - base - essence-of-live-coding - http-types - wai - warp - ]; - testHaskellDepends = [ - base - bytestring - essence-of-live-coding - http-client - ]; - description = "General purpose live coding framework"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - maintainers = [ lib.maintainers.turion ]; - } - ) { }; - - "estimator" = callPackage ( - { - mkDerivation, - ad, - base, - distributive, - lens, - linear, - reflection, - }: - mkDerivation { - pname = "estimator"; - version = "1.2.0.0"; - sha256 = "168jpb5h8p4pz7rvv0x0yalgmjy9mbdssphj5k64l9kw18n26swg"; - libraryHaskellDepends = [ - ad - base - distributive - lens - linear - reflection - ]; - description = "State-space estimation algorithms such as Kalman Filters"; - license = lib.licenses.bsd3; - } - ) { }; - - "estimators" = callPackage ( - { - mkDerivation, - base, - binary, - containers, - deepseq, - list-tries, - MonadRandom, - mtl, - pretty, - prettyclass, - QuickCheck, - text, - }: - mkDerivation { - pname = "estimators"; - version = "0.1.4"; - sha256 = "0n7j2ay68m73f1mkfsxrrcs1rq0fpavwf58r50y7wirpm5f6agcy"; - libraryHaskellDepends = [ - base - binary - containers - deepseq - list-tries - MonadRandom - mtl - pretty - prettyclass - QuickCheck - text - ]; - description = "Tool for managing probability estimation"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "estreps" = callPackage ( - { - mkDerivation, - base, - bio, - bytestring, - containers, - random, - }: - mkDerivation { - pname = "estreps"; - version = "0.3.1"; - sha256 = "100pqygnwclmpzjhzpz3j34y8v75d8ldxg76f9jys90gb41kggpi"; - isLibrary = false; - isExecutable = true; - enableSeparateDataOutput = true; - executableHaskellDepends = [ - base - bio - bytestring - containers - random - ]; - description = "Repeats from ESTs"; - license = "GPL"; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "etc" = callPackage ( - { - mkDerivation, - aeson, - base, - rio, - tasty, - tasty-hunit, - template-haskell, - text, - typed-process, - unliftio, - }: - mkDerivation { - pname = "etc"; - version = "0.4.1.0"; - sha256 = "1j17g8jij4y782vwpx7b52fv9nwv4v4mygk2hbq6vihzkbrdbd31"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - aeson - base - rio - template-haskell - text - typed-process - unliftio - ]; - testHaskellDepends = [ - aeson - base - rio - tasty - tasty-hunit - ]; - description = "Declarative configuration spec for Haskell projects"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "etcd" = callPackage ( - { - mkDerivation, - aeson, - async, - base, - bytestring, - hspec, - http-conduit, - MonadRandom, - mtl, - text, - time, - }: - mkDerivation { - pname = "etcd"; - version = "1.0.5"; - sha256 = "0bqz678mnpw2jpywz2m76923cyq864xn537a9zsqhm6c80gc0vwi"; - revision = "1"; - editedCabalFile = "1ylq3wsl4ghjv1ib2zzfny7wdhwhwfnczl64wy18xipd5a6vrnsw"; - libraryHaskellDepends = [ - aeson - base - bytestring - http-conduit - text - time - ]; - testHaskellDepends = [ - async - base - hspec - MonadRandom - mtl - text - ]; - description = "Client for etcd, a highly-available key value store"; - license = "unknown"; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "eternal" = callPackage ( - { - mkDerivation, - base, - base-unicode-symbols, - Cabal, - transformers, - utf8-string, - }: - mkDerivation { - pname = "eternal"; - version = "0.1.7"; - sha256 = "1cnnj9w74b06smrc58mbk0vykab6zk63rq0250lg0xl1nd6847qm"; - setupHaskellDepends = [ - base - Cabal - ]; - libraryHaskellDepends = [ - base - base-unicode-symbols - transformers - utf8-string - ]; - description = "everything breaking the Fairbairn threshold"; - license = lib.licenses.bsd3; - } - ) { }; - - "eternity" = callPackage ( - { - mkDerivation, - attoparsec, - base, - cereal, - directory, - foldl, - potoki, - potoki-cereal, - QuickCheck, - quickcheck-instances, - rerebase, - tasty, - tasty-hunit, - tasty-quickcheck, - text, - }: - mkDerivation { - pname = "eternity"; - version = "0.1.3"; - sha256 = "02kwd0zad4p762pk75784bbiv6klhy47g64lpxg8kscfryxrd3ma"; - libraryHaskellDepends = [ - attoparsec - base - cereal - directory - foldl - potoki - potoki-cereal - text - ]; - testHaskellDepends = [ - cereal - directory - potoki - potoki-cereal - QuickCheck - quickcheck-instances - rerebase - tasty - tasty-hunit - tasty-quickcheck - ]; - description = "Native event-sourcing database"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "eternity-timestamped" = callPackage ( - { - mkDerivation, - attoparsec, - base, - cereal, - directory, - eternity, - generic-random, - hashable, - potoki, - QuickCheck, - text, - time, - timestamp, - }: - mkDerivation { - pname = "eternity-timestamped"; - version = "0.4.1"; - sha256 = "09s26v4gi6w5am0nn7nwqkja7g74jddjfzsqjq2bbafng4dxnmwy"; - libraryHaskellDepends = [ - attoparsec - base - cereal - directory - eternity - generic-random - hashable - potoki - QuickCheck - text - time - timestamp - ]; - description = "Automatic timestamping for Eternity"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "ether" = callPackage ( - { - mkDerivation, - base, - criterion, - deepseq, - exceptions, - ghc-prim, - lens, - mmorph, - monad-control, - mtl, - QuickCheck, - reflection, - tagged, - tasty, - tasty-quickcheck, - template-haskell, - transformers, - transformers-base, - transformers-lift, - writer-cps-mtl, - }: - mkDerivation { - pname = "ether"; - version = "0.5.1.0"; - sha256 = "1180l4z2cdgc6zj9pcr2c0lj28ka85kbk8sxd42fis65k2ahr61n"; - revision = "2"; - editedCabalFile = "0ax7jq2gpb12zh4v2gcpqpckznpbkc8b743k94fljvks0yq3kl0k"; - libraryHaskellDepends = [ - base - exceptions - mmorph - monad-control - mtl - reflection - tagged - template-haskell - transformers - transformers-base - transformers-lift - writer-cps-mtl - ]; - testHaskellDepends = [ - base - ghc-prim - lens - mtl - QuickCheck - tasty - tasty-quickcheck - transformers - ]; - benchmarkHaskellDepends = [ - base - criterion - deepseq - lens - mtl - transformers - ]; - description = "Monad transformers and classes"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "ethereum-analyzer" = callPackage ( - { - mkDerivation, - aeson, - base, - bimap, - bytestring, - containers, - ethereum-analyzer-deps, - extra, - fgl, - GenericPretty, - graphviz, - hexstring, - hoopl, - hspec, - pretty, - protolude, - split, - text, - unordered-containers, - wl-pprint-text, - }: - mkDerivation { - pname = "ethereum-analyzer"; - version = "3.3.4"; - sha256 = "0d9xw77i8dzb4sk3j7qhnbdand58vz1bhfvqb0qhvg0qdfg732vi"; - libraryHaskellDepends = [ - aeson - base - bimap - bytestring - containers - ethereum-analyzer-deps - extra - fgl - GenericPretty - graphviz - hexstring - hoopl - pretty - protolude - split - text - unordered-containers - wl-pprint-text - ]; - testHaskellDepends = [ - base - bytestring - ethereum-analyzer-deps - extra - GenericPretty - hoopl - hspec - protolude - text - wl-pprint-text - ]; - description = "A Ethereum contract analyzer"; - license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "ethereum-analyzer-cli" = callPackage ( - { - mkDerivation, - aeson, - base, - bytestring, - conduit-combinators, - directory, - ethereum-analyzer, - ethereum-analyzer-deps, - exceptions, - filepath, - hexstring, - hflags, - hoopl, - http-conduit, - json-rpc, - monad-logger, - mtl, - optparse-applicative, - optparse-text, - protolude, - text, - time, - tostring, - unordered-containers, - vector, - }: - mkDerivation { - pname = "ethereum-analyzer-cli"; - version = "3.3.4"; - sha256 = "1bpr5l8hsn6ggiqs3b4mw27r52ikpqibdhn4w22k1gk8mdfr9gzc"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson - base - bytestring - conduit-combinators - directory - ethereum-analyzer - ethereum-analyzer-deps - exceptions - filepath - hexstring - hoopl - http-conduit - json-rpc - monad-logger - mtl - optparse-applicative - optparse-text - protolude - text - time - tostring - unordered-containers - vector - ]; - executableHaskellDepends = [ - base - ethereum-analyzer-deps - hflags - monad-logger - protolude - ]; - description = "A CLI frontend for ethereum-analyzer"; - license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "ethereum-analyzer-deps" = callPackage ( - { - mkDerivation, - aeson, - ansi-wl-pprint, - base, - base16-bytestring, - binary, - bytestring, - containers, - deepseq, - fast-logger, - global-lock, - monad-logger, - split, - text, - }: - mkDerivation { - pname = "ethereum-analyzer-deps"; - version = "3.3.4"; - sha256 = "00v0f797z99yil4ihgirsyw9l4yiscg3aidlwjq4maixvzsqvr02"; - libraryHaskellDepends = [ - aeson - ansi-wl-pprint - base - base16-bytestring - binary - bytestring - containers - deepseq - fast-logger - global-lock - monad-logger - split - text - ]; - description = "Stripped dependencies of ethereum-analyzer"; - license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "ethereum-analyzer-webui" = callPackage ( - { - mkDerivation, - aeson, - base, - bytestring, - ethereum-analyzer, - ethereum-analyzer-deps, - exceptions, - hflags, - http-media, - http-types, - logging-effect, - monad-logger, - mtl, - neat-interpolation, - optparse-applicative, - prometheus-client, - prometheus-metrics-ghc, - protolude, - servant, - servant-server, - text, - time, + ) { }; + + "essence-of-live-coding-warp" = callPackage ( + { + mkDerivation, + base, + bytestring, + essence-of-live-coding, + http-client, + http-types, wai, - wai-extra, warp, - wl-pprint-text, }: mkDerivation { - pname = "ethereum-analyzer-webui"; - version = "3.3.4"; - sha256 = "11h5q6xmig8fk3bxk797s231pk5dnsvvxs9r68zbxv7jk466yq97"; - isLibrary = true; - isExecutable = true; + pname = "essence-of-live-coding-warp"; + version = "0.2.8"; + sha256 = "1562vw03zqpzzn9v9yss6xs9vfly9glg7j2im9cllivfzngw5fas"; libraryHaskellDepends = [ - aeson base - bytestring - ethereum-analyzer - exceptions - http-media + essence-of-live-coding http-types - logging-effect - mtl - neat-interpolation - optparse-applicative - prometheus-client - prometheus-metrics-ghc - protolude - servant - servant-server - text - time wai - wai-extra warp - wl-pprint-text ]; - executableHaskellDepends = [ + testHaskellDepends = [ base - ethereum-analyzer - ethereum-analyzer-deps - hflags - monad-logger + bytestring + essence-of-live-coding + http-client ]; - description = "A web frontend for ethereum-analyzer"; - license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; - mainProgram = "ethereum-analyzer-webui"; + description = "General purpose live coding framework"; + license = lib.licenses.bsd3; + maintainers = [ lib.maintainers.turion ]; } ) { }; - "ethereum-client-haskell" = callPackage ( + "essence-of-live-coding-warp_0_2_9" = callPackage ( { mkDerivation, - ansi-wl-pprint, - array, base, - base16-bytestring, - binary, bytestring, - cmdargs, - containers, - cryptohash, - data-default, - directory, - either, - entropy, - ethereum-merkle-patricia-db, - ethereum-rlp, - filepath, - haskoin, - HUnit, - leveldb-haskell, - mtl, - network, - network-simple, - nibblestring, - resourcet, - test-framework, - test-framework-hunit, - time, - transformers, - vector, + essence-of-live-coding, + http-client, + http-types, + wai, + warp, }: mkDerivation { - pname = "ethereum-client-haskell"; - version = "0.0.4"; - sha256 = "0dkvvs7bk4paqjmr1zihi14kp4cb28s33b18kd3a17lz1vd4qbfc"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - ansi-wl-pprint - array + pname = "essence-of-live-coding-warp"; + version = "0.2.9"; + sha256 = "186va3094dyn1qb8phlhgdbnmqm3yxda9zn720amncflnbsbi3ps"; + libraryHaskellDepends = [ base - base16-bytestring - binary - bytestring - cmdargs - containers - cryptohash - data-default - directory - either - entropy - ethereum-merkle-patricia-db - ethereum-rlp - filepath - haskoin - leveldb-haskell - mtl - network - network-simple - nibblestring - resourcet - time - transformers - vector + essence-of-live-coding + http-types + wai + warp ]; testHaskellDepends = [ base - containers - HUnit - test-framework - test-framework-hunit + bytestring + essence-of-live-coding + http-client ]; - description = "A Haskell version of an Ethereum client"; + description = "General purpose live coding framework"; license = lib.licenses.bsd3; hydraPlatforms = lib.platforms.none; + maintainers = [ lib.maintainers.turion ]; } ) { }; - "ethereum-merkle-patricia-db" = callPackage ( + "estimator" = callPackage ( { mkDerivation, - ansi-wl-pprint, + ad, base, - base16-bytestring, - binary, - bytestring, - containers, - cryptohash, - data-default, - ethereum-rlp, - HUnit, - leveldb-haskell, - nibblestring, - resourcet, - test-framework, - test-framework-hunit, - transformers, + distributive, + lens, + linear, + reflection, }: mkDerivation { - pname = "ethereum-merkle-patricia-db"; - version = "0.0.1"; - sha256 = "0pxncaam139nl99wm1i7fcnnsy683p6inasz10knfd2jsxcz8yr8"; + pname = "estimator"; + version = "1.2.0.0"; + sha256 = "168jpb5h8p4pz7rvv0x0yalgmjy9mbdssphj5k64l9kw18n26swg"; libraryHaskellDepends = [ - ansi-wl-pprint - base - base16-bytestring - binary - bytestring - cryptohash - data-default - ethereum-rlp - leveldb-haskell - nibblestring - resourcet - ]; - testHaskellDepends = [ - ansi-wl-pprint + ad base - base16-bytestring - binary - bytestring - containers - cryptohash - data-default - ethereum-rlp - HUnit - leveldb-haskell - nibblestring - resourcet - test-framework - test-framework-hunit - transformers + distributive + lens + linear + reflection ]; - description = "A modified Merkle Patricia DB"; + description = "State-space estimation algorithms such as Kalman Filters"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; } ) { }; - "ethereum-rlp" = callPackage ( + "eternal" = callPackage ( { mkDerivation, - ansi-wl-pprint, base, - base16-bytestring, - bytestring, - HUnit, - test-framework, - test-framework-hunit, + base-unicode-symbols, + Cabal, + transformers, + utf8-string, }: mkDerivation { - pname = "ethereum-rlp"; - version = "0.1.0"; - sha256 = "1jpq786qk4fvif87gwiqx13p08r46qq3cwl4ffqk5d36hqm2k1sm"; - libraryHaskellDepends = [ - ansi-wl-pprint + pname = "eternal"; + version = "0.1.7"; + sha256 = "1cnnj9w74b06smrc58mbk0vykab6zk63rq0250lg0xl1nd6847qm"; + setupHaskellDepends = [ base - base16-bytestring - bytestring + Cabal ]; - testHaskellDepends = [ + libraryHaskellDepends = [ base - HUnit - test-framework - test-framework-hunit + base-unicode-symbols + transformers + utf8-string ]; - description = "Ethereum Recursive Length Prefix Encoding"; - license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; - broken = true; + description = "everything breaking the Fairbairn threshold"; + license = lib.licenses.bsd3; } ) { }; @@ -220021,6 +124565,7 @@ self: { description = "Ethereum Recursive Length Prefix Encoding"; license = lib.licenses.mit; hydraPlatforms = lib.platforms.none; + broken = true; } ) { }; @@ -220134,98 +124679,6 @@ self: { } ) { }; - "euphoria" = callPackage ( - { - mkDerivation, - base, - containers, - criterion, - deepseq, - elerea, - enummapset-th, - hashable, - HUnit, - test-framework, - test-framework-hunit, - test-framework-th, - transformers, - unordered-containers, - }: - mkDerivation { - pname = "euphoria"; - version = "0.8.0.0"; - sha256 = "12hizvmalpbwdi1xxmy2vydcavi3lhf67cdh4zhvqgq6qrxkyw1h"; - libraryHaskellDepends = [ - base - containers - deepseq - elerea - enummapset-th - hashable - HUnit - transformers - unordered-containers - ]; - testHaskellDepends = [ - base - HUnit - test-framework - test-framework-hunit - test-framework-th - ]; - benchmarkHaskellDepends = [ - base - criterion - deepseq - enummapset-th - unordered-containers - ]; - description = "Dynamic network FRP with events and continuous values"; - license = lib.licenses.publicDomain; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "eurofxref" = callPackage ( - { - mkDerivation, - base, - bytestring, - conduit, - containers, - failure, - hexpat, - http-conduit, - http-types, - monad-control, - mtl, - time, - }: - mkDerivation { - pname = "eurofxref"; - version = "0.2.1"; - sha256 = "0zjf3rky2ww2nq4ryyz0069cv3ps1h29nwrgr2sk127bsik868x9"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base - bytestring - conduit - containers - failure - hexpat - http-conduit - http-types - monad-control - mtl - time - ]; - description = "Free foreign exchange/currency feed from the European Central Bank"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "evdev" = callPackage ( { mkDerivation, @@ -220363,57 +124816,6 @@ self: { } ) { }; - "eve-cli" = callPackage ( - { - mkDerivation, - base, - bytestring, - eve, - lens, - mtl, - text, - vty, - }: - mkDerivation { - pname = "eve-cli"; - version = "0.2.0.0"; - sha256 = "0l9c7mpmw7i9kgmirnkb84q6lfw0ry5z5j2049sv47klczdv285a"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - bytestring - eve - lens - mtl - text - vty - ]; - executableHaskellDepends = [ - base - bytestring - eve - lens - mtl - text - vty - ]; - testHaskellDepends = [ - base - bytestring - eve - lens - mtl - text - vty - ]; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "eve-cli-exe"; - broken = true; - } - ) { }; - "eved" = callPackage ( { mkDerivation, @@ -220474,54 +124876,6 @@ self: { } ) { }; - "event" = callPackage ( - { - mkDerivation, - base, - containers, - semigroups, - transformers, - }: - mkDerivation { - pname = "event"; - version = "0.1.4"; - sha256 = "0jl2s74zqnkpblf7b68bm32n1vk1rdjjyndb0waa2xsd5d0d34b7"; - libraryHaskellDepends = [ - base - containers - semigroups - transformers - ]; - description = "Monoidal, monadic and first-class events"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "event-driven" = callPackage ( - { - mkDerivation, - base, - monads-tf, - yjtools, - }: - mkDerivation { - pname = "event-driven"; - version = "0.0.2"; - sha256 = "1jkrc1k0ixjs95fvj36gr08igpx5vqff5zc6bi9f04ldxqz4wbap"; - libraryHaskellDepends = [ - base - monads-tf - yjtools - ]; - description = "library for event driven programming"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "event-handlers" = callPackage ( { mkDerivation, @@ -220579,42 +124933,6 @@ self: { } ) { }; - "event-monad" = callPackage ( - { - mkDerivation, - base, - containers, - event-handlers, - haskell98, - monad-loops, - mtl, - pretty, - prettyclass, - priority-queue, - stateref, - }: - mkDerivation { - pname = "event-monad"; - version = "0.0.3"; - sha256 = "1phs799i4da1nfgx530bp93n9xhzgnavilwlk8nz5vi3kd61gzf4"; - libraryHaskellDepends = [ - base - containers - event-handlers - haskell98 - monad-loops - mtl - pretty - prettyclass - priority-queue - stateref - ]; - description = "Event-graph simulation monad transformer"; - license = lib.licenses.publicDomain; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "event-transformer" = callPackage ( { mkDerivation, @@ -220639,338 +124957,6 @@ self: { } ) { }; - "eventful-core" = callPackage ( - { - mkDerivation, - aeson, - base, - containers, - contravariant, - hspec, - http-api-data, - HUnit, - path-pieces, - sum-type-boilerplate, - template-haskell, - text, - transformers, - uuid, - }: - mkDerivation { - pname = "eventful-core"; - version = "0.2.0"; - sha256 = "06chbjrxfxk0fr9lgdic6bmylnv3kz398l9drqr85r6qk1s5xxg0"; - libraryHaskellDepends = [ - aeson - base - containers - contravariant - http-api-data - path-pieces - sum-type-boilerplate - template-haskell - text - transformers - uuid - ]; - testHaskellDepends = [ - aeson - base - containers - contravariant - hspec - http-api-data - HUnit - path-pieces - sum-type-boilerplate - template-haskell - text - transformers - uuid - ]; - description = "Core module for eventful"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "eventful-dynamodb" = callPackage ( - { - mkDerivation, - aeson, - amazonka, - amazonka-dynamodb, - base, - bytestring, - conduit, - eventful-core, - eventful-test-helpers, - hspec, - HUnit, - lens, - QuickCheck, - quickcheck-instances, - safe, - text, - unordered-containers, - vector, - }: - mkDerivation { - pname = "eventful-dynamodb"; - version = "0.2.0"; - sha256 = "17ip1dr1jqrzy0hg5yjnv4a8qkgsab02jcbswlxfd3q7xx3d473b"; - libraryHaskellDepends = [ - aeson - amazonka - amazonka-dynamodb - base - bytestring - conduit - eventful-core - lens - safe - text - unordered-containers - vector - ]; - testHaskellDepends = [ - aeson - amazonka - amazonka-dynamodb - base - bytestring - conduit - eventful-core - eventful-test-helpers - hspec - HUnit - lens - QuickCheck - quickcheck-instances - safe - text - unordered-containers - vector - ]; - description = "Library for eventful DynamoDB event stores"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "eventful-memory" = callPackage ( - { - mkDerivation, - base, - containers, - eventful-core, - eventful-test-helpers, - hspec, - HUnit, - mtl, - safe, - stm, - }: - mkDerivation { - pname = "eventful-memory"; - version = "0.2.0"; - sha256 = "1fdd2z13lnk1zxhylriwblz96x90v4504abrj9rfbi732853wz3a"; - libraryHaskellDepends = [ - base - containers - eventful-core - mtl - safe - stm - ]; - testHaskellDepends = [ - base - containers - eventful-core - eventful-test-helpers - hspec - HUnit - mtl - safe - stm - ]; - description = "In-memory implementations for eventful"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "eventful-postgresql" = callPackage ( - { - mkDerivation, - aeson, - base, - bytestring, - eventful-core, - eventful-sql-common, - eventful-test-helpers, - hspec, - HUnit, - mtl, - persistent, - persistent-postgresql, - text, - }: - mkDerivation { - pname = "eventful-postgresql"; - version = "0.2.0"; - sha256 = "05syf8ychcnyl4q1q3afn4nqp4sw38y4c3p97b1h5gdanbsnis3b"; - libraryHaskellDepends = [ - aeson - base - bytestring - eventful-core - eventful-sql-common - mtl - persistent - text - ]; - testHaskellDepends = [ - aeson - base - bytestring - eventful-core - eventful-sql-common - eventful-test-helpers - hspec - HUnit - mtl - persistent - persistent-postgresql - text - ]; - description = "Postgres implementations for eventful"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "eventful-sql-common" = callPackage ( - { - mkDerivation, - aeson, - base, - bytestring, - eventful-core, - mtl, - persistent, - persistent-template, - text, - uuid, - }: - mkDerivation { - pname = "eventful-sql-common"; - version = "0.2.0"; - sha256 = "1g5f6rvb14hi81dby2hdcq444zhv2vl76ql4lsrh9gdmpf6a2vm4"; - revision = "1"; - editedCabalFile = "1w2qq0p4304zsjkwmqx79azpq5v0ajz5grg740vwkca8qvdvdq91"; - libraryHaskellDepends = [ - aeson - base - bytestring - eventful-core - mtl - persistent - persistent-template - text - uuid - ]; - description = "Common library for SQL event stores"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "eventful-sqlite" = callPackage ( - { - mkDerivation, - aeson, - base, - bytestring, - eventful-core, - eventful-sql-common, - eventful-test-helpers, - hspec, - HUnit, - mtl, - persistent, - persistent-sqlite, - text, - uuid, - }: - mkDerivation { - pname = "eventful-sqlite"; - version = "0.2.0"; - sha256 = "1vyz8401n63gqwgl1fa9dw1ar1dgki4hy6ably8lh2hzpl7fmfy0"; - libraryHaskellDepends = [ - aeson - base - bytestring - eventful-core - eventful-sql-common - mtl - persistent - text - uuid - ]; - testHaskellDepends = [ - aeson - base - bytestring - eventful-core - eventful-sql-common - eventful-test-helpers - hspec - HUnit - mtl - persistent - persistent-sqlite - text - uuid - ]; - description = "SQLite implementations for eventful"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "eventful-test-helpers" = callPackage ( - { - mkDerivation, - aeson, - aeson-casing, - base, - eventful-core, - extra, - hspec, - monad-logger, - text, - }: - mkDerivation { - pname = "eventful-test-helpers"; - version = "0.2.0"; - sha256 = "1q5z9rf5hxwpsyvm28hfnkr72zfsg7h5kz648bass9irvq69v7x9"; - libraryHaskellDepends = [ - aeson - aeson-casing - base - eventful-core - extra - hspec - monad-logger - text - ]; - description = "Common module used for eventful tests"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "eventlog-socket" = callPackage ( { mkDerivation, base }: mkDerivation { @@ -221058,100 +125044,6 @@ self: { } ) { }; - "eventloop" = callPackage ( - { - mkDerivation, - aeson, - base, - bytestring, - concurrent-utilities, - deepseq, - network, - stm, - suspend, - text, - timers, - websockets, - }: - mkDerivation { - pname = "eventloop"; - version = "0.8.2.8"; - sha256 = "1k10f8mihxb9xsvjkmzxphin4l49f5pwbfxfan1ar7wzxyv85vjj"; - revision = "1"; - editedCabalFile = "0qzrfk1riyf33b7kyjpdzzi8c40wh559wr0m0rjziykzxy0s92m2"; - libraryHaskellDepends = [ - aeson - base - bytestring - concurrent-utilities - deepseq - network - stm - suspend - text - timers - websockets - ]; - description = "A different take on an IO system. Based on Amanda's IO loop, this eventloop takes a function that maps input events to output events. It can easily be extended by modules that represent IO devices or join multiple modules together."; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "eventsource-api" = callPackage ( - { - mkDerivation, - aeson, - base, - bytestring, - containers, - enclosed-exceptions, - lifted-async, - lifted-base, - monad-control, - monad-loops, - mtl, - stm, - stm-chans, - streaming, - string-conversions, - text, - transformers-base, - unordered-containers, - uuid, - }: - mkDerivation { - pname = "eventsource-api"; - version = "1.5.1"; - sha256 = "04sqpzhmsisr93da55dhmprsbks0kkwsb3dg8fkx2w0casyb58f6"; - libraryHaskellDepends = [ - aeson - base - bytestring - containers - enclosed-exceptions - lifted-async - lifted-base - monad-control - monad-loops - mtl - stm - stm-chans - streaming - string-conversions - text - transformers-base - unordered-containers - uuid - ]; - description = "Provides an eventsourcing high level API"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "eventsource-geteventstore-store" = callPackage ( { mkDerivation, @@ -221205,7 +125097,6 @@ self: { ]; description = "GetEventStore store implementation"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; } ) { }; @@ -221244,95 +125135,6 @@ self: { description = "Provides common test specification for Store implementation"; license = lib.licenses.bsd3; hydraPlatforms = lib.platforms.none; - } - ) { }; - - "eventsource-stub-store" = callPackage ( - { - mkDerivation, - aeson, - async, - base, - containers, - eventsource-api, - eventsource-store-specs, - mtl, - protolude, - stm, - streaming, - tasty, - tasty-hspec, - transformers-base, - }: - mkDerivation { - pname = "eventsource-stub-store"; - version = "1.1.1"; - sha256 = "1xd3ngjjpimfpglkgad3r9dmd7sf2mq3kdlbqs4d6xz28gd7vh7y"; - libraryHaskellDepends = [ - async - base - containers - eventsource-api - mtl - stm - streaming - transformers-base - ]; - testHaskellDepends = [ - aeson - base - eventsource-api - eventsource-store-specs - protolude - streaming - tasty - tasty-hspec - ]; - description = "An in-memory stub store implementation"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "eventsourced" = callPackage ( - { - mkDerivation, - base, - blaze-builder, - bytestring, - HUnit, - wai, - wai-extra, - warp, - }: - mkDerivation { - pname = "eventsourced"; - version = "1.1.1.0"; - sha256 = "1142g4a7rjp0wq2llh0q9zg0v41avz3ld83zqvg9j6xhlh1zxa51"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - blaze-builder - bytestring - wai - wai-extra - ]; - executableHaskellDepends = [ - base - warp - ]; - testHaskellDepends = [ - base - blaze-builder - bytestring - HUnit - wai-extra - ]; - description = "Server-Sent Events the UNIX way"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - mainProgram = "eventsourced"; broken = true; } ) { }; @@ -221773,26 +125575,6 @@ self: { } ) { }; - "every-bit-counts" = callPackage ( - { - mkDerivation, - base, - haskell98, - }: - mkDerivation { - pname = "every-bit-counts"; - version = "0.1"; - sha256 = "0r959iyd5nsw3sj7p0gwsccdgaald9lwisg0lvq9qynyz09kh4vj"; - libraryHaskellDepends = [ - base - haskell98 - ]; - description = "A functional pearl on encoding and decoding using question-and-answer strategies"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "evm-opcodes" = callPackage ( { mkDerivation, @@ -221890,57 +125672,6 @@ self: { } ) { }; - "ewe" = callPackage ( - { - mkDerivation, - alex, - array, - base, - Cabal, - containers, - happy, - mtl, - pretty, - transformers, - uuagc, - uuagc-cabal, - uulib, - }: - mkDerivation { - pname = "ewe"; - version = "0.3.1.1"; - sha256 = "1kxjsxl0idy82xynjbafw7695m9aylgs9bpkr2gvcmzs5lpyni8p"; - isLibrary = false; - isExecutable = true; - setupHaskellDepends = [ - base - Cabal - uuagc - uuagc-cabal - uulib - ]; - executableHaskellDepends = [ - array - base - containers - mtl - pretty - transformers - uuagc-cabal - ]; - executableToolDepends = [ - alex - happy - uuagc - ]; - description = "An interpreter for EWE programming language"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "ewe"; - broken = true; - } - ) { }; - "ex-pool" = callPackage ( { mkDerivation, @@ -221982,37 +125713,6 @@ self: { } ) { }; - "exact-cover" = callPackage ( - { - mkDerivation, - base, - containers, - tasty, - tasty-hunit, - }: - mkDerivation { - pname = "exact-cover"; - version = "0.1.0.0"; - sha256 = "0qnnr1ri953jybgifivpkjmnq72n67bm2rmiaqhzx4ck01x0grz4"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - containers - ]; - testHaskellDepends = [ - base - containers - tasty - tasty-hunit - ]; - description = "Efficient exact cover solver"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "exact-kantorovich" = callPackage ( { mkDerivation, @@ -222133,20 +125833,6 @@ self: { } ) { }; - "exact-real-positional" = callPackage ( - { mkDerivation, base }: - mkDerivation { - pname = "exact-real-positional"; - version = "0.0.0"; - sha256 = "0qh1aqyi2k7djwqykj888hxjisip9ahg2ap43cj0xmdvfh9p0351"; - libraryHaskellDepends = [ base ]; - description = "Framework for Exact Real Arithmetic in the Positional Number System"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "example-haskell-project" = callPackage ( { mkDerivation, base }: mkDerivation { @@ -222163,31 +125849,6 @@ self: { } ) { }; - "except-exceptions" = callPackage ( - { - mkDerivation, - base, - exceptions, - transformers, - }: - mkDerivation { - pname = "except-exceptions"; - version = "0.1"; - sha256 = "03d94arrq8ynkbchv8w2vp4q3wka81hkrmkll6bd9p5kwhq28nzs"; - revision = "1"; - editedCabalFile = "09i2w1ry7vmjc0a4d05a4hs7kdj3brn5jrxsy638f6acj41g5dhk"; - libraryHaskellDepends = [ - base - exceptions - transformers - ]; - description = "Safely deal with exceptions in ExceptT"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "exception-hierarchy" = callPackage ( { mkDerivation, @@ -222230,56 +125891,6 @@ self: { } ) { }; - "exception-monads-fd" = callPackage ( - { - mkDerivation, - base, - exception-transformers, - monads-fd, - transformers, - }: - mkDerivation { - pname = "exception-monads-fd"; - version = "0.2"; - sha256 = "1wrhi9h2k068f0q0aqvpmlyx3318znm137xnvx7icf5shlpsilvi"; - libraryHaskellDepends = [ - base - exception-transformers - monads-fd - transformers - ]; - description = "Exception monad transformer instances for monads-fd classes"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "exception-monads-tf" = callPackage ( - { - mkDerivation, - base, - exception-transformers, - monads-tf, - transformers, - }: - mkDerivation { - pname = "exception-monads-tf"; - version = "0.4.0.1"; - sha256 = "1wf1ab4wrrw3c8ifd44rgckqkkyc0pb3m7k0pnv22kfkcimz2hs4"; - libraryHaskellDepends = [ - base - exception-transformers - monads-tf - transformers - ]; - description = "Exception monad transformer instances for monads-tf classes"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "exception-mtl" = callPackage ( { mkDerivation, @@ -222358,60 +125969,6 @@ self: { } ) { }; - "exceptional" = callPackage ( - { - mkDerivation, - base, - exceptions, - }: - mkDerivation { - pname = "exceptional"; - version = "0.3.0.0"; - sha256 = "01lzx4ihdvyivjnkvn78hcdsk83dvm6iy9v5q1f28kd1iv96x1ns"; - libraryHaskellDepends = [ - base - exceptions - ]; - description = "Essentially the Maybe type with error messages"; - license = lib.licenses.bsd2; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "exceptionfree-readfile" = callPackage ( - { - mkDerivation, - base, - criterion, - deepseq, - hspec, - process, - temporary, - }: - mkDerivation { - pname = "exceptionfree-readfile"; - version = "0.1.0.0"; - sha256 = "12czqrkbb1f69d2fxjnzzrxlyayvs24k6pwq9kclfsql8iscn063"; - libraryHaskellDepends = [ base ]; - testHaskellDepends = [ - base - hspec - process - temporary - ]; - benchmarkHaskellDepends = [ - base - criterion - deepseq - ]; - description = "An exception-free readFile for use with '+RTS -xc -RTS' projects"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "exceptions_0_10_10" = callPackage ( { mkDerivation, @@ -222489,121 +126046,6 @@ self: { } ) { }; - "exchangerates" = callPackage ( - { - mkDerivation, - aeson, - base, - containers, - directory, - genvalidity, - genvalidity-containers, - genvalidity-hspec, - genvalidity-hspec-aeson, - genvalidity-text, - genvalidity-time, - hspec, - http-api-data, - http-client, - http-client-tls, - mtl, - QuickCheck, - servant, - servant-client, - stm, - text, - time, - validity, - validity-containers, - validity-time, - yaml, - }: - mkDerivation { - pname = "exchangerates"; - version = "0.0.0.0"; - sha256 = "1g9q65pv94bnr70793s07sp5xd242hrh5c8v34l8rv3wk8v0mr77"; - libraryHaskellDepends = [ - aeson - base - containers - directory - http-api-data - http-client - http-client-tls - mtl - servant - servant-client - stm - text - time - validity - validity-containers - validity-time - yaml - ]; - testHaskellDepends = [ - aeson - base - containers - directory - genvalidity - genvalidity-containers - genvalidity-hspec - genvalidity-hspec-aeson - genvalidity-text - genvalidity-time - hspec - http-api-data - http-client - http-client-tls - mtl - QuickCheck - servant - servant-client - stm - text - time - validity - validity-containers - validity-time - yaml - ]; - description = "A Haskell client for https://exchangeratesapi.io/"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "execs" = callPackage ( - { - mkDerivation, - base, - directory, - process, - text, - }: - mkDerivation { - pname = "execs"; - version = "0.1.0.0"; - sha256 = "04ykapa0r1kh41grr8savkqglwh8y979rg9dpzlvhypvkvrv2k02"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base ]; - executableHaskellDepends = [ - base - directory - process - text - ]; - description = "Tool to run stack exec prj-exe more easy"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - mainProgram = "execs"; - broken = true; - } - ) { }; - "executable-hash" = callPackage ( { mkDerivation, @@ -222673,124 +126115,6 @@ self: { } ) { }; - "executor" = callPackage ( - { - mkDerivation, - async, - base, - doctest, - hspec, - process, - }: - mkDerivation { - pname = "executor"; - version = "0.0.4"; - sha256 = "0knqdlq3ziwpx5dx7i015009ks1qyhzs8cz0sx383xy5im5wcrg7"; - libraryHaskellDepends = [ - async - base - process - ]; - testHaskellDepends = [ - async - base - doctest - hspec - process - ]; - description = "Shell helpers"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "exference" = callPackage ( - { - mkDerivation, - base, - base-orphans, - bifunctors, - containers, - data-pprint, - deepseq, - deepseq-generics, - directory, - either, - hashable, - haskell-src-exts, - hood, - lens, - mmorph, - mtl, - multistate, - parsec, - pqueue, - pretty, - process, - safe, - split, - template-haskell, - transformers, - unordered-containers, - vector, - }: - mkDerivation { - pname = "exference"; - version = "1.6.0.0"; - sha256 = "1lnalnsn3zjcwhl8p1035ckjgp4kpjv6kfai4dqqji2rpbm1sgrh"; - revision = "4"; - editedCabalFile = "1yrc2p8p48cx8qjpyvfqpbvs8dcv2m5k5x89s04jk9ic26wdwk9k"; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base - base-orphans - bifunctors - containers - deepseq - deepseq-generics - directory - either - hashable - haskell-src-exts - hood - lens - mmorph - mtl - multistate - parsec - pqueue - pretty - process - safe - split - template-haskell - transformers - unordered-containers - vector - ]; - executableHaskellDepends = [ - base - containers - data-pprint - deepseq - either - haskell-src-exts - hood - mtl - multistate - process - transformers - ]; - description = "Tool to search/generate (haskell) expressions with a given type"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "exference"; - } - ) { }; - "exh" = callPackage ( { mkDerivation, @@ -222865,110 +126189,6 @@ self: { } ) { }; - "exhaustive" = callPackage ( - { - mkDerivation, - base, - generics-sop, - template-haskell, - transformers, - }: - mkDerivation { - pname = "exhaustive"; - version = "1.1.9"; - sha256 = "1mpqw30fwv6h5vwkbd5xzc5dn24l0185jzsrx71rmic9nx043xc6"; - libraryHaskellDepends = [ - base - generics-sop - template-haskell - transformers - ]; - description = "Compile time checks that a computation considers producing data through all possible constructors"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "exherbo-cabal" = callPackage ( - { - mkDerivation, - ansi-wl-pprint, - base, - bytestring, - Cabal, - containers, - data-default, - deepseq, - directory, - doctest, - filepath, - haddock-library, - http-client, - http-types, - optparse-applicative, - pcre-light, - pretty, - }: - mkDerivation { - pname = "exherbo-cabal"; - version = "0.2.1.1"; - sha256 = "0gfsqsk30cyz3m0n68yv2f6gf2qmvm60w7k3kgybyz08xpn49drh"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - Cabal - containers - data-default - haddock-library - pretty - ]; - executableHaskellDepends = [ - ansi-wl-pprint - base - bytestring - Cabal - data-default - deepseq - directory - filepath - http-client - http-types - optparse-applicative - pcre-light - ]; - testHaskellDepends = [ - base - doctest - ]; - description = "Exheres generator for cabal packages"; - license = lib.licenses.gpl2Only; - hydraPlatforms = lib.platforms.none; - mainProgram = "exherbo-cabal"; - broken = true; - } - ) { }; - - "exif" = callPackage ( - { - mkDerivation, - base, - exif, - }: - mkDerivation { - pname = "exif"; - version = "3000.0.0"; - sha256 = "0w0l4xk3qwfiw10880729mwfdkx4xpfn9ffdw7fi5swyhinjh6wi"; - libraryHaskellDepends = [ base ]; - librarySystemDepends = [ exif ]; - description = "A Haskell binding to a subset of libexif"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { inherit (pkgs) exif; }; - "exiftool" = callPackage ( { mkDerivation, @@ -223006,78 +126226,6 @@ self: { } ) { }; - "exigo-schema" = callPackage ( - { - mkDerivation, - aeson, - base, - binary, - bytestring, - directory, - esqueleto, - exceptions, - hint, - hspec, - hspec-core, - interpolate, - monad-logger, - mtl, - persistent, - persistent-sqlite, - persistent-template, - QuickCheck, - quickcheck-text, - resourcet, - template-haskell, - temporary, - text, - th-lift-instances, - }: - mkDerivation { - pname = "exigo-schema"; - version = "0.2.0.2"; - sha256 = "0kaja735bsgzywhfa16wg5kvjc1c89gvm503gxxyhkakacmp2002"; - libraryHaskellDepends = [ - aeson - base - binary - bytestring - persistent - persistent-template - template-haskell - text - th-lift-instances - ]; - testHaskellDepends = [ - aeson - base - bytestring - directory - esqueleto - exceptions - hint - hspec - hspec-core - interpolate - monad-logger - mtl - persistent - persistent-sqlite - persistent-template - QuickCheck - quickcheck-text - resourcet - template-haskell - temporary - text - ]; - description = "database schema for exigo marking/assessment tools"; - license = lib.licenses.bsd2; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "exinst" = callPackage ( { mkDerivation, @@ -223280,58 +126428,6 @@ self: { } ) { }; - "exinst-deepseq" = callPackage ( - { - mkDerivation, - base, - constraints, - deepseq, - exinst, - }: - mkDerivation { - pname = "exinst-deepseq"; - version = "0.2"; - sha256 = "0q9fq5w6lir3qqybf8d0j0hhs33zsvv1xg49669cv5irl9hixh9z"; - libraryHaskellDepends = [ - base - constraints - deepseq - exinst - ]; - description = "Derive instances for the `deepseq` library for your existential types"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "exinst-hashable" = callPackage ( - { - mkDerivation, - base, - constraints, - exinst, - hashable, - singletons, - }: - mkDerivation { - pname = "exinst-hashable"; - version = "0.2"; - sha256 = "1w754339rzj9zyxza21z3dhkaihv9b1avn3301rrkszzaa7sakdy"; - libraryHaskellDepends = [ - base - constraints - exinst - hashable - singletons - ]; - description = "Derive instances for the `hashable` library for your existential types"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "exinst-serialise" = callPackage ( { mkDerivation, @@ -223372,28 +126468,6 @@ self: { } ) { }; - "exist" = callPackage ( - { - mkDerivation, - base, - base-unicode-symbols, - util, - }: - mkDerivation { - pname = "exist"; - version = "0.2.0.0"; - sha256 = "0w2ip29f99qzi3wxicydkv991ws0lhnar3w0qka54r2mjb3xzrk9"; - libraryHaskellDepends = [ - base - base-unicode-symbols - util - ]; - description = "Dependent sum type"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "exist-instances" = callPackage ( { mkDerivation, @@ -223416,7 +126490,6 @@ self: { ]; description = "Instances for \"exist\" package (requires more language extensions and dependencies)"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; } ) { }; @@ -223463,27 +126536,6 @@ self: { } ) { control-invariants = null; }; - "exists" = callPackage ( - { - mkDerivation, - base, - contravariant, - }: - mkDerivation { - pname = "exists"; - version = "0.2"; - sha256 = "1f7v2f7jmqx0nkl2wla88mnb21nava74b73rvsmfbj4kxmwchsgy"; - libraryHaskellDepends = [ - base - contravariant - ]; - description = "Existential datatypes holding evidence of constraints"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "exit-codes" = callPackage ( { mkDerivation, base }: mkDerivation { @@ -223645,63 +126697,6 @@ self: { } ) { }; - "exp-cache" = callPackage ( - { - mkDerivation, - array, - base, - containers, - criterion, - deepseq, - hashable, - HUnit, - psqueues, - QuickCheck, - random, - tasty, - tasty-hunit, - tasty-quickcheck, - time, - unordered-containers, - }: - mkDerivation { - pname = "exp-cache"; - version = "0.1.0.2"; - sha256 = "1r3k4l44hii964c2xm4zb981hi0pklzik62fxr3zwyzwdjzdd36a"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - array - base - containers - deepseq - hashable - psqueues - random - time - unordered-containers - ]; - executableHaskellDepends = [ - base - criterion - random - ]; - testHaskellDepends = [ - base - HUnit - QuickCheck - random - tasty - tasty-hunit - tasty-quickcheck - ]; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - mainProgram = "exp-cache-benchmarks"; - broken = true; - } - ) { }; - "exp-extended" = callPackage ( { mkDerivation, base }: mkDerivation { @@ -223775,62 +126770,6 @@ self: { } ) { }; - "expand" = callPackage ( - { - mkDerivation, - AspectAG, - base, - HList, - murder, - uu-parsinglib, - }: - mkDerivation { - pname = "expand"; - version = "0.0.1"; - sha256 = "0i8agr9np8pg40z58z8jz1fvq3vqjk2sx247dn33mvqyd03hnbss"; - libraryHaskellDepends = [ - AspectAG - base - HList - murder - uu-parsinglib - ]; - description = "Extensible Pandoc"; - license = "LGPL"; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "expat-enumerator" = callPackage ( - { - mkDerivation, - base, - bytestring, - enumerator, - hexpat, - text, - transformers, - xml-types, - }: - mkDerivation { - pname = "expat-enumerator"; - version = "0.1.0.3"; - sha256 = "0alllaa9qj94jp99pyvbh4ckdvb43aba2l2jmigazqvbc9db03mx"; - libraryHaskellDepends = [ - base - bytestring - enumerator - hexpat - text - transformers - xml-types - ]; - description = "Enumerator-based API for Expat"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "experimenter" = callPackage ( { mkDerivation, @@ -223987,54 +126926,6 @@ self: { } ) { }; - "expiring-containers" = callPackage ( - { - mkDerivation, - base, - containers, - hashable, - int-multimap, - QuickCheck, - quickcheck-instances, - rerebase, - tasty, - tasty-hunit, - tasty-quickcheck, - time, - timestamp, - unordered-containers, - }: - mkDerivation { - pname = "expiring-containers"; - version = "0.2.2.1"; - sha256 = "0zicnfwamm6yx91pb92qjzv0n25cwdz4krymnvpn5vyhh96k3kwh"; - revision = "1"; - editedCabalFile = "0wp4p8ax6cx6z8h7kjjajlr3h2155gzr5zffh2ky9w31ax9iggw9"; - libraryHaskellDepends = [ - base - containers - hashable - int-multimap - time - timestamp - unordered-containers - ]; - testHaskellDepends = [ - int-multimap - QuickCheck - quickcheck-instances - rerebase - tasty - tasty-hunit - tasty-quickcheck - timestamp - ]; - description = "Expiring containers"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "expiring-mvar" = callPackage ( { mkDerivation, base }: mkDerivation { @@ -224047,32 +126938,6 @@ self: { } ) { }; - "explain" = callPackage ( - { - mkDerivation, - ansi-wl-pprint, - base, - haskell-src-exts, - }: - mkDerivation { - pname = "explain"; - version = "0.1.0.1"; - sha256 = "14n8ic5mg2819s9bk4czwfxrkyz96c2lvnksv1hq5vwr579rvjx2"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - ansi-wl-pprint - base - haskell-src-exts - ]; - description = "Show how expressions are parsed"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - mainProgram = "explain"; - broken = true; - } - ) { }; - "explainable-predicates" = callPackage ( { mkDerivation, @@ -224099,583 +126964,116 @@ self: { mono-traversable QuickCheck regex-tdfa - syb - template-haskell - ]; - testHaskellDepends = [ - base - doctest-exitcode-stdio - doctest-lib - hspec - ]; - description = "Predicates that can explain themselves"; - license = lib.licenses.bsd3; - } - ) { }; - - "explicit-constraint-lens" = callPackage ( - { - mkDerivation, - base, - tasty, - tasty-hunit, - }: - mkDerivation { - pname = "explicit-constraint-lens"; - version = "0.1.0.0"; - sha256 = "181frvmgv65rcjpiya4gswvpq9ahz97c8lalhgmwknx9jx5nqd98"; - revision = "1"; - editedCabalFile = "06mj6zxj1l439g6l5ibrxbsr6ff2c199i3dlf0k1yxjck1dfblv4"; - libraryHaskellDepends = [ base ]; - testHaskellDepends = [ - base - tasty - tasty-hunit - ]; - description = "Fully-flexible polymorphic lenses, without any bizarre profunctors"; - license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "explicit-determinant" = callPackage ( - { mkDerivation, base }: - mkDerivation { - pname = "explicit-determinant"; - version = "0.1.0.0"; - sha256 = "0g20kblzvhx53mi82frpx29x0nsfjrzsanqq8f6yw22lh47pbm4y"; - libraryHaskellDepends = [ base ]; - description = "explicit computation of determinant of small matrices"; - license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "explicit-exception" = callPackage ( - { - mkDerivation, - base, - deepseq, - semigroups, - transformers, - }: - mkDerivation { - pname = "explicit-exception"; - version = "0.2"; - sha256 = "0n2cgliy0ls9740crzpk19wl3cbk5zq90x7qmhhw8idbip7xidni"; - revision = "2"; - editedCabalFile = "0wixdj39wxyfy82yp344nn38b6d1cmf32jmx89x98j4pvqb65cy1"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - deepseq - semigroups - transformers - ]; - description = "Exceptions which are explicit in the type signature"; - license = lib.licenses.bsd3; - maintainers = [ lib.maintainers.thielema ]; - } - ) { }; - - "explicit-iomodes" = callPackage ( - { - mkDerivation, - base, - base-unicode-symbols, - tagged, - }: - mkDerivation { - pname = "explicit-iomodes"; - version = "0.6.0.5"; - sha256 = "0irz1zy6iaipym73x343zvr6cqym6ci2vbjbyr564d29ymd6ldzd"; - libraryHaskellDepends = [ - base - base-unicode-symbols - tagged - ]; - description = "File handles with explicit IOModes"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "explicit-iomodes-bytestring" = callPackage ( - { - mkDerivation, - base, - bytestring, - explicit-iomodes, - }: - mkDerivation { - pname = "explicit-iomodes-bytestring"; - version = "0.2.0.2"; - sha256 = "0h3dlgkd2gx8zr3sh949nhqgrdg943dgpp4v1n599jjjpqpw16hj"; - libraryHaskellDepends = [ - base - bytestring - explicit-iomodes - ]; - description = "Extends explicit-iomodes with ByteString operations"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "explicit-iomodes-text" = callPackage ( - { - mkDerivation, - base, - explicit-iomodes, - text, - }: - mkDerivation { - pname = "explicit-iomodes-text"; - version = "0.1.0.8"; - sha256 = "12ny5wa1j1wp8fbg5k8zkv4a3axmssxcvfvhg3frsm4dych6hmyg"; - libraryHaskellDepends = [ - base - explicit-iomodes - text - ]; - description = "Extends explicit-iomodes with Text operations"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "explicit-sharing" = callPackage ( - { - mkDerivation, - base, - containers, - derive, - mtl, - template-haskell, - }: - mkDerivation { - pname = "explicit-sharing"; - version = "0.9"; - sha256 = "0jshv56i60mzlfddvfkcx0j7rzqdlhy6h09bmqci15wzisvpvjpq"; - libraryHaskellDepends = [ - base - containers - derive - mtl - template-haskell - ]; - description = "Explicit Sharing of Monadic Effects"; - license = lib.licenses.publicDomain; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "explore" = callPackage ( - { - mkDerivation, - array, - base, - directory, - pngload, - }: - mkDerivation { - pname = "explore"; - version = "0.0.7.2"; - sha256 = "18x2gw9w2jzisyl2hsp2rlml6slnlbjpqbadqcbcm8pamnl7w1fc"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - array - base - directory - pngload - ]; - description = "Experimental Plot data Reconstructor"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "explore"; - } - ) { }; - - "exploring-interpreters" = callPackage ( - { - mkDerivation, - aeson, - attoparsec, - base, - bytestring, - containers, - exceptions, - fgl, - haskeline, - http-types, - mtl, - network, - scientific, - text, - transformers, - }: - mkDerivation { - pname = "exploring-interpreters"; - version = "1.6.0.0"; - sha256 = "1mnfqmzbnaii24xdqvhpbnfn3fv380jx75iqm7dw8qxjc46xf4iz"; - libraryHaskellDepends = [ - aeson - attoparsec - base - bytestring - containers - exceptions - fgl - haskeline - http-types - mtl - network - scientific - text - transformers - ]; - description = "A generic exploring interpreter for exploratory programming"; - license = lib.licenses.bsd3; - } - ) { }; - - "exposed-containers" = callPackage ( - { - mkDerivation, - array, - base, - ChasingBottoms, - deepseq, - ghc-prim, - HUnit, - QuickCheck, - test-framework, - test-framework-hunit, - test-framework-quickcheck2, - }: - mkDerivation { - pname = "exposed-containers"; - version = "0.5.5.1"; - sha256 = "09ck4hadxgdlqpgxr45jxr261mzkzihmwd5b02xi05z8034bhqk7"; - revision = "1"; - editedCabalFile = "0p36wbk8rmx6kqh5g2nfw26a8fsc8da3039ahy5l7kl8fa56yl95"; - libraryHaskellDepends = [ - array - base - deepseq - ghc-prim - ]; - testHaskellDepends = [ - array - base - ChasingBottoms - deepseq - ghc-prim - HUnit - QuickCheck - test-framework - test-framework-hunit - test-framework-quickcheck2 - ]; - description = "A distribution of the 'containers' package, with all modules exposed"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "express" = callPackage ( - { - mkDerivation, - base, - leancheck, - template-haskell, - }: - mkDerivation { - pname = "express"; - version = "1.0.18"; - sha256 = "1p0q2c2v6dbcdi71m8zr3kp4q54fi2rrxgfsbwkivq9vvwbbh8gs"; - libraryHaskellDepends = [ - base - template-haskell - ]; - testHaskellDepends = [ - base - leancheck - ]; - benchmarkHaskellDepends = [ - base - leancheck - ]; - description = "Dynamically-typed expressions involving function application and variables"; - license = lib.licenses.bsd3; - } - ) { }; - - "expression-parser" = callPackage ( - { mkDerivation, base }: - mkDerivation { - pname = "expression-parser"; - version = "0.1"; - sha256 = "1ldp1f2c823byx4ag8jpmq9bhw26lq98fz7ljqslffs37pc098qs"; - libraryHaskellDepends = [ base ]; - description = "Generalization of parsec's expression parser"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "expressions" = callPackage ( - { - mkDerivation, - attoparsec, - base, - containers, - free, - lattices, - singletons, - text, - transformers, - }: - mkDerivation { - pname = "expressions"; - version = "0.5"; - sha256 = "1xp6rfiak6a8mg20xjdimcqna1g99a7gafgzrvpala3i06wjb3ia"; - libraryHaskellDepends = [ - attoparsec - base - containers - free - lattices - singletons - text - transformers - ]; - testHaskellDepends = [ - base - singletons - text - ]; - description = "Expressions and Formulae a la carte"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "expressions-z3" = callPackage ( - { - mkDerivation, - base, - containers, - expressions, - list-t, - singletons, - transformers, - z3, - }: - mkDerivation { - pname = "expressions-z3"; - version = "0.5"; - sha256 = "1l9h88hvbnl0y8yz5drzn2smnll3wsk6ni4qn752m51g9hm4qvjf"; - libraryHaskellDepends = [ - base - containers - expressions - list-t - singletons - transformers - z3 - ]; - testHaskellDepends = [ - base - containers - expressions - singletons - transformers - z3 - ]; - description = "Encode and Decode expressions from Z3 ASTs"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "expresso" = callPackage ( - { - mkDerivation, - base, - containers, - directory, - filepath, - hashable, - haskeline, - mtl, - parsec, - tasty, - tasty-hunit, - template-haskell, - text, - unordered-containers, - wl-pprint, - }: - mkDerivation { - pname = "expresso"; - version = "0.1.2.3"; - sha256 = "1kbvwd51whmqgis8c4adl5mdbjpcvzm9ya6jb3ka9w8ciiyh80v8"; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base - containers - directory - filepath - hashable - haskeline - mtl - parsec - template-haskell - text - unordered-containers - wl-pprint - ]; - executableHaskellDepends = [ - base - containers - directory - filepath - hashable - haskeline - mtl - parsec - text - unordered-containers - wl-pprint - ]; - testHaskellDepends = [ - base - containers - directory - filepath - hashable - haskeline - mtl - parsec - tasty - tasty-hunit - text - unordered-containers - wl-pprint + syb + template-haskell + ]; + testHaskellDepends = [ + base + doctest-exitcode-stdio + doctest-lib + hspec ]; - description = "A simple expressions language based on row types"; + description = "Predicates that can explain themselves"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "expresso"; - broken = true; } ) { }; - "extcore" = callPackage ( + "explicit-exception" = callPackage ( { mkDerivation, - array, base, - bytestring, - containers, - directory, - filepath, - mtl, - parsec, - pretty, - syb, + deepseq, + semigroups, + transformers, }: mkDerivation { - pname = "extcore"; - version = "1.0.2"; - sha256 = "1dpn4dbbn5d3zqrhxkg8nvb97vp9pf61gwa46yf218nvwgqvx437"; - enableSeparateDataOutput = true; + pname = "explicit-exception"; + version = "0.2"; + sha256 = "0n2cgliy0ls9740crzpk19wl3cbk5zq90x7qmhhw8idbip7xidni"; + revision = "2"; + editedCabalFile = "0wixdj39wxyfy82yp344nn38b6d1cmf32jmx89x98j4pvqb65cy1"; + isLibrary = true; + isExecutable = true; libraryHaskellDepends = [ - array base - bytestring - containers - directory - filepath - mtl - parsec - pretty - syb + deepseq + semigroups + transformers ]; - description = "Libraries for processing GHC Core"; + description = "Exceptions which are explicit in the type signature"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; + maintainers = [ lib.maintainers.thielema ]; } ) { }; - "extemp" = callPackage ( + "exploring-interpreters" = callPackage ( { mkDerivation, + aeson, + attoparsec, base, bytestring, containers, - feed, - happstack-auth, - happstack-server, - happstack-state, - happstack-util, - HTTP, - MaybeT, - monad-parallel, + exceptions, + fgl, + haskeline, + http-types, mtl, network, - old-locale, - regex-tdfa, - smartGroup, - stringsearch, - time, - xhtml, - xml, + scientific, + text, + transformers, }: mkDerivation { - pname = "extemp"; - version = "0.0.1"; - sha256 = "1vbazvs1ij4qfhzf38f7z75lx4mdxnkvcb79ngqc3h67844s90xy"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ + pname = "exploring-interpreters"; + version = "1.6.0.0"; + sha256 = "1mnfqmzbnaii24xdqvhpbnfn3fv380jx75iqm7dw8qxjc46xf4iz"; + libraryHaskellDepends = [ + aeson + attoparsec base bytestring containers - feed - happstack-auth - happstack-server - happstack-state - happstack-util - HTTP - MaybeT - monad-parallel + exceptions + fgl + haskeline + http-types mtl network - old-locale - regex-tdfa - smartGroup - stringsearch - time - xhtml - xml + scientific + text + transformers ]; - description = "automated printing for extemp speakers"; + description = "A generic exploring interpreter for exploratory programming"; + license = lib.licenses.bsd3; + } + ) { }; + + "express" = callPackage ( + { + mkDerivation, + base, + leancheck, + template-haskell, + }: + mkDerivation { + pname = "express"; + version = "1.0.18"; + sha256 = "1p0q2c2v6dbcdi71m8zr3kp4q54fi2rrxgfsbwkivq9vvwbbh8gs"; + libraryHaskellDepends = [ + base + template-haskell + ]; + testHaskellDepends = [ + base + leancheck + ]; + benchmarkHaskellDepends = [ + base + leancheck + ]; + description = "Dynamically-typed expressions involving function application and variables"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "extemp"; } ) { }; @@ -224728,31 +127126,6 @@ self: { } ) { }; - "extended-categories" = callPackage ( - { - mkDerivation, - base, - constraints, - ghc-prim, - tagged, - }: - mkDerivation { - pname = "extended-categories"; - version = "0.2.0"; - sha256 = "1dg9zvqszlg5v3mygazzgm84qlkcmpryv3vv4x3zwrzi1g0idq72"; - libraryHaskellDepends = [ - base - constraints - ghc-prim - tagged - ]; - description = "Extended Categories"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "extended-containers" = callPackage ( { mkDerivation, @@ -224783,28 +127156,6 @@ self: { } ) { }; - "extended-containers-lens" = callPackage ( - { - mkDerivation, - base, - extended-containers, - lens, - }: - mkDerivation { - pname = "extended-containers-lens"; - version = "0.1.0.0"; - sha256 = "107nfyrp62h6qwc3ra08cd9vyaanc7442wcbfmm83aw05fav3p43"; - libraryHaskellDepends = [ - base - extended-containers - lens - ]; - description = "lens instances for extended-containers"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "extended-reals" = callPackage ( { mkDerivation, @@ -224914,33 +127265,6 @@ self: { } ) { }; - "extensible-data" = callPackage ( - { - mkDerivation, - base, - data-lens, - hashable, - template-haskell, - unordered-containers, - }: - mkDerivation { - pname = "extensible-data"; - version = "0.1.0.4"; - sha256 = "143cl3w129mkvs410lx63v3x1dq2az8sk0hlcymaavnqik5maa6g"; - libraryHaskellDepends = [ - base - data-lens - hashable - template-haskell - unordered-containers - ]; - description = "Sums/products/lists/trees which can be extended in other modules"; - license = lib.licenses.publicDomain; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "extensible-effects" = callPackage ( { mkDerivation, @@ -225332,33 +127656,6 @@ self: { } ) { }; - "external-sort" = callPackage ( - { - mkDerivation, - base, - binary, - bytestring, - EdisonAPI, - EdisonCore, - }: - mkDerivation { - pname = "external-sort"; - version = "0.2"; - sha256 = "1i7q3wh2c4fyv6wn4smws8r382hnnppj39xys43h9pkqfis786r9"; - libraryHaskellDepends = [ - base - binary - bytestring - EdisonAPI - EdisonCore - ]; - description = "Sort large arrays on your hard drive. Kind of like the unix util sort."; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "extism" = callPackage ( { mkDerivation, @@ -225509,42 +127806,6 @@ self: { } ) { }; - "extract-dependencies" = callPackage ( - { - mkDerivation, - async, - base, - Cabal, - containers, - package-description-remote, - }: - mkDerivation { - pname = "extract-dependencies"; - version = "0.2.0.1"; - sha256 = "04hwmh57rka8mqjcc40f4y8rw5l1a8q2qq1ibrc291nc102yfzwj"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - async - base - Cabal - containers - package-description-remote - ]; - executableHaskellDepends = [ - async - base - Cabal - containers - package-description-remote - ]; - description = "Given a hackage package outputs the list of its dependencies"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - mainProgram = "extract-dependencies"; - } - ) { }; - "extractable-singleton" = callPackage ( { mkDerivation, @@ -225564,40 +127825,6 @@ self: { } ) { }; - "extractelf" = callPackage ( - { - mkDerivation, - base, - bytestring, - bytestring-mmap, - directory, - elf, - filepath, - optparse-applicative, - }: - mkDerivation { - pname = "extractelf"; - version = "0.1.0.0"; - sha256 = "13wbzqw0iz7xkqdrwan9xxl8vwqvhvwzlypps964v1s1bgabmpqj"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - bytestring - bytestring-mmap - directory - elf - filepath - optparse-applicative - ]; - description = "Extract an ELF's metadata and sections into files"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "extractelf"; - broken = true; - } - ) { }; - "extralife" = callPackage ( { mkDerivation, @@ -225660,157 +127887,6 @@ self: { } ) { }; - "ez-couch" = callPackage ( - { - mkDerivation, - aeson, - attoparsec, - attoparsec-conduit, - base, - blaze-builder, - bytestring, - classy-prelude, - classy-prelude-conduit, - containers, - ghc-prim, - hashable, - hslogger, - http-conduit, - http-types, - mtl, - neat-interpolation, - old-locale, - random, - resourcet, - string-conversions, - text, - time, - unordered-containers, - vector, - }: - mkDerivation { - pname = "ez-couch"; - version = "0.7.0"; - sha256 = "023wrrk7slrg8p547saspfvp771zqwdh7mnvwg1sag4a2j20b660"; - libraryHaskellDepends = [ - aeson - attoparsec - attoparsec-conduit - base - blaze-builder - bytestring - classy-prelude - classy-prelude-conduit - containers - ghc-prim - hashable - hslogger - http-conduit - http-types - mtl - neat-interpolation - old-locale - random - resourcet - string-conversions - text - time - unordered-containers - vector - ]; - description = "A high level static library for working with CouchDB"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "ez3" = callPackage ( - { - mkDerivation, - base, - transformers, - z3, - }: - mkDerivation { - pname = "ez3"; - version = "0.1.0.0"; - sha256 = "0p2i8ingh27qn61rizh79ink63ydf3wcm86q57f4kd4arbnp7gs4"; - revision = "2"; - editedCabalFile = "1x0fskz64l9xvywiif9jmmnjkkr7pbdri9y6k3cxgl47yipi0kf2"; - libraryHaskellDepends = [ - base - transformers - z3 - ]; - description = "Z3 bonds with pure interface"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "f-algebra-gen" = callPackage ( - { - mkDerivation, - base, - template-haskell, - }: - mkDerivation { - pname = "f-algebra-gen"; - version = "0.1.0.2"; - sha256 = "1vxhfr4wqm2bclnq15lp4q496w3916ll9chj6mcqbn0r64bmmkn8"; - libraryHaskellDepends = [ - base - template-haskell - ]; - description = "Generate a special f-algebra combinator from any data type"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "f-ree-hack-cheats-free-v-bucks-generator" = callPackage ( - { mkDerivation, base }: - mkDerivation { - pname = "f-ree-hack-cheats-free-v-bucks-generator"; - version = "0.2"; - sha256 = "0dk9bfcwalwlq52hnl4g4ypz2bip0d8yy45k9dib7cv6v09xfwhi"; - revision = "3"; - editedCabalFile = "0dsj8dbdkljcrk0qkmym2pciwcni602yrc90f47v1nm37hs46c6m"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ base ]; - description = "Spam"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "test1"; - broken = true; - } - ) { }; - - "faceted" = callPackage ( - { - mkDerivation, - base, - free, - }: - mkDerivation { - pname = "faceted"; - version = "0.0.2.0"; - sha256 = "0apgad2rqpgxypm10n98agmfrlxydcawvsvyafdwj8jhynfycx03"; - libraryHaskellDepends = [ - base - free - ]; - description = "Faceted computation for dynamic information flow security"; - license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "factor" = callPackage ( { mkDerivation, @@ -225920,91 +127996,6 @@ self: { } ) { }; - "facts" = callPackage ( - { - mkDerivation, - base, - exceptions, - mtl, - template-haskell, - }: - mkDerivation { - pname = "facts"; - version = "0.0.1.0"; - sha256 = "12ifja6vgm8hafs23fzb2jfk0jiz4nss1if5b86950y3mc995rfx"; - revision = "1"; - editedCabalFile = "03v6p3vlilz6vk5xlvw3r31cqicx3m1xjii9shcqpacxvlh2zzlp"; - libraryHaskellDepends = [ - base - exceptions - mtl - template-haskell - ]; - description = "Refined types"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "factual-api" = callPackage ( - { - mkDerivation, - aeson, - attoparsec, - base, - bytestring, - containers, - curl, - dataenc, - hoauth, - HTTP, - MissingH, - text, - unordered-containers, - utf8-string, - vector, - }: - mkDerivation { - pname = "factual-api"; - version = "0.6.1"; - sha256 = "1njijf5l277qndp5xmyqji0fcd84zxnn9vhz5v8nlqp3pfcilidp"; - libraryHaskellDepends = [ - aeson - attoparsec - base - bytestring - containers - curl - dataenc - hoauth - HTTP - MissingH - text - unordered-containers - utf8-string - vector - ]; - description = "A driver for the Factual API"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "fad" = callPackage ( - { mkDerivation, base }: - mkDerivation { - pname = "fad"; - version = "1.1.0.1"; - sha256 = "00n5m3fa14y882rnzw7pwc154bgp46rhvvj2cghldvybxmj61zgm"; - libraryHaskellDepends = [ base ]; - description = "Forward Automatic Differentiation"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "fadno" = callPackage ( { mkDerivation, @@ -226135,43 +128126,6 @@ self: { } ) { }; - "failable" = callPackage ( - { - mkDerivation, - base, - mtl, - transformers, - }: - mkDerivation { - pname = "failable"; - version = "1.2.4.0"; - sha256 = "1vffrjywaxwfpzb6a34il772mkkaqwv9372aibijnvwf82rnglwg"; - libraryHaskellDepends = [ - base - mtl - transformers - ]; - description = "A 'Failable' error monad class to unify failure across monads that can fail"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "failable-list" = callPackage ( - { mkDerivation, base }: - mkDerivation { - pname = "failable-list"; - version = "0.2"; - sha256 = "0bq0q9n4wnacjqs517i12kl56m16n5ff4gk8kamh87gqkd58w06x"; - libraryHaskellDepends = [ base ]; - description = "A list-like type for lazy streams, which might terminate with an error"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "failure" = callPackage ( { mkDerivation, @@ -226195,77 +128149,6 @@ self: { } ) { }; - "failure-detector" = callPackage ( - { - mkDerivation, - base, - containers, - QuickCheck, - statistics, - tasty, - tasty-quickcheck, - time, - }: - mkDerivation { - pname = "failure-detector"; - version = "0"; - sha256 = "0yzcm6r76rhfy1rbbz7ri0mi0scjxsakwmvm65sisbzld35dp29h"; - libraryHaskellDepends = [ - base - containers - statistics - time - ]; - testHaskellDepends = [ - base - QuickCheck - tasty - tasty-quickcheck - time - ]; - description = "Failure Detectors implimented in Haskell"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "fair" = callPackage ( - { - mkDerivation, - base, - criterion, - smallcheck, - tasty, - tasty-smallcheck, - util, - }: - mkDerivation { - pname = "fair"; - version = "0.1.0.0"; - sha256 = "0x8nz1476pdmcaq99gvzs0ila78z1zhvdkyw886ly8ivfp49ix17"; - revision = "1"; - editedCabalFile = "0w9wx223yj70k9xb6alwy61pwax8pvi3q25b7gmrihhbpbdzyjhg"; - libraryHaskellDepends = [ - base - util - ]; - testHaskellDepends = [ - base - smallcheck - tasty - tasty-smallcheck - ]; - benchmarkHaskellDepends = [ - base - criterion - ]; - description = "Lists with fair choice"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "fair-predicates" = callPackage ( { mkDerivation, base }: mkDerivation { @@ -226318,33 +128201,6 @@ self: { } ) { }; - "fake-type" = callPackage ( - { - mkDerivation, - base, - base-prelude, - libXtst, - split, - X11, - }: - mkDerivation { - pname = "fake-type"; - version = "0.2.0.0"; - sha256 = "0m1w0qhny6vwnv320irrla82qzdk9ih9zyvi5lkkdj4jiqlsgriw"; - libraryHaskellDepends = [ - base - base-prelude - split - X11 - ]; - librarySystemDepends = [ libXtst ]; - description = "A crossplatform library to simulate keyboard input"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { inherit (pkgs.xorg) libXtst; }; - "fakedata" = callPackage ( { mkDerivation, @@ -226710,77 +128566,6 @@ self: { } ) { }; - "falling-turnip" = callPackage ( - { - mkDerivation, - base, - gloss, - gloss-raster, - JuicyPixels-repa, - QuickCheck, - random, - repa, - repa-algorithms, - vector, - }: - mkDerivation { - pname = "falling-turnip"; - version = "0.1.0.0"; - sha256 = "035rjjjvwbjw4z6nlmiyxia5y91yiiw7902f9q6n5jimi5xk2hgk"; - isLibrary = false; - isExecutable = true; - enableSeparateDataOutput = true; - executableHaskellDepends = [ - base - gloss - gloss-raster - JuicyPixels-repa - QuickCheck - random - repa - repa-algorithms - vector - ]; - description = "Falling sand game/cellular automata simulation using regular parallel arrays"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "falling-turnip"; - broken = true; - } - ) { }; - - "fallingblocks" = callPackage ( - { - mkDerivation, - base, - containers, - haskell98, - SDL, - SDL-mixer, - SDL-ttf, - }: - mkDerivation { - pname = "fallingblocks"; - version = "0.1.4"; - sha256 = "18h5d33hd4cs6dc508mzl7c46pxwrk2q0daabvg8m4fiwk5wzlr0"; - isLibrary = false; - isExecutable = true; - enableSeparateDataOutput = true; - executableHaskellDepends = [ - base - containers - haskell98 - SDL - SDL-mixer - SDL-ttf - ]; - description = "A fun falling blocks game"; - license = "GPL"; - hydraPlatforms = lib.platforms.none; - mainProgram = "fallingblocks"; - } - ) { }; - "falsify" = callPackage ( { mkDerivation, @@ -226854,42 +128639,6 @@ self: { } ) { }; - "family-tree" = callPackage ( - { - mkDerivation, - base, - binary, - containers, - hashable, - intervals, - lens, - tables, - text, - time, - unordered-containers, - }: - mkDerivation { - pname = "family-tree"; - version = "0.5.1"; - sha256 = "0b2063f8yz7hwv7h0yisrgh6glr5h4s1cx0q75gfg2wgp2mr72s1"; - libraryHaskellDepends = [ - base - binary - containers - hashable - intervals - lens - tables - text - time - unordered-containers - ]; - description = "A family tree library for the Haskell programming language"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "farmhash" = callPackage ( { mkDerivation, @@ -227064,52 +128813,6 @@ self: { } ) { }; - "fast-combinatorics" = callPackage ( - { - mkDerivation, - base, - Cabal, - composition-prelude, - criterion, - directory, - hspec, - http-client, - http-client-tls, - tar, - zlib, - }: - mkDerivation { - pname = "fast-combinatorics"; - version = "0.1.0.9"; - sha256 = "0p9pdp51ii0ggf6ghh7aijk1q1crf850qwdvyi7nkx65nfi9qc7z"; - setupHaskellDepends = [ - base - Cabal - directory - http-client - http-client-tls - tar - zlib - ]; - libraryHaskellDepends = [ - base - composition-prelude - ]; - testHaskellDepends = [ - base - hspec - ]; - benchmarkHaskellDepends = [ - base - criterion - ]; - description = "Fast combinatorics"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "fast-digits" = callPackage ( { mkDerivation, @@ -227299,20 +129002,6 @@ self: { } ) { }; - "fast-nats" = callPackage ( - { mkDerivation, base }: - mkDerivation { - pname = "fast-nats"; - version = "0.1.0.1"; - sha256 = "1kp34h0ghpr3hwkbybwy954kbbdkbychzhjh4g1q44b2a8rgi5w1"; - libraryHaskellDepends = [ base ]; - description = "Natural Numbers with no overhead"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "fast-tags" = callPackage ( { mkDerivation, @@ -227404,31 +129093,6 @@ self: { } ) { }; - "fast-tagsoup-utf8-only" = callPackage ( - { - mkDerivation, - base, - bytestring, - tagsoup, - text, - }: - mkDerivation { - pname = "fast-tagsoup-utf8-only"; - version = "1.0.5"; - sha256 = "10svhgjvp1802jawr1s5chkincl2xhh6k0grm60f216jpasbvff4"; - libraryHaskellDepends = [ - base - bytestring - tagsoup - text - ]; - description = "Fast parser for tagsoup package"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "fasta" = callPackage ( { mkDerivation, @@ -227472,29 +129136,6 @@ self: { } ) { }; - "fastbayes" = callPackage ( - { - mkDerivation, - base, - hmatrix, - vector, - }: - mkDerivation { - pname = "fastbayes"; - version = "0.2.0.0"; - sha256 = "1nqrfrhw8gd3blfzrwbf7pm4wwqbxfaw640bzx62kwh7x2h6v3cm"; - libraryHaskellDepends = [ - base - hmatrix - vector - ]; - description = "Bayesian modeling algorithms accelerated for particular model structures"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "fastcdc" = callPackage ( { mkDerivation, @@ -227554,50 +129195,6 @@ self: { } ) { inherit (pkgs) fcgi; }; - "fastedit" = callPackage ( - { - mkDerivation, - base, - base-prelude, - bytestring, - containers, - edit-distance, - file-embed, - hashable, - hspec, - QuickCheck, - safe, - unordered-containers, - }: - mkDerivation { - pname = "fastedit"; - version = "0.1.0.0"; - sha256 = "0ax5wnbf75n39crd9bw0xf3g83zlh29pbhwapbc5q7315rjdfxfj"; - libraryHaskellDepends = [ - base - base-prelude - bytestring - containers - hashable - safe - unordered-containers - ]; - testHaskellDepends = [ - base - base-prelude - bytestring - edit-distance - file-embed - hspec - QuickCheck - ]; - description = "find nearest neighbours by edit-distance"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "faster-megaparsec" = callPackage ( { mkDerivation, @@ -227650,87 +129247,6 @@ self: { } ) { }; - "fastirc" = callPackage ( - { - mkDerivation, - attoparsec, - base, - bytestring, - bytestring-show, - containers, - monadLib, - network-fancy, - }: - mkDerivation { - pname = "fastirc"; - version = "0.2.0"; - sha256 = "0ddacpw19kh304j8js9ybwclkgyh8n5yy1r2xh48z9h3gas2zim4"; - libraryHaskellDepends = [ - attoparsec - base - bytestring - bytestring-show - containers - monadLib - network-fancy - ]; - description = "Fast Internet Relay Chat (IRC) library"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "fastly" = callPackage ( - { - mkDerivation, - aeson, - base, - bytestring, - bytestring-lexing, - hspec, - http-client, - http-client-tls, - http-types, - iproute, - mtl, - old-locale, - text, - thyme, - unordered-containers, - wai, - }: - mkDerivation { - pname = "fastly"; - version = "0.1.0.0"; - sha256 = "0b23dh7cfbjmynqbzc44kz5809dg3zx8i32sdglb1b0nxhabnp7b"; - libraryHaskellDepends = [ - aeson - base - bytestring - bytestring-lexing - http-client - http-client-tls - http-types - iproute - mtl - old-locale - text - thyme - unordered-containers - wai - ]; - testHaskellDepends = [ - base - hspec - text - ]; - description = "A highly experimental Fastly API client"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "fastmemo" = callPackage ( { mkDerivation, @@ -227804,49 +129320,6 @@ self: { } ) { }; - "fastpbkdf2" = callPackage ( - { - mkDerivation, - base, - base16-bytestring, - bytestring, - criterion, - cryptonite, - openssl, - pbkdf, - tasty, - tasty-hunit, - }: - mkDerivation { - pname = "fastpbkdf2"; - version = "0.1.0.0"; - sha256 = "1ygj2b2pf4wf4sj9di109whhqviarvd44s1f0qhzry3rkd0h6cc4"; - libraryHaskellDepends = [ - base - bytestring - ]; - librarySystemDepends = [ openssl ]; - testHaskellDepends = [ - base - base16-bytestring - bytestring - tasty - tasty-hunit - ]; - benchmarkHaskellDepends = [ - base - bytestring - criterion - cryptonite - pbkdf - ]; - description = "Haskell bindings to the fastpbkdf2 C library"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { inherit (pkgs) openssl; }; - "fastsum" = callPackage ( { mkDerivation, @@ -227878,55 +129351,6 @@ self: { } ) { }; - "fathead-util" = callPackage ( - { - mkDerivation, - base, - bytestring, - cassava, - hxt, - network-uri, - text, - }: - mkDerivation { - pname = "fathead-util"; - version = "0.1.0.0"; - sha256 = "1f2zvnrlzsd6jr87rkynasn8r3bvha73aqa2x2w6xcljab8bz2d1"; - libraryHaskellDepends = [ - base - bytestring - cassava - hxt - network-uri - text - ]; - description = "Utilities for working with DuckDuckHack's FatHead Instant Answers"; - license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "fault-tree" = callPackage ( - { - mkDerivation, - base, - yices, - }: - mkDerivation { - pname = "fault-tree"; - version = "0.0.0"; - sha256 = "04m6hfj0sqhmq89fwfq4igz1rc0p3rzkhfg6fzsw5kyda2c8bbz0"; - libraryHaskellDepends = [ - base - yices - ]; - description = "A fault tree analysis library"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "fay" = callPackage ( { mkDerivation, @@ -228037,203 +129461,6 @@ self: { ]; description = "The base package for Fay"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "fay-builder" = callPackage ( - { - mkDerivation, - base, - Cabal, - data-default, - directory, - fay, - filepath, - safe, - split, - text, - }: - mkDerivation { - pname = "fay-builder"; - version = "0.2.0.5"; - sha256 = "18ii5dnzk866q79h43fspdz8dzg17mzfrykh3pl4p0q4qdnylv8i"; - revision = "4"; - editedCabalFile = "09ix1rqm23l2ksc9zx6qj6m2pw789rzs6b3q41m60bcxh8xik9km"; - libraryHaskellDepends = [ - base - Cabal - data-default - directory - fay - filepath - safe - split - text - ]; - description = "Compile Fay code on cabal install, and ad-hoc recompile during development"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "fay-dom" = callPackage ( - { mkDerivation, fay-base }: - mkDerivation { - pname = "fay-dom"; - version = "0.5.0.1"; - sha256 = "1zm6w6nccswaksr283alhnsss6xw4k7s61yp8ff4lg5127ff9wp0"; - revision = "1"; - editedCabalFile = "1lhmkf2n7prv6w51bl3szz4g9cn2dkhb873m7f568nnwysqibv8b"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ fay-base ]; - description = "DOM FFI wrapper library for Fay"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "fay-geoposition" = callPackage ( - { - mkDerivation, - fay-base, - fay-text, - }: - mkDerivation { - pname = "fay-geoposition"; - version = "0.1.0.1"; - sha256 = "1qmkwfqgvj6a8fan1l3i18ggpl00vrfd2mhqj13g0gh9yhvgxv1q"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - fay-base - fay-text - ]; - description = "W3C compliant implementation of GeoPosition API"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "fay-hsx" = callPackage ( - { - mkDerivation, - fay-base, - fay-jquery, - }: - mkDerivation { - pname = "fay-hsx"; - version = "0.2.0"; - sha256 = "1mzjna8yc7jczgggpcgh9i6akiy72d60jczvmzxngh778z3g5zmi"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - fay-base - fay-jquery - ]; - description = "Clientside HTML generation for fay"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "fay-jquery" = callPackage ( - { - mkDerivation, - fay-base, - fay-text, - }: - mkDerivation { - pname = "fay-jquery"; - version = "0.6.1.0"; - sha256 = "04vg018zynb5ckj7ca9a9a3lbs8kjx8a5k0l3k73yp2y27w7xx8g"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - fay-base - fay-text - ]; - description = "jQuery bindings for Fay"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "fay-ref" = callPackage ( - { mkDerivation, fay-base }: - mkDerivation { - pname = "fay-ref"; - version = "0.1.0.0"; - sha256 = "1dcifraih13zqwmm4xn57wfg63rdkiac81avyymid308r6p1x9cn"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ fay-base ]; - description = "Like IORef but for Fay"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "fay-simplejson" = callPackage ( - { mkDerivation, fay-base }: - mkDerivation { - pname = "fay-simplejson"; - version = "0.1.3.0"; - sha256 = "0cw06vl39p7mflf8wfl8ql1h8bryv2d1kvvf4swqgda05jk13mxq"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ fay-base ]; - description = "SimpleJSON library for Fay"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "fay-text" = callPackage ( - { - mkDerivation, - fay, - fay-base, - text, - }: - mkDerivation { - pname = "fay-text"; - version = "0.3.2.2"; - sha256 = "1q1v8jzkccy9arq6jkz4ynpzm1691d1dv9wzyi4i5m6n0gl7aans"; - revision = "1"; - editedCabalFile = "0zwip7arbrbz1qhjyy5synnlrvl2wica4804wkizpxr9l7acasn6"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - fay - fay-base - text - ]; - description = "Fay Text type represented as JavaScript strings"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "fay-uri" = callPackage ( - { mkDerivation, fay-base }: - mkDerivation { - pname = "fay-uri"; - version = "0.2.0.0"; - sha256 = "1vv4jgkz9cx8inbn6g6sn3a0nf1ak81qlj5li21sk2isj0yws1nr"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ fay-base ]; - description = "Persistent FFI bindings for using jsUri in Fay"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "fay-websockets" = callPackage ( - { mkDerivation, fay-base }: - mkDerivation { - pname = "fay-websockets"; - version = "0.0.1.1"; - sha256 = "1pax12d1rjmh3gdg1ylavk04f8rlldc6jnmm5sgghdq28z1mp6pb"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ fay-base ]; - description = "Websockets FFI library for Fay"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; } ) { }; @@ -228317,35 +129544,6 @@ self: { } ) { }; - "fb-persistent" = callPackage ( - { - mkDerivation, - base, - cereal, - fb, - persistent, - text, - time, - }: - mkDerivation { - pname = "fb-persistent"; - version = "0.3.6"; - sha256 = "1il06mlvvjybfnqpdnir9nr1g0irf84fa4q8lzavrlqgny8f294s"; - libraryHaskellDepends = [ - base - cereal - fb - persistent - text - time - ]; - description = "Provides Persistent instances to Facebook types"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "fb-stubs" = callPackage ( { mkDerivation, @@ -228543,88 +129741,6 @@ self: { inherit (pkgs) libevent; }; - "fbmessenger-api" = callPackage ( - { - mkDerivation, - aeson, - base, - bytestring, - case-insensitive, - filepath, - hspec, - http-client, - http-client-tls, - http-media, - http-types, - mime-types, - monad-logger, - servant, - servant-client, - servant-server, - stm, - string-conversions, - text, - transformers, - unordered-containers, - wai, - wai-logger, - warp, - }: - mkDerivation { - pname = "fbmessenger-api"; - version = "0.1.2.1"; - sha256 = "0dvjhgv3w13ygi4rfdvmc2m6f99v8d9dmjqp98vxrygcqskhgy4x"; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - aeson - base - bytestring - case-insensitive - http-client - http-media - http-types - mime-types - servant - servant-client - string-conversions - text - transformers - unordered-containers - ]; - executableHaskellDepends = [ - aeson - base - bytestring - http-client - http-client-tls - monad-logger - servant - servant-server - stm - text - transformers - wai - wai-logger - warp - ]; - testHaskellDepends = [ - aeson - base - bytestring - filepath - hspec - text - ]; - description = "High-level bindings to Facebook Messenger Platform API"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "example"; - broken = true; - } - ) { }; - "fbrnch" = callPackage ( { mkDerivation, @@ -228718,113 +129834,6 @@ self: { } ) { }; - "fca" = callPackage ( - { - mkDerivation, - base, - bytestring, - containers, - cryptohash, - hashable, - text, - unordered-containers, - }: - mkDerivation { - pname = "fca"; - version = "0.1.0.2"; - sha256 = "1c38524r3mhy4m7s1cvfcn539xvf50x0z8a9fzk4x4pz5yq9c1vp"; - libraryHaskellDepends = [ - base - bytestring - containers - cryptohash - hashable - text - unordered-containers - ]; - description = "Algo for Formal Concept Analysis"; - license = lib.licenses.agpl3Only; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "fcache" = callPackage ( - { - mkDerivation, - base, - containers, - hashable, - hspec, - mtl, - unordered-containers, - }: - mkDerivation { - pname = "fcache"; - version = "0.1.0.0"; - sha256 = "1bhf79p78nwj4173prgv8l0m86ghb83qdlw4zsq7wjjni8i0sd2j"; - libraryHaskellDepends = [ - base - containers - hashable - mtl - unordered-containers - ]; - testHaskellDepends = [ - base - hspec - mtl - ]; - description = "Cache a function (a -> b)"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "fcd" = callPackage ( - { - mkDerivation, - array, - base, - directory, - process, - tasty, - tasty-hunit, - text, - unix, - vty, - vty-ui, - }: - mkDerivation { - pname = "fcd"; - version = "1.0.0.0"; - sha256 = "1z3vphn3vgvsq0mshhvsks03v79wnj9g6r8mmrwkiax126aqzqn6"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - array - base - directory - process - text - unix - vty - vty-ui - ]; - executableHaskellDepends = [ base ]; - testHaskellDepends = [ - base - tasty - tasty-hunit - ]; - description = "A faster way to navigate directories using the command line"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - mainProgram = "fcd"; - } - ) { }; - "fcf-base" = callPackage ( { mkDerivation, @@ -229014,47 +130023,6 @@ self: { } ) { }; - "fcg" = callPackage ( - { mkDerivation }: - mkDerivation { - pname = "fcg"; - version = "0.0.0"; - sha256 = "07qbka3fkkmc18crafh6c5ahs7fv1a1kfhga8mxfkm75k3h15h3l"; - isLibrary = false; - isExecutable = true; - description = "TBA"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "fcg"; - broken = true; - } - ) { }; - - "fckeditor" = callPackage ( - { - mkDerivation, - base, - cgi, - HaXml, - xhtml, - }: - mkDerivation { - pname = "fckeditor"; - version = "0.1"; - sha256 = "1yvsnk9awik143jh2268w1l5x70kmky60gac10fy2y1450dcn65x"; - libraryHaskellDepends = [ - base - cgi - HaXml - xhtml - ]; - description = "Server-Side Integration for FCKeditor"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "fclabels" = callPackage ( { mkDerivation, @@ -229095,119 +130063,6 @@ self: { } ) { }; - "fclabels-monadlib" = callPackage ( - { - mkDerivation, - base, - fclabels, - monadLib, - }: - mkDerivation { - pname = "fclabels-monadlib"; - version = "0.2.1"; - sha256 = "1j15fxrpwnjnbjkswsy6jxn8f0bj2nhcdsf5976i7rka7gsjzr3d"; - libraryHaskellDepends = [ - base - fclabels - monadLib - ]; - description = "MonadLib monadic interface for the \"fclabels\" package"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "fcm-client" = callPackage ( - { - mkDerivation, - aeson, - aeson-casing, - async, - base, - bytestring, - conduit, - conduit-extra, - containers, - data-default-class, - http-client, - http-conduit, - http-types, - HUnit, - lens, - optparse-applicative, - QuickCheck, - resourcet, - retry, - scientific, - stm-conduit, - test-framework, - test-framework-hunit, - test-framework-quickcheck2, - text, - time, - utf8-string, - }: - mkDerivation { - pname = "fcm-client"; - version = "0.2.0.0"; - sha256 = "151lm6g08bwqfdi25zmsv99wri8x75fi1svwsgm2ar2hd8zjngnj"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson - aeson-casing - base - bytestring - containers - data-default-class - http-client - http-conduit - http-types - lens - scientific - text - time - ]; - executableHaskellDepends = [ - aeson - async - base - bytestring - conduit - conduit-extra - data-default-class - http-client - http-types - lens - optparse-applicative - resourcet - retry - stm-conduit - text - utf8-string - ]; - testHaskellDepends = [ - aeson - base - containers - data-default-class - HUnit - lens - QuickCheck - test-framework - test-framework-hunit - test-framework-quickcheck2 - text - ]; - description = "Admin API for Firebase Cloud Messaging"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "fcm-client"; - broken = true; - } - ) { }; - "fdo-notify" = callPackage ( { mkDerivation, @@ -229229,55 +130084,6 @@ self: { } ) { }; - "fdo-trash" = callPackage ( - { - mkDerivation, - base, - Diff, - directory, - filepath, - old-locale, - parsec, - time, - unix, - url, - }: - mkDerivation { - pname = "fdo-trash"; - version = "0.0.0.2"; - sha256 = "04y29wmndyvrlrixj57m7jgx3z8qld0nvlggmg0rvia4p2dv82bk"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - Diff - directory - filepath - old-locale - parsec - time - unix - url - ]; - executableHaskellDepends = [ - base - Diff - directory - filepath - old-locale - parsec - time - unix - url - ]; - description = "Utilities related to freedesktop Trash standard"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "fdo-trash"; - broken = true; - } - ) { }; - "fearOfView" = callPackage ( { mkDerivation, @@ -229333,36 +130139,6 @@ self: { } ) { inherit (pkgs) ncurses; }; - "feather" = callPackage ( - { - mkDerivation, - base, - containers, - microlens-platform, - mtl, - }: - mkDerivation { - pname = "feather"; - version = "0.1.0.0"; - sha256 = "03jpdg50g43lb3akfyfs0yh630igqfm0dg62bk4s5yv23cmbn8vf"; - libraryHaskellDepends = [ - base - containers - microlens-platform - mtl - ]; - testHaskellDepends = [ - base - containers - microlens-platform - mtl - ]; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "feature-flags" = callPackage ( { mkDerivation, @@ -229382,95 +130158,6 @@ self: { } ) { }; - "feature-flipper" = callPackage ( - { - mkDerivation, - base, - bytestring, - containers, - digest, - hspec, - mtl, - text, - }: - mkDerivation { - pname = "feature-flipper"; - version = "0.2.1.2"; - sha256 = "18g90xvbgxzj2in8v3y7s6p305h0rg5p5163262vi9cdi7lrvvc8"; - libraryHaskellDepends = [ - base - bytestring - containers - digest - mtl - text - ]; - testHaskellDepends = [ - base - bytestring - containers - digest - hspec - mtl - text - ]; - description = "A minimally obtrusive feature flag library"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "feature-flipper-postgres" = callPackage ( - { - mkDerivation, - base, - bytestring, - containers, - feature-flipper, - hspec, - monad-logger, - mtl, - persistent, - persistent-postgresql, - persistent-template, - text, - time, - }: - mkDerivation { - pname = "feature-flipper-postgres"; - version = "0.1.1.1"; - sha256 = "186khsn3gqxqhxlah6m8fgl4qlwf3pgmqagvr8rnfv44vzynw8by"; - libraryHaskellDepends = [ - base - bytestring - containers - feature-flipper - monad-logger - mtl - persistent - persistent-postgresql - persistent-template - text - time - ]; - testHaskellDepends = [ - base - bytestring - containers - feature-flipper - hspec - monad-logger - mtl - persistent - persistent-postgresql - ]; - description = "A minimally obtrusive feature flag library"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "fec" = callPackage ( { mkDerivation, @@ -229633,663 +130320,204 @@ self: { ]; description = "Building and maintenance tools for Fedora Haskell"; license = lib.licenses.gpl3Only; - } - ) { }; - - "fedora-img-dl" = callPackage ( - { - mkDerivation, - base, - bytestring, - directory, - filepath, - http-directory, - http-types, - optparse-applicative, - simple-cmd, - simple-cmd-args, - text, - unix, - xdg-userdirs, - }: - mkDerivation { - pname = "fedora-img-dl"; - version = "0.4"; - sha256 = "1wymwrcycyq0sf3vld4fxk57g8rdwhr0cgxpx2angdw9pjcmnyd7"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - bytestring - directory - filepath - http-directory - http-types - optparse-applicative - simple-cmd - simple-cmd-args - text - unix - xdg-userdirs - ]; - description = "Fedora image download tool"; - license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - mainProgram = "fedora-img-dl"; - } - ) { }; - - "fedora-krb" = callPackage ( - { - mkDerivation, - base, - simple-cmd, - }: - mkDerivation { - pname = "fedora-krb"; - version = "0.1.0"; - sha256 = "1jwj1hik5fpj0f5ni4zz2ic3kq0hha4yjq9rb4yw7gspmyfkh40i"; - libraryHaskellDepends = [ - base - simple-cmd - ]; - description = "Kerberos for Fedora packagers"; - license = lib.licenses.gpl2Only; - } - ) { }; - - "fedora-packages" = callPackage ( - { - mkDerivation, - aeson, - base, - bytestring, - containers, - hlint, - HsOpenSSL, - hspec, - http-streams, - io-streams, - lens, - text, - }: - mkDerivation { - pname = "fedora-packages"; - version = "0.0.3"; - sha256 = "14fpv76ndp755mysgbya2hgr35rg2hb6dsagmrq2j2mn06xmngqk"; - revision = "1"; - editedCabalFile = "0fnkx2k6iii86g6k1kvg9acpnp0cc7hjd1mvky67yllidmz8b7dh"; - libraryHaskellDepends = [ - aeson - base - bytestring - containers - HsOpenSSL - http-streams - io-streams - lens - text - ]; - testHaskellDepends = [ - aeson - base - bytestring - containers - hlint - HsOpenSSL - hspec - http-streams - io-streams - lens - text - ]; - description = "Haskell interface to the Fedora Packages webapp API"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "fedora-releases" = callPackage ( - { - mkDerivation, - aeson, - base, - bodhi, - cached-json-file, - extra, - safe, - }: - mkDerivation { - pname = "fedora-releases"; - version = "0.3.0"; - sha256 = "1lipp022kxj72i9d25f8if4dppa706zvb1a62lx3gw1xw1p55j8b"; - libraryHaskellDepends = [ - aeson - base - bodhi - cached-json-file - extra - safe - ]; - description = "Library for Fedora release versions"; - license = lib.licenses.gpl3Only; - } - ) { }; - - "fedora-repoquery" = callPackage ( - { - mkDerivation, - base, - case-insensitive, - curl, - directory, - extra, - fedora-releases, - filepath, - Glob, - regex-compat, - safe, - simple-cmd, - simple-cmd-args, - text, - time, - xdg-basedir, - }: - mkDerivation { - pname = "fedora-repoquery"; - version = "0.7.4"; - sha256 = "0iy8d37x1b1qhzp6jgrnajbvyn02pyyz78xv7mv4hrp87i2avpgp"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - case-insensitive - curl - directory - extra - fedora-releases - filepath - Glob - regex-compat - safe - simple-cmd - simple-cmd-args - text - time - xdg-basedir - ]; - testHaskellDepends = [ - base - simple-cmd - ]; - description = "Fedora release repos package query tool"; - license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - mainProgram = "fedora-repoquery"; - broken = true; - } - ) { }; - - "fee-estimate" = callPackage ( - { - mkDerivation, - base, - QuickCheck, - }: - mkDerivation { - pname = "fee-estimate"; - version = "0.1.0.0"; - sha256 = "06qfc18dhkhxpy0rhs20kw83bf1mzq94wy6azv3zj2ik8shq501r"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - QuickCheck - ]; - executableHaskellDepends = [ - base - QuickCheck - ]; - testHaskellDepends = [ - base - QuickCheck - ]; - description = "Short description of your package"; - license = lib.licenses.bsd3; - mainProgram = "fee-estimate-exe"; - } - ) { }; - - "feed" = callPackage ( - { - mkDerivation, - base, - base-compat, - bytestring, - doctest, - doctest-driver-gen, - HUnit, - markdown-unlit, - old-locale, - old-time, - safe, - syb, - test-framework, - test-framework-hunit, - text, - time, - time-locale-compat, - utf8-string, - xml-conduit, - xml-types, - }: - mkDerivation { - pname = "feed"; - version = "1.3.2.1"; - sha256 = "0marh7qmggq1z5339nid3gil7k786d3yk79b0rwfkxxaxmr41xd8"; - revision = "5"; - editedCabalFile = "0y9f6dcgmmfzgxq9dbgs6lypd6pmcb0x1qvvkj20l74ba9k30v96"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base - base-compat - bytestring - old-locale - old-time - safe - text - time - time-locale-compat - utf8-string - xml-conduit - xml-types - ]; - testHaskellDepends = [ - base - base-compat - doctest - doctest-driver-gen - HUnit - old-time - syb - test-framework - test-framework-hunit - text - time - xml-conduit - xml-types - ]; - testToolDepends = [ - doctest-driver-gen - markdown-unlit - ]; - description = "Interfacing with RSS (v 0.9x, 2.x, 1.0) + Atom feeds."; - license = lib.licenses.bsd3; - } - ) { }; - - "feed-cli" = callPackage ( - { - mkDerivation, - base, - directory, - feed, - old-locale, - old-time, - time, - xml, - }: - mkDerivation { - pname = "feed-cli"; - version = "2009.7.5"; - sha256 = "0gql641jmbldx6vhk37i2v41j2nq22lrihm48f97wirrxw7yjn61"; - isLibrary = false; - isExecutable = true; - enableSeparateDataOutput = true; - executableHaskellDepends = [ - base - directory - feed - old-locale - old-time - time - xml - ]; - description = "A simple command line interface for creating and updating feeds like RSS"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "feed-cli"; - broken = true; - } - ) { }; - - "feed-collect" = callPackage ( - { - mkDerivation, - base, - data-default-class, - feed, - http-client, - http-client-tls, - time, - time-interval, - time-units, - timerep, - transformers, - utf8-string, - }: - mkDerivation { - pname = "feed-collect"; - version = "0.2.0.2"; - sha256 = "0dcvrgaidyl8h6xxm124r1dy0485all8a4n56w1v9m182b31lrw7"; - libraryHaskellDepends = [ - base - data-default-class - feed - http-client - http-client-tls - time - time-interval - time-units - timerep - transformers - utf8-string - ]; - description = "Watch RSS/Atom feeds (and do with them whatever you like)"; - license = lib.licenses.publicDomain; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "feed-crawl" = callPackage ( - { - mkDerivation, - base, - bytestring, - conduit, - connection, - http-conduit, - http-types, - hxt, - network-uri, - text, - transformers, - }: - mkDerivation { - pname = "feed-crawl"; - version = "0.1.2.0"; - sha256 = "0d3yfkiazzlypp3s85fqikwlli28ss27h0i215114vxsswmx1g7c"; - libraryHaskellDepends = [ - base - bytestring - conduit - connection - http-conduit - http-types - hxt - network-uri - text - transformers - ]; - description = "Utility for fetching feeds with redirect info and HTML link detection"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "feed-gipeda" = callPackage ( - { - mkDerivation, - aeson, - async, - base, - binary, - bytestring, - concurrent-extra, - conduit, - conduit-extra, - containers, - data-hash, - directory, - distributed-process, - distributed-process-async, - distributed-process-client-server, - distributed-process-extras, - distributed-process-p2p, - exceptions, - extra, - file-embed, - filepath, - free, - fsnotify, - HUnit, - logging, - managed, - network-uri, - optparse-applicative, - process, - reactive-banana, - SafeSemaphore, - tasty, - tasty-hspec, - tasty-hunit, - tasty-quickcheck, - tasty-smallcheck, - temporary, - text, - time, - transformers, - yaml, - }: - mkDerivation { - pname = "feed-gipeda"; - version = "0.3.0.1"; - sha256 = "1kx8qzzd177y8lbdj26ic4px81z8152yzph6a5imjmsflw3mia2z"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson - async - base - binary - bytestring - concurrent-extra - conduit - conduit-extra - containers - data-hash - directory - distributed-process - distributed-process-async - distributed-process-client-server - distributed-process-extras - distributed-process-p2p - file-embed - filepath - fsnotify - logging - network-uri - process - reactive-banana - SafeSemaphore - temporary - text - time - transformers - yaml - ]; - executableHaskellDepends = [ - base - directory - extra - filepath - logging - optparse-applicative - ]; - testHaskellDepends = [ - async - base - bytestring - conduit - conduit-extra - directory - exceptions - file-embed - filepath - free - fsnotify - HUnit - logging - managed - network-uri - process - tasty - tasty-hspec - tasty-hunit - tasty-quickcheck - tasty-smallcheck - temporary - text - transformers + } + ) { }; + + "fedora-krb" = callPackage ( + { + mkDerivation, + base, + simple-cmd, + }: + mkDerivation { + pname = "fedora-krb"; + version = "0.1.0"; + sha256 = "1jwj1hik5fpj0f5ni4zz2ic3kq0hha4yjq9rb4yw7gspmyfkh40i"; + libraryHaskellDepends = [ + base + simple-cmd ]; - description = "CI service around gipeda"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "feed-gipeda"; + description = "Kerberos for Fedora packagers"; + license = lib.licenses.gpl2Only; } ) { }; - "feed-translator" = callPackage ( + "fedora-releases" = callPackage ( { mkDerivation, + aeson, base, - blaze-html, - blaze-markup, - bytestring, - cmdargs, - containers, - cryptohash, - feed, - iso639, - lens, - naver-translate, - network-uri, - raw-strings-qq, - scotty, - text, - transformers, - wai, - warp, - wreq, - xml, + bodhi, + cached-json-file, + extra, + safe, }: mkDerivation { - pname = "feed-translator"; - version = "0.1.0.2"; - sha256 = "0i6mn9zdvfalydh90gbx5lp2ngxlhiz20rh3sy3vcv0rwfarb1ww"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ + pname = "fedora-releases"; + version = "0.3.0"; + sha256 = "1lipp022kxj72i9d25f8if4dppa706zvb1a62lx3gw1xw1p55j8b"; + libraryHaskellDepends = [ + aeson base - blaze-html - blaze-markup - bytestring - cmdargs - containers - cryptohash - feed - iso639 - lens - naver-translate - network-uri - raw-strings-qq - scotty - text - transformers - wai - warp - wreq - xml + bodhi + cached-json-file + extra + safe ]; - description = "Translate syndication feeds"; - license = lib.licenses.agpl3Only; - hydraPlatforms = lib.platforms.none; - mainProgram = "feed-translator"; + description = "Library for Fedora release versions"; + license = lib.licenses.gpl3Only; } ) { }; - "feed2lj" = callPackage ( + "fedora-repoquery" = callPackage ( { mkDerivation, base, + case-insensitive, curl, directory, - feed, - haskell98, - HTTP, - old-locale, - pureMD5, - regex-posix, - tagsoup, + extra, + fedora-releases, + filepath, + Glob, + regex-compat, + safe, + simple-cmd, + simple-cmd-args, + text, time, - utf8-string, + xdg-basedir, }: mkDerivation { - pname = "feed2lj"; - version = "0.0.3.1"; - sha256 = "0ym4f6d8fxl6j9kfqmp3ds36qj35nypxjmmqv6w96yz5y8ia3ynv"; + pname = "fedora-repoquery"; + version = "0.7.4"; + sha256 = "0iy8d37x1b1qhzp6jgrnajbvyn02pyyz78xv7mv4hrp87i2avpgp"; isLibrary = false; isExecutable = true; executableHaskellDepends = [ base + case-insensitive curl directory - feed - haskell98 - HTTP - old-locale - pureMD5 - regex-posix - tagsoup + extra + fedora-releases + filepath + Glob + regex-compat + safe + simple-cmd + simple-cmd-args + text time - utf8-string + xdg-basedir ]; - description = "(unsupported)"; - license = lib.licenses.bsd3; + testHaskellDepends = [ + base + simple-cmd + ]; + description = "Fedora release repos package query tool"; + license = lib.licenses.gpl3Only; hydraPlatforms = lib.platforms.none; - mainProgram = "feed2lj"; + mainProgram = "fedora-repoquery"; + broken = true; } ) { }; - "feed2twitter" = callPackage ( + "fee-estimate" = callPackage ( { mkDerivation, base, - bytestring, - download-curl, - feed, - hs-twitter, + QuickCheck, }: mkDerivation { - pname = "feed2twitter"; - version = "0.2.0"; - sha256 = "1zhl7f5zlyv0l5h0zay66p532n1vywnirwxbc1c9fjaia7yv0rij"; + pname = "fee-estimate"; + version = "0.1.0.0"; + sha256 = "06qfc18dhkhxpy0rhs20kw83bf1mzq94wy6azv3zj2ik8shq501r"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ base + QuickCheck + ]; + executableHaskellDepends = [ + base + QuickCheck + ]; + testHaskellDepends = [ + base + QuickCheck + ]; + description = "Short description of your package"; + license = lib.licenses.bsd3; + mainProgram = "fee-estimate-exe"; + } + ) { }; + + "feed" = callPackage ( + { + mkDerivation, + base, + base-compat, + bytestring, + doctest, + doctest-driver-gen, + HUnit, + markdown-unlit, + old-locale, + old-time, + safe, + syb, + test-framework, + test-framework-hunit, + text, + time, + time-locale-compat, + utf8-string, + xml-conduit, + xml-types, + }: + mkDerivation { + pname = "feed"; + version = "1.3.2.1"; + sha256 = "0marh7qmggq1z5339nid3gil7k786d3yk79b0rwfkxxaxmr41xd8"; + revision = "5"; + editedCabalFile = "0y9f6dcgmmfzgxq9dbgs6lypd6pmcb0x1qvvkj20l74ba9k30v96"; + enableSeparateDataOutput = true; + libraryHaskellDepends = [ + base + base-compat bytestring - download-curl - feed - hs-twitter + old-locale + old-time + safe + text + time + time-locale-compat + utf8-string + xml-conduit + xml-types + ]; + testHaskellDepends = [ + base + base-compat + doctest + doctest-driver-gen + HUnit + old-time + syb + test-framework + test-framework-hunit + text + time + xml-conduit + xml-types + ]; + testToolDepends = [ + doctest-driver-gen + markdown-unlit ]; - description = "Send posts from a feed to Twitter"; + description = "Interfacing with RSS (v 0.9x, 2.x, 1.0) + Atom feeds."; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "feed2twitter"; } ) { }; @@ -230412,6 +130640,7 @@ self: { license = lib.licenses.bsd3; hydraPlatforms = lib.platforms.none; mainProgram = "mxnet-op-gen"; + broken = true; } ) { inherit (pkgs) mxnet; }; @@ -230494,66 +130723,6 @@ self: { } ) { }; - "fei-dataiter" = callPackage ( - { - mkDerivation, - base, - conduit, - conduit-combinators, - directory, - fei-base, - fei-nn, - filepath, - haskell-src-exts, - hslogger, - hspec, - mtl, - mxnet, - optparse-applicative, - streaming, - template-haskell, - text, - }: - mkDerivation { - pname = "fei-dataiter"; - version = "0.2.0.0"; - sha256 = "01iia8m5wq8yzmzl3dmsd5v01yq07ig6bg93h00mxyjpf1ai9kvk"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - conduit - conduit-combinators - fei-base - fei-nn - streaming - template-haskell - ]; - executableHaskellDepends = [ - base - directory - fei-base - filepath - haskell-src-exts - hslogger - mtl - optparse-applicative - text - ]; - executableSystemDepends = [ mxnet ]; - testHaskellDepends = [ - base - fei-base - hspec - streaming - ]; - description = "mxnet dataiters"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "mxnet-dataiter-gen"; - } - ) { inherit (pkgs) mxnet; }; - "fei-datasets" = callPackage ( { mkDerivation, @@ -230638,7 +130807,6 @@ self: { ]; description = "Some datasets"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; } ) { }; @@ -230690,7 +130858,6 @@ self: { ]; description = "fei examples"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; } ) { }; @@ -230731,6 +130898,7 @@ self: { description = "A collection of standard models"; license = lib.licenses.bsd3; hydraPlatforms = lib.platforms.none; + broken = true; } ) { }; @@ -230793,147 +130961,7 @@ self: { description = "Train a neural network with MXNet in Haskell"; license = lib.licenses.bsd3; hydraPlatforms = lib.platforms.none; - } - ) { }; - - "feldspar-compiler" = callPackage ( - { - mkDerivation, - base, - bytestring, - Cabal, - containers, - criterion, - data-default, - deepseq, - directory, - feldspar-language, - filepath, - gcc_s, - ghc-paths, - mtl, - plugins, - plugins-multistage, - pretty, - process, - QuickCheck, - storable-record, - storable-tuple, - syntactic, - tasty, - tasty-golden, - tasty-quickcheck, - template-haskell, - }: - mkDerivation { - pname = "feldspar-compiler"; - version = "0.7"; - sha256 = "0kkxjnbx4yn3k2s1gdxg4jj06fhdd2jprq8s4zyaybs8xcddgvhh"; - libraryHaskellDepends = [ - base - Cabal - containers - data-default - directory - feldspar-language - filepath - ghc-paths - mtl - plugins - plugins-multistage - pretty - process - storable-record - storable-tuple - syntactic - template-haskell - ]; - librarySystemDepends = [ gcc_s ]; - testHaskellDepends = [ - base - bytestring - Cabal - feldspar-language - mtl - process - QuickCheck - tasty - tasty-golden - tasty-quickcheck - ]; - benchmarkHaskellDepends = [ - base - criterion - data-default - deepseq - feldspar-language - ]; - description = "Compiler for the Feldspar language"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { gcc_s = null; }; - - "feldspar-language" = callPackage ( - { - mkDerivation, - array, - base, - bytestring, - containers, - data-default, - data-hash, - data-lens, - deepseq, - monad-par, - mtl, - patch-combinators, - QuickCheck, - random, - syntactic, - tagged, - tasty, - tasty-golden, - tasty-quickcheck, - tasty-th, - tuple, - utf8-string, - }: - mkDerivation { - pname = "feldspar-language"; - version = "0.7"; - sha256 = "0gzs2qdvpzcx4w89wpmwk2jnambvyl08afpk16989vcviq5ri51n"; - libraryHaskellDepends = [ - array - base - containers - data-default - data-hash - data-lens - deepseq - monad-par - mtl - patch-combinators - QuickCheck - random - syntactic - tagged - tuple - ]; - testHaskellDepends = [ - base - bytestring - QuickCheck - random - tasty - tasty-golden - tasty-quickcheck - tasty-th - utf8-string - ]; - description = "A functional embedded language for DSP and parallelism"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; + broken = true; } ) { }; @@ -231023,108 +131051,6 @@ self: { } ) { }; - "fenfire" = callPackage ( - { - mkDerivation, - base, - cairo, - gtk, - harp, - HaXml, - mtl, - raptor, - template-haskell, - unix, - }: - mkDerivation { - pname = "fenfire"; - version = "0.1"; - sha256 = "0sq4g0sdayk1lqzdhggwshl22gny5cjbv70cmr1p27q0wfwfbfff"; - isLibrary = false; - isExecutable = true; - enableSeparateDataOutput = true; - executableHaskellDepends = [ - base - cairo - gtk - harp - HaXml - mtl - template-haskell - unix - ]; - executableSystemDepends = [ raptor ]; - description = "Graph-based notetaking system"; - license = "GPL"; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { raptor = null; }; - - "fernet" = callPackage ( - { - mkDerivation, - aeson, - base, - binary, - byteable, - bytestring, - cryptonite, - HUnit, - memory, - optparse-applicative, - QuickCheck, - tasty, - tasty-golden, - tasty-hunit, - tasty-quickcheck, - time, - unix, - }: - mkDerivation { - pname = "fernet"; - version = "0.1.0.0"; - sha256 = "068imhyv12bd6299y0pa87xlqcaimn42h5yx91lzam077f013m9y"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - binary - byteable - bytestring - cryptonite - memory - time - ]; - executableHaskellDepends = [ - base - bytestring - memory - optparse-applicative - time - unix - ]; - testHaskellDepends = [ - aeson - base - bytestring - HUnit - memory - QuickCheck - tasty - tasty-golden - tasty-hunit - tasty-quickcheck - time - ]; - description = "Generate and verify HMAC-based authentication tokens"; - license = lib.licenses.lgpl3Only; - hydraPlatforms = lib.platforms.none; - mainProgram = "fernet"; - broken = true; - } - ) { }; - "festival" = callPackage ( @@ -231175,158 +131101,6 @@ self: { inherit (pkgs) ncurses; }; - "festung" = callPackage ( - { - mkDerivation, - aeson, - argparser, - async, - base, - base64-bytestring, - bytestring, - case-insensitive, - containers, - directory, - either, - exceptions, - filepath, - hspec, - http-types, - HUnit, - mtl, - scientific, - sqlcipher, - temporary, - text, - transformers, - unordered-containers, - utf8-string, - vector, - wai, - wai-extra, - yesod, - yesod-core, - yesod-test, - }: - mkDerivation { - pname = "festung"; - version = "0.9.1.2"; - sha256 = "09vcwds5vvk7a899nb4xvpfwkdgmm21w1lv4lacsdl7rvrw84f4l"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson - argparser - async - base - base64-bytestring - bytestring - case-insensitive - containers - directory - either - exceptions - filepath - http-types - mtl - scientific - sqlcipher - text - transformers - unordered-containers - utf8-string - vector - wai - yesod - yesod-core - ]; - executableHaskellDepends = [ - argparser - base - yesod - ]; - testHaskellDepends = [ - aeson - base - base64-bytestring - bytestring - containers - directory - exceptions - filepath - hspec - HUnit - scientific - temporary - text - wai-extra - yesod - yesod-test - ]; - description = "Remote multi-db SQLCipher server"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - mainProgram = "festung"; - } - ) { }; - - "fez-conf" = callPackage ( - { - mkDerivation, - base, - containers, - regex-compat, - }: - mkDerivation { - pname = "fez-conf"; - version = "1.0.3"; - sha256 = "1gssbkwg9lqm3ajqkkcjnxjz8nhz855ki2hi5n2di3dappr73f0b"; - libraryHaskellDepends = [ - base - containers - regex-compat - ]; - description = "Simple functions for loading config files"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "ffeed" = callPackage ( - { - mkDerivation, - base, - HTTP, - json, - network, - pretty, - utf8-string, - }: - mkDerivation { - pname = "ffeed"; - version = "0.3.2"; - sha256 = "1976v5m050lwp8v2vh1cm08pn6q9lbdkxhq10pql6fyzysn6qz62"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - HTTP - json - network - utf8-string - ]; - executableHaskellDepends = [ - base - pretty - ]; - description = "Haskell binding to the FriendFeed API"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "fficxx" = callPackage ( { mkDerivation, @@ -231501,6 +131275,7 @@ self: { description = "Tutorials on ffmpeg usage to play video/audio"; license = lib.licenses.bsd3; hydraPlatforms = lib.platforms.none; + broken = true; } ) { }; @@ -231608,56 +131383,6 @@ self: { } ) { inherit (pkgs) fftw; }; - "ffunctor" = callPackage ( - { - mkDerivation, - aeson, - base, - exceptions, - generic-lens, - http-client, - mtl, - servant, - servant-client, - tasty, - tasty-discover, - tasty-hspec, - tasty-quickcheck, - time, - transformers, - universum, - }: - mkDerivation { - pname = "ffunctor"; - version = "1.2.1"; - sha256 = "0143i0l4153k1pkql50hb158hcx9iqjj59zwqlhbqq0rr43nza3f"; - libraryHaskellDepends = [ - base - transformers - ]; - testHaskellDepends = [ - aeson - base - exceptions - generic-lens - http-client - mtl - servant - servant-client - tasty - tasty-hspec - tasty-quickcheck - time - universum - ]; - testToolDepends = [ tasty-discover ]; - description = "FFunctor typeclass"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "fgl" = callPackage ( { mkDerivation, @@ -231729,29 +131454,6 @@ self: { } ) { }; - "fgl-extras-decompositions" = callPackage ( - { - mkDerivation, - base, - containers, - fgl, - }: - mkDerivation { - pname = "fgl-extras-decompositions"; - version = "0.1.1.0"; - sha256 = "0p9dv7hq312wjqzm2ha4rafnmd1vplzwd5vk5fmzypgl2a1cz42s"; - libraryHaskellDepends = [ - base - containers - fgl - ]; - description = "Graph decomposition algorithms"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "fgl-visualize" = callPackage ( { mkDerivation, @@ -231773,88 +131475,6 @@ self: { } ) { }; - "fib" = callPackage ( - { - mkDerivation, - base-noprelude, - integer-gmp, - semirings, - }: - mkDerivation { - pname = "fib"; - version = "0.1.0.1"; - sha256 = "17pk2fzgr4jjmpam52vmqg69927gfsl81w61h7q9zsf1vzd0qnix"; - libraryHaskellDepends = [ - base-noprelude - integer-gmp - semirings - ]; - description = "fibonacci algebra"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "fibon" = callPackage ( - { - mkDerivation, - attoparsec, - base, - bytestring, - bytestring-lexing, - Cabal, - cereal, - containers, - directory, - filepath, - hslogger, - mtl, - old-locale, - old-time, - process, - regex-compat, - statistics, - syb, - tabular, - time, - vector, - }: - mkDerivation { - pname = "fibon"; - version = "0.2.0"; - sha256 = "1jkawf65gdmyzmdw4xfk3jihahi3x7vsavjfy6rnl96bj15q4vzl"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - attoparsec - base - bytestring - bytestring-lexing - Cabal - cereal - containers - directory - filepath - hslogger - mtl - old-locale - old-time - process - regex-compat - statistics - syb - tabular - time - vector - ]; - description = "Tools for running and analyzing Haskell benchmarks"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "fibonacci" = callPackage ( { mkDerivation, base }: mkDerivation { @@ -231867,86 +131487,6 @@ self: { } ) { }; - "ficketed" = callPackage ( - { - mkDerivation, - async, - base, - binary, - blaze-html, - bytestring, - containers, - directory, - http-types, - mime-types, - MissingH, - optparse-applicative, - socketed, - text, - wai, - wai-app-static, - warp, - }: - mkDerivation { - pname = "ficketed"; - version = "0.1.0.0"; - sha256 = "0k51rb8mk5rvl78b7inp7fxn8g1jpifdpkbbkijhsx918va9mwcw"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - async - base - binary - blaze-html - bytestring - containers - directory - http-types - mime-types - MissingH - optparse-applicative - socketed - text - wai - wai-app-static - warp - ]; - description = "update statically hosted file in a push stule through socketed"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - mainProgram = "ficketed"; - } - ) { }; - - "fields" = callPackage ( - { - mkDerivation, - array, - base, - containers, - fclabels, - monads-fd, - transformers, - }: - mkDerivation { - pname = "fields"; - version = "0.1.0"; - sha256 = "0xxri0a3y75ppywcm6py9zbffaawcycrv8gabflbl1m1z8n6jq6v"; - libraryHaskellDepends = [ - array - base - containers - fclabels - monads-fd - transformers - ]; - description = "First-class record field combinators with infix record field syntax"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "fields-and-cases" = callPackage ( { mkDerivation, @@ -232010,112 +131550,6 @@ self: { } ) { }; - "fieldwise" = callPackage ( - { - mkDerivation, - base, - template-haskell, - }: - mkDerivation { - pname = "fieldwise"; - version = "0.1.0.0"; - sha256 = "1mmlw5nk09w829gjp8lc0p280vdkh68rv05b1j55x99l7xywgvj7"; - libraryHaskellDepends = [ - base - template-haskell - ]; - testHaskellDepends = [ - base - template-haskell - ]; - description = "Provides Fieldwise typeclass for operations of fields of records treated as independent components"; - license = lib.licenses.bsd2; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "fig" = callPackage ( - { - mkDerivation, - base, - containers, - parsec, - pretty, - }: - mkDerivation { - pname = "fig"; - version = "1.4.0"; - sha256 = "03bxiicvfwia5g0whg454ph2s34n8firjcqhn6d7qvbim338hkxq"; - libraryHaskellDepends = [ - base - containers - parsec - pretty - ]; - description = "Manipulation of FIG files"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "file-collection" = callPackage ( - { - mkDerivation, - base, - bytestring, - clock, - directory, - zip-archive, - }: - mkDerivation { - pname = "file-collection"; - version = "0.1.1.9"; - sha256 = "06bcj143j85p8m519zn88z6qn4bg5ifrw5pv5yva5x49gc3jq6gc"; - libraryHaskellDepends = [ - base - bytestring - clock - directory - zip-archive - ]; - description = "Provide a uniform interface over file archives and directories"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "file-command-qq" = callPackage ( - { - mkDerivation, - base, - parsec, - process, - system-filepath, - template-haskell, - text, - }: - mkDerivation { - pname = "file-command-qq"; - version = "0.1.0.5"; - sha256 = "06bi4nnz1f3i79wza6bxbnglqzddpq3r4w581wdl3bq26b52d3ab"; - libraryHaskellDepends = [ - base - parsec - process - system-filepath - template-haskell - text - ]; - description = "Quasiquoter for system commands involving filepaths"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "file-embed" = callPackage ( { mkDerivation, @@ -232183,43 +131617,6 @@ self: { } ) { }; - "file-embed-poly" = callPackage ( - { - mkDerivation, - base, - bytestring, - directory, - file-embed, - filepath, - hspec, - template-haskell, - }: - mkDerivation { - pname = "file-embed-poly"; - version = "0.1.0"; - sha256 = "11d9yfhpmick00vfv5klwb5k4bvf608zr0fc5bws4608czc0xj26"; - libraryHaskellDepends = [ - base - bytestring - directory - filepath - template-haskell - ]; - testHaskellDepends = [ - base - bytestring - directory - file-embed - filepath - hspec - ]; - description = "Use Template Haskell to embed file contents directly"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "file-io" = callPackage ( { mkDerivation, @@ -232256,43 +131653,6 @@ self: { } ) { }; - "file-location" = callPackage ( - { - mkDerivation, - base, - containers, - HUnit, - lifted-base, - process, - template-haskell, - th-orphans, - transformers, - }: - mkDerivation { - pname = "file-location"; - version = "0.4.9.1"; - sha256 = "0x29nz828dvl200h7rc5qzyknnzr99c7p2ag37j0lbk0im7vicpl"; - libraryHaskellDepends = [ - base - containers - HUnit - lifted-base - template-haskell - th-orphans - transformers - ]; - testHaskellDepends = [ - base - lifted-base - process - ]; - description = "common functions that show file location information"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "file-modules" = callPackage ( { mkDerivation, @@ -232364,42 +131724,6 @@ self: { } ) { }; - "file-templates" = callPackage ( - { - mkDerivation, - attoparsec, - base, - bytestring, - directory, - filepath, - foundation, - transformers, - unordered-containers, - }: - mkDerivation { - pname = "file-templates"; - version = "1.1.0.0"; - sha256 = "0vh83vpcfz5yringls1w8ydl3xr5jawgnzyvj8nn28m1qgwaz29v"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - attoparsec - base - bytestring - directory - filepath - foundation - transformers - unordered-containers - ]; - description = "Use templates for files and directories"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "new"; - broken = true; - } - ) { }; - "file-uri" = callPackage ( { mkDerivation, @@ -232482,66 +131806,6 @@ self: { } ) { }; - "filediff" = callPackage ( - { - mkDerivation, - base, - bytestring, - data-default, - data-memocombinators, - directory, - either, - hashmap, - mtl, - rainbow, - tasty, - tasty-hunit, - text, - threads, - time, - transformers, - Zora, - }: - mkDerivation { - pname = "filediff"; - version = "2.0.0"; - sha256 = "15a02dya0qhgxq98whxza268vqsrkw6b1ipdskw3hwnjp02hnc9p"; - libraryHaskellDepends = [ - base - bytestring - data-default - data-memocombinators - directory - either - hashmap - mtl - rainbow - tasty - tasty-hunit - text - threads - time - transformers - Zora - ]; - testHaskellDepends = [ - base - directory - either - mtl - tasty - tasty-hunit - text - time - transformers - ]; - description = "Diffing and patching module"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "filelock" = callPackage ( { mkDerivation, @@ -232597,29 +131861,6 @@ self: { } ) { }; - "fileneglect" = callPackage ( - { - mkDerivation, - base, - hinotify, - stm, - }: - mkDerivation { - pname = "fileneglect"; - version = "0.0.0.1"; - sha256 = "1s00jlq6cbab0fasx0ngg1n3ilzi634d4a4aday4jngsnvbwb735"; - libraryHaskellDepends = [ - base - hinotify - stm - ]; - description = "Block thread until a file stops being modified"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "filepath_1_5_4_0" = callPackage ( { mkDerivation, @@ -232748,28 +131989,6 @@ self: { } ) { }; - "filepath-io-access" = callPackage ( - { - mkDerivation, - base, - base-io-access, - filepath, - }: - mkDerivation { - pname = "filepath-io-access"; - version = "0.1.0.0"; - sha256 = "08rb2nafnh5vx7i6i3ddhq4h1s2ffgz8ailap5knr1xl7izgyywp"; - libraryHaskellDepends = [ - base - base-io-access - filepath - ]; - description = "IO Access for filepath"; - license = lib.licenses.gpl2Only; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "filepather" = callPackage ( { mkDerivation, @@ -232931,183 +132150,6 @@ self: { } ) { }; - "filesystem-abstractions" = callPackage ( - { - mkDerivation, - base, - bytestring, - list-tries, - posix-paths, - semigroups, - }: - mkDerivation { - pname = "filesystem-abstractions"; - version = "0"; - sha256 = "1qrxc8q10fqd7b0ss84nykz8vmyjwwxw5ywxp11xabad966shl18"; - revision = "2"; - editedCabalFile = "1mj9ipsycs70jdgi722z04cvw7va09cr7fv78w9995pdf2n33gl0"; - libraryHaskellDepends = [ - base - bytestring - list-tries - posix-paths - semigroups - ]; - description = "A shared set of abstractions and types for representing filessytem data"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "filesystem-conduit" = callPackage ( - { - mkDerivation, - base, - blaze-builder, - bytestring, - conduit, - containers, - hspec, - QuickCheck, - system-fileio, - system-filepath, - text, - transformers, - unix, - }: - mkDerivation { - pname = "filesystem-conduit"; - version = "1.0.0.2"; - sha256 = "05dsl3bgyjciq6sgmba0hki7imilrjq3ddp9ip5gxl9884j1f4a1"; - libraryHaskellDepends = [ - base - bytestring - conduit - containers - system-fileio - system-filepath - text - transformers - unix - ]; - testHaskellDepends = [ - base - blaze-builder - bytestring - conduit - hspec - QuickCheck - text - transformers - ]; - description = "Use system-filepath data types with conduits. (deprecated)"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "filesystem-enumerator" = callPackage ( - { - mkDerivation, - base, - enumerator, - system-fileio, - system-filepath, - transformers, - unix, - }: - mkDerivation { - pname = "filesystem-enumerator"; - version = "0.1.1"; - sha256 = "04cs5kz390g5qanwqps5kx1pd70b9vzaykn4c0yc0kxi16xlxyrc"; - libraryHaskellDepends = [ - base - enumerator - system-fileio - system-filepath - transformers - unix - ]; - description = "Enumerator-based API for manipulating the filesystem"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "filesystem-trees" = callPackage ( - { - mkDerivation, - base, - cond, - containers, - data-lens-light, - deepseq, - directory, - dlist, - filepath, - mtl, - unix, - }: - mkDerivation { - pname = "filesystem-trees"; - version = "0.1.0.6"; - sha256 = "1bnxhf9ppqwgcnpcanxj6ji8yi1i0pspzhjh3p3zyf57d7y6p8sh"; - libraryHaskellDepends = [ - base - cond - containers - data-lens-light - deepseq - directory - dlist - filepath - mtl - unix - ]; - description = "Recursively manipulate and traverse filesystems as lazy rose trees"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "fillit" = callPackage ( - { - mkDerivation, - base, - data-default, - doctest, - hspec, - parsec, - text, - unordered-containers, - }: - mkDerivation { - pname = "fillit"; - version = "0.1.0.0"; - sha256 = "0qk1i2mjvsq3qqsh2zw9n83l210m0f17q9mqwnbmzhw0yf1mgswc"; - libraryHaskellDepends = [ - base - data-default - parsec - text - unordered-containers - ]; - testHaskellDepends = [ - base - doctest - hspec - unordered-containers - ]; - description = "Flexible string substitution"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "filter-logger" = callPackage ( { mkDerivation, @@ -233301,230 +132343,6 @@ self: { } ) { }; - "final-pretty-printer" = callPackage ( - { - mkDerivation, - ansi-terminal, - base, - containers, - exceptions, - mtl, - temporary, - text, - }: - mkDerivation { - pname = "final-pretty-printer"; - version = "0.1.0.0"; - sha256 = "0p0g73nq7154msvzazkn79fjnkzd939chgmxqdi9xbcpq47zgac2"; - libraryHaskellDepends = [ - ansi-terminal - base - containers - exceptions - mtl - temporary - text - ]; - description = "Extensible pretty printing with semantic annotations and proportional fonts"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "find-clumpiness" = callPackage ( - { - mkDerivation, - aeson, - base, - BiobaseNewick, - bytestring, - clumpiness, - containers, - hierarchical-clustering, - listsafe, - mtl, - optparse-applicative, - text, - text-show, - tree-fun, - unordered-containers, - vector, - }: - mkDerivation { - pname = "find-clumpiness"; - version = "0.2.3.2"; - sha256 = "1qid4dinkydpikw1a7q4zj3cx3bh7mzz7bfd8l1mz7fykdi8lwac"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson - base - BiobaseNewick - bytestring - clumpiness - containers - hierarchical-clustering - listsafe - mtl - text - text-show - tree-fun - unordered-containers - vector - ]; - executableHaskellDepends = [ - aeson - base - BiobaseNewick - bytestring - clumpiness - containers - optparse-applicative - text - tree-fun - unordered-containers - ]; - description = "Find the clumpiness of labels in a tree"; - license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - mainProgram = "find-clumpiness"; - } - ) { }; - - "find-conduit" = callPackage ( - { - mkDerivation, - attoparsec, - base, - conduit, - conduit-combinators, - conduit-extra, - directory, - doctest, - either, - exceptions, - filepath, - hspec, - mmorph, - monad-control, - mtl, - regex-posix, - semigroups, - streaming-commons, - text, - time, - transformers, - transformers-base, - unix, - unix-compat, - }: - mkDerivation { - pname = "find-conduit"; - version = "0.4.4"; - sha256 = "15p1aj8lckmvnrq8a8wz6sbs0d2qbcjgachf5sgpf2lv57hzxksz"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - attoparsec - base - conduit - conduit-combinators - conduit-extra - either - exceptions - filepath - mmorph - monad-control - mtl - regex-posix - semigroups - streaming-commons - text - time - transformers - transformers-base - unix-compat - ]; - executableHaskellDepends = [ - attoparsec - base - conduit - conduit-combinators - conduit-extra - either - exceptions - filepath - mmorph - monad-control - mtl - regex-posix - semigroups - streaming-commons - text - time - transformers - transformers-base - unix - ]; - testHaskellDepends = [ - attoparsec - base - conduit - conduit-combinators - directory - doctest - either - exceptions - filepath - hspec - mmorph - monad-control - mtl - regex-posix - semigroups - streaming-commons - text - time - transformers - transformers-base - unix-compat - ]; - description = "A file-finding conduit that allows user control over traversals"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - mainProgram = "find-hs"; - broken = true; - } - ) { }; - - "find-source-files" = callPackage ( - { - mkDerivation, - base, - Cabal, - directory, - filepath, - mtl, - }: - mkDerivation { - pname = "find-source-files"; - version = "0.1.0.0"; - sha256 = "1iiyfp8p0iaf39brii95wp6887ds63bx8qrrm4raks8y4b1hflrc"; - libraryHaskellDepends = [ - base - Cabal - directory - filepath - mtl - ]; - description = "Initial project template from stack"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "findhttp" = callPackage ( { mkDerivation, @@ -233593,41 +132411,6 @@ self: { } ) { }; - "fingertree-psqueue" = callPackage ( - { - mkDerivation, - base, - fingertree, - }: - mkDerivation { - pname = "fingertree-psqueue"; - version = "0.3"; - sha256 = "14kc0ijx44q7whniickjj3h9ag1pixn51dlxjs6n2ypaclcjz34z"; - libraryHaskellDepends = [ - base - fingertree - ]; - description = "Implementation of priority search queues as finger trees"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "fingertree-tf" = callPackage ( - { mkDerivation, base }: - mkDerivation { - pname = "fingertree-tf"; - version = "0.1.0.0"; - sha256 = "1ja8cqxpqhvssbcywph3zna946g1li5hlzsqab9lhg6vw0baakdn"; - libraryHaskellDepends = [ base ]; - description = "Generic finger-tree structure using type families"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "finitary" = callPackage ( { mkDerivation, @@ -234037,39 +132820,6 @@ self: { } ) { }; - "finito" = callPackage ( - { - mkDerivation, - base, - numeric-domains, - propeller, - split, - transformers, - }: - mkDerivation { - pname = "finito"; - version = "0.1.0.0"; - sha256 = "1z1s5jxkyr1yw0iaijx415ql4i2bp1jdqjs9irwbd28c4myq4byf"; - libraryHaskellDepends = [ - base - numeric-domains - propeller - transformers - ]; - testHaskellDepends = [ - base - numeric-domains - propeller - split - transformers - ]; - description = "Constraint Solver for Finite Domains"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "firebase-database" = callPackage ( { mkDerivation, @@ -234195,40 +132945,6 @@ self: { } ) { }; - "firefly-example" = callPackage ( - { - mkDerivation, - aeson, - base, - blaze-html, - firefly, - mtl, - text, - wai, - }: - mkDerivation { - pname = "firefly-example"; - version = "0.1.0.0"; - sha256 = "1z8xr575dqpdb2rhbin1ib1wmswnkrxcrjdrgd3wjw524iq4b51m"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - aeson - base - blaze-html - firefly - mtl - text - wai - ]; - description = "A simple example using Firefly"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "firefly-example-exe"; - broken = true; - } - ) { }; - "firestore" = callPackage ( { mkDerivation, @@ -234295,28 +133011,6 @@ self: { } ) { }; - "first-and-last" = callPackage ( - { - mkDerivation, - base, - doctest, - }: - mkDerivation { - pname = "first-and-last"; - version = "0.1.0.1"; - sha256 = "1nprsgkv6qr6ld0a11rpwfpm88jv3xyr8gsxam09r5haagaqhn7j"; - libraryHaskellDepends = [ base ]; - testHaskellDepends = [ - base - doctest - ]; - description = "First and Last generalized to return up to n values"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "first-class-families" = callPackage ( { mkDerivation, base }: mkDerivation { @@ -234363,158 +133057,6 @@ self: { } ) { }; - "first-class-patterns" = callPackage ( - { - mkDerivation, - base, - transformers, - }: - mkDerivation { - pname = "first-class-patterns"; - version = "0.3.2.5"; - sha256 = "1bh8ndf77pfh851d7szx0q2lpima6zm1d652s9j7jzchr7icyjvs"; - libraryHaskellDepends = [ - base - transformers - ]; - description = "First class patterns and pattern matching, using type families"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "firstify" = callPackage ( - { - mkDerivation, - base, - containers, - directory, - filepath, - homeomorphic, - mtl, - Safe, - yhccore, - }: - mkDerivation { - pname = "firstify"; - version = "0.1"; - sha256 = "1g851dgsxq9gfbsx4qas9vm844ay3g5vhfd1493fgpay0j7i5fnd"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - containers - directory - filepath - homeomorphic - mtl - Safe - yhccore - ]; - description = "Defunctionalisation for Yhc Core"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "firstify"; - } - ) { }; - - "fishfood" = callPackage ( - { - mkDerivation, - base, - Cabal, - containers, - data-default, - directory, - factory, - mtl, - QuickCheck, - toolshed, - }: - mkDerivation { - pname = "fishfood"; - version = "0.0.1.11"; - sha256 = "005jljanccyxj7j7lnkralir1lcinka5kapw0nv39pd1ibyc1nrb"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - Cabal - containers - data-default - directory - factory - mtl - toolshed - ]; - executableHaskellDepends = [ - base - Cabal - data-default - mtl - toolshed - ]; - testHaskellDepends = [ - base - Cabal - containers - mtl - QuickCheck - toolshed - ]; - description = "Calculates file-size frequency-distribution"; - license = "GPL"; - hydraPlatforms = lib.platforms.none; - mainProgram = "fishfood"; - } - ) { }; - - "fit" = callPackage ( - { - mkDerivation, - attoparsec, - base, - bytestring, - containers, - contravariant, - hspec, - hspec-attoparsec, - mtl, - QuickCheck, - text, - }: - mkDerivation { - pname = "fit"; - version = "0.5.2"; - sha256 = "1xrwbw8np3lxbymafkzpry6w5qm304w16yipc6c0z9jfbdfg2pif"; - libraryHaskellDepends = [ - attoparsec - base - bytestring - containers - contravariant - mtl - text - ]; - testHaskellDepends = [ - attoparsec - base - bytestring - containers - hspec - hspec-attoparsec - mtl - QuickCheck - text - ]; - description = "FIT file decoder"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "fits-parse" = callPackage ( { mkDerivation, @@ -234579,31 +133121,6 @@ self: { } ) { }; - "fitsio" = callPackage ( - { - mkDerivation, - base, - cfitsio, - filepath, - mtl, - }: - mkDerivation { - pname = "fitsio"; - version = "0.2"; - sha256 = "07zsd05ncq8rnrswk4kzg97sam8czibw2nhlrqxg8q1a5canisag"; - libraryHaskellDepends = [ - base - filepath - mtl - ]; - librarySystemDepends = [ cfitsio ]; - description = "A library for reading and writing data files in the FITS data format"; - license = "GPL"; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { inherit (pkgs) cfitsio; }; - "fitspec" = callPackage ( { mkDerivation, @@ -234711,51 +133228,6 @@ self: { } ) { }; - "fix-parser-simple" = callPackage ( - { - mkDerivation, - base, - mmtl, - }: - mkDerivation { - pname = "fix-parser-simple"; - version = "15320.3"; - sha256 = "0ls5fxwq2lnb0rjqih4isfwiv0603ga12gxnf7w3rpqp5qhrhas8"; - revision = "2"; - editedCabalFile = "0sbjc3v2qvi8hwf743xdzclgymcrnvyigm0rpvxi1ha46ip9fzkb"; - libraryHaskellDepends = [ - base - mmtl - ]; - description = "Simple fix-expression parser"; - license = "LGPL"; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "fix-symbols-gitit" = callPackage ( - { - mkDerivation, - base, - containers, - gitit, - }: - mkDerivation { - pname = "fix-symbols-gitit"; - version = "0.1.0"; - sha256 = "01fxzhd2wqzp0paba64q5psfc4qvc4b8i88rdkn6mxlkm21gkp6y"; - libraryHaskellDepends = [ - base - containers - gitit - ]; - description = "Gitit plugin: Turn some Haskell symbols into pretty math symbols"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "fix-whitespace" = callPackage ( { mkDerivation, @@ -234886,141 +133358,6 @@ self: { } ) { }; - "fixed-point" = callPackage ( - { mkDerivation, base }: - mkDerivation { - pname = "fixed-point"; - version = "0.5.0.1"; - sha256 = "010gx32av4cn5bqq1zrrcah50ay528vw01fvv1xhfpkrx1ll9wka"; - libraryHaskellDepends = [ base ]; - description = "Binary fixed-point arithmetic"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "fixed-point-vector" = callPackage ( - { - mkDerivation, - base, - fixed-point, - vector, - }: - mkDerivation { - pname = "fixed-point-vector"; - version = "0.5.0.1"; - sha256 = "029mn44d1i794b1pbpa0zmf6b20zl0cvsf77mbfdkqnyx8986883"; - libraryHaskellDepends = [ - base - fixed-point - vector - ]; - description = "Unbox instances for the fixed-point package"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "fixed-point-vector-space" = callPackage ( - { - mkDerivation, - base, - fixed-point, - vector-space, - }: - mkDerivation { - pname = "fixed-point-vector-space"; - version = "0.5.0.1"; - sha256 = "10b29gqy3rpwd5wf2b65p0llm8ksyp1p7k43rm1n5g5z67wkd7dx"; - libraryHaskellDepends = [ - base - fixed-point - vector-space - ]; - description = "vector-space instances for the fixed-point package"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "fixed-precision" = callPackage ( - { - mkDerivation, - base, - hmpfr, - integer-gmp, - reflection, - tagged, - template-haskell, - }: - mkDerivation { - pname = "fixed-precision"; - version = "0.4.0"; - sha256 = "1akgiark8svzkqx764iic10qpfixm0js8vwga0134d81ppcp58f6"; - libraryHaskellDepends = [ - base - hmpfr - integer-gmp - reflection - tagged - template-haskell - ]; - description = "Fixed Precision Arithmetic"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "fixed-storable-array" = callPackage ( - { - mkDerivation, - array, - base, - tagged, - }: - mkDerivation { - pname = "fixed-storable-array"; - version = "0.3.1.1"; - sha256 = "0vb5h2v2qx19d7xibf7ksv2cha2pngh49mfpkh43f9vrwc6042ph"; - libraryHaskellDepends = [ - array - base - tagged - ]; - description = "Fixed-size wrapper for StorableArray, providing a Storable instance. Deprecated - use storable-static-array instead."; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "fixed-timestep" = callPackage ( - { - mkDerivation, - async, - base, - clock, - time, - }: - mkDerivation { - pname = "fixed-timestep"; - version = "0.2.0.1"; - sha256 = "0rk5ym38m48khss38v8x09sdfz2nyhw7bw3dbjzy5qad09nzsipl"; - libraryHaskellDepends = [ - async - base - clock - time - ]; - description = "Pure Haskell library to repeat an action at a specific frequency"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "fixed-vector" = callPackage ( { mkDerivation, @@ -235162,368 +133499,79 @@ self: { }: mkDerivation { pname = "fixed-vector-cereal"; - version = "2.0.0.0"; - sha256 = "0pac616jkz2385yqzmrb71c4sqr4cvabw8rr9k316zygc89xy2jx"; - libraryHaskellDepends = [ - base - cereal - fixed-vector - ]; - description = "Cereal instances for fixed-vector"; - license = lib.licenses.bsd3; - } - ) { }; - - "fixed-vector-hetero" = callPackage ( - { - mkDerivation, - base, - deepseq, - doctest, - fixed-vector, - primitive, - }: - mkDerivation { - pname = "fixed-vector-hetero"; - version = "0.7.0.0"; - sha256 = "199ginhsll6b30kljxhbibdg97fjp0x1x5jx3bzxg1v8gvj2lwnm"; - libraryHaskellDepends = [ - base - deepseq - fixed-vector - primitive - ]; - testHaskellDepends = [ - base - doctest - fixed-vector - ]; - description = "Library for working with product types generically"; - license = lib.licenses.bsd3; - } - ) { }; - - "fixed-width" = callPackage ( - { mkDerivation, base }: - mkDerivation { - pname = "fixed-width"; - version = "0.1.0.0"; - sha256 = "0gxmw70d1bdqjqrz3d1an009x7bqzlv41dfydp7b49ina5as9ry7"; - libraryHaskellDepends = [ base ]; - description = "Fixed width subsets of an Int64/Word64"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "fixedprec" = callPackage ( - { - mkDerivation, - base, - random, - }: - mkDerivation { - pname = "fixedprec"; - version = "0.2.2.2"; - sha256 = "01ss9rzg2r4gii6f7771n4vdyg022skyws6ncc3l62xycgz153a7"; - libraryHaskellDepends = [ - base - random - ]; - description = "A fixed-precision real number type"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "fixedwidth-hs" = callPackage ( - { - mkDerivation, - aeson, - attoparsec, - base, - bytestring, - text, - }: - mkDerivation { - pname = "fixedwidth-hs"; - version = "0.4.0.1"; - sha256 = "0k4lidf95nb4a735331xdr77643b1yb15xllplxknbxxq9r2z3px"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson - attoparsec - base - bytestring - text - ]; - executableHaskellDepends = [ - aeson - attoparsec - base - bytestring - text - ]; - description = "Quick parsing of fixed-width data formats"; - license = lib.licenses.mit; - mainProgram = "fixedwidth-hs"; - } - ) { }; - - "fixer" = callPackage ( - { - mkDerivation, - aeson, - base, - containers, - directory, - genvalidity, - genvalidity-containers, - genvalidity-hspec, - genvalidity-hspec-aeson, - genvalidity-text, - genvalidity-time, - hspec, - http-api-data, - http-client, - mtl, - QuickCheck, - servant, - servant-client, - stm, - text, - time, - validity, - validity-containers, - validity-time, - yaml, - }: - mkDerivation { - pname = "fixer"; - version = "0.0.0.0"; - sha256 = "044l199r91gsxplahilsh6ims8bxlqdi6srprdvdygqhxzhpvanf"; - libraryHaskellDepends = [ - aeson - base - containers - directory - http-api-data - http-client - mtl - servant - servant-client - stm - text - time - validity - validity-containers - validity-time - yaml - ]; - testHaskellDepends = [ - aeson - base - containers - directory - genvalidity - genvalidity-containers - genvalidity-hspec - genvalidity-hspec-aeson - genvalidity-text - genvalidity-time - hspec - http-api-data - http-client - mtl - QuickCheck - servant - servant-client - stm - text - time - validity - validity-containers - validity-time - yaml - ]; - description = "A Haskell client for http://fixer.io/"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "fixfile" = callPackage ( - { - mkDerivation, - array, - base, - bytestring, - cereal, - containers, - directory, - exceptions, - filepath, - hashable, - hashtables, - lens, - mtl, - QuickCheck, - tasty, - tasty-quickcheck, - temporary, - vector, - }: - mkDerivation { - pname = "fixfile"; - version = "0.7.0.0"; - sha256 = "0w0by62rhv0wr3bl6nfxrz03wz31yhrsrff9mrb244d78z3jg45l"; + version = "2.0.0.0"; + sha256 = "0pac616jkz2385yqzmrb71c4sqr4cvabw8rr9k316zygc89xy2jx"; libraryHaskellDepends = [ - array - base - bytestring - cereal - containers - directory - filepath - hashable - hashtables - lens - mtl - temporary - vector - ]; - testHaskellDepends = [ base - bytestring cereal - directory - exceptions - lens - mtl - QuickCheck - tasty - tasty-quickcheck - temporary + fixed-vector ]; - description = "File-backed recursive data structures"; - license = lib.licenses.lgpl3Only; - hydraPlatforms = lib.platforms.none; - broken = true; + description = "Cereal instances for fixed-vector"; + license = lib.licenses.bsd3; } ) { }; - "fixhs" = callPackage ( + "fixed-vector-hetero" = callPackage ( { mkDerivation, - attoparsec, - attoparsec-enumerator, base, - bytestring, - containers, deepseq, - dlist, - enumerator, - HaXml, - MissingH, - network, - old-time, - parallel, - QuickCheck, - text, + doctest, + fixed-vector, + primitive, }: mkDerivation { - pname = "fixhs"; - version = "0.1.4"; - sha256 = "0kxfx3k2d8xy75s7cln3l1hiia5vjcr6k5almbpys63dkr3svcz2"; - isLibrary = true; - isExecutable = true; + pname = "fixed-vector-hetero"; + version = "0.7.0.0"; + sha256 = "199ginhsll6b30kljxhbibdg97fjp0x1x5jx3bzxg1v8gvj2lwnm"; libraryHaskellDepends = [ - attoparsec - attoparsec-enumerator base - bytestring - containers deepseq - dlist - enumerator - HaXml - MissingH - network - old-time - parallel - QuickCheck - text + fixed-vector + primitive ]; - executableHaskellDepends = [ - attoparsec + testHaskellDepends = [ base - bytestring - containers - deepseq - dlist - HaXml - MissingH - old-time - QuickCheck - text + doctest + fixed-vector ]; - description = "FIX (co)parser"; - license = lib.licenses.lgpl21Only; - hydraPlatforms = lib.platforms.none; - mainProgram = "fix-generator"; + description = "Library for working with product types generically"; + license = lib.licenses.bsd3; } ) { }; - "fixie" = callPackage ( + "fixedwidth-hs" = callPackage ( { mkDerivation, + aeson, + attoparsec, base, - containers, - data-default-class, - either, - haskell-src-exts, - haskell-src-meta, - hspec, - hspec-discover, - mtl, - template-haskell, + bytestring, text, - th-orphans, - transformers, }: mkDerivation { - pname = "fixie"; - version = "1.0.0"; - sha256 = "0vagpi1gk3f21ygaxp7xandw5lc79gk0czs0r96nv0cilcqw45mh"; + pname = "fixedwidth-hs"; + version = "0.4.0.1"; + sha256 = "0k4lidf95nb4a735331xdr77643b1yb15xllplxknbxxq9r2z3px"; + isLibrary = true; + isExecutable = true; libraryHaskellDepends = [ + aeson + attoparsec base - containers - data-default-class - either - haskell-src-exts - haskell-src-meta - mtl - template-haskell + bytestring text - th-orphans ]; - testHaskellDepends = [ + executableHaskellDepends = [ + aeson + attoparsec base - hspec - hspec-discover - mtl - template-haskell - transformers + bytestring + text ]; - testToolDepends = [ hspec-discover ]; - description = "Opininated testing framework for mtl style (spies, stubs, and mocks)"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; + description = "Quick parsing of fixed-width data formats"; + license = lib.licenses.mit; + mainProgram = "fixedwidth-hs"; } ) { }; @@ -235599,50 +133647,6 @@ self: { } ) { }; - "fizzbuzz" = callPackage ( - { mkDerivation, base }: - mkDerivation { - pname = "fizzbuzz"; - version = "0.1.0.0"; - sha256 = "0iia37wsxvaff28ln4l9hzdg458vcnak3jj4kjnsrbbfysan5wlx"; - libraryHaskellDepends = [ base ]; - description = "test"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "fizzbuzz-as-a-service" = callPackage ( - { - mkDerivation, - async, - base, - bytestring, - network-simple, - optparse-applicative, - }: - mkDerivation { - pname = "fizzbuzz-as-a-service"; - version = "0.1.0.3"; - sha256 = "0kzhbavi26qbph6pgna77fbnpfgrxi81h9v92177ycl980k4qdwv"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - async - base - bytestring - network-simple - optparse-applicative - ]; - description = "FizzBuzz as a service"; - license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; - mainProgram = "fizzbuzz-server"; - broken = true; - } - ) { }; - "flac" = callPackage ( { mkDerivation, @@ -235735,38 +133739,6 @@ self: { } ) { }; - "flaccuraterip" = callPackage ( - { - mkDerivation, - base, - binary, - deepseq, - HTTP, - optparse-applicative, - process, - }: - mkDerivation { - pname = "flaccuraterip"; - version = "0.3.9"; - sha256 = "18nziy9x83x34nkfz3bzy1nmj7fxzcpxrkzp9gmb1lvgy9igrric"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - binary - deepseq - HTTP - optparse-applicative - process - ]; - description = "Verify FLAC files ripped form CD using AccurateRip™"; - license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - mainProgram = "flaccuraterip"; - broken = true; - } - ) { }; - "flag" = callPackage ( { mkDerivation, base }: mkDerivation { @@ -235834,58 +133806,6 @@ self: { } ) { }; - "flamethrower" = callPackage ( - { - mkDerivation, - base, - template-haskell, - text, - }: - mkDerivation { - pname = "flamethrower"; - version = "0.0.5.1"; - sha256 = "10kfy1cnp721hgz6lbc28y7hkjhbv6gpk2jff6nk2avrfbaqqd8x"; - libraryHaskellDepends = [ - base - template-haskell - text - ]; - description = "A template engine for HTML"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "flamingra" = callPackage ( - { - mkDerivation, - base, - either, - optparse-applicative, - pipes, - }: - mkDerivation { - pname = "flamingra"; - version = "0.2"; - sha256 = "1awdn32hk1qmxqcb8mmd18a7b8paw89rch0c8acw3yixg59fjkh5"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base ]; - executableHaskellDepends = [ - base - either - optparse-applicative - pipes - ]; - description = "FlameGraphs of profiling"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "flamingra"; - broken = true; - } - ) { }; - "flashblast" = callPackage ( { mkDerivation, @@ -236034,7 +133954,6 @@ self: { ]; description = "Generate language learning flashcards from video"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "flashblast"; } ) { }; @@ -236114,27 +134033,6 @@ self: { } ) { }; - "flat-maybe" = callPackage ( - { - mkDerivation, - base, - ghc-prim, - }: - mkDerivation { - pname = "flat-maybe"; - version = "0.1.0.0"; - sha256 = "0kxyr7k47lsw7xg523kf98d57p6i1iz5dmyp91zg1xs2hsbjgvlq"; - libraryHaskellDepends = [ - base - ghc-prim - ]; - description = "Strict Maybe without space and indirection overhead"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "flat-mcmc" = callPackage ( { mkDerivation, @@ -236566,29 +134464,6 @@ self: { } ) { }; - "flexible-time" = callPackage ( - { - mkDerivation, - base, - bytestring, - unix-time, - }: - mkDerivation { - pname = "flexible-time"; - version = "0.1.0.3"; - sha256 = "179k0r58r5s0g1vfs7ab382iq7qf5xbrnmvx2y8p86pz8fcz7a8l"; - libraryHaskellDepends = [ - base - bytestring - unix-time - ]; - description = "simple extension of Data.UnixTime."; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "flexible-unlit" = callPackage ( { mkDerivation, @@ -236617,56 +134492,6 @@ self: { } ) { }; - "flexiwrap" = callPackage ( - { - mkDerivation, - base, - data-type, - mtl, - QuickCheck, - }: - mkDerivation { - pname = "flexiwrap"; - version = "0.1.0"; - sha256 = "0vvl9w3i374k720sscbcsbha89fcfk1hcvdr0nk4y7gkp13xwdba"; - libraryHaskellDepends = [ - base - data-type - mtl - QuickCheck - ]; - description = "Flexible wrappers"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "flexiwrap-smallcheck" = callPackage ( - { - mkDerivation, - base, - data-type, - flexiwrap, - mtl, - smallcheck, - }: - mkDerivation { - pname = "flexiwrap-smallcheck"; - version = "0.0.1"; - sha256 = "1dara0az10fxx46jmplf2l6a6x8qqjk00fxjzb9n10ndd4lxcsm3"; - libraryHaskellDepends = [ - base - data-type - flexiwrap - mtl - smallcheck - ]; - description = "SmallCheck (Serial) instances for flexiwrap"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "flick-duration" = callPackage ( { mkDerivation, @@ -236694,43 +134519,6 @@ self: { } ) { }; - "flickr" = callPackage ( - { - mkDerivation, - base, - filepath, - HTTP, - mime, - network, - random, - utf8-string, - xhtml, - xml, - }: - mkDerivation { - pname = "flickr"; - version = "0.3.3"; - sha256 = "12fi34zl2ggbxf5gmfldplzi1pk9byf8rpn58ljw2fvz3qb8x6yl"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - filepath - HTTP - mime - network - random - utf8-string - xml - ]; - executableHaskellDepends = [ xhtml ]; - description = "Haskell binding to the Flickr API"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "flight-igc" = callPackage ( { mkDerivation, @@ -236754,70 +134542,6 @@ self: { } ) { }; - "flight-kml" = callPackage ( - { - mkDerivation, - aeson, - base, - detour-via-sci, - doctest, - hxt, - hxt-xpath, - parsec, - path, - raw-strings-qq, - siggy-chardust, - smallcheck, - split, - tasty, - tasty-hunit, - tasty-quickcheck, - tasty-smallcheck, - template-haskell, - time, - }: - mkDerivation { - pname = "flight-kml"; - version = "1.0.1"; - sha256 = "1g70vm7qbxsx2azgb759xcpizq5c1ic2173w78jib0f7mpb8qc28"; - libraryHaskellDepends = [ - aeson - base - detour-via-sci - hxt - hxt-xpath - parsec - path - siggy-chardust - split - time - ]; - testHaskellDepends = [ - aeson - base - detour-via-sci - doctest - hxt - hxt-xpath - parsec - path - raw-strings-qq - siggy-chardust - smallcheck - split - tasty - tasty-hunit - tasty-quickcheck - tasty-smallcheck - template-haskell - time - ]; - description = "Parsing of pilot tracklogs dumped as KML"; - license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "flink-statefulfun" = callPackage ( { mkDerivation, @@ -236922,42 +134646,6 @@ self: { } ) { }; - "flite" = callPackage ( - { - mkDerivation, - array, - base, - containers, - haskell98, - parsec, - }: - mkDerivation { - pname = "flite"; - version = "0.1.2"; - sha256 = "0ck44icwg6gzi9x5h5iszk59qnr0fhsj95ghk0lxm8aygavwq44d"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - array - base - containers - haskell98 - parsec - ]; - executableHaskellDepends = [ - array - base - containers - haskell98 - parsec - ]; - description = "f-lite compiler, interpreter and libraries"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "flite"; - } - ) { }; - "flo" = callPackage ( { mkDerivation, @@ -236997,43 +134685,6 @@ self: { } ) { }; - "float-binstring" = callPackage ( - { - mkDerivation, - attoparsec, - base, - hspec, - HUnit, - QuickCheck, - split, - text, - }: - mkDerivation { - pname = "float-binstring"; - version = "0.2"; - sha256 = "0dcxk1s13ppslqxd378yh92pzmxnmnhk1q07wl5ifcnfy5zamzdq"; - libraryHaskellDepends = [ - attoparsec - base - split - text - ]; - testHaskellDepends = [ - attoparsec - base - hspec - HUnit - QuickCheck - split - text - ]; - description = "C99 printf \"%a\" style formatting and parsing"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "float128" = callPackage ( { mkDerivation, @@ -237233,357 +134884,6 @@ self: { } ) { }; - "flow-er" = callPackage ( - { - mkDerivation, - base, - doctest, - flow, - QuickCheck, - }: - mkDerivation { - pname = "flow-er"; - version = "1.0.3"; - sha256 = "19nvcg1dsr9spqmjgrixqckbs7rc12fxbgn54ydq05qmy6w6p7f8"; - libraryHaskellDepends = [ - base - flow - ]; - testHaskellDepends = [ - base - doctest - flow - QuickCheck - ]; - description = "More directional operators"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "flow2dot" = callPackage ( - { - mkDerivation, - base, - containers, - dotgen, - mtl, - parsec, - QuickCheck, - }: - mkDerivation { - pname = "flow2dot"; - version = "0.9.2"; - sha256 = "07bnyzcaf5jlhkrsqw6y880z9x5p6y8kh2nfwz4xds9cgk61r18j"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - containers - dotgen - mtl - parsec - ]; - executableHaskellDepends = [ - base - containers - dotgen - mtl - parsec - ]; - testHaskellDepends = [ - base - containers - dotgen - mtl - parsec - QuickCheck - ]; - description = "Library and binary to generate sequence/flow diagrams from plain text source"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "flow2dot"; - broken = true; - } - ) { }; - - "flowdock" = callPackage ( - { - mkDerivation, - aeson, - base, - base64-bytestring, - bytestring, - http-client, - http-client-tls, - lens, - lens-action, - mtl, - network, - pipes, - pipes-aeson, - pipes-http, - pipes-parse, - template-haskell, - text, - unordered-containers, - uuid, - }: - mkDerivation { - pname = "flowdock"; - version = "0.3.0.1"; - sha256 = "1az9wwdng7i3jrjwizzz3690506b3vk1m8h2b96wf59r51qnpr6i"; - libraryHaskellDepends = [ - aeson - base - base64-bytestring - bytestring - http-client - http-client-tls - lens - lens-action - mtl - network - pipes - pipes-aeson - pipes-http - pipes-parse - template-haskell - text - unordered-containers - uuid - ]; - description = "Flowdock client library for Haskell"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "flowdock-api" = callPackage ( - { - mkDerivation, - aeson, - base, - base64-bytestring, - blaze-builder, - bytestring, - data-default, - directory, - filepath, - heredoc, - HsOpenSSL, - hspec, - http-streams, - http-types, - io-streams, - monad-logger, - MonadCatchIO-transformers, - optparse-applicative, - split, - template-haskell, - text, - time, - transformers, - unordered-containers, - vector, - }: - mkDerivation { - pname = "flowdock-api"; - version = "0.1.0.0"; - sha256 = "0p0b0pabyykvli9l0jrcbfgpyq7dna3zilb4z0s1hb6mamfdn7ng"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson - base - base64-bytestring - blaze-builder - bytestring - data-default - HsOpenSSL - http-streams - http-types - io-streams - monad-logger - MonadCatchIO-transformers - text - time - transformers - unordered-containers - vector - ]; - executableHaskellDepends = [ - aeson - base - base64-bytestring - blaze-builder - bytestring - data-default - directory - filepath - HsOpenSSL - http-streams - http-types - io-streams - MonadCatchIO-transformers - optparse-applicative - split - text - time - transformers - unordered-containers - vector - ]; - testHaskellDepends = [ - aeson - base - base64-bytestring - blaze-builder - bytestring - data-default - heredoc - HsOpenSSL - hspec - http-streams - http-types - io-streams - monad-logger - MonadCatchIO-transformers - template-haskell - text - time - transformers - unordered-containers - vector - ]; - description = "API integration with Flowdock"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - mainProgram = "flowdock"; - broken = true; - } - ) { }; - - "flowdock-rest" = callPackage ( - { - mkDerivation, - aeson, - ansi-wl-pprint, - base, - binary, - binary-orphans, - binary-tagged, - bytestring, - deepseq, - exceptions, - file-embed, - generics-sop, - hashable, - http-client, - http-client-tls, - lens, - semigroups, - tagged, - tasty, - tasty-quickcheck, - text, - time, - unordered-containers, - }: - mkDerivation { - pname = "flowdock-rest"; - version = "0.1.0.0"; - sha256 = "1bpvnpfhnir14ahcg99hz9j3pklaz0df1h239cxvfc2sb86mkwmr"; - libraryHaskellDepends = [ - aeson - ansi-wl-pprint - base - binary - binary-orphans - binary-tagged - bytestring - deepseq - exceptions - generics-sop - hashable - http-client - http-client-tls - lens - semigroups - tagged - text - time - unordered-containers - ]; - testHaskellDepends = [ - aeson - ansi-wl-pprint - base - binary - binary-orphans - binary-tagged - bytestring - deepseq - exceptions - file-embed - generics-sop - hashable - http-client - http-client-tls - lens - semigroups - tagged - tasty - tasty-quickcheck - text - time - unordered-containers - ]; - description = "Flowdock REST API"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "flower" = callPackage ( - { - mkDerivation, - array, - base, - binary, - bio, - bytestring, - cmdargs, - containers, - mtl, - random, - }: - mkDerivation { - pname = "flower"; - version = "0.7.2"; - sha256 = "0r9l3b91kyhf4ab8m2qv5jsfqf3k7x639bq1wjbf852imzl6138b"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - array - base - binary - bio - bytestring - cmdargs - containers - mtl - random - ]; - description = "Analyze 454 flowgrams (.SFF files)"; - license = "GPL"; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "flowlocks-framework" = callPackage ( { mkDerivation, @@ -237612,434 +134912,6 @@ self: { } ) { }; - "flowsim" = callPackage ( - { - mkDerivation, - array, - base, - biocore, - biofasta, - biosff, - bytestring, - cmdargs, - containers, - directory, - MonadRandom, - mtl, - random, - }: - mkDerivation { - pname = "flowsim"; - version = "0.3.5"; - sha256 = "0l3222a2r2khhrfhzvd0iikqq1rlcwhvf785bwnwqygq35i1w6j3"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - array - base - biocore - biofasta - biosff - bytestring - cmdargs - containers - directory - MonadRandom - mtl - random - ]; - description = "Simulate 454 pyrosequencing"; - license = lib.licenses.gpl2Only; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "flp" = callPackage ( - { - mkDerivation, - alex, - array, - base, - containers, - deepseq, - happy, - haskell-src-meta, - HUnit, - pretty-simple, - prettyprinter, - template-haskell, - test-framework, - test-framework-hunit, - th-lift, - transformers, - }: - mkDerivation { - pname = "flp"; - version = "0.1.0.0"; - sha256 = "0aw3a1krisx4vhn2kpdizxhp2j8rnwv5iwm6z2qv2av1yh99j8h6"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - array - base - containers - deepseq - haskell-src-meta - prettyprinter - template-haskell - th-lift - transformers - ]; - libraryToolDepends = [ - alex - happy - ]; - executableHaskellDepends = [ - array - base - containers - deepseq - haskell-src-meta - pretty-simple - prettyprinter - template-haskell - th-lift - transformers - ]; - executableToolDepends = [ - alex - happy - ]; - testHaskellDepends = [ - array - base - containers - deepseq - haskell-src-meta - HUnit - prettyprinter - template-haskell - test-framework - test-framework-hunit - th-lift - transformers - ]; - testToolDepends = [ - alex - happy - ]; - description = "A layout spec language for memory managers implemented in Rust"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "fltkhs" = - callPackage - ( - { - mkDerivation, - base, - bytestring, - c2hs, - Cabal, - directory, - filepath, - fltk14, - libGL, - libGLU, - mtl, - OpenGLRaw, - parsec, - pkg-config, - text, - vector, - }: - mkDerivation { - pname = "fltkhs"; - version = "0.8.0.3"; - sha256 = "19y9ill3zgcip8ys3i6mppaj6qzi7pgzd1q7n5r58l0wljnq8vv6"; - configureFlags = [ "-fopengl" ]; - isLibrary = true; - isExecutable = true; - setupHaskellDepends = [ - base - Cabal - directory - filepath - ]; - libraryHaskellDepends = [ - base - bytestring - text - vector - ]; - librarySystemDepends = [ fltk14 ]; - libraryPkgconfigDepends = [ - libGL - libGLU - ]; - libraryToolDepends = [ - c2hs - pkg-config - ]; - executableHaskellDepends = [ - base - directory - filepath - mtl - OpenGLRaw - parsec - text - ]; - description = "FLTK bindings"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) - { - inherit (pkgs) fltk14; - inherit (pkgs) libGL; - inherit (pkgs) libGLU; - inherit (pkgs) pkg-config; - }; - - "fltkhs-demos" = callPackage ( - { - mkDerivation, - base, - bytestring, - directory, - fltkhs, - process, - stm, - }: - mkDerivation { - pname = "fltkhs-demos"; - version = "0.0.0.7"; - sha256 = "0yisv3v618wcsd5zc5m1xl35r7pqdxdn5x54swzdb0v9gvydcy2f"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - bytestring - directory - fltkhs - process - stm - ]; - description = "FLTKHS demos. Please scroll to the bottom for more information."; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "fltkhs-fluid-demos" = callPackage ( - { - mkDerivation, - base, - bytestring, - fltkhs, - }: - mkDerivation { - pname = "fltkhs-fluid-demos"; - version = "0.0.0.6"; - sha256 = "0ljhj9bjll7j9rypfcz514s6ypi2a4paggz340sylyw9limjgdip"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - bytestring - fltkhs - ]; - description = "Fltkhs Fluid Demos"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "fltkhs-fluid-examples" = callPackage ( - { - mkDerivation, - base, - bytestring, - fltkhs, - }: - mkDerivation { - pname = "fltkhs-fluid-examples"; - version = "0.0.0.3"; - sha256 = "1w2v8fv1iaij7q53bamlrghq15qqwfi7hv7bknmf9yzaky0nkm99"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - bytestring - fltkhs - ]; - description = "Fltkhs Fluid Examples"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "fltkhs-hello-world" = callPackage ( - { - mkDerivation, - base, - fltkhs, - }: - mkDerivation { - pname = "fltkhs-hello-world"; - version = "0.0.0.2"; - sha256 = "1qddxp73f6lfl9vfmr8ap1vf9hr9crlxi8jdca1sk6qjp8lygy67"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - fltkhs - ]; - description = "Fltkhs template project"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - mainProgram = "fltkhs-hello-world"; - } - ) { }; - - "fltkhs-themes" = callPackage ( - { - mkDerivation, - base, - bytestring, - Cabal, - fltkhs, - fontconfig, - load-font, - text, - vector, - }: - mkDerivation { - pname = "fltkhs-themes"; - version = "0.2.0.3"; - sha256 = "0kxc03lbms0chhm33wxdqjxdabhdn0crfc1raa5pr07gkm60skb1"; - enableSeparateDataOutput = true; - setupHaskellDepends = [ - base - Cabal - ]; - libraryHaskellDepends = [ - base - bytestring - fltkhs - load-font - text - vector - ]; - librarySystemDepends = [ fontconfig ]; - description = "A set of themed widgets that provides drop in replacements to the ones in FLTKHS"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { inherit (pkgs) fontconfig; }; - - "fluent-logger" = callPackage ( - { - mkDerivation, - attoparsec, - base, - bytestring, - cereal, - cereal-conduit, - conduit, - conduit-extra, - containers, - criterion, - exceptions, - hspec, - messagepack, - network, - network-socket-options, - random, - stm, - text, - time, - transformers, - vector, - }: - mkDerivation { - pname = "fluent-logger"; - version = "0.2.3.1"; - sha256 = "0m97hljfrs5mh5pjbwvnw7b581y7w96qfyjr3d9p1aqbj6nsa6dp"; - libraryHaskellDepends = [ - base - bytestring - cereal - containers - messagepack - network - network-socket-options - random - stm - text - time - vector - ]; - testHaskellDepends = [ - attoparsec - base - bytestring - cereal - cereal-conduit - conduit - conduit-extra - containers - exceptions - hspec - messagepack - network - text - time - transformers - ]; - benchmarkHaskellDepends = [ - base - criterion - ]; - description = "A structured logger for Fluentd (Haskell)"; - license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "fluent-logger-conduit" = callPackage ( - { - mkDerivation, - base, - bytestring, - conduit, - fluent-logger, - resourcet, - transformers, - }: - mkDerivation { - pname = "fluent-logger-conduit"; - version = "0.3.0.0"; - sha256 = "0z21dg1y0rqfgvpvgci5kp3jh0kdx5v5paxdidwp8dd6v7y3ag9q"; - libraryHaskellDepends = [ - base - bytestring - conduit - fluent-logger - resourcet - transformers - ]; - description = "Conduit interface for fluent-logger"; - license = "unknown"; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "fluffy" = callPackage ( { mkDerivation, @@ -238083,128 +134955,6 @@ self: { } ) { }; - "fluffy-parser" = callPackage ( - { - mkDerivation, - base, - binary, - bytestring, - pandoc, - parsec, - postgresql-simple, - }: - mkDerivation { - pname = "fluffy-parser"; - version = "0.1.0.50"; - sha256 = "0arxcw5x594dc5c82wyasl3v2jmbw1d5bbs0gafdg3n1n95bv278"; - libraryHaskellDepends = [ - base - binary - bytestring - pandoc - parsec - postgresql-simple - ]; - description = "The parser for fluffy to parsec the question bank in .docx type"; - license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "fluid-idl" = callPackage ( - { - mkDerivation, - aeson, - base, - blaze-markup, - bytestring, - containers, - errors, - exceptions, - hspec, - lifted-async, - monad-control, - monad-logger, - mtl, - random, - safe-exceptions, - scientific, - text, - text-conversions, - unordered-containers, - vector, - }: - mkDerivation { - pname = "fluid-idl"; - version = "0.0.6"; - sha256 = "06zdwvjdgv401h5gf3zagvxd01r20pldv327ag3d8clwvg51sgnr"; - libraryHaskellDepends = [ - aeson - base - blaze-markup - bytestring - containers - errors - exceptions - lifted-async - monad-control - monad-logger - mtl - random - safe-exceptions - scientific - text - text-conversions - unordered-containers - vector - ]; - testHaskellDepends = [ - aeson - base - containers - hspec - scientific - text - vector - ]; - description = "Code-generated, Auto-versioned, & Smart Web APIs"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "fluid-idl-http-client" = callPackage ( - { - mkDerivation, - aeson, - base, - bytestring, - fluid-idl, - http-client, - http-types, - text-conversions, - }: - mkDerivation { - pname = "fluid-idl-http-client"; - version = "0.0.0"; - sha256 = "0ah4sfybkwzr1z8gvl3zdh2001a84b3rwgd47nqbn6crks3yvdz8"; - libraryHaskellDepends = [ - aeson - base - bytestring - fluid-idl - http-client - http-types - text-conversions - ]; - description = "Http Client addon for Fluid"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "fluid-idl-scotty" = callPackage ( { mkDerivation, @@ -238232,35 +134982,9 @@ self: { description = "Scotty server add-on for Fluid"; license = lib.licenses.bsd3; hydraPlatforms = lib.platforms.none; - } - ) { }; - - "fluidsynth" = callPackage ( - { - mkDerivation, - base, - bindings-DSL, - containers, - directory, - fluidsynth, - }: - mkDerivation { - pname = "fluidsynth"; - version = "0.2.0.0"; - sha256 = "18r7q7sh35sr71ays0c9ic6f7vmrblpw25mz1y5v9sbk5x2lh64s"; - libraryHaskellDepends = [ - base - bindings-DSL - containers - directory - ]; - librarySystemDepends = [ fluidsynth ]; - description = "Haskell bindings to FluidSynth"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; broken = true; } - ) { inherit (pkgs) fluidsynth; }; + ) { }; "flush-queue" = callPackage ( { @@ -238318,39 +135042,6 @@ self: { } ) { }; - "fmark" = callPackage ( - { - mkDerivation, - base, - directory, - filepath, - mtl, - process, - Unixutils, - }: - mkDerivation { - pname = "fmark"; - version = "0.1.1"; - sha256 = "1bjkkd90mw1nbm5pyjh52dwhqa6xx3i3hhl2ys3qpk08mrw5r09l"; - isLibrary = false; - isExecutable = true; - enableSeparateDataOutput = true; - executableHaskellDepends = [ - base - directory - filepath - mtl - process - Unixutils - ]; - description = "A Friendly Markup language without syntax"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "fmark"; - broken = true; - } - ) { }; - "fmlist" = callPackage ( { mkDerivation, base }: mkDerivation { @@ -238443,26 +135134,6 @@ self: { } ) { }; - "fmt-for-rio" = callPackage ( - { - mkDerivation, - base, - enum-text-rio, - }: - mkDerivation { - pname = "fmt-for-rio"; - version = "1.0.0.0"; - sha256 = "0hxf1cgch4l5vwnsg4449ing3qi40kpfcwjg4l807sw0b18ccwar"; - libraryHaskellDepends = [ - base - enum-text-rio - ]; - description = "Adaptor for getting fmt to work with rio"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "fmt-terminal-colors" = callPackage ( { mkDerivation, @@ -238539,59 +135210,6 @@ self: { } ) { }; - "fn-extra" = callPackage ( - { - mkDerivation, - base, - blaze-builder, - bytestring, - digestive-functors, - directory, - either, - fn, - heist, - http-types, - lens, - map-syntax, - mtl, - resourcet, - text, - wai, - wai-extra, - wai-util, - xmlhtml, - }: - mkDerivation { - pname = "fn-extra"; - version = "0.3.0.2"; - sha256 = "1wbhfaddqhp68gh7906w4lnnlz2zfqrfl71kf5w5pb3nhkbjx3g1"; - libraryHaskellDepends = [ - base - blaze-builder - bytestring - digestive-functors - directory - either - fn - heist - http-types - lens - map-syntax - mtl - resourcet - text - wai - wai-extra - wai-util - xmlhtml - ]; - description = "Extras for Fn, a functional web framework"; - license = lib.licenses.isc; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "fnmatch" = callPackage ( { mkDerivation, @@ -238954,121 +135572,6 @@ self: { } ) { }; - "foldl-incremental" = callPackage ( - { - mkDerivation, - base, - bytestring, - containers, - criterion, - deepseq, - foldl, - histogram-fill, - mwc-random, - pipes, - QuickCheck, - tasty, - tasty-golden, - tasty-hunit, - tasty-quickcheck, - vector, - }: - mkDerivation { - pname = "foldl-incremental"; - version = "0.2.0.0"; - sha256 = "09xf9cba3j49z4bwfmad6q9gdnp3f1zn817q4px7hky2gln3bhzk"; - libraryHaskellDepends = [ - base - containers - deepseq - foldl - histogram-fill - vector - ]; - testHaskellDepends = [ - base - bytestring - containers - foldl - histogram-fill - mwc-random - pipes - QuickCheck - tasty - tasty-golden - tasty-hunit - tasty-quickcheck - vector - ]; - benchmarkHaskellDepends = [ - base - containers - criterion - foldl - ]; - description = "incremental folds"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "foldl-statistics" = callPackage ( - { - mkDerivation, - base, - containers, - criterion, - foldl, - hashable, - math-functions, - mwc-random, - profunctors, - quickcheck-instances, - statistics, - tasty, - tasty-quickcheck, - unordered-containers, - vector, - }: - mkDerivation { - pname = "foldl-statistics"; - version = "0.1.5.1"; - sha256 = "196vkbgj6c5dhwfw6l73z8dw505hsjsrx4w1f3zfczm0jfc4fsxl"; - libraryHaskellDepends = [ - base - containers - foldl - hashable - math-functions - profunctors - unordered-containers - ]; - testHaskellDepends = [ - base - foldl - profunctors - quickcheck-instances - statistics - tasty - tasty-quickcheck - vector - ]; - benchmarkHaskellDepends = [ - base - criterion - foldl - mwc-random - statistics - vector - ]; - description = "Statistical functions from the statistics package implemented as Folds"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "foldl-transduce" = callPackage ( { mkDerivation, @@ -239140,51 +135643,6 @@ self: { } ) { }; - "foldl-transduce-attoparsec" = callPackage ( - { - mkDerivation, - attoparsec, - base, - bytestring, - doctest, - foldl, - foldl-transduce, - monoid-subclasses, - tasty, - tasty-hunit, - text, - transformers, - }: - mkDerivation { - pname = "foldl-transduce-attoparsec"; - version = "0.2.0.0"; - sha256 = "0wrgwr7v50z3wb5fy4k7fnk20vgfrb2vjjgqyshim7wlpl9w5m0b"; - libraryHaskellDepends = [ - attoparsec - base - bytestring - foldl-transduce - monoid-subclasses - text - transformers - ]; - testHaskellDepends = [ - attoparsec - base - doctest - foldl - foldl-transduce - tasty - tasty-hunit - text - transformers - ]; - description = "Attoparsec and foldl-transduce integration"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "folds" = callPackage ( { mkDerivation, @@ -239237,37 +135695,6 @@ self: { } ) { }; - "folds-common" = callPackage ( - { - mkDerivation, - base, - containers, - folds, - tasty, - tasty-quickcheck, - }: - mkDerivation { - pname = "folds-common"; - version = "0.2.0.0"; - sha256 = "1dcyh798ijq4ms8xr0jwfp4fy5i5l4czl7m3yvk2z6rkha9w1zmc"; - libraryHaskellDepends = [ - base - containers - folds - ]; - testHaskellDepends = [ - base - containers - tasty - tasty-quickcheck - ]; - description = "A playground of common folds for folds"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "folgerhs" = callPackage ( { mkDerivation, @@ -239305,189 +135732,6 @@ self: { } ) { }; - "follow" = callPackage ( - { - mkDerivation, - aeson, - base, - bytestring, - exceptions, - feed, - HandsomeSoup, - hspec, - hxt, - req, - text, - time, - transformers, - unordered-containers, - yaml, - }: - mkDerivation { - pname = "follow"; - version = "0.1.0.0"; - sha256 = "18j7m8dsmnrq7cnmin48zl1g8yidsh8sgqnlr42qldi49ciam4j0"; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - aeson - base - bytestring - exceptions - feed - HandsomeSoup - hxt - req - text - time - transformers - unordered-containers - yaml - ]; - executableHaskellDepends = [ - aeson - base - bytestring - exceptions - feed - HandsomeSoup - hxt - req - text - time - transformers - unordered-containers - yaml - ]; - testHaskellDepends = [ - aeson - base - bytestring - exceptions - feed - HandsomeSoup - hspec - hxt - req - text - time - transformers - unordered-containers - yaml - ]; - description = "Haskell library to follow content published on any subject"; - license = lib.licenses.lgpl3Only; - hydraPlatforms = lib.platforms.none; - mainProgram = "follow_pocket_auth"; - broken = true; - } - ) { }; - - "follow-file" = callPackage ( - { - mkDerivation, - attoparsec, - attoparsec-path, - base, - bytestring, - conduit, - conduit-combinators, - directory, - exceptions, - hinotify, - monad-control, - mtl, - path, - text, - unix, - utf8-string, - }: - mkDerivation { - pname = "follow-file"; - version = "0.0.3"; - sha256 = "0nxvw17ndjrg34mc2a0bcyprcng52f6mn3l7mhx2fc11njdf2b93"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - attoparsec - attoparsec-path - base - bytestring - conduit - directory - exceptions - hinotify - monad-control - mtl - path - text - unix - utf8-string - ]; - executableHaskellDepends = [ - attoparsec - attoparsec-path - base - bytestring - conduit - conduit-combinators - directory - exceptions - hinotify - monad-control - mtl - path - text - unix - utf8-string - ]; - description = "Be notified when a file gets appended, solely with what was added. Warning - only works on linux and for files that are strictly appended, like log files."; - license = lib.licenses.bsd3; - badPlatforms = lib.platforms.darwin; - hydraPlatforms = lib.platforms.none; - mainProgram = "follow-file"; - broken = true; - } - ) { }; - - "follower" = callPackage ( - { - mkDerivation, - ansi-wl-pprint, - base, - cmdargs, - directory, - filepath, - hs-twitter, - old-locale, - strict, - time, - }: - mkDerivation { - pname = "follower"; - version = "0.0.1"; - sha256 = "0iy8q06fpc03n4z6dcrl95vji67dia6bp30q42rrlqw6s9cwigsm"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - ansi-wl-pprint - base - cmdargs - directory - filepath - hs-twitter - old-locale - strict - time - ]; - description = "Follow Tweets anonymously"; - license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - mainProgram = "follower"; - } - ) { }; - "folly-clib" = callPackage ( @@ -239563,36 +135807,6 @@ self: { } ) { }; - "font-opengl-basic4x6" = callPackage ( - { - mkDerivation, - base, - GLFW-b, - OpenGL, - }: - mkDerivation { - pname = "font-opengl-basic4x6"; - version = "0.0.3"; - sha256 = "0myjb8g3mis887l0jmr88nb757x0zcvhnanx02hxjbfb5iqx3cx9"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - OpenGL - ]; - executableHaskellDepends = [ - base - GLFW-b - OpenGL - ]; - description = "Basic4x6 font for OpenGL"; - license = lib.licenses.publicDomain; - hydraPlatforms = lib.platforms.none; - mainProgram = "show-font-basic4x6"; - broken = true; - } - ) { }; - "fontconfig-pure" = callPackage ( { mkDerivation, @@ -239653,35 +135867,6 @@ self: { } ) { inherit (pkgs) fontconfig; }; - "foo" = callPackage ( - { - mkDerivation, - base, - containers, - GLUT, - haskell98, - OpenGL, - }: - mkDerivation { - pname = "foo"; - version = "1.0"; - sha256 = "1f1abijdfvnmkgbvw9q94k4p39pbqslmg9am1j1sjyxrag5y0vv8"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - containers - GLUT - haskell98 - OpenGL - ]; - description = "Paper soccer, an OpenGL game"; - license = "GPL"; - hydraPlatforms = lib.platforms.none; - mainProgram = "foo"; - } - ) { }; - "foobar" = callPackage ( { mkDerivation, base }: mkDerivation { @@ -239699,79 +135884,6 @@ self: { } ) { }; - "for-free" = callPackage ( - { - mkDerivation, - base, - comonad, - comonad-transformers, - containers, - contravariant, - transformers, - }: - mkDerivation { - pname = "for-free"; - version = "0.1"; - sha256 = "048m95sg8jq7kpr55iq5h93c7zbaqp5v340phb13v9yw2hv50sql"; - libraryHaskellDepends = [ - base - comonad - comonad-transformers - containers - contravariant - transformers - ]; - description = "Functor, Monad, MonadPlus, etc for free"; - license = lib.licenses.publicDomain; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "forbidden-fruit" = callPackage ( - { - mkDerivation, - base, - control-monad-loop, - hashable, - hashtables, - hspec, - primitive, - transformers, - transformers-base, - vector, - }: - mkDerivation { - pname = "forbidden-fruit"; - version = "0.1.0"; - sha256 = "0sxaa2lpz6j0ljz8kjxifvp4lk5x12w0ka9wjws4w7r8q9bld8dd"; - libraryHaskellDepends = [ - base - control-monad-loop - hashable - hashtables - primitive - transformers - transformers-base - vector - ]; - testHaskellDepends = [ - base - control-monad-loop - hashable - hashtables - hspec - primitive - transformers - vector - ]; - description = "A library accelerates imperative style programming"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "force-layout" = callPackage ( { mkDerivation, @@ -239799,55 +135911,6 @@ self: { } ) { }; - "fordo" = callPackage ( - { - mkDerivation, - base, - process, - transformers, - }: - mkDerivation { - pname = "fordo"; - version = "0.1"; - sha256 = "0vlh5rfn3n8vi3gbfmpbw20jgv5skvcw187walgv6dns39pagsar"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - process - transformers - ]; - description = "Run a command on files with magic substituion support (sequencing and regexp)"; - license = "GPL"; - hydraPlatforms = lib.platforms.none; - mainProgram = "fordo"; - broken = true; - } - ) { }; - - "forecast-io" = callPackage ( - { - mkDerivation, - aeson, - base, - text, - }: - mkDerivation { - pname = "forecast-io"; - version = "0.2.0.0"; - sha256 = "17wsqrq1zq1p80gnrfsvks5bhickfqj5mh2prbzzkzb3s28l1mby"; - libraryHaskellDepends = [ - aeson - base - text - ]; - description = "A Haskell library for working with forecast.io data."; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "foreign" = callPackage ( { mkDerivation, @@ -239910,115 +135973,6 @@ self: { } ) { }; - "foreign-var" = callPackage ( - { - mkDerivation, - base, - stm, - transformers, - }: - mkDerivation { - pname = "foreign-var"; - version = "0.1"; - sha256 = "1rxfmzq9npj1170i85qhq5fhvvzb9j1wdi5lzmj57k4hlyxcwqjd"; - revision = "1"; - editedCabalFile = "077s05370sx7pn053z1y6ygjg77dsvpcd5r8ivx9q9rk8m1hdjgr"; - libraryHaskellDepends = [ - base - stm - transformers - ]; - description = "Encapsulating mutatable state in external libraries"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "forest" = callPackage ( - { - mkDerivation, - aeson, - base, - comonad, - deepseq, - free, - hashable, - profunctors, - semigroupoids, - }: - mkDerivation { - pname = "forest"; - version = "0.2.1.1"; - sha256 = "1f3zbdkxch2a7a6qv20j0mj1bjjk7f81bnn48ki8xzg925cyl1dl"; - libraryHaskellDepends = [ - aeson - base - comonad - deepseq - free - hashable - profunctors - semigroupoids - ]; - description = "Tree and Forest types"; - license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "forest-fire" = callPackage ( - { - mkDerivation, - aeson, - base, - bytestring, - cli, - containers, - HUnit, - mtl, - process, - tasty, - tasty-hunit, - text, - }: - mkDerivation { - pname = "forest-fire"; - version = "0.3"; - sha256 = "09h8hpb9b0hsj2bpwywxdk2a1ww1si3g5rn5n6ajq5dgvqki8rlp"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson - base - bytestring - containers - process - text - ]; - executableHaskellDepends = [ - base - cli - ]; - testHaskellDepends = [ - aeson - base - bytestring - containers - HUnit - mtl - tasty - tasty-hunit - ]; - description = "Recursively delete CloudFormation stacks and their dependants"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "forest-fire"; - broken = true; - } - ) { }; - "forex2ledger" = callPackage ( { mkDerivation, @@ -240068,233 +136022,97 @@ self: { aeson base containers - currency-codes - hspec - hspec-expectations-pretty-diff - relude - time - ]; - description = "Print Forex quotes in Ledger format"; - license = lib.licenses.agpl3Only; - hydraPlatforms = lib.platforms.none; - mainProgram = "forex2ledger"; - broken = true; - } - ) { }; - - "forger" = callPackage ( - { mkDerivation, base }: - mkDerivation { - pname = "forger"; - version = "0.0.0.0"; - sha256 = "1bykssfas1fz46qmiwhxs09xnnwp104hlmq08z9g1xh7qv8bh7iy"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base ]; - executableHaskellDepends = [ base ]; - description = "Library for generating fake placeholder data"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "forger"; - broken = true; - } - ) { }; - - "forkable-monad" = callPackage ( - { - mkDerivation, - base, - transformers, - }: - mkDerivation { - pname = "forkable-monad"; - version = "0.2.0.3"; - sha256 = "0qnl3bvqiwh6d7lm3w06is5ivh025c7024695m7fzajvzbpk67jp"; - libraryHaskellDepends = [ - base - transformers - ]; - description = "An implementation of forkIO for monad stacks"; - license = lib.licenses.bsd3; - } - ) { }; - - "forma" = callPackage ( - { - mkDerivation, - aeson, - base, - containers, - hspec, - mtl, - text, - }: - mkDerivation { - pname = "forma"; - version = "1.2.0"; - sha256 = "13kyggzlf156d3d3mj453jwmafyz74vk4bim3f30zxyd6syl3m5v"; - revision = "3"; - editedCabalFile = "0lh9dgi3m75078ijvc7s4c1bd1nr1l3v4w81l2455m6gydwsrrkd"; - libraryHaskellDepends = [ - aeson - base - containers - mtl - text - ]; - testHaskellDepends = [ - aeson - base - containers - hspec - mtl - text - ]; - description = "Parse and validate forms in JSON format"; - license = lib.licenses.bsd3; - } - ) { }; - - "formal" = callPackage ( - { - mkDerivation, - ansi-terminal, - base, - bytestring, - containers, - directory, - file-embed, - HTTP, - indents, - interpolatedstring-perl6, - jmacro, - MissingH, - mtl, - network, - pandoc, - parsec, - process, - text, - transformers, - urlencoded, - wl-pprint-text, - }: - mkDerivation { - pname = "formal"; - version = "0.1.0"; - sha256 = "0z8a5a9w7mg69c1x6h8825bhkll63gz6j85lbc0w59w1ag2x8865"; - isLibrary = false; - isExecutable = true; - enableSeparateDataOutput = true; - executableHaskellDepends = [ - ansi-terminal - base - bytestring - containers - directory - file-embed - HTTP - indents - interpolatedstring-perl6 - jmacro - MissingH - mtl - network - pandoc - parsec - process - text - transformers - urlencoded - wl-pprint-text + currency-codes + hspec + hspec-expectations-pretty-diff + relude + time ]; - description = "A statically typed, functional programming language"; - license = lib.licenses.mit; + description = "Print Forex quotes in Ledger format"; + license = lib.licenses.agpl3Only; hydraPlatforms = lib.platforms.none; - mainProgram = "formal"; + mainProgram = "forex2ledger"; broken = true; } ) { }; - "format" = callPackage ( + "forkable-monad" = callPackage ( { mkDerivation, - haskell2010, - parsec, - QuickCheck, + base, + transformers, }: mkDerivation { - pname = "format"; - version = "0.1.0.0"; - sha256 = "1vv9b0hif5hi3jkd1n6j85b5mkfkjyixldblm2l4qfgrj95igmph"; + pname = "forkable-monad"; + version = "0.2.0.3"; + sha256 = "0qnl3bvqiwh6d7lm3w06is5ivh025c7024695m7fzajvzbpk67jp"; libraryHaskellDepends = [ - haskell2010 - parsec - ]; - testHaskellDepends = [ - haskell2010 - parsec - QuickCheck + base + transformers ]; - description = "Rendering from and scanning to format strings"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; + description = "An implementation of forkIO for monad stacks"; + license = lib.licenses.bsd3; } ) { }; - "format-numbers" = callPackage ( + "forma" = callPackage ( { mkDerivation, + aeson, base, + containers, hspec, + mtl, text, }: mkDerivation { - pname = "format-numbers"; - version = "0.1.0.1"; - sha256 = "193nvj3bf7w0rb1igwl6q27jjijw71v82ik3l7maamfry15hwiaw"; + pname = "forma"; + version = "1.2.0"; + sha256 = "13kyggzlf156d3d3mj453jwmafyz74vk4bim3f30zxyd6syl3m5v"; + revision = "3"; + editedCabalFile = "0lh9dgi3m75078ijvc7s4c1bd1nr1l3v4w81l2455m6gydwsrrkd"; libraryHaskellDepends = [ + aeson base + containers + mtl text ]; testHaskellDepends = [ + aeson base + containers hspec + mtl text ]; - description = "Various number formatting functions"; - license = lib.licenses.mit; + description = "Parse and validate forms in JSON format"; + license = lib.licenses.bsd3; } ) { }; - "format-status" = callPackage ( + "format-numbers" = callPackage ( { mkDerivation, base, - data-concurrent-queue, - old-locale, - stm, + hspec, text, - time, }: mkDerivation { - pname = "format-status"; - version = "0.2.0.0"; - sha256 = "0dfmjp307c8685cdw41nmjmisf3aplyf177r973wyqcrifabvs2q"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ + pname = "format-numbers"; + version = "0.1.0.1"; + sha256 = "193nvj3bf7w0rb1igwl6q27jjijw71v82ik3l7maamfry15hwiaw"; + libraryHaskellDepends = [ base - data-concurrent-queue - old-locale - stm text - time ]; - description = "A utility for writing the date to dzen2"; + testHaskellDepends = [ + base + hspec + text + ]; + description = "Various number formatting functions"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - mainProgram = "format-status"; } ) { }; @@ -240422,139 +136240,6 @@ self: { } ) { }; - "forml" = callPackage ( - { - mkDerivation, - ansi-terminal, - base, - bytestring, - cereal, - containers, - directory, - file-embed, - ghc-prim, - GraphSCC, - hslogger, - HTTP, - indents, - interpolatedstring-perl6, - jmacro, - MissingH, - mtl, - network, - pandoc, - parsec, - process, - text, - urlencoded, - utf8-string, - zlib, - }: - mkDerivation { - pname = "forml"; - version = "0.2"; - sha256 = "1bqfw3h06mbznivg37840qnzjygflzp90wkyssnb1kjxi4bj1vbv"; - isLibrary = false; - isExecutable = true; - enableSeparateDataOutput = true; - executableHaskellDepends = [ - ansi-terminal - base - bytestring - cereal - containers - directory - file-embed - ghc-prim - GraphSCC - hslogger - HTTP - indents - interpolatedstring-perl6 - jmacro - MissingH - mtl - network - pandoc - parsec - process - text - urlencoded - utf8-string - zlib - ]; - description = "A statically typed, functional programming language"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - mainProgram = "forml"; - broken = true; - } - ) { }; - - "formlets" = callPackage ( - { - mkDerivation, - applicative-extras, - base, - blaze-html, - bytestring, - haskell98, - syb, - transformers, - xhtml, - }: - mkDerivation { - pname = "formlets"; - version = "0.8"; - sha256 = "0jx56vhrzcwca33rgp738plmssw95nv20rrzw5xrxcmdv26zp1w9"; - libraryHaskellDepends = [ - applicative-extras - base - blaze-html - bytestring - haskell98 - syb - transformers - xhtml - ]; - description = "Formlets implemented in Haskell"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "formlets-hsp" = callPackage ( - { - mkDerivation, - applicative-extras, - base, - formlets, - haskell98, - hsp, - hsx, - mtl, - trhsx, - }: - mkDerivation { - pname = "formlets-hsp"; - version = "2.3.1"; - sha256 = "19m0nryrksh1cgsz7sx3gamjczw36hqfsbml05p6j7li3bk0fpw2"; - libraryHaskellDepends = [ - applicative-extras - base - formlets - haskell98 - hsp - hsx - mtl - ]; - libraryToolDepends = [ trhsx ]; - description = "HSP support for Formlets"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "forms-data-format" = callPackage ( { mkDerivation, @@ -240585,133 +136270,6 @@ self: { } ) { }; - "formura" = callPackage ( - { - mkDerivation, - ansi-wl-pprint, - base, - containers, - either, - lattices, - lens, - mmorph, - mtl, - parsers, - QuickCheck, - text, - trifecta, - vector, - }: - mkDerivation { - pname = "formura"; - version = "1.0"; - sha256 = "136wr9lhld2ldj4r3fwwj6z99hrsyzg26wm3g28kyn4c68vp5y45"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - ansi-wl-pprint - base - containers - either - lattices - lens - mmorph - mtl - parsers - QuickCheck - text - trifecta - vector - ]; - executableHaskellDepends = [ - ansi-wl-pprint - base - containers - lens - text - trifecta - ]; - description = "Formura is a simple language to describe stencil computation"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "forsyde-deep" = callPackage ( - { - mkDerivation, - base, - Cabal, - containers, - directory, - filepath, - HUnit, - mtl, - parameterized-data, - pretty, - process, - QuickCheck, - random, - regex-posix, - syb, - template-haskell, - type-level, - }: - mkDerivation { - pname = "forsyde-deep"; - version = "0.2.0"; - sha256 = "1rznghp5njbs474cr1pmipmflf53rk8al6pb2d16vhj717431vf9"; - enableSeparateDataOutput = true; - setupHaskellDepends = [ - base - Cabal - containers - directory - filepath - HUnit - mtl - parameterized-data - pretty - process - QuickCheck - random - regex-posix - syb - template-haskell - type-level - ]; - libraryHaskellDepends = [ - base - containers - directory - filepath - mtl - parameterized-data - pretty - process - random - regex-posix - syb - template-haskell - type-level - ]; - testHaskellDepends = [ - base - directory - HUnit - parameterized-data - QuickCheck - random - syb - type-level - ]; - description = "ForSyDe's Haskell-embedded Domain Specific Language"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "forsyde-shallow" = callPackage ( { mkDerivation, @@ -240750,30 +136308,6 @@ self: { } ) { }; - "forth-hll" = callPackage ( - { - mkDerivation, - array-forth, - base, - free, - mtl, - }: - mkDerivation { - pname = "forth-hll"; - version = "0.1.0.0"; - sha256 = "1hmcicxnxcl99chidkbg1kspjzpxxcw8qh4lrwvmlpz2knzf11g3"; - libraryHaskellDepends = [ - array-forth - base - free - mtl - ]; - description = "A simple eDSL for generating arrayForth code"; - license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "fortran-src" = callPackage ( { mkDerivation, @@ -241091,94 +136625,6 @@ self: { } ) { }; - "foscam-directory" = callPackage ( - { - mkDerivation, - base, - directory, - doctest, - filepath, - foscam-filename, - lens, - pretty, - QuickCheck, - template-haskell, - trifecta, - utf8-string, - }: - mkDerivation { - pname = "foscam-directory"; - version = "0.0.8"; - sha256 = "0rmvc5qaicr6dm8ig4s8a0hfny09w53j1fdy6b7db0fh62ys2nqb"; - libraryHaskellDepends = [ - base - directory - foscam-filename - lens - pretty - trifecta - utf8-string - ]; - testHaskellDepends = [ - base - directory - doctest - filepath - QuickCheck - template-haskell - ]; - description = "Foscam File format"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "foscam-filename" = callPackage ( - { - mkDerivation, - base, - bifunctors, - digit, - directory, - doctest, - filepath, - lens, - parsec, - parsers, - QuickCheck, - semigroupoids, - semigroups, - template-haskell, - }: - mkDerivation { - pname = "foscam-filename"; - version = "0.0.4"; - sha256 = "1llggmkhv801y3736nldw6vj6jrw9z9bafisrc7nwfs8f68f9wbd"; - libraryHaskellDepends = [ - base - bifunctors - digit - lens - parsers - semigroupoids - semigroups - ]; - testHaskellDepends = [ - base - directory - doctest - filepath - parsec - QuickCheck - template-haskell - ]; - description = "Foscam File format"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "foscam-sort" = callPackage ( { mkDerivation, @@ -241230,7 +136676,6 @@ self: { ]; description = "Foscam File format"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "foscam-sort"; } ) { }; @@ -241563,133 +137008,6 @@ self: { } ) { }; - "fpco-api" = callPackage ( - { - mkDerivation, - aeson, - attoparsec, - base, - base64-bytestring, - blaze-html, - bytestring, - cereal, - containers, - data-default, - deepseq, - deepseq-generics, - directory, - failure, - fay, - filepath, - ghc-prim, - hashable, - http-conduit, - http-types, - ini, - lifted-async, - lifted-base, - monad-control, - monad-extras, - monad-logger, - mtl, - network, - optparse-applicative, - persistent, - persistent-template, - pretty-show, - process, - random, - resourcet, - safe, - semigroups, - shakespeare, - shakespeare-i18n, - stm, - syb, - template-haskell, - text, - time, - transformers, - transformers-base, - unordered-containers, - vector, - yesod-core, - }: - mkDerivation { - pname = "fpco-api"; - version = "1.2.0.5"; - sha256 = "1r80a6vimpy4nviskl62c4ivp2l8wrg3vhzgdg53nnfa5j6lmha2"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson - attoparsec - base - base64-bytestring - blaze-html - bytestring - cereal - containers - data-default - deepseq - deepseq-generics - directory - failure - fay - filepath - ghc-prim - hashable - http-conduit - http-types - lifted-async - lifted-base - monad-control - monad-extras - monad-logger - mtl - network - persistent - persistent-template - pretty-show - random - resourcet - safe - semigroups - shakespeare - shakespeare-i18n - stm - syb - template-haskell - text - time - transformers - transformers-base - unordered-containers - vector - yesod-core - ]; - executableHaskellDepends = [ - aeson - base - bytestring - data-default - directory - filepath - ini - network - optparse-applicative - process - safe - text - unordered-containers - ]; - description = "Simple interface to the FP Complete IDE API"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "fpco-api"; - } - ) { }; - "fpe" = callPackage ( { mkDerivation, @@ -241733,33 +137051,6 @@ self: { } ) { }; - "fplll" = callPackage ( - { - mkDerivation, - base, - fplll, - hgmp, - lattices, - semibounded-lattices, - }: - mkDerivation { - pname = "fplll"; - version = "0.1.0.0"; - sha256 = "1q9njmsgxx4cpziw2llnbpg5ic6sag7qdhial00rak3iq29rzlhh"; - libraryHaskellDepends = [ - base - hgmp - lattices - semibounded-lattices - ]; - libraryPkgconfigDepends = [ fplll ]; - testHaskellDepends = [ base ]; - description = "Haskell bindings to "; - license = lib.licenses.lgpl21Plus; - hydraPlatforms = lib.platforms.none; - } - ) { inherit (pkgs) fplll; }; - "fpnla" = callPackage ( { mkDerivation, base }: mkDerivation { @@ -241772,167 +137063,6 @@ self: { } ) { }; - "fpnla-examples" = callPackage ( - { - mkDerivation, - accelerate, - array, - base, - data-default, - deepseq, - fpnla, - hmatrix, - HUnit, - linear-algebra-cblas, - monad-par, - parallel, - QuickCheck, - random, - repa, - tagged, - test-framework, - test-framework-hunit, - test-framework-quickcheck2, - time, - vector, - }: - mkDerivation { - pname = "fpnla-examples"; - version = "0.1.1"; - sha256 = "1p305r0jgcqrbny22ic1ziyav9yjy6v02wgna0sgh4p0c1wi7pb2"; - libraryHaskellDepends = [ - accelerate - array - base - deepseq - fpnla - hmatrix - linear-algebra-cblas - monad-par - parallel - repa - vector - ]; - testHaskellDepends = [ - accelerate - array - base - data-default - deepseq - fpnla - hmatrix - HUnit - linear-algebra-cblas - monad-par - parallel - QuickCheck - random - repa - tagged - test-framework - test-framework-hunit - test-framework-quickcheck2 - time - vector - ]; - description = "Example implementations for FPNLA library"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "fptest" = callPackage ( - { - mkDerivation, - base, - doctest, - Glob, - hlint, - HUnit, - parsec, - parsec3-numbers, - process, - QuickCheck, - regex-compat, - test-framework, - test-framework-hunit, - test-framework-quickcheck2, - }: - mkDerivation { - pname = "fptest"; - version = "0.2.3.0"; - sha256 = "107n8kisyc9hmbn2rznb4d7pxzn9bb04mxcn6x0wvrzjqsmlzzdg"; - isLibrary = false; - isExecutable = true; - enableSeparateDataOutput = true; - executableHaskellDepends = [ - base - HUnit - parsec - parsec3-numbers - QuickCheck - test-framework - test-framework-hunit - test-framework-quickcheck2 - ]; - testHaskellDepends = [ - base - doctest - Glob - hlint - HUnit - parsec - parsec3-numbers - process - QuickCheck - regex-compat - test-framework - test-framework-hunit - test-framework-quickcheck2 - ]; - description = "IEEE754r floating point conformance tests"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "fquery" = callPackage ( - { - mkDerivation, - base, - directory, - filepath, - hashtables, - parsec, - process, - regex-compat, - unix, - }: - mkDerivation { - pname = "fquery"; - version = "0.2.3"; - sha256 = "17h35w99v6k0nx2gx5pcc0n5wnp51nbv71x1j7m9hgxxqb7fvfwb"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - directory - filepath - hashtables - parsec - process - regex-compat - unix - ]; - description = "Installed package query tool for Gentoo Linux"; - license = "unknown"; - hydraPlatforms = lib.platforms.none; - mainProgram = "fquery"; - broken = true; - } - ) { }; - "fractal" = callPackage ( { mkDerivation, base }: mkDerivation { @@ -241948,30 +137078,6 @@ self: { } ) { }; - "fractals" = callPackage ( - { - mkDerivation, - base, - integer-gmp, - QuickCheck, - }: - mkDerivation { - pname = "fractals"; - version = "0.1.0.0"; - sha256 = "0jj2y8w5zqh0d093ayaml1shlr0am6lha4n6nm602lik09vs3g1x"; - libraryHaskellDepends = [ base ]; - testHaskellDepends = [ - base - integer-gmp - QuickCheck - ]; - description = "A collection of useful fractal curve encoders"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "fractaltext" = callPackage ( { mkDerivation, @@ -242032,27 +137138,6 @@ self: { } ) { }; - "fraction" = callPackage ( - { - mkDerivation, - base, - semigroups, - }: - mkDerivation { - pname = "fraction"; - version = "0.1.0.6"; - sha256 = "0ajkrp7babip4y0symj65yanyazsazp7lsbbsa3il2b6kp9fwgxd"; - libraryHaskellDepends = [ - base - semigroups - ]; - description = "Fractions"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "fractionizer" = callPackage ( { mkDerivation, base }: mkDerivation { @@ -242065,37 +137150,6 @@ self: { } ) { }; - "frag" = callPackage ( - { - mkDerivation, - array, - base, - GLUT, - OpenGL, - random, - }: - mkDerivation { - pname = "frag"; - version = "1.1.2"; - sha256 = "1xgnp4cls8i61hyl4kcf3afri77jlcahwjvww498xl5d5frdiv90"; - isLibrary = false; - isExecutable = true; - enableSeparateDataOutput = true; - executableHaskellDepends = [ - array - base - GLUT - OpenGL - random - ]; - description = "A 3-D First Person Shooter Game"; - license = "GPL"; - hydraPlatforms = lib.platforms.none; - mainProgram = "frag"; - broken = true; - } - ) { }; - "frame" = callPackage ( { mkDerivation, @@ -242154,42 +137208,6 @@ self: { } ) { ghc-binary = null; }; - "frame-markdown" = callPackage ( - { - mkDerivation, - base, - frame, - pandoc, - }: - mkDerivation { - pname = "frame-markdown"; - version = "0.1"; - sha256 = "0wy1c9xgd6ykymqciga1sla83wfdwy17p88bygfp6pflbc0rw57g"; - libraryHaskellDepends = [ - base - frame - pandoc - ]; - description = "A markdown to Frame GUI writer for Pandoc"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "franchise" = callPackage ( - { mkDerivation, base }: - mkDerivation { - pname = "franchise"; - version = "0.0.6"; - sha256 = "144fywp5fcix5i06wvwvzwsr19bgxpajx7bi7jw43hnm3rlcj4vr"; - libraryHaskellDepends = [ base ]; - description = "A package for configuring and building Haskell software"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "franz" = callPackage ( { mkDerivation, @@ -242275,50 +137293,6 @@ self: { } ) { }; - "fraxl" = callPackage ( - { - mkDerivation, - async, - base, - dependent-map, - dependent-sum, - exceptions, - fastsum, - free, - mtl, - time, - transformers, - type-aligned, - }: - mkDerivation { - pname = "fraxl"; - version = "0.3.0.0"; - sha256 = "1c57pb5ybhmkphr680pny36x732ky02dm59v6lwviizqpwf5jn1c"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - async - base - dependent-map - dependent-sum - exceptions - fastsum - free - mtl - transformers - type-aligned - ]; - benchmarkHaskellDepends = [ - base - time - ]; - description = "Cached and parallel data fetching"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "frecently" = callPackage ( { mkDerivation, @@ -243014,53 +137988,6 @@ self: { } ) { }; - "freddy" = callPackage ( - { - mkDerivation, - amqp, - async, - base, - broadcast-chan, - bytestring, - data-default, - hspec, - random, - text, - uuid, - }: - mkDerivation { - pname = "freddy"; - version = "0.1.2.0"; - sha256 = "0ldr6j4py4nl0p9vk3k3c8g4lplazwl4hh6d0d3jnnflsn04nr62"; - libraryHaskellDepends = [ - amqp - base - broadcast-chan - bytestring - data-default - random - text - uuid - ]; - testHaskellDepends = [ - amqp - async - base - broadcast-chan - bytestring - data-default - hspec - random - text - uuid - ]; - description = "RabbitMQ Messaging API supporting request-response"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "free" = callPackage ( { mkDerivation, @@ -243264,27 +138191,6 @@ self: { } ) { }; - "free-concurrent" = callPackage ( - { - mkDerivation, - base, - type-aligned, - }: - mkDerivation { - pname = "free-concurrent"; - version = "0.1.0.1"; - sha256 = "1caiwxhm2wx0cnr2g4zvk2qv170jps14lf9j1q40qvx5qy3fxwlz"; - libraryHaskellDepends = [ - base - type-aligned - ]; - description = "Free monads suitable for concurrent computation"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "free-er" = callPackage ( { mkDerivation, base }: mkDerivation { @@ -243443,42 +138349,6 @@ self: { description = "Create games for free"; license = lib.licenses.bsd3; hydraPlatforms = lib.platforms.none; - } - ) { }; - - "free-http" = callPackage ( - { - mkDerivation, - base, - bytestring, - free, - http-client, - http-types, - mtl, - QuickCheck, - text, - time, - transformers, - }: - mkDerivation { - pname = "free-http"; - version = "0.2.0"; - sha256 = "1dslchd48fgcx0yvgwmlbadcqc983i9p60p073ngd74hxzfffwyq"; - libraryHaskellDepends = [ - base - bytestring - free - http-client - http-types - mtl - QuickCheck - text - time - transformers - ]; - description = "An HTTP Client based on Free Monads"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; broken = true; } ) { }; @@ -243509,35 +138379,6 @@ self: { } ) { }; - "free-operational" = callPackage ( - { - mkDerivation, - base, - comonad-transformers, - free, - kan-extensions, - mtl, - transformers, - }: - mkDerivation { - pname = "free-operational"; - version = "0.5.0.0"; - sha256 = "0gim4m0l76sxxg6a8av1gl6qjpwxwdzyviij86d06v1150r08dmb"; - libraryHaskellDepends = [ - base - comonad-transformers - free - kan-extensions - mtl - transformers - ]; - description = "Operational Applicative, Alternative, Monad and MonadPlus from free types"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "free-theorems" = callPackage ( { mkDerivation, @@ -243567,178 +138408,6 @@ self: { } ) { }; - "free-theorems-counterexamples" = callPackage ( - { - mkDerivation, - base, - cgi, - containers, - free-theorems, - haskell-src, - haskell-src-exts, - HUnit, - mtl, - pretty, - syb, - utf8-string, - xhtml, - }: - mkDerivation { - pname = "free-theorems-counterexamples"; - version = "0.3.1.0"; - sha256 = "1wq5lvnylw92qzv1q93liz4i3q2j8sbgwgaw8nw79q0x0cdvbbb3"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - containers - haskell-src - haskell-src-exts - HUnit - mtl - pretty - syb - ]; - executableHaskellDepends = [ - cgi - free-theorems - utf8-string - xhtml - ]; - description = "Automatically Generating Counterexamples to Naive Free Theorems"; - license = lib.licenses.publicDomain; - hydraPlatforms = lib.platforms.none; - mainProgram = "counterexamples.cgi"; - broken = true; - } - ) { }; - - "free-theorems-seq" = callPackage ( - { - mkDerivation, - array, - base, - bytestring, - containers, - free-theorems, - haskell-src, - mtl, - old-locale, - old-time, - parsec, - pretty, - syb, - utf8-string, - xhtml, - }: - mkDerivation { - pname = "free-theorems-seq"; - version = "1.0"; - sha256 = "1scqjv6hc2y0w1x9f8v8bwrl1dnz64hf5jgrdam12dxbsk6qjs6g"; - libraryHaskellDepends = [ - array - base - bytestring - containers - free-theorems - haskell-src - mtl - old-locale - old-time - parsec - pretty - syb - utf8-string - xhtml - ]; - description = "Taming Selective Strictness"; - license = lib.licenses.publicDomain; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "free-theorems-seq-webui" = callPackage ( - { - mkDerivation, - base, - cgi, - containers, - free-theorems-seq, - mtl, - network, - pretty, - syb, - utf8-string, - xhtml, - }: - mkDerivation { - pname = "free-theorems-seq-webui"; - version = "1.0.0.2"; - sha256 = "1bx7fg1ddycl9pgrlh2qij5vb6fqx79gl6lbm248c95xyygi3iy5"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - cgi - containers - free-theorems-seq - mtl - network - pretty - syb - utf8-string - xhtml - ]; - description = "Taming Selective Strictness"; - license = lib.licenses.publicDomain; - hydraPlatforms = lib.platforms.none; - mainProgram = "free-theorems-seq-webui.cgi"; - } - ) { }; - - "free-theorems-webui" = callPackage ( - { - mkDerivation, - base, - bytestring, - cgi, - csv, - dataenc, - directory, - filepath, - free-theorems, - process, - time, - xhtml, - }: - mkDerivation { - pname = "free-theorems-webui"; - version = "0.2.1.1"; - sha256 = "1qxdfbzr52dw0qww03l86vpgmylznifqzvjarmgpkfr129szl7ba"; - isLibrary = false; - isExecutable = true; - enableSeparateDataOutput = true; - executableHaskellDepends = [ - base - bytestring - cgi - csv - dataenc - directory - filepath - free-theorems - process - time - xhtml - ]; - description = "CGI-based web interface for the free-theorems package"; - license = lib.licenses.publicDomain; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "free-v-bucks-generator-no-survey" = callPackage ( { mkDerivation, base }: mkDerivation { @@ -243758,25 +138427,6 @@ self: { } ) { }; - "free-v-bucks-generator-ps4-no-survey" = callPackage ( - { mkDerivation, base }: - mkDerivation { - pname = "free-v-bucks-generator-ps4-no-survey"; - version = "0.2"; - sha256 = "1blsfj6zppi2fi4kkq0b9704qrdkzindx9p3430frxzjz1zrrbaf"; - revision = "1"; - editedCabalFile = "0qxnhd5i6b1i4pq6xkisa74cgqgj749pbipw07khzqs8xvgj83wh"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ base ]; - description = "Spam"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "test1"; - broken = true; - } - ) { }; - "free-vector-spaces" = callPackage ( { mkDerivation, @@ -243844,98 +138494,6 @@ self: { } ) { }; - "freekick2" = callPackage ( - { - mkDerivation, - array, - base, - binary, - bytestring, - containers, - directory, - EdisonCore, - filepath, - FTGL, - haskell98, - mtl, - OpenGL, - pngload, - random, - SDL, - template-haskell, - }: - mkDerivation { - pname = "freekick2"; - version = "0.1.2"; - sha256 = "1ybmffs05hgzn81szcd8nrz4f94qc64d9y2d2hkyq57djb87503j"; - isLibrary = false; - isExecutable = true; - enableSeparateDataOutput = true; - executableHaskellDepends = [ - array - base - binary - bytestring - containers - directory - EdisonCore - filepath - FTGL - haskell98 - mtl - OpenGL - pngload - random - SDL - template-haskell - ]; - description = "A soccer game"; - license = "GPL"; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "freelude" = callPackage ( - { - mkDerivation, - array, - base, - bytestring, - containers, - doctest, - indextype, - text, - transformers, - }: - mkDerivation { - pname = "freelude"; - version = "0.3.2.0"; - sha256 = "1gwgzdpnwjyihmrbq3zx24a9nlcn78g1gjsc091gffszszzf1mxk"; - libraryHaskellDepends = [ - array - base - bytestring - containers - indextype - text - transformers - ]; - testHaskellDepends = [ - array - base - bytestring - containers - doctest - indextype - text - transformers - ]; - description = "A generalisation of the Category->Functor->Applicative->Monad hierarchy and more"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "freenect" = callPackage ( @@ -244012,80 +138570,6 @@ self: { } ) { }; - "freer-converse" = callPackage ( - { - mkDerivation, - base, - freer-effects, - tasty, - tasty-hunit, - tasty-quickcheck, - text, - }: - mkDerivation { - pname = "freer-converse"; - version = "0.1.0.0"; - sha256 = "00a9apnr6kpg29yi3nfdfqjdbyld1fj2w3dkpv3xf4z8l00lflxj"; - libraryHaskellDepends = [ - base - freer-effects - text - ]; - testHaskellDepends = [ - base - freer-effects - tasty - tasty-hunit - tasty-quickcheck - text - ]; - description = "Handle effects conversely using monadic conversation"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "freer-effects" = callPackage ( - { - mkDerivation, - base, - criterion, - free, - mtl, - QuickCheck, - tasty, - tasty-hunit, - tasty-quickcheck, - }: - mkDerivation { - pname = "freer-effects"; - version = "0.3.0.1"; - sha256 = "13acias1kk74761zspc48qzkkfmdk4136jg5sp85wfspkpb9gvka"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base ]; - executableHaskellDepends = [ base ]; - testHaskellDepends = [ - base - QuickCheck - tasty - tasty-hunit - tasty-quickcheck - ]; - benchmarkHaskellDepends = [ - base - criterion - free - mtl - ]; - description = "Implementation of effect system for Haskell"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "freer-examples"; - broken = true; - } - ) { }; - "freer-indexed" = callPackage ( { mkDerivation, base }: mkDerivation { @@ -244162,297 +138646,6 @@ self: { } ) { }; - "freer-simple-catching" = callPackage ( - { - mkDerivation, - base, - freer-simple, - hspec, - }: - mkDerivation { - pname = "freer-simple-catching"; - version = "0.1.0.0"; - sha256 = "140dmmcnpnvn3hhwjic6ja86qhw84k1547zfya7h1gm4sw36mq56"; - libraryHaskellDepends = [ - base - freer-simple - ]; - testHaskellDepends = [ - base - freer-simple - hspec - ]; - description = "Checked runtime exceptions with freer-simple"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "freer-simple-http" = callPackage ( - { - mkDerivation, - aeson, - base, - bytestring, - containers, - freer-simple, - hspec, - http-client, - http-types, - }: - mkDerivation { - pname = "freer-simple-http"; - version = "0.1.0.0"; - sha256 = "0wxqlwqgsphmzhpsbkdq9bl5vjmq598x1q20dd235bdxgggnxd57"; - libraryHaskellDepends = [ - aeson - base - bytestring - containers - freer-simple - http-client - http-types - ]; - testHaskellDepends = [ - aeson - base - bytestring - containers - freer-simple - hspec - http-client - http-types - ]; - description = "Make HTTP requests with freer-simple!"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "freer-simple-profiling" = callPackage ( - { - mkDerivation, - base, - containers, - freer-simple, - hspec, - time, - }: - mkDerivation { - pname = "freer-simple-profiling"; - version = "0.1.0.0"; - sha256 = "1ll8r8z7khxlr2yix9c8m3bjdq3yncvrsg6pj03n68wsf26zgf17"; - libraryHaskellDepends = [ - base - containers - freer-simple - time - ]; - testHaskellDepends = [ - base - containers - freer-simple - hspec - time - ]; - description = "Automatic profling of freer-simple programs"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "freer-simple-random" = callPackage ( - { - mkDerivation, - base, - containers, - freer-simple, - hspec, - random, - }: - mkDerivation { - pname = "freer-simple-random"; - version = "0.1.0.0"; - sha256 = "0bp0px1d7lsghaq7giaqm3xlhp0fkrf15dxpqzlglh0ysd2xg3x3"; - libraryHaskellDepends = [ - base - containers - freer-simple - random - ]; - testHaskellDepends = [ - base - containers - freer-simple - hspec - random - ]; - description = "Random number generators using freer-simple"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "freer-simple-time" = callPackage ( - { - mkDerivation, - base, - freer-simple, - hspec, - time, - }: - mkDerivation { - pname = "freer-simple-time"; - version = "0.1.0.0"; - sha256 = "08ph7nlj3f3iyvqljwn1hz4z8x0nzl19fsmb0rkk9sjbkk043ar8"; - libraryHaskellDepends = [ - base - freer-simple - time - ]; - testHaskellDepends = [ - base - freer-simple - hspec - time - ]; - description = "freer-simple interface to IO based time functions"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "freesect" = callPackage ( - { - mkDerivation, - array, - base, - cpphs, - directory, - mtl, - parallel, - pretty, - random, - syb, - }: - mkDerivation { - pname = "freesect"; - version = "0.8"; - sha256 = "150ch1xmx3slmq7hb74z8sjrqhrsc9kl1zjn030fj6k6kphrwd88"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - array - base - cpphs - directory - mtl - parallel - pretty - random - syb - ]; - description = "A Haskell syntax extension for generalised sections"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "freesect"; - broken = true; - } - ) { }; - - "freesound" = callPackage ( - { - mkDerivation, - aeson, - base, - blaze-builder, - bytestring, - containers, - data-default, - filepath, - hspec, - hspec-core, - http-types, - lens, - mtl, - network, - network-uri, - old-locale, - text, - time, - transformers, - wreq, - }: - mkDerivation { - pname = "freesound"; - version = "0.3.0"; - sha256 = "03rynhypdmcfh6adv37a23ij8zc1n4hss0rh4hmxgwqg5ryf88my"; - libraryHaskellDepends = [ - aeson - base - blaze-builder - bytestring - data-default - filepath - http-types - lens - mtl - network - network-uri - old-locale - text - time - transformers - wreq - ]; - testHaskellDepends = [ - aeson - base - bytestring - containers - data-default - hspec - hspec-core - ]; - description = "Access the Freesound Project database"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "freetype-simple" = callPackage ( - { - mkDerivation, - base, - boundingboxes, - bytestring, - freetype2, - linear, - }: - mkDerivation { - pname = "freetype-simple"; - version = "0.1.0.1"; - sha256 = "1qhiy896a10af9fnzcp4y0ra1c9l6fbcclrr3k74pn2qvvfybnss"; - libraryHaskellDepends = [ - base - boundingboxes - bytestring - freetype2 - linear - ]; - description = "Single line text rendering for OpenGL ES"; - license = lib.licenses.publicDomain; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "freetype2" = callPackage ( { mkDerivation, @@ -244533,49 +138726,6 @@ self: { } ) { }; - "freq" = callPackage ( - { - mkDerivation, - base, - binary, - bytestring, - containers, - deepseq, - gauge, - hedgehog, - primitive, - }: - mkDerivation { - pname = "freq"; - version = "0.1.1"; - sha256 = "1n86njmj2y8qgfg3z1rw8p74glqkm36lm2zigv299fzlhqxsx907"; - libraryHaskellDepends = [ - base - binary - bytestring - containers - deepseq - primitive - ]; - testHaskellDepends = [ - base - bytestring - containers - hedgehog - ]; - benchmarkHaskellDepends = [ - base - bytestring - containers - gauge - ]; - description = "Are you ready to get freaky?"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "frequent-substring" = callPackage ( { mkDerivation, @@ -244656,31 +138806,6 @@ self: { } ) { }; - "fresh" = callPackage ( - { - mkDerivation, - base, - containers, - haskell-src-exts, - syb, - }: - mkDerivation { - pname = "fresh"; - version = "0.1.1"; - sha256 = "1441yv55bwmiwnr6jsccq91anq8vhc2a4ka0irn3i2i9cjzw0gkw"; - libraryHaskellDepends = [ - base - containers - haskell-src-exts - syb - ]; - description = "Introduce fresh variables into Haskell source code"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "fresnel" = callPackage ( { mkDerivation, @@ -244789,103 +138914,6 @@ self: { } ) { }; - "friday-devil" = callPackage ( - { - mkDerivation, - base, - bytestring, - convertible, - deepseq, - friday, - libdevil, - transformers, - vector, - }: - mkDerivation { - pname = "friday-devil"; - version = "0.1.1.1"; - sha256 = "19g1h7palsaycv81fks9zbq979jdn7fqapxd6igxhkgzw73n69aj"; - libraryHaskellDepends = [ - base - bytestring - convertible - deepseq - friday - transformers - vector - ]; - librarySystemDepends = [ libdevil ]; - description = "Uses the DevIL C library to read and write images from and to files and memory buffers"; - license = lib.licenses.lgpl3Only; - hydraPlatforms = lib.platforms.none; - } - ) { inherit (pkgs) libdevil; }; - - "friday-juicypixels" = callPackage ( - { - mkDerivation, - base, - bytestring, - file-embed, - friday, - hspec, - JuicyPixels, - vector, - }: - mkDerivation { - pname = "friday-juicypixels"; - version = "0.1.2.4"; - sha256 = "0gxfj3x5w65dfnkf6ymjs27w2i14yv2m218qgmvx1p80wy7q4nbd"; - libraryHaskellDepends = [ - base - friday - JuicyPixels - vector - ]; - testHaskellDepends = [ - base - bytestring - file-embed - friday - hspec - JuicyPixels - ]; - description = "Converts between the Friday and JuicyPixels image types"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "friday-scale-dct" = callPackage ( - { - mkDerivation, - base, - base-compat, - carray, - fft, - friday, - vector, - }: - mkDerivation { - pname = "friday-scale-dct"; - version = "1.0.0.1"; - sha256 = "0j0vjn837gpr234fb8s53c313d8imvvwhb4cklb57ia9a4jxnh0a"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - base-compat - carray - fft - friday - vector - ]; - description = "Scale Friday images with DCT"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "friendly" = callPackage ( { mkDerivation, @@ -245053,52 +139081,6 @@ self: { } ) { }; - "front" = callPackage ( - { - mkDerivation, - aeson, - async, - base, - blaze-html, - blaze-markup, - bytestring, - conduit, - fay, - fay-dom, - fay-websockets, - mtl, - stm, - text, - websockets, - }: - mkDerivation { - pname = "front"; - version = "0.0.0.8"; - sha256 = "07hx4a4hkg8ch29zax67ja099p7npgsaci45h5002cqp91il1khv"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson - async - base - blaze-html - blaze-markup - bytestring - conduit - fay - fay-dom - fay-websockets - mtl - stm - text - websockets - ]; - description = "A reactive frontend web framework"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "frontmatter" = callPackage ( { mkDerivation, @@ -245163,203 +139145,6 @@ self: { } ) { }; - "frown" = callPackage ( - { - mkDerivation, - base, - directory, - }: - mkDerivation { - pname = "frown"; - version = "0.6.2.3"; - sha256 = "0320zvsr466ik5vxfixakqp1jh8dm23hdmgpjyipdaa38cj7bjpw"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - directory - ]; - description = "LALR(k) parser generator"; - license = "GPL"; - hydraPlatforms = lib.platforms.none; - mainProgram = "frown"; - broken = true; - } - ) { }; - - "frp-arduino" = callPackage ( - { - mkDerivation, - base, - containers, - mtl, - }: - mkDerivation { - pname = "frp-arduino"; - version = "0.1.1.0"; - sha256 = "18mnxlwlyh4q18xc9svpwma3qgwp473dfg1z1rmdll6za82zmvzn"; - libraryHaskellDepends = [ - base - containers - mtl - ]; - description = "Arduino programming without the hassle of C"; - license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "frpnow" = callPackage ( - { - mkDerivation, - base, - containers, - mtl, - transformers, - }: - mkDerivation { - pname = "frpnow"; - version = "0.18"; - sha256 = "1ixhcif2db8v6k8m4bgrpiivl0ygb83padnj18w4jyy5br6s1bqz"; - revision = "1"; - editedCabalFile = "0biplda0z6pmnm28vcdnaa4k82zcbhrghynqzsy7whs0kc86zq4a"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base - containers - mtl - transformers - ]; - description = "Principled practical FRP"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "frpnow-gloss" = callPackage ( - { - mkDerivation, - base, - containers, - frpnow, - gloss, - mtl, - transformers, - }: - mkDerivation { - pname = "frpnow-gloss"; - version = "0.12"; - sha256 = "1xywqcif16r3x4qckz3n6k5mp2pya4vj35h0jrh4rd1sspnhi99i"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base - containers - frpnow - gloss - mtl - transformers - ]; - description = "Program awesome stuff with Gloss and frpnow!"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "frpnow-gtk" = callPackage ( - { - mkDerivation, - base, - containers, - frpnow, - glib, - gtk, - mtl, - transformers, - }: - mkDerivation { - pname = "frpnow-gtk"; - version = "0.11"; - sha256 = "0yq9pgjlmzg5pzcky7z7n2ks82x92dp5pjacr6h3w8mdrhhhk80c"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base - containers - frpnow - glib - gtk - mtl - transformers - ]; - description = "Program GUIs with GTK and frpnow!"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "frpnow-gtk3" = callPackage ( - { - mkDerivation, - base, - containers, - frpnow, - glib, - gtk3, - mtl, - text, - }: - mkDerivation { - pname = "frpnow-gtk3"; - version = "0.2.0"; - sha256 = "11mpr85myj0p9gj8hbyckgwskamd0ihdxsk39k3yphi7fbpsarg0"; - libraryHaskellDepends = [ - base - containers - frpnow - glib - gtk3 - mtl - text - ]; - description = "Program GUIs with GTK3 and frpnow!"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "frpnow-vty" = callPackage ( - { - mkDerivation, - base, - containers, - frpnow, - vty, - }: - mkDerivation { - pname = "frpnow-vty"; - version = "0.2.0.1"; - sha256 = "06rd09a13kssxzbspm1r172m5wf94fph0sjm78jd29d8ml279p1h"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - frpnow - vty - ]; - executableHaskellDepends = [ - base - containers - frpnow - vty - ]; - description = "Program terminal applications with vty and frpnow!"; - license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - mainProgram = "frpnow-vty-demo"; - } - ) { }; - "frquotes" = callPackage ( { mkDerivation, base }: mkDerivation { @@ -245430,20 +139215,6 @@ self: { } ) { }; - "fs-events" = callPackage ( - { mkDerivation, base }: - mkDerivation { - pname = "fs-events"; - version = "0.1"; - sha256 = "0jw6cx9fzzs8r20acjq8nq8zjhwiwnvg1b0kc97c2sij1bhw6pw4"; - libraryHaskellDepends = [ base ]; - description = "A haskell binding to the FSEvents API"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "fs-sim" = callPackage ( { mkDerivation, @@ -245513,27 +139284,6 @@ self: { } ) { }; - "fsh-csv" = callPackage ( - { - mkDerivation, - base, - hint, - }: - mkDerivation { - pname = "fsh-csv"; - version = "0.2.0.0"; - sha256 = "1lhvq4pqgsc52hzgh39ijw4yqw6r4pgq7shv8y5xfgyjibzkmf8m"; - libraryHaskellDepends = [ - base - hint - ]; - description = "csv parser for fsh"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "fsharp" = callPackage ( { mkDerivation, base }: mkDerivation { @@ -245546,41 +139296,6 @@ self: { } ) { }; - "fsmActions" = callPackage ( - { - mkDerivation, - base, - containers, - fgl, - filepath, - graphviz, - MissingH, - mtl, - parsec, - pretty, - }: - mkDerivation { - pname = "fsmActions"; - version = "0.4.4"; - sha256 = "05713wj1s1307brqkbnapqi42dva55kcjgb8n3x6yirpfp6lhdsc"; - libraryHaskellDepends = [ - base - containers - fgl - filepath - graphviz - MissingH - mtl - parsec - pretty - ]; - description = "Finite state machines and FSM actions"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "fsnotify_0_3_0_1" = callPackage ( { mkDerivation, @@ -245624,206 +139339,99 @@ self: { testHaskellDepends = [ async base - directory - filepath - random - tasty - tasty-hunit - temporary - unix-compat - ]; - description = "Cross platform library for file change notification"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "fsnotify" = callPackage ( - { - mkDerivation, - async, - base, - bytestring, - containers, - directory, - exceptions, - filepath, - hinotify, - monad-control, - monad-logger, - random, - retry, - safe-exceptions, - sandwich, - string-interpolate, - temporary, - text, - time, - unix, - unix-compat, - unliftio, - }: - mkDerivation { - pname = "fsnotify"; - version = "0.4.4.0"; - sha256 = "06v3yb8vpvk43qb0r0063q1rr1rf2c0l9plhs6pm1gzhwbcszcc2"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - async - base - bytestring - containers - directory - filepath - hinotify - monad-control - safe-exceptions - text - time - unix - unix-compat - ]; - executableHaskellDepends = [ - base - directory - exceptions - filepath - monad-logger - random - retry - safe-exceptions - string-interpolate - temporary - unix-compat - unliftio - ]; - testHaskellDepends = [ - async - base - directory - exceptions - filepath - monad-logger - random - retry - safe-exceptions - sandwich - string-interpolate - temporary - unix-compat - unliftio - ]; - description = "Cross platform library for file change notification"; - license = lib.licenses.bsd3; - mainProgram = "example"; - } - ) { }; - - "fsnotify-conduit" = callPackage ( - { - mkDerivation, - base, - conduit, - directory, - filepath, - fsnotify, - hspec, - resourcet, - temporary, - transformers, - }: - mkDerivation { - pname = "fsnotify-conduit"; - version = "0.1.1.1"; - sha256 = "1kh1y1p4dw2yhxrl1rrkmpkvm3q5nq12cwl8dfcscrkx3wqhz683"; - libraryHaskellDepends = [ - base - conduit - directory - filepath - fsnotify - resourcet - transformers - ]; - testHaskellDepends = [ - base - conduit - directory - filepath - fsnotify - hspec - resourcet - temporary - transformers - ]; - description = "Get filesystem notifications as a stream of events"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "fst" = callPackage ( - { - mkDerivation, - array, - base, - haskeline, - mtl, - QuickCheck, - transformers, - }: - mkDerivation { - pname = "fst"; - version = "0.10.0.1"; - sha256 = "190a89445fv006m5nv8g58h569rpw9s8jadqdy6m3ik43mnggzpy"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - array - base - mtl - ]; - executableHaskellDepends = [ - array - base - haskeline - mtl - transformers - ]; - testHaskellDepends = [ - base - QuickCheck + directory + filepath + random + tasty + tasty-hunit + temporary + unix-compat ]; - description = "Finite state transducers"; + description = "Cross platform library for file change notification"; license = lib.licenses.bsd3; hydraPlatforms = lib.platforms.none; - mainProgram = "fststudio"; - broken = true; } ) { }; - "fsutils" = callPackage ( + "fsnotify" = callPackage ( { mkDerivation, + async, base, + bytestring, + containers, directory, + exceptions, filepath, + hinotify, + monad-control, + monad-logger, + random, + retry, + safe-exceptions, + sandwich, + string-interpolate, + temporary, + text, + time, + unix, + unix-compat, + unliftio, }: mkDerivation { - pname = "fsutils"; - version = "0.1.2"; - sha256 = "07lx4928d1fnjbpfmky4jhhk7sqj98b11vdbv4f67p3bwfn5lrp8"; + pname = "fsnotify"; + version = "0.4.4.0"; + sha256 = "06v3yb8vpvk43qb0r0063q1rr1rf2c0l9plhs6pm1gzhwbcszcc2"; + isLibrary = true; + isExecutable = true; libraryHaskellDepends = [ + async base + bytestring + containers directory filepath + hinotify + monad-control + safe-exceptions + text + time + unix + unix-compat ]; - description = "File system utilities for Haskell that are missing from built in libraries"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; + executableHaskellDepends = [ + base + directory + exceptions + filepath + monad-logger + random + retry + safe-exceptions + string-interpolate + temporary + unix-compat + unliftio + ]; + testHaskellDepends = [ + async + base + directory + exceptions + filepath + monad-logger + random + retry + safe-exceptions + sandwich + string-interpolate + temporary + unix-compat + unliftio + ]; + description = "Cross platform library for file change notification"; + license = lib.licenses.bsd3; + mainProgram = "example"; } ) { }; @@ -245869,46 +139477,6 @@ self: { } ) { }; - "fswatch" = callPackage ( - { - mkDerivation, - base, - directory, - fsnotify, - haskeline, - optparse-applicative, - process, - }: - mkDerivation { - pname = "fswatch"; - version = "0.1.0.6"; - sha256 = "1972pw7p9njl6h225v8yam5riyiyzkvzhbkv987wl1l3ayga9mdf"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - directory - fsnotify - haskeline - optparse-applicative - process - ]; - executableHaskellDepends = [ - base - directory - fsnotify - haskeline - optparse-applicative - process - ]; - description = "File System watching tool with cli and slave functionalities"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "hfswatch"; - broken = true; - } - ) { }; - "fswatcher" = callPackage ( { mkDerivation, @@ -245943,32 +139511,6 @@ self: { } ) { }; - "ft-generator" = callPackage ( - { - mkDerivation, - base, - mtl, - parsec, - }: - mkDerivation { - pname = "ft-generator"; - version = "1.0.1"; - sha256 = "17lckkrzil8lznkzswjinh88pp8nm8ijsi2bh31ayjfaqg0m229b"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - mtl - parsec - ]; - description = "implementation accompanying a WFLP'19 paper"; - license = lib.licenses.publicDomain; - hydraPlatforms = lib.platforms.none; - mainProgram = "ft-generator"; - broken = true; - } - ) { }; - "ftdi" = callPackage ( { mkDerivation, @@ -246013,6 +139555,7 @@ self: { description = "A thin layer over USB to communicate with FTDI chips"; license = lib.licenses.bsd3; hydraPlatforms = lib.platforms.none; + broken = true; } ) { }; @@ -246057,161 +139600,6 @@ self: { } ) { }; - "ftp-client-conduit" = callPackage ( - { - mkDerivation, - base, - bytestring, - conduit, - connection, - exceptions, - ftp-client, - resourcet, - }: - mkDerivation { - pname = "ftp-client-conduit"; - version = "0.5.0.5"; - sha256 = "0f5168z4k4j267whr0r5xlaqi8zzg1ihqfls6fjqicyqv37k8sj2"; - libraryHaskellDepends = [ - base - bytestring - conduit - connection - exceptions - ftp-client - resourcet - ]; - testHaskellDepends = [ base ]; - description = "Transfer file with FTP and FTPS with Conduit"; - license = lib.licenses.publicDomain; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "ftp-conduit" = callPackage ( - { - mkDerivation, - base, - byteorder, - bytestring, - conduit, - MissingH, - network, - transformers, - utf8-string, - }: - mkDerivation { - pname = "ftp-conduit"; - version = "0.0.5"; - sha256 = "0gb65g46nr9haysy3dbrylka08fsz81yn7aiwwingc6wlp7d76dg"; - libraryHaskellDepends = [ - base - byteorder - bytestring - conduit - MissingH - network - transformers - utf8-string - ]; - description = "FTP client package with conduit interface based off http-conduit"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "ftphs" = callPackage ( - { - mkDerivation, - base, - bytestring, - hslogger, - MissingH, - mtl, - network, - parsec, - regex-compat, - }: - mkDerivation { - pname = "ftphs"; - version = "1.0.9.2"; - sha256 = "1ijpsclqkvmgj047kpa4bv58xh515cl7q5inamgc2cznr3qxn3zr"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - bytestring - hslogger - MissingH - mtl - network - parsec - regex-compat - ]; - description = "FTP Client and Server Library"; - license = "LGPL"; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "ftree" = callPackage ( - { - mkDerivation, - base, - ShowF, - type-unary, - }: - mkDerivation { - pname = "ftree"; - version = "0.1.5"; - sha256 = "1gj7j6mpfgv7ra3v9pm8gbvzbdmcvjri4zzmllx84d138l983k6g"; - libraryHaskellDepends = [ - base - ShowF - type-unary - ]; - description = "Depth-typed functor-based trees, both top-down and bottom-up"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "ftshell" = callPackage ( - { - mkDerivation, - base, - containers, - free-theorems, - mtl, - pretty, - Shellac, - Shellac-readline, - }: - mkDerivation { - pname = "ftshell"; - version = "0.3.0.1"; - sha256 = "1jrpb6dzq47xy6xvsisc7g1y53dc97s4l826f9sscxpdsrx3yp8r"; - isLibrary = false; - isExecutable = true; - enableSeparateDataOutput = true; - executableHaskellDepends = [ - base - containers - free-theorems - mtl - pretty - Shellac - Shellac-readline - ]; - description = "Shell interface to the FreeTheorems library"; - license = lib.licenses.publicDomain; - hydraPlatforms = lib.platforms.none; - mainProgram = "ftshell"; - } - ) { }; - "fudgets" = callPackage ( @@ -246268,43 +139656,6 @@ self: { inherit (pkgs.xorg) libXext; }; - "fugue" = callPackage ( - { mkDerivation, base }: - mkDerivation { - pname = "fugue"; - version = "0.1"; - sha256 = "0g0qy0lcixbjm5srmfl1dnci4m09zwqcs5dpknpnsdc4b4l3925r"; - libraryHaskellDepends = [ base ]; - description = "A recapitulated prelude with minimal dependencies and profligate exports"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "full-sessions" = callPackage ( - { - mkDerivation, - base, - ghc, - network, - }: - mkDerivation { - pname = "full-sessions"; - version = "0.6.2.1"; - sha256 = "0irm1zrggjl9zrapzxfl3kj32d81k30c8nbmr3bf9ramjg65xm90"; - libraryHaskellDepends = [ - base - ghc - network - ]; - description = "a monad for protocol-typed network programming"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "full-text-search" = callPackage ( { mkDerivation, @@ -246381,124 +139732,6 @@ self: { } ) { }; - "funbot" = callPackage ( - { - mkDerivation, - aeson, - auto-update, - base, - bytestring, - case-insensitive, - clock, - containers, - data-default-class, - feed, - feed-collect, - formatting, - funbot-ext-events, - hashable, - HTTP, - http-client, - http-client-tls, - http-listen, - irc-fun-bot, - irc-fun-client, - irc-fun-color, - irc-fun-types, - json-state, - network-uri, - settings, - tagsoup, - text, - time, - time-interval, - time-units, - transformers, - unordered-containers, - utf8-string, - vcs-web-hook-parse, - }: - mkDerivation { - pname = "funbot"; - version = "0.5"; - sha256 = "1ajkn2mvs10qa3xdbxf20f3vabl7ds2sfhdi73n6vr8f11cg3yky"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - aeson - auto-update - base - bytestring - case-insensitive - clock - containers - data-default-class - feed - feed-collect - formatting - funbot-ext-events - hashable - HTTP - http-client - http-client-tls - http-listen - irc-fun-bot - irc-fun-client - irc-fun-color - irc-fun-types - json-state - network-uri - settings - tagsoup - text - time - time-interval - time-units - transformers - unordered-containers - utf8-string - vcs-web-hook-parse - ]; - description = "IRC bot for fun, learning, creativity and collaboration"; - license = lib.licenses.publicDomain; - hydraPlatforms = lib.platforms.none; - mainProgram = "funbot"; - } - ) { }; - - "funbot-client" = callPackage ( - { - mkDerivation, - aeson, - aeson-pretty, - base, - bytestring, - funbot-ext-events, - HTTP, - network-uri, - }: - mkDerivation { - pname = "funbot-client"; - version = "0.1.0.1"; - sha256 = "1fmg6cdm00nvhys3ngxvdi80plzng5z7q1iax40a2acrnh22h1r2"; - revision = "1"; - editedCabalFile = "0as07hi4ciilnkwzmydvc44qfwc4y2q38gfcj2sra194rgkkg524"; - libraryHaskellDepends = [ - aeson - aeson-pretty - base - bytestring - funbot-ext-events - HTTP - network-uri - ]; - description = "Report events to FunBot over a JSON/HTTP API"; - license = lib.licenses.publicDomain; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "funbot-ext-events" = callPackage ( { mkDerivation, @@ -246558,6 +139791,7 @@ self: { license = lib.licenses.publicDomain; hydraPlatforms = lib.platforms.none; mainProgram = "funbot-client-post-receive"; + broken = true; } ) { }; @@ -246634,64 +139868,6 @@ self: { } ) { iml-tools = null; }; - "funcons-lambda-cbv-mp" = callPackage ( - { - mkDerivation, - base, - containers, - funcons-tools, - gll, - text, - }: - mkDerivation { - pname = "funcons-lambda-cbv-mp"; - version = "0.1.0.2"; - sha256 = "0bns3n93s1bmpja5bhxyrmbamh5ywamz8c9ys6iia79zxf8pq61d"; - revision = "1"; - editedCabalFile = "0dpd7z4s47198zgm280prl04ckgrkqmin74n5ysam751bvabjrgy"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - containers - funcons-tools - gll - text - ]; - description = "call-by-value lambda-calculus with meta-programming"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "lambda-cbv"; - } - ) { }; - - "funcons-simple" = callPackage ( - { - mkDerivation, - base, - funcons-tools, - funcons-values, - }: - mkDerivation { - pname = "funcons-simple"; - version = "0.1.0.7"; - sha256 = "1p6dvrfymap6b2n7ys3llxaa3jvykpykm27yv3mfy19q29djpwv4"; - revision = "1"; - editedCabalFile = "1zv6njnp3ymp2hgq68fyhckv8lq4h36wqwx01zbnkwcajwiy66mr"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - funcons-tools - funcons-values - ]; - description = "A modular interpreter for executing SIMPLE funcons"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - mainProgram = "runfct-SIMPLE"; - } - ) { }; - "funcons-tools" = callPackage ( { mkDerivation, @@ -246811,68 +139987,6 @@ self: { } ) { }; - "function-combine" = callPackage ( - { - mkDerivation, - base, - data-type, - }: - mkDerivation { - pname = "function-combine"; - version = "0.1.0"; - sha256 = "1m8bmqxb9kar3y8zv22qs2a6kzd636m5li1r2q4y6pps0nglv9i9"; - libraryHaskellDepends = [ - base - data-type - ]; - description = "Combining functions"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "function-instances-algebra" = callPackage ( - { - mkDerivation, - base, - numeric-prelude, - }: - mkDerivation { - pname = "function-instances-algebra"; - version = "0.1"; - sha256 = "0dxym6xrylngw8r5spi246nmi8fvvxxx776qismcr04zqshv7ygw"; - libraryHaskellDepends = [ - base - numeric-prelude - ]; - description = "Instances of the Algebra.* classes for functions"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "functional-arrow" = callPackage ( - { - mkDerivation, - base, - HList, - }: - mkDerivation { - pname = "functional-arrow"; - version = "0.0"; - sha256 = "1la9xqm5gs6a6cb18wyx9wr0nx6p5ryhczvb72d0zm6xrjrf0r5s"; - libraryHaskellDepends = [ - base - HList - ]; - description = "Combinators that allow for a more functional/monadic style of Arrow programming"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "functional-kmp" = callPackage ( { mkDerivation, base }: mkDerivation { @@ -246885,28 +139999,6 @@ self: { } ) { }; - "functor" = callPackage ( - { - mkDerivation, - base, - category, - }: - mkDerivation { - pname = "functor"; - version = "0.1.0.0"; - sha256 = "03s0gpxg1k5f26lxyq617ly57c56w0k6nm59h6dwdkc3w2ainqiv"; - revision = "2"; - editedCabalFile = "1cjr0x65q1hmls7jszmngbibbif1l9jipjgkndpr33d84ry10hnj"; - libraryHaskellDepends = [ - base - category - ]; - description = "Functors"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "functor-apply" = callPackage ( { mkDerivation }: mkDerivation { @@ -247026,57 +140118,6 @@ self: { } ) { }; - "functor-combo" = callPackage ( - { - mkDerivation, - base, - base-orphans, - containers, - data-inttrie, - lub, - type-unary, - TypeCompose, - }: - mkDerivation { - pname = "functor-combo"; - version = "0.3.6"; - sha256 = "1jlva6imjjpj9iww7dxiplw60vszjiw6456yq30zsqrb63sz2lk1"; - libraryHaskellDepends = [ - base - base-orphans - containers - data-inttrie - lub - type-unary - TypeCompose - ]; - description = "Functor combinators with tries & zippers"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "functor-friends" = callPackage ( - { - mkDerivation, - base, - recursion-schemes, - }: - mkDerivation { - pname = "functor-friends"; - version = "0.1.0.0"; - sha256 = "1apbdfhmhw1f30w62wwq6nr98pqhqbadp9c05vc424jm82v0169d"; - libraryHaskellDepends = [ - base - recursion-schemes - ]; - description = "Friendly helpers for your recursion schemes"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "functor-infix" = callPackage ( { mkDerivation, @@ -247182,29 +140223,6 @@ self: { } ) { }; - "functor-utils" = callPackage ( - { - mkDerivation, - base, - ghc-prim, - lens, - }: - mkDerivation { - pname = "functor-utils"; - version = "1.17.2"; - sha256 = "1sf4d3af4kf341g7slpylm2113cy0597fngr5ldlds8znylspmms"; - libraryHaskellDepends = [ - base - ghc-prim - lens - ]; - description = "Collection of functor utilities, providing handy operators, like generalization of (.)."; - license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "functora-witch" = callPackage ( { mkDerivation, @@ -247243,20 +140261,6 @@ self: { } ) { }; - "functorm" = callPackage ( - { mkDerivation, base }: - mkDerivation { - pname = "functorm"; - version = "1.0.1"; - sha256 = "1aa4f6yp4vrrrs3rswhjxw2gij3mwn8yf299kgv42wd03xazyxrs"; - libraryHaskellDepends = [ base ]; - description = "Data.FunctorM (compatibility package)"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "functors" = callPackage ( { mkDerivation, base }: mkDerivation { @@ -247269,216 +140273,6 @@ self: { } ) { }; - "funflow" = callPackage ( - { - mkDerivation, - aeson, - async, - base, - bytestring, - cas-hashable, - cas-store, - clock, - constraints, - containers, - contravariant, - cryptonite, - data-default, - directory, - exceptions, - filepath, - ghc-prim, - Glob, - hashable, - hedis, - hostname, - integer-gmp, - katip, - lens, - lifted-async, - memory, - monad-control, - mtl, - network, - optparse-applicative, - path, - path-io, - pretty, - process, - profunctors, - random, - safe-exceptions, - scientific, - sqlite-simple, - stm, - store, - tar, - tasty, - tasty-hunit, - template-haskell, - temporary, - text, - time, - transformers, - unix, - unordered-containers, - vector, - yaml, - }: - mkDerivation { - pname = "funflow"; - version = "1.6.0"; - sha256 = "0cwy4wiy5vr6wix5fjiw6dmy4nxyv9bbnj5w2wkhs8rdb0c34zim"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson - async - base - bytestring - cas-hashable - cas-store - clock - constraints - containers - contravariant - cryptonite - data-default - directory - exceptions - filepath - ghc-prim - Glob - hashable - hedis - hostname - integer-gmp - katip - lens - lifted-async - memory - monad-control - mtl - path - path-io - pretty - process - profunctors - random - safe-exceptions - scientific - sqlite-simple - stm - store - tar - template-haskell - text - time - transformers - unix - unordered-containers - vector - yaml - ]; - executableHaskellDepends = [ - base - bytestring - cas-store - clock - hedis - network - optparse-applicative - path - safe-exceptions - text - unix - ]; - testHaskellDepends = [ - async - base - cas-store - data-default - directory - filepath - hedis - path - path-io - process - random - safe-exceptions - tasty - tasty-hunit - temporary - text - unix - ]; - description = "Workflows with arrows"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - mainProgram = "ffexecutord"; - } - ) { }; - - "funflow-nix" = callPackage ( - { - mkDerivation, - async, - base, - containers, - data-default, - directory, - filepath, - funflow, - modern-uri, - path, - path-io, - process, - random, - safe-exceptions, - tasty, - tasty-hunit, - temporary, - text, - unix, - }: - mkDerivation { - pname = "funflow-nix"; - version = "0.1.0.0"; - sha256 = "16lg1afm6sfpaz1syq3f61f51wzqiwi9b5hrc3jbj9lwnlxwcplq"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - funflow - modern-uri - path - text - ]; - testHaskellDepends = [ - async - base - containers - data-default - directory - filepath - funflow - modern-uri - path - path-io - process - random - safe-exceptions - tasty - tasty-hunit - temporary - unix - ]; - description = "Utility functions for using funflow with nix"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "fungll-combinators" = callPackage ( { mkDerivation, @@ -247510,153 +140304,6 @@ self: { } ) { }; - "funion" = callPackage ( - { - mkDerivation, - base, - bytestring, - directory, - filepath, - haskell98, - HFuse, - unix, - }: - mkDerivation { - pname = "funion"; - version = "0.0.2"; - sha256 = "0pgl4fg29xg7g2pdyjqmi7qlpzcs25ggwg6d9y4fzbc7fzh31wxv"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - bytestring - directory - filepath - haskell98 - HFuse - unix - ]; - description = "A unioning file-system using HFuse"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "funion"; - } - ) { }; - - "funnyprint" = callPackage ( - { - mkDerivation, - base, - criterion, - hscolour, - ipprint, - tasty, - tasty-hspec, - }: - mkDerivation { - pname = "funnyprint"; - version = "0.0.5"; - sha256 = "17prxs7cdblkn4f9w2nr0gjhcm1p1pqklxg44ynpr5a739zdh4wg"; - libraryHaskellDepends = [ - base - hscolour - ipprint - ]; - testHaskellDepends = [ - base - hscolour - ipprint - tasty - tasty-hspec - ]; - benchmarkHaskellDepends = [ - base - criterion - hscolour - ipprint - ]; - description = "funnyPrint function to colorize GHCi output"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "funpat" = callPackage ( - { - mkDerivation, - base, - mtl, - }: - mkDerivation { - pname = "funpat"; - version = "0.1"; - sha256 = "0zblrfg8mfbc1hzxb36hk2lb3c167xmpcvg8h595m9kjpdmj4ayw"; - libraryHaskellDepends = [ - base - mtl - ]; - description = "A generalization of pattern matching"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "funsat" = callPackage ( - { - mkDerivation, - array, - base, - bimap, - bitset, - containers, - fgl, - mtl, - parse-dimacs, - pretty, - QuickCheck, - random, - time, - }: - mkDerivation { - pname = "funsat"; - version = "0.6.2"; - sha256 = "1hyyx3ivrhw5svklyl36qzbcd0wwx4978znvn42lsl53273ds5n3"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - array - base - bimap - bitset - containers - fgl - mtl - parse-dimacs - pretty - ]; - executableHaskellDepends = [ - array - base - bimap - bitset - containers - fgl - mtl - parse-dimacs - pretty - QuickCheck - random - time - ]; - description = "A modern DPLL-style SAT solver"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "funsat"; - } - ) { }; - "funspection" = callPackage ( { mkDerivation, base }: mkDerivation { @@ -247895,60 +140542,6 @@ self: { } ) { }; - "fused-effects-resumable" = callPackage ( - { - mkDerivation, - base, - deepseq, - fused-effects, - transformers, - }: - mkDerivation { - pname = "fused-effects-resumable"; - version = "0.1.0.0"; - sha256 = "0w0ih8sspb7ffpvbf9bcqsiv7683g3ccfpgd48hq0h819zpa58m9"; - libraryHaskellDepends = [ - base - deepseq - fused-effects - transformers - ]; - description = "Resumable exceptions for the fused-effects ecosystem"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "fused-effects-squeal" = callPackage ( - { - mkDerivation, - base, - fused-effects, - squeal-postgresql, - unliftio, - unliftio-core, - unliftio-pool, - }: - mkDerivation { - pname = "fused-effects-squeal"; - version = "0.1.0.0"; - sha256 = "0j91ynfb546mdlyp6jm3jpj99g4gk3ps978i9p4jxy6ivaj4pz75"; - libraryHaskellDepends = [ - base - fused-effects - squeal-postgresql - unliftio - unliftio-core - unliftio-pool - ]; - description = "A fused-effects adapter for squeal-postgresql"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "fused-effects-th" = callPackage ( { mkDerivation, @@ -247983,40 +140576,6 @@ self: { } ) { }; - "fusion" = callPackage ( - { - mkDerivation, - base, - directory, - doctest, - filepath, - pipes-safe, - transformers, - void, - }: - mkDerivation { - pname = "fusion"; - version = "0.2.0"; - sha256 = "0vs899jxnxx7hkw4rxwdd372zpkxb8na8mgc92jidylqxsjw5a4m"; - libraryHaskellDepends = [ - base - pipes-safe - transformers - void - ]; - testHaskellDepends = [ - base - directory - doctest - filepath - ]; - description = "Effectful streaming library based on shortcut fusion techniques"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "fusion-plugin" = callPackage ( { mkDerivation, @@ -248382,48 +140941,6 @@ self: { } ) { }; - "futun" = callPackage ( - { - mkDerivation, - base, - bytestring, - network, - unix, - }: - mkDerivation { - pname = "futun"; - version = "0.1.0.2"; - sha256 = "1vfi30mlr0lds975wgq3197sv1qdwy6lvm6xaqwk28h5flmk28k1"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - bytestring - network - unix - ]; - description = "Simple IP-over-UDP tunnel using TUNTAP"; - license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - mainProgram = "futun"; - broken = true; - } - ) { }; - - "future" = callPackage ( - { mkDerivation, base }: - mkDerivation { - pname = "future"; - version = "2.0.0"; - sha256 = "1gvv1m6sfxdc28h4rzp5dh6hrz6nfh031nhs192606v8wg78m3ri"; - libraryHaskellDepends = [ base ]; - description = "Supposed to mimics and enhance proposed C++ \"future\" features"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "future-resource" = callPackage ( { mkDerivation, @@ -248443,20 +140960,6 @@ self: { } ) { }; - "futures" = callPackage ( - { mkDerivation, base }: - mkDerivation { - pname = "futures"; - version = "0.1"; - sha256 = "0dx484i5q58yw3h6j9qp42x546vkky3sc29cqbr9969sfilmbqz8"; - libraryHaskellDepends = [ base ]; - description = "Simple and fast implementation of Future"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "fuzzcheck" = callPackage ( { mkDerivation, @@ -248577,48 +141080,6 @@ self: { } ) { }; - "fuzzy-parse" = callPackage ( - { - mkDerivation, - attoparsec, - base, - containers, - hspec, - hspec-discover, - interpolatedstring-perl6, - mtl, - safe, - text, - time, - }: - mkDerivation { - pname = "fuzzy-parse"; - version = "0.1.2.0"; - sha256 = "0mf0bbs1vcxf6vf56n8r908c8jf6f11fyc86mk74b8dgqwjn7xfb"; - libraryHaskellDepends = [ - attoparsec - base - containers - mtl - safe - text - time - ]; - testHaskellDepends = [ - base - hspec - hspec-discover - interpolatedstring-perl6 - text - ]; - testToolDepends = [ hspec-discover ]; - description = "Tools for processing unstructured text data"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "fuzzy-time" = callPackage ( { mkDerivation, @@ -248698,52 +141159,6 @@ self: { } ) { }; - "fuzzy-timings" = callPackage ( - { - mkDerivation, - base, - containers, - glpk-hs, - HUnit, - mtl, - QuickCheck, - random, - test-framework, - test-framework-hunit, - test-framework-quickcheck2, - time, - }: - mkDerivation { - pname = "fuzzy-timings"; - version = "0.0.1"; - sha256 = "1sm4g04y9n8r61q2sqa91n87hh32kpcn2r5zjlvdy7qxc11lrmj7"; - libraryHaskellDepends = [ - base - containers - glpk-hs - mtl - random - time - ]; - testHaskellDepends = [ - base - containers - HUnit - mtl - QuickCheck - random - test-framework - test-framework-hunit - test-framework-quickcheck2 - time - ]; - description = "Translates high-level definitions of \"fuzzily\" scheduled objects (e.g. play this commercial 10 times per hour between 9:00-13:00) to a list of accurately scheduled objects using glpk-hs."; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "fuzzySets" = callPackage ( { mkDerivation, @@ -248923,150 +141338,6 @@ self: { } ) { }; - "fvars" = callPackage ( - { - mkDerivation, - async, - base, - exceptions, - hspec, - monad-control, - mtl, - transformers, - }: - mkDerivation { - pname = "fvars"; - version = "1.0.0.0"; - sha256 = "0iwlmr388wv98n244wdzwk5l7j6p669pq3vwavpnk37wfanahvxj"; - libraryHaskellDepends = [ - base - exceptions - monad-control - mtl - transformers - ]; - testHaskellDepends = [ - async - base - hspec - ]; - description = "Fast Mutable Vars"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "fwgl" = callPackage ( - { - mkDerivation, - base, - hashable, - transformers, - unordered-containers, - vect, - vector, - Yampa, - }: - mkDerivation { - pname = "fwgl"; - version = "0.1.4.0"; - sha256 = "13sxw4qh1rxhbfghmniy3m468hhfjk8rb9m3fh7fk65l45g2d3a2"; - libraryHaskellDepends = [ - base - hashable - transformers - unordered-containers - vect - vector - Yampa - ]; - description = "Game engine"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "fwgl-glfw" = callPackage ( - { - mkDerivation, - base, - fwgl, - gl, - GLFW-b, - hashable, - JuicyPixels, - transformers, - unordered-containers, - vect, - vector, - }: - mkDerivation { - pname = "fwgl-glfw"; - version = "0.1.1.1"; - sha256 = "06zwgwwcalms1qsqag88b6zq7rla5xzk7lrl8ygm5gqj07hzhfh4"; - libraryHaskellDepends = [ - base - fwgl - gl - GLFW-b - hashable - JuicyPixels - transformers - unordered-containers - vect - vector - ]; - description = "FWGL GLFW backend"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "fwgl-javascript" = callPackage ( - { - mkDerivation, - base, - fwgl, - ghcjs-base, - hashable, - unordered-containers, - vect, - }: - mkDerivation { - pname = "fwgl-javascript"; - version = "0.1.1.1"; - sha256 = "11kp193kl774y7dj0gsh3imvf231nd7ifss4cja825msrg16r2w5"; - libraryHaskellDepends = [ - base - fwgl - ghcjs-base - hashable - unordered-containers - vect - ]; - description = "FWGL GHCJS backend"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "fx" = callPackage ( - { mkDerivation, base }: - mkDerivation { - pname = "fx"; - version = "0.10.1"; - sha256 = "1awscv2y8ywcyyn08hdmlh3qdjs33akr7grfdfls59rmhidg4fhd"; - libraryHaskellDepends = [ base ]; - description = "Horizontally composable effects"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "fxpak" = callPackage ( { mkDerivation, @@ -249088,32 +141359,6 @@ self: { } ) { }; - "g-npm" = callPackage ( - { - mkDerivation, - base, - HTTP, - json, - }: - mkDerivation { - pname = "g-npm"; - version = "0.1.0"; - sha256 = "1blr3xbqn8fa59av4kgfp2y3szky40v5qmw3k9gsr2barrvkjqz0"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - HTTP - json - ]; - description = "Generate Gentoo ebuilds from NodeJS/npm packages"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - mainProgram = "g-npm"; - broken = true; - } - ) { }; - "g2" = callPackage ( { mkDerivation, @@ -249232,26 +141477,6 @@ self: { } ) { }; - "g2q" = callPackage ( - { - mkDerivation, - base, - g2, - }: - mkDerivation { - pname = "g2q"; - version = "0.1.0.0"; - sha256 = "1g42xkc4jc1a94s1krr1yrn191f8d6rmcpwk9ndwzk3nwby9v1vf"; - libraryHaskellDepends = [ - base - g2 - ]; - description = "G2Q allows constraint programming, via writing Haskell predicates"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "g3p-hash" = callPackage ( { mkDerivation, @@ -249307,21 +141532,6 @@ self: { } ) { }; - "g4ip" = callPackage ( - { mkDerivation, base }: - mkDerivation { - pname = "g4ip"; - version = "0.1.0.0"; - sha256 = "11n0kq3gmmsb5gx796k1x0m20s9zwhx5bgq4ng8j8qwyzmrh4a7w"; - libraryHaskellDepends = [ base ]; - testHaskellDepends = [ base ]; - description = "A theorem prover for propositional logic that uses G4ip"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "g4ip-prover" = callPackage ( { mkDerivation, @@ -249358,99 +141568,6 @@ self: { } ) { }; - "gact" = callPackage ( - { - mkDerivation, - base, - biopsl, - bytestring, - cmdargs, - hashable, - unordered-containers, - }: - mkDerivation { - pname = "gact"; - version = "0.2"; - sha256 = "0p1rb24yldkjnkrygjb43g63vfgzq2bix7rrmiqyrdwb37s65ixq"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - biopsl - bytestring - cmdargs - hashable - unordered-containers - ]; - description = "General Alignment Clustering Tool"; - license = "GPL"; - hydraPlatforms = lib.platforms.none; - mainProgram = "gact"; - } - ) { }; - - "galois-fft" = callPackage ( - { - mkDerivation, - base, - criterion, - elliptic-curve, - galois-field, - pairing, - poly, - protolude, - QuickCheck, - quickcheck-instances, - tasty, - tasty-discover, - tasty-hunit, - tasty-quickcheck, - vector, - }: - mkDerivation { - pname = "galois-fft"; - version = "0.1.0"; - sha256 = "1qyhx0b0p3avag82g1fdwbiwxdr0npw39k4f2nv0x772rr4h9rz1"; - libraryHaskellDepends = [ - base - elliptic-curve - galois-field - poly - protolude - vector - ]; - testHaskellDepends = [ - base - elliptic-curve - galois-field - pairing - poly - protolude - QuickCheck - quickcheck-instances - tasty - tasty-discover - tasty-hunit - tasty-quickcheck - vector - ]; - testToolDepends = [ tasty-discover ]; - benchmarkHaskellDepends = [ - base - criterion - elliptic-curve - galois-field - pairing - poly - protolude - vector - ]; - description = "FFTs over finite fields"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "galois-field" = callPackage ( { mkDerivation, @@ -249585,31 +141702,6 @@ self: { } ) { }; - "game-probability" = callPackage ( - { - mkDerivation, - base, - containers, - probability, - random, - }: - mkDerivation { - pname = "game-probability"; - version = "1.1"; - sha256 = "1wl29h702g79kwy4ca35x1q37aaj3rphf1i9vdm2hmd44bzrwvkk"; - libraryHaskellDepends = [ - base - containers - probability - random - ]; - description = "Simple probability library for dice rolls, card games and similar"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "game-tree" = callPackage ( { mkDerivation, base }: mkDerivation { @@ -249622,38 +141714,6 @@ self: { } ) { }; - "gameclock" = callPackage ( - { - mkDerivation, - base, - cairo, - containers, - glib, - gtk, - time, - }: - mkDerivation { - pname = "gameclock"; - version = "1.0.4"; - sha256 = "192rn2d8bil8wqilnaqxba8nzq0fjlbf0innv6rdcjs1kxw1ga0l"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - cairo - containers - glib - gtk - time - ]; - description = "Game clock that shows two analog clock faces"; - license = "GPL"; - hydraPlatforms = lib.platforms.none; - mainProgram = "gameclock"; - broken = true; - } - ) { }; - "gamgee" = callPackage ( { mkDerivation, @@ -249737,102 +141797,6 @@ self: { } ) { }; - "gamma" = callPackage ( - { - mkDerivation, - base, - continued-fractions, - converge, - erf, - numbers, - QuickCheck, - template-haskell, - test-framework, - test-framework-quickcheck2, - vector, - }: - mkDerivation { - pname = "gamma"; - version = "0.10.0.0"; - sha256 = "17pdnff340hgmq0dyxf5jrnkrhrgzp96pisc2fppvjbhdw8ndm65"; - libraryHaskellDepends = [ - base - continued-fractions - converge - template-haskell - vector - ]; - testHaskellDepends = [ - base - erf - numbers - QuickCheck - test-framework - test-framework-quickcheck2 - ]; - description = "Gamma function and related functions"; - license = lib.licenses.publicDomain; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "gang-of-threads" = callPackage ( - { - mkDerivation, - base, - containers, - mtl, - stm, - transformers, - }: - mkDerivation { - pname = "gang-of-threads"; - version = "3.2.1"; - sha256 = "0gj7ln0xq1a7zzxhyl636z854xfq714kmh2ld30ll0dskr701l1p"; - libraryHaskellDepends = [ - base - containers - mtl - stm - transformers - ]; - description = "Non-deterministic parallelism with bags"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "garepinoh" = callPackage ( - { - mkDerivation, - base, - haskeline, - transformers, - }: - mkDerivation { - pname = "garepinoh"; - version = "0.9.9.2.1"; - sha256 = "1cylwaj62gmcjczw5g44k9x6g5bamgk88h2arbbripzphhaf7cm7"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - haskeline - transformers - ]; - executableHaskellDepends = [ - base - haskeline - transformers - ]; - description = "reverse prefix notation calculator and calculation library"; - license = lib.licenses.publicDomain; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "garfield" = callPackage ( { mkDerivation }: mkDerivation { @@ -250027,29 +141991,6 @@ self: { } ) { }; - "gas" = callPackage ( - { - mkDerivation, - base, - free, - transformers, - }: - mkDerivation { - pname = "gas"; - version = "0.0.0.1"; - sha256 = "1khapcq5yfx46pmc3y5nax8p5v5ckbis8v4f53jng6j59cd27c3f"; - libraryHaskellDepends = [ - base - free - transformers - ]; - description = "Limit how many steps a program may take"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "gasp" = callPackage ( { mkDerivation, @@ -250081,20 +142022,6 @@ self: { } ) { }; - "gather" = callPackage ( - { mkDerivation, base }: - mkDerivation { - pname = "gather"; - version = "0.1.0.0"; - sha256 = "0ajh8ygks61knc17vgsm5dsnqhkcrz2s0gaw6xyppq415wijgv0m"; - libraryHaskellDepends = [ base ]; - description = "An applicative for parsing unordered things, heterogenous sorting"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "gauge" = callPackage ( { mkDerivation, @@ -250244,37 +142171,6 @@ self: { ]; description = "A library for downloading data from a Great Black Swamp server"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "gbu" = callPackage ( - { - mkDerivation, - base, - containers, - fgl, - Graphalyze, - haskell98, - mtl, - regex-posix, - }: - mkDerivation { - pname = "gbu"; - version = "0.1"; - sha256 = "0zqgq5hr3vmajijf1vmc1s1lwilnymwvv493rra4fl0zy28k5cz6"; - libraryHaskellDepends = [ - base - containers - fgl - Graphalyze - haskell98 - mtl - regex-posix - ]; - description = "planar graph embedding into a plane"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; } ) { }; @@ -250292,41 +142188,6 @@ self: { } ) { }; - "gc-monitoring-wai" = callPackage ( - { - mkDerivation, - aeson, - base, - blaze-builder, - conduit, - http-types, - text, - transformers, - unordered-containers, - wai, - }: - mkDerivation { - pname = "gc-monitoring-wai"; - version = "0.1.2"; - sha256 = "04i86mngz0s6x5j36vs2nrxivqayqjfa2ppk016r4ffs4mi7i4va"; - libraryHaskellDepends = [ - aeson - base - blaze-builder - conduit - http-types - text - transformers - unordered-containers - wai - ]; - description = "a wai application to show GHC.GCStats"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "gcodehs" = callPackage ( { mkDerivation, @@ -250399,40 +142260,6 @@ self: { } ) { }; - "gconf" = callPackage ( - { - mkDerivation, - base, - Cabal, - GConf, - glib, - gtk2hs-buildtools, - text, - }: - mkDerivation { - pname = "gconf"; - version = "0.13.1.0"; - sha256 = "1b8xl9jayr7x77af7cq4av82lf1r0j49pmbp1mz3gkadxw3adksp"; - enableSeparateDataOutput = true; - setupHaskellDepends = [ - base - Cabal - gtk2hs-buildtools - ]; - libraryHaskellDepends = [ - base - glib - text - ]; - libraryPkgconfigDepends = [ GConf ]; - libraryToolDepends = [ gtk2hs-buildtools ]; - description = "Binding to the GNOME configuration database system"; - license = lib.licenses.lgpl21Only; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { inherit (pkgs.gnome2) GConf; }; - "gd" = callPackage ( @@ -250479,115 +142306,6 @@ self: { inherit (pkgs) zlib; }; - "gdax" = callPackage ( - { - mkDerivation, - aeson, - aeson-casing, - aeson-pretty, - base, - base64-bytestring, - byteable, - bytestring, - containers, - cryptohash, - exceptions, - hashable, - http-client, - http-client-tls, - lens, - lens-aeson, - mtl, - regex-tdfa, - regex-tdfa-text, - scientific, - tasty, - tasty-hunit, - tasty-quickcheck, - tasty-th, - text, - time, - unordered-containers, - uuid, - vector, - websockets, - wreq, - wuss, - }: - mkDerivation { - pname = "gdax"; - version = "0.6.0.0"; - sha256 = "08b7j5dcs5indpd6gb6pc3aw692jqvm26vfnq12mpssdbv7fzf6y"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson - aeson-casing - base - base64-bytestring - byteable - bytestring - containers - cryptohash - exceptions - hashable - http-client - http-client-tls - lens - lens-aeson - mtl - regex-tdfa - regex-tdfa-text - scientific - text - time - unordered-containers - uuid - vector - websockets - wreq - wuss - ]; - executableHaskellDepends = [ - aeson - aeson-pretty - base - base64-bytestring - bytestring - text - vector - websockets - wuss - ]; - testHaskellDepends = [ - aeson - aeson-pretty - base - base64-bytestring - bytestring - containers - exceptions - lens - lens-aeson - mtl - tasty - tasty-hunit - tasty-quickcheck - tasty-th - text - time - unordered-containers - vector - websockets - wuss - ]; - description = "API Wrapping for Coinbase's GDAX exchange"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - mainProgram = "sandbox"; - } - ) { }; - "gdelt" = callPackage ( { mkDerivation, @@ -250634,72 +142352,6 @@ self: { } ) { }; - "gdiff-ig" = callPackage ( - { - mkDerivation, - array, - base, - ghc-prim, - instant-generics, - template-haskell, - }: - mkDerivation { - pname = "gdiff-ig"; - version = "0.1.1"; - sha256 = "1ma9w9ypk078vvqwlfgkwcw962xha1g1fx4abji1b7km09p58jm2"; - libraryHaskellDepends = [ - array - base - ghc-prim - instant-generics - template-haskell - ]; - description = "Generic diff for the instant-generics library"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "gdiff-th" = callPackage ( - { - mkDerivation, - base, - containers, - gdiff, - mtl, - template-haskell, - th-expand-syns, - uniplate, - }: - mkDerivation { - pname = "gdiff-th"; - version = "0.1.0.7"; - sha256 = "1ihbz95k01giqbpbp1hddx71pkhz63pz5q4b71gv6z2vvvh34s2w"; - libraryHaskellDepends = [ - base - containers - gdiff - mtl - template-haskell - th-expand-syns - uniplate - ]; - testHaskellDepends = [ - base - containers - gdiff - mtl - template-haskell - th-expand-syns - uniplate - ]; - description = "Generate gdiff GADTs and Instances"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "gdo" = callPackage ( { mkDerivation, @@ -250833,426 +142485,6 @@ self: { } ) { }; - "gedcom" = callPackage ( - { - mkDerivation, - array, - base, - bytestring, - containers, - hspec, - megaparsec, - monad-loops, - mtl, - text-all, - time, - }: - mkDerivation { - pname = "gedcom"; - version = "0.2.0.0"; - sha256 = "1hwjrljmwr7ywi213lxvfp6c98ydlxngr7hrhcx7ylngw165al7y"; - libraryHaskellDepends = [ - array - base - bytestring - containers - megaparsec - monad-loops - mtl - text-all - time - ]; - testHaskellDepends = [ - base - hspec - megaparsec - text-all - ]; - description = "Parser for the GEDCOM genealogy file format"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "geek" = callPackage ( - { - mkDerivation, - aeson, - aeson-pretty, - air, - air-extra, - air-th, - base, - bytestring, - containers, - curl, - data-default, - directory, - filepath, - fsnotify, - Glob, - hack2, - hack2-contrib, - miku, - moe, - mtl, - process, - random, - safe, - system-filepath, - text, - text-icu, - time, - }: - mkDerivation { - pname = "geek"; - version = "1.1.1.0"; - sha256 = "0n52s5azqqx06flfhsgbp5a63mpd4vd60y4rzrpa4jx13bydlp50"; - libraryHaskellDepends = [ - aeson - aeson-pretty - air - air-extra - air-th - base - bytestring - containers - curl - data-default - directory - filepath - fsnotify - Glob - hack2 - hack2-contrib - miku - moe - mtl - process - random - safe - system-filepath - text - text-icu - time - ]; - description = "Geek blog engine"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "geek-server" = callPackage ( - { - mkDerivation, - air, - base, - bytestring, - data-default, - geek, - hack2, - hack2-handler-snap-server, - pandoc, - text, - }: - mkDerivation { - pname = "geek-server"; - version = "1.1"; - sha256 = "1951jw8la59c7qvjpx8x898l7hnwc51c4264mmw0h402ik233bp2"; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - air - base - bytestring - data-default - geek - hack2 - hack2-handler-snap-server - pandoc - text - ]; - executableHaskellDepends = [ - air - base - bytestring - data-default - geek - hack2 - hack2-handler-snap-server - pandoc - text - ]; - description = "Geek blog engine server"; - license = "GPL"; - hydraPlatforms = lib.platforms.none; - mainProgram = "geek"; - } - ) { }; - - "gegl" = callPackage ( - { - mkDerivation, - babl, - base, - containers, - gegl, - glib, - inline-c, - monad-loops, - random, - split, - template-haskell, - }: - mkDerivation { - pname = "gegl"; - version = "0.0.0.5"; - sha256 = "082rbhmikfj0kxvzspgsj5kfd2bxdkxzdj0ffcca7zh6ixqv30z7"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - babl - base - containers - glib - inline-c - monad-loops - random - split - template-haskell - ]; - librarySystemDepends = [ gegl ]; - libraryPkgconfigDepends = [ gegl ]; - description = "Haskell bindings to GEGL library"; - license = lib.licenses.lgpl3Only; - hydraPlatforms = lib.platforms.none; - } - ) { inherit (pkgs) gegl; }; - - "gelatin" = callPackage ( - { - mkDerivation, - base, - bytestring, - containers, - lens, - linear, - mtl, - transformers, - vector, - }: - mkDerivation { - pname = "gelatin"; - version = "0.1.0.1"; - sha256 = "151sf11a9sfwi6wg26l7lyphklv3lgy51djfqx3qszykhzccgv7b"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - bytestring - containers - lens - linear - mtl - transformers - vector - ]; - executableHaskellDepends = [ - base - linear - mtl - vector - ]; - description = "A graphics description language"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - mainProgram = "example"; - broken = true; - } - ) { }; - - "gelatin-freetype2" = callPackage ( - { - mkDerivation, - base, - containers, - either, - freetype2, - gelatin, - gelatin-gl, - mtl, - transformers, - }: - mkDerivation { - pname = "gelatin-freetype2"; - version = "0.1.0.0"; - sha256 = "0nr5xsxwg73liyr572jv1vzj5bjk3qhkkk7j6g0kqf2h31yxgqhr"; - libraryHaskellDepends = [ - base - containers - either - freetype2 - gelatin - gelatin-gl - mtl - transformers - ]; - testHaskellDepends = [ base ]; - description = "FreeType2 based text rendering for the gelatin realtime rendering system"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "gelatin-fruity" = callPackage ( - { - mkDerivation, - base, - FontyFruity, - gelatin, - linear, - vector, - }: - mkDerivation { - pname = "gelatin-fruity"; - version = "0.1.0.0"; - sha256 = "0yp3z4sz52f21zvdy1xmd0bvpicbnv4wa53937rq1vw2jv60xx2r"; - libraryHaskellDepends = [ - base - FontyFruity - gelatin - linear - vector - ]; - description = "Gelatin's support for rendering TTF outlines, using FontyFruity"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "gelatin-gl" = callPackage ( - { - mkDerivation, - base, - bytestring, - containers, - directory, - either, - filepath, - gelatin, - gelatin-shaders, - gl, - JuicyPixels, - lens, - linear, - mtl, - template-haskell, - transformers, - vector, - }: - mkDerivation { - pname = "gelatin-gl"; - version = "0.1.0.0"; - sha256 = "1x9a3wb878d1nrlxj2rciw4xz93gn3m326zciqnn5dg31fwqs396"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - bytestring - containers - directory - either - filepath - gelatin - gelatin-shaders - gl - JuicyPixels - lens - linear - mtl - template-haskell - transformers - vector - ]; - executableHaskellDepends = [ - base - gelatin - lens - linear - mtl - vector - ]; - description = "OpenGL rendering routines for the gelatin-picture graphics EDSL"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - mainProgram = "gelatin-gl-example"; - } - ) { }; - - "gelatin-sdl2" = callPackage ( - { - mkDerivation, - base, - either, - filepath, - gelatin-gl, - mtl, - sdl2, - transformers, - }: - mkDerivation { - pname = "gelatin-sdl2"; - version = "0.1.1.0"; - sha256 = "0gnn5b06q6fsbblrjghyzn46dby2skm5r9ys6pl6fhp7pa3c924n"; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base - gelatin-gl - mtl - sdl2 - transformers - ]; - executableHaskellDepends = [ - base - either - filepath - sdl2 - ]; - description = "An SDL2 backend for the gelatin renderer"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - mainProgram = "gelatin-sdl2-example"; - } - ) { }; - - "gelatin-shaders" = callPackage ( - { - mkDerivation, - base, - bytestring, - filepath, - gelatin, - }: - mkDerivation { - pname = "gelatin-shaders"; - version = "0.1.0.0"; - sha256 = "001ifyyv85b9gb5l4hf21b5dqakg4f7n3bil5a1abb4vcj2zmpfr"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base - bytestring - filepath - gelatin - ]; - description = "Gelatin's OpenGL shaders"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "gemcap" = callPackage ( { mkDerivation, @@ -251596,112 +142828,6 @@ self: { } ) { }; - "gemstone" = callPackage ( - { - mkDerivation, - array, - base, - bitmap, - bitmap-opengl, - containers, - FTGL, - lens, - linear, - OpenGL, - random, - SDL, - SDL-image, - stb-image, - transformers, - }: - mkDerivation { - pname = "gemstone"; - version = "0.3.0.1"; - sha256 = "0y9ilxpkyb42iddks31k1f6vjkm78z6yaj2yd9ppis42r2advg40"; - libraryHaskellDepends = [ - array - base - bitmap - bitmap-opengl - containers - FTGL - lens - linear - OpenGL - random - SDL - SDL-image - stb-image - transformers - ]; - description = "A simple library of helpers for SDL+GL games"; - license = "GPL"; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "gen-imports" = callPackage ( - { - mkDerivation, - base, - bytestring, - Cabal, - containers, - filepath, - hackage-db, - pretty, - }: - mkDerivation { - pname = "gen-imports"; - version = "0.1.0.2"; - sha256 = "1qm01lnvicg59cnj659famd7f9z1z6l9r4jsl7gakrq0ylw7mkqd"; - libraryHaskellDepends = [ - base - bytestring - Cabal - containers - filepath - hackage-db - pretty - ]; - description = "Code to generate instances for the package \"ghc-instances\""; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "gen-passwd" = callPackage ( - { - mkDerivation, - base, - bytestring, - optparse-applicative, - random, - vector, - }: - mkDerivation { - pname = "gen-passwd"; - version = "1.1.0.0"; - sha256 = "16ql67p4knkwas4kfa1mikqqxq6kvzcnrbza5y7kk3gi0haiaj1s"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - bytestring - optparse-applicative - random - vector - ]; - description = "Create wordlist-based passwords easily"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "gen-passwd"; - broken = true; - } - ) { }; - "genai-lib" = callPackage ( { mkDerivation, @@ -251783,74 +142909,6 @@ self: { } ) { }; - "gender" = callPackage ( - { - mkDerivation, - attoparsec, - base, - text, - }: - mkDerivation { - pname = "gender"; - version = "0.1.1.0"; - sha256 = "0sfl3729v03s5ykd8ijv4yrf8lzja5hyaphsfgk96gcx3zvd1a0q"; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - attoparsec - base - text - ]; - executableHaskellDepends = [ - attoparsec - base - text - ]; - description = "Identify a persons gender by their first name"; - license = lib.licenses.lgpl21Only; - hydraPlatforms = lib.platforms.none; - mainProgram = "gender"; - broken = true; - } - ) { }; - - "genders" = callPackage ( - { - mkDerivation, - base, - bytestring, - filepath, - genders, - hspec, - network, - vector, - }: - mkDerivation { - pname = "genders"; - version = "0.1.0.1"; - sha256 = "0jl1sqj9syp31qcn3x6c0pjwj5ligirsc67ahzw2chgpf09bwh8g"; - libraryHaskellDepends = [ - base - bytestring - filepath - vector - ]; - librarySystemDepends = [ genders ]; - testHaskellDepends = [ - base - bytestring - hspec - network - vector - ]; - description = "Bindings to libgenders"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { genders = null; }; - "gendocs" = callPackage ( { mkDerivation, @@ -251943,79 +143001,6 @@ self: { } ) { }; - "general-prelude" = callPackage ( - { - mkDerivation, - base, - lens, - pointless-fun, - strict, - system-filepath, - }: - mkDerivation { - pname = "general-prelude"; - version = "0.1.2"; - sha256 = "0km8nrd7pili8s5fz68xpb6nw9mfk0phgwaxnflk6a78vz9ic76d"; - libraryHaskellDepends = [ - base - lens - pointless-fun - strict - system-filepath - ]; - description = "Prelude replacement using generalized type classes where possible"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "generator" = callPackage ( - { - mkDerivation, - base, - List, - transformers, - }: - mkDerivation { - pname = "generator"; - version = "0.5.5"; - sha256 = "1rwz2ribijj5hb2isg0yz6hb2mwyjhzfg0ys041yb43qlcbhkhdd"; - libraryHaskellDepends = [ - base - List - transformers - ]; - description = "Python-generators notation for creation of monadic lists"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "generators" = callPackage ( - { - mkDerivation, - base, - mtl, - random, - }: - mkDerivation { - pname = "generators"; - version = "1.0.3"; - sha256 = "0i51xx2hhjqjdvyzy2jza921jcfhy37azyp1cfaakvrj9kxl2w2q"; - libraryHaskellDepends = [ - base - mtl - random - ]; - description = "Actually useful monadic random value generators"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "generic-accessors" = callPackage ( { mkDerivation, @@ -252053,7 +143038,6 @@ self: { ]; description = "stringly-named getters for generic data"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; } ) { }; @@ -252126,31 +143110,6 @@ self: { } ) { }; - "generic-binary" = callPackage ( - { - mkDerivation, - base, - binary, - bytestring, - ghc-prim, - }: - mkDerivation { - pname = "generic-binary"; - version = "1.0.1"; - sha256 = "1h6xs56c351137mjc3hdba7yfcw8jy9dvzj0vdrgwm0dprn0xh29"; - libraryHaskellDepends = [ - base - binary - bytestring - ghc-prim - ]; - description = "Generic Data.Binary derivation using GHC generics."; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "generic-case" = callPackage ( { mkDerivation, @@ -252183,32 +143142,6 @@ self: { } ) { }; - "generic-church" = callPackage ( - { - mkDerivation, - base, - HUnit, - test-framework, - test-framework-hunit, - }: - mkDerivation { - pname = "generic-church"; - version = "0.3.0.0"; - sha256 = "1cw48dnw2nbnm3vr5xcsz7nma6g8dxvwvv7hwm63jikd9jgisnac"; - libraryHaskellDepends = [ base ]; - testHaskellDepends = [ - base - HUnit - test-framework - test-framework-hunit - ]; - description = "Automatically convert Generic instances to and from church representations"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "generic-constraints" = callPackage ( { mkDerivation, @@ -252443,36 +143376,6 @@ self: { } ) { }; - "generic-enum" = callPackage ( - { - mkDerivation, - array, - base, - bytestring, - hspec, - }: - mkDerivation { - pname = "generic-enum"; - version = "0.1.1.0"; - sha256 = "1m4li9q7dcb82ls4dh4c9xb6mxqnz6lm5b94pr6wrjsnz5xni8xy"; - libraryHaskellDepends = [ - array - base - bytestring - ]; - testHaskellDepends = [ - array - base - bytestring - hspec - ]; - description = "An Enum class that fixes some deficiences with Prelude's Enum"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "generic-enumeration" = callPackage ( { mkDerivation, base }: mkDerivation { @@ -252677,27 +143580,6 @@ self: { } ) { }; - "generic-lens-labels" = callPackage ( - { - mkDerivation, - base, - generic-lens, - }: - mkDerivation { - pname = "generic-lens-labels"; - version = "0.1.0.2"; - sha256 = "0lhzxknz8117zc28d7l9wfvln5lp7alxfx8f6q4b986i93dzkl09"; - libraryHaskellDepends = [ - base - generic-lens - ]; - description = "GHC.OverloadedLabels.IsLabel instance for lenses from ghc-generics"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "generic-lens-lite" = callPackage ( { mkDerivation, base }: mkDerivation { @@ -252726,29 +143608,6 @@ self: { } ) { }; - "generic-lucid-scaffold" = callPackage ( - { - mkDerivation, - base, - lucid, - text, - }: - mkDerivation { - pname = "generic-lucid-scaffold"; - version = "0.0.1"; - sha256 = "13lry3hqqrqgk5z9dc6q6hr70iqky4ssra2l71y51gnrg1kprkrz"; - libraryHaskellDepends = [ - base - lucid - text - ]; - description = "General-purpose web page scaffold for Lucid"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "generic-match" = callPackage ( { mkDerivation, @@ -252770,70 +143629,6 @@ self: { } ) { }; - "generic-maybe" = callPackage ( - { - mkDerivation, - base, - bytestring, - containers, - criterion, - deepseq, - directory, - doctest, - filepath, - generic-deriving, - ghc-prim, - hlint, - mtl, - nats, - parallel, - semigroups, - simple-reflect, - split, - text, - unordered-containers, - vector, - }: - mkDerivation { - pname = "generic-maybe"; - version = "0.3.0.4"; - sha256 = "1gs89wzs3288l2p24pj5yi68xyy2kj3aczj31zk6v9xi3bwb73x1"; - libraryHaskellDepends = [ - base - ghc-prim - ]; - testHaskellDepends = [ - base - bytestring - containers - deepseq - directory - doctest - filepath - generic-deriving - hlint - mtl - nats - parallel - semigroups - simple-reflect - split - text - unordered-containers - vector - ]; - benchmarkHaskellDepends = [ - base - criterion - deepseq - ]; - description = "A generic version of Data.Maybe"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "generic-monoid" = callPackage ( { mkDerivation, base }: mkDerivation { @@ -253050,46 +143845,6 @@ self: { } ) { }; - "generic-pretty" = callPackage ( - { - mkDerivation, - ansi-wl-pprint, - base, - bytestring, - containers, - tasty, - tasty-hunit, - text, - vector, - }: - mkDerivation { - pname = "generic-pretty"; - version = "0.1.0"; - sha256 = "0mg7mdbxf3va0xl2j0kz5wzy3mg6nvxv68axfjvx1zij1yjlamn7"; - libraryHaskellDepends = [ - ansi-wl-pprint - base - bytestring - containers - text - vector - ]; - testHaskellDepends = [ - base - bytestring - containers - tasty - tasty-hunit - text - vector - ]; - description = "Pretty printing for Generic value"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "generic-pretty-instances" = callPackage ( { mkDerivation, @@ -253181,86 +143936,6 @@ self: { } ) { }; - "generic-records" = callPackage ( - { mkDerivation, base }: - mkDerivation { - pname = "generic-records"; - version = "0.2.0.0"; - sha256 = "0xga8vm89xjgzmnz5032kqyq1q8nhbf01n55xjgda4kfjzkx1yr0"; - libraryHaskellDepends = [ base ]; - description = "Magic record operations using generics"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "generic-server" = callPackage ( - { - mkDerivation, - base, - bytestring, - network, - }: - mkDerivation { - pname = "generic-server"; - version = "0.1"; - sha256 = "0bl3gfqdw6sdwcailzkzmpz433cpxf6np9w9qnkwwa05xhcpd2k6"; - libraryHaskellDepends = [ - base - bytestring - network - ]; - description = "Simple generic TCP/IP server"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "generic-storable" = callPackage ( - { - mkDerivation, - base, - ghc-prim, - hspec, - QuickCheck, - }: - mkDerivation { - pname = "generic-storable"; - version = "0.1.0.0"; - sha256 = "016gg232r453i7grbjg2hb69ww8jqgafnq32f38lv7l81dgzwfxj"; - libraryHaskellDepends = [ - base - ghc-prim - ]; - testHaskellDepends = [ - base - ghc-prim - hspec - QuickCheck - ]; - description = "Generic implementation of Storable"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "generic-tree" = callPackage ( - { mkDerivation, base }: - mkDerivation { - pname = "generic-tree"; - version = "15329.2"; - sha256 = "1frwwa45kahflnw2cgs8nb8jfxgrxw0n9i7h9cakpqzgbywy9b28"; - libraryHaskellDepends = [ base ]; - description = "Generic Tree data type"; - license = "LGPL"; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "generic-trie" = callPackage ( { mkDerivation, @@ -253327,67 +144002,6 @@ self: { } ) { }; - "generic-xml" = callPackage ( - { - mkDerivation, - base, - HaXml, - mtl, - syb-with-class, - template-haskell, - }: - mkDerivation { - pname = "generic-xml"; - version = "0.1"; - sha256 = "08fy9wc90wcnr74wbr7q3pfr0bigrzhchx158p1ji3gagb2n2njd"; - libraryHaskellDepends = [ - base - HaXml - mtl - syb-with-class - template-haskell - ]; - description = "Marshalling Haskell values to/from XML"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "generic-xmlpickler" = callPackage ( - { - mkDerivation, - base, - generic-deriving, - hxt, - tasty, - tasty-hunit, - tasty-th, - text, - }: - mkDerivation { - pname = "generic-xmlpickler"; - version = "0.1.0.6"; - sha256 = "0cbigrfiilwr2dfcnd2mskj1pjgwrjj72anfpa1yii7q9rs0gdh3"; - libraryHaskellDepends = [ - base - generic-deriving - hxt - text - ]; - testHaskellDepends = [ - base - hxt - tasty - tasty-hunit - tasty-th - ]; - description = "Generic generation of HXT XmlPickler instances using GHC Generics"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "generically" = callPackage ( { mkDerivation, base }: mkDerivation { @@ -253443,53 +144057,6 @@ self: { } ) { }; - "generics-mrsop" = callPackage ( - { - mkDerivation, - base, - containers, - mtl, - sop-core, - template-haskell, - }: - mkDerivation { - pname = "generics-mrsop"; - version = "2.3.0"; - sha256 = "1jcjsvzd1wgdcclw54ic5d674y6kmnyiwjkz1k3fxpv75x3xc3zq"; - libraryHaskellDepends = [ - base - containers - mtl - sop-core - template-haskell - ]; - description = "Generic Programming with Mutually Recursive Sums of Products"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "generics-mrsop-gdiff" = callPackage ( - { - mkDerivation, - base, - generics-mrsop, - }: - mkDerivation { - pname = "generics-mrsop-gdiff"; - version = "0.0.2"; - sha256 = "01fkfk18h8dpl6w3ipx85ay9qj8s56xl7022ids21a0slyc4ml4s"; - libraryHaskellDepends = [ - base - generics-mrsop - ]; - description = "Reimplementation of the gdiff algorithm for generics-mrsop"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "generics-sop" = callPackage ( { mkDerivation, @@ -253548,379 +144115,6 @@ self: { } ) { }; - "genericserialize" = callPackage ( - { mkDerivation, base }: - mkDerivation { - pname = "genericserialize"; - version = "0.1"; - sha256 = "0zpb5rq2zvfsb0wlp9q4cckjkz6sdrngpir49d0sr06pivh8s6cl"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ base ]; - description = "Serialization library using Data.Generics"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "genesis" = callPackage ( - { - mkDerivation, - base, - directory, - envparse, - file-embed, - filepath, - hspec, - monad-control, - monad-io-adapter, - monad-logger, - monad-persist, - persistent, - persistent-postgresql, - persistent-sqlite, - persistent-template, - resource-pool, - template-haskell, - text, - text-conversions, - transformers, - transformers-base, - }: - mkDerivation { - pname = "genesis"; - version = "0.1.0.0"; - sha256 = "1bz47rf5qkkm809440y3ki1bahyg6sxdlxrfkc4mjy49fcbgh4si"; - libraryHaskellDepends = [ - base - directory - envparse - file-embed - filepath - monad-control - monad-io-adapter - monad-logger - monad-persist - persistent - persistent-postgresql - persistent-template - resource-pool - template-haskell - text - text-conversions - transformers - transformers-base - ]; - testHaskellDepends = [ - base - hspec - monad-control - monad-logger - monad-persist - persistent-sqlite - persistent-template - text - ]; - description = "Opinionated bootstrapping for Haskell web services"; - license = lib.licenses.isc; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "genesis-test" = callPackage ( - { - mkDerivation, - base, - envparse, - genesis, - hspec, - hspec-expectations, - lifted-base, - monad-control, - monad-logger, - monad-persist, - persistent-postgresql, - persistent-template, - text, - transformers, - transformers-base, - }: - mkDerivation { - pname = "genesis-test"; - version = "0.1.0.0"; - sha256 = "0d93wq9b5wm5cgw9kfvf8smm7d3adv8y4a8kxc6m17lvgjmjjph4"; - libraryHaskellDepends = [ - base - genesis - hspec - hspec-expectations - lifted-base - monad-control - monad-logger - monad-persist - persistent-postgresql - transformers - transformers-base - ]; - testHaskellDepends = [ - base - envparse - genesis - hspec - monad-logger - monad-persist - persistent-template - text - ]; - description = "Opinionated bootstrapping for Haskell web services"; - license = lib.licenses.isc; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "genetics" = callPackage ( - { - mkDerivation, - base, - random-fu, - }: - mkDerivation { - pname = "genetics"; - version = "0.0.2"; - sha256 = "0rq1m7psvs2r35mnz7gwmsvzyd3jv44bqp0zhq8l7mq2pq2x7dhv"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - random-fu - ]; - description = "A Genetic Algorithm library"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "hellogenetics"; - broken = true; - } - ) { }; - - "geni-gui" = callPackage ( - { - mkDerivation, - array, - base, - Cabal, - cabal-macosx, - containers, - directory, - filepath, - GenI, - graphviz, - hslogger, - json, - mtl, - process, - text, - transformers, - wx, - wxcore, - yaml-light, - }: - mkDerivation { - pname = "geni-gui"; - version = "0.25.1"; - sha256 = "1ykhliang0hknn1zrhvs9qjgi9lbl18lh5sgrrilr1a2kcqd8pkk"; - isLibrary = true; - isExecutable = true; - setupHaskellDepends = [ - base - Cabal - cabal-macosx - directory - filepath - process - ]; - libraryHaskellDepends = [ - array - base - cabal-macosx - containers - directory - filepath - GenI - graphviz - hslogger - json - mtl - process - text - transformers - wx - wxcore - yaml-light - ]; - executableHaskellDepends = [ - base - GenI - ]; - description = "GenI graphical user interface"; - license = "GPL"; - hydraPlatforms = lib.platforms.none; - mainProgram = "geni-gui"; - } - ) { }; - - "geni-util" = callPackage ( - { - mkDerivation, - base, - blaze-html, - blaze-markup, - bytestring, - cmdargs, - directory, - filepath, - GenI, - geniserver, - HTTP, - http-streams, - io-streams, - json, - text, - }: - mkDerivation { - pname = "geni-util"; - version = "0.25.0.1"; - sha256 = "1p62m885w3wpin8g2lcjzrk8a0gslkrxml6d66m38m6lflgwrm6h"; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base - blaze-html - blaze-markup - bytestring - directory - filepath - GenI - geniserver - HTTP - http-streams - io-streams - json - text - ]; - executableHaskellDepends = [ - base - bytestring - cmdargs - directory - filepath - GenI - json - text - ]; - description = "Companion tools for use with the GenI surface realiser"; - license = lib.licenses.gpl2Only; - hydraPlatforms = lib.platforms.none; - mainProgram = "geni-util"; - } - ) { }; - - "geniconvert" = callPackage ( - { - mkDerivation, - base, - binary, - containers, - GenI, - haskell98, - HaXml, - HUnit, - mtl, - parsec, - QuickCheck, - utf8-string, - }: - mkDerivation { - pname = "geniconvert"; - version = "0.20"; - sha256 = "0brnh6f8zdpn37fjdmnpbdvb75vmaf6iq7i9vpv4a8g7asc425wd"; - isLibrary = false; - isExecutable = true; - enableSeparateDataOutput = true; - executableHaskellDepends = [ - base - binary - containers - GenI - haskell98 - HaXml - HUnit - mtl - parsec - QuickCheck - utf8-string - ]; - description = "Conversion utility for the GenI generator"; - license = "GPL"; - hydraPlatforms = lib.platforms.none; - mainProgram = "geniconvert"; - } - ) { }; - - "genifunctors" = callPackage ( - { - mkDerivation, - base, - containers, - mtl, - template-haskell, - }: - mkDerivation { - pname = "genifunctors"; - version = "0.4"; - sha256 = "0ic0hhdm789gj1s88n1zhixc0c2y81ycicgcnlzgl6l6lv7z3w1d"; - libraryHaskellDepends = [ - base - containers - mtl - template-haskell - ]; - testHaskellDepends = [ - base - containers - mtl - template-haskell - ]; - description = "Generate generalized fmap, foldMap and traverse"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "geniplate" = callPackage ( - { - mkDerivation, - base, - mtl, - template-haskell, - }: - mkDerivation { - pname = "geniplate"; - version = "0.6.0.5"; - sha256 = "01cwyf5kql4hf76p1ssqpmhaxyl7rmnmqwv644wgd0j8km8b6szc"; - libraryHaskellDepends = [ - base - mtl - template-haskell - ]; - description = "Use Template Haskell to generate Uniplate-like functions"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "geniplate-mirror" = callPackage ( { mkDerivation, @@ -253942,108 +144136,6 @@ self: { } ) { }; - "geniserver" = callPackage ( - { - mkDerivation, - base, - bytestring, - cmdargs, - GenI, - http-types, - json, - snap-core, - snap-server, - text, - transformers, - utf8-string, - }: - mkDerivation { - pname = "geniserver"; - version = "0.25"; - sha256 = "1r7p7blsrp9y4za57fvcjap12f0rbgglx5a724cn1nqhihdcpd5i"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - bytestring - cmdargs - GenI - http-types - json - snap-core - text - transformers - utf8-string - ]; - executableHaskellDepends = [ - base - GenI - snap-core - snap-server - text - ]; - description = "Simple HTTP server for GenI results"; - license = "GPL"; - hydraPlatforms = lib.platforms.none; - mainProgram = "geniserver"; - } - ) { }; - - "genprog" = callPackage ( - { - mkDerivation, - base, - MonadRandom, - syb, - syz, - }: - mkDerivation { - pname = "genprog"; - version = "0.1.0.2"; - sha256 = "1a9b2h4swfwx5zwcyr2zdhxdxi9f68pwpglijxhxb5javjc4dppr"; - libraryHaskellDepends = [ - base - MonadRandom - syb - syz - ]; - description = "Genetic programming library"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "gentlemark" = callPackage ( - { - mkDerivation, - base, - HUnit, - parsec, - transformers, - }: - mkDerivation { - pname = "gentlemark"; - version = "1.0.0"; - sha256 = "1cb9si5axwqi1d893vp6n2mr68isdxc9qp6dfygy0v6hci2spnmm"; - libraryHaskellDepends = [ - base - parsec - transformers - ]; - testHaskellDepends = [ - base - HUnit - parsec - transformers - ]; - description = "Gentle markup language"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "genvalidity" = callPackage ( { mkDerivation, @@ -255577,87 +145669,6 @@ self: { } ) { }; - "geo-resolver" = callPackage ( - { - mkDerivation, - aeson, - base, - base64-bytestring, - blaze-builder, - bytestring, - http-conduit, - http-types, - HUnit, - QuickCheck, - test-framework, - test-framework-hunit, - test-framework-quickcheck2, - text, - unordered-containers, - }: - mkDerivation { - pname = "geo-resolver"; - version = "0.1.0.1"; - sha256 = "06mg6yl32qgk276ciw6md50v5b2z1v4qlscgmg0f4lx5hy208xxq"; - libraryHaskellDepends = [ - aeson - base - blaze-builder - bytestring - http-conduit - http-types - text - unordered-containers - ]; - testHaskellDepends = [ - base - base64-bytestring - bytestring - HUnit - QuickCheck - test-framework - test-framework-hunit - test-framework-quickcheck2 - ]; - description = "Performs geo location lookups and parses the results"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "geo-uk" = callPackage ( - { - mkDerivation, - array, - base, - binary, - bytestring, - bzlib, - template-haskell, - th-lift, - }: - mkDerivation { - pname = "geo-uk"; - version = "0.1.0.2"; - sha256 = "1b97kzx4i0jjrmh6iyhxcs1ms4vbiyyywmhccx1a6q6ia82dgcpy"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - array - base - binary - bytestring - bzlib - template-haskell - th-lift - ]; - description = "High precision conversion between GPS and UK Grid"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "geocalc" = callPackage ( { mkDerivation, base }: mkDerivation { @@ -255670,99 +145681,6 @@ self: { } ) { }; - "geocode-google" = callPackage ( - { - mkDerivation, - base, - containers, - hjson, - HTTP, - network, - network-uri, - }: - mkDerivation { - pname = "geocode-google"; - version = "0.3"; - sha256 = "0s643k3v17ld6kb6zbryhgsax7his7ll967xy7sgljsnd0ydxgcx"; - libraryHaskellDepends = [ - base - containers - hjson - HTTP - network - network-uri - ]; - description = "Geocoding using the Google Web API"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "geodetic" = callPackage ( - { - mkDerivation, - base, - coordinate, - directory, - doctest, - filepath, - lens, - optional, - QuickCheck, - radian, - template-haskell, - }: - mkDerivation { - pname = "geodetic"; - version = "0.1.4"; - sha256 = "07l6yha31l0ahd6jhlj09vclms8km4q82xq2mfx2a3lbv2kffcfz"; - libraryHaskellDepends = [ - base - coordinate - lens - optional - radian - ]; - testHaskellDepends = [ - base - directory - doctest - filepath - QuickCheck - template-haskell - ]; - description = "Geodetic calculations"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "geodetic-types" = callPackage ( - { - mkDerivation, - base, - dimensional, - lens, - semigroups, - }: - mkDerivation { - pname = "geodetic-types"; - version = "0.0.4"; - sha256 = "1v7dl3nl9gp8pj469sk41k8nz34s1dngpinif06v8bbpms31i0bd"; - libraryHaskellDepends = [ - base - dimensional - lens - semigroups - ]; - description = "Types for geodetic operations"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "geodetics" = callPackage ( { mkDerivation, @@ -255905,113 +145823,6 @@ self: { } ) { }; - "geojson-types" = callPackage ( - { - mkDerivation, - aeson, - base, - bson, - bytestring, - lens, - text, - }: - mkDerivation { - pname = "geojson-types"; - version = "0.1.3"; - sha256 = "10kcrvimb7mdy59bk7x7nwkzhp85ws4511xakcl6bgiwhls39x4j"; - libraryHaskellDepends = [ - aeson - base - bson - bytestring - lens - text - ]; - description = "GeoJSON data types including JSON/BSON conversion"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "geolite-csv" = callPackage ( - { - mkDerivation, - base, - colonnade, - directory, - HUnit, - ip, - pipes, - pipes-bytestring, - pipes-text, - siphon, - test-framework, - test-framework-hunit, - text, - }: - mkDerivation { - pname = "geolite-csv"; - version = "0.2"; - sha256 = "020j2m019iz40bsxg5g9w70hrgqpfs3xw7b1i6s3xyd2ciqnrdhp"; - libraryHaskellDepends = [ - base - colonnade - ip - pipes - siphon - text - ]; - testHaskellDepends = [ - base - colonnade - directory - HUnit - pipes - pipes-bytestring - pipes-text - siphon - test-framework - test-framework-hunit - text - ]; - description = "Geolite CSV Parser"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "geom2d" = callPackage ( - { - mkDerivation, - base, - ieee754, - linear, - QuickCheck, - }: - mkDerivation { - pname = "geom2d"; - version = "0.2.2"; - sha256 = "0gsls79v7licwhasw2jbvis7qfdfnlpig4nxawk052d3qyszd7r3"; - libraryHaskellDepends = [ - base - ieee754 - linear - QuickCheck - ]; - testHaskellDepends = [ - base - ieee754 - linear - QuickCheck - ]; - description = "package for geometry in euklidean 2d space"; - license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "geomancy" = callPackage ( { mkDerivation, @@ -256179,59 +145990,6 @@ self: { } ) { }; - "getemx" = callPackage ( - { - mkDerivation, - base, - curl, - directory, - filepath, - haskell98, - hxt, - mtl, - old-locale, - process, - time, - }: - mkDerivation { - pname = "getemx"; - version = "0.1"; - sha256 = "1qgq465ck4z0mix3ari9n7a5qx5xc1zii4hmfsp093vx3qlc5nwm"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - curl - directory - filepath - haskell98 - hxt - mtl - old-locale - process - time - ]; - description = "Fetch from emusic using .emx files"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "getemx"; - } - ) { }; - - "getflag" = callPackage ( - { mkDerivation, base }: - mkDerivation { - pname = "getflag"; - version = "1.0"; - sha256 = "0jsr8cmbnllcswdvf1rp11sc6cpjhwr22x7kx9sk3dw8bv772jjc"; - libraryHaskellDepends = [ base ]; - description = "Command-line parser"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "getopt-generics" = callPackage ( { mkDerivation, @@ -256442,67 +146200,6 @@ self: { } ) { }; - "ggtsTC" = callPackage ( - { - mkDerivation, - base, - containers, - parsec, - }: - mkDerivation { - pname = "ggtsTC"; - version = "0.5"; - sha256 = "0k5in0r3lwjr5yn4ayw5ssdvinh7zwzsx6pfjdj246ngx1r7ydxj"; - isLibrary = false; - isExecutable = true; - enableSeparateDataOutput = true; - executableHaskellDepends = [ - base - containers - parsec - ]; - description = "A type checker and runtime system of rCOS/g (impl. of ggts-FCS)."; - license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - mainProgram = "TC"; - broken = true; - } - ) { }; - - "gh-labeler" = callPackage ( - { - mkDerivation, - base, - directory, - github, - memory, - text, - vector, - }: - mkDerivation { - pname = "gh-labeler"; - version = "0.1.0"; - sha256 = "05g3lk1ff87qmjlywi6p90mjyycx418idddavpi8i045gr51am4l"; - revision = "1"; - editedCabalFile = "052iphf765hkysw9p4224jnm29az4kcnx8ikfpl7axj3zs1j793r"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - directory - github - memory - text - vector - ]; - description = "Github Standard Labeler"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "gh-labeler"; - broken = true; - } - ) { }; - "gh-pocket-knife" = callPackage ( { mkDerivation, @@ -256805,37 +146502,6 @@ self: { } ) { }; - "ghc-clippy-plugin" = callPackage ( - { - mkDerivation, - base, - dhall, - ghc, - text, - text-icu, - text-regex-replace, - }: - mkDerivation { - pname = "ghc-clippy-plugin"; - version = "0.0.0.1"; - sha256 = "03d49d02bpic43d83a7zrj25wsnxr3868xhh77x7a8qnd25gy5m6"; - revision = "1"; - editedCabalFile = "17qdn7fj2kib8dx8nwbhsjzg2h8p5az4yv284df6hsrm099lza8g"; - libraryHaskellDepends = [ - base - dhall - ghc - text - text-icu - text-regex-replace - ]; - description = "Override GHC error messages to the user's liking"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "ghc-compact_0_1_0_0" = callPackage ( { mkDerivation, @@ -256923,33 +146589,6 @@ self: { } ) { }; - "ghc-core-smallstep" = callPackage ( - { - mkDerivation, - base, - ghc, - ghc-paths, - }: - mkDerivation { - pname = "ghc-core-smallstep"; - version = "0.1.0.1"; - sha256 = "1yz0qzy1h5134sbmhrk7gn192fcw729bnzdkqf5wh8vh9a396l21"; - libraryHaskellDepends = [ - base - ghc - ]; - testHaskellDepends = [ - base - ghc - ghc-paths - ]; - description = "A small-step semantics for Core"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "ghc-corroborate" = callPackage ( { mkDerivation, @@ -257332,59 +146971,6 @@ self: { } ) { }; - "ghc-dump-tree" = callPackage ( - { - mkDerivation, - aeson, - base, - bytestring, - ghc, - optparse-applicative, - pretty, - pretty-show, - process, - unordered-containers, - vector, - }: - mkDerivation { - pname = "ghc-dump-tree"; - version = "0.2.0.2"; - sha256 = "1hwwdaks1qn30c281kc7yk56nj2qp20p1flprmzanvlj93j556m8"; - revision = "3"; - editedCabalFile = "1f236rambyz1wwvfggp0jn5awnxlsxiwkvzi2djh030ax7s3bmxn"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson - base - bytestring - ghc - pretty - pretty-show - process - unordered-containers - vector - ]; - executableHaskellDepends = [ - aeson - base - bytestring - ghc - optparse-applicative - pretty - pretty-show - process - unordered-containers - vector - ]; - description = "Dump GHC's parsed, renamed, and type checked ASTs"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "ghc-dump-tree"; - broken = true; - } - ) { }; - "ghc-dump-util" = callPackage ( { mkDerivation, @@ -257435,27 +147021,6 @@ self: { } ) { }; - "ghc-dup" = callPackage ( - { - mkDerivation, - base, - ghc, - }: - mkDerivation { - pname = "ghc-dup"; - version = "0.1"; - sha256 = "0aw4wnbzfw031xqmq0lpi4zz2md1f43nj921ni91mhdl5xgqcajm"; - libraryHaskellDepends = [ - base - ghc - ]; - description = "Explicitly prevent sharing"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "ghc-events" = callPackage ( { mkDerivation, @@ -257559,54 +147124,6 @@ self: { } ) { }; - "ghc-events-parallel" = callPackage ( - { - mkDerivation, - array, - base, - binary, - bytestring, - containers, - transformers, - }: - mkDerivation { - pname = "ghc-events-parallel"; - version = "0.5.0.1"; - sha256 = "181qnh6mm3pmlalf17g2g87gj7hyzf5pxzvix1cmap2f31x4p6by"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - array - base - binary - bytestring - containers - transformers - ]; - executableHaskellDepends = [ - array - base - binary - bytestring - containers - transformers - ]; - testHaskellDepends = [ - array - base - binary - bytestring - containers - transformers - ]; - description = "Library and tool for parsing .eventlog files from parallel GHC"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "ghc-events"; - broken = true; - } - ) { }; - "ghc-exactprint_0_6_4" = callPackage ( { mkDerivation, @@ -258138,27 +147655,6 @@ self: { } ) { }; - "ghc-generic-instances" = callPackage ( - { - mkDerivation, - base, - ghc, - }: - mkDerivation { - pname = "ghc-generic-instances"; - version = "0.1.0.0"; - sha256 = "0264ma0w85fwypnagd0l4zfs1wi1yk16rygn6fhpzgsxycwmg47h"; - libraryHaskellDepends = [ - base - ghc - ]; - description = "Derived instances of GHC.Generic of the GHC AST"; - license = lib.licenses.publicDomain; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "ghc-heap_9_12_1" = callPackage ( { mkDerivation, @@ -258284,31 +147780,6 @@ self: { } ) { }; - "ghc-hotswap" = callPackage ( - { - mkDerivation, - base, - concurrent-extra, - deepseq, - ghci, - }: - mkDerivation { - pname = "ghc-hotswap"; - version = "0.1.0.0"; - sha256 = "1j88ddasmcffby14d1105cawsv713qc4hjz2g23h1swlnvy375i1"; - libraryHaskellDepends = [ - base - concurrent-extra - deepseq - ghci - ]; - description = "Library for hot-swapping shared objects in GHC"; - license = "unknown"; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "ghc-hs-meta" = callPackage ( { mkDerivation, @@ -258343,181 +147814,6 @@ self: { } ) { }; - "ghc-imported-from" = callPackage ( - { - mkDerivation, - base, - bytestring, - Cabal, - containers, - directory, - exceptions, - filepath, - ghc, - ghc-mod, - ghc-paths, - ghc-syb-utils, - haddock-api, - hspec, - hspec-discover, - monad-journal, - mtl, - optparse-applicative, - parsec, - pipes-transduce, - process, - process-streaming, - safe, - syb, - transformers, - }: - mkDerivation { - pname = "ghc-imported-from"; - version = "0.3.0.6"; - sha256 = "1gjvj4k6v9ac4dzgsrzyv3rkyjg8s31j1v7pjhbnqchbxdla8ghs"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - bytestring - Cabal - containers - directory - exceptions - filepath - ghc - ghc-mod - ghc-paths - ghc-syb-utils - haddock-api - hspec - hspec-discover - monad-journal - mtl - optparse-applicative - parsec - pipes-transduce - process - process-streaming - safe - syb - transformers - ]; - executableHaskellDepends = [ - base - bytestring - Cabal - containers - directory - exceptions - filepath - ghc - ghc-mod - ghc-paths - ghc-syb-utils - haddock-api - hspec - hspec-discover - monad-journal - mtl - optparse-applicative - parsec - process - process-streaming - safe - syb - transformers - ]; - testHaskellDepends = [ - base - bytestring - Cabal - containers - directory - exceptions - filepath - ghc - ghc-mod - ghc-paths - ghc-syb-utils - haddock-api - hspec - hspec-discover - monad-journal - mtl - optparse-applicative - parsec - process - process-streaming - safe - syb - transformers - ]; - testToolDepends = [ hspec-discover ]; - description = "Find the Haddock documentation for a symbol"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "ghc-instances" = callPackage ( - { - mkDerivation, - array, - base, - binary, - bytestring, - Cabal, - containers, - deepseq, - directory, - filepath, - ghc, - ghc-boot, - ghc-compact, - ghc-prim, - hoopl, - hpc, - integer-gmp, - process, - template-haskell, - time, - unix, - }: - mkDerivation { - pname = "ghc-instances"; - version = "0.1.0.1"; - sha256 = "0vfqwd2w95lwqa4sbxaz9yl0mk8qj2v28zgzqhmlfg4xg25l76qs"; - revision = "1"; - editedCabalFile = "0rkg9mmxad74fqa1k8np8yj3p0agicpj8cy2983397ibzhyrsjwc"; - libraryHaskellDepends = [ - array - base - binary - bytestring - Cabal - containers - deepseq - directory - filepath - ghc - ghc-boot - ghc-compact - ghc-prim - hoopl - hpc - integer-gmp - process - template-haskell - time - unix - ]; - description = "Easily import all instances contained in GHC distributed libraries"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "ghc-internal_9_1201_0" = callPackage ( { mkDerivation, @@ -259294,204 +148590,6 @@ self: { } ) { }; - "ghc-man-completion" = callPackage ( - { - mkDerivation, - base, - parsec, - process, - }: - mkDerivation { - pname = "ghc-man-completion"; - version = "0.0.0.3"; - sha256 = "08qyn6mpmkq1vdfrqhckfqc096jv21scss76x9zcss4hfbljfa0p"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - parsec - process - ]; - description = "Generate a bash completion from the GHC manpage"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "ghc-man-completion"; - broken = true; - } - ) { }; - - "ghc-mod" = callPackage ( - { - mkDerivation, - base, - binary, - bytestring, - Cabal, - cabal-helper, - containers, - criterion, - deepseq, - directory, - djinn-ghc, - doctest, - extra, - fclabels, - filepath, - ghc, - ghc-boot, - ghc-paths, - ghc-syb-utils, - haskell-src-exts, - hlint, - hspec, - monad-control, - monad-journal, - mtl, - old-time, - optparse-applicative, - pipes, - process, - safe, - semigroups, - split, - syb, - template-haskell, - temporary, - text, - time, - transformers, - transformers-base, - }: - mkDerivation { - pname = "ghc-mod"; - version = "5.8.0.0"; - sha256 = "1yf4fkg1xj1b66jg6kikzc6djad1xi44y7ark7ghgif0ab0g6rn3"; - revision = "1"; - editedCabalFile = "11rccscsxv4x7xcdxaz83vjisyiadsiq48mn2v1hs8fylqx6dkdf"; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; - setupHaskellDepends = [ - base - Cabal - containers - directory - filepath - process - template-haskell - transformers - ]; - libraryHaskellDepends = [ - base - binary - bytestring - cabal-helper - containers - deepseq - directory - djinn-ghc - extra - fclabels - filepath - ghc - ghc-boot - ghc-paths - ghc-syb-utils - haskell-src-exts - hlint - monad-control - monad-journal - mtl - old-time - optparse-applicative - pipes - process - safe - semigroups - split - syb - template-haskell - temporary - text - time - transformers - transformers-base - ]; - executableHaskellDepends = [ - base - binary - deepseq - directory - fclabels - filepath - ghc - monad-control - mtl - old-time - optparse-applicative - process - semigroups - split - time - ]; - testHaskellDepends = [ - base - cabal-helper - containers - directory - doctest - fclabels - filepath - ghc - ghc-boot - hspec - monad-journal - mtl - process - split - temporary - transformers - ]; - benchmarkHaskellDepends = [ - base - criterion - directory - filepath - temporary - ]; - description = "Happy Haskell Hacking"; - license = lib.licenses.agpl3Only; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "ghc-mtl" = callPackage ( - { - mkDerivation, - base, - exceptions, - extensible-exceptions, - ghc, - mtl, - }: - mkDerivation { - pname = "ghc-mtl"; - version = "1.2.1.0"; - sha256 = "0h6r6gip9nsjlsq88wj105hhqliy7ac2dmmndsfzbjz07b03cklk"; - libraryHaskellDepends = [ - base - exceptions - extensible-exceptions - ghc - mtl - ]; - description = "An mtl compatible version of the Ghc-Api monads and monad-transformers"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "ghc-options" = callPackage ( { mkDerivation, @@ -259544,65 +148642,6 @@ self: { } ) { bin-package-db = null; }; - "ghc-parmake" = callPackage ( - { - mkDerivation, - array, - base, - containers, - directory, - filepath, - HUnit, - process, - QuickCheck, - temporary, - test-framework, - test-framework-hunit, - test-framework-quickcheck2, - }: - mkDerivation { - pname = "ghc-parmake"; - version = "0.1.9"; - sha256 = "0phww70hi5dhvp15y4asbxcb2w30nb9kbzq9md6r8gpwlynp669q"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - array - base - containers - directory - filepath - process - temporary - ]; - executableHaskellDepends = [ - array - base - containers - directory - filepath - process - temporary - ]; - testHaskellDepends = [ - base - directory - filepath - HUnit - process - QuickCheck - test-framework - test-framework-hunit - test-framework-quickcheck2 - ]; - description = "A parallel wrapper for 'ghc --make'"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "ghc-parmake"; - broken = true; - } - ) { }; - "ghc-parser" = callPackage ( { mkDerivation, @@ -259646,69 +148685,6 @@ self: { } ) { }; - "ghc-pkg-autofix" = callPackage ( - { - mkDerivation, - base, - Cabal, - cmdargs, - filepath, - parsec, - process, - split, - }: - mkDerivation { - pname = "ghc-pkg-autofix"; - version = "0.2.0.1"; - sha256 = "0rm7vksfzwkpby1b8k2v745d7bylxbgspjhhfvdxc40a3rix8sz7"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - Cabal - cmdargs - filepath - parsec - process - split - ]; - description = "Simple utility to fix BROKEN package dependencies for cabal-install"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "ghc-pkg-autofix"; - broken = true; - } - ) { }; - - "ghc-pkg-lib" = callPackage ( - { - mkDerivation, - base, - Cabal, - directory, - filepath, - ghc, - ghc-paths, - }: - mkDerivation { - pname = "ghc-pkg-lib"; - version = "0.3.1"; - sha256 = "1kkzbk7cdli1i98dy3xq8n32rs6wxr4qpg29n0pb6k273rc0dqdk"; - libraryHaskellDepends = [ - base - Cabal - directory - filepath - ghc - ghc-paths - ]; - description = "Provide library support for ghc-pkg information"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "ghc-plugin-non-empty" = callPackage ( { mkDerivation, @@ -259934,32 +148910,6 @@ self: { } ) { }; - "ghc-proofs" = callPackage ( - { - mkDerivation, - base, - ghc, - transformers, - }: - mkDerivation { - pname = "ghc-proofs"; - version = "0.1.1"; - sha256 = "1kyy2wck8n6cjfcsqv4ki5dsakgps9brpad0lcsgnpixx9x8w88h"; - libraryHaskellDepends = [ - base - ghc - ]; - testHaskellDepends = [ - base - transformers - ]; - description = "GHC plugin to prove program equations by simplification"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "ghc-server" = callPackage ( { mkDerivation }: mkDerivation { @@ -259972,74 +148922,6 @@ self: { } ) { }; - "ghc-session" = callPackage ( - { - mkDerivation, - base, - exceptions, - ghc, - ghc-mtl, - ghc-paths, - transformers, - transformers-compat, - }: - mkDerivation { - pname = "ghc-session"; - version = "0.1.2.1"; - sha256 = "02vd3r83zck60lzj156w5v11xzah3s5ql6ip5p715z747zx1grf1"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - exceptions - ghc - ghc-mtl - ghc-paths - transformers - transformers-compat - ]; - executableHaskellDepends = [ - base - transformers - ]; - description = "Simplified GHC API"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - mainProgram = "ghc-test"; - } - ) { }; - - "ghc-simple" = callPackage ( - { - mkDerivation, - base, - binary, - bytestring, - directory, - filepath, - ghc, - ghc-paths, - }: - mkDerivation { - pname = "ghc-simple"; - version = "0.4"; - sha256 = "0hf9wqwsh1h4r6y7blad5w64a43ilj60dhv4529zh6jmmvhdxsdf"; - libraryHaskellDepends = [ - base - binary - bytestring - directory - filepath - ghc - ghc-paths - ]; - description = "Simplified interface to the GHC API"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "ghc-source-gen" = callPackage ( { mkDerivation, @@ -260075,33 +148957,6 @@ self: { } ) { }; - "ghc-srcspan-plugin" = callPackage ( - { - mkDerivation, - array, - base, - containers, - ghc, - hpc, - }: - mkDerivation { - pname = "ghc-srcspan-plugin"; - version = "0.2.2.1"; - sha256 = "10zh7i4nx4ds3f1d7m2m1caqnxmi3dh6a900fl8mcp6a09isvglh"; - libraryHaskellDepends = [ - array - base - containers - ghc - hpc - ]; - description = "Generic GHC Plugin for annotating Haskell code with source location data"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "ghc-stdin" = callPackage ( { mkDerivation, @@ -260129,52 +148984,6 @@ self: { } ) { }; - "ghc-syb" = callPackage ( - { - mkDerivation, - base, - ghc, - }: - mkDerivation { - pname = "ghc-syb"; - version = "0.2.0.0"; - sha256 = "0rwx7l89r5yfi1187c0zgx1ph2rsagyvrizb1c0vnbyrwhpbslh0"; - libraryHaskellDepends = [ - base - ghc - ]; - description = "Data and Typeable instances for the GHC API"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "ghc-syb-utils" = callPackage ( - { - mkDerivation, - base, - bytestring, - ghc, - syb, - }: - mkDerivation { - pname = "ghc-syb-utils"; - version = "0.3.0.0"; - sha256 = "0mfnlp0z64999cc3jgzi3x5s428gs5jsqmmbr2n5v7shh0csnff4"; - libraryHaskellDepends = [ - base - bytestring - ghc - syb - ]; - description = "Scrap Your Boilerplate utilities for the GHC API"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "ghc-symbol" = callPackage ( { mkDerivation, @@ -260655,52 +149464,6 @@ self: { } ) { }; - "ghc-time-alloc-prof" = callPackage ( - { - mkDerivation, - attoparsec, - base, - containers, - directory, - filepath, - process, - tasty, - tasty-hunit, - temporary, - text, - time, - }: - mkDerivation { - pname = "ghc-time-alloc-prof"; - version = "0.1.0"; - sha256 = "1m9hzsxw0023gdax140nglxihlisyqh7n3mcxs6grnx7yyl7ga31"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - attoparsec - base - containers - text - time - ]; - testHaskellDepends = [ - attoparsec - base - directory - filepath - process - tasty - tasty-hunit - temporary - text - ]; - description = "Library for parsing GHC time and allocation profiling reports"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "ghc-timers" = callPackage ( { mkDerivation, base }: mkDerivation { @@ -260992,39 +149755,6 @@ self: { } ) { }; - "ghc-usage" = callPackage ( - { - mkDerivation, - base, - containers, - ghc, - ghc-paths, - unix, - }: - mkDerivation { - pname = "ghc-usage"; - version = "0.1.0.1"; - sha256 = "1x5c147r5qp7i4l46drqaqxlvyi38n8didzv577a8pcmy9r71pfx"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - containers - ghc - ]; - executableHaskellDepends = [ - base - ghc-paths - unix - ]; - description = "Print minimal export lists"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "ghc-usage"; - broken = true; - } - ) { }; - "ghc-vis" = callPackage ( { mkDerivation, @@ -261219,75 +149949,6 @@ self: { } ) { }; - "ghci-diagrams" = callPackage ( - { - mkDerivation, - base, - cairo, - colour, - diagrams, - gtk, - }: - mkDerivation { - pname = "ghci-diagrams"; - version = "0.1.1"; - sha256 = "1jlym5k2d43avkgw7ff3pdaad5j2q5yq803cy74bgy0z69x77v1w"; - libraryHaskellDepends = [ - base - cairo - colour - diagrams - gtk - ]; - description = "Display simple diagrams from ghci"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "ghci-haskeline" = callPackage ( - { - mkDerivation, - array, - base, - bytestring, - directory, - filepath, - ghc, - ghc-paths, - haskeline, - mtl, - process, - unix, - }: - mkDerivation { - pname = "ghci-haskeline"; - version = "0.2"; - sha256 = "01j2ryxxmd5zzdv1ayvzibi3njl3nbn0ypxmafvglrvn2zwnmsqy"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - array - base - bytestring - directory - filepath - ghc - ghc-paths - haskeline - mtl - process - unix - ]; - description = "An implementation of ghci using the Haskeline line-input library"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "ghci-haskeline"; - broken = true; - } - ) { }; - "ghci-hexcalc" = callPackage ( { mkDerivation, @@ -261315,108 +149976,6 @@ self: { } ) { }; - "ghci-history-parser" = callPackage ( - { - mkDerivation, - base, - doctest, - hspec, - parsec, - }: - mkDerivation { - pname = "ghci-history-parser"; - version = "0.1.0.2"; - sha256 = "0s7hn51p3f45djy7lbysv68w53hq3lq06cfpxm7p99slba3kjv8f"; - libraryHaskellDepends = [ - base - parsec - ]; - testHaskellDepends = [ - base - doctest - hspec - parsec - ]; - description = "parse output of ghci \":history\" command"; - license = lib.licenses.publicDomain; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "ghci-lib" = callPackage ( - { - mkDerivation, - base, - ghc, - MissingH, - }: - mkDerivation { - pname = "ghci-lib"; - version = "0.1.0.0"; - sha256 = "06lg1czsr6k5h18aks33p2kbahiidhv7xsrv7n1fcvqsgglzgk3z"; - libraryHaskellDepends = [ - base - ghc - MissingH - ]; - description = "A library for interactively evaluating Haskell code"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "ghci-ng" = callPackage ( - { - mkDerivation, - array, - base, - bytestring, - containers, - directory, - filepath, - ghc, - ghc-paths, - haskeline, - process, - syb, - time, - transformers, - unix, - }: - mkDerivation { - pname = "ghci-ng"; - version = "10.0.0"; - sha256 = "1p9rpp4yfnbkm5w4jravnwswa0pcpd3vna65953c37mp52jhk2d7"; - revision = "4"; - editedCabalFile = "1hrrcyxbd00fjv03aifp6i1p3q4m6jh580g1jl28189a9wyfb37f"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - array - base - bytestring - containers - directory - filepath - ghc - ghc-paths - haskeline - process - syb - time - transformers - unix - ]; - description = "Next generation GHCi"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "ghci-ng"; - broken = true; - } - ) { }; - "ghci-pretty" = callPackage ( { mkDerivation, @@ -261988,31 +150547,6 @@ self: { } ) { }; - "ghcjs-ajax" = callPackage ( - { - mkDerivation, - aeson, - base, - http-types, - text, - }: - mkDerivation { - pname = "ghcjs-ajax"; - version = "0.2.0.0"; - sha256 = "0yf2lpd7n891i61w1g0zbmi2zv93a2jzifxdsrqj39wxhl6afpc6"; - libraryHaskellDepends = [ - aeson - base - http-types - text - ]; - description = "Crossbrowser AJAX Bindings for GHCJS"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "ghcjs-base" = callPackage ( { mkDerivation }: mkDerivation { @@ -262026,47 +150560,6 @@ self: { } ) { }; - "ghcjs-base-stub" = callPackage ( - { - mkDerivation, - aeson, - attoparsec, - base, - containers, - deepseq, - ghc-prim, - primitive, - scientific, - text, - transformers, - unordered-containers, - vector, - }: - mkDerivation { - pname = "ghcjs-base-stub"; - version = "0.3.0.2"; - sha256 = "1v5kw7aqrjpi33annd12lp14q97i2yxjlr65cjjznqldyryjdbkm"; - libraryHaskellDepends = [ - aeson - attoparsec - base - containers - deepseq - ghc-prim - primitive - scientific - text - transformers - unordered-containers - vector - ]; - description = "Allow GHCJS projects to compile under GHC and develop using intero"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "ghcjs-codemirror" = callPackage ( { mkDerivation, base }: mkDerivation { @@ -262185,99 +150678,6 @@ self: { } ) { }; - "ghcjs-dom-webkit" = callPackage ( - { - mkDerivation, - base, - glib, - gtk3, - text, - transformers, - webkitgtk3, - }: - mkDerivation { - pname = "ghcjs-dom-webkit"; - version = "0.3.1.0"; - sha256 = "1w4id2iwjq6ijvwc3igflycm6gwzd06ih583nch5wh0ir23b1bjx"; - libraryHaskellDepends = [ - base - glib - gtk3 - text - transformers - webkitgtk3 - ]; - description = "DOM library that supports both GHCJS and WebKitGTK"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "ghcjs-fetch" = callPackage ( - { - mkDerivation, - aeson, - base, - bytestring, - case-insensitive, - ghcjs-base-stub, - http-types, - }: - mkDerivation { - pname = "ghcjs-fetch"; - version = "0.1.0.0"; - sha256 = "0ya6n8716likfgmm69z8q6dj4gf1w7063ni24di8xbv5ylxa0d39"; - revision = "1"; - editedCabalFile = "1fh6jdi5n448g3s61l178q7kc15nch7lzrdqya1w2sggrakww42k"; - libraryHaskellDepends = [ - aeson - base - bytestring - case-insensitive - ghcjs-base-stub - http-types - ]; - description = "GHCJS bindings for the JavaScript Fetch API"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "ghcjs-hplay" = callPackage ( - { - mkDerivation, - base, - bytestring, - containers, - directory, - ghcjs-perch, - mtl, - transformers, - transient, - transient-universe, - }: - mkDerivation { - pname = "ghcjs-hplay"; - version = "0.4.2"; - sha256 = "0bfw1fyldkkcxfhhkk09dcdpgh0pr2d39cw2khycm3qnr0vlzaxb"; - libraryHaskellDepends = [ - base - bytestring - containers - directory - ghcjs-perch - mtl - transformers - transient - transient-universe - ]; - description = "Client-side web EDSL for transient nodes running in the web browser"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "ghcjs-perch" = callPackage ( { mkDerivation, @@ -262297,29 +150697,6 @@ self: { } ) { }; - "ghcjs-promise" = callPackage ( - { - mkDerivation, - base, - ghcjs-base, - protolude, - }: - mkDerivation { - pname = "ghcjs-promise"; - version = "0.1.0.3"; - sha256 = "06zq3bqcrci7zgkgphkhv5awzw75ivg6hn9avx9c4yp2c1ra3593"; - libraryHaskellDepends = [ - base - ghcjs-base - protolude - ]; - description = "Bidirectional bidings to javascript's promise"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "ghcjs-vdom" = callPackage ( @@ -262361,136 +150738,6 @@ self: { ghcjs-prim = null; }; - "ghcjs-websockets" = callPackage ( - { - mkDerivation, - base, - base64-bytestring, - binary, - bytestring, - ghcjs-base, - text, - }: - mkDerivation { - pname = "ghcjs-websockets"; - version = "0.3.0.5"; - sha256 = "1km7hdpa036hqxzddwxw23zaq1sjvbmjmqdp4fzdz62azp6g4ygq"; - revision = "1"; - editedCabalFile = "1zxj06csvaja0mm9hszbn8p2qc76x0n21b44ciycfsy9jc3cq08r"; - libraryHaskellDepends = [ - base - base64-bytestring - binary - bytestring - ghcjs-base - text - ]; - description = "Deprecated: use ghcjs-base's native websockets"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "ghcjs-xhr" = callPackage ( - { - mkDerivation, - base, - ghcjs-base, - text, - }: - mkDerivation { - pname = "ghcjs-xhr"; - version = "0.1.0.0"; - sha256 = "07nra5d0hc70v23wqaivwj96lakiz34vv96m9khi5y9f5lsads0l"; - libraryHaskellDepends = [ - base - ghcjs-base - text - ]; - description = "XmlHttpRequest (\"AJAX\") bindings for GHCJS"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "ghclive" = callPackage ( - { - mkDerivation, - aeson, - base, - blaze-html, - blaze-markup, - bytestring, - containers, - diagrams-lib, - diagrams-svg, - directory, - file-embed, - ghc-prim, - hint, - mtl, - text, - time, - unix, - unordered-containers, - vector, - wai, - wai-websockets, - warp, - websockets, - yesod, - yesod-static, - }: - mkDerivation { - pname = "ghclive"; - version = "0.1.0.2"; - sha256 = "0rnmv09sl5pj9y8hr7s8hwh23zfm4j8nsn524hpj73diwmzf5fh8"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson - base - blaze-html - blaze-markup - containers - diagrams-lib - diagrams-svg - ghc-prim - text - ]; - executableHaskellDepends = [ - aeson - base - blaze-html - blaze-markup - bytestring - containers - directory - file-embed - hint - mtl - text - time - unix - unordered-containers - vector - wai - wai-websockets - warp - websockets - yesod - yesod-static - ]; - description = "Interactive Haskell interpreter in a browser"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "ghclive"; - broken = true; - } - ) { }; - "ghcprofview" = callPackage ( { mkDerivation, @@ -262823,65 +151070,6 @@ self: { } ) { }; - "ght" = callPackage ( - { - mkDerivation, - base, - binary, - bytestring, - data-default, - directory, - filepath, - iteratee, - iteratee-compress, - mmap, - mtl, - old-locale, - SHA, - storable-endian, - time, - ui-command, - unix, - zlib, - }: - mkDerivation { - pname = "ght"; - version = "0.4.0.1"; - sha256 = "03lrn3s79gxdn5fwh6cbp46k303662fnisjs7qp1yf8c66vxi8wc"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - binary - bytestring - data-default - iteratee - iteratee-compress - mmap - old-locale - SHA - storable-endian - time - ]; - executableHaskellDepends = [ - base - bytestring - data-default - directory - filepath - mtl - SHA - ui-command - unix - zlib - ]; - description = "Trivial routines for inspecting git repositories"; - license = "GPL"; - hydraPlatforms = lib.platforms.none; - mainProgram = "ght"; - } - ) { }; - "gi-adwaita" = callPackage ( { mkDerivation, @@ -263076,30 +151264,6 @@ self: { } ) { inherit (pkgs) cairo; }; - "gi-cairo-again" = callPackage ( - { - mkDerivation, - base, - cairo-core, - haskell-gi-base, - template-haskell, - }: - mkDerivation { - pname = "gi-cairo-again"; - version = "1.16.0"; - sha256 = "1xxrcx9dsscymz2v53splzrr39gajw2bcr3ksblak46bamb67bmg"; - libraryHaskellDepends = [ - base - cairo-core - haskell-gi-base - template-haskell - ]; - description = "Bridge between packages gi-* and cairo-core"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "gi-cairo-connector" = callPackage ( { mkDerivation, @@ -266770,60 +154934,6 @@ self: { } ) { inherit (pkgs.xorg) libX11; }; - "giak" = callPackage ( - { - mkDerivation, - async, - base, - bytestring, - Cabal, - containers, - directory, - extra, - filemanip, - filepath, - mtl, - process, - semigroups, - stm, - stm-chans, - text, - unix, - wybor, - }: - mkDerivation { - pname = "giak"; - version = "0.1.0.1"; - sha256 = "0wv0ighxpvxkk8jw9pd888l1dfjvrw1mqlj3i0bwq8ygj7nbpjqk"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - async - base - bytestring - Cabal - containers - directory - extra - filemanip - filepath - mtl - process - semigroups - stm - stm-chans - text - unix - wybor - ]; - description = "Fuzzy finder for cabal executables"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - mainProgram = "giak"; - broken = true; - } - ) { }; - "gibberish" = callPackage ( { mkDerivation, @@ -267202,121 +155312,6 @@ self: { } ) { }; - "gingersnap" = callPackage ( - { - mkDerivation, - aeson, - base, - bytestring, - containers, - deepseq, - http-types, - microspec, - postgresql-simple, - resource-pool, - snap-core, - text, - transformers, - unordered-containers, - }: - mkDerivation { - pname = "gingersnap"; - version = "0.3.1.0"; - sha256 = "10lcs2p14rk1l280h3xkywbagy82cp2yy4zgs8l531hyqfzrsl01"; - libraryHaskellDepends = [ - aeson - base - bytestring - deepseq - http-types - postgresql-simple - resource-pool - snap-core - text - transformers - unordered-containers - ]; - testHaskellDepends = [ - base - bytestring - containers - microspec - postgresql-simple - snap-core - transformers - ]; - description = "Consistent and safe JSON APIs with snap-core and (by default) postgresql-simple"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "ginsu" = callPackage ( - { - mkDerivation, - array, - async, - base, - binary, - bytestring, - containers, - directory, - hashable, - hashtables, - mtl, - network, - old-locale, - old-time, - openssl, - parsec, - pretty, - process, - random, - regex-posix, - syb, - unix, - utf8-string, - }: - mkDerivation { - pname = "ginsu"; - version = "0.8.2.2"; - sha256 = "061mwhxgxqqvlqznldjgqvs2z739q452shd6h72lahj5nm3v5m41"; - isLibrary = false; - isExecutable = true; - enableSeparateDataOutput = true; - executableHaskellDepends = [ - array - async - base - binary - bytestring - containers - directory - hashable - hashtables - mtl - network - old-locale - old-time - parsec - pretty - process - random - regex-posix - syb - unix - utf8-string - ]; - executableSystemDepends = [ openssl ]; - description = "Ginsu Gale Client"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - mainProgram = "ginsu"; - broken = true; - } - ) { inherit (pkgs) openssl; }; - "gio" = callPackage ( { mkDerivation, @@ -267354,164 +155349,6 @@ self: { } ) { system-glib = pkgs.glib; }; - "gipeda" = callPackage ( - { - mkDerivation, - aeson, - base, - bytestring, - cassava, - concurrent-output, - containers, - directory, - extra, - file-embed, - filepath, - gitlib, - gitlib-libgit2, - scientific, - shake, - split, - tagged, - text, - transformers, - unordered-containers, - vector, - yaml, - }: - mkDerivation { - pname = "gipeda"; - version = "0.3.3.2"; - sha256 = "04rdrq9c75q6pw6q3d41yiqx3agx7db1qx2dqdk7mlwjp3iy1h1r"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - aeson - base - bytestring - cassava - concurrent-output - containers - directory - extra - file-embed - filepath - gitlib - gitlib-libgit2 - scientific - shake - split - tagged - text - transformers - unordered-containers - vector - yaml - ]; - description = "Git Performance Dashboard"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - mainProgram = "gipeda"; - broken = true; - } - ) { }; - - "giphy-api" = callPackage ( - { - mkDerivation, - aeson, - base, - basic-prelude, - bytestring, - containers, - directory, - hspec, - http-api-data, - http-client, - http-client-tls, - lens, - microlens, - microlens-th, - mtl, - network-uri, - servant, - servant-client, - text, - transformers, - }: - mkDerivation { - pname = "giphy-api"; - version = "0.7.0.0"; - sha256 = "140d3k9c1jz6byvars1d1h66gwy1045nxnj0xqxn5kdq60gfp5a1"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson - base - containers - http-api-data - http-client - http-client-tls - microlens - microlens-th - mtl - network-uri - servant - servant-client - text - transformers - ]; - testHaskellDepends = [ - aeson - base - basic-prelude - bytestring - containers - directory - hspec - lens - network-uri - text - ]; - description = "Giphy HTTP API wrapper and CLI search tool"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "gist" = callPackage ( - { - mkDerivation, - aeson, - base, - bytestring, - conduit, - http-conduit, - text, - }: - mkDerivation { - pname = "gist"; - version = "0.1"; - sha256 = "1jgdhga0qjbc6kx1nr5yngcx560rlxiil3cnsmzh8mwazbs3yyl1"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - aeson - base - bytestring - conduit - http-conduit - text - ]; - description = "A reliable command-line client for gist.github.com"; - license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - mainProgram = "gist"; - broken = true; - } - ) { }; - "git" = callPackage ( { mkDerivation, @@ -267574,48 +155411,6 @@ self: { } ) { }; - "git-all" = callPackage ( - { - mkDerivation, - base, - cmdargs, - hslogger, - parallel-io, - regex-posix, - shelly, - system-fileio, - system-filepath, - text, - transformers, - unix, - }: - mkDerivation { - pname = "git-all"; - version = "1.6.0"; - sha256 = "10fq88fld1lb5wrikcsg9gxcfbldr0fpix81sba8qy11g7igd7fl"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - cmdargs - hslogger - parallel-io - regex-posix - shelly - system-fileio - system-filepath - text - transformers - unix - ]; - description = "Determine which Git repositories need actions to be taken"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "git-all"; - broken = true; - } - ) { }; - "git-annex" = callPackage ( { mkDerivation, @@ -267922,168 +155717,6 @@ self: { } ) { }; - "git-checklist" = callPackage ( - { - mkDerivation, - base, - directory, - filepath, - optparse-applicative, - parsec, - pretty, - process, - }: - mkDerivation { - pname = "git-checklist"; - version = "1.0.0.0"; - sha256 = "1q4fbvpdjca5k530dcm6yspsgzy60dx7nimar2fkm8s086qsf662"; - isLibrary = false; - isExecutable = true; - enableSeparateDataOutput = true; - executableHaskellDepends = [ - base - directory - filepath - optparse-applicative - parsec - pretty - process - ]; - description = "Maintain per-branch checklists in Git"; - license = "GPL"; - hydraPlatforms = lib.platforms.none; - mainProgram = "git-checklist"; - broken = true; - } - ) { }; - - "git-config" = callPackage ( - { - mkDerivation, - base, - megaparsec, - smallcheck, - smallcheck-series, - tasty, - tasty-discover, - tasty-hunit, - tasty-smallcheck, - tasty-travis, - text, - unordered-containers, - }: - mkDerivation { - pname = "git-config"; - version = "0.1.2"; - sha256 = "1kp5yqn7pz5haq41m2za2f3bw0ygf1zlnn3n0b76zh0jbrndgknh"; - libraryHaskellDepends = [ - base - megaparsec - text - unordered-containers - ]; - testHaskellDepends = [ - base - megaparsec - smallcheck - smallcheck-series - tasty - tasty-discover - tasty-hunit - tasty-smallcheck - tasty-travis - text - unordered-containers - ]; - testToolDepends = [ tasty-discover ]; - description = "A simple parser for Git configuration files"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "git-cuk" = callPackage ( - { - mkDerivation, - ansi-terminal, - base, - base-noprelude, - github, - gitrev, - optparse-applicative, - process, - relude, - text, - }: - mkDerivation { - pname = "git-cuk"; - version = "0.0.1"; - sha256 = "176027wag30imq3471c7qi8fdyb5myixlsphyq28394y47yz638i"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - ansi-terminal - base-noprelude - github - gitrev - optparse-applicative - process - relude - text - ]; - executableHaskellDepends = [ - base - relude - ]; - description = "Haskell Git Helper Tool"; - license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; - mainProgram = "cuk"; - broken = true; - } - ) { }; - - "git-date" = callPackage ( - { - mkDerivation, - base, - bytestring, - old-locale, - QuickCheck, - test-framework, - test-framework-quickcheck2, - time, - unexceptionalio, - utf8-string, - }: - mkDerivation { - pname = "git-date"; - version = "0.3.0"; - sha256 = "1lhmzjfch84nilr89b0qaj4a7nrkkrabimg46rnqpmylbgws1h4m"; - libraryHaskellDepends = [ - base - bytestring - time - unexceptionalio - utf8-string - ]; - testHaskellDepends = [ - base - bytestring - old-locale - QuickCheck - test-framework - test-framework-quickcheck2 - time - utf8-string - ]; - description = "Bindings to the date parsing from Git"; - license = lib.licenses.gpl2Only; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "git-embed" = callPackage ( { mkDerivation, @@ -268109,59 +155742,6 @@ self: { } ) { }; - "git-fmt" = callPackage ( - { - mkDerivation, - base, - exceptions, - extra, - fast-logger, - filepath, - monad-logger, - monad-parallel, - mtl, - omnifmt, - optparse-applicative, - pipes, - pipes-concurrency, - process, - temporary, - text, - time, - }: - mkDerivation { - pname = "git-fmt"; - version = "0.4.1.0"; - sha256 = "0zg9g6w1axp90836g3fniq2a1p9m59a05h7ayi81csibz5whzhd9"; - revision = "1"; - editedCabalFile = "1abzdz0yyinniwbq9gbpc77mbisqgjj9h9jsmk1177dv2nbrglcn"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - exceptions - extra - fast-logger - filepath - monad-logger - monad-parallel - mtl - omnifmt - optparse-applicative - pipes - pipes-concurrency - process - temporary - text - time - ]; - description = "Custom git command for formatting code"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "git-fmt"; - } - ) { }; - "git-freq" = callPackage ( { mkDerivation, @@ -268205,81 +155785,6 @@ self: { } ) { }; - "git-gpush" = callPackage ( - { - mkDerivation, - base, - bytestring, - containers, - directory, - filepath, - gitlib, - gitlib-cmdline, - hslogger, - old-locale, - optparse-applicative, - shelly, - tagged, - text, - time, - transformers, - }: - mkDerivation { - pname = "git-gpush"; - version = "3.1.0.1"; - sha256 = "13m95j227mvl7facqjlwcz11kd88ibhr7fwf5ph81wppyic8136g"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - bytestring - containers - directory - filepath - gitlib - gitlib-cmdline - hslogger - old-locale - optparse-applicative - shelly - tagged - text - time - transformers - ]; - description = "More intelligent push-to-GitHub utility"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "git-gpush"; - } - ) { }; - - "git-jump" = callPackage ( - { - mkDerivation, - base, - base-compat, - process, - }: - mkDerivation { - pname = "git-jump"; - version = "0.1.0.3"; - sha256 = "1hp3b2y95r39nwbzrl3hfbmb8hbc05jm9n8q3qfx95i7vn251jjy"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - base-compat - process - ]; - description = "Move a git branch"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "git-jump"; - broken = true; - } - ) { }; - "git-lfs" = callPackage ( { mkDerivation, @@ -268415,38 +155920,6 @@ self: { } ) { }; - "git-object" = callPackage ( - { - mkDerivation, - attoparsec, - attoparsec-enumerator, - base, - bytestring, - directory, - enumerator, - filepath, - zlib-enum, - }: - mkDerivation { - pname = "git-object"; - version = "0.0.2"; - sha256 = "1hwsl5n6im6b13iy1whvgd3avax9xb81maaan2vf3r474r3321jm"; - libraryHaskellDepends = [ - attoparsec - attoparsec-enumerator - base - bytestring - directory - enumerator - filepath - zlib-enum - ]; - description = "Git object and its parser"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "git-phoenix" = callPackage ( { mkDerivation, @@ -268545,98 +156018,6 @@ self: { } ) { }; - "git-remote-ipfs" = callPackage ( - { - mkDerivation, - aeson, - async, - attoparsec, - base, - bytestring, - conduit, - conduit-extra, - cryptonite, - filepath, - formatting, - generics-sop, - git, - http-client, - ipfs-api, - ipld-cid, - lens, - lens-aeson, - mtl, - multibase, - multihash-cryptonite, - network-uri, - optparse-applicative, - primitive, - safe-exceptions, - servant, - servant-client, - stm, - text, - transformers, - typed-process, - unordered-containers, - vector, - }: - mkDerivation { - pname = "git-remote-ipfs"; - version = "0.1.0.0"; - sha256 = "1zh7wbyd01p17c7lxx4xvj0rhnzqkpqcjdj1a3kynak2zi8wf6k2"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson - async - attoparsec - base - bytestring - conduit - cryptonite - filepath - formatting - generics-sop - git - http-client - ipfs-api - ipld-cid - lens - lens-aeson - mtl - multibase - multihash-cryptonite - network-uri - optparse-applicative - primitive - safe-exceptions - servant - servant-client - stm - text - transformers - typed-process - unordered-containers - vector - ]; - executableHaskellDepends = [ - attoparsec - base - bytestring - conduit - conduit-extra - mtl - optparse-applicative - text - ]; - description = "Git remote helper to store git objects on IPFS"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "git-remote-ipfs"; - } - ) { }; - "git-repair" = callPackage ( { mkDerivation, @@ -268769,131 +156150,6 @@ self: { } ) { }; - "git-vogue" = callPackage ( - { - mkDerivation, - base, - bifunctors, - containers, - cpphs, - Diff, - directory, - filepath, - formatting, - git, - haskell-src-exts, - hlint, - hscolour, - hspec, - optparse-applicative, - process, - split, - strict, - stylish-haskell, - temporary, - text, - transformers, - unix, - }: - mkDerivation { - pname = "git-vogue"; - version = "0.3.0.2"; - sha256 = "0p3h4107pfcxap83xbqffb30zymi2ipzjqgcdg2qzpbnczw6j5ml"; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base - containers - directory - filepath - formatting - optparse-applicative - process - split - temporary - text - transformers - unix - ]; - executableHaskellDepends = [ - base - bifunctors - cpphs - Diff - directory - haskell-src-exts - hlint - hscolour - optparse-applicative - process - strict - stylish-haskell - text - ]; - testHaskellDepends = [ - base - containers - directory - filepath - hspec - process - temporary - ]; - testToolDepends = [ git ]; - description = "A framework for pre-commit checks"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "gitHUD" = callPackage ( - { - mkDerivation, - base, - mtl, - parsec, - process, - tasty, - tasty-hunit, - tasty-quickcheck, - tasty-smallcheck, - text, - unix, - }: - mkDerivation { - pname = "gitHUD"; - version = "1.3.7"; - sha256 = "1bs4lg8r03gkcq65q0wh94angaylkqwc2cbik0jldp6j2cdl6f6w"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - mtl - parsec - process - text - unix - ]; - executableHaskellDepends = [ base ]; - testHaskellDepends = [ - base - mtl - parsec - tasty - tasty-hunit - tasty-quickcheck - tasty-smallcheck - ]; - description = "More efficient replacement to the great git-radar"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "gitHUD"; - broken = true; - } - ) { }; - "gitcache" = callPackage ( { mkDerivation, @@ -268924,51 +156180,6 @@ self: { } ) { }; - "gitdo" = callPackage ( - { - mkDerivation, - aeson, - aeson-lens, - base, - bytestring, - foldl, - lens, - mtl, - optparse-applicative, - sqlite-simple, - system-filepath, - text, - turtle, - wreq, - }: - mkDerivation { - pname = "gitdo"; - version = "0.1.0.0"; - sha256 = "0krna2rqdscnrd86d7ipq4gad7dzk1w5lnk8757a13qnd5jqrxdl"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - aeson - aeson-lens - base - bytestring - foldl - lens - mtl - optparse-applicative - sqlite-simple - system-filepath - text - turtle - wreq - ]; - description = "Create Github issues out of TODO comments in code"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - mainProgram = "gitdo"; - } - ) { }; - "gitea-api" = callPackage ( { mkDerivation, @@ -269305,192 +156516,6 @@ self: { } ) { }; - "github-backup" = callPackage ( - { - mkDerivation, - base, - bytestring, - Cabal, - containers, - directory, - exceptions, - filepath, - git, - github, - hslogger, - IfElse, - mtl, - network, - network-uri, - optparse-applicative, - pretty-show, - process, - split, - text, - transformers, - unix, - unix-compat, - utf8-string, - vector, - }: - mkDerivation { - pname = "github-backup"; - version = "1.20200721"; - sha256 = "0d0sc2l6crkr42nwkhbcixlxrywx6gsn6vzgdpwh0r6vxlc83hcw"; - isLibrary = false; - isExecutable = true; - setupHaskellDepends = [ - base - bytestring - Cabal - directory - exceptions - filepath - hslogger - IfElse - mtl - process - split - unix - unix-compat - ]; - executableHaskellDepends = [ - base - bytestring - containers - directory - exceptions - filepath - github - hslogger - IfElse - mtl - network - network-uri - optparse-applicative - pretty-show - process - split - text - transformers - unix - unix-compat - utf8-string - vector - ]; - executableToolDepends = [ git ]; - description = "backs up everything github knows about a repository, to the repository"; - license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { inherit (pkgs) git; }; - - "github-data" = callPackage ( - { - mkDerivation, - aeson, - aeson-compat, - base, - base-compat, - base16-bytestring, - binary, - binary-orphans, - bytestring, - containers, - deepseq, - deepseq-generics, - exceptions, - hashable, - http-client, - http-types, - iso8601-time, - network-uri, - text, - time, - tls, - transformers, - transformers-compat, - unordered-containers, - vector, - vector-instances, - }: - mkDerivation { - pname = "github-data"; - version = "0.18"; - sha256 = "1rqnjw8cz4xby1gbc9w8wpk1z0vg8wsm8jq7qz0ncjrm8manii5p"; - revision = "1"; - editedCabalFile = "1qgd6xblmsjgzys6zix9xs9sd6p3q5vw9l88gchv90wsh0kbssbg"; - libraryHaskellDepends = [ - aeson - aeson-compat - base - base-compat - base16-bytestring - binary - binary-orphans - bytestring - containers - deepseq - deepseq-generics - exceptions - hashable - http-client - http-types - iso8601-time - network-uri - text - time - tls - transformers - transformers-compat - unordered-containers - vector - vector-instances - ]; - description = "Access to the GitHub API, v3"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "github-post-receive" = callPackage ( - { - mkDerivation, - aeson, - base, - bytestring, - containers, - email-validate, - http-types, - text, - wai, - wai-logger, - warp, - }: - mkDerivation { - pname = "github-post-receive"; - version = "1.2.0.1"; - sha256 = "14vd9rnr3x3wasnc6w6d3kcs5dnka902n9cbxblqdryc8l7p360q"; - libraryHaskellDepends = [ - aeson - base - bytestring - containers - email-validate - http-types - text - wai - wai-logger - warp - ]; - description = "GitHub webhooks library"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "github-release" = callPackage ( { mkDerivation, @@ -269753,100 +156778,6 @@ self: { } ) { }; - "github-utils" = callPackage ( - { - mkDerivation, - base, - basic-prelude, - github, - text, - }: - mkDerivation { - pname = "github-utils"; - version = "0.1.0"; - sha256 = "1d7g1rzaqg19bc41vqvcdxdi37z9h7ajy3khsqa4pwbfavj412a5"; - libraryHaskellDepends = [ - base - basic-prelude - github - text - ]; - description = "Useful functions that use the GitHub API"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "github-webhook-handler" = callPackage ( - { - mkDerivation, - aeson, - base, - bytestring, - cryptohash, - github-types, - text, - transformers, - uuid, - vector, - }: - mkDerivation { - pname = "github-webhook-handler"; - version = "0.0.8"; - sha256 = "1sjgnc1zl3xsv25nc71bw0dmj8z7iacf6b8cf8vc50v6c1a8i40x"; - revision = "1"; - editedCabalFile = "1nhwindcplcyyffvzw0cig1p0m8165laq3hv94s596rsi3b5pgqr"; - libraryHaskellDepends = [ - aeson - base - bytestring - cryptohash - github-types - text - transformers - uuid - vector - ]; - description = "GitHub WebHook Handler"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "github-webhook-handler-snap" = callPackage ( - { - mkDerivation, - base, - bytestring, - case-insensitive, - github-types, - github-webhook-handler, - snap-core, - uuid, - }: - mkDerivation { - pname = "github-webhook-handler-snap"; - version = "0.0.7"; - sha256 = "149c40rp2r7ib6x256rpnfg56hhp1kxznmglppciq33s0bs2dxfl"; - revision = "1"; - editedCabalFile = "1l0c2xn41pylap7vw33r67pmmcafr1fdm04l9b8h206c270bsinm"; - libraryHaskellDepends = [ - base - bytestring - case-insensitive - github-types - github-webhook-handler - snap-core - uuid - ]; - description = "GitHub WebHook Handler implementation for Snap"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "github-webhooks" = callPackage ( { mkDerivation, @@ -269993,42 +156924,6 @@ self: { } ) { }; - "gitignore" = callPackage ( - { - mkDerivation, - aeson, - base, - base64-bytestring, - bytestring, - http-conduit, - network, - safe, - text, - }: - mkDerivation { - pname = "gitignore"; - version = "1.1"; - sha256 = "110h82wq4mhg3m7zrzi587kgvkkzsqy2j14bnj3wagwd91l0dk2r"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - aeson - base - base64-bytestring - bytestring - http-conduit - network - safe - text - ]; - description = "Apply GitHub .gitignore templates to already existing repositories."; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "gitignore"; - broken = true; - } - ) { }; - "gitit" = callPackage ( { mkDerivation, @@ -270172,43 +157067,6 @@ self: { } ) { }; - "gitlab-api" = callPackage ( - { - mkDerivation, - aeson, - base, - hspec, - http-conduit, - http-types, - microlens-platform, - rio, - yaml, - }: - mkDerivation { - pname = "gitlab-api"; - version = "0.0.0.2"; - sha256 = "1lfwsqhncj3sp7h6ixmm0yv9vnby9qfi2y4q980d9d473mzvy7rv"; - libraryHaskellDepends = [ - aeson - base - http-conduit - http-types - microlens-platform - rio - yaml - ]; - testHaskellDepends = [ - base - hspec - rio - ]; - description = "Gitlab Web API"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "gitlab-haskell" = callPackage ( { mkDerivation, @@ -270328,114 +157186,6 @@ self: { } ) { }; - "gitlib-cmdline" = callPackage ( - { - mkDerivation, - base, - bytestring, - conduit, - conduit-combinators, - containers, - directory, - exceptions, - gitlib, - gitlib-test, - hspec, - hspec-expectations, - monad-control, - mtl, - old-locale, - parsec, - process-extras, - shelly, - system-filepath, - tagged, - text, - time, - time-locale-compat, - transformers, - transformers-base, - unordered-containers, - }: - mkDerivation { - pname = "gitlib-cmdline"; - version = "3.1.0.2"; - sha256 = "1dridps65mw06r9slza80vl21f5n1kq1if7gnwcrbagicvy45p0k"; - libraryHaskellDepends = [ - base - bytestring - conduit - conduit-combinators - containers - directory - exceptions - gitlib - monad-control - mtl - old-locale - parsec - process-extras - shelly - system-filepath - tagged - text - time - time-locale-compat - transformers - transformers-base - unordered-containers - ]; - testHaskellDepends = [ - base - gitlib - gitlib-test - hspec - hspec-expectations - system-filepath - tagged - text - transformers - ]; - description = "Gitlib repository backend that uses the git command-line tool"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "gitlib-cross" = callPackage ( - { - mkDerivation, - base, - gitlib, - gitlib-cmdline, - gitlib-libgit2, - gitlib-test, - hspec, - hspec-expectations, - HUnit, - }: - mkDerivation { - pname = "gitlib-cross"; - version = "3.1.0"; - sha256 = "0iack7kafbfa45s9k7ypbafapahrifh2grjdzyrhvzjg767l3i1h"; - libraryHaskellDepends = [ base ]; - testHaskellDepends = [ - base - gitlib - gitlib-cmdline - gitlib-libgit2 - gitlib-test - hspec - hspec-expectations - HUnit - ]; - description = "Run tests between repositories"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "gitlib-libgit2" = callPackage ( { mkDerivation, @@ -270517,109 +157267,6 @@ self: { } ) { }; - "gitlib-s3" = callPackage ( - { - mkDerivation, - aeson, - attempt, - aws, - base, - bifunctors, - binary, - bytestring, - conduit, - conduit-combinators, - data-default, - directory, - exceptions, - filepath, - ghc-prim, - gitlib, - gitlib-libgit2, - gitlib-test, - hlibgit2, - hspec, - hspec-expectations, - http-conduit, - HUnit, - lens, - lifted-base, - monad-control, - monad-logger, - resourcet, - retry, - split, - stm, - template-haskell, - temporary, - text, - time, - transformers, - unordered-containers, - }: - mkDerivation { - pname = "gitlib-s3"; - version = "3.1.0.1"; - sha256 = "1vcx26dny7pj4lqn1rli3vqad2xh7vkqj86c6i7hyskilgbs6n8m"; - libraryHaskellDepends = [ - aeson - attempt - aws - base - bifunctors - binary - bytestring - conduit - conduit-combinators - data-default - directory - exceptions - filepath - ghc-prim - gitlib - gitlib-libgit2 - hlibgit2 - http-conduit - lens - lifted-base - monad-control - monad-logger - resourcet - retry - split - stm - template-haskell - text - time - transformers - unordered-containers - ]; - testHaskellDepends = [ - aws - base - data-default - directory - exceptions - filepath - gitlib - gitlib-libgit2 - gitlib-test - hlibgit2 - hspec - hspec-expectations - HUnit - monad-logger - resourcet - temporary - text - transformers - ]; - description = "Gitlib repository backend for storing Git objects in Amazon S3"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "gitlib-sample" = callPackage ( { mkDerivation, @@ -270688,51 +157335,6 @@ self: { } ) { }; - "gitlib-utils" = callPackage ( - { - mkDerivation, - base, - bytestring, - conduit, - data-default, - failure, - gitlib, - hex, - lifted-base, - system-fileio, - system-filepath, - tagged, - text, - transformers, - unordered-containers, - }: - mkDerivation { - pname = "gitlib-utils"; - version = "1.2.0"; - sha256 = "081vagmlf6lkh7qqr9y42nl8c1ds011s05a567dsw6ckf166wshn"; - libraryHaskellDepends = [ - base - bytestring - conduit - data-default - failure - gitlib - hex - lifted-base - system-fileio - system-filepath - tagged - text - transformers - unordered-containers - ]; - description = "Generic utility functions for working with Git repositories"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "gitrev" = callPackage ( { mkDerivation, @@ -270878,103 +157480,6 @@ self: { } ) { }; - "gitter" = callPackage ( - { - mkDerivation, - aeson, - base, - bytestring, - exceptions, - lens, - lens-aeson, - mtl, - text, - wreq, - }: - mkDerivation { - pname = "gitter"; - version = "0.5"; - sha256 = "13whv4bv7b69vzq1c6xdcim9mlsr4qsnsjiwv36g7fykcvbr72rl"; - libraryHaskellDepends = [ - aeson - base - bytestring - exceptions - lens - lens-aeson - mtl - text - wreq - ]; - description = "Gitter.im API client"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "givegif" = callPackage ( - { - mkDerivation, - base, - base64-bytestring, - bytestring, - containers, - errors, - giphy-api, - hspec, - lens, - network-uri, - optparse-applicative, - text, - transformers, - wreq, - }: - mkDerivation { - pname = "givegif"; - version = "1.0.0.0"; - sha256 = "06yhk4354ss58kr7s91cdwxc13682408kdb2608jc4s5yimh3cvz"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - base64-bytestring - bytestring - containers - giphy-api - network-uri - optparse-applicative - text - ]; - executableHaskellDepends = [ - base - bytestring - errors - giphy-api - lens - network-uri - optparse-applicative - text - transformers - wreq - ]; - testHaskellDepends = [ - base - base64-bytestring - bytestring - containers - hspec - lens - network-uri - text - ]; - description = "CLI Giphy search tool with previews in iTerm 2"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "givegif"; - } - ) { }; - "gjk" = callPackage ( { mkDerivation, @@ -271159,153 +157664,6 @@ self: { } ) { }; - "glade" = callPackage ( - { - mkDerivation, - base, - Cabal, - glib, - gtk, - gtk2hs-buildtools, - libglade, - }: - mkDerivation { - pname = "glade"; - version = "0.13.1"; - sha256 = "0idyx4d2jw1209j4wk7ay5jrs2r6bn3qj4qgh70q6p08a8hcgfbb"; - enableSeparateDataOutput = true; - setupHaskellDepends = [ - base - Cabal - gtk2hs-buildtools - ]; - libraryHaskellDepends = [ - base - glib - gtk - ]; - libraryPkgconfigDepends = [ libglade ]; - description = "Binding to the glade library"; - license = lib.licenses.lgpl21Only; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { inherit (pkgs.gnome2) libglade; }; - - "gladexml-accessor" = callPackage ( - { - mkDerivation, - base, - glade, - HaXml, - template-haskell, - }: - mkDerivation { - pname = "gladexml-accessor"; - version = "0.0"; - sha256 = "06kzakvssmldjgx0s8qm0a3cd9glmwrdnh690sv708jcvg8x45y3"; - libraryHaskellDepends = [ - base - glade - HaXml - template-haskell - ]; - description = "Automagically declares getters for widget handles in specified interface file"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "glambda" = callPackage ( - { - mkDerivation, - ansi-wl-pprint, - base, - containers, - directory, - haskeline, - mtl, - parsec, - tasty, - tasty-hunit, - template-haskell, - transformers, - }: - mkDerivation { - pname = "glambda"; - version = "1.0.2"; - sha256 = "03fk3q017h4vbwlzf8pmlzlhgc3rzrc1f4fm0b19g4vw22qigflg"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - ansi-wl-pprint - base - containers - directory - haskeline - mtl - parsec - transformers - ]; - executableHaskellDepends = [ base ]; - testHaskellDepends = [ - ansi-wl-pprint - base - mtl - parsec - tasty - tasty-hunit - template-haskell - transformers - ]; - description = "A simply typed lambda calculus interpreter, written with GADTs"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "glam"; - broken = true; - } - ) { }; - - "glapp" = callPackage ( - { - mkDerivation, - base, - containers, - GLFW-b, - lens, - mtl, - OpenGL, - }: - mkDerivation { - pname = "glapp"; - version = "0.1.0.1"; - sha256 = "076v7h0p91dj8hx110vm0li2njsc8p5dgcf6zxk721mdx5xkymhz"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - containers - GLFW-b - lens - mtl - OpenGL - ]; - executableHaskellDepends = [ - base - containers - GLFW-b - lens - mtl - OpenGL - ]; - description = "An OpenGL micro framework"; - license = lib.licenses.gpl2Only; - hydraPlatforms = lib.platforms.none; - mainProgram = "example"; - broken = true; - } - ) { }; - "glasso" = callPackage ( { mkDerivation, @@ -271328,274 +157686,6 @@ self: { } ) { }; - "glaze" = callPackage ( - { - mkDerivation, - base, - lens, - }: - mkDerivation { - pname = "glaze"; - version = "0.3.0.1"; - sha256 = "18925rqf3ah1k7xcb15zk0gcbc4slvvhr5lsz32fh96gid089cdv"; - libraryHaskellDepends = [ - base - lens - ]; - description = "Framework for rendering things with metadata/headers and values"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "glazier" = callPackage ( - { - mkDerivation, - alternators, - base, - data-diverse, - data-diverse-lens, - dlist, - lens, - mtl, - stm, - tagged, - transformers, - unliftio, - unliftio-core, - }: - mkDerivation { - pname = "glazier"; - version = "1.0.0.0"; - sha256 = "193igffdh2sdb8sharv7ycxj0daxii2x2n0c53kbz6cbwi865ig9"; - libraryHaskellDepends = [ - alternators - base - data-diverse - data-diverse-lens - dlist - lens - mtl - transformers - unliftio - unliftio-core - ]; - testHaskellDepends = [ - alternators - base - data-diverse - data-diverse-lens - dlist - lens - mtl - stm - tagged - transformers - unliftio - unliftio-core - ]; - description = "Extensible effects using ContT, State and variants"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "glazier-pipes" = callPackage ( - { - mkDerivation, - base, - glazier, - mmorph, - pipes, - stm, - stm-extras, - transformers, - }: - mkDerivation { - pname = "glazier-pipes"; - version = "0.1.5.1"; - sha256 = "1b6iyjxzk0mnl1vh3772nddpi2haafc74i6n17da0hc69m5087cx"; - libraryHaskellDepends = [ - base - glazier - mmorph - pipes - stm - stm-extras - transformers - ]; - description = "A threaded rendering framework using glaizer and pipes"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "glazier-react" = callPackage ( - { - mkDerivation, - alternators, - base, - containers, - data-diverse, - data-diverse-lens, - deepseq, - dlist, - ghcjs-base-stub, - glazier, - javascript-extras, - lens, - lens-misc, - mtl, - newtype-generics, - stm, - tagged, - transformers, - unliftio, - unliftio-core, - }: - mkDerivation { - pname = "glazier-react"; - version = "1.0.0.0"; - sha256 = "07srw64bmjhyhc8vvp4qc21smi7h7dmxkcj0ks650clbvh6g5887"; - libraryHaskellDepends = [ - alternators - base - containers - data-diverse - data-diverse-lens - deepseq - dlist - ghcjs-base-stub - glazier - javascript-extras - lens - lens-misc - mtl - newtype-generics - stm - tagged - transformers - unliftio - unliftio-core - ]; - description = "ReactJS binding using Glazier.Command."; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "glazier-react-examples" = callPackage ( - { - mkDerivation, - base, - containers, - disposable, - dlist, - free, - ghcjs-base-stub, - glazier, - glazier-react, - glazier-react-widget, - javascript-extras, - lens, - mmorph, - mtl, - pipes, - pipes-concurrency, - pipes-misc, - stm, - text, - transformers, - unordered-containers, - }: - mkDerivation { - pname = "glazier-react-examples"; - version = "0.6.0.0"; - sha256 = "1a1abb24kfnfqvgrxs8hfpxgfyhiqwc13pgdpsq6rk0c1ys9vhzm"; - revision = "1"; - editedCabalFile = "141zbnixssldmfq12sh0i8i2mwr1kv9m5n2l63p50qlmzrqx4nqx"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - containers - disposable - dlist - free - ghcjs-base-stub - glazier - glazier-react - glazier-react-widget - javascript-extras - lens - mmorph - mtl - pipes - pipes-concurrency - pipes-misc - stm - text - transformers - unordered-containers - ]; - description = "Examples of using glazier-react"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "glazier-react-todo"; - } - ) { }; - - "glazier-react-widget" = callPackage ( - { - mkDerivation, - base, - containers, - data-diverse, - data-diverse-lens, - deepseq, - Diff, - dlist, - ghcjs-base-stub, - glazier, - glazier-react, - javascript-extras, - lens, - lens-misc, - monadlist, - mtl, - tagged, - transformers, - }: - mkDerivation { - pname = "glazier-react-widget"; - version = "1.0.0.0"; - sha256 = "1ac7ybkdi4zafdrhs7sv0db3x5lfalj3ny13rlix8r12bf24mxs0"; - libraryHaskellDepends = [ - base - containers - data-diverse - data-diverse-lens - deepseq - Diff - dlist - ghcjs-base-stub - glazier - glazier-react - javascript-extras - lens - lens-misc - monadlist - mtl - tagged - transformers - ]; - description = "Generic widget library using glazier-react"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "glean" = callPackage ( @@ -271975,60 +158065,6 @@ self: { } ) { }; - "gli" = callPackage ( - { - mkDerivation, - aeson, - attoparsec, - base, - bytestring, - containers, - friendly-time, - http-client, - http-client-tls, - http-conduit, - network-uri, - optparse-applicative, - process, - text, - time, - yaml, - }: - mkDerivation { - pname = "gli"; - version = "0.0.1.1"; - sha256 = "0fwlyr1wq04i28lyplrahbzm6w6lylbpjlafkp40yw4xxhr8lchg"; - revision = "1"; - editedCabalFile = "0gr73ng45xrs44sszayc7rmfl72vf1kp6nag0cp633f4d6bkk6r0"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson - attoparsec - base - bytestring - containers - friendly-time - http-client - http-client-tls - http-conduit - network-uri - optparse-applicative - process - text - time - yaml - ]; - executableHaskellDepends = [ base ]; - testHaskellDepends = [ base ]; - description = "Tiny cli to fetch PR info from gitlab"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "gli"; - broken = true; - } - ) { }; - "glib" = callPackage ( { mkDerivation, @@ -272129,38 +158165,6 @@ self: { } ) { }; - "glider-nlp" = callPackage ( - { - mkDerivation, - base, - Cabal, - containers, - hspec, - text, - }: - mkDerivation { - pname = "glider-nlp"; - version = "0.4"; - sha256 = "122m1nrly1fnskjbsgm06jq1v7jyw2p2rqmzpj8vmgyw8xpd1f44"; - libraryHaskellDepends = [ - base - containers - text - ]; - testHaskellDepends = [ - base - Cabal - containers - hspec - text - ]; - description = "Natural Language Processing library"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "glintcollider" = callPackage ( { mkDerivation, @@ -272452,81 +158456,6 @@ self: { } ) { }; - "global" = callPackage ( - { - mkDerivation, - base, - haskell-src-exts, - haskell-src-exts-qq, - loch-th, - SafeSemaphore, - stm, - syntax-trees-fork-bairyn, - tagged, - template-haskell, - }: - mkDerivation { - pname = "global"; - version = "0.2.1.0"; - sha256 = "00d9qsh0n9yxr411mdisk602qiizy9h4wgz4k04mfr5x5g6cp418"; - libraryHaskellDepends = [ - base - haskell-src-exts - haskell-src-exts-qq - loch-th - SafeSemaphore - stm - syntax-trees-fork-bairyn - tagged - template-haskell - ]; - description = "Library enabling unique top-level declarations"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "global-config" = callPackage ( - { - mkDerivation, - base, - bytestring, - data-default, - global-variables, - HUnit, - QuickCheck, - test-framework, - test-framework-hunit, - test-framework-quickcheck2, - transformers, - }: - mkDerivation { - pname = "global-config"; - version = "0.3.1"; - sha256 = "1rp855j0rzx528x01q5wi2hah80bwqf5rrw7p8p8qzl39fhlpzqa"; - libraryHaskellDepends = [ - base - data-default - global-variables - transformers - ]; - testHaskellDepends = [ - base - bytestring - data-default - HUnit - QuickCheck - test-framework - test-framework-hunit - test-framework-quickcheck2 - transformers - ]; - description = "Global mutable configuration"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "global-lock" = callPackage ( { mkDerivation, base }: mkDerivation { @@ -272539,29 +158468,6 @@ self: { } ) { }; - "global-variables" = callPackage ( - { - mkDerivation, - base, - containers, - stm, - }: - mkDerivation { - pname = "global-variables"; - version = "1.0.1.1"; - sha256 = "0fvhh6q6z114qyi5rhwzxhrlqfhx6af97187b49lyvx2k9zkzvzp"; - libraryHaskellDepends = [ - base - containers - stm - ]; - description = "Namespaced, global, and top-level mutable variables without unsafePerformIO"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "globus" = callPackage ( { mkDerivation, @@ -272603,58 +158509,6 @@ self: { } ) { }; - "glome-hs" = callPackage ( - { - mkDerivation, - array, - base, - GlomeTrace, - GlomeVec, - GLUT, - haskell98, - OpenGL, - parallel, - random, - time, - }: - mkDerivation { - pname = "glome-hs"; - version = "0.61"; - sha256 = "069j4xvh5039xkg300h1cwa0lyvkycixasxr8zh4iqyl1g5bcvs8"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - array - base - GlomeTrace - GlomeVec - GLUT - haskell98 - OpenGL - parallel - random - time - ]; - executableHaskellDepends = [ - array - base - GlomeTrace - GlomeVec - GLUT - haskell98 - OpenGL - parallel - random - time - ]; - doHaddock = false; - description = "ray tracer"; - license = "GPL"; - hydraPlatforms = lib.platforms.none; - mainProgram = "Glome"; - } - ) { }; - "gloss" = callPackage ( { mkDerivation, @@ -272688,32 +158542,6 @@ self: { } ) { }; - "gloss-accelerate" = callPackage ( - { - mkDerivation, - accelerate, - base, - gloss, - gloss-rendering, - linear-accelerate, - }: - mkDerivation { - pname = "gloss-accelerate"; - version = "2.1.0.0"; - sha256 = "1l09li68r04qij11p7rf9dwfv9cdncj7nm6crq6bm834il3zg4zx"; - libraryHaskellDepends = [ - accelerate - base - gloss - gloss-rendering - linear-accelerate - ]; - description = "Extras to interface Gloss and Accelerate"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "gloss-algorithms" = callPackage ( { mkDerivation, @@ -272739,57 +158567,6 @@ self: { } ) { }; - "gloss-banana" = callPackage ( - { - mkDerivation, - base, - gloss, - reactive-banana, - }: - mkDerivation { - pname = "gloss-banana"; - version = "0.1.0.4"; - sha256 = "0zzpdryfcqvxpzv53ymsvkm2nza9ryvzqgf3n89pnvrni91avgj3"; - revision = "1"; - editedCabalFile = "0nia67zywmxyvcnlk0a906dijh9h7m6w48330n9gs2mjkhkyqb13"; - libraryHaskellDepends = [ - base - gloss - reactive-banana - ]; - description = "An Interface for gloss in terms of a reactive-banana Behavior"; - license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "gloss-devil" = callPackage ( - { - mkDerivation, - base, - bytestring, - gloss, - repa, - repa-devil, - }: - mkDerivation { - pname = "gloss-devil"; - version = "0.2"; - sha256 = "17gwy13z4lymm9dpj26q4ihcl198gqn9kpcjdw8lcgfcg4gxszsm"; - libraryHaskellDepends = [ - base - bytestring - gloss - repa - repa-devil - ]; - description = "Display images in Gloss using libdevil for decoding"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "gloss-examples" = callPackage ( { mkDerivation, @@ -272883,29 +158660,6 @@ self: { } ) { }; - "gloss-game" = callPackage ( - { - mkDerivation, - base, - gloss, - gloss-juicy, - }: - mkDerivation { - pname = "gloss-game"; - version = "0.3.3.0"; - sha256 = "01k9600f9lv65n9bi2v40gzcl14gg9cm27fxz8yk4kx1hk5hv980"; - libraryHaskellDepends = [ - base - gloss - gloss-juicy - ]; - description = "Gloss wrapper that simplifies writing games"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "gloss-juicy" = callPackage ( { mkDerivation, @@ -272973,32 +158727,6 @@ self: { } ) { }; - "gloss-raster-accelerate" = callPackage ( - { - mkDerivation, - accelerate, - base, - colour-accelerate, - gloss, - gloss-accelerate, - }: - mkDerivation { - pname = "gloss-raster-accelerate"; - version = "2.1.0.0"; - sha256 = "0yxlpz5wqfriijzkhqgjyv3g0wcmdy33ifbziqrdm9phvsjygvza"; - libraryHaskellDepends = [ - accelerate - base - colour-accelerate - gloss - gloss-accelerate - ]; - description = "Parallel rendering of raster images using Accelerate"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "gloss-raster-massiv" = callPackage ( { mkDerivation, @@ -273058,28 +158786,6 @@ self: { } ) { }; - "gloss-sodium" = callPackage ( - { - mkDerivation, - base, - gloss, - sodium, - }: - mkDerivation { - pname = "gloss-sodium"; - version = "0.1.0.0"; - sha256 = "0ygjqzb1pn092j0d0gcwhxdv940rdlvpaj1gxa347mdgvp4jb9za"; - libraryHaskellDepends = [ - base - gloss - sodium - ]; - description = "A Sodium interface to the Gloss drawing package"; - license = lib.licenses.agpl3Only; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "glpk-headers" = callPackage ( { mkDerivation, @@ -273390,81 +159096,6 @@ self: { } ) { }; - "glue" = callPackage ( - { - mkDerivation, - async, - base, - ekg-core, - hashable, - hspec, - lifted-base, - monad-control, - monad-loops, - QuickCheck, - quickcheck-instances, - text, - time, - transformers, - transformers-base, - unordered-containers, - }: - mkDerivation { - pname = "glue"; - version = "0.2.0"; - sha256 = "0alv63j07f312m63j82jm9dmkckp3d1k51x99kzfzxd1kvi94ikq"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - ekg-core - hashable - lifted-base - monad-control - text - time - transformers - transformers-base - unordered-containers - ]; - executableHaskellDepends = [ - async - base - ekg-core - hashable - lifted-base - monad-control - monad-loops - text - time - transformers - transformers-base - unordered-containers - ]; - testHaskellDepends = [ - async - base - ekg-core - hashable - hspec - lifted-base - monad-control - QuickCheck - quickcheck-instances - text - time - transformers - transformers-base - unordered-containers - ]; - description = "Make better services"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "glue-example"; - broken = true; - } - ) { }; - "glue-common" = callPackage ( { mkDerivation, @@ -273758,79 +159389,6 @@ self: { } ) { }; - "gmap" = callPackage ( - { - mkDerivation, - array, - AvlTree, - base, - COrdering, - QuickCheck, - random, - }: - mkDerivation { - pname = "gmap"; - version = "0.1"; - sha256 = "0kwx0zknxpda0pjf9hphniz33b9m0md54z8zx09vzkjq7lpljx7r"; - libraryHaskellDepends = [ - array - AvlTree - base - COrdering - QuickCheck - random - ]; - description = "Composable maps and generic tries"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "gmndl" = callPackage ( - { - mkDerivation, - ad, - array, - base, - gtk, - gtkglext, - mtl, - OpenGL, - OpenGLRaw, - parsec, - priority-queue, - qd, - reflection, - Vec, - }: - mkDerivation { - pname = "gmndl"; - version = "0.4.0.4"; - sha256 = "041g7mlgwk6yb3814cy93yvwfhk5gzdkms7d8dg312vnpykp2kl1"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - ad - array - base - gtk - gtkglext - mtl - OpenGL - OpenGLRaw - parsec - priority-queue - qd - reflection - Vec - ]; - description = "Mandelbrot Set explorer using GTK"; - license = lib.licenses.gpl2Only; - hydraPlatforms = lib.platforms.none; - mainProgram = "gmndl"; - } - ) { }; - "gmpint" = callPackage ( { mkDerivation, @@ -273848,37 +159406,6 @@ self: { } ) { inherit (pkgs) gmp; }; - "gnome-desktop" = callPackage ( - { - mkDerivation, - base, - directory, - gconf, - glib, - gtk, - random, - }: - mkDerivation { - pname = "gnome-desktop"; - version = "1.0.0.0"; - sha256 = "0ipx8hka4ly3dc3dv6dnk2bq3hbiiahqqragdm1bqgy1plvwa5q6"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - directory - gconf - glib - gtk - random - ]; - description = "Randomly set a picture as the GNOME desktop background"; - license = "GPL"; - hydraPlatforms = lib.platforms.none; - mainProgram = "gnome-desktop"; - } - ) { }; - "gnome-keyring" = callPackage ( { mkDerivation, @@ -273908,127 +159435,6 @@ self: { } ) { inherit (pkgs) libgnome-keyring; }; - "gnomevfs" = - callPackage - ( - { - mkDerivation, - array, - base, - containers, - glib, - gnome-vfs, - gnome-vfs_module, - gtk, - gtk2hs-buildtools, - haskell98, - mtl, - }: - mkDerivation { - pname = "gnomevfs"; - version = "0.11.0"; - sha256 = "0g4dic9k1c4221v4kacc46sj2vra1jlnb4pn657zfwbkni8z0kmp"; - libraryHaskellDepends = [ - array - base - containers - glib - gtk - haskell98 - mtl - ]; - libraryPkgconfigDepends = [ - gnome-vfs - gnome-vfs_module - ]; - libraryToolDepends = [ gtk2hs-buildtools ]; - description = "Binding to the GNOME Virtual File System library"; - license = "GPL"; - hydraPlatforms = lib.platforms.none; - } - ) - { - gnome-vfs = null; - gnome-vfs_module = null; - }; - - "gnss-converters" = callPackage ( - { - mkDerivation, - aeson, - aeson-pretty, - base, - basic-prelude, - binary-conduit, - bytestring, - conduit, - conduit-extra, - exceptions, - extra, - lens, - monad-control, - mtl, - resourcet, - rtcm, - sbp, - tasty, - tasty-golden, - tasty-hunit, - time, - transformers-base, - vector, - }: - mkDerivation { - pname = "gnss-converters"; - version = "0.3.52"; - sha256 = "00ixm0pvi4d7512lxk3qyl3vnb8c5x3n23mblmbw66f4hvn8x88g"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - basic-prelude - conduit - exceptions - extra - lens - monad-control - mtl - resourcet - rtcm - sbp - time - transformers-base - vector - ]; - executableHaskellDepends = [ - base - basic-prelude - binary-conduit - conduit - conduit-extra - ]; - testHaskellDepends = [ - aeson - aeson-pretty - base - basic-prelude - binary-conduit - bytestring - conduit - conduit-extra - lens - sbp - tasty - tasty-golden - tasty-hunit - time - ]; - description = "GNSS Converters"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "gnuidn" = callPackage ( { mkDerivation, @@ -274146,34 +159552,6 @@ self: { } ) { inherit (pkgs) gnutls; }; - "goa" = callPackage ( - { - mkDerivation, - base, - directory, - filepath, - process, - }: - mkDerivation { - pname = "goa"; - version = "3.3"; - sha256 = "0z1mhi2y4qm1lj6vfsmxf2gs5shfwdac3p9gqj89hx28mpc3rmzk"; - revision = "1"; - editedCabalFile = "0dq1406z7mh4hca15abizrzlc4v80qkc3r9jz9q21qi99hgvvqjs"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base - directory - filepath - process - ]; - description = "GHCi bindings to lambdabot"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "goal-core" = callPackage ( { mkDerivation, @@ -274373,56 +159751,6 @@ self: { } ) { }; - "goal-simulation" = callPackage ( - { - mkDerivation, - base, - cairo, - clock, - directory, - goal-core, - goal-geometry, - goal-probability, - gtk, - hmatrix, - machines, - mtl, - vector, - }: - mkDerivation { - pname = "goal-simulation"; - version = "0.1"; - sha256 = "00c2cx4z63gphjhipwrm2r6872c59g03kb49ksm8yiq0xrwwr1sp"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - cairo - clock - goal-core - goal-geometry - goal-probability - gtk - hmatrix - machines - vector - ]; - executableHaskellDepends = [ - base - directory - goal-core - goal-geometry - goal-probability - hmatrix - mtl - vector - ]; - description = "Mealy based simulation tools"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "goat" = callPackage ( { mkDerivation, @@ -274543,112 +159871,6 @@ self: { } ) { }; - "gochan" = callPackage ( - { - mkDerivation, - array, - base, - criterion, - ghc-prim, - hspec, - hspec-core, - primitive, - random, - vector, - vector-algorithms, - weigh, - }: - mkDerivation { - pname = "gochan"; - version = "0.0.2"; - sha256 = "1r8spv8ls1x032r0bcljc4qdhy671cv26dvglhjrgxamqgwy9izk"; - revision = "1"; - editedCabalFile = "19sl0lpj79wjb7qip48aghd689a9ybbarmvb2lihn26iwksnnwq5"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - array - base - ghc-prim - primitive - random - vector - vector-algorithms - ]; - executableHaskellDepends = [ - base - criterion - random - weigh - ]; - testHaskellDepends = [ - base - hspec - hspec-core - ]; - description = "Go-style channels"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "godot-haskell" = callPackage ( - { - mkDerivation, - aeson, - ansi-wl-pprint, - base, - bytestring, - c2hs, - casing, - colour, - containers, - lens, - linear, - mtl, - parsec, - parsers, - stm, - template-haskell, - text, - unordered-containers, - vector, - }: - mkDerivation { - pname = "godot-haskell"; - version = "0.1.0.0"; - sha256 = "02nvs84bq4nif235iycjwkxmabvs0avwm2xilpwv8kddv95z1f8i"; - revision = "4"; - editedCabalFile = "06mb33ll7m24dr6mvzi2r6v0bl6k0680y751563zhz0ybrjypckk"; - libraryHaskellDepends = [ - aeson - ansi-wl-pprint - base - bytestring - casing - colour - containers - lens - linear - mtl - parsec - parsers - stm - template-haskell - text - unordered-containers - vector - ]; - libraryToolDepends = [ c2hs ]; - doHaddock = false; - description = "Haskell bindings for the Godot game engine API"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "godot-megaparsec" = callPackage ( { mkDerivation, @@ -274690,27 +159912,6 @@ self: { } ) { }; - "gofer-prelude" = callPackage ( - { - mkDerivation, - base, - ghc-prim, - }: - mkDerivation { - pname = "gofer-prelude"; - version = "2.30.3"; - sha256 = "1whl3fvwxh26nsb4l6brljsmwl891w5yxlsv69mdfvfb1rl7p64f"; - libraryHaskellDepends = [ - base - ghc-prim - ]; - description = "The Gofer 2.30 standard prelude"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "goggles" = callPackage ( { mkDerivation, @@ -274783,45 +159984,6 @@ self: { } ) { }; - "goggles-gcs" = callPackage ( - { - mkDerivation, - aeson, - base, - bytestring, - cryptonite, - exceptions, - goggles, - memory, - mtl, - req, - text, - unix-time, - }: - mkDerivation { - pname = "goggles-gcs"; - version = "0.1.2"; - sha256 = "0p1z03y6sy8daqvyfs4mj767yh98zbl23lri72jpy0z213qsjybf"; - libraryHaskellDepends = [ - aeson - base - bytestring - cryptonite - exceptions - goggles - memory - mtl - req - text - unix-time - ]; - description = "`goggles` interface to Google Cloud Storage"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "gogol" = callPackage ( { mkDerivation, @@ -275003,27 +160165,6 @@ self: { } ) { }; - "gogol-admin-emailmigration" = callPackage ( - { - mkDerivation, - base, - gogol-core, - }: - mkDerivation { - pname = "gogol-admin-emailmigration"; - version = "0.3.0"; - sha256 = "1d7w4fv4v54mja7yx8rf29ms1hbjnkjgly54fqx5h4xyfgypymca"; - libraryHaskellDepends = [ - base - gogol-core - ]; - description = "Google Email Migration API v2 SDK"; - license = "unknown"; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "gogol-admin-reports" = callPackage ( { mkDerivation, gogol-core }: mkDerivation { @@ -275060,27 +160201,6 @@ self: { } ) { }; - "gogol-affiliates" = callPackage ( - { - mkDerivation, - base, - gogol-core, - }: - mkDerivation { - pname = "gogol-affiliates"; - version = "0.3.0"; - sha256 = "1h7kx1ra0vz8pgvcjvj5ip44h077s9q5m7ixplq5vzrr4wdbrvvf"; - libraryHaskellDepends = [ - base - gogol-core - ]; - description = "Google Affiliate Network SDK"; - license = "unknown"; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "gogol-alertcenter" = callPackage ( { mkDerivation, gogol-core }: mkDerivation { @@ -275249,27 +160369,6 @@ self: { } ) { }; - "gogol-autoscaler" = callPackage ( - { - mkDerivation, - base, - gogol-core, - }: - mkDerivation { - pname = "gogol-autoscaler"; - version = "0.3.0"; - sha256 = "0insf84wrnn98yqfm6scfmzjnxdj9hikz7wy0cg0vk25dpc2mhp0"; - libraryHaskellDepends = [ - base - gogol-core - ]; - description = "Google Compute Engine Autoscaler SDK"; - license = "unknown"; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "gogol-bigquery" = callPackage ( { mkDerivation, gogol-core }: mkDerivation { @@ -275462,27 +160561,6 @@ self: { } ) { }; - "gogol-cloudmonitoring" = callPackage ( - { - mkDerivation, - base, - gogol-core, - }: - mkDerivation { - pname = "gogol-cloudmonitoring"; - version = "0.3.0"; - sha256 = "01mfc8f6vl3n499p4f70inak68g83yxc5pci485sxgwvfx078glx"; - libraryHaskellDepends = [ - base - gogol-core - ]; - description = "Google Cloud Monitoring SDK"; - license = "unknown"; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "gogol-cloudprivatecatalog" = callPackage ( { mkDerivation, gogol-core }: mkDerivation { @@ -276049,27 +161127,6 @@ self: { } ) { }; - "gogol-freebasesearch" = callPackage ( - { - mkDerivation, - base, - gogol-core, - }: - mkDerivation { - pname = "gogol-freebasesearch"; - version = "0.3.0"; - sha256 = "02m2cpf6jdvd2km3gjvhvhkq3cgy7ijy5abwkrpcwvjzl1hps2vc"; - libraryHaskellDepends = [ - base - gogol-core - ]; - description = "Google Freebase Search SDK"; - license = "unknown"; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "gogol-fusiontables" = callPackage ( { mkDerivation, gogol-core }: mkDerivation { @@ -276274,27 +161331,6 @@ self: { } ) { }; - "gogol-latencytest" = callPackage ( - { - mkDerivation, - base, - gogol-core, - }: - mkDerivation { - pname = "gogol-latencytest"; - version = "0.3.0"; - sha256 = "1gdllvcp6s7rf4093xl2fxq3bvqkrysnrs2s4abyppq54p4s6afk"; - libraryHaskellDepends = [ - base - gogol-core - ]; - description = "Google Cloud Network Performance Monitoring SDK"; - license = "unknown"; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "gogol-libraryagent" = callPackage ( { mkDerivation, gogol-core }: mkDerivation { @@ -276331,48 +161367,6 @@ self: { } ) { }; - "gogol-maps-coordinate" = callPackage ( - { - mkDerivation, - base, - gogol-core, - }: - mkDerivation { - pname = "gogol-maps-coordinate"; - version = "0.3.0"; - sha256 = "1ajgf2g9yad6zwhap8b0qigf0nfsw5k3132ksnzkcrfflz74swvn"; - libraryHaskellDepends = [ - base - gogol-core - ]; - description = "Google Maps Coordinate SDK"; - license = "unknown"; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "gogol-maps-engine" = callPackage ( - { - mkDerivation, - base, - gogol-core, - }: - mkDerivation { - pname = "gogol-maps-engine"; - version = "0.3.0"; - sha256 = "15a6z7kxvad3ylr1pkwqlimzbwsk0p8qblfnwgnjbl3mr681xdvv"; - libraryHaskellDepends = [ - base - gogol-core - ]; - description = "Google Maps Engine SDK"; - license = "unknown"; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "gogol-mirror" = callPackage ( { mkDerivation, gogol-core }: mkDerivation { @@ -276469,27 +161463,6 @@ self: { } ) { }; - "gogol-photoslibrary" = callPackage ( - { - mkDerivation, - base, - gogol-core, - }: - mkDerivation { - pname = "gogol-photoslibrary"; - version = "0.4.0"; - sha256 = "0j2z2vfv05fmmkj8w4yw5xc13q0n2mmq9crahp3my3g74a5i23i4"; - libraryHaskellDepends = [ - base - gogol-core - ]; - description = "Google Photos Library SDK"; - license = "unknown"; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "gogol-play-moviespartner" = callPackage ( { mkDerivation, gogol-core }: mkDerivation { @@ -276550,27 +161523,6 @@ self: { } ) { }; - "gogol-prediction" = callPackage ( - { - mkDerivation, - base, - gogol-core, - }: - mkDerivation { - pname = "gogol-prediction"; - version = "0.5.0"; - sha256 = "17dkm1wi5im1an1izcca2v432c2d86i74h6wlcyy92g7a86ajc2f"; - libraryHaskellDepends = [ - base - gogol-core - ]; - description = "Google Prediction SDK"; - license = "unknown"; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "gogol-proximitybeacon" = callPackage ( { mkDerivation, gogol-core }: mkDerivation { @@ -276679,27 +161631,6 @@ self: { } ) { }; - "gogol-resourceviews" = callPackage ( - { - mkDerivation, - base, - gogol-core, - }: - mkDerivation { - pname = "gogol-resourceviews"; - version = "0.3.0"; - sha256 = "114gjdxzm4kq3ibk32dzy73zvmp9ls9bzb4k7szdkxr922861akp"; - libraryHaskellDepends = [ - base - gogol-core - ]; - description = "Google Compute Engine Instance Groups SDK"; - license = "unknown"; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "gogol-run" = callPackage ( { mkDerivation, gogol-core }: mkDerivation { @@ -277024,27 +161955,6 @@ self: { } ) { }; - "gogol-taskqueue" = callPackage ( - { - mkDerivation, - base, - gogol-core, - }: - mkDerivation { - pname = "gogol-taskqueue"; - version = "0.3.0"; - sha256 = "0irzyv80q2n4jv144rryv5xqbg51gqyws1pnvpdi5lddq90yvjq3"; - libraryHaskellDepends = [ - base - gogol-core - ]; - description = "Google TaskQueue SDK"; - license = "unknown"; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "gogol-testing" = callPackage ( { mkDerivation, gogol-core }: mkDerivation { @@ -277129,27 +162039,6 @@ self: { } ) { }; - "gogol-useraccounts" = callPackage ( - { - mkDerivation, - base, - gogol-core, - }: - mkDerivation { - pname = "gogol-useraccounts"; - version = "0.3.0"; - sha256 = "0fzmq082x0vvml8c0pxhb3vrnvizmq9cmh8y30yapkad7xwgx3i9"; - libraryHaskellDepends = [ - base - gogol-core - ]; - description = "Google Cloud User Accounts SDK"; - license = "unknown"; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "gogol-vault" = callPackage ( { mkDerivation, gogol-core }: mkDerivation { @@ -277301,76 +162190,6 @@ self: { } ) { }; - "gooey" = callPackage ( - { - mkDerivation, - base, - renderable, - transformers, - varying, - }: - mkDerivation { - pname = "gooey"; - version = "0.1.0.0"; - sha256 = "0njlbvlqzm9282rwk21klr3jq6m46i2qz46xbsdhw9jg2dawq97j"; - libraryHaskellDepends = [ - base - renderable - transformers - varying - ]; - description = "Graphical user interfaces that are renderable, change over time and eventually produce a value"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "google-cloud" = callPackage ( - { - mkDerivation, - aeson, - base, - bytestring, - http-client, - http-client-tls, - http-types, - mtl, - random, - scientific, - stm, - text, - time, - unordered-containers, - }: - mkDerivation { - pname = "google-cloud"; - version = "0.0.4"; - sha256 = "16pv4iiladfsq92xnpj46xa91x5svk6qsmz5szwwb83fhkk7r9q9"; - revision = "1"; - editedCabalFile = "0512swl7ydlcjdbvcb2xm59q97yr3wxgh3sfdsz3zdm1y88qi18c"; - libraryHaskellDepends = [ - aeson - base - bytestring - http-client - http-client-tls - http-types - mtl - random - scientific - stm - text - time - unordered-containers - ]; - description = "Client for the Google Cloud APIs"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "google-cloud-common" = callPackage ( { mkDerivation, @@ -277664,45 +162483,6 @@ self: { description = "Google Drive API access"; license = lib.licenses.mit; hydraPlatforms = lib.platforms.none; - } - ) { }; - - "google-html5-slide" = callPackage ( - { - mkDerivation, - base, - blaze-html, - cmdargs, - data-default, - hamlet, - pandoc, - shakespeare-css, - syb, - text, - time, - }: - mkDerivation { - pname = "google-html5-slide"; - version = "2011.0"; - sha256 = "0wkblf0i4lfw6s8adf2clcqj3161863vbsq1cip3rcn9djqbimzl"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - blaze-html - cmdargs - data-default - hamlet - pandoc - shakespeare-css - syb - text - time - ]; - description = "Google HTML5 Slide generator"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "google-html5-slide"; broken = true; } ) { }; @@ -277735,41 +162515,6 @@ self: { } ) { }; - "google-mail-filters" = callPackage ( - { - mkDerivation, - base, - containers, - google-search, - text, - time, - xml-conduit, - }: - mkDerivation { - pname = "google-mail-filters"; - version = "0.0.1.2"; - sha256 = "1rac1f6drs88rjh1sfw3s5ll8800cpim8a0yc3i5m1wzbxv3xyns"; - libraryHaskellDepends = [ - base - containers - google-search - text - time - xml-conduit - ]; - testHaskellDepends = [ - base - google-search - text - time - xml-conduit - ]; - description = "Write GMail filters and output to importable XML"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "google-maps-geocoding" = callPackage ( { mkDerivation, @@ -277799,100 +162544,6 @@ self: { } ) { }; - "google-oauth2" = callPackage ( - { - mkDerivation, - base, - bytestring, - hoauth2, - hspec, - http-client-tls, - http-conduit, - load-env, - safe-exceptions, - text, - transformers, - uri-bytestring, - }: - mkDerivation { - pname = "google-oauth2"; - version = "0.3.0.0"; - sha256 = "119p792prspir2vxk53jzkr90rava2qnixr1jkbmx5si63h9l01z"; - libraryHaskellDepends = [ - base - bytestring - hoauth2 - http-client-tls - safe-exceptions - text - transformers - uri-bytestring - ]; - testHaskellDepends = [ - base - bytestring - hoauth2 - hspec - http-conduit - load-env - text - ]; - description = "Google OAuth2 token negotiation"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "google-oauth2-easy" = callPackage ( - { - mkDerivation, - aeson, - base, - criterion, - http-api-data, - http-client, - mtl, - servant, - servant-client, - tasty, - tasty-hspec, - text, - text-conversions, - unordered-containers, - }: - mkDerivation { - pname = "google-oauth2-easy"; - version = "0.0.0"; - sha256 = "03jzlshz7649rvgmql5nsq4hys253dlqpm163xqpccif1s34z59b"; - libraryHaskellDepends = [ - aeson - base - http-api-data - http-client - mtl - servant - servant-client - text - text-conversions - unordered-containers - ]; - testHaskellDepends = [ - base - tasty - tasty-hspec - ]; - benchmarkHaskellDepends = [ - base - criterion - ]; - description = "Opininated use of Google Authentication for ease"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "google-oauth2-for-cli" = callPackage ( { mkDerivation, @@ -277910,977 +162561,360 @@ self: { warp, }: mkDerivation { - pname = "google-oauth2-for-cli"; - version = "0.1.0.1"; - sha256 = "1n1pm91mx7i22iynipknjjkwh7pzr0ga7zg7v3dazqwvh6pps6w1"; - libraryHaskellDepends = [ - aeson - base - bytestring - directory - filepath - http-types - req - time - unix - wai - warp - ]; - testHaskellDepends = [ - base - hspec - ]; - description = "Get Google OAuth2 token for CLI tools"; - license = lib.licenses.bsd3; - } - ) { }; - - "google-oauth2-jwt" = callPackage ( - { - mkDerivation, - base, - base64-bytestring, - bytestring, - HsOpenSSL, - RSA, - text, - unix-time, - }: - mkDerivation { - pname = "google-oauth2-jwt"; - version = "0.3.3.1"; - sha256 = "1c3z6pi04xk7gi7fyhiq3i102g7vnyygp5vyfm4yj5xfq4npqjg1"; - libraryHaskellDepends = [ - base - base64-bytestring - bytestring - HsOpenSSL - RSA - text - unix-time - ]; - description = "Get a signed JWT for Google Service Accounts"; - license = lib.licenses.bsd3; - } - ) { }; - - "google-search" = callPackage ( - { - mkDerivation, - base, - free, - nats, - text, - time, - }: - mkDerivation { - pname = "google-search"; - version = "0.2.0.0"; - sha256 = "1jn22iykcl6694lsshj7xxnqx33d6spqlr2q93v6ak3yaygxd7hr"; - libraryHaskellDepends = [ - base - free - nats - text - time - ]; - description = "EDSL for Google and GMail search expressions"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "google-server-api" = callPackage ( - { - mkDerivation, - aeson, - aeson-casing, - base, - base64-bytestring, - bytestring, - HsOpenSSL, - http-api-data, - http-client, - http-client-tls, - http-media, - mime-mail, - monad-control, - monad-logger, - mtl, - RSA, - servant, - servant-client, - text, - time, - transformers, - transformers-base, - unix-time, - unordered-containers, - wai, - wai-extra, - warp, - }: - mkDerivation { - pname = "google-server-api"; - version = "0.4.1.1"; - sha256 = "06vbkf17dqss5cv9gfkqcgsnrx6hwx511ygc21w8h3jz3djsgf56"; - libraryHaskellDepends = [ - aeson - aeson-casing - base - base64-bytestring - bytestring - HsOpenSSL - http-api-data - http-client - http-client-tls - http-media - mime-mail - monad-control - monad-logger - mtl - RSA - servant - servant-client - text - time - transformers - transformers-base - unix-time - unordered-containers - wai - wai-extra - warp - ]; - description = "Google APIs for server to server applications"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "google-static-maps" = callPackage ( - { - mkDerivation, - aeson, - base, - base64-bytestring, - bytedump, - bytestring, - cryptonite, - double-conversion, - http-client, - JuicyPixels, - memory, - network-uri, - servant, - servant-client, - servant-JuicyPixels, - text, - utf8-string, - }: - mkDerivation { - pname = "google-static-maps"; - version = "0.7.0.3"; - sha256 = "11zmjyz7j41zi7h88gvjzfnky502f81079xnpsx71xhk1nm4b71x"; - libraryHaskellDepends = [ - aeson - base - base64-bytestring - bytedump - bytestring - cryptonite - double-conversion - http-client - JuicyPixels - memory - network-uri - servant - servant-client - servant-JuicyPixels - text - utf8-string - ]; - description = "Bindings to the Google Maps Static API (formerly Static Maps API)"; - license = lib.licenses.bsd3; - } - ) { }; - - "google-translate" = callPackage ( - { - mkDerivation, - aeson, - base, - bytestring, - http-api-data, - http-client, - servant, - servant-client, - text, - transformers, - }: - mkDerivation { - pname = "google-translate"; - version = "0.5"; - sha256 = "09mkhbdfcyw2hiqlijnv0lwlk9rka64hqmx8jhrdyksgsz6hc6gl"; - revision = "1"; - editedCabalFile = "0qx4k19y0n9hvcjjgmklsnq79z3bjahskrc2cv44h68gc5dzy9gj"; - libraryHaskellDepends = [ - aeson - base - bytestring - http-api-data - http-client - servant - servant-client - text - transformers - ]; - description = "Google Translate API bindings"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "googleplus" = callPackage ( - { - mkDerivation, - aeson, - attoparsec, - base, - bytestring, - containers, - enumerator, - haskell98, - http-enumerator, - http-types, - mtl, - text, - time, - timerep, - transformers, - url, - }: - mkDerivation { - pname = "googleplus"; - version = "0.3.1.1"; - sha256 = "046fvrr8cg00wagx4vdx35l2xk8qbs7fbs0v5hj45h4jk9dnk2jg"; - libraryHaskellDepends = [ - aeson - attoparsec - base - bytestring - containers - enumerator - haskell98 - http-enumerator - http-types - mtl - text - time - timerep - transformers - url - ]; - description = "Haskell implementation of the Google+ API v1"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "googlepolyline" = callPackage ( - { - mkDerivation, - base, - bytestring, - HUnit, - QuickCheck, - test-framework, - test-framework-hunit, - test-framework-quickcheck2, - text, - }: - mkDerivation { - pname = "googlepolyline"; - version = "0.1.0.2"; - sha256 = "11awg158phdxflnjic061x1xjagy649i9j8g62wbwcrpg063lnfd"; - libraryHaskellDepends = [ - base - bytestring - text - ]; - testHaskellDepends = [ - base - bytestring - HUnit - QuickCheck - test-framework - test-framework-hunit - test-framework-quickcheck2 - text - ]; - description = "Google Polyline Encoder/Decoder"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "gopher-proxy" = callPackage ( - { - mkDerivation, - attoparsec, - base, - bytestring, - directory, - errors, - http-types, - lucid, - mime-types, - network, - optparse-applicative, - text, - wai, - warp, - }: - mkDerivation { - pname = "gopher-proxy"; - version = "0.1.1.3"; - sha256 = "0pqsir7hpz2hfdczhvvnqh7rbckxkzj7fsdq6r27nm9ixf5kmwfb"; - isLibrary = false; - isExecutable = true; - enableSeparateDataOutput = true; - executableHaskellDepends = [ - attoparsec - base - bytestring - directory - errors - http-types - lucid - mime-types - network - optparse-applicative - text - wai - warp - ]; - description = "proxy gopher over http"; - license = lib.licenses.gpl3Only; - mainProgram = "gopher-proxy"; - maintainers = [ lib.maintainers.sternenseemann ]; - } - ) { }; - - "gopherbot" = callPackage ( - { - mkDerivation, - base, - HDBC, - HDBC-postgresql, - MissingH, - network, - parsec, - unix, - }: - mkDerivation { - pname = "gopherbot"; - version = "0.1.0"; - sha256 = "0qa4xs07975spf4pwc2y0hichn4x8l7kn2949v0j19gbd099vjng"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - HDBC - HDBC-postgresql - MissingH - network - parsec - unix - ]; - description = "Spidering robot to download files from Gopherspace"; - license = "GPL"; - hydraPlatforms = lib.platforms.none; - mainProgram = "gopherbot"; - broken = true; - } - ) { }; - - "gopro-plus" = callPackage ( - { - mkDerivation, - aeson, - base, - bytestring, - containers, - exceptions, - filepath, - generic-deriving, - generic-random, - HUnit, - lens, - lens-aeson, - monad-logger, - mtl, - QuickCheck, - quickcheck-instances, - random, - raw-strings-qq, - retry, - tasty, - tasty-discover, - tasty-hunit, - tasty-quickcheck, - text, - time, - transformers, - unix, - unliftio, - unordered-containers, - vector, - wreq, - }: - mkDerivation { - pname = "gopro-plus"; - version = "0.6.6.7"; - sha256 = "005kdy8jvny75q4srphz5wvl3b2alkvj5kxlz5yp7qqiwvdgp0y4"; - libraryHaskellDepends = [ - aeson - base - bytestring - containers - exceptions - filepath - generic-deriving - generic-random - lens - lens-aeson - monad-logger - mtl - QuickCheck - quickcheck-instances - random - retry - text - time - transformers - unix - unliftio - unordered-containers - vector - wreq - ]; - testHaskellDepends = [ - aeson - base - bytestring - containers - exceptions - filepath - generic-deriving - generic-random - HUnit - lens - lens-aeson - monad-logger - mtl - QuickCheck - quickcheck-instances - random - raw-strings-qq - retry - tasty - tasty-discover - tasty-hunit - tasty-quickcheck - text - time - transformers - unix - unliftio - unordered-containers - vector - wreq - ]; - testToolDepends = [ tasty-discover ]; - description = "GoPro Plus Client API"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "gore-and-ash" = callPackage ( - { - mkDerivation, - base, - containers, - deepseq, - exceptions, - hashable, - linear, - mtl, - parallel, - profunctors, - random, - semigroups, - time, - transformers, - unordered-containers, - }: - mkDerivation { - pname = "gore-and-ash"; - version = "1.2.2.0"; - sha256 = "1kna4y0css6my2qwxmnwdws4rg78hyir3dfinl7vlqmcmz1fz4j1"; - libraryHaskellDepends = [ - base - containers - deepseq - exceptions - hashable - linear - mtl - parallel - profunctors - random - semigroups - time - transformers - unordered-containers - ]; - description = "Core of FRP game engine called Gore&Ash"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "gore-and-ash-actor" = callPackage ( - { - mkDerivation, - base, - containers, - deepseq, - exceptions, - gore-and-ash, - hashable, - mtl, - resourcet, - transformers, - transformers-base, - unordered-containers, - }: - mkDerivation { - pname = "gore-and-ash-actor"; - version = "1.2.2.0"; - sha256 = "044sv976kznk628vncdw4dcib6j97z6dd4ga0hwijq073qwxkrqd"; - libraryHaskellDepends = [ - base - containers - deepseq - exceptions - gore-and-ash - hashable - mtl - resourcet - transformers - transformers-base - unordered-containers - ]; - description = "Gore&Ash engine extension that implements actor style of programming"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "gore-and-ash-async" = callPackage ( - { - mkDerivation, - async, - base, - containers, - deepseq, - exceptions, - gore-and-ash, - hashable, - HUnit, - mtl, - resourcet, - test-framework, - test-framework-hunit, - transformers, - transformers-base, - unordered-containers, - }: - mkDerivation { - pname = "gore-and-ash-async"; - version = "1.1.1.0"; - sha256 = "065xgsambnskqcr9w9yfl8xmbfgcz053s4yg0ddnfs2d83hhw37d"; - libraryHaskellDepends = [ - async - base - containers - deepseq - exceptions - gore-and-ash - hashable - mtl - resourcet - transformers - transformers-base - unordered-containers + pname = "google-oauth2-for-cli"; + version = "0.1.0.1"; + sha256 = "1n1pm91mx7i22iynipknjjkwh7pzr0ga7zg7v3dazqwvh6pps6w1"; + libraryHaskellDepends = [ + aeson + base + bytestring + directory + filepath + http-types + req + time + unix + wai + warp ]; testHaskellDepends = [ base - containers - deepseq - exceptions - gore-and-ash - HUnit - mtl - test-framework - test-framework-hunit - transformers + hspec ]; - description = "Core module for Gore&Ash engine that embeds async IO actions into game loop"; + description = "Get Google OAuth2 token for CLI tools"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; } ) { }; - "gore-and-ash-demo" = callPackage ( + "google-oauth2-jwt" = callPackage ( { mkDerivation, base, + base64-bytestring, bytestring, - cereal, - containers, - deepseq, - exception-transformers, - exceptions, - GLFW-b, - gore-and-ash, - gore-and-ash-actor, - gore-and-ash-logging, - gore-and-ash-network, - gore-and-ash-sdl, - gore-and-ash-sync, - hashable, - lens, - linear, - network, - OpenGL, - sdl2, + HsOpenSSL, + RSA, text, - text-show, - time, - transformers, - unordered-containers, - vector, + unix-time, }: mkDerivation { - pname = "gore-and-ash-demo"; - version = "1.2.0.0"; - sha256 = "02ak8v932z8i8vhqm73w0wmmam3yvzvzybrwdqvr4k3601mv9gvk"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ + pname = "google-oauth2-jwt"; + version = "0.3.3.1"; + sha256 = "1c3z6pi04xk7gi7fyhiq3i102g7vnyygp5vyfm4yj5xfq4npqjg1"; + libraryHaskellDepends = [ base + base64-bytestring bytestring - cereal - containers - deepseq - exception-transformers - exceptions - GLFW-b - gore-and-ash - gore-and-ash-actor - gore-and-ash-logging - gore-and-ash-network - gore-and-ash-sdl - gore-and-ash-sync - hashable - lens - linear - network - OpenGL - sdl2 + HsOpenSSL + RSA text - text-show - time - transformers - unordered-containers - vector + unix-time ]; - description = "Demonstration game for Gore&Ash game engine"; + description = "Get a signed JWT for Google Service Accounts"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; } ) { }; - "gore-and-ash-glfw" = callPackage ( + "google-server-api" = callPackage ( { mkDerivation, + aeson, + aeson-casing, base, - deepseq, - exceptions, - extra, - GLFW-b, - gore-and-ash, - hashable, + base64-bytestring, + bytestring, + HsOpenSSL, + http-api-data, + http-client, + http-client-tls, + http-media, + mime-mail, + monad-control, + monad-logger, mtl, + RSA, + servant, + servant-client, + text, + time, transformers, + transformers-base, + unix-time, unordered-containers, + wai, + wai-extra, + warp, }: mkDerivation { - pname = "gore-and-ash-glfw"; - version = "1.1.2.0"; - sha256 = "0gj858l8pqg0ri8pfz2rkfy4aq8ngkw4h7y16j9skfl5x688mz23"; + pname = "google-server-api"; + version = "0.4.1.1"; + sha256 = "06vbkf17dqss5cv9gfkqcgsnrx6hwx511ygc21w8h3jz3djsgf56"; libraryHaskellDepends = [ + aeson + aeson-casing base - deepseq - exceptions - extra - GLFW-b - gore-and-ash - hashable + base64-bytestring + bytestring + HsOpenSSL + http-api-data + http-client + http-client-tls + http-media + mime-mail + monad-control + monad-logger mtl + RSA + servant + servant-client + text + time transformers + transformers-base + unix-time unordered-containers + wai + wai-extra + warp ]; - description = "Core module for Gore&Ash engine for GLFW input events"; - license = lib.licenses.bsd3; + description = "Google APIs for server to server applications"; + license = lib.licenses.mit; hydraPlatforms = lib.platforms.none; + broken = true; } ) { }; - "gore-and-ash-lambdacube" = callPackage ( + "google-static-maps" = callPackage ( { mkDerivation, + aeson, base, - containers, - deepseq, - exceptions, - gore-and-ash, - hashable, - lambdacube-compiler, - lambdacube-gl, - mtl, + base64-bytestring, + bytedump, + bytestring, + cryptonite, + double-conversion, + http-client, + JuicyPixels, + memory, + network-uri, + servant, + servant-client, + servant-JuicyPixels, text, - unordered-containers, + utf8-string, }: mkDerivation { - pname = "gore-and-ash-lambdacube"; - version = "0.2.0.0"; - sha256 = "0za002vs32khgbqjpxrxq9344aw2jfwk9c0c2kvw9kwf804vvhk2"; - isLibrary = true; - isExecutable = true; + pname = "google-static-maps"; + version = "0.7.0.3"; + sha256 = "11zmjyz7j41zi7h88gvjzfnky502f81079xnpsx71xhk1nm4b71x"; libraryHaskellDepends = [ + aeson base - containers - deepseq - exceptions - gore-and-ash - hashable - lambdacube-compiler - lambdacube-gl - mtl + base64-bytestring + bytedump + bytestring + cryptonite + double-conversion + http-client + JuicyPixels + memory + network-uri + servant + servant-client + servant-JuicyPixels text - unordered-containers + utf8-string ]; - description = "Core module for Gore&Ash engine that do something"; + description = "Bindings to the Google Maps Static API (formerly Static Maps API)"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; } ) { }; - "gore-and-ash-logging" = callPackage ( + "google-translate" = callPackage ( { mkDerivation, + aeson, base, - containers, - deepseq, - exceptions, - extra, - gore-and-ash, - hashable, - mtl, - resourcet, + bytestring, + http-api-data, + http-client, + servant, + servant-client, text, - text-show, transformers, - transformers-base, - unordered-containers, }: mkDerivation { - pname = "gore-and-ash-logging"; - version = "2.0.1.0"; - sha256 = "0j91lx7r71frk0mwkzhkppcwvcfyscrwrn9xb68lnl8kxjnjrqbc"; + pname = "google-translate"; + version = "0.5"; + sha256 = "09mkhbdfcyw2hiqlijnv0lwlk9rka64hqmx8jhrdyksgsz6hc6gl"; + revision = "1"; + editedCabalFile = "0qx4k19y0n9hvcjjgmklsnq79z3bjahskrc2cv44h68gc5dzy9gj"; libraryHaskellDepends = [ + aeson base - containers - deepseq - exceptions - extra - gore-and-ash - hashable - mtl - resourcet + bytestring + http-api-data + http-client + servant + servant-client text - text-show transformers - transformers-base - unordered-containers ]; - description = "Core module for gore-and-ash with logging utilities"; + description = "Google Translate API bindings"; license = lib.licenses.bsd3; hydraPlatforms = lib.platforms.none; + broken = true; } ) { }; - "gore-and-ash-network" = callPackage ( + "gopher-proxy" = callPackage ( { mkDerivation, + attoparsec, base, bytestring, - containers, - deepseq, - exceptions, - extra, - ghc-prim, - gore-and-ash, - gore-and-ash-logging, - hashable, - integer-gmp, - mtl, + directory, + errors, + http-types, + lucid, + mime-types, network, - resourcet, + optparse-applicative, text, - text-show, - transformers, - transformers-base, - typesafe-endian, - unordered-containers, + wai, + warp, }: mkDerivation { - pname = "gore-and-ash-network"; - version = "1.4.0.0"; - sha256 = "1kpybczpkwhydqphnxm32kj3izb8063c26846164a9amc0as3gni"; - libraryHaskellDepends = [ + pname = "gopher-proxy"; + version = "0.1.1.3"; + sha256 = "0pqsir7hpz2hfdczhvvnqh7rbckxkzj7fsdq6r27nm9ixf5kmwfb"; + isLibrary = false; + isExecutable = true; + enableSeparateDataOutput = true; + executableHaskellDepends = [ + attoparsec base bytestring - containers - deepseq - exceptions - extra - ghc-prim - gore-and-ash - gore-and-ash-logging - hashable - integer-gmp - mtl + directory + errors + http-types + lucid + mime-types network - resourcet + optparse-applicative text - text-show - transformers - transformers-base - typesafe-endian - unordered-containers + wai + warp ]; - description = "Core module for Gore&Ash engine with low level network API"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; + description = "proxy gopher over http"; + license = lib.licenses.gpl3Only; + mainProgram = "gopher-proxy"; + maintainers = [ lib.maintainers.sternenseemann ]; } ) { }; - "gore-and-ash-sdl" = callPackage ( + "gopro-plus" = callPackage ( { mkDerivation, + aeson, base, + bytestring, containers, - deepseq, exceptions, - gore-and-ash, + filepath, + generic-deriving, + generic-random, + HUnit, lens, - linear, + lens-aeson, + monad-logger, mtl, - resourcet, - sdl2, + QuickCheck, + quickcheck-instances, + random, + raw-strings-qq, + retry, + tasty, + tasty-discover, + tasty-hunit, + tasty-quickcheck, text, + time, transformers, - transformers-base, + unix, + unliftio, unordered-containers, + vector, + wreq, }: mkDerivation { - pname = "gore-and-ash-sdl"; - version = "2.1.1.0"; - sha256 = "1331i7aizkg5zp6gcap144jra5wqbsvyjkqv90892zr9q74bmhwb"; + pname = "gopro-plus"; + version = "0.6.6.7"; + sha256 = "005kdy8jvny75q4srphz5wvl3b2alkvj5kxlz5yp7qqiwvdgp0y4"; libraryHaskellDepends = [ + aeson base + bytestring containers - deepseq exceptions - gore-and-ash + filepath + generic-deriving + generic-random lens - linear + lens-aeson + monad-logger mtl - resourcet - sdl2 + QuickCheck + quickcheck-instances + random + retry text + time transformers - transformers-base + unix + unliftio unordered-containers + vector + wreq ]; - description = "Gore&Ash core module for integration with SDL library"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "gore-and-ash-sync" = callPackage ( - { - mkDerivation, - base, - bytestring, - cereal, - containers, - deepseq, - exceptions, - gore-and-ash, - gore-and-ash-actor, - gore-and-ash-logging, - gore-and-ash-network, - hashable, - mtl, - text, - unordered-containers, - }: - mkDerivation { - pname = "gore-and-ash-sync"; - version = "1.2.0.1"; - sha256 = "1p32yaa7x654zdvlps28hj9argq8vcnphzyi1iscdqcqh4c1kjg4"; - libraryHaskellDepends = [ + testHaskellDepends = [ + aeson base bytestring - cereal containers - deepseq exceptions - gore-and-ash - gore-and-ash-actor - gore-and-ash-logging - gore-and-ash-network - hashable + filepath + generic-deriving + generic-random + HUnit + lens + lens-aeson + monad-logger mtl + QuickCheck + quickcheck-instances + random + raw-strings-qq + retry + tasty + tasty-discover + tasty-hunit + tasty-quickcheck text + time + transformers + unix + unliftio unordered-containers + vector + wreq ]; - description = "Gore&Ash module for high level network synchronization"; + testToolDepends = [ tasty-discover ]; + description = "GoPro Plus Client API"; license = lib.licenses.bsd3; hydraPlatforms = lib.platforms.none; + broken = true; } ) { }; @@ -279035,64 +163069,6 @@ self: { } ) { }; - "gpah" = callPackage ( - { - mkDerivation, - base, - bytestring, - Cabal, - cmdargs, - containers, - csv, - deepseq, - directory, - filepath, - haskell-src-exts, - hint, - HTTP, - network, - process, - syb, - tar, - uniplate, - uu-parsinglib, - zlib, - }: - mkDerivation { - pname = "gpah"; - version = "0.0.2"; - sha256 = "1zwz065fdg3k09nh976igr90p1qpb397fyi7jh941c512m70qbxr"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - bytestring - Cabal - cmdargs - containers - csv - deepseq - directory - filepath - haskell-src-exts - hint - HTTP - network - process - syb - tar - uniplate - uu-parsinglib - zlib - ]; - description = "Generic Programming Use in Hackage"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "gpah"; - broken = true; - } - ) { }; - "gpcsets" = callPackage ( { mkDerivation, base }: mkDerivation { @@ -279241,109 +163217,6 @@ self: { } ) { }; - "gps" = callPackage ( - { - mkDerivation, - base, - gpx-conduit, - pretty, - prettyclass, - QuickCheck, - statistics, - test-framework, - test-framework-quickcheck2, - text, - time, - vector, - }: - mkDerivation { - pname = "gps"; - version = "1.2"; - sha256 = "1krq6sv9qblwqlx7j6gb5qfv5zarxlyvaj6svhd4n8f7pr5w510r"; - libraryHaskellDepends = [ - base - pretty - prettyclass - statistics - text - time - vector - ]; - testHaskellDepends = [ - base - gpx-conduit - QuickCheck - statistics - test-framework - test-framework-quickcheck2 - time - vector - ]; - description = "For manipulating GPS coordinates and trails"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "gps2htmlReport" = callPackage ( - { - mkDerivation, - base, - bytestring, - cairo, - Chart, - cmdargs, - colour, - data-accessor, - directory, - filepath, - gd, - gps, - GPX, - hsmagick, - html, - http-enumerator, - process, - random, - tar, - time, - xsd, - }: - mkDerivation { - pname = "gps2htmlReport"; - version = "0.3.1"; - sha256 = "1n6a1c6w3wmyaqan3ymlrk36h98yvy40wgwfdah4ayyxlsmvvxg8"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - bytestring - cairo - Chart - cmdargs - colour - data-accessor - directory - filepath - gd - gps - GPX - hsmagick - html - http-enumerator - process - random - tar - time - xsd - ]; - description = "GPS to HTML Summary Report"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "gps2htmlReport"; - } - ) { }; - "gpu-vulkan" = callPackage ( { mkDerivation, @@ -279841,45 +163714,6 @@ self: { } ) { }; - "gpx-conduit" = callPackage ( - { - mkDerivation, - attoparsec, - base, - conduit, - filepath, - monad-control, - old-locale, - text, - time, - void, - xml-conduit, - xml-types, - }: - mkDerivation { - pname = "gpx-conduit"; - version = "0.1.1"; - sha256 = "0ffb0npx0yb69qxdcdznxpw36zjp2za7vdpzy2r5l245y0xr7mj4"; - libraryHaskellDepends = [ - attoparsec - base - conduit - filepath - monad-control - old-locale - text - time - void - xml-conduit - xml-types - ]; - description = "Read GPX files using conduits"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "grab" = callPackage ( { mkDerivation, @@ -279939,87 +163773,6 @@ self: { } ) { }; - "graceful" = callPackage ( - { - mkDerivation, - base, - directory, - filepath, - hspec, - network, - process, - stm, - unix, - }: - mkDerivation { - pname = "graceful"; - version = "0.1.1.5"; - sha256 = "1kl4y01ny5w1y77r2jf830d7vd99by7frk106m2wc9nbl066mbhr"; - libraryHaskellDepends = [ - base - directory - network - stm - unix - ]; - testHaskellDepends = [ - base - directory - filepath - hspec - network - process - stm - unix - ]; - description = "Library to write graceful shutdown / upgrade service"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "grafana" = callPackage ( - { - mkDerivation, - aeson, - aeson-pretty, - base, - bytestring, - containers, - Diff, - tasty, - tasty-hunit, - text, - }: - mkDerivation { - pname = "grafana"; - version = "0.2"; - sha256 = "0aqg2ivbdm3459pa4077bhs6y3q9z3nwsajgp4b5ah3wnav1rn45"; - libraryHaskellDepends = [ - aeson - aeson-pretty - base - bytestring - containers - text - ]; - testHaskellDepends = [ - aeson - aeson-pretty - base - bytestring - Diff - tasty - tasty-hunit - ]; - description = "API for creating grafana dashboards represented as json"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "grafdhall" = callPackage ( { mkDerivation, @@ -280058,151 +163811,6 @@ self: { } ) { }; - "graflog" = callPackage ( - { - mkDerivation, - aeson, - base, - bytestring, - containers, - hspec, - mtl, - test-fixture, - text, - text-conversions, - }: - mkDerivation { - pname = "graflog"; - version = "6.1.5"; - sha256 = "1pbxygj4fbsyva0k8xkrpmksg20bn7hvjdiyjscsj842fd0lcy4f"; - libraryHaskellDepends = [ - aeson - base - bytestring - containers - mtl - text - text-conversions - ]; - testHaskellDepends = [ - aeson - base - containers - hspec - mtl - test-fixture - text - ]; - description = "Monadic correlated log events"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "grakn" = callPackage ( - { - mkDerivation, - aeson, - base, - containers, - hspec, - http-client, - http-media, - markdown-unlit, - MissingH, - mtl, - process, - QuickCheck, - regex-posix, - scientific, - servant, - servant-client, - text, - }: - mkDerivation { - pname = "grakn"; - version = "0.3.0"; - sha256 = "1difz80dv4ywyshsdd1i65x5kfb8ix9amh0gn7glcnlqgqjrn2jn"; - libraryHaskellDepends = [ - aeson - base - containers - http-client - http-media - mtl - process - regex-posix - scientific - servant - servant-client - text - ]; - testHaskellDepends = [ - aeson - base - containers - hspec - http-client - http-media - markdown-unlit - MissingH - mtl - process - QuickCheck - regex-posix - scientific - servant - servant-client - text - ]; - testToolDepends = [ markdown-unlit ]; - description = "A Haskell client for Grakn"; - license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "grammar-combinators" = callPackage ( - { - mkDerivation, - base, - containers, - enumerable, - fgl, - graphviz, - MaybeT, - mtl, - multirec, - parsec, - template-haskell, - text, - uu-parsinglib, - }: - mkDerivation { - pname = "grammar-combinators"; - version = "0.2.7"; - sha256 = "1z7i1270g919g1756wgfap2mfhvln13bhgya2pw4b9lbr5fphkdd"; - libraryHaskellDepends = [ - base - containers - enumerable - fgl - graphviz - MaybeT - mtl - multirec - parsec - template-haskell - text - uu-parsinglib - ]; - description = "A parsing library of context-free grammar combinators"; - license = "LGPL"; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "grammatical-parsers" = callPackage ( { mkDerivation, @@ -280324,158 +163932,6 @@ self: { } ) { }; - "grapefruit-examples" = callPackage ( - { - mkDerivation, - base, - colour, - containers, - fraction, - grapefruit-frp, - grapefruit-records, - grapefruit-ui, - }: - mkDerivation { - pname = "grapefruit-examples"; - version = "0.1.0.7"; - sha256 = "0517f70i8qiqfxkyp5nf4w6pcb9p4caz0jm43acfk8ingf1syljz"; - libraryHaskellDepends = [ - base - colour - containers - fraction - grapefruit-frp - grapefruit-records - grapefruit-ui - ]; - description = "Examples using the Grapefruit library"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "grapefruit-frp" = callPackage ( - { - mkDerivation, - arrows, - base, - containers, - fingertree, - semigroups, - TypeCompose, - }: - mkDerivation { - pname = "grapefruit-frp"; - version = "0.1.0.7"; - sha256 = "132jd2dxj964paz6dcyb6sx25dkv271rl2fgw05c7zawrrfnrkxs"; - revision = "1"; - editedCabalFile = "14qhyvsf7r04fwm1jwl41gdijx0vrqz7lsqy50hmzpcwixr92013"; - libraryHaskellDepends = [ - arrows - base - containers - fingertree - semigroups - TypeCompose - ]; - description = "Functional Reactive Programming core"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "grapefruit-records" = callPackage ( - { - mkDerivation, - arrows, - base, - grapefruit-frp, - }: - mkDerivation { - pname = "grapefruit-records"; - version = "0.1.0.7"; - sha256 = "0j1jy4rq11gk7j08cz7skdqlbnjrciiv0vi491lvmbbwmvf15cd6"; - libraryHaskellDepends = [ - arrows - base - grapefruit-frp - ]; - description = "A record system for Functional Reactive Programming"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "grapefruit-ui" = callPackage ( - { - mkDerivation, - arrows, - base, - colour, - containers, - fraction, - grapefruit-frp, - grapefruit-records, - }: - mkDerivation { - pname = "grapefruit-ui"; - version = "0.1.0.7"; - sha256 = "1r2wpn982z33s0p6fgdgslgv9ixanb2pysy71j20cfp1xzh13hdj"; - revision = "1"; - editedCabalFile = "0s61spgkw2h12g1wks5zxhrzpqqnmmxcw5kbirblyfl4p59pxpns"; - libraryHaskellDepends = [ - arrows - base - colour - containers - fraction - grapefruit-frp - grapefruit-records - ]; - description = "Declarative user interface programming"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "grapefruit-ui-gtk" = callPackage ( - { - mkDerivation, - base, - colour, - containers, - fraction, - glib, - grapefruit-frp, - grapefruit-records, - grapefruit-ui, - gtk3, - transformers, - }: - mkDerivation { - pname = "grapefruit-ui-gtk"; - version = "0.1.0.7"; - sha256 = "0ix6dilj3xv2cvihwq8cfykr8i1yq9w1bn86248r5bg5vhfn4g28"; - revision = "1"; - editedCabalFile = "0ahjd2sxh12hr8slz6vkc5gn2wr1h9dgq8q3kc9jq5xjzr66cgbk"; - libraryHaskellDepends = [ - base - colour - containers - fraction - glib - grapefruit-frp - grapefruit-records - grapefruit-ui - gtk3 - transformers - ]; - description = "GTK+-based backend for declarative user interface programming"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "grapesy" = callPackage ( { mkDerivation, @@ -280769,29 +164225,6 @@ self: { } ) { }; - "graph-matchings" = callPackage ( - { - mkDerivation, - base, - containers, - fgl, - }: - mkDerivation { - pname = "graph-matchings"; - version = "0.1.0.0"; - sha256 = "0dzkv13w06hkxg2vkbblpskvsq02c2ay06rw2j4vyjpw13hms5bv"; - libraryHaskellDepends = [ - base - containers - fgl - ]; - description = "An implementation of algorithms for matchings in graphs"; - license = lib.licenses.lgpl21Only; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "graph-rewriting" = callPackage ( { mkDerivation, @@ -280817,42 +164250,6 @@ self: { } ) { }; - "graph-rewriting-cl" = callPackage ( - { - mkDerivation, - base, - base-unicode-symbols, - GLUT, - graph-rewriting, - graph-rewriting-gl, - graph-rewriting-layout, - OpenGL, - parsec, - }: - mkDerivation { - pname = "graph-rewriting-cl"; - version = "0.2.2"; - sha256 = "0rwycs3vnzy9awm081h836136s2wjyk9qyhsx9j6z7y3lgsb2cr0"; - isLibrary = false; - isExecutable = true; - enableSeparateDataOutput = true; - executableHaskellDepends = [ - base - base-unicode-symbols - GLUT - graph-rewriting - graph-rewriting-gl - graph-rewriting-layout - OpenGL - parsec - ]; - description = "Interactive graph rewriting system implementing various well-known combinators"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "cl"; - } - ) { }; - "graph-rewriting-gl" = callPackage ( { mkDerivation, @@ -281092,31 +164489,6 @@ self: { } ) { }; - "graph-serialize" = callPackage ( - { - mkDerivation, - array, - base, - bytestring, - containers, - }: - mkDerivation { - pname = "graph-serialize"; - version = "0.2"; - sha256 = "1a9qq5gpyxg6j6ja3kjldnf11wywjvvxpwvgiahlsrmwfw2c8d74"; - libraryHaskellDepends = [ - array - base - bytestring - containers - ]; - description = "Serialization of data structures with references"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "graph-trace" = callPackage ( { mkDerivation, @@ -281223,63 +164595,6 @@ self: { } ) { }; - "graph-utils" = callPackage ( - { - mkDerivation, - base, - containers, - fgl, - mtl, - parsec, - syb, - template-haskell, - }: - mkDerivation { - pname = "graph-utils"; - version = "0.3.7"; - sha256 = "06wl6i8z0gfndr96g5ps11h877rbwvi1d9cbbr3d2whvbcsyclsf"; - libraryHaskellDepends = [ - base - containers - fgl - mtl - parsec - syb - template-haskell - ]; - description = "A simple wrapper & quasi quoter for fgl"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "graph-visit" = callPackage ( - { - mkDerivation, - base, - containers, - data-lens, - data-lens-template, - mtl, - }: - mkDerivation { - pname = "graph-visit"; - version = "0.1.0.2"; - sha256 = "0afj0wqpk549n0xs4vqcblrxs1d6knmxcldfnmz5vy2da5zlfn0q"; - libraryHaskellDepends = [ - base - containers - data-lens - data-lens-template - mtl - ]; - description = "Graph walk abstraction"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "graph-wrapper" = callPackage ( { mkDerivation, @@ -281312,200 +164627,6 @@ self: { } ) { }; - "graphbuilder" = callPackage ( - { - mkDerivation, - base, - containers, - mtl, - QuickCheck, - test-framework, - test-framework-quickcheck2, - }: - mkDerivation { - pname = "graphbuilder"; - version = "0.1.0.0"; - sha256 = "0zhjzb53qaj6dy6ncqjaxdfrs2hwfy4g9czybpsgnbniqm07i22b"; - libraryHaskellDepends = [ - base - containers - mtl - ]; - testHaskellDepends = [ - base - containers - mtl - QuickCheck - test-framework - test-framework-quickcheck2 - ]; - description = "A declarative, monadic graph construction language for small graphs"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "graphene" = callPackage ( - { - mkDerivation, - base, - bifunctors, - containers, - hashable, - lens-family, - lens-family-core, - mtl, - transformers, - }: - mkDerivation { - pname = "graphene"; - version = "0.1.0.4"; - sha256 = "09q57hqf3s29y3b6wn79wa9ksm5r2p75ww3kpwqmigvngy4sz006"; - libraryHaskellDepends = [ - base - bifunctors - containers - hashable - lens-family - lens-family-core - mtl - transformers - ]; - description = "A minimal Graph Theory library"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "graphics-drawingcombinators" = callPackage ( - { - mkDerivation, - base, - bitmap, - bitmap-opengl, - FTGL, - OpenGL, - stb-image, - }: - mkDerivation { - pname = "graphics-drawingcombinators"; - version = "1.5.1"; - sha256 = "0j0ilr54pdz61c78khy8bm37g89cvk1n56h5d6c55jabsv5gx3sf"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - bitmap - bitmap-opengl - FTGL - OpenGL - stb-image - ]; - description = "A functional interface to 2D drawing in OpenGL"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "graphics-formats-collada" = callPackage ( - { - mkDerivation, - base, - bitmap-opengl, - containers, - hxt, - OpenGL, - stb-image, - transformers, - }: - mkDerivation { - pname = "graphics-formats-collada"; - version = "0.3.1"; - sha256 = "1kfx1c2x8v2i7ckhjiqv7ghhn44w7fscghxkn1iqkp3mj1p3xvbv"; - libraryHaskellDepends = [ - base - bitmap-opengl - containers - hxt - OpenGL - stb-image - transformers - ]; - description = "Load 3D geometry in the COLLADA format"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "graphicsFormats" = callPackage ( - { - mkDerivation, - base, - haskell98, - OpenGL, - QuickCheck, - }: - mkDerivation { - pname = "graphicsFormats"; - version = "0.1"; - sha256 = "0bcqj0n8qqaqfrn21qgkf8si5qgxl3qlsc8djy0rqhnfi2grb8nh"; - libraryHaskellDepends = [ - base - haskell98 - OpenGL - QuickCheck - ]; - description = "Classes for renderable objects"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "graphicstools" = callPackage ( - { - mkDerivation, - base, - bindings-DSL, - containers, - CV, - directory, - ghc-prim, - wx, - wxcore, - }: - mkDerivation { - pname = "graphicstools"; - version = "0.2.2"; - sha256 = "0hcz8w6yf7dls4sv0i5kihs22ysv0dl63q5bs5y4hgv6d747psp8"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - bindings-DSL - containers - CV - directory - ghc-prim - wx - wxcore - ]; - executableHaskellDepends = [ - base - CV - wx - wxcore - ]; - description = "Tools for creating graphical UIs, based on wxHaskell"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "cvexample"; - } - ) { }; - "graphite" = callPackage ( { mkDerivation, @@ -281596,43 +164717,6 @@ self: { } ) { }; - "graphmod-plugin" = callPackage ( - { - mkDerivation, - base, - containers, - directory, - dotgen, - filepath, - ghc, - syb, - template-haskell, - }: - mkDerivation { - pname = "graphmod-plugin"; - version = "0.1.0.0"; - sha256 = "0p95zr37mkvh7gsyj7wkzc3lqqbbkz7jh33jg123hz6qili2hziw"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - containers - directory - dotgen - filepath - ghc - syb - template-haskell - ]; - executableHaskellDepends = [ base ]; - description = "A reimplementation of graphmod as a source plugin"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "graphmod-plugin"; - broken = true; - } - ) { }; - "graphql" = callPackage ( { mkDerivation, @@ -281688,82 +164772,6 @@ self: { } ) { }; - "graphql-api" = callPackage ( - { - mkDerivation, - aeson, - attoparsec, - base, - containers, - criterion, - directory, - doctest, - exceptions, - ghc-prim, - hspec, - protolude, - QuickCheck, - raw-strings-qq, - scientific, - text, - transformers, - }: - mkDerivation { - pname = "graphql-api"; - version = "0.4.0"; - sha256 = "0sy7k3bhks91kb6mx0ws7kwrsd44fmwdyj0l3a2jnq6jk492wl7f"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson - attoparsec - base - containers - exceptions - ghc-prim - protolude - QuickCheck - scientific - text - transformers - ]; - executableHaskellDepends = [ - aeson - attoparsec - base - exceptions - protolude - transformers - ]; - testHaskellDepends = [ - aeson - attoparsec - base - containers - directory - doctest - exceptions - hspec - protolude - QuickCheck - raw-strings-qq - transformers - ]; - benchmarkHaskellDepends = [ - attoparsec - base - criterion - exceptions - protolude - transformers - ]; - description = "GraphQL API"; - license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "graphql-client" = callPackage ( { mkDerivation, @@ -281976,58 +164984,6 @@ self: { } ) { }; - "graphted" = callPackage ( - { - mkDerivation, - base, - indexed, - }: - mkDerivation { - pname = "graphted"; - version = "0.3.1.0"; - sha256 = "0y2nqsygqcxb0w7x1irikqqx10m209nihqmxqy1s18snrlvh06c9"; - libraryHaskellDepends = [ - base - indexed - ]; - description = "Graph indexed monads"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "graphtype" = callPackage ( - { - mkDerivation, - base, - containers, - dotgen, - haskell-src-exts, - haskell98, - uniplate, - }: - mkDerivation { - pname = "graphtype"; - version = "0.2.0"; - sha256 = "13nblgd4b3pwpw8idvbd54fq2lf233vj8gvsl0qr381lsvj69fbi"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - containers - dotgen - haskell-src-exts - haskell98 - uniplate - ]; - description = "A simple tool to illustrate dependencies between Haskell types"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "graphtype"; - } - ) { }; - "graphula" = callPackage ( { mkDerivation, @@ -282312,112 +165268,6 @@ self: { } ) { }; - "graql" = callPackage ( - { - mkDerivation, - aeson, - base, - containers, - hspec, - markdown-unlit, - process, - regex-posix, - scientific, - text, - }: - mkDerivation { - pname = "graql"; - version = "0.1.1"; - sha256 = "002qqwg6fy6cmh3sy6dfp7inyai4fplc6xq0yf73q9za4z9zqwr1"; - libraryHaskellDepends = [ - aeson - base - containers - process - regex-posix - scientific - text - ]; - testHaskellDepends = [ - base - hspec - markdown-unlit - text - ]; - testToolDepends = [ markdown-unlit ]; - description = "Execute Graql queries on a Grakn graph"; - license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "grasp" = callPackage ( - { - mkDerivation, - base, - clock, - directory, - extra, - filepath, - hashable, - lens, - megaparsec, - MonadRandom, - mtl, - pcre-heavy, - primitive, - process, - random-shuffle, - safe, - split, - system-filepath, - text, - transformers, - turtle, - unordered-containers, - vector, - }: - mkDerivation { - pname = "grasp"; - version = "0.1.0.0"; - sha256 = "0bssmfb5skkvh1brpv96d5yyn2bzs87hrmav09dnazy9h7ibm8jl"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - clock - directory - extra - filepath - hashable - lens - megaparsec - MonadRandom - mtl - pcre-heavy - primitive - process - random-shuffle - safe - split - system-filepath - text - transformers - turtle - unordered-containers - vector - ]; - executableHaskellDepends = [ base ]; - testHaskellDepends = [ base ]; - description = "GRASP implementation for the AMMM project"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "grasp-exe"; - broken = true; - } - ) { }; - "gravatar" = callPackage ( { mkDerivation, @@ -282454,28 +165304,6 @@ self: { } ) { }; - "gray-code" = callPackage ( - { - mkDerivation, - base, - QuickCheck, - }: - mkDerivation { - pname = "gray-code"; - version = "0.3.1"; - sha256 = "0b0pm24mxjsxg95q6yisr9pa0jfklsfw66cicryib42czvv083av"; - libraryHaskellDepends = [ base ]; - testHaskellDepends = [ - base - QuickCheck - ]; - description = "Gray code encoder/decoder"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "gray-extended" = callPackage ( { mkDerivation, @@ -282500,60 +165328,6 @@ self: { } ) { }; - "graylog" = callPackage ( - { - mkDerivation, - aeson, - aeson-casing, - base, - bytestring, - file-embed, - network, - random, - scientific, - tasty, - tasty-hunit, - text, - time, - vector, - }: - mkDerivation { - pname = "graylog"; - version = "0.1.0.1"; - sha256 = "10h0d87gvvg4bznnlj9ad0ppjz0nibmcrrlmrcwjrl583pk7709d"; - libraryHaskellDepends = [ - aeson - aeson-casing - base - bytestring - network - random - scientific - text - time - vector - ]; - testHaskellDepends = [ - aeson - aeson-casing - base - bytestring - file-embed - network - scientific - tasty - tasty-hunit - text - time - vector - ]; - description = "Support for graylog output"; - license = "unknown"; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "greencard" = callPackage ( { mkDerivation, @@ -282585,33 +165359,6 @@ self: { } ) { }; - "greencard-lib" = callPackage ( - { - mkDerivation, - array, - base, - containers, - greencard, - pretty, - }: - mkDerivation { - pname = "greencard-lib"; - version = "3.0.1"; - sha256 = "1a8h36kclb5db7kfy1pb4h2pwy6a6wwnjpm21xzvc9fjx9vj44kd"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - array - base - containers - greencard - pretty - ]; - description = "A foreign function interface pre-processor library for Haskell"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "greenclip" = callPackage ( @@ -282685,210 +165432,6 @@ self: { xdmcp = null; }; - "greg-client" = callPackage ( - { - mkDerivation, - base, - binary, - bytestring, - clock, - hostname, - network, - stm, - system-uuid, - time, - }: - mkDerivation { - pname = "greg-client"; - version = "1.0.2"; - sha256 = "1p645qgn5i194mna20ariypxp0dci7lzyxhszmnyylpd0icyg4in"; - libraryHaskellDepends = [ - base - binary - bytestring - clock - hostname - network - stm - system-uuid - time - ]; - description = "A scalable distributed logger with a high-precision global time axis"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "gremlin-haskell" = callPackage ( - { - mkDerivation, - aeson, - aeson-qq, - base, - containers, - hspec, - lens, - lens-aeson, - mtl, - stm, - text, - transformers, - unordered-containers, - uuid, - websockets, - }: - mkDerivation { - pname = "gremlin-haskell"; - version = "0.1.0.2"; - sha256 = "1ajkhgb7pi17rygvshxdsq2ny948zxysxrqgqf4mshwwn2gwacry"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson - aeson-qq - base - containers - lens - mtl - stm - text - transformers - uuid - websockets - ]; - executableHaskellDepends = [ - aeson - base - lens - lens-aeson - mtl - text - unordered-containers - ]; - testHaskellDepends = [ - aeson-qq - base - hspec - lens - lens-aeson - mtl - ]; - description = "Graph database client for TinkerPop3 Gremlin Server"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "gremlin-haskell-examples"; - broken = true; - } - ) { }; - - "grenade" = callPackage ( - { - mkDerivation, - ad, - base, - bytestring, - cereal, - constraints, - containers, - criterion, - deepseq, - exceptions, - hedgehog, - hmatrix, - MonadRandom, - mtl, - primitive, - random, - reflection, - singletons, - text, - transformers, - typelits-witnesses, - vector, - }: - mkDerivation { - pname = "grenade"; - version = "0.1.0"; - sha256 = "1xy5ybc2g5wsd8zljflh95mn5maald21v77ckzgg4hvrb2j98z4v"; - libraryHaskellDepends = [ - base - bytestring - cereal - containers - deepseq - exceptions - hmatrix - MonadRandom - mtl - primitive - singletons - text - vector - ]; - testHaskellDepends = [ - ad - base - constraints - hedgehog - hmatrix - MonadRandom - mtl - random - reflection - singletons - text - transformers - typelits-witnesses - vector - ]; - benchmarkHaskellDepends = [ - base - bytestring - criterion - hmatrix - ]; - description = "Practical Deep Learning in Haskell"; - license = lib.licenses.bsd2; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "greplicate" = callPackage ( - { - mkDerivation, - base, - directory, - doctest, - filepath, - lens, - QuickCheck, - template-haskell, - }: - mkDerivation { - pname = "greplicate"; - version = "0.0.2"; - sha256 = "1r9wfll5zi31pfgk16njx0f04h99838vbdvbsv9h8q3fb27nngf7"; - libraryHaskellDepends = [ - base - lens - ]; - testHaskellDepends = [ - base - directory - doctest - filepath - QuickCheck - template-haskell - ]; - description = "Generalised replicate functions"; - license = "unknown"; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "greskell" = callPackage ( { mkDerivation, @@ -283178,38 +165721,6 @@ self: { } ) { }; - "gridbounds" = callPackage ( - { - mkDerivation, - base, - earclipper, - gjk, - gridbox, - hspec, - }: - mkDerivation { - pname = "gridbounds"; - version = "0.0.0.1"; - sha256 = "1shycjhis1hsyw8qxm6jfrh03q507rj85689733hrv46c9z022hh"; - libraryHaskellDepends = [ - base - earclipper - gjk - gridbox - ]; - testHaskellDepends = [ - base - earclipper - gjk - gridbox - hspec - ]; - description = "Collision detection for GridBox"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "gridbox" = callPackage ( { mkDerivation, @@ -283230,151 +165741,6 @@ self: { } ) { }; - "gridfs" = callPackage ( - { - mkDerivation, - base, - bson, - bytestring, - conduit, - conduit-extra, - monad-control, - mongoDB, - mtl, - pureMD5, - resourcet, - tagged, - text, - time, - transformers, - }: - mkDerivation { - pname = "gridfs"; - version = "0.1.0.2"; - sha256 = "1ia8qbijqibd4j9g6p1r091pi1j86fmr8zvfymh3fvjq3gchy8z5"; - libraryHaskellDepends = [ - base - bson - bytestring - conduit - conduit-extra - monad-control - mongoDB - mtl - pureMD5 - resourcet - tagged - text - time - transformers - ]; - description = "GridFS (MongoDB file storage) implementation"; - license = "unknown"; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "gridland" = callPackage ( - { - mkDerivation, - array, - astar, - base, - containers, - grid, - htiled, - mtl, - random, - safe, - SDL, - SDL-gfx, - SDL-image, - SDL-mixer, - tuple, - vector, - }: - mkDerivation { - pname = "gridland"; - version = "0.1.0.3"; - sha256 = "0q5p73n6h5ngg992f1msdqzxds2baafjypdx53zf2rdhbqp4fdi9"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - array - astar - base - containers - grid - htiled - mtl - random - safe - SDL - SDL-gfx - SDL-image - SDL-mixer - tuple - vector - ]; - description = "Grid-based multimedia engine"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "grids" = callPackage ( - { - mkDerivation, - adjunctions, - base, - comonad, - deepseq, - distributive, - gauge, - hspec, - singletons, - vector, - }: - mkDerivation { - pname = "grids"; - version = "0.5.0.1"; - sha256 = "0ji1j40jriixli0l2gn74wnkbjkrdzmgrgn493vla92492i5rgzf"; - libraryHaskellDepends = [ - adjunctions - base - comonad - deepseq - distributive - singletons - vector - ]; - testHaskellDepends = [ - adjunctions - base - comonad - deepseq - distributive - hspec - singletons - vector - ]; - benchmarkHaskellDepends = [ - adjunctions - base - comonad - deepseq - distributive - gauge - singletons - vector - ]; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "gridtables" = callPackage ( { mkDerivation, @@ -283442,422 +165808,156 @@ self: { stm, template-haskell, test-framework, - test-framework-hunit, - test-framework-quickcheck2, - text, - th-abstraction, - th-compat, - th-lift-instances, - transformers, - unordered-containers, - vector, - }: - mkDerivation { - pname = "grisette"; - version = "0.13.0.1"; - sha256 = "0lid92s0si7l0phmba23m5yrsf1gjyxp7sbpzbwi3cbxqsapjid5"; - libraryHaskellDepends = [ - array - async - atomic-primops - base - binary - bytes - bytestring - cereal - cereal-text - containers - deepseq - generic-deriving - hashable - libBF - loch-th - mtl - parallel - prettyprinter - QuickCheck - sbv - stm - template-haskell - text - th-abstraction - th-compat - th-lift-instances - transformers - unordered-containers - vector - ]; - testHaskellDepends = [ - array - async - atomic-primops - base - binary - bytes - bytestring - cereal - cereal-text - containers - deepseq - doctest - generic-deriving - hashable - HUnit - libBF - loch-th - mtl - parallel - prettyprinter - QuickCheck - sbv - stm - template-haskell - test-framework - test-framework-hunit - test-framework-quickcheck2 - text - th-abstraction - th-compat - th-lift-instances - transformers - unordered-containers - vector - ]; - description = "Symbolic evaluation as a library"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "grisette-monad-coroutine" = callPackage ( - { - mkDerivation, - base, - grisette, - HUnit, - monad-coroutine, - mtl, - QuickCheck, - test-framework, - test-framework-hunit, - test-framework-quickcheck2, - transformers, - }: - mkDerivation { - pname = "grisette-monad-coroutine"; - version = "0.2.0.0"; - sha256 = "0zpv4dkns025jjg8pzj6kxk43w1bp08zk3mhpr3vp5zrq4m0wsj1"; - libraryHaskellDepends = [ - base - grisette - monad-coroutine - mtl - transformers - ]; - testHaskellDepends = [ - base - grisette - HUnit - monad-coroutine - mtl - QuickCheck - test-framework - test-framework-hunit - test-framework-quickcheck2 - transformers - ]; - description = "Support for monad-coroutine package with Grisette"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "grm" = callPackage ( - { - mkDerivation, - base, - Cabal, - cmdargs, - directory, - filepath, - happy, - parsec, - process, - syb, - wl-pprint, - }: - mkDerivation { - pname = "grm"; - version = "0.1.1"; - sha256 = "1za45931c6avyqxb6dwiafl739fmwdk68kxpk13zkv0jwxxpp9px"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - directory - filepath - process - syb - wl-pprint - ]; - executableHaskellDepends = [ - base - Cabal - cmdargs - directory - filepath - parsec - process - syb - wl-pprint - ]; - executableToolDepends = [ happy ]; - description = "grm grammar converter"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "grm"; - broken = true; - } - ) { }; - - "groom" = callPackage ( - { - mkDerivation, - base, - haskell-src-exts, - }: - mkDerivation { - pname = "groom"; - version = "0.1.2.1"; - sha256 = "17g51p15209wwgq83clsd97xvy4kchbx8jzh74qgc9hvmz9s9d56"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - haskell-src-exts - ]; - executableHaskellDepends = [ base ]; - description = "Pretty printing for well-behaved Show instances"; - license = lib.licenses.bsd3; - mainProgram = "groom"; - } - ) { }; - - "groot" = callPackage ( - { - mkDerivation, - aeson, - amazonka, - amazonka-autoscaling, - amazonka-core, - amazonka-ec2, - amazonka-ecs, - ansi-terminal, - attoparsec, - base, - bytestring, - checkers, - conduit, - conduit-combinators, - directory, - exceptions, - free, - hashable, - hspec, - http-conduit, - http-types, - ini, - lens, - lifted-base, - mmorph, - monad-control, - mtl, - optparse-applicative, - pptable, - prettyprinter, - prettyprinter-ansi-terminal, - prettyprinter-compat-ansi-wl-pprint, - QuickCheck, - quickcheck-text, - resourcet, - stm, - stm-chans, - stm-conduit, - stm-delay, + test-framework-hunit, + test-framework-quickcheck2, text, - these, - time, + th-abstraction, + th-compat, + th-lift-instances, transformers, unordered-containers, - uuid, vector, - yaml, }: mkDerivation { - pname = "groot"; - version = "0.0.1.0"; - sha256 = "04klrvsc0j16zhv5a1b80gmv91p0xlbp22ylq1cfh8qbbp5mpf5a"; - isLibrary = true; - isExecutable = true; + pname = "grisette"; + version = "0.13.0.1"; + sha256 = "0lid92s0si7l0phmba23m5yrsf1gjyxp7sbpzbwi3cbxqsapjid5"; libraryHaskellDepends = [ - aeson - amazonka - amazonka-autoscaling - amazonka-core - amazonka-ec2 - amazonka-ecs - ansi-terminal - attoparsec + array + async + atomic-primops base + binary + bytes bytestring - conduit - conduit-combinators - directory - exceptions - free + cereal + cereal-text + containers + deepseq + generic-deriving hashable - http-conduit - http-types - ini - lens - lifted-base - mmorph - monad-control + libBF + loch-th mtl - optparse-applicative - pptable + parallel prettyprinter - prettyprinter-ansi-terminal - prettyprinter-compat-ansi-wl-pprint - resourcet - stm - stm-chans - stm-conduit - stm-delay - text - these - time - transformers - unordered-containers - uuid - vector - yaml - ]; - executableHaskellDepends = [ - aeson - amazonka - amazonka-autoscaling - amazonka-core - amazonka-ec2 - amazonka-ecs - attoparsec - base - bytestring - conduit - conduit-combinators - directory - exceptions - free - hashable - http-conduit - http-types - lens - lifted-base - mmorph - monad-control - mtl - resourcet + QuickCheck + sbv stm - stm-chans - stm-conduit - stm-delay + template-haskell text - these - time + th-abstraction + th-compat + th-lift-instances transformers unordered-containers - uuid vector - yaml ]; testHaskellDepends = [ - aeson - amazonka - amazonka-autoscaling - amazonka-core - amazonka-ec2 - amazonka-ecs - attoparsec + array + async + atomic-primops base + binary + bytes bytestring - checkers - conduit - conduit-combinators - directory - exceptions - free + cereal + cereal-text + containers + deepseq + doctest + generic-deriving hashable - hspec - http-conduit - http-types - lens - lifted-base - mmorph - monad-control + HUnit + libBF + loch-th mtl + parallel + prettyprinter QuickCheck - quickcheck-text - resourcet + sbv stm - stm-chans - stm-conduit - stm-delay + template-haskell + test-framework + test-framework-hunit + test-framework-quickcheck2 text - these - time + th-abstraction + th-compat + th-lift-instances transformers unordered-containers - uuid vector - yaml ]; - description = "Command line utility to manage AWS ECS resources"; - license = lib.licenses.asl20; + description = "Symbolic evaluation as a library"; + license = lib.licenses.bsd3; hydraPlatforms = lib.platforms.none; - mainProgram = "groot"; - broken = true; } ) { }; - "gross" = callPackage ( + "grisette-monad-coroutine" = callPackage ( { mkDerivation, base, - lens, + grisette, + HUnit, + monad-coroutine, mtl, - ncurses, + QuickCheck, + test-framework, + test-framework-hunit, + test-framework-quickcheck2, + transformers, }: mkDerivation { - pname = "gross"; - version = "0.1.0.0"; - sha256 = "0g3qjn6q2b34hdvsqc45ypzxah6h89yjdnijj459c2jrabvqsikn"; - isLibrary = true; - isExecutable = true; + pname = "grisette-monad-coroutine"; + version = "0.2.0.0"; + sha256 = "0zpv4dkns025jjg8pzj6kxk43w1bp08zk3mhpr3vp5zrq4m0wsj1"; libraryHaskellDepends = [ base + grisette + monad-coroutine mtl - ncurses + transformers ]; - executableHaskellDepends = [ + testHaskellDepends = [ base - lens + grisette + HUnit + monad-coroutine mtl - ncurses + QuickCheck + test-framework + test-framework-hunit + test-framework-quickcheck2 + transformers ]; - description = "A spoof on gloss for terminal animation"; - license = lib.licenses.mit; + description = "Support for monad-coroutine package with Grisette"; + license = lib.licenses.bsd3; hydraPlatforms = lib.platforms.none; - mainProgram = "example"; + } + ) { }; + + "groom" = callPackage ( + { + mkDerivation, + base, + haskell-src-exts, + }: + mkDerivation { + pname = "groom"; + version = "0.1.2.1"; + sha256 = "17g51p15209wwgq83clsd97xvy4kchbx8jzh74qgc9hvmz9s9d56"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + base + haskell-src-exts + ]; + executableHaskellDepends = [ base ]; + description = "Pretty printing for well-behaved Show instances"; + license = lib.licenses.bsd3; + mainProgram = "groom"; } ) { }; @@ -283910,107 +166010,6 @@ self: { } ) { }; - "groundhog-converters" = callPackage ( - { - mkDerivation, - aeson, - base, - bimap, - bytestring, - containers, - groundhog, - groundhog-sqlite, - groundhog-th, - tasty, - tasty-hunit, - tasty-quickcheck, - }: - mkDerivation { - pname = "groundhog-converters"; - version = "0.1.0"; - sha256 = "1vchgw71pkxh013p0yg7sr7imb9qxjx2rcmx9mbglcszp8x22krr"; - libraryHaskellDepends = [ - aeson - base - bimap - bytestring - containers - ]; - testHaskellDepends = [ - aeson - base - bimap - bytestring - containers - groundhog - groundhog-sqlite - groundhog-th - tasty - tasty-hunit - tasty-quickcheck - ]; - description = "Extended Converter Library for groundhog embedded types"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "groundhog-inspector" = callPackage ( - { - mkDerivation, - aeson-pretty, - base, - bytestring, - cmdargs, - containers, - groundhog, - groundhog-sqlite, - groundhog-th, - mtl, - regex-compat, - syb, - template-haskell, - text, - time, - transformers, - }: - mkDerivation { - pname = "groundhog-inspector"; - version = "0.11.0"; - sha256 = "19lvwfg655dg0v6ny64hhdlbdj38w5dbn988kzjyshdjmisswy1r"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson-pretty - base - bytestring - containers - groundhog - groundhog-th - regex-compat - syb - template-haskell - text - time - transformers - ]; - executableHaskellDepends = [ - base - bytestring - cmdargs - containers - groundhog - groundhog-sqlite - groundhog-th - mtl - ]; - description = "Type-safe datatype-database mapping library"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "groundhog_inspector"; - } - ) { }; - "groundhog-mysql" = callPackage ( { mkDerivation, @@ -284239,76 +166238,6 @@ self: { } ) { }; - "group-with" = callPackage ( - { - mkDerivation, - base, - Cabal, - containers, - hspec, - hspec-expectations, - QuickCheck, - }: - mkDerivation { - pname = "group-with"; - version = "0.2.0.3"; - sha256 = "1pj28cjb6lbymp8vvg2j14biqkrlvl2s281my5n77bckvc09f5zb"; - libraryHaskellDepends = [ - base - containers - ]; - testHaskellDepends = [ - base - Cabal - containers - hspec - hspec-expectations - QuickCheck - ]; - description = "Classify objects by key-generating function, like SQL GROUP BY"; - license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "groupBy" = callPackage ( - { - mkDerivation, - base, - code-page, - criterion, - doctest, - optparse-applicative, - QuickCheck, - random, - utility-ht, - }: - mkDerivation { - pname = "groupBy"; - version = "0.1.0.0"; - sha256 = "1w8spv6fhwhfdr6azlfgnjs8dqcyk8sn27hnk2wyi7gpy9zzhxw0"; - libraryHaskellDepends = [ base ]; - testHaskellDepends = [ - base - doctest - QuickCheck - ]; - benchmarkHaskellDepends = [ - base - code-page - criterion - optparse-applicative - random - utility-ht - ]; - description = "Replacement definition of Data.List.GroupBy"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "grouped-list" = callPackage ( { mkDerivation, @@ -284490,124 +166419,6 @@ self: { } ) { }; - "growler" = callPackage ( - { - mkDerivation, - aeson, - base, - blaze-builder, - bytestring, - case-insensitive, - either, - http-types, - lens, - monad-control, - mtl, - pipes, - pipes-aeson, - pipes-wai, - regex-compat, - text, - transformers, - transformers-base, - unordered-containers, - vector, - wai, - wai-extra, - warp, - }: - mkDerivation { - pname = "growler"; - version = "0.6.0"; - sha256 = "0skykz2p0kcs8g1vq7832h7fnw193hpq4pplkcaxazg8z97k8q75"; - libraryHaskellDepends = [ - aeson - base - blaze-builder - bytestring - case-insensitive - either - http-types - lens - monad-control - mtl - pipes - pipes-aeson - pipes-wai - regex-compat - text - transformers - transformers-base - unordered-containers - vector - wai - wai-extra - warp - ]; - description = "A revised version of the scotty library that attempts to be simpler and more performant"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "grpc-api-etcd" = callPackage ( - { - mkDerivation, - base, - proto-lens, - proto-lens-runtime, - }: - mkDerivation { - pname = "grpc-api-etcd"; - version = "0.2.0.0"; - sha256 = "1ymvgsrqhnym2wv5j8mbhh8i3r7y0jcz19k927qmffqk7sacfxg1"; - libraryHaskellDepends = [ - base - proto-lens - proto-lens-runtime - ]; - description = "Generated messages and instances for etcd gRPC"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "grpc-etcd-client" = callPackage ( - { - mkDerivation, - base, - bytestring, - grpc-api-etcd, - http2-client, - http2-client-grpc, - lens, - network, - proto-lens, - proto-lens-runtime, - }: - mkDerivation { - pname = "grpc-etcd-client"; - version = "0.1.2.0"; - sha256 = "0ly24551b54cpzh05rmn9j6xl3qb3wi456yv45c69sv7i8jq63zf"; - libraryHaskellDepends = [ - base - bytestring - grpc-api-etcd - http2-client - http2-client-grpc - lens - network - proto-lens - proto-lens-runtime - ]; - description = "gRPC client for etcd"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "grpc-haskell" = callPackage ( { mkDerivation, @@ -284855,104 +166666,6 @@ self: { } ) { }; - "gruff" = callPackage ( - { - mkDerivation, - base, - bytestring, - containers, - directory, - filepath, - FTGL, - gtk, - gtkglext, - mtl, - old-locale, - OpenGL, - OpenGLRaw, - parallel, - qd, - qd-vec, - ruff, - time, - Vec, - }: - mkDerivation { - pname = "gruff"; - version = "0.4"; - sha256 = "02xspk67jy5bhdmbhgk924sqn565aprkvm0sfv1sgmc836qg625f"; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base - ruff - ]; - executableHaskellDepends = [ - base - bytestring - containers - directory - filepath - FTGL - gtk - gtkglext - mtl - old-locale - OpenGL - OpenGLRaw - parallel - qd - qd-vec - ruff - time - Vec - ]; - description = "fractal explorer GUI using the ruff library"; - license = lib.licenses.gpl2Only; - hydraPlatforms = lib.platforms.none; - mainProgram = "gruff"; - } - ) { }; - - "gruff-examples" = callPackage ( - { - mkDerivation, - base, - containers, - data-memocombinators, - filepath, - gruff, - qd, - qd-vec, - random, - ruff, - Vec, - }: - mkDerivation { - pname = "gruff-examples"; - version = "0.4"; - sha256 = "10jlssjfp4zpv2jdbggcg6lsxjpi9b3ikpg037dgpy4iqnaqri35"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - containers - data-memocombinators - filepath - gruff - qd - qd-vec - random - ruff - Vec - ]; - description = "Mandelbrot Set examples using ruff and gruff"; - license = lib.licenses.gpl2Only; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "gruvbox-colors" = callPackage ( { mkDerivation, base }: mkDerivation { @@ -284992,26 +166705,6 @@ self: { } ) { inherit (pkgs) gsasl; }; - "gsc-weighting" = callPackage ( - { - mkDerivation, - base, - hierarchical-clustering, - }: - mkDerivation { - pname = "gsc-weighting"; - version = "0.2.2"; - sha256 = "0y80j5qk601c965assl8d91k9bpvzijn2z0w64n2ksij9lm6b8p5"; - libraryHaskellDepends = [ - base - hierarchical-clustering - ]; - description = "Generic implementation of Gerstein/Sonnhammer/Chothia weighting"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "gscholar-rss" = callPackage ( { mkDerivation, @@ -285042,57 +166735,10 @@ self: { license = lib.licenses.gpl3Only; hydraPlatforms = lib.platforms.none; mainProgram = "gscholar-rss"; - } - ) { }; - - "gsl-random" = callPackage ( - { - mkDerivation, - base, - Cabal, - vector, - }: - mkDerivation { - pname = "gsl-random"; - version = "0.5.3"; - sha256 = "08jrxpgshvygw7m91nvnwynyrrn94iw6k6gp24fzwdkv8dayzqb2"; - setupHaskellDepends = [ - base - Cabal - ]; - libraryHaskellDepends = [ - base - vector - ]; - description = "Bindings the the GSL random number generation facilities"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; broken = true; } ) { }; - "gsl-random-fu" = callPackage ( - { - mkDerivation, - base, - gsl-random, - random-fu, - }: - mkDerivation { - pname = "gsl-random-fu"; - version = "0.0.0.1"; - sha256 = "1qf5m3zksn16mlgavrwbq6yd1mbyafy27qf1ws4nmkxl8ci0k48i"; - libraryHaskellDepends = [ - base - gsl-random - random-fu - ]; - description = "Instances for using gsl-random with random-fu"; - license = lib.licenses.publicDomain; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "gsmenu" = callPackage ( { mkDerivation, @@ -285123,7 +166769,6 @@ self: { ]; description = "A visual generic menu"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "gsmenu"; } ) { }; @@ -285196,83 +166841,6 @@ self: { } ) { }; - "gstorable" = callPackage ( - { - mkDerivation, - base, - generic-storable, - ghc-prim, - hspec, - QuickCheck, - }: - mkDerivation { - pname = "gstorable"; - version = "0.1.0.3"; - sha256 = "0qs18la2w9x44faw9yl6pabcsj7fdrcsapsfhrbhjmbqrdh22rm4"; - libraryHaskellDepends = [ base ]; - testHaskellDepends = [ - base - generic-storable - ghc-prim - hspec - QuickCheck - ]; - description = "Generic implementation of Storable"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "gstreamer" = - callPackage - ( - { - mkDerivation, - array, - base, - bytestring, - Cabal, - directory, - glib, - gst-plugins-base, - gstreamer, - gtk2hs-buildtools, - mtl, - }: - mkDerivation { - pname = "gstreamer"; - version = "0.12.8"; - sha256 = "1bb9rzgs3dkwwril97073aygrz46gxq039k9vn5d7my8hgcpwhzz"; - enableSeparateDataOutput = true; - setupHaskellDepends = [ - base - Cabal - gtk2hs-buildtools - ]; - libraryHaskellDepends = [ - array - base - bytestring - directory - glib - mtl - ]; - libraryPkgconfigDepends = [ - gst-plugins-base - gstreamer - ]; - libraryToolDepends = [ gtk2hs-buildtools ]; - description = "Binding to the GStreamer open source multimedia framework"; - license = lib.licenses.lgpl21Only; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) - { - gst-plugins-base = null; - gstreamer = null; - }; - "gt-tools" = callPackage ( { mkDerivation, @@ -285312,56 +166880,6 @@ self: { } ) { }; - "gtfs" = callPackage ( - { - mkDerivation, - base, - csv, - directory, - filepath, - rowrecord, - split, - }: - mkDerivation { - pname = "gtfs"; - version = "0.1"; - sha256 = "0m0i13xpj9wz6ykngwfqi2vnrliwf0y1d2cxg9254dm865l5gvsi"; - libraryHaskellDepends = [ - base - csv - directory - filepath - rowrecord - split - ]; - description = "The General Transit Feed Specification format"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "gtfs-realtime" = callPackage ( - { - mkDerivation, - base, - protocol-buffers, - protocol-buffers-descriptor, - }: - mkDerivation { - pname = "gtfs-realtime"; - version = "0.2.0.0"; - sha256 = "0ydi358ks9cswwqqdjhxhbasr9l34gmqjxwnvylp5zhgymnyjhl0"; - libraryHaskellDepends = [ - base - protocol-buffers - protocol-buffers-descriptor - ]; - description = "GTFS RealTime protobafs library (autogenerated from .proto file)"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "gtk" = callPackage ( { mkDerivation, @@ -285407,39 +166925,6 @@ self: { } ) { inherit (pkgs) gtk2; }; - "gtk-helpers" = callPackage ( - { - mkDerivation, - array, - base, - gio, - glib, - gtk, - mtl, - process, - template-haskell, - }: - mkDerivation { - pname = "gtk-helpers"; - version = "0.1.0"; - sha256 = "1h3ddvs28cnr65la0y21plp4bvf2217i5yi2z4wcixjgr0g5lxjv"; - libraryHaskellDepends = [ - array - base - gio - glib - gtk - mtl - process - template-haskell - ]; - description = "A collection of auxiliary operations and widgets related to Gtk+"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "gtk-jsinput" = callPackage ( { mkDerivation, @@ -285535,39 +167020,6 @@ self: { } ) { inherit (pkgs) gtk-mac-integration-gtk2; }; - "gtk-serialized-event" = callPackage ( - { - mkDerivation, - array, - base, - containers, - glib, - gtk, - gtk2, - haskell98, - mtl, - }: - mkDerivation { - pname = "gtk-serialized-event"; - version = "0.12.0"; - sha256 = "0gh8kwd9758ws941xbxhrm3144pmnqln0md5r6vjbq7s1x54bsrf"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - array - base - containers - glib - gtk - haskell98 - mtl - ]; - libraryPkgconfigDepends = [ gtk2 ]; - description = "GTK+ Serialized event"; - license = lib.licenses.lgpl21Only; - hydraPlatforms = lib.platforms.none; - } - ) { inherit (pkgs) gtk2; }; - "gtk-simple-list-view" = callPackage ( { mkDerivation, @@ -285719,29 +167171,6 @@ self: { } ) { }; - "gtk-toy" = callPackage ( - { - mkDerivation, - base, - containers, - gtk, - }: - mkDerivation { - pname = "gtk-toy"; - version = "0.2.0"; - sha256 = "0zf3k0c5h5wcgkqr8np5kvgz4c9nha86k5whsn4f1wk0ikj98dfq"; - libraryHaskellDepends = [ - base - containers - gtk - ]; - description = "Convenient Gtk canvas with mouse and keyboard input"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "gtk-traymanager" = callPackage ( { mkDerivation, @@ -285810,34 +167239,6 @@ self: { } ) { }; - "gtk2hs-cast-glade" = callPackage ( - { - mkDerivation, - base, - glade, - gtk, - gtk2hs-cast-glib, - hint, - template-haskell, - }: - mkDerivation { - pname = "gtk2hs-cast-glade"; - version = "0.10.1.1"; - sha256 = "0azyf3h53r5dqvz66bbvqk9qp418v0mq0yzd1ia6pc6d7ypknkx6"; - libraryHaskellDepends = [ - base - glade - gtk - gtk2hs-cast-glib - hint - template-haskell - ]; - description = "A type class for cast functions of Gtk2hs: glade package"; - license = "unknown"; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "gtk2hs-cast-glib" = callPackage ( { mkDerivation, @@ -285857,196 +167258,6 @@ self: { } ) { }; - "gtk2hs-cast-gnomevfs" = callPackage ( - { - mkDerivation, - base, - gnomevfs, - gtk2hs-cast-glib, - gtk2hs-cast-th, - hint, - template-haskell, - }: - mkDerivation { - pname = "gtk2hs-cast-gnomevfs"; - version = "0.10.1.2"; - sha256 = "0fkrrsvagsn51rn0b16y8ac3fg509wrxqdfwsij9nbprcd8iz75g"; - libraryHaskellDepends = [ - base - gnomevfs - gtk2hs-cast-glib - gtk2hs-cast-th - hint - template-haskell - ]; - description = "A type class for cast functions of Gtk2hs: gnomevfs package"; - license = "unknown"; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "gtk2hs-cast-gtk" = callPackage ( - { - mkDerivation, - base, - gtk, - gtk2hs-cast-glib, - gtk2hs-cast-th, - hint, - template-haskell, - }: - mkDerivation { - pname = "gtk2hs-cast-gtk"; - version = "0.10.1.2"; - sha256 = "15d6c0mdd9nzpb310n19kyw0jqv019w17ncxxhg3wk90ckb43l3j"; - libraryHaskellDepends = [ - base - gtk - gtk2hs-cast-glib - gtk2hs-cast-th - hint - template-haskell - ]; - description = "A type class for cast functions of Gtk2hs: gtk package"; - license = "unknown"; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "gtk2hs-cast-gtkglext" = callPackage ( - { - mkDerivation, - base, - gtk2hs-cast-glib, - gtk2hs-cast-th, - gtkglext, - hint, - template-haskell, - }: - mkDerivation { - pname = "gtk2hs-cast-gtkglext"; - version = "0.10.1.2"; - sha256 = "05m4h8wh820mwiarrysa4fkxj14l90ky89kv24irpa3vw27xnsm9"; - libraryHaskellDepends = [ - base - gtk2hs-cast-glib - gtk2hs-cast-th - gtkglext - hint - template-haskell - ]; - description = "A type class for cast functions of Gtk2hs: gtkglext package"; - license = "unknown"; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "gtk2hs-cast-gtksourceview2" = callPackage ( - { - mkDerivation, - base, - gtk2hs-cast-glib, - gtk2hs-cast-th, - gtksourceview2, - hint, - template-haskell, - }: - mkDerivation { - pname = "gtk2hs-cast-gtksourceview2"; - version = "0.10.1.2"; - sha256 = "1fyca2kwjc4hk9jqshn9hzq4m7415kapdln1nv0rgxsd1iabjk81"; - libraryHaskellDepends = [ - base - gtk2hs-cast-glib - gtk2hs-cast-th - gtksourceview2 - hint - template-haskell - ]; - description = "A type class for cast functions of Gtk2hs: gtksourceview2 package"; - license = "unknown"; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "gtk2hs-cast-th" = callPackage ( - { - mkDerivation, - base, - hint, - template-haskell, - }: - mkDerivation { - pname = "gtk2hs-cast-th"; - version = "0.10.1.0"; - sha256 = "19a7qb0dlfqw22fz7m94xyzbssvia106wlvy3brag5nhfza833px"; - libraryHaskellDepends = [ - base - hint - template-haskell - ]; - description = "A type class for cast functions of Gtk2hs: TH package"; - license = "unknown"; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "gtk2hs-hello" = callPackage ( - { - mkDerivation, - base, - glib, - gtk3, - transformers, - }: - mkDerivation { - pname = "gtk2hs-hello"; - version = "1.1.0.0"; - sha256 = "0km86yd8wkn85x8xr326a8pzrfmbrf0cpf6zz3sggk3kn4jrmbj4"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - glib - gtk3 - transformers - ]; - description = "Gtk2Hs Hello World, an example package"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - mainProgram = "gtk2hs-hello"; - broken = true; - } - ) { }; - - "gtk2hs-rpn" = callPackage ( - { - mkDerivation, - base, - cairo, - glib, - gtk, - mtl, - }: - mkDerivation { - pname = "gtk2hs-rpn"; - version = "0.2.1"; - sha256 = "01wikd60b48qcz6vk31kwfkpkf2za5laxbhdyns45s90lvr98rvi"; - libraryHaskellDepends = [ - base - cairo - glib - gtk - mtl - ]; - description = "Adds a module to gtk2hs allowing layouts to be defined using reverse polish notation"; - license = "LGPL"; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "gtk3" = callPackage ( { mkDerivation, @@ -286094,39 +167305,6 @@ self: { } ) { inherit (pkgs) gtk3; }; - "gtk3-helpers" = callPackage ( - { - mkDerivation, - array, - base, - gio, - glib, - gtk3, - mtl, - process, - template-haskell, - }: - mkDerivation { - pname = "gtk3-helpers"; - version = "0.1.0"; - sha256 = "174sd1qxim74ixmssihbcka372s22f05xpc50wdi0h1nd8mzpk1r"; - libraryHaskellDepends = [ - array - base - gio - glib - gtk3 - mtl - process - template-haskell - ]; - description = "A collection of auxiliary operations and widgets related to Gtk"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "gtk3-mac-integration" = callPackage ( { mkDerivation, @@ -286165,221 +167343,6 @@ self: { } ) { inherit (pkgs) gtk-mac-integration-gtk3; }; - "gtkglext" = - callPackage - ( - { - mkDerivation, - base, - Cabal, - glib, - gtk, - gtk2, - gtk2hs-buildtools, - gtkglext, - libGLU, - libICE, - libSM, - libXmu, - libXt, - pango, - }: - mkDerivation { - pname = "gtkglext"; - version = "0.13.2.0"; - sha256 = "14rid23m5qa5g0fkc07cac5j8arkbz3cc23wkva7b46xnyfs10ra"; - enableSeparateDataOutput = true; - setupHaskellDepends = [ - base - Cabal - gtk2hs-buildtools - ]; - libraryHaskellDepends = [ - base - glib - gtk - pango - ]; - librarySystemDepends = [ - gtk2 - libGLU - libICE - libSM - libXmu - libXt - ]; - libraryPkgconfigDepends = [ gtkglext ]; - libraryToolDepends = [ gtk2hs-buildtools ]; - description = "Binding to the GTK+ OpenGL Extension"; - license = lib.licenses.lgpl21Only; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) - { - inherit (pkgs) gtk2; - inherit (pkgs.gnome2) gtkglext; - inherit (pkgs) libGLU; - inherit (pkgs.xorg) libICE; - inherit (pkgs.xorg) libSM; - inherit (pkgs.xorg) libXmu; - inherit (pkgs.xorg) libXt; - }; - - "gtkimageview" = callPackage ( - { - mkDerivation, - array, - base, - containers, - glib, - gtk, - gtk2hs-buildtools, - gtkimageview, - haskell98, - mtl, - }: - mkDerivation { - pname = "gtkimageview"; - version = "0.12.0"; - sha256 = "0sdfb7gmgqh4dkc0a39abx84x7j7zs5z1l62nfzz22wsx1h641j3"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - array - base - containers - glib - gtk - haskell98 - mtl - ]; - libraryPkgconfigDepends = [ gtkimageview ]; - libraryToolDepends = [ gtk2hs-buildtools ]; - description = "Binding to the GtkImageView library"; - license = lib.licenses.lgpl21Only; - hydraPlatforms = lib.platforms.none; - } - ) { inherit (pkgs) gtkimageview; }; - - "gtkrsync" = callPackage ( - { - mkDerivation, - base, - gconf, - glade, - gtk, - MissingH, - process, - regex-posix, - unix, - }: - mkDerivation { - pname = "gtkrsync"; - version = "1.0.4"; - sha256 = "0z7mwgmjpbmj2949bfrragyjr6s38vv9sz8zpy63ss9h7b5xn4xw"; - isLibrary = false; - isExecutable = true; - enableSeparateDataOutput = true; - executableHaskellDepends = [ - base - gconf - glade - gtk - MissingH - process - regex-posix - unix - ]; - description = "Gnome rsync progress display"; - license = "GPL"; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "gtksourceview2" = callPackage ( - { - mkDerivation, - array, - base, - Cabal, - containers, - glib, - gtk, - gtk2hs-buildtools, - gtksourceview, - mtl, - text, - }: - mkDerivation { - pname = "gtksourceview2"; - version = "0.13.3.1"; - sha256 = "0lzyqlbd0w825ag9iisiicrsb86gx7axxcr4sh4jhnxagz0fpid1"; - enableSeparateDataOutput = true; - setupHaskellDepends = [ - base - Cabal - gtk2hs-buildtools - ]; - libraryHaskellDepends = [ - array - base - containers - glib - gtk - mtl - text - ]; - libraryPkgconfigDepends = [ gtksourceview ]; - libraryToolDepends = [ gtk2hs-buildtools ]; - description = "Binding to the GtkSourceView library"; - license = lib.licenses.lgpl21Only; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { inherit (pkgs) gtksourceview; }; - - "gtksourceview3" = callPackage ( - { - mkDerivation, - array, - base, - Cabal, - containers, - glib, - gtk2hs-buildtools, - gtk3, - gtksourceview3, - mtl, - text, - }: - mkDerivation { - pname = "gtksourceview3"; - version = "0.13.3.1"; - sha256 = "0yrv71r772h8h7x73xb5k868lg7lmh50r0vzxrl2clrxlpyi4zls"; - enableSeparateDataOutput = true; - setupHaskellDepends = [ - base - Cabal - gtk2hs-buildtools - ]; - libraryHaskellDepends = [ - array - base - containers - glib - gtk3 - mtl - text - ]; - libraryPkgconfigDepends = [ gtksourceview3 ]; - libraryToolDepends = [ gtk2hs-buildtools ]; - description = "Binding to the GtkSourceView library"; - license = lib.licenses.lgpl21Only; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { inherit (pkgs) gtksourceview3; }; - "gtvm-hs" = callPackage ( { mkDerivation, @@ -286460,26 +167423,6 @@ self: { } ) { }; - "guarded-rewriting" = callPackage ( - { - mkDerivation, - base, - instant-generics, - }: - mkDerivation { - pname = "guarded-rewriting"; - version = "0.1"; - sha256 = "04396pd4c4yqpw6ai5ciigva9l3acdz7yn4d5hvyks52khv5fsf9"; - libraryHaskellDepends = [ - base - instant-generics - ]; - description = "Datatype-generic rewriting with preconditions"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "guardian" = callPackage ( { mkDerivation, @@ -286586,27 +167529,6 @@ self: { } ) { }; - "guess-combinator" = callPackage ( - { - mkDerivation, - base, - HList, - }: - mkDerivation { - pname = "guess-combinator"; - version = "0.1.1"; - sha256 = "1xaj8zl6cbgks3r0asbnkz1ixq1hlglpjxdymj6ikyjq955sxmzj"; - libraryHaskellDepends = [ - base - HList - ]; - description = "Generate simple combinators given their type"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "guid" = callPackage ( { mkDerivation, @@ -286637,37 +167559,6 @@ self: { } ) { }; - "gulcii" = callPackage ( - { - mkDerivation, - base, - cairo, - containers, - filepath, - gtk, - }: - mkDerivation { - pname = "gulcii"; - version = "0.3"; - sha256 = "1crx9kz4s8by509x1k60m89jmmn7gfhi46d05q44ikhk5zkxycws"; - isLibrary = false; - isExecutable = true; - enableSeparateDataOutput = true; - executableHaskellDepends = [ - base - cairo - containers - filepath - gtk - ]; - description = "graphical untyped lambda calculus interactive interpreter"; - license = lib.licenses.gpl2Only; - hydraPlatforms = lib.platforms.none; - mainProgram = "gulcii"; - broken = true; - } - ) { }; - "gutenberg-fibonaccis" = callPackage ( { mkDerivation, base }: mkDerivation { @@ -286715,56 +167606,6 @@ self: { } ) { }; - "gw" = callPackage ( - { - mkDerivation, - base, - unix, - }: - mkDerivation { - pname = "gw"; - version = "0.1"; - sha256 = "055pkk3gg74r4yzh3fxq1zvp1fv3i8cd53jscy1b2n3mmzhbzahv"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - unix - ]; - description = "ghcWithPackages cmdline util"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "gw"; - broken = true; - } - ) { }; - - "gyah-bin" = callPackage ( - { - mkDerivation, - base, - extra, - GiveYouAHead, - }: - mkDerivation { - pname = "gyah-bin"; - version = "0.2.2.3"; - sha256 = "19r2vsi5v43a3wq2vbfh2wfscmbzvcbyd1lqc2xdg4bbla9pf648"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - extra - GiveYouAHead - ]; - description = "A binary version of GiveYouAHead"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - mainProgram = "gyah"; - broken = true; - } - ) { }; - "gym-hs" = callPackage ( { mkDerivation, @@ -286825,107 +167666,6 @@ self: { } ) { }; - "gym-http-api" = callPackage ( - { - mkDerivation, - aeson, - base, - exceptions, - http-client, - servant, - servant-client, - servant-lucid, - text, - unordered-containers, - }: - mkDerivation { - pname = "gym-http-api"; - version = "0.1.0.1"; - sha256 = "0469n34s0p313nwnw8zpg1n9aaf6sqn5h7yl0jhc6yydc6rdjgrc"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson - base - servant - servant-client - servant-lucid - text - unordered-containers - ]; - executableHaskellDepends = [ - base - exceptions - http-client - servant-client - ]; - description = "REST client to the gym-http-api project"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - mainProgram = "example"; - broken = true; - } - ) { }; - - "h-booru" = callPackage ( - { - mkDerivation, - base, - bytestring, - containers, - directory, - filepath, - http-conduit, - hxt, - mtl, - stm, - template-haskell, - transformers, - utf8-string, - vinyl, - }: - mkDerivation { - pname = "h-booru"; - version = "0.3.0.0"; - sha256 = "0v2mcf35j4dr32j9n6rx10h7mx9d9f14bh70yphj01laxg240746"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - bytestring - filepath - http-conduit - hxt - mtl - stm - template-haskell - transformers - utf8-string - vinyl - ]; - executableHaskellDepends = [ - base - bytestring - containers - directory - filepath - http-conduit - hxt - mtl - stm - template-haskell - transformers - utf8-string - vinyl - ]; - description = "Haskell library for retrieving data from various booru image sites"; - license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - mainProgram = "h-booru"; - broken = true; - } - ) { }; - "h-gpgme" = callPackage ( { mkDerivation, @@ -287050,142 +167790,6 @@ self: { inherit (pkgs.xorg) libXrandr; }; - "h-reversi" = callPackage ( - { - mkDerivation, - base, - blank-canvas, - containers, - hspec, - QuickCheck, - split, - stm, - text, - }: - mkDerivation { - pname = "h-reversi"; - version = "0.1.0.3"; - sha256 = "1qif75wf3zybqhxai71f98bg668mb28b7886dcb4q02kqakk75li"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - blank-canvas - containers - split - stm - text - ]; - executableHaskellDepends = [ - base - blank-canvas - containers - split - stm - text - ]; - testHaskellDepends = [ - base - containers - hspec - QuickCheck - split - text - ]; - description = "Reversi game in haskell/blank-canvas"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - mainProgram = "h-reversi"; - broken = true; - } - ) { }; - - "h2048" = callPackage ( - { - mkDerivation, - base, - brick, - containers, - hspec, - mtl, - text, - tf-random, - vector, - vector-algorithms, - vty, - }: - mkDerivation { - pname = "h2048"; - version = "0.4.0.0"; - sha256 = "1nf5h34h7h0fhm22rn3lbispb9yvs0ig8incyjcjvwm2i9850502"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - brick - containers - mtl - text - tf-random - vector - vector-algorithms - vty - ]; - executableHaskellDepends = [ - base - brick - containers - mtl - text - tf-random - vector - vector-algorithms - vty - ]; - testHaskellDepends = [ - base - brick - containers - hspec - mtl - text - tf-random - vector - vector-algorithms - vty - ]; - description = "An Implementation of Game 2048"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "h2c" = callPackage ( - { - mkDerivation, - base, - bytestring, - mtl, - resourcet, - }: - mkDerivation { - pname = "h2c"; - version = "1.0.0"; - sha256 = "16aljqvzf8n1js0drqii99z3v8xba0468w27c9vmf5w483awkqjb"; - libraryHaskellDepends = [ - base - bytestring - mtl - resourcet - ]; - description = "Bindings to Linux I2C with support for repeated-start transactions"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "h3-hs" = callPackage ( { mkDerivation, @@ -287292,97 +167896,6 @@ self: { } ) { }; - "hBDD-CMUBDD" = - callPackage - ( - { - mkDerivation, - base, - bdd, - c2hs, - containers, - deepseq, - hBDD, - mem, - unix, - }: - mkDerivation { - pname = "hBDD-CMUBDD"; - version = "0.0.3"; - sha256 = "16pvi496qi3q2rrw08p6lndnsz6d6p65i8m10ldjlh143y8k9ga9"; - libraryHaskellDepends = [ - base - containers - deepseq - hBDD - unix - ]; - librarySystemDepends = [ - bdd - mem - ]; - libraryToolDepends = [ c2hs ]; - description = "An FFI binding to CMU/Long's BDD library"; - license = "LGPL"; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) - { - bdd = null; - mem = null; - }; - - "hBDD-CUDD" = - callPackage - ( - { - mkDerivation, - base, - c2hs, - containers, - cudd, - deepseq, - epd, - hBDD, - mtr, - st, - unix, - util, - }: - mkDerivation { - pname = "hBDD-CUDD"; - version = "0.0.3"; - sha256 = "1r94nj23pj134bd5b2mqk01g8xvbcn4ik2xs9yp01v1jg2clhjha"; - libraryHaskellDepends = [ - base - containers - deepseq - hBDD - unix - ]; - librarySystemDepends = [ - cudd - epd - mtr - st - util - ]; - libraryToolDepends = [ c2hs ]; - description = "An FFI binding to the CUDD library"; - license = "LGPL"; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) - { - inherit (pkgs) cudd; - epd = null; - inherit (pkgs) mtr; - inherit (pkgs) st; - util = null; - }; - "hCM" = callPackage ( { mkDerivation, @@ -287415,133 +167928,6 @@ self: { } ) { }; - "hCsound" = - callPackage - ( - { - mkDerivation, - base, - c2hs, - csound64, - libsndfile, - monads-tf, - transformers, - vector, - }: - mkDerivation { - pname = "hCsound"; - version = "0.4.2"; - sha256 = "0z4zcf70jplm68k69kigj0kfx78r00y6fx6rjymzpvpbhppmyyd2"; - libraryHaskellDepends = [ - base - monads-tf - transformers - vector - ]; - librarySystemDepends = [ - csound64 - libsndfile - ]; - libraryToolDepends = [ c2hs ]; - description = "interface to CSound API"; - license = "LGPL"; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) - { - csound64 = null; - inherit (pkgs) libsndfile; - }; - - "hDFA" = callPackage ( - { - mkDerivation, - base, - containers, - directory, - process, - }: - mkDerivation { - pname = "hDFA"; - version = "0.0.2"; - sha256 = "1ays1qy2zsl3h49ryr2y9dymfv1ak1m1d0jvarmqwg3nb49armhm"; - libraryHaskellDepends = [ - base - containers - directory - process - ]; - description = "A simple library for representing and minimising DFAs"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "hF2" = callPackage ( - { - mkDerivation, - base, - cereal, - vector, - }: - mkDerivation { - pname = "hF2"; - version = "0.2"; - sha256 = "1y0731fsay2dp9m4b94w15m054vqsnnafz4k8jjqjvvrmwyfgicz"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base - cereal - vector - ]; - description = "F(2^e) math for cryptography"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "hGelf" = callPackage ( - { - mkDerivation, - aeson, - base, - bytestring, - cereal, - network, - old-time, - pureMD5, - QuickCheck, - text, - time, - zlib, - }: - mkDerivation { - pname = "hGelf"; - version = "0.1"; - sha256 = "0jkgf0sm8xv204hrzpkplccfq88y5xyrm8y2b5gjfp473872jqxw"; - libraryHaskellDepends = [ - aeson - base - bytestring - cereal - network - old-time - pureMD5 - QuickCheck - text - time - zlib - ]; - description = "Haskell GELF library"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "hLLVM" = callPackage ( { mkDerivation, @@ -287677,713 +168063,218 @@ self: { vector ]; testHaskellDepends = [ - base - binary - bytestring - cereal - containers - hashable - hgmp - hslogger - HUnit - lens - mtl - network - optparse-applicative - process - random - split - stm - time - vector - ]; - description = "Multiparty Computation in Haskell"; - license = lib.licenses.bsd3; - mainProgram = "id3gini"; - } - ) { }; - - "hMollom" = callPackage ( - { - mkDerivation, - aeson, - attoparsec, - base, - bytestring, - Crypto, - dataenc, - ghc-prim, - HTTP, - mtl, - old-locale, - old-time, - pureMD5, - random, - time, - }: - mkDerivation { - pname = "hMollom"; - version = "0.4.0"; - sha256 = "1grhkvmcdyi7gmmcqfqi3n78p4gbimzxa4mylj1f0j8iy5iycmg5"; - libraryHaskellDepends = [ - aeson - attoparsec - base - bytestring - Crypto - dataenc - ghc-prim - HTTP - mtl - old-locale - old-time - pureMD5 - random - time - ]; - description = "Library to interact with the @Mollom anti-spam service"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "hOff-display" = callPackage ( - { - mkDerivation, - base, - GLFW, - hOff-parser, - OpenGL, - parsec, - }: - mkDerivation { - pname = "hOff-display"; - version = "0.1.0.0"; - sha256 = "086a2z57nbfjn7xs2y2mngw4bi0a0d4gxrxd5l5ic15gjr62fa0r"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - hOff-parser - OpenGL - ]; - executableHaskellDepends = [ - base - GLFW - hOff-parser - OpenGL - parsec - ]; - description = "The tool to transform the OFF to other image format"; - license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - mainProgram = "hOff-display-gl"; - } - ) { }; - - "hOff-parser" = callPackage ( - { - mkDerivation, - base, - parsec, - }: - mkDerivation { - pname = "hOff-parser"; - version = "0.1.0.0"; - sha256 = "1vjvn4sr9nb7dd0in57kay6sb49nqzs377v6k9570h5faaj1dyci"; - libraryHaskellDepends = [ - base - parsec - ]; - description = "The parser to parser the OFF(Object File Format, Princeton ModelNet)"; - license = lib.licenses.gpl3Only; - } - ) { }; - - "hOpenPGP" = callPackage ( - { - mkDerivation, - aeson, - asn1-encoding, - attoparsec, - base, - base16-bytestring, - bifunctors, - binary, - binary-conduit, - bytestring, - bz2, - conduit, - conduit-extra, - containers, - criterion, - crypto-cipher-types, - crypton, - errors, - hashable, - incremental-parser, - ixset-typed, - lens, - memory, - monad-loops, - nettle, - network-uri, - openpgp-asciiarmor, - prettyprinter, - QuickCheck, - quickcheck-instances, - resourcet, - split, - tasty, - tasty-hunit, - tasty-quickcheck, - text, - time, - time-locale-compat, - transformers, - unliftio-core, - unordered-containers, - zlib, - }: - mkDerivation { - pname = "hOpenPGP"; - version = "2.10.1"; - sha256 = "1wj8p62hqzl409l91l0xiz5fb7lmzrnh0f453wgxkvyxk0vzf36z"; - libraryHaskellDepends = [ - aeson - asn1-encoding - attoparsec - base - base16-bytestring - bifunctors - binary - binary-conduit - bytestring - bz2 - conduit - conduit-extra - containers - crypto-cipher-types - crypton - errors - hashable - incremental-parser - ixset-typed - lens - memory - monad-loops - nettle - network-uri - openpgp-asciiarmor - prettyprinter - resourcet - split - text - time - time-locale-compat - transformers - unliftio-core - unordered-containers - zlib - ]; - testHaskellDepends = [ - aeson - attoparsec - base - base16-bytestring - bifunctors - binary - binary-conduit - bytestring - bz2 - conduit - conduit-extra - containers - crypto-cipher-types - crypton - errors - hashable - incremental-parser - ixset-typed - lens - memory - monad-loops - nettle - network-uri - prettyprinter - QuickCheck - quickcheck-instances - resourcet - split - tasty - tasty-hunit - tasty-quickcheck - text - time - time-locale-compat - transformers - unliftio-core - unordered-containers - zlib - ]; - benchmarkHaskellDepends = [ - aeson - attoparsec - base - base16-bytestring - bifunctors - binary - binary-conduit - bytestring - bz2 - conduit - conduit-extra - containers - criterion - crypto-cipher-types - crypton - errors - hashable - incremental-parser - ixset-typed - lens - memory - monad-loops - nettle - network-uri - prettyprinter - resourcet - split - text - time - time-locale-compat - transformers - unliftio-core - unordered-containers - zlib - ]; - description = "native Haskell implementation of OpenPGP (RFC4880)"; - license = lib.licenses.mit; - } - ) { }; - - "hPDB" = callPackage ( - { - mkDerivation, - base, - bytestring, - containers, - deepseq, - directory, - ghc-prim, - iterable, - linear, - mmap, - mtl, - Octree, - parallel, - QuickCheck, - tagged, - template-haskell, - text, - unordered-containers, - vector, - zlib, - }: - mkDerivation { - pname = "hPDB"; - version = "1.5.0.0"; - sha256 = "07pc4g0gj56q0nrry6462a8h2v0psp23nbn9sd7fybgz248c39lw"; - libraryHaskellDepends = [ - base - bytestring - containers - deepseq - directory - ghc-prim - iterable - linear - mmap - mtl - Octree - parallel - QuickCheck - tagged - template-haskell - text - unordered-containers - vector - zlib - ]; - description = "Protein Databank file format library"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "hPDB-examples" = callPackage ( - { - mkDerivation, - base, - bytestring, - containers, - deepseq, - directory, - ghc-prim, - GLUT, - hPDB, - IfElse, - iterable, - linear, - mtl, - Octree, - OpenGL, - process, - QuickCheck, - template-haskell, - text, - time, - vector, - }: - mkDerivation { - pname = "hPDB-examples"; - version = "1.5.0.0"; - sha256 = "0hhi6x8m7pngcjmxv5mncw66r5bn67i07g347d85lc6yszhrykdp"; - revision = "1"; - editedCabalFile = "1bk3fmdgqyj0p72049w79y0b9hdzb5knzkxzl9z02qsbdj5f5if0"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - bytestring - containers - deepseq - directory - ghc-prim - GLUT - hPDB - iterable - linear - mtl - Octree - OpenGL - QuickCheck - template-haskell - text - vector - ]; - testHaskellDepends = [ - base - bytestring - containers - deepseq - directory - ghc-prim - hPDB - IfElse - iterable - linear - mtl - process - template-haskell - text - time - vector - ]; - description = "Examples for hPDB library"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "hPushover" = callPackage ( - { - mkDerivation, - aeson, - base, - bytestring, - http-conduit, - network, - text, - }: - mkDerivation { - pname = "hPushover"; - version = "0.2"; - sha256 = "14k3sdy2c0anfsw0hdir0l107ixlsnr90miwxrxdsckh40kz3ad3"; - libraryHaskellDepends = [ - aeson - base - bytestring - http-conduit - network - text - ]; - description = "Pushover.net API functions"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "hR" = callPackage ( - { - mkDerivation, - array, - base, - containers, - unix, - }: - mkDerivation { - pname = "hR"; - version = "0.1.1"; - sha256 = "1kc03mgsxijszdvxw4qwq4fnd0ln61v08rk9y1k6kx9vyqc7bilc"; - libraryHaskellDepends = [ - array - base - containers - unix - ]; - description = "R bindings and interface"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "hRESP" = callPackage ( - { - mkDerivation, - attoparsec, - base, - bytestring, - }: - mkDerivation { - pname = "hRESP"; - version = "0.1.0.0"; - sha256 = "188rs1g2yacka8c4wbqkhwjrin95f3ribm8007lqsxiapaj1d89y"; - libraryHaskellDepends = [ - attoparsec - base - bytestring - ]; - description = "haskell implementation of RESP (REdis Serialization Protocol)"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "hS3" = callPackage ( - { - mkDerivation, - base, - bytestring, - Crypto, - dataenc, - HTTP, - hxt, - MissingH, - network, - network-uri, - old-locale, - old-time, - random, - regex-compat, - utf8-string, - }: - mkDerivation { - pname = "hS3"; - version = "0.5.9"; - sha256 = "0nf71jb15gkkcrb0x83mmql6j55c6dnz3bl3yq1grphwn0jbmq3y"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - bytestring - Crypto - dataenc - HTTP - hxt - MissingH + base + binary + bytestring + cereal + containers + hashable + hgmp + hslogger + HUnit + lens + mtl network - network-uri - old-locale - old-time + optparse-applicative + process random - regex-compat - utf8-string + split + stm + time + vector ]; - description = "Interface to Amazon's Simple Storage Service (S3)"; + description = "Multiparty Computation in Haskell"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "hs3"; + mainProgram = "id3gini"; } ) { }; - "hScraper" = callPackage ( + "hOff-parser" = callPackage ( { mkDerivation, base, - bytestring, - directory, - HTTP, - http-conduit, - http-types, parsec, - process, - regex-compat, - text, - transformers, }: mkDerivation { - pname = "hScraper"; + pname = "hOff-parser"; version = "0.1.0.0"; - sha256 = "0sn1qdwrq5f7r8jksqi4cghv4kfycp2xrdmd58jxvkdz9vcb0p4m"; + sha256 = "1vjvn4sr9nb7dd0in57kay6sb49nqzs377v6k9570h5faaj1dyci"; libraryHaskellDepends = [ base - bytestring - directory - HTTP - http-conduit - http-types parsec - process - regex-compat - text - transformers ]; - description = "A Haskell library to scrape and crawl web-pages"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; + description = "The parser to parser the OFF(Object File Format, Princeton ModelNet)"; + license = lib.licenses.gpl3Only; } ) { }; - "hSimpleDB" = callPackage ( + "hOpenPGP" = callPackage ( { mkDerivation, + aeson, + asn1-encoding, + attoparsec, base, + base16-bytestring, + bifunctors, + binary, + binary-conduit, bytestring, - Crypto, - dataenc, - HTTP, - hxt, - network, - old-locale, - old-time, - utf8-string, + bz2, + conduit, + conduit-extra, + containers, + criterion, + crypto-cipher-types, + crypton, + errors, + hashable, + incremental-parser, + ixset-typed, + lens, + memory, + monad-loops, + nettle, + network-uri, + openpgp-asciiarmor, + prettyprinter, + QuickCheck, + quickcheck-instances, + resourcet, + split, + tasty, + tasty-hunit, + tasty-quickcheck, + text, + time, + time-locale-compat, + transformers, + unliftio-core, + unordered-containers, + zlib, }: mkDerivation { - pname = "hSimpleDB"; - version = "0.3"; - sha256 = "045mgg2b7wmkcziil8njb2wsy8pgzqcc46dwdrabxgbw1nzsfkaa"; + pname = "hOpenPGP"; + version = "2.10.1"; + sha256 = "1wj8p62hqzl409l91l0xiz5fb7lmzrnh0f453wgxkvyxk0vzf36z"; libraryHaskellDepends = [ + aeson + asn1-encoding + attoparsec base + base16-bytestring + bifunctors + binary + binary-conduit bytestring - Crypto - dataenc - HTTP - hxt - network - old-locale - old-time - utf8-string + bz2 + conduit + conduit-extra + containers + crypto-cipher-types + crypton + errors + hashable + incremental-parser + ixset-typed + lens + memory + monad-loops + nettle + network-uri + openpgp-asciiarmor + prettyprinter + resourcet + split + text + time + time-locale-compat + transformers + unliftio-core + unordered-containers + zlib ]; - description = "Interface to Amazon's SimpleDB service"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "hTalos" = callPackage ( - { - mkDerivation, - base, - bytestring, - }: - mkDerivation { - pname = "hTalos"; - version = "0.2"; - sha256 = "05l9nlrwpb9gwgj8z48paxx46lkasa82naiq7armi98salk1a9ip"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ + testHaskellDepends = [ + aeson + attoparsec base + base16-bytestring + bifunctors + binary + binary-conduit bytestring + bz2 + conduit + conduit-extra + containers + crypto-cipher-types + crypton + errors + hashable + incremental-parser + ixset-typed + lens + memory + monad-loops + nettle + network-uri + prettyprinter + QuickCheck + quickcheck-instances + resourcet + split + tasty + tasty-hunit + tasty-quickcheck + text + time + time-locale-compat + transformers + unliftio-core + unordered-containers + zlib ]; - testHaskellDepends = [ base ]; - description = "Parser, print and manipulate structures in PDB file format"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "hTensor" = callPackage ( - { - mkDerivation, - base, - containers, - hmatrix, - random, - }: - mkDerivation { - pname = "hTensor"; - version = "0.9.1"; - sha256 = "08zmzzwbvqsyz7v5grjwg81434bdr3zkkd12ifhk76xg2p0xfhmk"; - libraryHaskellDepends = [ + benchmarkHaskellDepends = [ + aeson + attoparsec base + base16-bytestring + bifunctors + binary + binary-conduit + bytestring + bz2 + conduit + conduit-extra containers - hmatrix - random + criterion + crypto-cipher-types + crypton + errors + hashable + incremental-parser + ixset-typed + lens + memory + monad-loops + nettle + network-uri + prettyprinter + resourcet + split + text + time + time-locale-compat + transformers + unliftio-core + unordered-containers + zlib ]; - description = "Multidimensional arrays and simple tensor computations"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; + description = "native Haskell implementation of OpenPGP (RFC4880)"; + license = lib.licenses.mit; } ) { }; - "hVOIDP" = - callPackage - ( - { - mkDerivation, - array, - base, - blas, - hmatrix, - liblapack, - }: - mkDerivation { - pname = "hVOIDP"; - version = "1.0.2"; - sha256 = "0r9a461k1rr0j9zgjfq1z37i6blv9rqf8pzb984h1nmlfqpnidnc"; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; - executableHaskellDepends = [ - array - base - hmatrix - ]; - executableSystemDepends = [ - blas - liblapack - ]; - description = "Optimal variable selection in chain graphical model"; - license = "GPL"; - hydraPlatforms = lib.platforms.none; - mainProgram = "hVOIDP"; - broken = true; - } - ) - { - inherit (pkgs) blas; - inherit (pkgs) liblapack; - }; - "hXmixer" = callPackage ( { mkDerivation, @@ -288416,95 +168307,6 @@ self: { } ) { }; - "haar" = callPackage ( - { - mkDerivation, - base, - QuickCheck, - split, - test-framework, - test-framework-quickcheck2, - }: - mkDerivation { - pname = "haar"; - version = "0.1"; - sha256 = "1xmz659lqr25c0xxkmly5w4fxgk9rqnms2sknd5ab8czqdgq6n1v"; - libraryHaskellDepends = [ - base - split - ]; - testHaskellDepends = [ - base - QuickCheck - test-framework - test-framework-quickcheck2 - ]; - description = "Haar wavelet transforms"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "habit" = callPackage ( - { - mkDerivation, - base, - containers, - cryptonite, - http-client, - http-client-tls, - monad-control, - monad-logger, - persistent, - persistent-mysql, - persistent-postgresql, - persistent-sqlite, - persistent-template, - pipes, - resourcet, - telegram-api, - text, - transformers, - transformers-base, - }: - mkDerivation { - pname = "habit"; - version = "0.2.2.0"; - sha256 = "08ngx4c6dqwnf9rl4ynb88xrmyzqz2r69mrlh6gzvbn72fgmvajr"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - containers - cryptonite - http-client - http-client-tls - monad-control - monad-logger - persistent - persistent-mysql - persistent-postgresql - persistent-sqlite - persistent-template - pipes - resourcet - telegram-api - text - transformers - transformers-base - ]; - executableHaskellDepends = [ - base - text - ]; - description = "Haskell message bot framework"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "hello-bot"; - } - ) { }; - "hable" = callPackage ( { mkDerivation, base }: mkDerivation { @@ -288689,121 +168491,6 @@ self: { } ) { }; - "hack-contrib" = callPackage ( - { - mkDerivation, - ansi-wl-pprint, - base, - bytestring, - cgi, - containers, - data-default, - directory, - filepath, - hack, - haskell98, - mps, - network, - old-locale, - old-time, - time, - utf8-string, - }: - mkDerivation { - pname = "hack-contrib"; - version = "2010.9.28"; - sha256 = "1r0g8fcwz6r4vrsadjyb5awjmfbqsskmc1c8xkfwv0knak1qq2p1"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - ansi-wl-pprint - base - bytestring - cgi - containers - data-default - directory - filepath - hack - haskell98 - mps - network - old-locale - old-time - time - utf8-string - ]; - description = "Hack contrib"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "hack-contrib-press" = callPackage ( - { - mkDerivation, - base, - bytestring, - bytestring-class, - containers, - hack, - json, - mtl, - parsec, - press, - }: - mkDerivation { - pname = "hack-contrib-press"; - version = "0.1.2"; - sha256 = "12v7xw448cxl93bnbzqkinlij74flffpif0x5jd51sndvpgsh12r"; - libraryHaskellDepends = [ - base - bytestring - bytestring-class - containers - hack - json - mtl - parsec - press - ]; - description = "Hack helper that renders Press templates"; - license = "GPL"; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "hack-frontend-happstack" = callPackage ( - { - mkDerivation, - base, - bytestring, - containers, - hack, - happstack-server, - network, - utf8-string, - }: - mkDerivation { - pname = "hack-frontend-happstack"; - version = "2009.6.24.1"; - sha256 = "1x4kaj4nk5lrgsm6pfxr6f8rvjyxhy0agqv9f810xh6s1r9pihw1"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base - bytestring - containers - hack - happstack-server - network - utf8-string - ]; - description = "hack-frontend-happstack"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "hack-frontend-monadcgi" = callPackage ( { mkDerivation, @@ -288829,309 +168516,6 @@ self: { } ) { }; - "hack-handler-cgi" = callPackage ( - { - mkDerivation, - base, - bytestring, - hack, - }: - mkDerivation { - pname = "hack-handler-cgi"; - version = "0.2.0.2"; - sha256 = "0pm8vs94dbaahqrdwfffwa1jb9ghyjnq48sirlw1dj2gcsa3np2x"; - libraryHaskellDepends = [ - base - bytestring - hack - ]; - description = "Hack handler using CGI protocol. (deprecated)"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "hack-handler-epoll" = callPackage ( - { - mkDerivation, - base, - containers, - data-default, - epoll, - failure, - hack, - HTTP, - network, - unix, - utf8-string, - }: - mkDerivation { - pname = "hack-handler-epoll"; - version = "0.1.3"; - sha256 = "0q4cw789x8c93y53lwhr7g0hkli8x6qb9k0cg5pxln6cxxvi9p82"; - revision = "1"; - editedCabalFile = "0fgihxlfjc9i19514wgdjalra6rk7myfvkxgy2lslabj04d0cdz2"; - libraryHaskellDepends = [ - base - containers - data-default - epoll - failure - hack - HTTP - network - unix - utf8-string - ]; - description = "hack handler implementation using epoll"; - license = "LGPL"; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "hack-handler-evhttp" = callPackage ( - { - mkDerivation, - base, - bytestring, - bytestring-class, - containers, - data-default, - event, - hack, - hack-contrib, - network, - }: - mkDerivation { - pname = "hack-handler-evhttp"; - version = "2009.8.4"; - sha256 = "1a09ls9jgakdx8ya6zd5z3ss2snb4pp0db1573hzmrhr37i2gklz"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base - bytestring - bytestring-class - containers - data-default - hack - hack-contrib - network - ]; - librarySystemDepends = [ event ]; - description = "Hack EvHTTP (libevent) Handler"; - license = "GPL"; - hydraPlatforms = lib.platforms.none; - } - ) { event = null; }; - - "hack-handler-fastcgi" = callPackage ( - { - mkDerivation, - base, - bytestring, - fcgi, - hack, - hack-handler-cgi, - }: - mkDerivation { - pname = "hack-handler-fastcgi"; - version = "0.2.0.1"; - sha256 = "02slh33r9qy8q0vpi4s4vvf5lmb14ypk8bixdicvxakahjvxhanr"; - libraryHaskellDepends = [ - base - bytestring - hack - hack-handler-cgi - ]; - librarySystemDepends = [ fcgi ]; - description = "Hack handler direct to fastcgi (deprecated)"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { inherit (pkgs) fcgi; }; - - "hack-handler-happstack" = callPackage ( - { - mkDerivation, - base, - bytestring, - cgi, - containers, - data-default, - hack, - happstack-server, - mtl, - network, - }: - mkDerivation { - pname = "hack-handler-happstack"; - version = "2009.12.20"; - sha256 = "10b3cp1gap59ialfl33dwhzw50nwrqg49zvv0v813q7rqk3nkhg4"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base - bytestring - cgi - containers - data-default - hack - happstack-server - mtl - network - ]; - description = "Hack Happstack server handler"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "hack-handler-hyena" = callPackage ( - { - mkDerivation, - base, - bytestring, - containers, - data-default, - hack, - hyena, - network, - }: - mkDerivation { - pname = "hack-handler-hyena"; - version = "2010.3.15"; - sha256 = "1p0zyki1iapz2xncq0l5bbas44pk5kb29kbb3bdxb4anb0m5jb2q"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base - bytestring - containers - data-default - hack - hyena - network - ]; - description = "Hyena hack handler"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "hack-handler-kibro" = callPackage ( - { - mkDerivation, - base, - cgi, - data-default, - hack, - kibro, - network, - }: - mkDerivation { - pname = "hack-handler-kibro"; - version = "2009.5.27"; - sha256 = "0py30rp7r4hrazrfq3avpqcp1w8405pyfw1yxz7msb58yjppa792"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base - cgi - data-default - hack - kibro - network - ]; - description = "Hack Kibro handler"; - license = "GPL"; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "hack-handler-simpleserver" = callPackage ( - { - mkDerivation, - base, - bytestring, - failure, - hack, - network, - web-encodings, - }: - mkDerivation { - pname = "hack-handler-simpleserver"; - version = "0.2.2"; - sha256 = "1p7igprgxkzkqhsy5n2qci75dbx2qxs1dcq8krghwj3isl6wds3y"; - libraryHaskellDepends = [ - base - bytestring - failure - hack - network - web-encodings - ]; - description = "A simplistic HTTP server handler for Hack. (deprecated)"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "hack-middleware-cleanpath" = callPackage ( - { - mkDerivation, - base, - bytestring, - hack, - split, - web-encodings, - }: - mkDerivation { - pname = "hack-middleware-cleanpath"; - version = "0.0.1.1"; - sha256 = "0107ajkiwkn33h56dz576y4dxl0sr2lkkcmjy6f9s2nzqp9ibin4"; - libraryHaskellDepends = [ - base - bytestring - hack - split - web-encodings - ]; - description = "Applies some basic redirect rules to get cleaner paths. (deprecated)"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "hack-middleware-clientsession" = callPackage ( - { - mkDerivation, - base, - clientsession, - hack, - old-locale, - predicates, - time, - web-encodings, - }: - mkDerivation { - pname = "hack-middleware-clientsession"; - version = "0.0.1.1"; - sha256 = "0h4l2lvshf9cqg43az9alq4rybhr4k07mhrila4fx7yjxslw871f"; - libraryHaskellDepends = [ - base - clientsession - hack - old-locale - predicates - time - web-encodings - ]; - description = "Middleware for easily keeping session data in client cookies. (deprecated)"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "hack-middleware-gzip" = callPackage ( { mkDerivation, @@ -289155,32 +168539,6 @@ self: { } ) { }; - "hack-middleware-jsonp" = callPackage ( - { - mkDerivation, - base, - bytestring, - bytestring-class, - hack, - web-encodings, - }: - mkDerivation { - pname = "hack-middleware-jsonp"; - version = "0.0.2.1"; - sha256 = "0g7l441s0065f5dw2rj82m547nnc1i7cclx81kvgbpbi8q6hz0iw"; - libraryHaskellDepends = [ - base - bytestring - bytestring-class - hack - web-encodings - ]; - description = "Automatic wrapping of JSON responses to convert into JSONP. (deprecated)"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "hack2" = callPackage ( { mkDerivation, @@ -289202,258 +168560,6 @@ self: { } ) { }; - "hack2-contrib" = callPackage ( - { - mkDerivation, - air, - base, - bytestring, - containers, - data-default, - directory, - filepath, - hack2, - network-uri, - text, - time, - }: - mkDerivation { - pname = "hack2-contrib"; - version = "2015.5.4"; - sha256 = "1vbdnbab5f090fp5zgviwbc2w33y7calgbh67fgxcaflhg0514vk"; - libraryHaskellDepends = [ - air - base - bytestring - containers - data-default - directory - filepath - hack2 - network-uri - text - time - ]; - description = "Hack2 contrib"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "hack2-contrib-extra" = callPackage ( - { - mkDerivation, - air, - air-extra, - base, - bytestring, - cgi, - containers, - data-default, - directory, - filepath, - hack2, - hack2-contrib, - network, - old-locale, - old-time, - time, - }: - mkDerivation { - pname = "hack2-contrib-extra"; - version = "2014.12.20"; - sha256 = "1mxgvlr593cw523mknr5bcwf55544q04cz0nlpzgm5bg3336b5wl"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - air - air-extra - base - bytestring - cgi - containers - data-default - directory - filepath - hack2 - hack2-contrib - network - old-locale - old-time - time - ]; - description = "Hack2 contrib extra"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "hack2-handler-happstack-server" = callPackage ( - { - mkDerivation, - base, - bytestring, - cgi, - containers, - data-default, - enumerator, - hack2, - happstack-server, - mtl, - network, - }: - mkDerivation { - pname = "hack2-handler-happstack-server"; - version = "2011.6.20"; - sha256 = "115nrzf0626pc716n01qjhxs44c1awdd4q1c8kbax025cwac7kpx"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base - bytestring - cgi - containers - data-default - enumerator - hack2 - happstack-server - mtl - network - ]; - description = "Hack2 Happstack server handler"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "hack2-handler-mongrel2-http" = callPackage ( - { - mkDerivation, - aeson, - air, - attoparsec, - base, - blaze-builder, - blaze-textual, - bytestring, - containers, - data-default, - directory, - enumerator, - hack2, - mtl, - network, - safe, - stm, - text, - unix, - zeromq-haskell, - }: - mkDerivation { - pname = "hack2-handler-mongrel2-http"; - version = "2011.10.31"; - sha256 = "1pymar803n696yx3dwqpfwqlkg93ncff162p26mrs7iqn14v851w"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - aeson - air - attoparsec - base - blaze-builder - blaze-textual - bytestring - containers - data-default - directory - enumerator - hack2 - mtl - network - safe - stm - text - unix - zeromq-haskell - ]; - description = "Hack2 Mongrel2 HTTP handler"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "hack2-handler-snap-server" = callPackage ( - { - mkDerivation, - air, - base, - blaze-builder, - bytestring, - case-insensitive, - containers, - data-default, - directory, - enumerator, - hack2, - mtl, - network, - snap-core, - snap-server, - }: - mkDerivation { - pname = "hack2-handler-snap-server"; - version = "2015.3.9"; - sha256 = "1qs5mncl44p410ni8hbpgvmv81158z62mcg66fmnnlrkwdr1bbh7"; - libraryHaskellDepends = [ - air - base - blaze-builder - bytestring - case-insensitive - containers - data-default - directory - enumerator - hack2 - mtl - network - snap-core - snap-server - ]; - description = "Hack2 Snap server handler"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "hack2-handler-warp" = callPackage ( - { - mkDerivation, - air, - base, - data-default, - hack2, - hack2-interface-wai, - warp, - }: - mkDerivation { - pname = "hack2-handler-warp"; - version = "2012.5.25"; - sha256 = "1p0lkhf95xkllfpcb9yibpa1rkam90bccmzj2aa60shd7v9qx9r5"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - air - base - data-default - hack2 - hack2-interface-wai - warp - ]; - description = "Hack2 warp handler"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "hack2-interface-wai" = callPackage ( { mkDerivation, @@ -289709,92 +168815,6 @@ self: { } ) { }; - "hackage-mirror" = callPackage ( - { - mkDerivation, - aws, - base, - bytestring, - cereal, - conduit, - conduit-extra, - cryptohash, - data-default, - directory, - exceptions, - fast-logger, - filepath, - http-conduit, - lifted-async, - lifted-base, - mmorph, - monad-control, - monad-logger, - old-locale, - optparse-applicative, - resourcet, - retry, - shakespeare, - stm, - tar, - template-haskell, - temporary, - text, - thyme, - transformers, - unordered-containers, - }: - mkDerivation { - pname = "hackage-mirror"; - version = "0.1.1.1"; - sha256 = "1blfxvxikhfpmr20k5cbn29wzn2d6h8i0s8qq3k1m0qx0vkvl46p"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aws - base - bytestring - cereal - conduit - conduit-extra - cryptohash - data-default - directory - exceptions - fast-logger - filepath - http-conduit - lifted-async - lifted-base - mmorph - monad-control - monad-logger - old-locale - resourcet - retry - shakespeare - stm - tar - template-haskell - temporary - text - thyme - transformers - unordered-containers - ]; - executableHaskellDepends = [ - base - monad-logger - optparse-applicative - ]; - description = "Simple mirroring utility for Hackage"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - mainProgram = "hackage-mirror"; - broken = true; - } - ) { }; - "hackage-plot" = callPackage ( { mkDerivation, @@ -289833,98 +168853,6 @@ self: { } ) { }; - "hackage-processing" = callPackage ( - { - mkDerivation, - base, - Cabal, - containers, - hackage-db, - }: - mkDerivation { - pname = "hackage-processing"; - version = "0.0.0.1"; - sha256 = "0rwb9wxrrvbnm3jdzbk5iwgaah4xbk800arjfa8klqdza3g2mplq"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - Cabal - containers - hackage-db - ]; - description = "Process 00-index.tar.gz from Hackage"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "hackage-find-contribution"; - broken = true; - } - ) { }; - - "hackage-proxy" = callPackage ( - { - mkDerivation, - base, - basic-prelude, - blaze-builder, - bytestring, - Cabal, - case-insensitive, - conduit, - containers, - filepath, - http-client, - http-client-conduit, - http-conduit, - http-types, - optparse-applicative, - tar, - text, - transformers, - unordered-containers, - wai, - warp, - zlib, - zlib-conduit, - }: - mkDerivation { - pname = "hackage-proxy"; - version = "0.3.0.1"; - sha256 = "1vicmj070nb76zcxfmkj4sv0rxrrl13r31psnsgb8azbmvs1s0yp"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - basic-prelude - blaze-builder - bytestring - Cabal - case-insensitive - conduit - containers - filepath - http-client - http-client-conduit - http-conduit - http-types - optparse-applicative - tar - text - transformers - unordered-containers - wai - warp - zlib - zlib-conduit - ]; - description = "Provide a proxy for Hackage which modifies responses in some way. (deprecated)"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - mainProgram = "hackage-proxy"; - broken = true; - } - ) { }; - "hackage-repo-tool" = callPackage ( { mkDerivation, @@ -290320,155 +169248,6 @@ self: { } ) { }; - "hackage-server" = callPackage ( - { - mkDerivation, - acid-state, - aeson, - alex, - array, - async, - base, - base16-bytestring, - base64-bytestring, - binary, - blaze-builder, - bytestring, - Cabal, - cereal, - containers, - crypto-api, - csv, - deepseq, - directory, - filepath, - happstack-server, - happy, - HaXml, - hscolour, - hslogger, - HStringTemplate, - HTTP, - libxcrypt, - lifted-base, - mime-mail, - mtl, - network, - old-locale, - parsec, - pretty, - process, - pureMD5, - QuickCheck, - random, - rss, - safecopy, - snowball, - split, - stm, - tar, - text, - time, - tokenize, - transformers, - unix, - unordered-containers, - vector, - xhtml, - xml, - zlib, - }: - mkDerivation { - pname = "hackage-server"; - version = "0.5.0"; - sha256 = "1xsy2clsg53rhxgkb9vlan7dw7xqphm8gr1ajl8kq5ymfahnyd1i"; - isLibrary = false; - isExecutable = true; - enableSeparateDataOutput = true; - executableHaskellDepends = [ - acid-state - aeson - array - async - base - base16-bytestring - base64-bytestring - binary - blaze-builder - bytestring - Cabal - cereal - containers - crypto-api - csv - deepseq - directory - filepath - happstack-server - HaXml - hscolour - hslogger - HStringTemplate - HTTP - lifted-base - mime-mail - mtl - network - old-locale - parsec - pretty - process - pureMD5 - QuickCheck - random - rss - safecopy - snowball - split - stm - tar - text - time - tokenize - transformers - unix - unordered-containers - vector - xhtml - zlib - ]; - executableSystemDepends = [ libxcrypt ]; - executableToolDepends = [ - alex - happy - ]; - testHaskellDepends = [ - aeson - base - base64-bytestring - bytestring - Cabal - directory - filepath - HTTP - network - process - random - tar - text - unix - unordered-containers - vector - xml - zlib - ]; - description = "The Hackage web server"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { inherit (pkgs) libxcrypt; }; - "hackage-sparks" = callPackage ( { mkDerivation, @@ -290507,95 +169286,6 @@ self: { } ) { }; - "hackage-whatsnew" = callPackage ( - { - mkDerivation, - base, - Cabal, - containers, - directory, - filepath, - hackage-db, - process, - temporary, - }: - mkDerivation { - pname = "hackage-whatsnew"; - version = "0.1.3"; - sha256 = "0hrpwrx4ic8hn7ziimc5a34l6y1lywkmzphb73qpk2xgl91q6gq0"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - Cabal - containers - directory - filepath - hackage-db - process - temporary - ]; - description = "Check for differences between working directory and hackage"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "hackage-whatsnew"; - broken = true; - } - ) { }; - - "hackage2hwn" = callPackage ( - { - mkDerivation, - base, - download, - feed, - tagsoup, - }: - mkDerivation { - pname = "hackage2hwn"; - version = "0.5.1"; - sha256 = "0vbp7c1g7dx119xxsn0f0fhk14l35jxmg7zdaqr1vcjhprj3nh6q"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - download - feed - tagsoup - ]; - description = "Convert Hackage RSS feeds to wiki format for publishing on Haskell.org"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "hackage2hwn"; - broken = true; - } - ) { }; - - "hackage2twitter" = callPackage ( - { - mkDerivation, - base, - feed, - feed2twitter, - }: - mkDerivation { - pname = "hackage2twitter"; - version = "0.2.1"; - sha256 = "131hl59imxhql3hfp8m9363fgsgdywz1p8idrybncipyblwpsjgq"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - feed - feed2twitter - ]; - description = "Send new Hackage releases to Twitter"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "hackage2twitter"; - } - ) { }; - "hackager" = callPackage ( { mkDerivation, @@ -290710,57 +169400,6 @@ self: { } ) { }; - "hackmanager" = callPackage ( - { - mkDerivation, - base, - bytestring, - Cabal, - directory, - file-embed, - Glob, - hastache, - http-client, - http-client-tls, - http-types, - mtl, - optparse-applicative, - process, - text, - }: - mkDerivation { - pname = "hackmanager"; - version = "0.1.0.0"; - sha256 = "0iim0mr6sxxjx9krj6mc50aysk9lj15gdffyaqp9pyf8fbvynp4a"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - bytestring - Cabal - directory - file-embed - Glob - hastache - http-client - http-client-tls - http-types - mtl - process - text - ]; - executableHaskellDepends = [ - base - optparse-applicative - text - ]; - description = "Generate useful files for Haskell projects"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "hackmanager"; - } - ) { }; - "hackport" = callPackage ( { mkDerivation, @@ -290918,60 +169557,6 @@ self: { } ) { }; - "hactor" = callPackage ( - { - mkDerivation, - base, - containers, - monad-control, - mtl, - resourcet, - stm, - stm-chans, - transformers-base, - }: - mkDerivation { - pname = "hactor"; - version = "1.2.0.0"; - sha256 = "0jgnifwgfxapi8l0ds56xr7h66jprn1ynpwmvhafbyk84ymznf8y"; - libraryHaskellDepends = [ - base - containers - monad-control - mtl - resourcet - stm - stm-chans - transformers-base - ]; - description = "Lightweight Erlang-style actors for Haskell"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "hactors" = callPackage ( - { - mkDerivation, - base, - stm, - }: - mkDerivation { - pname = "hactors"; - version = "0.0.3.1"; - sha256 = "0nxcl3v9gnnyjzdpk30m2pmrhwcva9rky2dxrj4nnkr67ajm2dj0"; - libraryHaskellDepends = [ - base - stm - ]; - description = "Practical actors for Haskell"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "haddock" = callPackage ( { mkDerivation, @@ -290997,7 +169582,6 @@ self: { ]; description = "A documentation-generation tool for Haskell libraries"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "haddock"; } ) { }; @@ -291090,45 +169674,6 @@ self: { } ) { }; - "haddock-leksah" = callPackage ( - { - mkDerivation, - array, - base, - Cabal, - containers, - directory, - filepath, - ghc, - ghc-paths, - pretty, - }: - mkDerivation { - pname = "haddock-leksah"; - version = "2.6.0"; - sha256 = "1a56nihkxybldk55g69v2aw6r4ipa9x86i0jr19fd23zxvancs8h"; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; - executableHaskellDepends = [ - array - base - Cabal - containers - directory - filepath - ghc - ghc-paths - pretty - ]; - description = "A documentation-generation tool for Haskell libraries"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "haddock"; - broken = true; - } - ) { }; - "haddock-library" = callPackage ( { mkDerivation, @@ -291178,41 +169723,6 @@ self: { } ) { }; - "haddock-test" = callPackage ( - { - mkDerivation, - base, - bytestring, - Cabal, - directory, - filepath, - process, - syb, - xhtml, - xml, - }: - mkDerivation { - pname = "haddock-test"; - version = "0.0.1"; - sha256 = "1ax8fnfrwx66csj952f3virxzapipan9da7z5l1zc12nqkifbs7w"; - libraryHaskellDepends = [ - base - bytestring - Cabal - directory - filepath - process - syb - xhtml - xml - ]; - description = "Test utilities for Haddock"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "haddock-use-refs" = callPackage ( { mkDerivation, @@ -291249,61 +169759,6 @@ self: { } ) { }; - "haddocset" = callPackage ( - { - mkDerivation, - base, - Cabal, - conduit, - conduit-extra, - directory, - exceptions, - filepath, - ghc, - haddock-api, - http-types, - mtl, - optparse-applicative, - process, - resourcet, - sqlite-simple, - tagsoup, - text, - transformers, - }: - mkDerivation { - pname = "haddocset"; - version = "0.4.3"; - sha256 = "0fy4vx7jig9zkg4i8fajrz1mz72cdi0y6qk1h152x7nlz26f7ymk"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - Cabal - conduit - conduit-extra - directory - exceptions - filepath - ghc - haddock-api - http-types - mtl - optparse-applicative - process - resourcet - sqlite-simple - tagsoup - text - transformers - ]; - description = "Generate docset of Dash by Haddock haskell documentation tool"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "haddocset"; - } - ) { }; - "hadolint" = callPackage ( { mkDerivation, @@ -291423,220 +169878,6 @@ self: { } ) { }; - "hadoop-formats" = callPackage ( - { - mkDerivation, - attoparsec, - base, - bytestring, - filepath, - snappy, - text, - vector, - }: - mkDerivation { - pname = "hadoop-formats"; - version = "0.2.1.1"; - sha256 = "1w3869jz3mxhzdik5fwaha7dn9rhjg5w8g0qnznd4x45cnzxv5ga"; - revision = "1"; - editedCabalFile = "0lq5vvhyfk0m7jbg4fyxiqy33w9zl5bf6kk97l09z2zjnfwqq92r"; - libraryHaskellDepends = [ - attoparsec - base - bytestring - text - vector - ]; - librarySystemDepends = [ snappy ]; - testHaskellDepends = [ - base - bytestring - filepath - text - vector - ]; - description = "Read/write file formats commonly used by Hadoop"; - license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { inherit (pkgs) snappy; }; - - "hadoop-rpc" = callPackage ( - { - mkDerivation, - attoparsec, - base, - bytestring, - cereal, - exceptions, - gsasl, - hashable, - monad-loops, - network, - protobuf, - random, - socks, - stm, - tasty, - tasty-hunit, - text, - transformers, - unix, - unordered-containers, - uuid, - vector, - xmlhtml, - }: - mkDerivation { - pname = "hadoop-rpc"; - version = "1.1.0.0"; - sha256 = "1ygwvr35rh0r8f2hqgwi0bmf6pa2fvsw46mdzrq37b9siyh47pl1"; - libraryHaskellDepends = [ - attoparsec - base - bytestring - cereal - exceptions - gsasl - hashable - monad-loops - network - protobuf - random - socks - stm - text - transformers - unix - unordered-containers - uuid - vector - xmlhtml - ]; - testHaskellDepends = [ - base - protobuf - tasty - tasty-hunit - vector - ]; - description = "Use the Hadoop RPC interface from Haskell"; - license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "hadoop-streaming" = callPackage ( - { - mkDerivation, - base, - bytestring, - conduit, - extra, - hspec, - hspec-discover, - text, - }: - mkDerivation { - pname = "hadoop-streaming"; - version = "0.2.0.3"; - sha256 = "1zlk9spilimpnvgyifpwp4k2n4ki5sv7lsaw912q9fxp8mmwycsy"; - libraryHaskellDepends = [ - base - bytestring - conduit - extra - text - ]; - testHaskellDepends = [ - base - bytestring - conduit - extra - hspec - ]; - testToolDepends = [ hspec-discover ]; - description = "A simple Hadoop streaming library"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "hadoop-tools" = callPackage ( - { - mkDerivation, - attoparsec, - base, - boxes, - bytestring, - clock, - configurator, - exceptions, - filepath, - hadoop-rpc, - old-locale, - optparse-applicative, - protobuf, - regex-pcre-builtin, - split, - stm, - tasty, - tasty-hunit, - tasty-quickcheck, - text, - time, - transformers, - unix, - vector, - }: - mkDerivation { - pname = "hadoop-tools"; - version = "1.0.1"; - sha256 = "06x88mf7z8sbvzbcljzyzyh92y7c6n1hv3221nbyrwvmmf8i548z"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - attoparsec - base - boxes - bytestring - clock - configurator - exceptions - filepath - hadoop-rpc - old-locale - optparse-applicative - protobuf - regex-pcre-builtin - split - stm - text - time - transformers - unix - vector - ]; - testHaskellDepends = [ - attoparsec - base - bytestring - hadoop-rpc - tasty - tasty-hunit - tasty-quickcheck - vector - ]; - description = "Fast command line tools for working with Hadoop"; - license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; - mainProgram = "hh"; - } - ) { }; - "haeredes" = callPackage ( { mkDerivation, base }: mkDerivation { @@ -291652,111 +169893,6 @@ self: { } ) { }; - "hafar" = callPackage ( - { - mkDerivation, - base, - intervals, - mtl, - QuickCheck, - }: - mkDerivation { - pname = "hafar"; - version = "0.1.1.0"; - sha256 = "1cr1qb2p55n3hazxd4c4ziwwwyl5y3acqp5hhhv9m68pn53nqpas"; - libraryHaskellDepends = [ - base - intervals - mtl - ]; - testHaskellDepends = [ - base - intervals - mtl - QuickCheck - ]; - description = "Affine arithmetic library for Haskell"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "haggis" = callPackage ( - { - mkDerivation, - base, - blaze-builder, - blaze-html, - bytestring, - containers, - convertible, - directory, - filemanip, - filepath, - HDBC, - HDBC-sqlite3, - hquery, - MissingH, - network-uri, - old-locale, - optparse-applicative, - pandoc, - pandoc-types, - parsec, - rss, - split, - text, - time, - unix, - xmlhtml, - }: - mkDerivation { - pname = "haggis"; - version = "0.1.3.0"; - sha256 = "0f6gq1knbw22z83xa4fq8p1g75vfqj40vfns6df8n1y2nzziryb8"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - blaze-builder - blaze-html - bytestring - containers - convertible - directory - filemanip - filepath - HDBC - HDBC-sqlite3 - hquery - MissingH - network-uri - old-locale - pandoc - pandoc-types - parsec - rss - split - text - time - unix - xmlhtml - ]; - executableHaskellDepends = [ - base - directory - filemanip - filepath - optparse-applicative - ]; - description = "A static site generator with blogging/comments support"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - mainProgram = "haggis"; - } - ) { }; - "haggle" = callPackage ( { mkDerivation, @@ -291843,42 +169979,6 @@ self: { } ) { }; - "hahp" = callPackage ( - { - mkDerivation, - base, - containers, - hmatrix, - parallel, - random, - time, - }: - mkDerivation { - pname = "hahp"; - version = "0.1.3"; - sha256 = "1k9l9pdms8zamp77gkix7qiciyb2ad7xj4g6l91k9yh4avcyy28z"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - containers - hmatrix - parallel - random - time - ]; - executableHaskellDepends = [ - base - time - ]; - description = "Analytic Hierarchy Process"; - license = lib.licenses.agpl3Only; - hydraPlatforms = lib.platforms.none; - mainProgram = "hahp-example"; - broken = true; - } - ) { }; - "haiji" = callPackage ( { mkDerivation, @@ -292030,36 +170130,6 @@ self: { } ) { }; - "hailgun-send" = callPackage ( - { - mkDerivation, - base, - bytestring, - configurator, - hailgun, - text, - }: - mkDerivation { - pname = "hailgun-send"; - version = "0.1.1.1"; - sha256 = "1cxvzg5bfwsdly9k24izwnk5gf9vvzisaj3m6ng647bm1fc598c6"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - bytestring - configurator - hailgun - text - ]; - description = "A program to send emails throught the Mailgun api"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - mainProgram = "hailgun-send"; - broken = true; - } - ) { }; - "hailgun-simple" = callPackage ( { mkDerivation, @@ -292235,124 +170305,6 @@ self: { } ) { quickcheck-lio-instances = null; }; - "hails-bin" = callPackage ( - { - mkDerivation, - base, - bson, - bytestring, - containers, - ghc-paths, - hails, - iterIO, - iterio-server, - mongoDB, - mtl, - }: - mkDerivation { - pname = "hails-bin"; - version = "0.1.1.1"; - sha256 = "006qy5mkhh8zqy9mrpwjiym7klqma49zglwpjmx2ikmkkq9qnfvr"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - bson - bytestring - containers - ghc-paths - hails - iterIO - iterio-server - mongoDB - mtl - ]; - description = "Dynamic launcher of Hails applications"; - license = lib.licenses.gpl2Only; - hydraPlatforms = lib.platforms.none; - mainProgram = "hails"; - } - ) { }; - - "hairy" = callPackage ( - { - mkDerivation, - aeson, - base, - criterion, - data-default, - heroku, - hspec, - http-types, - monad-logger, - mtl, - persistent, - persistent-postgresql, - persistent-template, - scotty, - text, - time, - transformers, - wai, - wai-extra, - warp, - }: - mkDerivation { - pname = "hairy"; - version = "0.1.3"; - sha256 = "19kgygj9d3m56xcfc1zm0ki2ncgifrrsrf90bvp9bykyixycplap"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson - base - data-default - heroku - http-types - monad-logger - mtl - persistent - persistent-postgresql - persistent-template - scotty - text - time - transformers - wai - wai-extra - warp - ]; - executableHaskellDepends = [ base ]; - testHaskellDepends = [ - base - hspec - http-types - mtl - persistent - scotty - time - wai - wai-extra - ]; - benchmarkHaskellDepends = [ - base - criterion - http-types - mtl - persistent - scotty - time - wai - wai-extra - ]; - description = "A JSON REST API"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - mainProgram = "hairy"; - broken = true; - } - ) { }; - "hakaru" = callPackage ( { mkDerivation, @@ -292451,125 +170403,6 @@ self: { } ) { }; - "hake" = callPackage ( - { - mkDerivation, - base, - directory, - filepath, - mtl, - process, - regexpr, - time, - yjtools, - }: - mkDerivation { - pname = "hake"; - version = "1.3.8.1"; - sha256 = "0h0y466b664xyxi1hr8c7il4cslrmb1hyhsjzhvs55l33zb7591b"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - filepath - mtl - time - ]; - executableHaskellDepends = [ - directory - process - regexpr - yjtools - ]; - description = "make tool. ruby : rake = haskell : hake"; - license = "GPL"; - hydraPlatforms = lib.platforms.none; - mainProgram = "hake"; - } - ) { }; - - "hakismet" = callPackage ( - { - mkDerivation, - base, - HTTP, - network, - }: - mkDerivation { - pname = "hakismet"; - version = "0.1"; - sha256 = "1ddmnzan16vn0fbp1fgsidahayihhr0vw8saypdqq7lnhqw8j9d4"; - libraryHaskellDepends = [ - base - HTTP - network - ]; - description = "Akismet spam protection library"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "hakka" = callPackage ( - { - mkDerivation, - base, - transformers, - }: - mkDerivation { - pname = "hakka"; - version = "0.2.0"; - sha256 = "02rd2sw4a6ayr4kqqvkr14gxbpd3y9m92m9kvkk5m5701l1nz0xq"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - transformers - ]; - executableHaskellDepends = [ base ]; - description = "Minimal akka-inspired actor library"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - mainProgram = "hakka-example"; - broken = true; - } - ) { }; - - "hako" = callPackage ( - { - mkDerivation, - base, - haskell-src-meta, - parsec, - QuickCheck, - template-haskell, - text, - transformers, - }: - mkDerivation { - pname = "hako"; - version = "1.0.0"; - sha256 = "1gcw15522yh0aa7xa793gda45qmq8my15id4ybivv3n16pcr7prm"; - libraryHaskellDepends = [ - base - haskell-src-meta - parsec - template-haskell - text - transformers - ]; - testHaskellDepends = [ - base - QuickCheck - ]; - description = "A mako-like quasi-quoter template library"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "hakyll" = callPackage ( { mkDerivation, @@ -292819,35 +170652,6 @@ self: { } ) { inherit (pkgs) util-linux; }; - "hakyll-R" = callPackage ( - { - mkDerivation, - base, - directory, - filepath, - hakyll, - pandoc, - process, - }: - mkDerivation { - pname = "hakyll-R"; - version = "0.1.0.3"; - sha256 = "0sr0mpyhjr7ajg227rfylhv2950vip6zkryalxp39m1xv0dh2rb3"; - libraryHaskellDepends = [ - base - directory - filepath - hakyll - pandoc - process - ]; - description = "A package allowing to write Hakyll blog posts in Rmd"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "hakyll-agda" = callPackage ( { mkDerivation, @@ -292924,139 +170728,6 @@ self: { } ) { }; - "hakyll-blaze-templates" = callPackage ( - { - mkDerivation, - base, - blaze-html, - blaze-markup, - hakyll, - }: - mkDerivation { - pname = "hakyll-blaze-templates"; - version = "0.1.1.0"; - sha256 = "11dl3rqls2yxkmycx63xr1cix4adk6b29sbwr4v5n48bqamr7p1j"; - libraryHaskellDepends = [ - base - blaze-html - blaze-markup - hakyll - ]; - description = "Blaze templates for Hakyll"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "hakyll-contrib" = callPackage ( - { - mkDerivation, - base, - directory, - filepath, - hakyll, - pandoc, - }: - mkDerivation { - pname = "hakyll-contrib"; - version = "0.1.0.1"; - sha256 = "0w23laiw6a5hxfq5hjq8vn3k7fx5l4yb9p8qcbm62zlycza1ci14"; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base - hakyll - pandoc - ]; - executableHaskellDepends = [ - base - directory - filepath - hakyll - ]; - description = "Extra modules for the hakyll website compiler"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "hakyll-contrib"; - broken = true; - } - ) { }; - - "hakyll-contrib-csv" = callPackage ( - { - mkDerivation, - base, - blaze-html, - bytestring, - cassava, - hakyll, - hspec, - vector, - }: - mkDerivation { - pname = "hakyll-contrib-csv"; - version = "0.1.0.2"; - sha256 = "1vqd9y5s30q3hy7fdz7dlng9xg9576qk4jwchya83nm48a3fzpmp"; - libraryHaskellDepends = [ - base - blaze-html - bytestring - cassava - hakyll - vector - ]; - testHaskellDepends = [ - base - blaze-html - bytestring - cassava - hspec - ]; - description = "Generate Html tables from Csv files"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "hakyll-contrib-elm" = callPackage ( - { - mkDerivation, - base, - bytestring, - directory, - hakyll, - process, - temporary, - }: - mkDerivation { - pname = "hakyll-contrib-elm"; - version = "0.1.0.1"; - sha256 = "0azlzfxmx7ghkc6q9l8chz1paxyh6r06df3jfshmk42rdfg0gjwb"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - bytestring - directory - hakyll - process - temporary - ]; - executableHaskellDepends = [ - base - hakyll - ]; - description = "Compile Elm code for inclusion in Hakyll static site"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "hakyll-contrib-elm-example"; - broken = true; - } - ) { }; - "hakyll-contrib-hyphenation" = callPackage ( { mkDerivation, @@ -293135,47 +170806,6 @@ self: { } ) { }; - "hakyll-contrib-links" = callPackage ( - { - mkDerivation, - base, - binary, - containers, - hakyll, - pandoc, - pandoc-types, - parsec, - QuickCheck, - test-framework, - test-framework-quickcheck2, - }: - mkDerivation { - pname = "hakyll-contrib-links"; - version = "0.2.0.0"; - sha256 = "0gzg88pcqxwj4qwr2qj24csjljvxcz3v9iclhz5f9g8dx41rkiy5"; - libraryHaskellDepends = [ - base - binary - containers - hakyll - pandoc - pandoc-types - parsec - ]; - testHaskellDepends = [ - base - binary - QuickCheck - test-framework - test-framework-quickcheck2 - ]; - description = "A hakyll library that helps maintain a separate links database"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "hakyll-convert" = callPackage ( { mkDerivation, @@ -293300,61 +170930,6 @@ self: { } ) { }; - "hakyll-dir-list" = callPackage ( - { - mkDerivation, - base, - containers, - data-default, - filepath, - hakyll, - }: - mkDerivation { - pname = "hakyll-dir-list"; - version = "1.0.0.4"; - sha256 = "0n7cfamaan0yyrpdfqmjbbgv7cg172hp4zs16zf52l90xdq253h9"; - libraryHaskellDepends = [ - base - containers - data-default - filepath - hakyll - ]; - description = "Allow Hakyll to create hierarchical menues from directories"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "hakyll-elm" = callPackage ( - { - mkDerivation, - base, - blaze-html, - blaze-markup, - Elm, - hakyll, - mtl, - }: - mkDerivation { - pname = "hakyll-elm"; - version = "0.2.1"; - sha256 = "0bgwcxarsa40aylvg4cc7ha5y87xklkc4ifwd17l69l4xbb4iqpk"; - libraryHaskellDepends = [ - base - blaze-html - blaze-markup - Elm - hakyll - mtl - ]; - description = "Hakyll wrapper for the Elm compiler"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "hakyll-favicon" = callPackage ( { mkDerivation, @@ -293461,28 +171036,6 @@ self: { } ) { }; - "hakyll-ogmarkup" = callPackage ( - { - mkDerivation, - base, - hakyll, - ogmarkup, - }: - mkDerivation { - pname = "hakyll-ogmarkup"; - version = "4.0"; - sha256 = "1w8wmqdfxf9w4mb9k77gak9iqxysa7mbb5phfh9a0hy30vx2qb1d"; - libraryHaskellDepends = [ - base - hakyll - ogmarkup - ]; - description = "Integrate ogmarkup document with Hakyll"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "hakyll-process" = callPackage ( { mkDerivation, @@ -293535,29 +171088,6 @@ self: { } ) { }; - "hakyll-series" = callPackage ( - { - mkDerivation, - base, - containers, - hakyll, - }: - mkDerivation { - pname = "hakyll-series"; - version = "0.1.0.1"; - sha256 = "1c86lzfri5s3xzh5qyw1rpbv1wag26vbxl7pbcmjl25ad380riax"; - libraryHaskellDepends = [ - base - containers - hakyll - ]; - description = "Adds series functionality to hakyll"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "hakyll-shakespeare" = callPackage ( { mkDerivation, @@ -293587,57 +171117,6 @@ self: { } ) { }; - "hakyll-shortcode" = callPackage ( - { - mkDerivation, - base, - blaze-html, - blaze-markup, - MissingH, - network-uri, - parsec, - QuickCheck, - regex-posix, - split, - tasty, - tasty-hunit, - tasty-quickcheck, - }: - mkDerivation { - pname = "hakyll-shortcode"; - version = "0.0.2"; - sha256 = "13z24pg5043s5fr2ak4v3n6vv80xv3c96bibxgrcfcrqfcibvqfx"; - libraryHaskellDepends = [ - base - blaze-html - blaze-markup - MissingH - network-uri - parsec - regex-posix - split - ]; - testHaskellDepends = [ - base - blaze-html - blaze-markup - MissingH - network-uri - parsec - QuickCheck - regex-posix - split - tasty - tasty-hunit - tasty-quickcheck - ]; - description = "A shortcode extension module for Hakyll"; - license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "hakyll-shortcut-links" = callPackage ( { mkDerivation, @@ -293868,72 +171347,6 @@ self: { } ) { }; - "halberd" = callPackage ( - { - mkDerivation, - base, - Cabal, - containers, - haskell-names, - haskell-packages, - haskell-src-exts, - HUnit, - mtl, - safe, - split, - syb, - tagged, - test-framework, - test-framework-hunit, - }: - mkDerivation { - pname = "halberd"; - version = "0.1.2.9"; - sha256 = "1d8r1cz9q9mgw1abz8b8n6lnnc19g223hv3igznxfldbws7d6zrj"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - Cabal - containers - haskell-names - haskell-packages - haskell-src-exts - mtl - safe - syb - ]; - executableHaskellDepends = [ - base - Cabal - haskell-names - haskell-packages - haskell-src-exts - mtl - safe - tagged - ]; - testHaskellDepends = [ - base - Cabal - containers - haskell-names - haskell-packages - haskell-src-exts - HUnit - mtl - split - tagged - test-framework - test-framework-hunit - ]; - description = "A tool to generate missing import statements for Haskell modules"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "halberd"; - } - ) { }; - "half" = callPackage ( { mkDerivation, @@ -293996,68 +171409,6 @@ self: { } ) { }; - "halfs" = callPackage ( - { - mkDerivation, - array, - base, - bytestring, - cereal, - containers, - directory, - filepath, - fingertree, - HFuse, - mtl, - QuickCheck, - random, - time, - unix, - }: - mkDerivation { - pname = "halfs"; - version = "2.0"; - sha256 = "1k47q0vp0cmvmxz28hmv8dgniz9ks7h0wjjmdkjgvb77p8jj2akd"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - array - base - bytestring - cereal - containers - directory - filepath - fingertree - mtl - QuickCheck - random - time - unix - ]; - executableHaskellDepends = [ - array - base - bytestring - cereal - containers - directory - filepath - fingertree - HFuse - mtl - QuickCheck - random - time - unix - ]; - description = "The HAskelL File System (\"halfs\" -- intended for use on the HaLVM)"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "halfsplit" = callPackage ( { mkDerivation, base }: mkDerivation { @@ -294194,33 +171545,6 @@ self: { } ) { Halide = null; }; - "halipeto" = callPackage ( - { - mkDerivation, - base, - directory, - HaXml, - pandoc, - }: - mkDerivation { - pname = "halipeto"; - version = "2.4.1"; - sha256 = "1anyf6mh13rmj5a0lsayrcxzvm3zk0a2943pzkgz06y3aqgmcbdb"; - revision = "1"; - editedCabalFile = "0x30z8l7kfxvw4qzva7qgqair76v2ml8lgmd7lh4pkihq11f678q"; - libraryHaskellDepends = [ - base - directory - HaXml - pandoc - ]; - description = "Haskell Static Web Page Generator"; - license = "GPL"; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "halive" = callPackage ( { mkDerivation, @@ -294392,116 +171716,6 @@ self: { } ) { }; - "halma-gui" = callPackage ( - { - mkDerivation, - async, - base, - data-default, - diagrams-cairo, - diagrams-gtk, - diagrams-lib, - gtk, - halma, - mtl, - mvc, - pipes, - timeit, - }: - mkDerivation { - pname = "halma-gui"; - version = "0.1.1.1"; - sha256 = "15kp369lvy67mc86f5c6k3x0849vcl4bqmd5l4brymy79d7b2f2p"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - async - base - data-default - diagrams-cairo - diagrams-gtk - diagrams-lib - gtk - halma - mtl - mvc - pipes - timeit - ]; - description = "GTK application for playing Halma"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - mainProgram = "halma-gui"; - } - ) { }; - - "halma-telegram-bot" = callPackage ( - { - mkDerivation, - aeson, - aeson-pretty, - base, - bytestring, - containers, - data-default, - diagrams-cairo, - diagrams-lib, - directory, - exceptions, - filepath, - halma, - http-client, - http-client-tls, - megaparsec, - mtl, - optparse-applicative, - semigroups, - servant-client, - telegram-api, - temporary, - text, - transformers, - vector, - }: - mkDerivation { - pname = "halma-telegram-bot"; - version = "0.1.0.0"; - sha256 = "1ynwmyvwyn6nxpdvq3pqyxfjyz702icri3r0vywcriw63ld32zhb"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - aeson - aeson-pretty - base - bytestring - containers - data-default - diagrams-cairo - diagrams-lib - directory - exceptions - filepath - halma - http-client - http-client-tls - megaparsec - mtl - optparse-applicative - semigroups - servant-client - telegram-api - temporary - text - transformers - vector - ]; - description = "Telegram bot for playing Halma"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - mainProgram = "halma-telegram-bot"; - } - ) { }; - "haltavista" = callPackage ( { mkDerivation, @@ -294702,59 +171916,6 @@ self: { } ) { }; - "hamilton" = callPackage ( - { - mkDerivation, - ad, - ansi-wl-pprint, - base, - containers, - finite-typelits, - ghc-typelits-knownnat, - hmatrix, - hmatrix-gsl, - hmatrix-vector-sized, - optparse-applicative, - typelits-witnesses, - vector, - vector-sized, - vty, - }: - mkDerivation { - pname = "hamilton"; - version = "0.1.0.3"; - sha256 = "06yvmm9641v74kd265csycwp6ywyc19mx0r0csycljcfghhj6xiw"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - ad - base - hmatrix - hmatrix-gsl - hmatrix-vector-sized - typelits-witnesses - vector-sized - ]; - executableHaskellDepends = [ - ansi-wl-pprint - base - containers - finite-typelits - ghc-typelits-knownnat - hmatrix - optparse-applicative - vector - vector-sized - vty - ]; - description = "Physics on generalized coordinate systems using Hamiltonian Mechanics and AD"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "hamilton-examples"; - broken = true; - } - ) { }; - "hamlet" = callPackage ( { mkDerivation, @@ -294775,123 +171936,6 @@ self: { } ) { }; - "hampp" = callPackage ( - { - mkDerivation, - base, - bytestring, - containers, - directory, - filepath, - Glob, - preprocessor-tools, - }: - mkDerivation { - pname = "hampp"; - version = "0.2.1"; - sha256 = "0y7lsh16xrlgsgfsqw00ldcdcjwsy8cziw8p3g753k9m23can4wl"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - bytestring - containers - directory - filepath - Glob - preprocessor-tools - ]; - description = "Haskell macro preprocessor"; - license = lib.licenses.publicDomain; - hydraPlatforms = lib.platforms.none; - mainProgram = "hampp"; - broken = true; - } - ) { }; - - "hamsql" = callPackage ( - { - mkDerivation, - aeson, - base, - bytestring, - containers, - directory, - doctemplates, - file-embed, - filepath, - frontmatter, - groom, - network-uri, - optparse-applicative, - postgresql-simple, - text, - transformers, - unordered-containers, - yaml, - }: - mkDerivation { - pname = "hamsql"; - version = "0.9.0.0"; - sha256 = "1fchpcisvc5pcf7s0ywjdg0bvkbql31ac3pqdvigrrfb6zk9135v"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson - base - bytestring - containers - directory - doctemplates - file-embed - filepath - frontmatter - groom - network-uri - optparse-applicative - postgresql-simple - text - transformers - unordered-containers - yaml - ]; - executableHaskellDepends = [ base ]; - testHaskellDepends = [ base ]; - description = "Interpreter for SQL-structure definitions in YAML (YamSql)"; - license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - mainProgram = "hamsql"; - broken = true; - } - ) { }; - - "hamtmap" = callPackage ( - { - mkDerivation, - array, - base, - deepseq, - hashable, - }: - mkDerivation { - pname = "hamtmap"; - version = "0.3"; - sha256 = "04fr1wjlbmr0c9cp9ybdcirlgayw843klxi0lwl9b9pzwzn0glfl"; - revision = "1"; - editedCabalFile = "1dik6zsi0x310m2x9qy64c0b4bd2gag1l6v1nsh09xqj7vlfpp5v"; - libraryHaskellDepends = [ - array - base - deepseq - hashable - ]; - description = "A purely functional and persistent hash map"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "hamtsolo" = callPackage ( { mkDerivation, @@ -294940,42 +171984,6 @@ self: { } ) { }; - "hamusic" = callPackage ( - { - mkDerivation, - base, - containers, - directory, - filepath, - haskore, - HaXml, - musicxml, - non-negative, - process, - }: - mkDerivation { - pname = "hamusic"; - version = "0.1.2.1"; - sha256 = "1gfzydgnf8fffsl2f189gy81pb13dbf81i1a83laqsck6dhp60in"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - containers - directory - haskore - HaXml - musicxml - non-negative - process - ]; - executableHaskellDepends = [ filepath ]; - description = "Library to handle abstract music"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "han2zen" = callPackage ( { mkDerivation, @@ -295040,104 +172048,6 @@ self: { } ) { }; - "handa-gdata" = callPackage ( - { - mkDerivation, - base, - base64-bytestring, - binary, - bytestring, - case-insensitive, - cmdargs, - data-default, - directory, - filepath, - GenericPretty, - HTTP, - http-conduit, - json, - network, - old-locale, - pretty, - process, - pureMD5, - random, - regex-posix, - resourcet, - split, - time, - unix-compat, - utf8-string, - xml, - }: - mkDerivation { - pname = "handa-gdata"; - version = "0.7.0.3"; - sha256 = "1rm61kzvy8vrqmpa82y98hdf3dhqxkq9yh583p0l48zfj28ljh91"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - base64-bytestring - binary - bytestring - case-insensitive - data-default - directory - filepath - GenericPretty - HTTP - http-conduit - json - network - old-locale - pretty - process - pureMD5 - random - regex-posix - resourcet - split - time - unix-compat - utf8-string - xml - ]; - executableHaskellDepends = [ - base - base64-bytestring - binary - bytestring - case-insensitive - cmdargs - directory - filepath - GenericPretty - HTTP - http-conduit - json - network - old-locale - pretty - process - pureMD5 - random - regex-posix - resourcet - split - time - unix-compat - utf8-string - xml - ]; - description = "Library and command-line utility for accessing Google services and APIs"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - mainProgram = "hgdata"; - broken = true; - } - ) { }; - "handa-geodata" = callPackage ( { mkDerivation, @@ -295208,76 +172118,6 @@ self: { } ) { }; - "handle-like" = callPackage ( - { - mkDerivation, - base, - bytestring, - }: - mkDerivation { - pname = "handle-like"; - version = "0.1.0.3"; - sha256 = "1h3wl4pqnz53ijrw8656j1rgfj61adzvgxm0qvg74wl3hi83xkgd"; - libraryHaskellDepends = [ - base - bytestring - ]; - description = "HandleLike class"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "handsy" = callPackage ( - { - mkDerivation, - base, - bytestring, - data-default-class, - errors, - lifted-base, - operational, - process-extras, - retry, - shell-escape, - split, - tasty, - tasty-hunit, - tasty-th, - transformers, - }: - mkDerivation { - pname = "handsy"; - version = "0.0.14.1"; - sha256 = "0iid60ah0vrw7npwn18b4vwl7vxwhki07zd29dnrji8f2srap634"; - libraryHaskellDepends = [ - base - bytestring - data-default-class - errors - lifted-base - operational - process-extras - retry - shell-escape - split - transformers - ]; - testHaskellDepends = [ - base - bytestring - tasty - tasty-hunit - tasty-th - ]; - description = "A DSL to describe common shell operations and interpeters for running them locally and remotely"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "handwriting" = callPackage ( { mkDerivation, @@ -295328,172 +172168,6 @@ self: { } ) { }; - "hangman" = callPackage ( - { - mkDerivation, - base, - mtl, - random, - utility-ht, - }: - mkDerivation { - pname = "hangman"; - version = "1.0.3"; - sha256 = "0k86z27qiaz967hsdnb3sac5ybmnyzd4d2gxzvdngw8rcvcq3biy"; - isLibrary = false; - isExecutable = true; - enableSeparateDataOutput = true; - executableHaskellDepends = [ - base - mtl - random - utility-ht - ]; - description = "Hangman implementation in Haskell written in two hours"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - mainProgram = "hangman"; - broken = true; - } - ) { }; - - "hannahci" = callPackage ( - { - mkDerivation, - aeson, - base, - bytestring, - directory, - formatting, - http-types, - lens, - lens-aeson, - process, - scotty, - text, - transformers, - unix-time, - wai-extra, - wai-middleware-static, - yaml, - }: - mkDerivation { - pname = "hannahci"; - version = "0.1.4.2"; - sha256 = "072f9zsfrs8g6nw83g6qzczzybngrhyrm1m2y7ha37vf0y9gdpn0"; - isLibrary = false; - isExecutable = true; - enableSeparateDataOutput = true; - executableHaskellDepends = [ - aeson - base - bytestring - directory - formatting - http-types - lens - lens-aeson - process - scotty - text - transformers - unix-time - wai-extra - wai-middleware-static - yaml - ]; - description = "Simple Continuous Integration/Deployment System"; - license = lib.licenses.agpl3Only; - hydraPlatforms = lib.platforms.none; - mainProgram = "hannahci"; - broken = true; - } - ) { }; - - "hans" = callPackage ( - { - mkDerivation, - array, - base, - BoundedChan, - bytestring, - cereal, - containers, - hashable, - heaps, - monadLib, - psqueues, - QuickCheck, - random, - SHA, - tasty, - tasty-ant-xml, - tasty-quickcheck, - time, - unix, - }: - mkDerivation { - pname = "hans"; - version = "3.0.2"; - sha256 = "14gmjkvd1x825p5rma9yp99kkl6mxbh79s776x5087y0mjv5w8j9"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - array - base - BoundedChan - bytestring - cereal - containers - hashable - heaps - monadLib - psqueues - random - SHA - time - unix - ]; - testHaskellDepends = [ - base - bytestring - cereal - QuickCheck - tasty - tasty-ant-xml - tasty-quickcheck - ]; - description = "Network Stack"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "hans-pcap" = callPackage ( - { - mkDerivation, - base, - bytestring, - hans, - pcap, - }: - mkDerivation { - pname = "hans-pcap"; - version = "0.1.0.2"; - sha256 = "10zj129s6l4gf9acvs1yahdwv5vqj9kqwshvfjdak3gbi7arw48s"; - libraryHaskellDepends = [ - base - bytestring - hans - pcap - ]; - description = "Driver for real ethernet devices for HaNS"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "hans-pfq" = callPackage ( { mkDerivation, @@ -295607,43 +172281,6 @@ self: { } ) { }; - "haphviz" = callPackage ( - { - mkDerivation, - base, - checkers, - hspec, - mtl, - QuickCheck, - quickcheck-text, - text, - }: - mkDerivation { - pname = "haphviz"; - version = "0.2.0.1"; - sha256 = "00v1g72rv6y0hgrv1ycjlwrwfzl20xhqhv0qmm0kvpb46gxbfw9j"; - revision = "1"; - editedCabalFile = "1wpdnc4hhqxcq96hcms5rdr2snsyan8cywnx5adfmnq25b2q9a8x"; - libraryHaskellDepends = [ - base - mtl - text - ]; - testHaskellDepends = [ - base - checkers - hspec - QuickCheck - quickcheck-text - text - ]; - description = "Graphviz code generation with Haskell"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "hapistrano" = callPackage ( { mkDerivation, @@ -295728,396 +172365,6 @@ self: { } ) { }; - "happindicator" = callPackage ( - { - mkDerivation, - array, - base, - bytestring, - containers, - glib, - gtk, - gtk2hs-buildtools, - libappindicator-gtk2, - mtl, - }: - mkDerivation { - pname = "happindicator"; - version = "0.0.4"; - sha256 = "1d0ycpxmlz2ab8dzys7i6ihc3rbs43d0l5l2mxvshqbpj3j73643"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - array - base - bytestring - containers - glib - gtk - mtl - ]; - libraryPkgconfigDepends = [ libappindicator-gtk2 ]; - libraryToolDepends = [ gtk2hs-buildtools ]; - description = "Binding to the appindicator library"; - license = lib.licenses.lgpl21Only; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { inherit (pkgs) libappindicator-gtk2; }; - - "happindicator3" = callPackage ( - { - mkDerivation, - base, - glib, - gtk3, - libappindicator-gtk3, - }: - mkDerivation { - pname = "happindicator3"; - version = "0.2.1"; - sha256 = "09h3077s61krg814aw2whgc869m6ff96rrxfk6rjpjy71lkmcl92"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - glib - gtk3 - ]; - libraryPkgconfigDepends = [ libappindicator-gtk3 ]; - description = "Binding to the appindicator library"; - license = lib.licenses.lgpl21Only; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { inherit (pkgs) libappindicator-gtk3; }; - - "happlets" = callPackage ( - { - mkDerivation, - base, - bytestring, - colour, - containers, - fail, - lens, - linear, - mtl, - semigroups, - text, - time, - transformers, - unordered-containers, - }: - mkDerivation { - pname = "happlets"; - version = "0.1.0.0"; - sha256 = "0y93pwhq3sgcsb5ll13yjrmgw0frrwhwkmc2nxwipdr1wv5cdyl8"; - libraryHaskellDepends = [ - base - bytestring - colour - containers - fail - lens - linear - mtl - semigroups - text - time - transformers - unordered-containers - ]; - description = "\"Haskell Applets\" provides an event handler and a canvas for building simple GUI apps"; - license = "AGPL"; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "happlets-lib-gtk" = callPackage ( - { - mkDerivation, - base, - cairo, - diagrams-cairo, - diagrams-core, - diagrams-lib, - glib, - gtk, - happlets, - lens, - linear, - mtl, - pango, - semigroups, - text, - time, - }: - mkDerivation { - pname = "happlets-lib-gtk"; - version = "0.1.0.0"; - sha256 = "1dih333zfqg6g9rh5wwli4vv9aq5m13cmph5zyijf7bf2zibrgsj"; - libraryHaskellDepends = [ - base - cairo - diagrams-cairo - diagrams-core - diagrams-lib - glib - gtk - happlets - lens - linear - mtl - pango - semigroups - text - time - ]; - testHaskellDepends = [ - base - cairo - diagrams-cairo - diagrams-core - diagrams-lib - glib - gtk - happlets - lens - linear - mtl - semigroups - text - time - ]; - description = "The \"Haskell Applets\" Gtk+ ver. 2 back-end for \"happlets\"."; - license = "AGPL"; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "happraise" = callPackage ( - { - mkDerivation, - base, - directory, - filepath, - }: - mkDerivation { - pname = "happraise"; - version = "0.1"; - sha256 = "1vcbfil9wxhk7vrmrmkn094rb281h4a3mrzpw5gl1842dpp5hp1g"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - directory - filepath - ]; - description = "A small program for counting the comments in haskell source"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "happraise"; - broken = true; - } - ) { }; - - "happs-hsp" = callPackage ( - { - mkDerivation, - base, - bytestring, - HAppS-Server, - hsp, - mtl, - plugins, - }: - mkDerivation { - pname = "happs-hsp"; - version = "0.1"; - sha256 = "0l1gb0qhhmld77qyz8qclbqxnv0hvyvjhav78690z50kvpjpqrxx"; - libraryHaskellDepends = [ - base - bytestring - HAppS-Server - hsp - mtl - plugins - ]; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "happs-hsp-template" = callPackage ( - { - mkDerivation, - base, - bytestring, - containers, - directory, - filepath, - HAppS-Server, - hinotify, - hsp, - mtl, - network, - plugins, - RJson, - }: - mkDerivation { - pname = "happs-hsp-template"; - version = "0.2"; - sha256 = "0591ipk9zzzznmhz5wpp3qk7fkirhcp801qnk399jsms66fc8378"; - libraryHaskellDepends = [ - base - bytestring - containers - directory - filepath - HAppS-Server - hinotify - hsp - mtl - network - plugins - RJson - ]; - description = "Utilities for using HSP templates in HAppS applications"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "happs-tutorial" = callPackage ( - { - mkDerivation, - base, - bytestring, - containers, - DebugTraceHelpers, - directory, - filepath, - happstack, - happstack-data, - happstack-helpers, - happstack-ixset, - happstack-server, - happstack-state, - hscolour, - HStringTemplate, - HStringTemplateHelpers, - HTTP, - mtl, - old-time, - parsec, - pretty, - pureMD5, - safe, - syb, - }: - mkDerivation { - pname = "happs-tutorial"; - version = "0.9.5"; - sha256 = "1pkk78npgrr6dar00n93j6fbbkjam6198lkxp3q4zpdqspz4qypn"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - bytestring - containers - DebugTraceHelpers - directory - filepath - happstack - happstack-data - happstack-helpers - happstack-ixset - happstack-server - happstack-state - hscolour - HStringTemplate - HStringTemplateHelpers - HTTP - mtl - old-time - parsec - pretty - pureMD5 - safe - syb - ]; - description = "A Happstack Tutorial that is its own web 2.0-type demo."; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "happs-tutorial"; - } - ) { }; - - "happstack" = callPackage ( - { - mkDerivation, - base, - happstack-server, - }: - mkDerivation { - pname = "happstack"; - version = "7.0.2"; - sha256 = "1dfmfyrynggf1ff6364kb9a53rm64zhirx6ispnhykwdf60zbm6r"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - happstack-server - ]; - doHaddock = false; - description = "The haskell application server stack + code generation"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "happstack-auth" = callPackage ( - { - mkDerivation, - base, - bytestring, - containers, - convertible, - happstack, - happstack-data, - happstack-ixset, - happstack-server, - happstack-state, - mtl, - old-time, - random, - }: - mkDerivation { - pname = "happstack-auth"; - version = "0.2.1.1"; - sha256 = "0mfd2r88681dskn1l1gcbam8rvaqsry09zavywkm4kvmw8912vy4"; - libraryHaskellDepends = [ - base - bytestring - containers - convertible - happstack - happstack-data - happstack-ixset - happstack-server - happstack-state - mtl - old-time - random - ]; - description = "A Happstack Authentication Suite"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "happstack-authenticate" = callPackage ( { mkDerivation, @@ -296209,7 +172456,6 @@ self: { ]; description = "Happstack Authentication Library"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; } ) { }; @@ -296248,210 +172494,6 @@ self: { } ) { }; - "happstack-contrib" = callPackage ( - { - mkDerivation, - base, - bytestring, - directory, - happstack-data, - happstack-ixset, - happstack-server, - happstack-state, - happstack-util, - HTTP, - mtl, - network, - old-time, - syb, - unix, - }: - mkDerivation { - pname = "happstack-contrib"; - version = "0.2.1"; - sha256 = "0cqdfnjcmghw3wwny2brw51qbkvi8ps2crl8382sqwqq9gkw0l75"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - bytestring - directory - happstack-data - happstack-ixset - happstack-server - happstack-state - happstack-util - HTTP - mtl - network - old-time - syb - unix - ]; - description = "Web related tools and services"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "happstack-data" = callPackage ( - { - mkDerivation, - base, - binary, - bytestring, - containers, - mtl, - pretty, - syb, - syb-with-class, - syb-with-class-instances-text, - template-haskell, - text, - time, - }: - mkDerivation { - pname = "happstack-data"; - version = "6.0.1"; - sha256 = "0v2ln4mdnild72p02mzjn8mn5srvjixsjqjgkdqzshvxjnnm95l8"; - revision = "1"; - editedCabalFile = "01px4mrc8rc4p43vfhln5qss46v37ngjcma431frgb0ja0fkpxfv"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - binary - bytestring - containers - mtl - pretty - syb - syb-with-class - syb-with-class-instances-text - template-haskell - text - time - ]; - description = "Happstack data manipulation libraries"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "happstack-dlg" = callPackage ( - { - mkDerivation, - applicative-extras, - base, - bytestring, - containers, - formlets, - happstack-server, - mtl, - random, - template-haskell, - time, - xhtml, - }: - mkDerivation { - pname = "happstack-dlg"; - version = "0.1.2"; - sha256 = "1zm8f224r0nwpykvil8s05lcswrw31iigcw9arnf4j362y03n2qp"; - libraryHaskellDepends = [ - applicative-extras - base - bytestring - containers - formlets - happstack-server - mtl - random - template-haskell - time - xhtml - ]; - description = "Cross-request user interactions for Happstack"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "happstack-facebook" = callPackage ( - { - mkDerivation, - applicative-extras, - base, - bytestring, - containers, - filepath, - happstack, - happstack-data, - happstack-hsp, - happstack-ixset, - happstack-server, - happstack-state, - happstack-util, - harp, - hsp, - hsx, - html, - HTTP, - json, - mtl, - network, - old-time, - random, - RJson, - syb, - text, - time, - utf8-string, - web-routes, - web-routes-mtl, - }: - mkDerivation { - pname = "happstack-facebook"; - version = "0.30"; - sha256 = "1rfd2rkizviq7pv6lmhkp0dmwwk2m25kz9vzczk3ycm57mk7ql8c"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - applicative-extras - base - bytestring - containers - filepath - happstack - happstack-data - happstack-hsp - happstack-ixset - happstack-server - happstack-state - happstack-util - harp - hsp - hsx - html - HTTP - json - mtl - network - old-time - random - RJson - syb - text - time - utf8-string - web-routes - web-routes-mtl - ]; - description = "A package for building Facebook applications using Happstack"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "happstack-fastcgi" = callPackage ( { mkDerivation, @@ -296483,55 +172525,6 @@ self: { } ) { }; - "happstack-fay" = callPackage ( - { - mkDerivation, - aeson, - base, - fay, - happstack-fay-ajax, - happstack-server, - mtl, - }: - mkDerivation { - pname = "happstack-fay"; - version = "0.2.0"; - sha256 = "1mwx7ki35s6x3ypxl8sv611a2h4zxwd77ij95bydf5azzz9l6ys5"; - libraryHaskellDepends = [ - aeson - base - fay - happstack-fay-ajax - happstack-server - mtl - ]; - description = "Support for using Fay with Happstack"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "happstack-fay-ajax" = callPackage ( - { - mkDerivation, - fay-base, - fay-jquery, - }: - mkDerivation { - pname = "happstack-fay-ajax"; - version = "0.2.0"; - sha256 = "0zdkvvmywnfvqg5jdvf29qczzxmprvspxj0r1vj46fd6vld53j4j"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - fay-base - fay-jquery - ]; - description = "Support for using Fay with Happstack"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "happstack-foundation" = callPackage ( { mkDerivation, @@ -296579,139 +172572,6 @@ self: { ]; description = "Glue code for using Happstack with acid-state, web-routes, reform, and HSP"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "happstack-hamlet" = callPackage ( - { - mkDerivation, - base, - happstack-server, - shakespeare, - text, - }: - mkDerivation { - pname = "happstack-hamlet"; - version = "7.0.4"; - sha256 = "1l12gyyqzblb9psk6692r9xw640jxzyxqldfyg2yrzz8y0zi649a"; - libraryHaskellDepends = [ - base - happstack-server - shakespeare - text - ]; - description = "Support for Hamlet HTML templates in Happstack"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "happstack-heist" = callPackage ( - { - mkDerivation, - base, - blaze-builder, - bytestring, - either, - filepath, - happstack-server, - heist, - mtl, - text, - }: - mkDerivation { - pname = "happstack-heist"; - version = "7.2.4"; - sha256 = "1ax1fyw9788iilmczqr6s1ryh2h9x2f6n9c8mqxjmq58zg1lc2d3"; - libraryHaskellDepends = [ - base - blaze-builder - bytestring - either - filepath - happstack-server - heist - mtl - text - ]; - description = "Support for using Heist templates in Happstack"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "happstack-helpers" = callPackage ( - { - mkDerivation, - base, - bytestring, - containers, - DebugTraceHelpers, - directory, - filepath, - happstack-data, - happstack-ixset, - happstack-server, - happstack-state, - haskell98, - hscolour, - HSH, - HStringTemplate, - HStringTemplateHelpers, - HTTP, - MissingH, - mtl, - network, - old-time, - parsec, - PBKDF2, - pureMD5, - random, - safe, - syb, - text, - utf8-string, - }: - mkDerivation { - pname = "happstack-helpers"; - version = "0.56"; - sha256 = "0yrspdcgxj2izivwm7fy8msfbzlpdn3zv0j1z6b1smzydcbad202"; - libraryHaskellDepends = [ - base - bytestring - containers - DebugTraceHelpers - directory - filepath - happstack-data - happstack-ixset - happstack-server - happstack-state - haskell98 - hscolour - HSH - HStringTemplate - HStringTemplateHelpers - HTTP - MissingH - mtl - network - old-time - parsec - PBKDF2 - pureMD5 - random - safe - syb - text - utf8-string - ]; - description = "Convenience functions for Happstack"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; } ) { }; @@ -296745,70 +172605,6 @@ self: { ]; description = "Support for using HSP templates in Happstack"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "happstack-hstringtemplate" = callPackage ( - { - mkDerivation, - base, - bytestring, - happstack-server, - hslogger, - HStringTemplate, - mtl, - }: - mkDerivation { - pname = "happstack-hstringtemplate"; - version = "7.0.4"; - sha256 = "1pcj6vixzrbdmqi2yxcxhjnj5rdwlyg4nzcjkgks01ilgpg7fsf4"; - libraryHaskellDepends = [ - base - bytestring - happstack-server - hslogger - HStringTemplate - mtl - ]; - description = "Support for using HStringTemplate in Happstack"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "happstack-ixset" = callPackage ( - { - mkDerivation, - base, - containers, - happstack-data, - happstack-util, - mtl, - syb, - syb-with-class, - template-haskell, - }: - mkDerivation { - pname = "happstack-ixset"; - version = "6.0.1"; - sha256 = "1hnhn0iyfw5rknz17p7m1p3rrngr77zv3lkni8d35q50bzzyw8ni"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - containers - happstack-data - happstack-util - mtl - syb - syb-with-class - template-haskell - ]; - description = "Efficient relational queries on Haskell sets"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; } ) { }; @@ -296874,61 +172670,6 @@ self: { } ) { }; - "happstack-monad-peel" = callPackage ( - { - mkDerivation, - base, - happstack-server, - monad-peel, - mtl, - transformers, - }: - mkDerivation { - pname = "happstack-monad-peel"; - version = "0.1"; - sha256 = "0v6lshy572pvzhgqphyrhw8w2wsgxp9mqz8p3lrxmcp3i7sgqbry"; - libraryHaskellDepends = [ - base - happstack-server - monad-peel - mtl - transformers - ]; - description = "monad-peel instances for Happstack types"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "happstack-plugins" = callPackage ( - { - mkDerivation, - base, - happstack-server, - mtl, - plugins-auto, - template-haskell, - th-lift, - }: - mkDerivation { - pname = "happstack-plugins"; - version = "7.0.2"; - sha256 = "07zh0gk77rbd1akzax29l7d6412sx5ghjhz640d6cbzxs39nlaif"; - libraryHaskellDepends = [ - base - happstack-server - mtl - plugins-auto - template-haskell - th-lift - ]; - description = "The haskell application server stack + reload"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "happstack-server" = callPackage ( { mkDerivation, @@ -297086,99 +172827,6 @@ self: { } ) { inherit (pkgs) openssl; }; - "happstack-server-tls-cryptonite" = callPackage ( - { - mkDerivation, - base, - bytestring, - cryptonite, - data-default-class, - extensible-exceptions, - happstack-server, - hslogger, - network, - sendfile, - time, - tls, - unix, - }: - mkDerivation { - pname = "happstack-server-tls-cryptonite"; - version = "0.1.1"; - sha256 = "1y450dvdswkqcaqillrzlpizss9hlk2q61x1p715wfhrlmizlrjq"; - libraryHaskellDepends = [ - base - bytestring - cryptonite - data-default-class - extensible-exceptions - happstack-server - hslogger - network - sendfile - time - tls - unix - ]; - description = "Extend happstack-server with native HTTPS support (TLS/SSL)"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "happstack-state" = callPackage ( - { - mkDerivation, - base, - binary, - bytestring, - containers, - directory, - extensible-exceptions, - filepath, - happstack-data, - happstack-util, - hslogger, - mtl, - old-time, - random, - stm, - syb, - template-haskell, - unix, - }: - mkDerivation { - pname = "happstack-state"; - version = "6.1.4"; - sha256 = "1xfp0546z70sfda0z7w7ns4jhgcbx3vmnz4vsnckzhgflzmdixq9"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - binary - bytestring - containers - directory - extensible-exceptions - filepath - happstack-data - happstack-util - hslogger - mtl - old-time - random - stm - syb - template-haskell - unix - ]; - description = "Event-based distributed state"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "happstack-static-routing" = callPackage ( { mkDerivation, @@ -297202,117 +172850,6 @@ self: { } ) { }; - "happstack-util" = callPackage ( - { - mkDerivation, - array, - base, - bytestring, - directory, - extensible-exceptions, - filepath, - hslogger, - mtl, - network, - old-locale, - old-time, - parsec, - process, - random, - template-haskell, - time, - unix, - unix-compat, - }: - mkDerivation { - pname = "happstack-util"; - version = "6.0.3"; - sha256 = "0hqssd5wzir6rxn46q8r3hdp3nl7v5m7w322j39120xpg2bhiphh"; - revision = "1"; - editedCabalFile = "00j8h4r2dy3wj56487zh2g4ghj2jf0wj09cbxd7iswpapzwq6f1f"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - array - base - bytestring - directory - extensible-exceptions - filepath - hslogger - mtl - network - old-locale - old-time - parsec - process - random - template-haskell - time - unix - unix-compat - ]; - description = "Web framework"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "happstack-yui" = callPackage ( - { - mkDerivation, - base, - boomerang, - bytestring, - containers, - directory, - happstack-jmacro, - happstack-server, - hsp, - interpolatedstring-perl6, - jmacro, - mtl, - pretty, - template-haskell, - text, - web-routes, - web-routes-boomerang, - web-routes-happstack, - web-routes-th, - }: - mkDerivation { - pname = "happstack-yui"; - version = "7373.5.3"; - sha256 = "178r3jqxmrdp0glp9p4baw8x7zk0w8j4m5l173rjnz9yxn53nyni"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base - boomerang - bytestring - containers - directory - happstack-jmacro - happstack-server - hsp - interpolatedstring-perl6 - jmacro - mtl - pretty - template-haskell - text - web-routes - web-routes-boomerang - web-routes-happstack - web-routes-th - ]; - description = "Utilities for using YUI3 with Happstack"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "happy_1_20_1_1" = callPackage ( { mkDerivation, @@ -297563,233 +173100,6 @@ self: { } ) { }; - "happybara" = callPackage ( - { - mkDerivation, - aeson, - base, - filepath, - http-types, - lifted-base, - monad-control, - mtl, - text, - time, - transformers, - transformers-base, - }: - mkDerivation { - pname = "happybara"; - version = "0.0.1"; - sha256 = "1lp2awvj077d16gppir6nv9fx6d9g1k7w6j01bxkffy3q5x04xrv"; - libraryHaskellDepends = [ - aeson - base - filepath - http-types - lifted-base - monad-control - mtl - text - time - transformers - transformers-base - ]; - description = "Acceptance test framework for web applications"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "happybara-webkit" = callPackage ( - { - mkDerivation, - aeson, - base, - bytestring, - case-insensitive, - data-default, - directory, - filepath, - happybara, - http-types, - lifted-base, - monad-control, - mtl, - network, - process, - text, - time, - transformers, - transformers-base, - vector, - word8, - }: - mkDerivation { - pname = "happybara-webkit"; - version = "0.0.1"; - sha256 = "17446wkyljwd7nq6mhsj2v411zb9wsz833sczm4nzcigywvhx4fw"; - libraryHaskellDepends = [ - aeson - base - bytestring - case-insensitive - data-default - directory - filepath - happybara - http-types - lifted-base - monad-control - mtl - network - process - text - time - transformers - transformers-base - vector - word8 - ]; - description = "WebKit Happybara driver"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "happybara-webkit-server" = callPackage ( - { - mkDerivation, - base, - directory, - filepath, - process, - }: - mkDerivation { - pname = "happybara-webkit-server"; - version = "0.0.1"; - sha256 = "0vh9ig9mvg12qgysk7gbqwiib3m2ciwi10asb1i0x25xjp585shi"; - libraryHaskellDepends = [ - base - directory - filepath - process - ]; - description = "WebKit Server binary for Happybara (taken from capybara-webkit)"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "hapstone" = callPackage ( - { - mkDerivation, - base, - c2hs, - capstone, - hspec, - QuickCheck, - quickcheck-instances, - }: - mkDerivation { - pname = "hapstone"; - version = "0.2.0.1"; - sha256 = "05p0alalwr0h71cdfv08ac837hn0ffx92hkgikgm5wnxxlvmy3ix"; - libraryHaskellDepends = [ base ]; - librarySystemDepends = [ capstone ]; - libraryToolDepends = [ c2hs ]; - testHaskellDepends = [ - base - hspec - QuickCheck - quickcheck-instances - ]; - description = "Capstone bindings for Haskell"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { inherit (pkgs) capstone; }; - - "haquery" = callPackage ( - { - mkDerivation, - base, - containers, - parsec, - split, - tagsoup, - text, - transformers, - }: - mkDerivation { - pname = "haquery"; - version = "0.1.1.3"; - sha256 = "15ihh10whhzcv0i7vm3aj4g5zdf818w06wix2vp8yqp6pragc1va"; - libraryHaskellDepends = [ - base - containers - parsec - split - tagsoup - text - transformers - ]; - description = "jQuery for Haskell"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "haquil" = callPackage ( - { - mkDerivation, - base, - bv, - data-binary-ieee754, - data-default, - hTensor, - MonadRandom, - QuickCheck, - random, - template-haskell, - vector, - }: - mkDerivation { - pname = "haquil"; - version = "0.2.1.14"; - sha256 = "1k15vvhs075b20shiz4fc7h93axk4i1smzzkkbiz7s78r0bqndr8"; - libraryHaskellDepends = [ - base - bv - data-binary-ieee754 - data-default - hTensor - MonadRandom - random - vector - ]; - testHaskellDepends = [ - base - bv - data-binary-ieee754 - data-default - hTensor - MonadRandom - QuickCheck - random - template-haskell - vector - ]; - description = "A Haskell implementation of the Quil instruction set for quantum computing"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "har" = callPackage ( { mkDerivation, @@ -297817,49 +173127,6 @@ self: { } ) { }; - "harchive" = - callPackage - ( - { - mkDerivation, - base, - binary, - network, - openssl, - parsec, - sqlite, - unix, - zlib, - }: - mkDerivation { - pname = "harchive"; - version = "0.2"; - sha256 = "10485indn9sszq3514gs547phb0kpikm8m6ykq1ns2kp0pmkgz9m"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - binary - network - parsec - unix - zlib - ]; - executableSystemDepends = [ - openssl - sqlite - ]; - description = "Networked content addressed backup and restore software"; - license = "GPL"; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) - { - inherit (pkgs) openssl; - inherit (pkgs) sqlite; - }; - "hardware-edsl" = callPackage ( { mkDerivation, @@ -297990,177 +173257,6 @@ self: { } ) { }; - "hark" = callPackage ( - { - mkDerivation, - base, - bytestring, - directory, - filepath, - haskell98, - mtl, - old-locale, - old-time, - regex-pcre, - }: - mkDerivation { - pname = "hark"; - version = "0.2"; - sha256 = "1wxwxx3l4zvb1jr19lckamb0gxywsq1f4n4ncb373vqdnwnrr8x4"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - bytestring - directory - filepath - haskell98 - mtl - old-locale - old-time - regex-pcre - ]; - description = "A Gentoo package query tool"; - license = "GPL"; - hydraPlatforms = lib.platforms.none; - mainProgram = "hark"; - } - ) { }; - - "harmony" = callPackage ( - { - mkDerivation, - alex, - array, - base, - BNFC, - containers, - derive, - directory, - happy, - hastache, - hlint, - hslogger, - hspec, - HUnit, - mtl, - process, - QuickCheck, - text, - }: - mkDerivation { - pname = "harmony"; - version = "0.1.1.0"; - sha256 = "1pf5vpyxrqsvrg1w5spzvwjkr7gdy2mp0sdxphcrwwj9n56klgj5"; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - array - base - BNFC - containers - derive - directory - hastache - hslogger - mtl - process - QuickCheck - text - ]; - libraryToolDepends = [ - alex - happy - ]; - executableHaskellDepends = [ base ]; - testHaskellDepends = [ - base - containers - derive - hlint - hslogger - hspec - HUnit - QuickCheck - ]; - description = "A web service specification compiler that generates implementation and tests"; - license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - mainProgram = "harmony"; - } - ) { }; - - "haroonga" = callPackage ( - { - mkDerivation, - base, - bindings-DSL, - groonga, - monad-control, - resourcet, - transformers, - }: - mkDerivation { - pname = "haroonga"; - version = "0.1.7.1"; - sha256 = "0j4668611qazzwb4w05v0xliw1w0a7kmlz0g2z9ixz0kywbfim2g"; - libraryHaskellDepends = [ - base - bindings-DSL - monad-control - resourcet - transformers - ]; - libraryPkgconfigDepends = [ groonga ]; - description = "Low level bindings for Groonga"; - license = lib.licenses.lgpl21Only; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { inherit (pkgs) groonga; }; - - "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.1.0"; - sha256 = "1745b7khz1dn7n9w3z89na01jap62vbg1mb6c7i9n2mgwkkrys5g"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - directory - haroonga - http-types - old-locale - optparse-applicative - scotty - text - time - transformers - wai-extra - ]; - description = "Yet another Groonga http server"; - license = lib.licenses.lgpl21Only; - hydraPlatforms = lib.platforms.none; - mainProgram = "haroonga-httpd"; - } - ) { }; - "harp" = callPackage ( { mkDerivation, base }: mkDerivation { @@ -298255,131 +173351,6 @@ self: { } ) { }; - "harpy" = callPackage ( - { - mkDerivation, - array, - base, - containers, - disassembler, - mtl, - parsec, - pretty, - template-haskell, - }: - mkDerivation { - pname = "harpy"; - version = "0.6.0.2"; - sha256 = "1rlbakwqfjfr3d71jc6d5nyw5ms0y9wmb79p8jax45rxk1a8cfry"; - libraryHaskellDepends = [ - array - base - containers - disassembler - mtl - parsec - pretty - template-haskell - ]; - description = "Runtime code generation for x86 machine code"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "harvest-api" = callPackage ( - { - mkDerivation, - aeson, - base, - bytestring, - file-embed, - hspec, - http-client, - mtl, - servant, - servant-client, - text, - time, - transformers, - }: - mkDerivation { - pname = "harvest-api"; - version = "0.1.0"; - sha256 = "1ldpq6nfhqpgjx0nljyn42sq08almyrnzsklgrygnmsnyzgz8b05"; - libraryHaskellDepends = [ - aeson - base - bytestring - http-client - mtl - servant - servant-client - text - time - transformers - ]; - testHaskellDepends = [ - aeson - base - bytestring - file-embed - hspec - time - ]; - description = "Bindings for Harvest API"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "has" = callPackage ( - { - mkDerivation, - base, - QuickCheck, - }: - mkDerivation { - pname = "has"; - version = "0.6.0.1"; - sha256 = "1w2pdc4vyxd0wl700ba077d5aw7nkjw7nqhm8ydnsjgrv3xvhgah"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - QuickCheck - ]; - description = "Entity based records"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "has-th" = callPackage ( - { - mkDerivation, - base, - has, - template-haskell, - }: - mkDerivation { - pname = "has-th"; - version = "0.1"; - sha256 = "0yyrfd8mgxwyfgwcg61q7yj2cq2zj6zlk1l340y4vzj71r53qgc4"; - libraryHaskellDepends = [ - base - has - template-haskell - ]; - description = "Template Haskell function for Has records"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "has-transformers" = callPackage ( { mkDerivation, @@ -298581,81 +173552,6 @@ self: { } ) { }; - "hascar" = callPackage ( - { - mkDerivation, - ansi-wl-pprint, - array, - base, - binary, - bytestring, - conduit, - containers, - cryptohash, - directory, - exceptions, - filepath, - gitrev, - hex, - mtl, - optparse-applicative, - path, - text, - time, - transformers, - unix, - }: - mkDerivation { - pname = "hascar"; - version = "0.2.2.1"; - sha256 = "1vz24mi0l9fjj2isgzrh4zjjk9srlcshrc3cwz0kz4fcbv44r9nz"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - array - base - binary - bytestring - conduit - containers - exceptions - mtl - path - text - time - ]; - executableHaskellDepends = [ - ansi-wl-pprint - base - binary - bytestring - conduit - directory - exceptions - filepath - gitrev - optparse-applicative - path - text - transformers - unix - ]; - testHaskellDepends = [ - base - bytestring - conduit - cryptohash - hex - path - ]; - description = "Decompress SAPCAR archives"; - license = lib.licenses.gpl2Only; - hydraPlatforms = lib.platforms.none; - mainProgram = "hascar"; - broken = true; - } - ) { }; - "hascard" = callPackage ( { mkDerivation, @@ -298780,269 +173676,6 @@ self: { } ) { }; - "hascas" = callPackage ( - { - mkDerivation, - base, - binary, - bytestring, - containers, - data-binary-ieee754, - hspec, - mtl, - network, - safe-exceptions, - stm, - template-haskell, - uuid, - }: - mkDerivation { - pname = "hascas"; - version = "1.2.0"; - sha256 = "1zxi65kl09y4ws5ilqk500hycqxy2626rqs0c1lc5zsq0llp1ilr"; - libraryHaskellDepends = [ - base - binary - bytestring - containers - data-binary-ieee754 - mtl - network - safe-exceptions - stm - template-haskell - uuid - ]; - testHaskellDepends = [ - base - binary - bytestring - containers - data-binary-ieee754 - hspec - mtl - network - safe-exceptions - stm - template-haskell - uuid - ]; - description = "Cassandra driver for haskell"; - license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "hascat" = callPackage ( - { - mkDerivation, - base, - bytestring, - hascat-lib, - hascat-setup, - hascat-system, - HaXml, - haxr, - html, - HTTP, - network, - unix, - }: - mkDerivation { - pname = "hascat"; - version = "0.2"; - sha256 = "04z9q3l2hwf7lii8d3cxbh7zh6cqbbmy07yv5bal4lvrnd1wqia7"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - bytestring - hascat-lib - hascat-setup - hascat-system - HaXml - haxr - html - HTTP - network - unix - ]; - description = "Hascat Web Server"; - license = "unknown"; - hydraPlatforms = lib.platforms.none; - mainProgram = "hascat"; - } - ) { }; - - "hascat-lib" = callPackage ( - { - mkDerivation, - base, - bytestring, - containers, - directory, - haskell98, - HaXml, - html, - HTTP, - mtl, - network, - old-locale, - old-time, - parsec, - plugins, - xhtml, - }: - mkDerivation { - pname = "hascat-lib"; - version = "0.2"; - sha256 = "0l2cixgnyv2xhbpvkzrrn1wxikx7gcmwpkwagkfzx27iy33xkrqj"; - libraryHaskellDepends = [ - base - bytestring - containers - directory - haskell98 - HaXml - html - HTTP - mtl - network - old-locale - old-time - parsec - plugins - xhtml - ]; - description = "Hascat Package"; - license = "unknown"; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "hascat-setup" = callPackage ( - { - mkDerivation, - base, - directory, - hascat-lib, - hascat-system, - haskell98, - plugins, - }: - mkDerivation { - pname = "hascat-setup"; - version = "0.2"; - sha256 = "058abyr70yr2130nbi64zhigglw207dh5anyxzw19c1qk4zmwsyi"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - directory - hascat-lib - hascat-system - haskell98 - plugins - ]; - executableHaskellDepends = [ - base - directory - hascat-lib - hascat-system - haskell98 - plugins - ]; - doHaddock = false; - description = "Hascat Installation helper"; - license = "unknown"; - hydraPlatforms = lib.platforms.none; - mainProgram = "hascat-setup"; - } - ) { }; - - "hascat-system" = callPackage ( - { - mkDerivation, - base, - bytestring, - containers, - hascat-lib, - HaXml, - HTTP, - mtl, - network, - old-time, - parsec, - plugins, - unix, - }: - mkDerivation { - pname = "hascat-system"; - version = "0.2"; - sha256 = "1fabn71llrlxs5xlcpzkkvzjv7zibxlna0jvh6rkrz6pqyp1nd94"; - libraryHaskellDepends = [ - base - bytestring - containers - hascat-lib - HaXml - HTTP - mtl - network - old-time - parsec - plugins - unix - ]; - description = "Hascat System Package"; - license = "unknown"; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "hash" = callPackage ( - { - mkDerivation, - base, - bifunctors, - bytestring, - data-default, - directory, - doctest, - filepath, - generic-deriving, - hashable, - lens, - transformers, - }: - mkDerivation { - pname = "hash"; - version = "0.2.0.1"; - sha256 = "1ka6izpkz6gs4ag3xvnslxywi9344w3mh9rl968vq6ck203pv2rx"; - libraryHaskellDepends = [ - base - bifunctors - bytestring - data-default - generic-deriving - hashable - lens - transformers - ]; - testHaskellDepends = [ - base - directory - doctest - filepath - ]; - description = "Hashing tools"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "hash-addressed" = callPackage ( { mkDerivation, @@ -299394,114 +174027,33 @@ self: { tasty tasty-hunit tasty-quickcheck - text - unix - ]; - description = "A class for types that can be converted to a hash value"; - license = lib.licenses.bsd3; - } - ) { }; - - "hashable-accelerate" = callPackage ( - { - mkDerivation, - accelerate, - base, - template-haskell, - }: - mkDerivation { - pname = "hashable-accelerate"; - version = "0.1.0.0"; - sha256 = "04cfwd1vyz4xm87ah3x1avs2yzqi6ygcd3sl70v50g492dfl6738"; - libraryHaskellDepends = [ - accelerate - base - template-haskell - ]; - description = "A class for types which can be converted into a hash value"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "hashable-extras" = callPackage ( - { - mkDerivation, - base, - bifunctors, - bytestring, - directory, - doctest, - filepath, - hashable, - transformers, - transformers-compat, - }: - mkDerivation { - pname = "hashable-extras"; - version = "0.2.3"; - sha256 = "0skby3b541iq1br3nm8yb9lg9l4rw682q5824ildhrg2a0x31q03"; - revision = "1"; - editedCabalFile = "1is856b5l3chqbbgm0767bcqxwyyciwy5jmvpfmqd4m32a1rhw4d"; - libraryHaskellDepends = [ - base - bifunctors - bytestring - hashable - transformers - transformers-compat - ]; - testHaskellDepends = [ - base - directory - doctest - filepath + text + unix ]; - description = "Higher-rank Hashable"; + description = "A class for types that can be converted to a hash value"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; } ) { }; - "hashable-generics" = callPackage ( + "hashable-accelerate" = callPackage ( { mkDerivation, + accelerate, base, - criterion, - ghc-prim, - hashable, - QuickCheck, - test-framework, - test-framework-quickcheck2, + template-haskell, }: mkDerivation { - pname = "hashable-generics"; - version = "1.1.10"; - sha256 = "06wk1w0hzkm8cqfa186wrjbvcr6h7xyq2ffm3lvlpp0ryic604cb"; + pname = "hashable-accelerate"; + version = "0.1.0.0"; + sha256 = "04cfwd1vyz4xm87ah3x1avs2yzqi6ygcd3sl70v50g492dfl6738"; libraryHaskellDepends = [ + accelerate base - ghc-prim - hashable - ]; - testHaskellDepends = [ - base - ghc-prim - hashable - QuickCheck - test-framework - test-framework-quickcheck2 - ]; - benchmarkHaskellDepends = [ - base - criterion - ghc-prim - hashable + template-haskell ]; - description = "Automatically generates Hashable instances with GHC.Generics."; + description = "A class for types which can be converted into a hash value"; license = lib.licenses.bsd3; hydraPlatforms = lib.platforms.none; - broken = true; } ) { }; @@ -299557,41 +174109,6 @@ self: { } ) { }; - "hashabler" = callPackage ( - { - mkDerivation, - array, - base, - bytestring, - ghc-prim, - integer-gmp, - primitive, - template-haskell, - text, - }: - mkDerivation { - pname = "hashabler"; - version = "2.0.0"; - sha256 = "1wrwjbpvdf4yimcshw396a1crl76mr9wabspz6z3pdwg4d8dfava"; - revision = "2"; - editedCabalFile = "0plq6sfzplpg7lc9s2jsnj3l53z1v614h4ni3fvnw4hxj0n4cykv"; - libraryHaskellDepends = [ - array - base - bytestring - ghc-prim - integer-gmp - primitive - template-haskell - text - ]; - description = "Principled, portable & extensible hashing of data and types, including an implementation of the FNV-1a and SipHash algorithms"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "hashed-storage" = callPackage ( { mkDerivation, @@ -299746,30 +174263,6 @@ self: { } ) { inherit (pkgs) openssl; }; - "hashflare" = callPackage ( - { - mkDerivation, - base, - containers, - simple-money, - }: - mkDerivation { - pname = "hashflare"; - version = "0.1.0.0"; - sha256 = "0az8c3xi53d4c8dw11syd3a93nwyjsx68hiq1p43s9pqifvwnn1a"; - revision = "2"; - editedCabalFile = "16lgwd9wsjbqjbibg1qmgbb24r6x2rcsihc205cddjs3qxk8mkdc"; - libraryHaskellDepends = [ - base - containers - simple-money - ]; - description = "A library for working with HashFlare.io contracts and hashrates"; - license = lib.licenses.bsd2; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "hashids" = callPackage ( { mkDerivation, @@ -299942,38 +174435,6 @@ self: { } ) { }; - "hashring" = callPackage ( - { - mkDerivation, - base, - containers, - hashable, - QuickCheck, - test-framework, - test-framework-quickcheck2, - }: - mkDerivation { - pname = "hashring"; - version = "0.0.0"; - sha256 = "05q9iay0ygr79x8yikgbi99v74kagyrd68zvjx8qakfzqgs9a19j"; - libraryHaskellDepends = [ - base - containers - hashable - ]; - testHaskellDepends = [ - base - QuickCheck - test-framework - test-framework-quickcheck2 - ]; - description = "Efficient consistent hashing"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "hashtable-benchmark" = callPackage ( { mkDerivation, @@ -300046,186 +174507,6 @@ self: { } ) { }; - "hashtables-plus" = callPackage ( - { - mkDerivation, - base, - criterion-plus, - deepseq, - hashable, - hashtables, - lens, - loch-th, - mtl, - mwc-random, - placeholders, - string-conversions, - text, - th-printf, - transformers, - }: - mkDerivation { - pname = "hashtables-plus"; - version = "0.2.0"; - sha256 = "0g9jmc15g36iy0wmmsj74qwybh509j4lf8jzv3dws7c2j24kc7l7"; - libraryHaskellDepends = [ - base - hashable - hashtables - loch-th - placeholders - ]; - benchmarkHaskellDepends = [ - base - criterion-plus - deepseq - hashable - hashtables - lens - loch-th - mtl - mwc-random - placeholders - string-conversions - text - th-printf - transformers - ]; - description = "Extensions for a \"hashtables\" library"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "hasim" = callPackage ( - { - mkDerivation, - base, - containers, - mtl, - }: - mkDerivation { - pname = "hasim"; - version = "0.1.2"; - sha256 = "03wn142r0sh7adfghjqwb2mgq4rgkqs8nq2rx2jq717dr2xp987n"; - libraryHaskellDepends = [ - base - containers - mtl - ]; - description = "Process-Based Discrete Event Simulation library"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "hask" = callPackage ( - { - mkDerivation, - base, - constraints, - ghc-prim, - reflection, - tagged, - transformers, - void, - }: - mkDerivation { - pname = "hask"; - version = "0"; - sha256 = "1c87jxafxpnlyblhdif4br61wqvnad0s6hvfhmzhx9y1jri3rb39"; - revision = "2"; - editedCabalFile = "19gb0kn40nd9904adiqpj5h3pcsic6nqflzh8nvpvblphrn5npxs"; - libraryHaskellDepends = [ - base - constraints - ghc-prim - reflection - tagged - transformers - void - ]; - description = "Categories"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "hask-home" = callPackage ( - { - mkDerivation, - base, - Cabal, - directory, - hmarkup, - hsemail, - network, - parsec, - process, - regex-compat, - xhtml, - }: - mkDerivation { - pname = "hask-home"; - version = "2009.3.18"; - sha256 = "128hkd1yycjvbnvwjd2r2mxhjdnmfkghyf0fcslh9fxprqgrhk18"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - Cabal - directory - hmarkup - hsemail - network - parsec - process - regex-compat - xhtml - ]; - description = "Generate homepages for cabal packages"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "haskades" = callPackage ( - { - mkDerivation, - base, - bytestring, - containers, - errors, - haskell-src, - text, - text-format, - }: - mkDerivation { - pname = "haskades"; - version = "0.2.1"; - sha256 = "19cglzgzxbg65qr7m68gnc6y45b7n0wl98pgd9jrk20sblrhc6p6"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - bytestring - containers - errors - haskell-src - text - text-format - ]; - description = "Utility to generate bindings for BlackBerry Cascades"; - license = "unknown"; - hydraPlatforms = lib.platforms.none; - mainProgram = "haskades"; - broken = true; - } - ) { }; - "haskakafka" = callPackage ( { mkDerivation, @@ -300324,162 +174605,6 @@ self: { } ) { }; - "haskarrow" = callPackage ( - { - mkDerivation, - base, - cmdargs, - containers, - cpphs, - directory, - her-lexer, - split, - }: - mkDerivation { - pname = "haskarrow"; - version = "0.0"; - sha256 = "01l90qningjlb4wn02avjy9lmi4ry4yxzw0a9sd29qbzfpnf3viy"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - cmdargs - containers - cpphs - directory - her-lexer - split - ]; - description = "A dialect of haskell with order of execution based on dependency resolution"; - license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - mainProgram = "haskarrowPrecompiler"; - broken = true; - } - ) { }; - - "haskbot-core" = callPackage ( - { - mkDerivation, - aeson, - base, - bytestring, - connection, - containers, - hspec, - http-conduit, - http-types, - monads-tf, - stm, - text, - wai, - warp, - }: - mkDerivation { - pname = "haskbot-core"; - version = "0.1"; - sha256 = "0alqjgg2gvb9610s2b4fil5frknn5j8d6r558bfp1n6a0d51pz74"; - libraryHaskellDepends = [ - aeson - base - bytestring - connection - containers - http-conduit - http-types - monads-tf - stm - text - wai - warp - ]; - testHaskellDepends = [ - aeson - base - bytestring - connection - containers - hspec - http-conduit - http-types - monads-tf - stm - text - wai - warp - ]; - description = "Easily-extensible chatbot for Slack messaging service"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "haskdeep" = callPackage ( - { - mkDerivation, - attoparsec, - base, - base16-bytestring, - bytestring, - cereal, - conduit, - conduit-combinators, - conduit-extra, - containers, - crypto-api, - crypto-conduit, - cryptohash, - cryptohash-cryptoapi, - directory, - filepath, - optparse-applicative, - regex-tdfa, - regex-tdfa-text, - resourcet, - text, - time, - transformers, - unix-compat, - }: - mkDerivation { - pname = "haskdeep"; - version = "0.2.0.1"; - sha256 = "0ncx9wx9ldynqwq0zwljwqzskm5mrq8rx74np43pm9qxvjc9f5vx"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - attoparsec - base - base16-bytestring - bytestring - cereal - conduit - conduit-combinators - conduit-extra - containers - crypto-api - crypto-conduit - cryptohash - cryptohash-cryptoapi - directory - filepath - optparse-applicative - regex-tdfa - regex-tdfa-text - resourcet - text - time - transformers - unix-compat - ]; - description = "Computes and audits file hashes"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "haskdeep"; - } - ) { }; - "haskdogs" = callPackage ( { mkDerivation, @@ -300514,49 +174639,6 @@ self: { } ) { }; - "haskeem" = callPackage ( - { - mkDerivation, - base, - containers, - directory, - haskeline, - haskell98, - mtl, - network, - old-time, - parsec, - process, - random, - unix, - }: - mkDerivation { - pname = "haskeem"; - version = "0.7.16"; - sha256 = "0fmglaiq2axpb9f4yyk53fpppc1ysqglqgjxhy78yl3r8mik836n"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - containers - directory - haskeline - haskell98 - mtl - network - old-time - parsec - process - random - unix - ]; - description = "A small scheme interpreter"; - license = "GPL"; - hydraPlatforms = lib.platforms.none; - mainProgram = "haskeem"; - } - ) { }; - "haskeline_0_8_4_0" = callPackage ( { mkDerivation, @@ -300615,29 +174697,6 @@ self: { } ) { }; - "haskeline-class" = callPackage ( - { - mkDerivation, - base, - haskeline, - mtl, - }: - mkDerivation { - pname = "haskeline-class"; - version = "0.6.2"; - sha256 = "0xgdq2xgw2ccyfzkj5n36s5n6km5l947d2iy4y1qms8kbc05zmfl"; - libraryHaskellDepends = [ - base - haskeline - mtl - ]; - description = "Class interface for working with Haskeline"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "haskeline-repl" = callPackage ( { mkDerivation, @@ -300662,94 +174721,6 @@ self: { } ) { }; - "haskelisp" = callPackage ( - { - mkDerivation, - base, - containers, - mtl, - protolude, - text, - }: - mkDerivation { - pname = "haskelisp"; - version = "0.1.1.0"; - sha256 = "0wnkx8laxd9qz8pz5kpm257r7si5qv3qcxm7a8qmmkqy8l0ijphs"; - revision = "1"; - editedCabalFile = "0h900mw5kzd9fvywpbhfd9acnfwp3qk7nfi9yr9ibamjb8s87cm1"; - libraryHaskellDepends = [ - base - containers - mtl - protolude - text - ]; - description = "Write Emacs module in Haskell, using Emacs 25's Dynamic Module feature"; - license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "haskell-abci" = callPackage ( - { - mkDerivation, - base, - binary, - bytestring, - Cabal, - conduit, - conduit-combinators, - conduit-extra, - foundation, - lens, - network-conduit, - proto-lens, - proto-lens-arbitrary, - proto-lens-protoc, - text, - }: - mkDerivation { - pname = "haskell-abci"; - version = "0.1.0.0"; - sha256 = "15d4hqld9f00vmc3cvjvhamfkcl60dfdmkkrd9yrqj044ml93kaf"; - isLibrary = true; - isExecutable = true; - setupHaskellDepends = [ - base - Cabal - proto-lens-protoc - ]; - libraryHaskellDepends = [ - base - binary - bytestring - conduit - conduit-combinators - conduit-extra - foundation - lens - network-conduit - proto-lens - proto-lens-arbitrary - proto-lens-protoc - ]; - executableHaskellDepends = [ - base - binary - bytestring - foundation - lens - text - ]; - description = "Haskell Application BlockChain Interface (ABCI) Server Library"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "haskell-abci-counter"; - broken = true; - } - ) { }; - "haskell-admin" = callPackage ( { mkDerivation, @@ -300910,70 +174881,6 @@ self: { } ) { }; - "haskell-aliyun" = callPackage ( - { - mkDerivation, - aeson, - base, - base64-bytestring, - basic-prelude, - blaze-builder, - bytestring, - case-insensitive, - conduit, - Crypto, - data-default, - http-conduit, - http-types, - lifted-base, - monad-control, - old-locale, - resourcet, - safe, - system-filepath, - text, - time, - transformers, - transformers-base, - vector, - xml2json, - }: - mkDerivation { - pname = "haskell-aliyun"; - version = "0.1.0.0"; - sha256 = "1id1l7arf3yq9mym6ds58k5wins57k71v8fgzyhxsg81657vh74a"; - libraryHaskellDepends = [ - aeson - base - base64-bytestring - basic-prelude - blaze-builder - bytestring - case-insensitive - conduit - Crypto - data-default - http-conduit - http-types - lifted-base - monad-control - old-locale - resourcet - safe - system-filepath - text - time - transformers - transformers-base - vector - xml2json - ]; - description = "haskell client of aliyun service"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "haskell-awk" = callPackage ( { mkDerivation, @@ -301081,35 +174988,6 @@ self: { } ) { }; - "haskell-bcrypt" = callPackage ( - { - mkDerivation, - base, - bytestring, - QuickCheck, - random, - }: - mkDerivation { - pname = "haskell-bcrypt"; - version = "0.3.2"; - sha256 = "0nlalip5xs1bizj97yjw3np5cdmz8igppcflm19vvqxrl2akyz22"; - libraryHaskellDepends = [ - base - bytestring - ]; - testHaskellDepends = [ - base - bytestring - QuickCheck - random - ]; - description = "A bcrypt implementation for haskell"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "haskell-bee" = callPackage ( { mkDerivation, @@ -301397,209 +175275,6 @@ self: { } ) { }; - "haskell-bitmex-client" = callPackage ( - { - mkDerivation, - aeson, - base, - bytestring, - bytestring-conversion, - cryptonite, - haskell-bitmex-rest, - http-client, - http-client-tls, - http-types, - katip, - memory, - microlens, - mtl, - network, - safe-exceptions, - text, - time, - vector, - websockets, - wuss, - }: - mkDerivation { - pname = "haskell-bitmex-client"; - version = "0.1.0.1"; - sha256 = "13qqi0ribc20p9h3nmfsjzhizyyz0nzsxfwx21i2r4v9md9j9n3c"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson - base - bytestring - bytestring-conversion - cryptonite - haskell-bitmex-rest - http-client - http-client-tls - http-types - katip - memory - microlens - mtl - network - safe-exceptions - text - time - vector - websockets - wuss - ]; - executableHaskellDepends = [ - aeson - base - bytestring - haskell-bitmex-rest - http-client - http-client-tls - katip - mtl - text - time - websockets - ]; - description = "Complete BitMEX Client"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "example"; - } - ) { }; - - "haskell-bitmex-rest" = callPackage ( - { - mkDerivation, - aeson, - base, - base64-bytestring, - bytestring, - case-insensitive, - containers, - deepseq, - exceptions, - hspec, - http-api-data, - http-client, - http-client-tls, - http-media, - http-types, - iso8601-time, - katip, - microlens, - mtl, - network, - QuickCheck, - random, - safe-exceptions, - semigroups, - text, - time, - transformers, - unordered-containers, - vector, - }: - mkDerivation { - pname = "haskell-bitmex-rest"; - version = "0.1.0.0"; - sha256 = "09xj9bf50wwq1xgy800wadm8jbnbs4qnjcxqx0gy3jmx1z7mgmmc"; - libraryHaskellDepends = [ - aeson - base - base64-bytestring - bytestring - case-insensitive - containers - deepseq - exceptions - http-api-data - http-client - http-client-tls - http-media - http-types - iso8601-time - katip - microlens - mtl - network - random - safe-exceptions - text - time - transformers - unordered-containers - vector - ]; - testHaskellDepends = [ - aeson - base - bytestring - containers - hspec - iso8601-time - mtl - QuickCheck - semigroups - text - time - transformers - unordered-containers - vector - ]; - description = "Auto-generated bitmex API Client"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "haskell-brainfuck" = callPackage ( - { - mkDerivation, - base, - bytestring, - mtl, - parsec, - QuickCheck, - tasty, - tasty-quickcheck, - tasty-th, - }: - mkDerivation { - pname = "haskell-brainfuck"; - version = "0.1.0.1"; - sha256 = "12yhnlcif0jj9pmi3a098f1swvnww45rg2rpn6g82bkjzmd4sjr8"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - bytestring - mtl - parsec - ]; - executableHaskellDepends = [ - base - bytestring - ]; - testHaskellDepends = [ - base - bytestring - mtl - QuickCheck - tasty - tasty-quickcheck - tasty-th - ]; - description = "BrainFuck interpreter"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - mainProgram = "brainfuck"; - broken = true; - } - ) { }; - "haskell-ci" = callPackage ( { mkDerivation, @@ -301704,59 +175379,6 @@ self: { } ) { }; - "haskell-cnc" = callPackage ( - { - mkDerivation, - array, - base, - bytestring, - containers, - directory, - extensible-exceptions, - ghc-prim, - HSH, - HUnit, - MissingH, - mtl, - process, - random, - time, - unix, - }: - mkDerivation { - pname = "haskell-cnc"; - version = "0.1.3.200"; - sha256 = "0x1kjdxbayq6z85w9fw6c4mpixzl60332wxgx4nh0ih9235jfdhd"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - array - base - bytestring - containers - extensible-exceptions - ghc-prim - HSH - HUnit - MissingH - mtl - random - time - unix - ]; - executableHaskellDepends = [ - base - directory - process - ]; - description = "Library for parallel programming in the Intel Concurrent Collections paradigm"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "haskell-cnc-runTests"; - broken = true; - } - ) { }; - "haskell-coffee" = callPackage ( { mkDerivation, @@ -301778,95 +175400,6 @@ self: { } ) { }; - "haskell-compression" = callPackage ( - { - mkDerivation, - base, - bimap, - boolean-list, - bytestring, - containers, - }: - mkDerivation { - pname = "haskell-compression"; - version = "0.3"; - sha256 = "1yksgwhxpfl47d6zrqdx5bdxyya9vd3kr1g33pz19qfqsvfcqlhp"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - bimap - boolean-list - bytestring - containers - ]; - executableHaskellDepends = [ - base - bimap - boolean-list - bytestring - containers - ]; - description = "compress files"; - license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - mainProgram = "hs-compress"; - broken = true; - } - ) { }; - - "haskell-conll" = callPackage ( - { - mkDerivation, - base, - containers, - lens, - pretty-show, - protolude, - split, - text, - }: - mkDerivation { - pname = "haskell-conll"; - version = "0.1.0.2"; - sha256 = "05w90jlidxr55r5j1hihfhdcwjkzw85xipwxdd3i6kmskin2pv1v"; - libraryHaskellDepends = [ - base - containers - lens - pretty-show - protolude - split - text - ]; - description = "Core Types for NLP"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "haskell-course-preludes" = callPackage ( - { - mkDerivation, - base, - deepseq, - }: - mkDerivation { - pname = "haskell-course-preludes"; - version = "0.0.0.4"; - sha256 = "1r0vhaxcsszrcqnw70gz8xpfrqddmxf9kpka63gix1bjic4alzjn"; - libraryHaskellDepends = [ - base - deepseq - ]; - description = "Small modules for a Haskell course in which Haskell is taught by implementing Prelude functionality"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "haskell-dap" = callPackage ( { mkDerivation, @@ -302101,91 +175634,6 @@ self: { } ) { }; - "haskell-disque" = callPackage ( - { - mkDerivation, - base, - bytestring, - hedis, - string-conversions, - transformers, - }: - mkDerivation { - pname = "haskell-disque"; - version = "0.0.1.1"; - sha256 = "1375phlycnxajfni9yjgskh9a9nxz44jhr5ls508dgslwzvibzv8"; - libraryHaskellDepends = [ - base - bytestring - hedis - string-conversions - transformers - ]; - testHaskellDepends = [ base ]; - description = "Client library for the Disque datastore"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "haskell-docs" = callPackage ( - { - mkDerivation, - aeson, - base, - base16-bytestring, - bytestring, - Cabal, - containers, - cryptohash, - directory, - filepath, - ghc, - ghc-paths, - haddock-api, - monad-loops, - process, - text, - unordered-containers, - }: - mkDerivation { - pname = "haskell-docs"; - version = "4.2.9"; - sha256 = "10pgziq2f9wx92afmwh1m4bwxcyygpf4xg99vghm6r4ilh1fbkg7"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson - base - base16-bytestring - bytestring - Cabal - containers - cryptohash - directory - filepath - ghc - ghc-paths - haddock-api - monad-loops - process - text - unordered-containers - ]; - executableHaskellDepends = [ - base - ghc - text - ]; - testHaskellDepends = [ base ]; - description = "A program to find and display the docs and type of a name"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "haskell-docs"; - } - ) { }; - "haskell-docs-cli" = callPackage ( { mkDerivation, @@ -302318,33 +175766,6 @@ self: { } ) { }; - "haskell-eigen-util" = callPackage ( - { - mkDerivation, - base, - eigen, - vector, - }: - mkDerivation { - pname = "haskell-eigen-util"; - version = "0.1.0.4"; - sha256 = "16sxdyfvxb9xvfd3jl2x1kdlf758wpj2350jlrl16m94w8l2r98b"; - libraryHaskellDepends = [ - base - eigen - vector - ]; - testHaskellDepends = [ - base - eigen - vector - ]; - description = "Some utility functions for haskell-eigen library"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "haskell-exp-parser" = callPackage ( { mkDerivation, @@ -302497,111 +175918,6 @@ self: { } ) { }; - "haskell-ftp" = callPackage ( - { - mkDerivation, - base, - basic-prelude, - bytestring, - case-insensitive, - conduit, - directory, - lifted-base, - monad-control, - network, - network-conduit, - process-conduit, - system-filepath, - text, - transformers, - transformers-base, - unix, - }: - mkDerivation { - pname = "haskell-ftp"; - version = "0.1.0.1"; - sha256 = "0736kh5q63qgvq23k5w06ds9538cwymk64i5wdycxh35lz64qaip"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - basic-prelude - bytestring - case-insensitive - conduit - directory - lifted-base - monad-control - network - network-conduit - process-conduit - system-filepath - text - transformers - transformers-base - unix - ]; - executableHaskellDepends = [ - base - basic-prelude - bytestring - case-insensitive - conduit - directory - lifted-base - monad-control - network - network-conduit - process-conduit - system-filepath - text - transformers - transformers-base - unix - ]; - description = "A Haskell ftp server with configurable backend"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "simple-ftp-server"; - } - ) { }; - - "haskell-generate" = callPackage ( - { - mkDerivation, - base, - containers, - directory, - doctest, - filepath, - haskell-src-exts, - template-haskell, - transformers, - }: - mkDerivation { - pname = "haskell-generate"; - version = "0.2.4"; - sha256 = "120c3g7mwf1gnvmz4kdnmimanggcz18mwl0kprwwzwms4hq09rjy"; - libraryHaskellDepends = [ - base - containers - haskell-src-exts - template-haskell - transformers - ]; - testHaskellDepends = [ - base - directory - doctest - filepath - ]; - description = "Typesafe generation of haskell source code"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "haskell-gettext" = callPackage ( { mkDerivation, @@ -302764,32 +176080,6 @@ self: { } ) { }; - "haskell-go-checkers" = callPackage ( - { - mkDerivation, - base, - containers, - gloss, - }: - mkDerivation { - pname = "haskell-go-checkers"; - version = "0.1.1.0"; - sha256 = "1b6j3w1cxznzgzzncxccdrqmxj233whmkbhg96rd7kshhx21rhd2"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - containers - gloss - ]; - description = "Go and Checkers game in Haskell"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - mainProgram = "haskell-go-checkers"; - broken = true; - } - ) { }; - "haskell-google-genai-client" = callPackage ( { mkDerivation, @@ -303023,34 +176313,6 @@ self: { } ) { }; - "haskell-holes-th" = callPackage ( - { - mkDerivation, - base, - template-haskell, - transformers, - }: - mkDerivation { - pname = "haskell-holes-th"; - version = "2.0.0.0"; - sha256 = "045spgarz68bay5yqd5cfllkmzja2jax9swcqhxc7gw5msfgxxw1"; - libraryHaskellDepends = [ - base - template-haskell - transformers - ]; - testHaskellDepends = [ - base - template-haskell - transformers - ]; - description = "Infer haskell code by given type"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "haskell-igraph" = callPackage ( { mkDerivation, @@ -303106,121 +176368,6 @@ self: { } ) { }; - "haskell-import-graph" = callPackage ( - { - mkDerivation, - base, - classy-prelude, - ghc, - graphviz, - process, - text, - transformers, - }: - mkDerivation { - pname = "haskell-import-graph"; - version = "1.0.4"; - sha256 = "17ac5k98aqx77lq398kgvyiylpmkvxdmxzqbh7wk1fl9kphwsdm0"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - classy-prelude - ghc - graphviz - process - text - transformers - ]; - executableHaskellDepends = [ base ]; - description = "create haskell import graph for graphviz"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - mainProgram = "haskell-import-graph"; - broken = true; - } - ) { }; - - "haskell-in-space" = callPackage ( - { - mkDerivation, - base, - HGL, - random, - }: - mkDerivation { - pname = "haskell-in-space"; - version = "0.1.1"; - sha256 = "1rcz5s3xa0f9yalyqb540l47bzql8p18y2mmax1zr92m7sh7m274"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - HGL - random - ]; - description = "'Asteroids' arcade games"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "haskell-kubernetes" = callPackage ( - { - mkDerivation, - aeson, - base, - bytestring, - containers, - either, - http-api-data, - http-types, - lens, - network-uri, - QuickCheck, - quickcheck-instances, - scientific, - servant, - servant-client, - split, - text, - unordered-containers, - vector, - wai, - }: - mkDerivation { - pname = "haskell-kubernetes"; - version = "0.5.0"; - sha256 = "0bd5bfa3afip9siz5swg9g2dbdq5ym2pi3knfv19b3aqs89lf7gq"; - libraryHaskellDepends = [ - aeson - base - bytestring - containers - either - http-api-data - http-types - lens - network-uri - QuickCheck - quickcheck-instances - scientific - servant - servant-client - split - text - unordered-containers - vector - wai - ]; - description = "Haskell bindings to the Kubernetes API (via swagger-codegen)"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "haskell-language-server" = callPackage ( { mkDerivation, @@ -303596,52 +176743,6 @@ self: { } ) { }; - "haskell-lsp-client" = callPackage ( - { - mkDerivation, - aeson, - base, - bytestring, - containers, - directory, - haskell-lsp, - lens, - process, - text, - unix, - }: - mkDerivation { - pname = "haskell-lsp-client"; - version = "1.0.0.1"; - sha256 = "06zx80nhhf5fik84rijaxzjy9yv1c29g6hwfx73axlav80g176qw"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson - base - bytestring - containers - haskell-lsp - lens - process - text - ]; - executableHaskellDepends = [ - base - directory - haskell-lsp - lens - process - text - unix - ]; - description = "A haskell package to build your own Language Server client"; - license = lib.licenses.gpl2Only; - hydraPlatforms = lib.platforms.none; - mainProgram = "example-client"; - } - ) { }; - "haskell-lsp-types" = callPackage ( { mkDerivation, @@ -303706,52 +176807,6 @@ self: { } ) { }; - "haskell-ml" = callPackage ( - { - mkDerivation, - attoparsec, - base, - binary, - hmatrix, - MonadRandom, - random-shuffle, - singletons, - text, - vector, - }: - mkDerivation { - pname = "haskell-ml"; - version = "0.4.2"; - sha256 = "0843akac5j1nhq6nknshblx33mg8b5h1lykpmgp627zzlbvzc3d3"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - attoparsec - base - binary - hmatrix - MonadRandom - singletons - text - vector - ]; - executableHaskellDepends = [ - base - hmatrix - random-shuffle - ]; - testHaskellDepends = [ - base - MonadRandom - ]; - description = "Machine learning in Haskell"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "iris"; - broken = true; - } - ) { }; - "haskell-modbus" = callPackage ( { mkDerivation, @@ -303783,75 +176838,6 @@ self: { } ) { }; - "haskell-mpfr" = callPackage ( - { - mkDerivation, - base, - ghc-prim, - integer-gmp, - }: - mkDerivation { - pname = "haskell-mpfr"; - version = "0.1"; - sha256 = "1bbj26sgd1szb5309rrbiibsb4zai80lmadmkzb7jd2kzyyxvlcv"; - libraryHaskellDepends = [ - base - ghc-prim - integer-gmp - ]; - description = "Correctly-rounded arbitrary-precision floating-point arithmetic"; - license = "LGPL"; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "haskell-mpi" = - callPackage - ( - { - mkDerivation, - array, - base, - bytestring, - c2hs, - cereal, - extensible-exceptions, - open-pal, - open-rte, - openmpi, - }: - mkDerivation { - pname = "haskell-mpi"; - version = "1.4.0"; - sha256 = "1aw8jjvysdf3vsf6rcxnvwnqpiqmfrp88gryngakjjkxwzzh5an0"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - array - base - bytestring - cereal - extensible-exceptions - ]; - librarySystemDepends = [ - open-pal - open-rte - openmpi - ]; - libraryToolDepends = [ c2hs ]; - description = "Distributed parallel programming in Haskell using MPI"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) - { - open-pal = null; - open-rte = null; - inherit (pkgs) openmpi; - }; - "haskell-names" = callPackage ( { mkDerivation, @@ -303908,276 +176894,6 @@ self: { } ) { }; - "haskell-neo4j-client" = callPackage ( - { - mkDerivation, - aeson, - base, - bytestring, - Cabal, - containers, - data-default, - hashable, - HTTP, - http-client, - http-client-tls, - http-conduit, - http-types, - HUnit, - lifted-base, - mtl, - network-uri, - QuickCheck, - resourcet, - scientific, - test-framework, - test-framework-hunit, - test-framework-quickcheck2, - test-framework-th, - text, - transformers, - transformers-base, - transformers-compat, - unordered-containers, - vector, - }: - mkDerivation { - pname = "haskell-neo4j-client"; - version = "0.3.2.4"; - sha256 = "1hl1qg4cy70c5c22dfqig3cj60nq1lhnnypcgj44pgfqnqlsbvih"; - libraryHaskellDepends = [ - aeson - base - bytestring - containers - data-default - hashable - HTTP - http-client - http-client-tls - http-conduit - http-types - lifted-base - mtl - network-uri - resourcet - scientific - text - transformers - transformers-base - transformers-compat - unordered-containers - vector - ]; - testHaskellDepends = [ - aeson - base - bytestring - Cabal - data-default - hashable - HTTP - http-client - http-client-tls - http-conduit - http-types - HUnit - lifted-base - mtl - network-uri - QuickCheck - resourcet - scientific - test-framework - test-framework-hunit - test-framework-quickcheck2 - test-framework-th - text - transformers - transformers-base - transformers-compat - unordered-containers - vector - ]; - description = "A Haskell neo4j client"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "haskell-openflow" = callPackage ( - { - mkDerivation, - base, - bytestring, - cereal, - network, - network-info, - }: - mkDerivation { - pname = "haskell-openflow"; - version = "0.0.0.1"; - sha256 = "1zrzkvw4i7jaz74g63k1yj1v2i9lsxgr8zj2b6p3srag1dwgnmkd"; - libraryHaskellDepends = [ - base - bytestring - cereal - network - network-info - ]; - testHaskellDepends = [ base ]; - description = "OpenFlow protocol in Haskell"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "haskell-overridez" = callPackage ( - { - mkDerivation, - aeson, - aeson-casing, - attoparsec, - base, - bytestring, - Cabal, - exceptions, - foldl, - managed, - neat-interpolation, - network-uri, - optparse-applicative, - system-fileio, - system-filepath, - text, - turtle, - }: - mkDerivation { - pname = "haskell-overridez"; - version = "0.10.3.0"; - sha256 = "1h7i7pacfy8vy2xin11m90v8j80lr5y36hsqjkyj074z5gm2wzpd"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - aeson - aeson-casing - attoparsec - base - bytestring - Cabal - exceptions - foldl - managed - neat-interpolation - network-uri - optparse-applicative - system-fileio - system-filepath - text - turtle - ]; - description = "Manage nix overrides for haskell packages"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "haskell-overridez"; - broken = true; - } - ) { }; - - "haskell-packages" = callPackage ( - { - mkDerivation, - base, - binary, - bytestring, - Cabal, - containers, - deepseq, - directory, - filepath, - haskell-src-exts, - hse-cpp, - mtl, - optparse-applicative, - tagged, - transformers, - transformers-compat, - }: - mkDerivation { - pname = "haskell-packages"; - version = "0.6.2"; - sha256 = "114xkqg5fzyq1n5p8cz768z84j0xgcyzxh375p9a574j6nl6d387"; - libraryHaskellDepends = [ - base - binary - bytestring - Cabal - containers - deepseq - directory - filepath - haskell-src-exts - hse-cpp - mtl - optparse-applicative - tagged - transformers - transformers-compat - ]; - description = "Haskell suite library for package management and integration with Cabal"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "haskell-pdf-presenter" = callPackage ( - { - mkDerivation, - base, - bytestring, - cairo, - containers, - directory, - filepath, - glib, - gtk, - old-locale, - poppler, - template-haskell, - time, - zlib, - }: - mkDerivation { - pname = "haskell-pdf-presenter"; - version = "0.2.5"; - sha256 = "11y3n7ldnlx8vq2qb42kn8fg6ikq42x28bm46ivydx7h3z0zf5s3"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - bytestring - cairo - containers - directory - filepath - glib - gtk - old-locale - poppler - template-haskell - time - zlib - ]; - description = "Tool for presenting PDF-based presentations"; - license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - mainProgram = "hpdfp"; - } - ) { }; - "haskell-pgmq" = callPackage ( { mkDerivation, @@ -304234,293 +176950,6 @@ self: { } ) { }; - "haskell-platform-test" = callPackage ( - { - mkDerivation, - alex, - array, - base, - bytestring, - Cabal, - cgi, - containers, - deepseq, - directory, - extensible-exceptions, - fgl, - filepath, - ghc, - ghc-prim, - GLUT, - happy, - haskell-src, - haskell98, - hpc, - html, - HTTP, - HUnit, - mtl, - network, - old-locale, - old-time, - OpenGL, - parallel, - parsec, - pretty, - process, - QuickCheck, - random, - regex-base, - regex-compat, - regex-posix, - stm, - syb, - template-haskell, - time, - unix, - xhtml, - zlib, - }: - mkDerivation { - pname = "haskell-platform-test"; - version = "2010.2.0.0"; - sha256 = "0ki6mppxk9a6lm0miagr4mpsbjx66gizc3qxl5vfp7wvbc977bwk"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - array - base - bytestring - Cabal - cgi - containers - deepseq - directory - extensible-exceptions - fgl - filepath - ghc - ghc-prim - GLUT - haskell-src - haskell98 - hpc - html - HTTP - HUnit - mtl - network - old-locale - old-time - OpenGL - parallel - parsec - pretty - process - QuickCheck - random - regex-base - regex-compat - regex-posix - stm - syb - template-haskell - time - unix - xhtml - zlib - ]; - executableToolDepends = [ - alex - happy - ]; - description = "A test system for the Haskell Platform environment"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "haskell-platform-test"; - } - ) { }; - - "haskell-player" = callPackage ( - { - mkDerivation, - base, - brick, - bytestring, - data-default, - directory, - filepath, - microlens, - process, - text, - transformers, - unix, - vector, - vty, - xml-conduit, - }: - mkDerivation { - pname = "haskell-player"; - version = "0.1.3.3"; - sha256 = "1i758kdj0ahyq8i9w9czxly1dvixxg6rcyx598jvqpd77i72d3p2"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - brick - bytestring - data-default - directory - filepath - microlens - process - text - transformers - unix - vector - vty - xml-conduit - ]; - executableHaskellDepends = [ base ]; - testHaskellDepends = [ base ]; - description = "A terminal music player based on afplay"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "haskell-player"; - broken = true; - } - ) { }; - - "haskell-plot" = callPackage ( - { - mkDerivation, - base, - Chart, - Chart-cairo, - Chart-gtk, - colour, - data-default, - lens, - math-functions, - vector, - }: - mkDerivation { - pname = "haskell-plot"; - version = "0.1.0.0"; - sha256 = "0dwa2kz3sbnhc99kzhspf4hhid9q0c8irq8m9vr95l9kbq45avpi"; - libraryHaskellDepends = [ - base - Chart - Chart-cairo - Chart-gtk - colour - data-default - lens - math-functions - vector - ]; - description = "A library for generating 2D plots painlessly"; - license = "GPL"; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "haskell-postal" = callPackage ( - { - mkDerivation, - base, - bytestring, - hspec, - inline-c, - libpostal, - text, - }: - mkDerivation { - pname = "haskell-postal"; - version = "0.2.1.2"; - sha256 = "158c7f7bj17xw9kjldrvq00ipghfa8cz5364qs4jnv6ibh6cx1fs"; - libraryHaskellDepends = [ - base - bytestring - inline-c - text - ]; - libraryPkgconfigDepends = [ libpostal ]; - testHaskellDepends = [ - base - bytestring - hspec - inline-c - text - ]; - testPkgconfigDepends = [ libpostal ]; - description = "Haskell binding for the libpostal library"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { inherit (pkgs) libpostal; }; - - "haskell-postgis" = callPackage ( - { - mkDerivation, - aeson, - base, - binary, - bytestring, - bytestring-lexing, - cpu, - data-binary-ieee754, - either, - hspec, - mtl, - placeholders, - text, - unordered-containers, - vector, - }: - mkDerivation { - pname = "haskell-postgis"; - version = "0.2.0"; - sha256 = "0y3di09hyxr5jhwrdqk2548h09x71pd7f1dhv3g6118pzdfps6nk"; - libraryHaskellDepends = [ - aeson - base - binary - bytestring - bytestring-lexing - cpu - data-binary-ieee754 - either - mtl - placeholders - text - unordered-containers - vector - ]; - testHaskellDepends = [ - aeson - base - binary - bytestring - bytestring-lexing - cpu - data-binary-ieee754 - hspec - mtl - placeholders - text - unordered-containers - vector - ]; - description = "A haskell library for PostGIS geometry types"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "haskell-proxy-list" = callPackage ( { mkDerivation, @@ -304539,232 +176968,57 @@ self: { version = "0.0.1"; sha256 = "0sk6axbq7zamvwgnm97kk1plhxg1v694ysqbvg71s484xwq9fdyg"; revision = "1"; - editedCabalFile = "00f2ab9lzvp2qs085h8v72dmrxfn0a5xmvx2k947xhg8nrxhbc9n"; - libraryHaskellDepends = [ - base - base64-string - bytestring - lens - random - regex-base - regex-posix - text - wreq - ]; - description = "Simple library for retrieving proxy servers info from https://proxy-list.org"; - license = lib.licenses.publicDomain; - } - ) { }; - - "haskell-qrencode" = callPackage ( - { - mkDerivation, - base, - bytestring, - qrencode, - }: - mkDerivation { - pname = "haskell-qrencode"; - version = "1.0.4"; - sha256 = "1cq6fpz4vsx1kfnxnxnqz0pi5nzfg86s76vd0hcqvyqxnqbcd8hj"; - libraryHaskellDepends = [ - base - bytestring - ]; - librarySystemDepends = [ qrencode ]; - description = "Haskell bindings for libqrencode"; - license = lib.licenses.bsd3; - } - ) { inherit (pkgs) qrencode; }; - - "haskell-read-editor" = callPackage ( - { - mkDerivation, - base, - directory, - hspec, - process, - }: - mkDerivation { - pname = "haskell-read-editor"; - version = "0.1.0.0"; - sha256 = "08sx6hxqssx9qm2yd9pmpr9vsqck3wlm6kzp13p63dpkyxln8kga"; - libraryHaskellDepends = [ - base - directory - process - ]; - testHaskellDepends = [ - base - directory - hspec - process - ]; - description = "Opens a temporary file on the system's EDITOR and returns the resulting edits"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "haskell-reflect" = callPackage ( - { - mkDerivation, - base, - containers, - hint, - MonadCatchIO-mtl, - mtl, - parsec, - template-haskell, - transformers, - }: - mkDerivation { - pname = "haskell-reflect"; - version = "0.9"; - sha256 = "116vs8p9j0py3rxh0m53nanwsa99ga0lg9z3avn5r0clmpak9zyn"; - libraryHaskellDepends = [ - base - containers - hint - MonadCatchIO-mtl - mtl - parsec - template-haskell - transformers - ]; - description = "Reflect Haskell types"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "haskell-rules" = callPackage ( - { - mkDerivation, - base, - syb, - }: - mkDerivation { - pname = "haskell-rules"; - version = "0.1.0.1"; - sha256 = "03d8c1gnxd923f3fqqw06w3ibnd20llfgd7s5jgkscc872i5ghz6"; - libraryHaskellDepends = [ - base - syb - ]; - description = "A DSL for expressing natural deduction rules in Haskell"; - license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "haskell-say" = callPackage ( - { mkDerivation, base }: - mkDerivation { - pname = "haskell-say"; - version = "1.0.0.0"; - sha256 = "1m7nif7w4fwk48hp6wzsp4ipi934gl1rb97mnc6364c7l24wgpx1"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base ]; - executableHaskellDepends = [ base ]; - description = "Let the Haskell logo talk to your users!"; - license = lib.licenses.bsd3; - mainProgram = "haskell-say-exe"; - } - ) { }; - - "haskell-snake" = callPackage ( - { - mkDerivation, - base, - containers, - lens, - linear, - mtl, - random, - sdl2, - sdl2-ttf, - text, - vector, - }: - mkDerivation { - pname = "haskell-snake"; - version = "1.0.0"; - sha256 = "0qm7m4whki060vwlgns5apsl7cw8i8grmnywjwhv9i01dkg952qw"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - containers - lens - linear - mtl - random - sdl2 - sdl2-ttf - text - vector - ]; - executableHaskellDepends = [ + editedCabalFile = "00f2ab9lzvp2qs085h8v72dmrxfn0a5xmvx2k947xhg8nrxhbc9n"; + libraryHaskellDepends = [ base - containers + base64-string + bytestring lens - linear - mtl random - sdl2 - sdl2-ttf + regex-base + regex-posix text - vector + wreq ]; - description = "Snake game implemetation in Haskell using SDL2"; - license = lib.licenses.gpl3Only; - badPlatforms = lib.platforms.darwin; - hydraPlatforms = lib.platforms.none; - mainProgram = "haskell-snake"; - broken = true; + description = "Simple library for retrieving proxy servers info from https://proxy-list.org"; + license = lib.licenses.publicDomain; } ) { }; - "haskell-spacegoo" = callPackage ( + "haskell-qrencode" = callPackage ( { mkDerivation, - aeson, base, bytestring, - conduit, - conduit-extra, - mtl, - pretty, - pretty-show, - text, - vector, - vector-space, + qrencode, }: mkDerivation { - pname = "haskell-spacegoo"; - version = "0.2.0.1"; - sha256 = "0g6ximrv5jwibklkyr74vy3qkx8mv4xbpc7f6w1qg9gnlylzmcqy"; + pname = "haskell-qrencode"; + version = "1.0.4"; + sha256 = "1cq6fpz4vsx1kfnxnxnqz0pi5nzfg86s76vd0hcqvyqxnqbcd8hj"; libraryHaskellDepends = [ - aeson base bytestring - conduit - conduit-extra - mtl - pretty - pretty-show - text - vector - vector-space ]; - description = "Client API for Rocket Scissor Spacegoo"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; + librarySystemDepends = [ qrencode ]; + description = "Haskell bindings for libqrencode"; + license = lib.licenses.bsd3; + } + ) { inherit (pkgs) qrencode; }; + + "haskell-say" = callPackage ( + { mkDerivation, base }: + mkDerivation { + pname = "haskell-say"; + version = "1.0.0.0"; + sha256 = "1m7nif7w4fwk48hp6wzsp4ipi934gl1rb97mnc6364c7l24wgpx1"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ base ]; + executableHaskellDepends = [ base ]; + description = "Let the Haskell logo talk to your users!"; + license = lib.licenses.bsd3; + mainProgram = "haskell-say-exe"; } ) { }; @@ -304840,111 +177094,6 @@ self: { } ) { }; - "haskell-src-exts-observe" = callPackage ( - { - mkDerivation, - base, - haskell-src-exts, - Hoed, - }: - mkDerivation { - pname = "haskell-src-exts-observe"; - version = "0.1.0"; - sha256 = "06vqd9ljmlx96xx6gyhfag2fsxwdzab0sy1gry2d24mbppbaa1x1"; - revision = "1"; - editedCabalFile = "1n4f4yylk09g95040g6pbcygzp95yadihv0sxr4sj87j0d4xa6fc"; - libraryHaskellDepends = [ - base - haskell-src-exts - Hoed - ]; - description = "Observable orphan instances for haskell-src-exts"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "haskell-src-exts-prisms" = callPackage ( - { - mkDerivation, - base, - haskell-src-exts, - lens, - template-haskell, - }: - mkDerivation { - pname = "haskell-src-exts-prisms"; - version = "1.18.2.0"; - sha256 = "16gkmkgcq8zniri4iflnan17csly34ccmx6k6w1sb6mxmhw14wsv"; - libraryHaskellDepends = [ - base - haskell-src-exts - lens - template-haskell - ]; - description = "Prisms with newtype wrappers for haskell-src-exts"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "haskell-src-exts-qq" = callPackage ( - { - mkDerivation, - base, - haskell-src-exts, - haskell-src-meta, - hspec, - syb, - template-haskell, - }: - mkDerivation { - pname = "haskell-src-exts-qq"; - version = "0.7"; - sha256 = "0bx8k6ydlzj81f4anbf1c2gx8hdbc4948w5s2d8c904v6x7d67xn"; - libraryHaskellDepends = [ - base - haskell-src-exts - haskell-src-meta - syb - template-haskell - ]; - testHaskellDepends = [ - base - haskell-src-exts - hspec - ]; - description = "A quasiquoter for haskell-src-exts"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "haskell-src-exts-sc" = callPackage ( - { - mkDerivation, - base, - haskell-src-exts, - }: - mkDerivation { - pname = "haskell-src-exts-sc"; - version = "0.1.0.6"; - sha256 = "1bfkwladavard87pnnr2nigs214hb3k4j3mki0ffd5zfxldb2ncv"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - haskell-src-exts - ]; - description = "Pretty print haskell code with comments"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "haskell-src-exts-simple" = callPackage ( { mkDerivation, @@ -304993,50 +177142,6 @@ self: { } ) { }; - "haskell-src-match" = callPackage ( - { - mkDerivation, - base, - containers, - filepath, - haskell-src-exts, - hspec, - interpolatedstring-perl6, - pretty-simple, - split, - template-haskell, - text, - transformers, - }: - mkDerivation { - pname = "haskell-src-match"; - version = "0.0.0.1"; - sha256 = "0lhdnmzmwxsiw0if600apdvmkbqz44zwr7sypfclixl9c6h31wg0"; - libraryHaskellDepends = [ - base - containers - haskell-src-exts - interpolatedstring-perl6 - pretty-simple - split - template-haskell - transformers - ]; - testHaskellDepends = [ - base - filepath - hspec - interpolatedstring-perl6 - template-haskell - text - ]; - description = "Testing code generators piece by piece"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "haskell-src-meta" = callPackage ( { mkDerivation, @@ -305079,37 +177184,6 @@ self: { } ) { }; - "haskell-src-meta-mwotton" = callPackage ( - { - mkDerivation, - base, - containers, - ghc-prim, - haskell-src-exts, - pretty, - syb, - template-haskell, - }: - mkDerivation { - pname = "haskell-src-meta-mwotton"; - version = "0.1.0"; - sha256 = "04f0p3jxmvw1kqygvxihdr4dirapi6bdv2w213c2s771xbnx88nn"; - libraryHaskellDepends = [ - base - containers - ghc-prim - haskell-src-exts - pretty - syb - template-haskell - ]; - description = "Parse source to template-haskell abstract syntax"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "haskell-stack-trace-plugin" = callPackage ( { mkDerivation, @@ -305266,1067 +177340,6 @@ self: { } ) { }; - "haskell-token-utils" = callPackage ( - { - mkDerivation, - base, - containers, - Diff, - directory, - dual-tree, - ghc, - ghc-mod, - ghc-paths, - ghc-prim, - ghc-syb-utils, - haskell-src-exts, - hspec, - HUnit, - monoid-extras, - mtl, - pretty, - QuickCheck, - rosezipper, - semigroups, - syb, - uniplate, - }: - mkDerivation { - pname = "haskell-token-utils"; - version = "0.0.0.6"; - sha256 = "14nzlw9vqnp70xcwan6mjsr318p2sky5nsyqxw5iivggy7qspp9r"; - libraryHaskellDepends = [ - base - containers - dual-tree - ghc - ghc-paths - ghc-syb-utils - haskell-src-exts - monoid-extras - mtl - pretty - rosezipper - semigroups - syb - ]; - testHaskellDepends = [ - base - containers - Diff - directory - dual-tree - ghc - ghc-mod - ghc-paths - ghc-prim - ghc-syb-utils - haskell-src-exts - hspec - HUnit - monoid-extras - mtl - pretty - QuickCheck - rosezipper - semigroups - syb - uniplate - ]; - description = "Utilities to tie up tokens to an AST"; - license = lib.licenses.publicDomain; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "haskell-tools-ast" = callPackage ( - { - mkDerivation, - base, - classyplate, - ghc, - mtl, - pretty, - references, - template-haskell, - uniplate, - }: - mkDerivation { - pname = "haskell-tools-ast"; - version = "1.1.1.0"; - sha256 = "022d1jj3afgjjzfmv99ilcmqckk8p7njfg1r7byjbl8rq9wqnhg7"; - libraryHaskellDepends = [ - base - classyplate - ghc - mtl - pretty - references - template-haskell - uniplate - ]; - description = "Haskell AST for efficient tooling"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "haskell-tools-ast-fromghc" = callPackage ( - { - mkDerivation, - base, - bytestring, - containers, - ghc, - haskell-tools-ast, - mtl, - references, - safe, - split, - template-haskell, - uniplate, - }: - mkDerivation { - pname = "haskell-tools-ast-fromghc"; - version = "0.2.0.0"; - sha256 = "1rpdi7c14l7yxarasvdjb8v5qm5kmj1ns37sqa2jmslv2ihgy0zn"; - libraryHaskellDepends = [ - base - bytestring - containers - ghc - haskell-tools-ast - mtl - references - safe - split - template-haskell - uniplate - ]; - description = "Creating the Haskell-Tools AST from GHC's representations"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "haskell-tools-ast-gen" = callPackage ( - { - mkDerivation, - base, - containers, - ghc, - haskell-tools-ast, - haskell-tools-ast-trf, - mtl, - references, - }: - mkDerivation { - pname = "haskell-tools-ast-gen"; - version = "0.2.0.0"; - sha256 = "0w1im7djd3mv04nb0pqzc9qzf6qiwx8xwyy7c1ay3kzmg8m4ckkk"; - libraryHaskellDepends = [ - base - containers - ghc - haskell-tools-ast - haskell-tools-ast-trf - mtl - references - ]; - description = "Facilities for generating new parts of the Haskell-Tools AST"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "haskell-tools-ast-trf" = callPackage ( - { - mkDerivation, - base, - containers, - ghc, - haskell-tools-ast, - mtl, - references, - uniplate, - }: - mkDerivation { - pname = "haskell-tools-ast-trf"; - version = "0.2.0.0"; - sha256 = "0xrn6mk4rav3r1s854im6njzj2kq6hv7485pcchci4n3h1m8vz2d"; - libraryHaskellDepends = [ - base - containers - ghc - haskell-tools-ast - mtl - references - uniplate - ]; - description = "Conversions on Haskell-Tools AST to prepare for refactorings"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "haskell-tools-backend-ghc" = callPackage ( - { - mkDerivation, - base, - bytestring, - containers, - ghc, - ghc-boot-th, - haskell-tools-ast, - mtl, - references, - safe, - split, - template-haskell, - transformers, - uniplate, - }: - mkDerivation { - pname = "haskell-tools-backend-ghc"; - version = "1.1.1.0"; - sha256 = "0gppj0k99iqxd54m81s8h9dhq9gqj2sadi54swijd67pyq31vnn1"; - libraryHaskellDepends = [ - base - bytestring - containers - ghc - ghc-boot-th - haskell-tools-ast - mtl - references - safe - split - template-haskell - transformers - uniplate - ]; - description = "Creating the Haskell-Tools AST from GHC's representations"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "haskell-tools-builtin-refactorings" = callPackage ( - { - mkDerivation, - aeson, - base, - Cabal, - classyplate, - containers, - deepseq, - directory, - either, - filepath, - ghc, - ghc-paths, - haskell-tools-ast, - haskell-tools-backend-ghc, - haskell-tools-prettyprint, - haskell-tools-refactor, - haskell-tools-rewrite, - minisat-solver, - mtl, - portable-lines, - references, - split, - tasty, - tasty-hunit, - template-haskell, - time, - transformers, - uniplate, - }: - mkDerivation { - pname = "haskell-tools-builtin-refactorings"; - version = "1.1.1.0"; - sha256 = "0n8sydhcdl71kvf765kxc4ldg3gy8rk7i0jzagsj95k58c6mc8f6"; - libraryHaskellDepends = [ - aeson - base - Cabal - classyplate - containers - deepseq - directory - filepath - ghc - ghc-paths - haskell-tools-ast - haskell-tools-backend-ghc - haskell-tools-prettyprint - haskell-tools-refactor - haskell-tools-rewrite - minisat-solver - mtl - portable-lines - references - split - template-haskell - transformers - uniplate - ]; - testHaskellDepends = [ - base - Cabal - containers - directory - either - filepath - ghc - ghc-paths - haskell-tools-ast - haskell-tools-backend-ghc - haskell-tools-prettyprint - haskell-tools-refactor - haskell-tools-rewrite - mtl - references - split - tasty - tasty-hunit - template-haskell - time - transformers - uniplate - ]; - description = "Refactoring Tool for Haskell"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "haskell-tools-cli" = callPackage ( - { - mkDerivation, - aeson, - base, - bytestring, - containers, - criterion, - directory, - filepath, - ghc, - ghc-paths, - Glob, - haskell-tools-builtin-refactorings, - haskell-tools-daemon, - haskell-tools-refactor, - knob, - mtl, - optparse-applicative, - process, - references, - split, - strict, - tasty, - tasty-hunit, - time, - }: - mkDerivation { - pname = "haskell-tools-cli"; - version = "1.1.1.0"; - sha256 = "1ii9vdmmf2ncdzvlhsiv6afawkdlp5gyc369p2dxkg1nfi0d2px5"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - containers - directory - filepath - ghc - ghc-paths - haskell-tools-builtin-refactorings - haskell-tools-daemon - haskell-tools-refactor - mtl - references - split - strict - ]; - executableHaskellDepends = [ - base - directory - filepath - Glob - haskell-tools-builtin-refactorings - haskell-tools-daemon - mtl - optparse-applicative - process - split - ]; - testHaskellDepends = [ - base - bytestring - directory - filepath - haskell-tools-builtin-refactorings - knob - tasty - tasty-hunit - ]; - benchmarkHaskellDepends = [ - aeson - base - bytestring - criterion - directory - filepath - haskell-tools-builtin-refactorings - haskell-tools-daemon - knob - split - time - ]; - description = "Command-line frontend for Haskell-tools Refact"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "haskell-tools-daemon" = callPackage ( - { - mkDerivation, - aeson, - base, - bytestring, - Cabal, - containers, - deepseq, - Diff, - directory, - filepath, - fswatch, - ghc, - ghc-paths, - Glob, - haskell-tools-builtin-refactorings, - haskell-tools-prettyprint, - haskell-tools-refactor, - HUnit, - mtl, - network, - optparse-applicative, - pretty, - process, - references, - split, - strict, - tasty, - tasty-hunit, - template-haskell, - }: - mkDerivation { - pname = "haskell-tools-daemon"; - version = "1.1.1.0"; - sha256 = "1q8wfib72b4kiiwrz5hr5kzl2lbsff46gbzjidscv90z7c8niv2m"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson - base - bytestring - Cabal - containers - deepseq - Diff - directory - filepath - fswatch - ghc - ghc-paths - haskell-tools-builtin-refactorings - haskell-tools-prettyprint - haskell-tools-refactor - mtl - network - optparse-applicative - pretty - process - references - split - strict - template-haskell - ]; - executableHaskellDepends = [ - base - directory - filepath - haskell-tools-builtin-refactorings - ]; - testHaskellDepends = [ - aeson - base - bytestring - directory - filepath - ghc - Glob - haskell-tools-builtin-refactorings - HUnit - network - process - tasty - tasty-hunit - ]; - description = "Background process for Haskell-tools that editors can connect to"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "ht-daemon"; - } - ) { }; - - "haskell-tools-debug" = callPackage ( - { - mkDerivation, - base, - classyplate, - criterion, - filepath, - ghc, - ghc-paths, - haskell-tools-ast, - haskell-tools-backend-ghc, - haskell-tools-builtin-refactorings, - haskell-tools-prettyprint, - haskell-tools-refactor, - mtl, - references, - split, - template-haskell, - uniplate, - }: - mkDerivation { - pname = "haskell-tools-debug"; - version = "1.1.1.0"; - sha256 = "1y0hikwcns6dghr1pvbqv2hk4hgsnpwimaa32yxplwafnghcrcaj"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - classyplate - criterion - filepath - ghc - ghc-paths - haskell-tools-ast - haskell-tools-backend-ghc - haskell-tools-builtin-refactorings - haskell-tools-prettyprint - haskell-tools-refactor - mtl - references - split - template-haskell - uniplate - ]; - executableHaskellDepends = [ base ]; - description = "Debugging Tools for Haskell-tools"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "ht-debug"; - } - ) { }; - - "haskell-tools-demo" = callPackage ( - { - mkDerivation, - aeson, - base, - bytestring, - containers, - directory, - filepath, - ghc, - ghc-paths, - haskell-tools-ast, - haskell-tools-backend-ghc, - haskell-tools-builtin-refactorings, - haskell-tools-prettyprint, - haskell-tools-refactor, - http-types, - HUnit, - mtl, - network, - references, - tasty, - tasty-hunit, - transformers, - wai, - wai-websockets, - warp, - websockets, - }: - mkDerivation { - pname = "haskell-tools-demo"; - version = "1.1.1.0"; - sha256 = "0n03yk99fwk6fxkf3zvcxgr1aikq32d7jysy6cvw2lbwym12rxci"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson - base - bytestring - containers - directory - filepath - ghc - ghc-paths - haskell-tools-ast - haskell-tools-backend-ghc - haskell-tools-builtin-refactorings - haskell-tools-prettyprint - haskell-tools-refactor - http-types - mtl - references - transformers - wai - wai-websockets - warp - websockets - ]; - executableHaskellDepends = [ base ]; - testHaskellDepends = [ - aeson - base - bytestring - directory - filepath - HUnit - network - tasty - tasty-hunit - websockets - ]; - description = "A web-based demo for Haskell-tools Refactor"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "ht-demo"; - } - ) { }; - - "haskell-tools-experimental-refactorings" = callPackage ( - { - mkDerivation, - base, - Cabal, - containers, - directory, - either, - filepath, - ghc, - ghc-paths, - haskell-tools-ast, - haskell-tools-backend-ghc, - haskell-tools-prettyprint, - haskell-tools-refactor, - haskell-tools-rewrite, - mtl, - references, - split, - tasty, - tasty-hunit, - template-haskell, - time, - transformers, - uniplate, - }: - mkDerivation { - pname = "haskell-tools-experimental-refactorings"; - version = "1.1.1.0"; - sha256 = "0xmz5fs0hqk27mgi70ipl41wxjgw8swz9z9q1yw9yj00f046q9ia"; - libraryHaskellDepends = [ - base - Cabal - containers - directory - filepath - ghc - ghc-paths - haskell-tools-ast - haskell-tools-backend-ghc - haskell-tools-prettyprint - haskell-tools-refactor - haskell-tools-rewrite - mtl - references - split - template-haskell - transformers - uniplate - ]; - testHaskellDepends = [ - base - Cabal - containers - directory - either - filepath - ghc - ghc-paths - haskell-tools-ast - haskell-tools-backend-ghc - haskell-tools-prettyprint - haskell-tools-refactor - haskell-tools-rewrite - mtl - references - split - tasty - tasty-hunit - template-haskell - time - transformers - uniplate - ]; - description = "Refactoring Tool for Haskell"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "haskell-tools-prettyprint" = callPackage ( - { - mkDerivation, - base, - containers, - ghc, - haskell-tools-ast, - mtl, - references, - split, - text, - uniplate, - }: - mkDerivation { - pname = "haskell-tools-prettyprint"; - version = "1.1.1.0"; - sha256 = "09cg9g8ihq2c5c5wlfnfqvjj9cg2nbak0xxc1mdqlg2cnrdif6rs"; - libraryHaskellDepends = [ - base - containers - ghc - haskell-tools-ast - mtl - references - split - text - uniplate - ]; - description = "Pretty printing of Haskell-Tools AST"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "haskell-tools-refactor" = callPackage ( - { - mkDerivation, - aeson, - base, - Cabal, - containers, - directory, - either, - filepath, - ghc, - ghc-paths, - haskell-tools-ast, - haskell-tools-backend-ghc, - haskell-tools-prettyprint, - haskell-tools-rewrite, - mtl, - old-time, - polyparse, - references, - split, - tasty, - tasty-hunit, - template-haskell, - time, - transformers, - uniplate, - }: - mkDerivation { - pname = "haskell-tools-refactor"; - version = "1.1.1.0"; - sha256 = "0lbwyzc4ngd6sjgalw3w47c1r7x2af93rhrcdwncldfd98q4gaif"; - libraryHaskellDepends = [ - aeson - base - Cabal - containers - directory - filepath - ghc - ghc-paths - haskell-tools-ast - haskell-tools-backend-ghc - haskell-tools-prettyprint - haskell-tools-rewrite - mtl - references - split - template-haskell - transformers - uniplate - ]; - testHaskellDepends = [ - base - Cabal - containers - directory - either - filepath - ghc - ghc-paths - haskell-tools-ast - haskell-tools-backend-ghc - haskell-tools-prettyprint - haskell-tools-rewrite - mtl - old-time - polyparse - references - split - tasty - tasty-hunit - template-haskell - time - transformers - uniplate - ]; - description = "Refactoring Tool for Haskell"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "haskell-tools-rewrite" = callPackage ( - { - mkDerivation, - base, - containers, - directory, - filepath, - ghc, - haskell-tools-ast, - haskell-tools-prettyprint, - mtl, - references, - tasty, - tasty-hunit, - }: - mkDerivation { - pname = "haskell-tools-rewrite"; - version = "1.1.1.0"; - sha256 = "0m90f0vqy5iqj7b6a8lgzp5dxpvfnlz7zdsi8f0d2xqg6w8rgv24"; - libraryHaskellDepends = [ - base - containers - ghc - haskell-tools-ast - haskell-tools-prettyprint - mtl - references - ]; - testHaskellDepends = [ - base - directory - filepath - haskell-tools-ast - haskell-tools-prettyprint - tasty - tasty-hunit - ]; - description = "Facilities for generating new parts of the Haskell-Tools AST"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "haskell-tor" = callPackage ( - { - mkDerivation, - array, - asn1-encoding, - asn1-types, - async, - attoparsec, - base, - base64-bytestring, - binary, - bytestring, - cereal, - containers, - cryptonite, - fingertree, - hans, - hourglass, - HUnit, - memory, - monadLib, - network, - pretty-hex, - pure-zlib, - QuickCheck, - test-framework, - test-framework-hunit, - test-framework-quickcheck2, - time, - tls, - x509, - x509-store, - }: - mkDerivation { - pname = "haskell-tor"; - version = "0.1.2"; - sha256 = "0jyqsb8xgl1rh3wqhfky4m93xixy45kwgjmi6svgp0j40sqv4gv4"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - array - asn1-encoding - asn1-types - async - attoparsec - base - base64-bytestring - binary - bytestring - cereal - containers - cryptonite - fingertree - hans - hourglass - memory - monadLib - network - pretty-hex - pure-zlib - time - tls - x509 - x509-store - ]; - executableHaskellDepends = [ - asn1-encoding - asn1-types - base - base64-bytestring - bytestring - cryptonite - hans - hourglass - memory - network - time - tls - x509 - ]; - testHaskellDepends = [ - asn1-types - base - binary - bytestring - cryptonite - hourglass - HUnit - memory - pretty-hex - QuickCheck - test-framework - test-framework-hunit - test-framework-quickcheck2 - time - x509 - ]; - description = "A Haskell Tor Node"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "haskell-tor"; - } - ) { }; - - "haskell-type-exts" = callPackage ( - { - mkDerivation, - base, - containers, - haskell-src-exts, - pretty, - }: - mkDerivation { - pname = "haskell-type-exts"; - version = "0.1.0"; - sha256 = "051lsg9j3dgkr2akannfaddawdhybvsnm6x6xafmdmwn31v73z98"; - libraryHaskellDepends = [ - base - containers - haskell-src-exts - pretty - ]; - description = "A type checker for Haskell/haskell-src-exts"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "haskell-typescript" = callPackage ( - { - mkDerivation, - base, - process, - }: - mkDerivation { - pname = "haskell-typescript"; - version = "0.1.0.0"; - sha256 = "0fv533nac6dlawgffr1kvn4xpv63hdcb4wgyqbbg2s6dg9a2hw38"; - libraryHaskellDepends = [ - base - process - ]; - description = "Simple TypeScript API"; - license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "haskell-tyrant" = callPackage ( - { - mkDerivation, - base, - binary, - bytestring, - network, - }: - mkDerivation { - pname = "haskell-tyrant"; - version = "0.4"; - sha256 = "1pqh1v0klpi8iq882l5gk0fsf87kabq6rw1wjwkiq6fvw8cc1l97"; - libraryHaskellDepends = [ - base - binary - bytestring - network - ]; - description = "Haskell implementation of the Tokyo Tyrant binary protocol"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "haskell-updater" = callPackage ( { mkDerivation, @@ -306437,591 +177450,10 @@ self: { license = lib.licenses.bsd3; hydraPlatforms = lib.platforms.none; mainProgram = "haskell-xmpp-io-test"; - } - ) { }; - - "haskell2010" = callPackage ( - { - mkDerivation, - array, - base, - ghc-prim, - }: - mkDerivation { - pname = "haskell2010"; - version = "1.1.2.0"; - sha256 = "1s0avb08b5iwaym42jz783mk1az9kmjf3zmhfag0kzdw10qcnz4m"; - libraryHaskellDepends = [ - array - base - ghc-prim - ]; - description = "Compatibility with Haskell 2010"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "haskell2020" = callPackage ( - { - mkDerivation, - array, - base, - }: - mkDerivation { - pname = "haskell2020"; - version = "0.1.0.0"; - sha256 = "02amj6wza3aaw3i84yjh6zwn7v5g3v1d748ajc7gv6cpd4904pzq"; - libraryHaskellDepends = [ - array - base - ]; - description = "Haskell 2020[draft] Standard Library"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "haskell98" = callPackage ( - { - mkDerivation, - array, - base, - directory, - old-locale, - old-time, - process, - time, - }: - mkDerivation { - pname = "haskell98"; - version = "2.0.0.3"; - sha256 = "1450bgkn7gasj6cmkxn4afs828fc9slrrp2lqsqs3jlryr94cpdx"; - libraryHaskellDepends = [ - array - base - directory - old-locale - old-time - process - time - ]; - description = "Compatibility with Haskell 98"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "haskell98libraries" = callPackage ( - { - mkDerivation, - array, - base, - directory, - old-locale, - old-time, - process, - time, - }: - mkDerivation { - pname = "haskell98libraries"; - version = "2.0.0.2"; - sha256 = "1dcjwkvggvwrs8lv2pcxcz2kcz179nbca9q16mbk90qnznysr8i8"; - libraryHaskellDepends = [ - array - base - directory - old-locale - old-time - process - time - ]; - description = "Compatibility with Haskell 98"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "haskelldb" = callPackage ( - { - mkDerivation, - base, - containers, - directory, - mtl, - old-locale, - old-time, - pretty, - time, - }: - mkDerivation { - pname = "haskelldb"; - version = "2.2.4"; - sha256 = "0f8c9bz25wzsc65czv0chxk93w947824axl7p821fljlrykcm45y"; - libraryHaskellDepends = [ - base - containers - directory - mtl - old-locale - old-time - pretty - time - ]; - description = "A library of combinators for generating and executing SQL statements"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; broken = true; } ) { }; - "haskelldb-connect-hdbc" = callPackage ( - { - mkDerivation, - base, - containers, - haskelldb, - HDBC, - }: - mkDerivation { - pname = "haskelldb-connect-hdbc"; - version = "0.1.0.0"; - sha256 = "1l9ifff33xbgdr6fahnzz00nb7va2r0i3pncjd1j8bbnyya1w2kl"; - libraryHaskellDepends = [ - base - containers - haskelldb - HDBC - ]; - description = "Bracketed HDBC session for HaskellDB"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "haskelldb-connect-hdbc-catchio-mtl" = callPackage ( - { - mkDerivation, - base, - haskelldb, - haskelldb-connect-hdbc, - HDBC, - MonadCatchIO-mtl, - mtl, - }: - mkDerivation { - pname = "haskelldb-connect-hdbc-catchio-mtl"; - version = "0.1.0.0"; - sha256 = "1ssg96r7cphakis5c494m5lc3m5ksn1w03k554p0qx2kl1g885xw"; - libraryHaskellDepends = [ - base - haskelldb - haskelldb-connect-hdbc - HDBC - MonadCatchIO-mtl - mtl - ]; - description = "Bracketed HaskellDB HDBC session using MonadCatchIO-mtl"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "haskelldb-connect-hdbc-catchio-tf" = callPackage ( - { - mkDerivation, - base, - haskelldb, - haskelldb-connect-hdbc, - HDBC, - MonadCatchIO-transformers, - transformers, - }: - mkDerivation { - pname = "haskelldb-connect-hdbc-catchio-tf"; - version = "0.1.0.0"; - sha256 = "16qab88ryli9jbinw9frhhzl0ph09dinzx40x9cr9a3db7wvphw4"; - libraryHaskellDepends = [ - base - haskelldb - haskelldb-connect-hdbc - HDBC - MonadCatchIO-transformers - transformers - ]; - description = "Bracketed HaskellDB HDBC session using MonadCatchIO-transformers"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "haskelldb-connect-hdbc-catchio-transformers" = callPackage ( - { - mkDerivation, - base, - haskelldb, - haskelldb-connect-hdbc, - HDBC, - MonadCatchIO-transformers, - transformers, - }: - mkDerivation { - pname = "haskelldb-connect-hdbc-catchio-transformers"; - version = "0.1.0.0"; - sha256 = "0hbb6klc4azz6f5wi39l5736xq0b7wgja35fk9vmmn0lnf6iv5j7"; - libraryHaskellDepends = [ - base - haskelldb - haskelldb-connect-hdbc - HDBC - MonadCatchIO-transformers - transformers - ]; - description = "Bracketed HaskellDB HDBC session using MonadCatchIO-transformers"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "haskelldb-connect-hdbc-lifted" = callPackage ( - { - mkDerivation, - base, - haskelldb, - haskelldb-connect-hdbc, - HDBC, - lifted-base, - monad-control, - transformers-base, - }: - mkDerivation { - pname = "haskelldb-connect-hdbc-lifted"; - version = "0.1.0.0"; - sha256 = "1ysnha7bmrd3accrnbswr17nv6j4pj1mbshcphjkhdffcvxb82wa"; - libraryHaskellDepends = [ - base - haskelldb - haskelldb-connect-hdbc - HDBC - lifted-base - monad-control - transformers-base - ]; - description = "Bracketed HaskellDB HDBC session using lifted-base"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "haskelldb-dynamic" = callPackage ( - { - mkDerivation, - base, - haskell98, - haskelldb, - mtl, - plugins, - }: - mkDerivation { - pname = "haskelldb-dynamic"; - version = "1.0.0"; - sha256 = "0wdiywxjara2fwb1d548f9s0vcjxm1c38v4s05xqm5bz141l7a6a"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - haskell98 - haskelldb - mtl - plugins - ]; - executableHaskellDepends = [ haskelldb ]; - description = "HaskellDB support for the dynamically loaded drivers"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "DBDirect-dynamic"; - } - ) { }; - - "haskelldb-flat" = callPackage ( - { - mkDerivation, - base, - containers, - directory, - haskelldb, - mtl, - old-time, - }: - mkDerivation { - pname = "haskelldb-flat"; - version = "1.0.1"; - sha256 = "0f75am17zfpbxhg951gnjqmdfgi1q7byhw1xv1rz4k36kcg623x1"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - containers - directory - haskelldb - mtl - old-time - ]; - description = "An experimental HaskellDB back-end in pure Haskell (no SQL)"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "DBDirect-flat"; - } - ) { }; - - "haskelldb-hdbc" = callPackage ( - { - mkDerivation, - base, - containers, - convertible, - haskelldb, - HDBC, - mtl, - old-time, - }: - mkDerivation { - pname = "haskelldb-hdbc"; - version = "2.2.4"; - sha256 = "02y79hnw37llk0k0ihi9kd8m62082g7885nnvmljx2qksla0y9s2"; - libraryHaskellDepends = [ - base - containers - convertible - haskelldb - HDBC - mtl - old-time - ]; - description = "HaskellDB support for HDBC"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "haskelldb-hdbc-mysql" = callPackage ( - { - mkDerivation, - base, - haskelldb, - haskelldb-hdbc, - HDBC, - HDBC-mysql, - mtl, - }: - mkDerivation { - pname = "haskelldb-hdbc-mysql"; - version = "0.1.1"; - sha256 = "0nn8jjrsi62xqws00izh3qi2shlxa58l37q91x1xnd9fig7j0ai2"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - haskelldb - haskelldb-hdbc - HDBC - HDBC-mysql - mtl - ]; - description = "HaskellDB support for the HDBC MySQL driver"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "DBDirect-hdbc-mysql"; - } - ) { }; - - "haskelldb-hdbc-odbc" = callPackage ( - { - mkDerivation, - base, - haskelldb, - haskelldb-hdbc, - HDBC, - HDBC-odbc, - mtl, - }: - mkDerivation { - pname = "haskelldb-hdbc-odbc"; - version = "2.1.2"; - sha256 = "1y87iiil6k9ycsni70kvfcq50fiws8aqnhmk4018f6k6q1bx7q6p"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - haskelldb - haskelldb-hdbc - HDBC - HDBC-odbc - mtl - ]; - description = "HaskellDB support for the HDBC ODBC driver"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "DBDirect-hdbc-odbc"; - } - ) { }; - - "haskelldb-hdbc-postgresql" = callPackage ( - { - mkDerivation, - base, - haskelldb, - haskelldb-hdbc, - HDBC, - HDBC-postgresql, - libpq, - mtl, - }: - mkDerivation { - pname = "haskelldb-hdbc-postgresql"; - version = "2.1.2"; - sha256 = "08cv3y22zvf0pf1cs57vrma3vp3b5fzzs6nsnvcnfnzsvacanh7g"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - haskelldb - haskelldb-hdbc - HDBC - HDBC-postgresql - mtl - ]; - executableSystemDepends = [ libpq ]; - description = "HaskellDB support for the HDBC PostgreSQL driver"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "DBDirect-hdbc-postgresql"; - } - ) { inherit (pkgs) libpq; }; - - "haskelldb-hdbc-sqlite3" = callPackage ( - { - mkDerivation, - base, - haskelldb, - haskelldb-hdbc, - HDBC, - HDBC-sqlite3, - mtl, - }: - mkDerivation { - pname = "haskelldb-hdbc-sqlite3"; - version = "2.1.2"; - sha256 = "0qdp2lzhk8ywb9pmppvvmwqkaagvrnyjiglahy6mb7rdfq89bas6"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - haskelldb - haskelldb-hdbc - HDBC - HDBC-sqlite3 - mtl - ]; - description = "HaskellDB support for the HDBC SQLite driver"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "DBDirect-hdbc-sqlite3"; - } - ) { }; - - "haskelldb-hsql" = callPackage ( - { - mkDerivation, - base, - haskelldb, - hsql, - mtl, - old-time, - }: - mkDerivation { - pname = "haskelldb-hsql"; - version = "1.0.0"; - sha256 = "0j1aqix21pqcsw7skl897pd1ir6hg836g4zb2h5338h4gih6blx0"; - libraryHaskellDepends = [ - base - haskelldb - hsql - mtl - old-time - ]; - description = "HaskellDB support for HSQL"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "haskelldb-hsql-mysql" = callPackage ( - { - mkDerivation, - base, - haskelldb, - haskelldb-hsql, - hsql, - hsql-mysql, - mtl, - }: - mkDerivation { - pname = "haskelldb-hsql-mysql"; - version = "1.0.0"; - sha256 = "09rlrv9jb2hw7jypglfqhgfx3b0bcp68iq2wk4jfqw74m4d34xkm"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - haskelldb - haskelldb-hsql - hsql - hsql-mysql - mtl - ]; - description = "HaskellDB support for the HSQL MySQL driver"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "DBDirect-hsql-mysql"; - } - ) { }; - - "haskelldb-hsql-odbc" = callPackage ( - { - mkDerivation, - base, - haskelldb, - haskelldb-hsql, - hsql, - hsql-odbc, - mtl, - }: - mkDerivation { - pname = "haskelldb-hsql-odbc"; - version = "1.0.0"; - sha256 = "18r7b4x43729c9l34gvbhgw2fwgq7llcb6cfwcp077f9ia0kgn6a"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - haskelldb - haskelldb-hsql - hsql - hsql-odbc - mtl - ]; - description = "HaskellDB support for the HSQL ODBC driver"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "DBDirect-hsql-odbc"; - } - ) { }; - "haskelldb-hsql-oracle" = callPackage ( { mkDerivation, @@ -307054,37 +177486,6 @@ self: { } ) { hsql-oracle = null; }; - "haskelldb-hsql-postgresql" = callPackage ( - { - mkDerivation, - base, - haskelldb, - haskelldb-hsql, - hsql, - hsql-postgresql, - mtl, - }: - mkDerivation { - pname = "haskelldb-hsql-postgresql"; - version = "1.0.0"; - sha256 = "1d1vgw9q95h864gfv0n2gmdvnvkxjg4pdjmfpfj899xx1s0a0vsv"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - haskelldb - haskelldb-hsql - hsql - hsql-postgresql - mtl - ]; - description = "HaskellDB support for the HSQL PostgreSQL driver"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "DBDirect-hsql-postgresql"; - } - ) { }; - "haskelldb-hsql-sqlite" = callPackage ( { mkDerivation, @@ -307117,74 +177518,6 @@ self: { } ) { hsql-sqlite = null; }; - "haskelldb-hsql-sqlite3" = callPackage ( - { - mkDerivation, - base, - haskelldb, - haskelldb-hsql, - hsql, - hsql-sqlite3, - mtl, - }: - mkDerivation { - pname = "haskelldb-hsql-sqlite3"; - version = "1.0.0"; - sha256 = "11xlr2f7203wxg17696yjqgyzckavqjazc9brmdqpbrnplaqdrc5"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - haskelldb - haskelldb-hsql - hsql - hsql-sqlite3 - mtl - ]; - description = "HaskellDB support for the HSQL SQLite3 driver"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "DBDirect-hsql-sqlite3"; - } - ) { }; - - "haskelldb-th" = callPackage ( - { - mkDerivation, - base, - haskelldb, - mtl, - template-haskell, - }: - mkDerivation { - pname = "haskelldb-th"; - version = "2.1.0"; - sha256 = "12whvz0qy9lqk1frfl5px9lhr1nwy519vj2z9c3g8nqjzscwzayb"; - libraryHaskellDepends = [ - base - haskelldb - mtl - template-haskell - ]; - description = "Template Haskell utilities for HaskellDB"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "haskelldb-wx" = callPackage ( - { mkDerivation }: - mkDerivation { - pname = "haskelldb-wx"; - version = "1.0.0"; - sha256 = "01652m0bym80400navqlpdv5n0gfgnfzd1d0857f3kd13ksqk2hy"; - description = "HaskellDB support for WXHaskell"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "haskellish" = callPackage ( { mkDerivation, @@ -307212,253 +177545,6 @@ self: { } ) { }; - "haskellscrabble" = callPackage ( - { - mkDerivation, - array, - arrows, - base, - containers, - directory, - errors, - filepath, - HUnit, - listsafe, - mtl, - parsec, - QuickCheck, - random, - safe, - semigroups, - split, - test-framework, - test-framework-hunit, - test-framework-quickcheck2, - transformers, - unordered-containers, - }: - mkDerivation { - pname = "haskellscrabble"; - version = "2.2.2"; - sha256 = "0z74y4mjw1lsdpdlazmlvl1w7v5vgj7adn5v7f25h7cq5zy91y6p"; - libraryHaskellDepends = [ - array - arrows - base - containers - errors - listsafe - mtl - parsec - QuickCheck - random - safe - semigroups - split - transformers - unordered-containers - ]; - testHaskellDepends = [ - base - containers - directory - filepath - HUnit - QuickCheck - random - semigroups - test-framework - test-framework-hunit - test-framework-quickcheck2 - ]; - description = "A scrabble library capturing the core game logic of scrabble"; - license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "haskellscript" = callPackage ( - { - mkDerivation, - base, - cryptohash, - directory, - either, - filepath, - mtl, - process, - text, - }: - mkDerivation { - pname = "haskellscript"; - version = "0.2.3"; - sha256 = "0jrvvbpx35dhrwvknrxcwg1j1yi0mwzrnzrr2hsxja21drrqklf3"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - cryptohash - directory - either - filepath - mtl - process - text - ]; - description = "Command line tool for running Haskell scripts with a hashbang"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "haskellscript"; - broken = true; - } - ) { }; - - "haskelm" = callPackage ( - { - mkDerivation, - aeson, - base, - binary, - containers, - directory, - Elm, - haskell-src-exts, - haskell-src-meta, - mtl, - parsec, - pretty, - shakespeare, - split, - template-haskell, - temporary, - text, - th-desugar, - unordered-containers, - vector, - }: - mkDerivation { - pname = "haskelm"; - version = "0.1.12.0"; - sha256 = "1bzp79fcq6gxy8pvspw4q71iakzvrbdwr3vjahd698ymfbj5ji8y"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson - base - binary - containers - directory - haskell-src-exts - haskell-src-meta - mtl - parsec - pretty - split - template-haskell - temporary - text - th-desugar - unordered-containers - vector - ]; - executableHaskellDepends = [ - aeson - base - binary - containers - directory - haskell-src-exts - haskell-src-meta - mtl - parsec - pretty - split - template-haskell - temporary - text - th-desugar - unordered-containers - vector - ]; - testHaskellDepends = [ - aeson - base - binary - containers - directory - Elm - haskell-src-exts - haskell-src-meta - mtl - parsec - pretty - shakespeare - split - template-haskell - temporary - text - th-desugar - unordered-containers - vector - ]; - description = "Elm to Haskell translation"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "haskelm"; - } - ) { }; - - "haskelzinc" = callPackage ( - { - mkDerivation, - base, - containers, - directory, - filepath, - parsec, - pretty, - process, - }: - mkDerivation { - pname = "haskelzinc"; - version = "0.3.1.1"; - sha256 = "0dz9sd2i6m4d2jj76zl6yfaynnzj8ihhfis6602cqh37ngxgkxqj"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base - containers - directory - filepath - parsec - pretty - process - ]; - description = "CP in Haskell through MiniZinc"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "haskeme" = callPackage ( - { mkDerivation, base }: - mkDerivation { - pname = "haskeme"; - version = "0.1.0.4"; - sha256 = "0lis0ni0l52x691adm2da7mzjam4g414gc0d0i9f6i050ra02g3j"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base ]; - executableHaskellDepends = [ base ]; - description = "Compiler from I- to S-Expressions for the Scheme Programming Language"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "haskeme"; - broken = true; - } - ) { }; - "haskey" = callPackage ( { mkDerivation, @@ -307606,167 +177692,6 @@ self: { } ) { }; - "haskey-mtl" = callPackage ( - { - mkDerivation, - base, - binary, - exceptions, - haskey, - haskey-btree, - lens, - monad-control, - mtl, - text, - transformers, - transformers-base, - }: - mkDerivation { - pname = "haskey-mtl"; - version = "0.3.1.0"; - sha256 = "154jny8frg61amsyh15w4n6clj9alp8rsa8qxgg9xh8xj2i01yqz"; - libraryHaskellDepends = [ - base - exceptions - haskey - haskey-btree - monad-control - mtl - transformers - transformers-base - ]; - testHaskellDepends = [ - base - binary - exceptions - haskey - haskey-btree - lens - mtl - text - transformers - ]; - description = "A monad transformer supporting Haskey transactions"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "haskgame" = callPackage ( - { - mkDerivation, - base, - containers, - haskell98, - SDL, - SDL-ttf, - }: - mkDerivation { - pname = "haskgame"; - version = "0.0.6"; - sha256 = "061dhk7d9d8mnb1rs7077q383sqlby8s31ips8jjadkkhyxi5lvz"; - libraryHaskellDepends = [ - base - containers - haskell98 - SDL - SDL-ttf - ]; - description = "Haskell game library"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "haskheap" = callPackage ( - { - mkDerivation, - aeson, - base, - bytestring, - http-conduit, - http-types, - network, - old-locale, - text, - time, - unordered-containers, - }: - mkDerivation { - pname = "haskheap"; - version = "0.1.2"; - sha256 = "1c2fgqq2i3s2v0xi04y8y6li41ilvi50zlf2ba843my9s3i8njqr"; - libraryHaskellDepends = [ - aeson - base - bytestring - http-conduit - http-types - network - old-locale - text - time - unordered-containers - ]; - description = "Haskell bindings to refheap"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "haskhol-core" = callPackage ( - { - mkDerivation, - acid-state, - base, - containers, - deepseq, - filepath, - ghc-prim, - hashable, - mtl, - parsec, - pretty, - safecopy, - shelly, - template-haskell, - text, - text-show, - th-lift, - unordered-containers, - }: - mkDerivation { - pname = "haskhol-core"; - version = "1.1.0"; - sha256 = "0vlzybbplqggvgnj61yl0g2rak2qbsp7hly9srgr6wd6qm9l1nxx"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - acid-state - base - containers - deepseq - filepath - ghc-prim - hashable - mtl - parsec - pretty - safecopy - shelly - template-haskell - text - text-show - th-lift - unordered-containers - ]; - description = "The core logical system of HaskHOL, an EDSL for HOL theorem proving"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "haskintex" = callPackage ( { mkDerivation, @@ -308024,44 +177949,6 @@ self: { } ) { }; - "haskoin-bitcoind" = callPackage ( - { - mkDerivation, - base, - base16-bytestring, - bytestring, - cereal, - haskoin-core, - monad-control, - mtl, - network-bitcoin, - text, - transformers, - transformers-base, - }: - mkDerivation { - pname = "haskoin-bitcoind"; - version = "0.4.1"; - sha256 = "1m5j03brslh0xgc7nm2b0cyk8l2zb140f71y5bcj28aaips3yyr0"; - libraryHaskellDepends = [ - base - base16-bytestring - bytestring - cereal - haskoin-core - monad-control - mtl - network-bitcoin - text - transformers - transformers-base - ]; - description = "An adapter for haskoin to network-bitcoin"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "haskoin-core" = callPackage ( { mkDerivation, @@ -308182,59 +178069,6 @@ self: { } ) { }; - "haskoin-crypto" = callPackage ( - { - mkDerivation, - base, - binary, - byteable, - bytestring, - containers, - cryptohash, - haskoin-util, - HUnit, - mtl, - QuickCheck, - test-framework, - test-framework-hunit, - test-framework-quickcheck2, - }: - mkDerivation { - pname = "haskoin-crypto"; - version = "0.0.1.1"; - sha256 = "00argpj3qkaj8dcxbd46xsi1abjgr394li6ygyvna55508r1hd79"; - libraryHaskellDepends = [ - base - binary - byteable - bytestring - containers - cryptohash - haskoin-util - mtl - QuickCheck - ]; - testHaskellDepends = [ - base - binary - byteable - bytestring - containers - cryptohash - haskoin-util - HUnit - mtl - QuickCheck - test-framework - test-framework-hunit - test-framework-quickcheck2 - ]; - description = "Implementation of Bitcoin cryptographic primitives"; - license = lib.licenses.publicDomain; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "haskoin-node" = callPackage ( { mkDerivation, @@ -308373,7 +178207,6 @@ self: { ]; description = "Implementation of the Bitcoin network protocol messages"; license = lib.licenses.publicDomain; - hydraPlatforms = lib.platforms.none; } ) { }; @@ -308425,7 +178258,6 @@ self: { ]; description = "Implementation of Bitcoin script parsing and evaluation"; license = lib.licenses.publicDomain; - hydraPlatforms = lib.platforms.none; } ) { }; @@ -308952,130 +178784,6 @@ self: { } ) { }; - "haskoon" = callPackage ( - { - mkDerivation, - base, - bytestring, - cgi, - directory, - fastcgi, - filepath, - hslogger, - hsp, - hsx, - MaybeT, - MissingH, - mtl, - network, - regex-posix, - safe, - utf8-string, - }: - mkDerivation { - pname = "haskoon"; - version = "0.3.1.1"; - sha256 = "1rf5w1mvpsiqim1h5hh6s2cxzh3c5gm1k3n6z4h2ryc1s7m2bl9l"; - libraryHaskellDepends = [ - base - bytestring - cgi - directory - fastcgi - filepath - hslogger - hsp - hsx - MaybeT - MissingH - mtl - network - regex-posix - safe - utf8-string - ]; - description = "Web Application Abstraction"; - license = "LGPL"; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "haskoon-httpspec" = callPackage ( - { - mkDerivation, - base, - bidispec, - bytestring, - haskoon, - hslogger, - HTTP, - httpspec, - mtl, - network, - }: - mkDerivation { - pname = "haskoon-httpspec"; - version = "0.5.0.1"; - sha256 = "059hywia5fa15j2dpbzvnvjzv55bzgivy3ddxcrdskd85zx7lx6z"; - libraryHaskellDepends = [ - base - bidispec - bytestring - haskoon - hslogger - HTTP - httpspec - mtl - network - ]; - description = "Integrating HttpSpec with Haskoon"; - license = "LGPL"; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "haskoon-salvia" = callPackage ( - { - mkDerivation, - base, - bytestring, - cgi, - fclabels, - haskoon, - hslogger, - HTTP, - monads-fd, - mtl, - network, - salvia, - salvia-protocol, - transformers, - }: - mkDerivation { - pname = "haskoon-salvia"; - version = "0.4.0.2"; - sha256 = "0d0s0zd9gr3xbssyk62l7w507prjnyak81czhnd6fgbfqx82d6hk"; - libraryHaskellDepends = [ - base - bytestring - cgi - fclabels - haskoon - hslogger - HTTP - monads-fd - mtl - network - salvia - salvia-protocol - transformers - ]; - description = "Integrating HttpSpec with Haskoon"; - license = "LGPL"; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "haskore" = callPackage ( { mkDerivation, @@ -309141,156 +178849,6 @@ self: { } ) { }; - "haskore-realtime" = callPackage ( - { - mkDerivation, - base, - bytestring, - data-accessor, - directory, - event-list, - haskore, - midi, - non-negative, - old-time, - process, - transformers, - unix, - utility-ht, - }: - mkDerivation { - pname = "haskore-realtime"; - version = "0.2"; - sha256 = "0fhlfivp44py93gjlqrp370cjkvi0g79p156vayylds128hgpi5f"; - libraryHaskellDepends = [ - base - bytestring - data-accessor - directory - event-list - haskore - midi - non-negative - old-time - process - transformers - unix - utility-ht - ]; - description = "Routines for realtime playback of Haskore songs"; - license = "GPL"; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "haskore-supercollider" = callPackage ( - { - mkDerivation, - array, - base, - bytestring, - containers, - data-accessor, - event-list, - haskore, - haskore-realtime, - hosc, - hsc3, - non-negative, - opensoundcontrol-ht, - process, - random, - supercollider-ht, - transformers, - unix, - utility-ht, - }: - mkDerivation { - pname = "haskore-supercollider"; - version = "0.3"; - sha256 = "04rzbk1v8ay569npd8i1xv3aqx55jn8p6cvqpi6774afaxvb0qxy"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - array - base - bytestring - containers - data-accessor - event-list - haskore - haskore-realtime - hosc - hsc3 - non-negative - opensoundcontrol-ht - process - random - supercollider-ht - transformers - unix - utility-ht - ]; - description = "Haskore back-end for SuperCollider"; - license = "GPL"; - hydraPlatforms = lib.platforms.none; - mainProgram = "song-air"; - } - ) { }; - - "haskore-synthesizer" = callPackage ( - { - mkDerivation, - base, - data-accessor, - event-list, - haskore, - non-negative, - numeric-prelude, - random, - synthesizer-core, - synthesizer-filter, - utility-ht, - }: - mkDerivation { - pname = "haskore-synthesizer"; - version = "0.0.3.3"; - sha256 = "1vm4ld9ylsq0cl2k5qzk3si9r8682s0dmal615zpyp3bbazwipb4"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - data-accessor - event-list - haskore - non-negative - numeric-prelude - random - synthesizer-core - synthesizer-filter - utility-ht - ]; - description = "Music rendering coded in Haskell"; - license = "GPL"; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "haskore-vintage" = callPackage ( - { mkDerivation, base }: - mkDerivation { - pname = "haskore-vintage"; - version = "0.3"; - sha256 = "1aq8lwyj4whz4llkwgx7n44rnrhk6ykyi8cpb0cjsabk3h29mm0b"; - libraryHaskellDepends = [ base ]; - description = "The February 2000 version of Haskore"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "haskseg" = callPackage ( { mkDerivation, @@ -309567,64 +179125,6 @@ self: { } ) { }; - "hasktorch-codegen" = callPackage ( - { - mkDerivation, - base, - containers, - directory, - hashable, - hspec, - hspec-discover, - megaparsec, - optparse-applicative, - pretty-show, - QuickCheck, - text, - unordered-containers, - }: - mkDerivation { - pname = "hasktorch-codegen"; - version = "0.0.1.1"; - sha256 = "0yygx1w7i9mnyxrqzz94vrni5y7rkn92yycax7rqg2r5cds2xb6g"; - revision = "1"; - editedCabalFile = "07y9iwmxyvixbvy3mmyxrk95kh8nycazqzv5449pfx2rvry6m6ph"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - containers - directory - hashable - megaparsec - pretty-show - text - unordered-containers - ]; - executableHaskellDepends = [ - base - optparse-applicative - pretty-show - ]; - testHaskellDepends = [ - base - containers - hspec - hspec-discover - megaparsec - pretty-show - QuickCheck - text - ]; - testToolDepends = [ hspec-discover ]; - description = "Code generation tools for Hasktorch"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "ht-codegen"; - broken = true; - } - ) { }; - "hasktorch-ffi-tests" = callPackage ( { mkDerivation, @@ -309652,246 +179152,6 @@ self: { } ) { }; - "hasktorch-ffi-th" = callPackage ( - { - mkDerivation, - ATen, - base, - c2hs, - hasktorch-ffi-tests, - hasktorch-types-th, - hspec, - inline-c, - QuickCheck, - text, - }: - mkDerivation { - pname = "hasktorch-ffi-th"; - version = "0.0.1.0"; - sha256 = "10gdvkwcjjzmrvmlz8vf823ja1jpab1nrph5lq46fcz8nqycsjq0"; - libraryHaskellDepends = [ - base - hasktorch-types-th - inline-c - text - ]; - librarySystemDepends = [ ATen ]; - libraryToolDepends = [ c2hs ]; - testHaskellDepends = [ - base - hasktorch-ffi-tests - hasktorch-types-th - hspec - QuickCheck - text - ]; - description = "Bindings to Torch"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { ATen = null; }; - - "hasktorch-ffi-thc" = callPackage ( - { - mkDerivation, - ATen, - base, - c2hs, - hasktorch-ffi-tests, - hasktorch-ffi-th, - hasktorch-types-th, - hasktorch-types-thc, - hspec, - inline-c, - QuickCheck, - text, - }: - mkDerivation { - pname = "hasktorch-ffi-thc"; - version = "0.0.1.0"; - sha256 = "0l3xvhdyn2dzw999fbhihl20s3q01r5vp247d0rh27zvyszg7l3y"; - libraryHaskellDepends = [ - base - hasktorch-types-th - hasktorch-types-thc - inline-c - text - ]; - librarySystemDepends = [ ATen ]; - libraryToolDepends = [ c2hs ]; - testHaskellDepends = [ - base - hasktorch-ffi-tests - hasktorch-ffi-th - hasktorch-types-th - hasktorch-types-thc - hspec - QuickCheck - text - ]; - description = "Bindings to Cutorch"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { ATen = null; }; - - "hasktorch-indef" = callPackage ( - { - mkDerivation, - backprop, - base, - containers, - deepseq, - dimensions, - ghc-typelits-natnormalise, - hasktorch-ffi-th, - hasktorch-signatures, - hasktorch-signatures-partial, - hasktorch-signatures-support, - hasktorch-types-th, - hspec, - managed, - mtl, - QuickCheck, - safe-exceptions, - singletons, - text, - transformers, - vector, - }: - mkDerivation { - pname = "hasktorch-indef"; - version = "0.0.1.0"; - sha256 = "0xmz7jid3sg3d2b4q1051fs7g0fljgvqxqwhzhd4g85fx7zr5nk3"; - libraryHaskellDepends = [ - backprop - base - containers - deepseq - dimensions - ghc-typelits-natnormalise - hasktorch-ffi-th - hasktorch-signatures - hasktorch-signatures-partial - hasktorch-signatures-support - hasktorch-types-th - managed - mtl - safe-exceptions - singletons - text - transformers - vector - ]; - testHaskellDepends = [ - backprop - base - dimensions - ghc-typelits-natnormalise - hasktorch-ffi-th - hasktorch-types-th - hspec - mtl - QuickCheck - singletons - text - transformers - ]; - doHaddock = false; - description = "Core Hasktorch abstractions wrapping FFI bindings"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "hasktorch-signatures" = callPackage ( - { - mkDerivation, - base, - hasktorch-ffi-th, - hasktorch-ffi-thc, - hasktorch-signatures-partial, - hasktorch-signatures-support, - hasktorch-signatures-types, - hasktorch-types-th, - hasktorch-types-thc, - }: - mkDerivation { - pname = "hasktorch-signatures"; - version = "0.0.1.0"; - sha256 = "1p8c3h0naqcbjxb3jbiss9zgfyg0hj0wcb6qlid6kwy925i4cyk1"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - hasktorch-signatures-partial - hasktorch-signatures-support - hasktorch-signatures-types - hasktorch-types-th - hasktorch-types-thc - ]; - executableHaskellDepends = [ - base - hasktorch-ffi-th - hasktorch-ffi-thc - hasktorch-types-th - hasktorch-types-thc - ]; - doHaddock = false; - description = "Backpack signatures for Tensor operations"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "hasktorch-signatures-partial" = callPackage ( - { - mkDerivation, - base, - hasktorch-signatures-types, - hasktorch-types-th, - }: - mkDerivation { - pname = "hasktorch-signatures-partial"; - version = "0.0.1.0"; - sha256 = "12dc5i4818j4q09mdshygz16zq1zyp32k6c1imgp9dl6bl4l05ss"; - libraryHaskellDepends = [ - base - hasktorch-signatures-types - hasktorch-types-th - ]; - description = "Functions to partially satisfy tensor signatures"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "hasktorch-signatures-support" = callPackage ( - { - mkDerivation, - base, - hasktorch-signatures-types, - hasktorch-types-th, - }: - mkDerivation { - pname = "hasktorch-signatures-support"; - version = "0.0.1.0"; - sha256 = "1vfmpsmgak4ifhpqh15ycf01p8l3a5qas3m7lkg09y8mqimwq5hh"; - libraryHaskellDepends = [ - base - hasktorch-signatures-types - hasktorch-types-th - ]; - doHaddock = false; - description = "Signatures for support tensors in hasktorch"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "hasktorch-signatures-types" = callPackage ( { mkDerivation, @@ -309960,60 +179220,6 @@ self: { } ) { }; - "hasktorch-zoo" = callPackage ( - { - mkDerivation, - backprop, - base, - deepseq, - dimensions, - directory, - filepath, - generic-lens, - ghc-typelits-natnormalise, - hashable, - hasktorch, - JuicyPixels, - microlens, - mtl, - mwc-random, - primitive, - safe-exceptions, - singletons, - transformers, - vector, - }: - mkDerivation { - pname = "hasktorch-zoo"; - version = "0.0.1.0"; - sha256 = "1cpk2q1m68y7wljaki1d4a4y45hqh34ia8r6zfw0b62f9b6zihjm"; - libraryHaskellDepends = [ - backprop - base - deepseq - dimensions - directory - filepath - generic-lens - ghc-typelits-natnormalise - hashable - hasktorch - JuicyPixels - microlens - mtl - mwc-random - primitive - safe-exceptions - singletons - transformers - vector - ]; - description = "Neural architectures in hasktorch"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "haskus-binary" = callPackage ( { mkDerivation, @@ -310068,139 +179274,7 @@ self: { description = "Haskus binary format manipulation"; license = lib.licenses.bsd3; hydraPlatforms = lib.platforms.none; - } - ) { }; - - "haskus-system-build" = callPackage ( - { - mkDerivation, - base, - conduit, - directory, - filepath, - hashable, - haskus-utils, - http-conduit, - optparse-applicative, - optparse-simple, - process, - temporary, - text, - yaml, - }: - mkDerivation { - pname = "haskus-system-build"; - version = "1.1"; - sha256 = "1krclfcv2hj7y9hapfm8xmc2q41v54r2pkh3rfhdnxffgcszad1z"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - conduit - directory - filepath - hashable - haskus-utils - http-conduit - optparse-applicative - optparse-simple - process - temporary - text - yaml - ]; - description = "Haskus system build tool"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "haskus-system-build"; - } - ) { }; - - "haskus-utils" = callPackage ( - { - mkDerivation, - base, - containers, - doctest, - free, - hashable, - haskus-utils-data, - haskus-utils-types, - haskus-utils-variant, - list-t, - mtl, - stm, - stm-containers, - tasty, - tasty-quickcheck, - template-haskell, - transformers, - vector, - }: - mkDerivation { - pname = "haskus-utils"; - version = "1.5"; - sha256 = "0rdlbjk6n2mzhzhsklnc61555kac6hv2243mgcg2bakypphl48na"; - libraryHaskellDepends = [ - base - containers - free - hashable - haskus-utils-data - haskus-utils-types - haskus-utils-variant - list-t - mtl - stm - stm-containers - template-haskell - transformers - vector - ]; - testHaskellDepends = [ - base - containers - doctest - tasty - tasty-quickcheck - ]; - description = "Haskus utility modules"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "haskus-utils-compat" = callPackage ( - { - mkDerivation, - base, - bytestring, - directory, - filepath, - formatting, - haskus-binary, - haskus-utils-data, - template-haskell, - text, - }: - mkDerivation { - pname = "haskus-utils-compat"; - version = "1.1"; - sha256 = "1348wa4hi2nzyvh3x82hrll2lcq98jpmibm9gi771k67qsfza4bj"; - libraryHaskellDepends = [ - base - bytestring - directory - filepath - formatting - haskus-binary - haskus-utils-data - template-haskell - text - ]; - description = "Compatibility modules with other external packages (ByteString, etc.)"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; + broken = true; } ) { }; @@ -310308,38 +179382,6 @@ self: { } ) { }; - "haskus-web" = callPackage ( - { - mkDerivation, - base, - bytestring, - clay, - happstack-server, - happstack-server-tls, - haskus-utils-compat, - lucid, - text, - }: - mkDerivation { - pname = "haskus-web"; - version = "1.1"; - sha256 = "15d2718d7iqfxkdl6ggdyl81lp98s3djsgd37wmyx1xx9v03lg3g"; - libraryHaskellDepends = [ - base - bytestring - clay - happstack-server - happstack-server-tls - haskus-utils-compat - lucid - text - ]; - description = "Haskus web"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "haskyapi" = callPackage ( { mkDerivation, @@ -310442,158 +179484,6 @@ self: { } ) { }; - "haslo" = callPackage ( - { - mkDerivation, - base, - mtl, - old-time, - QuickCheck, - time, - wtk, - }: - mkDerivation { - pname = "haslo"; - version = "0.1.3"; - sha256 = "0iizdi98w4k9kdizg9xwm2aca6mnn30frp15f8kyak3i194sk3kl"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - mtl - old-time - wtk - ]; - executableHaskellDepends = [ - mtl - old-time - QuickCheck - time - wtk - ]; - description = "Loan calculator engine"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "hasloGUI" = callPackage ( - { - mkDerivation, - base, - convertible, - gtk, - haslo, - lenses, - mtl, - old-time, - QuickCheck, - time, - wtk, - wtk-gtk, - }: - mkDerivation { - pname = "hasloGUI"; - version = "0.1"; - sha256 = "03avp9yn7ag1dc1wzk07sxkj3krqsrg3n44qcynxw9n1fmvk54lx"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - convertible - gtk - haslo - lenses - mtl - old-time - QuickCheck - time - wtk - wtk-gtk - ]; - description = "Loan calculator Gtk GUI. Based on haslo (Haskell Loan) library."; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "HasloGUI"; - } - ) { }; - - "hasmin" = callPackage ( - { - mkDerivation, - attoparsec, - base, - bytestring, - containers, - criterion, - directory, - doctest, - doctest-discover, - gitrev, - hopfli, - hspec, - hspec-attoparsec, - matrix, - mtl, - numbers, - optparse-applicative, - parsers, - QuickCheck, - quickcheck-instances, - text, - }: - mkDerivation { - pname = "hasmin"; - version = "1.0.3"; - sha256 = "0p9a1q8brymkd4y74gn4iiwihikn55wx2h9zz3mpd6ab53rsz43k"; - revision = "1"; - editedCabalFile = "19xr6zk72q5sqgaxfj6xwvd98jv26d54s80gjkkpwh1i2nnsgw4v"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - attoparsec - base - containers - matrix - mtl - numbers - parsers - text - ]; - executableHaskellDepends = [ - base - bytestring - gitrev - hopfli - optparse-applicative - text - ]; - testHaskellDepends = [ - attoparsec - base - doctest - doctest-discover - hspec - hspec-attoparsec - mtl - QuickCheck - quickcheck-instances - text - ]; - benchmarkHaskellDepends = [ - base - criterion - directory - text - ]; - description = "CSS Minifier"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "hasmin"; - broken = true; - } - ) { }; - "hasmtlib" = callPackage ( { mkDerivation, @@ -310706,33 +179596,6 @@ self: { } ) { }; - "hasparql-client" = callPackage ( - { - mkDerivation, - base, - HTTP, - monads-fd, - network, - xml, - }: - mkDerivation { - pname = "hasparql-client"; - version = "0.1"; - sha256 = "1ln0kdm40y6l8sncrjl0mj9bpd30ffg3msaxyd6fq520ypyws9pm"; - libraryHaskellDepends = [ - base - HTTP - monads-fd - network - xml - ]; - description = "This package enables to write SPARQL queries to remote endpoints"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "haspell" = callPackage ( { mkDerivation, @@ -311006,97 +179869,6 @@ self: { } ) { }; - "hasql-backend" = callPackage ( - { - mkDerivation, - base, - base-prelude, - bytestring, - either, - free, - list-t, - text, - transformers, - vector, - }: - mkDerivation { - pname = "hasql-backend"; - version = "0.4.3"; - sha256 = "121a6v47iwz7rz7ajr7l9pnzyqd00lc228z4f5inn0kxqi17pyad"; - libraryHaskellDepends = [ - base - base-prelude - bytestring - either - free - list-t - text - transformers - vector - ]; - description = "API for backends of \"hasql\""; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "hasql-class" = callPackage ( - { - mkDerivation, - base, - bytestring, - contravariant, - data-default-class, - generics-eot, - hasql, - hspec, - process, - QuickCheck, - quickcheck-instances, - string-qq, - text, - time, - vector, - }: - mkDerivation { - pname = "hasql-class"; - version = "0.1.0.0"; - sha256 = "00va6klddkkr60zl9i9mx7lmryn71qbc4qfhw4q8fcwbw69bzc0f"; - libraryHaskellDepends = [ - base - bytestring - contravariant - data-default-class - generics-eot - hasql - text - time - vector - ]; - testHaskellDepends = [ - base - bytestring - contravariant - data-default-class - generics-eot - hasql - hspec - process - QuickCheck - quickcheck-instances - string-qq - text - time - vector - ]; - description = "Encodable and Decodable classes for hasql"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "hasql-cursor-query" = callPackage ( { mkDerivation, @@ -311332,51 +180104,6 @@ self: { } ) { }; - "hasql-generic" = callPackage ( - { - mkDerivation, - aeson, - base, - binary-parser, - bytestring, - containers, - contravariant, - generics-sop, - hasql, - postgresql-binary, - scientific, - text, - time, - uuid, - vector, - }: - mkDerivation { - pname = "hasql-generic"; - version = "0.1.0.5"; - sha256 = "0prf7ikjccp4bvlxxv78xg34mz0m3gn2y3c2z1lq14jzarya4pcf"; - libraryHaskellDepends = [ - aeson - base - binary-parser - bytestring - containers - contravariant - generics-sop - hasql - postgresql-binary - scientific - text - time - uuid - vector - ]; - description = "Generic encoder and decoder deriving for Hasql"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "hasql-implicits_0_1_1_3" = callPackage ( { mkDerivation, @@ -311866,249 +180593,6 @@ self: { } ) { }; - "hasql-postgres" = callPackage ( - { - mkDerivation, - aeson, - attoparsec, - base, - base-prelude, - bytestring, - criterion-plus, - deepseq, - directory, - doctest, - either, - filepath, - free, - hashable, - hashtables, - hasql, - hasql-backend, - HDBC, - HDBC-postgresql, - hspec, - list-t, - loch-th, - mmorph, - monad-control, - mtl-prelude, - old-locale, - placeholders, - postgresql-binary, - postgresql-libpq, - postgresql-simple, - QuickCheck, - quickcheck-instances, - scientific, - template-haskell, - text, - time, - transformers, - uuid, - vector, - }: - mkDerivation { - pname = "hasql-postgres"; - version = "0.10.6"; - sha256 = "0j7c0jy693wki33697hvljkg50y3gwv87zhl1r4pmq3ad7k8v306"; - libraryHaskellDepends = [ - aeson - attoparsec - base-prelude - bytestring - either - free - hashable - hashtables - hasql-backend - list-t - loch-th - mmorph - placeholders - postgresql-binary - postgresql-libpq - scientific - template-haskell - text - time - transformers - uuid - vector - ]; - testHaskellDepends = [ - aeson - base - base-prelude - bytestring - directory - doctest - either - filepath - hashable - hasql - hasql-backend - hspec - list-t - mtl-prelude - old-locale - postgresql-binary - QuickCheck - quickcheck-instances - scientific - text - time - vector - ]; - benchmarkHaskellDepends = [ - base-prelude - criterion-plus - deepseq - either - hasql - hasql-backend - HDBC - HDBC-postgresql - list-t - monad-control - mtl-prelude - postgresql-simple - QuickCheck - quickcheck-instances - scientific - text - time - vector - ]; - description = "A \"PostgreSQL\" backend for the \"hasql\" library"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "hasql-postgres-options" = callPackage ( - { - mkDerivation, - base-prelude, - hasql-postgres, - optparse-applicative, - }: - mkDerivation { - pname = "hasql-postgres-options"; - version = "0.1.6"; - sha256 = "1cqkwxjfm43gr2i5dwsakr5xzsb5v7n54wnx398xyj506bk5d587"; - libraryHaskellDepends = [ - base-prelude - hasql-postgres - optparse-applicative - ]; - description = "An \"optparse-applicative\" parser for \"hasql-postgres\""; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "hasql-queue" = callPackage ( - { - mkDerivation, - aeson, - async, - base, - base64-bytestring, - bytestring, - cryptohash-sha1, - exceptions, - hasql, - here, - hspec, - hspec-core, - hspec-expectations-lifted, - monad-control, - postgresql-libpq, - postgresql-libpq-notify, - random, - resource-pool, - split, - stm, - text, - time, - tmp-postgres, - transformers, - }: - mkDerivation { - pname = "hasql-queue"; - version = "1.2.0.2"; - sha256 = "0d8ylf92ydhg12v2rjxxnijzjkkpmws0r1nnxm63w5arwz947n5m"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson - base - bytestring - exceptions - hasql - here - monad-control - postgresql-libpq - postgresql-libpq-notify - random - stm - text - time - transformers - ]; - executableHaskellDepends = [ - aeson - async - base - base64-bytestring - bytestring - cryptohash-sha1 - exceptions - hasql - here - monad-control - postgresql-libpq - postgresql-libpq-notify - random - resource-pool - stm - text - time - tmp-postgres - transformers - ]; - testHaskellDepends = [ - aeson - async - base - base64-bytestring - bytestring - cryptohash-sha1 - exceptions - hasql - here - hspec - hspec-core - hspec-expectations-lifted - monad-control - postgresql-libpq - postgresql-libpq-notify - random - resource-pool - split - stm - text - time - tmp-postgres - transformers - ]; - description = "A PostgreSQL backed queue"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "hasql-resource-pool" = callPackage ( { mkDerivation, @@ -312144,41 +180628,6 @@ self: { } ) { }; - "hasql-simple" = callPackage ( - { - mkDerivation, - aeson, - base, - bytestring, - contravariant, - hasql, - text, - time, - unordered-containers, - vector, - }: - mkDerivation { - pname = "hasql-simple"; - version = "0.1.0.0"; - sha256 = "15cw3mb5gzzys3n58xs74jx9v9yn55xpdp3wn8dcchpllp68xzw3"; - libraryHaskellDepends = [ - aeson - base - bytestring - contravariant - hasql - text - time - unordered-containers - vector - ]; - description = "A somewhat opinionated \"simpler\" API to hasql"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "hasql-streams-conduit" = callPackage ( { mkDerivation, @@ -312609,41 +181058,6 @@ self: { } ) { }; - "hasqly-mysql" = callPackage ( - { - mkDerivation, - base, - binary, - bytestring, - dlist, - mtl, - mysql-haskell, - scientific, - text, - time, - }: - mkDerivation { - pname = "hasqly-mysql"; - version = "0.0.1"; - sha256 = "1la1lnwcv20jig72hgpgzy8a2ils95y0clhkf5ajvj1whh099g7p"; - libraryHaskellDepends = [ - base - binary - bytestring - dlist - mtl - mysql-haskell - scientific - text - time - ]; - description = "composable SQL generation"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "hastache" = callPackage ( { mkDerivation, @@ -312713,118 +181127,6 @@ self: { } ) { }; - "hastache-aeson" = callPackage ( - { - mkDerivation, - aeson, - base, - bytestring, - containers, - hastache, - scientific, - text, - unordered-containers, - vector, - }: - mkDerivation { - pname = "hastache-aeson"; - version = "0.1.1.0"; - sha256 = "0wbk7ipjrabm1c4ngdphg3m131fjzsg36zaysz5zlhygm41626in"; - libraryHaskellDepends = [ - aeson - base - bytestring - containers - hastache - scientific - text - unordered-containers - vector - ]; - description = "render hastache templates using aeson values"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "haste" = callPackage ( - { - mkDerivation, - base, - curl, - filepath, - mtl, - }: - mkDerivation { - pname = "haste"; - version = "0.1.1"; - sha256 = "1vz36i74l1nnm34nn1rj3v8kprqa2piz3j5f58cccg2gvxl0abnj"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - curl - filepath - mtl - ]; - description = "A universal pastebin tool, written in Haskell"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "haste"; - broken = true; - } - ) { }; - - "haste-app" = callPackage ( - { - mkDerivation, - base, - bytestring, - containers, - data-default, - exceptions, - filepath, - haste-lib, - haste-prim, - http-types, - mtl, - text, - transformers, - utf8-string, - wai, - wai-websockets, - warp, - websockets, - }: - mkDerivation { - pname = "haste-app"; - version = "0.1.0.0"; - sha256 = "1x8pkprprm86f429ndhlkxpziaaagyzimy8kmxmad0c0ynacn04g"; - libraryHaskellDepends = [ - base - bytestring - containers - data-default - exceptions - filepath - haste-lib - haste-prim - http-types - mtl - text - transformers - utf8-string - wai - wai-websockets - warp - websockets - ]; - description = "Framework for type-safe, distributed web applications"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "haste-compiler" = callPackage ( { mkDerivation, @@ -312866,186 +181168,47 @@ self: { sha256 = "0n169k2kcpkcms701hg0h6kqjdq9jxpkm9zh72nj8530xmhckirs"; configureFlags = [ "-fportable" ]; isLibrary = false; - isExecutable = true; - enableSeparateDataOutput = true; - executableHaskellDepends = [ - array - base - bin-package-db - binary - blaze-builder - bytestring - bzlib - Cabal - containers - cryptonite - directory - either - filepath - ghc - ghc-paths - ghc-prim - ghc-simple - HTTP - mtl - network - network-uri - process - random - shellmate - shellmate-extras - system-fileio - tar - terminfo - transformers - unix - utf8-string - ]; - description = "Haskell To ECMAScript compiler"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { bin-package-db = null; }; - - "haste-gapi" = callPackage ( - { - mkDerivation, - base, - data-default, - haste-compiler, - transformers, - }: - mkDerivation { - pname = "haste-gapi"; - version = "0.1.0.1"; - sha256 = "07vz1lwk954qyvpnkyzifdkd4nkx68h04pw2sn535xylfjw6fzq0"; - libraryHaskellDepends = [ - base - data-default - haste-compiler - transformers - ]; - description = "Google API bindings for the Haste compiler"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "haste-lib" = callPackage ( - { - mkDerivation, - array, - base, - binary, - bytestring, - containers, - data-binary-ieee754, - ghc-prim, - haste-prim, - integer-gmp, - monads-tf, - random, - time, - transformers, - utf8-string, - }: - mkDerivation { - pname = "haste-lib"; - version = "0.6.0.0"; - sha256 = "0bybww5g0dr3x3hr9ibpx6r71nvykmcwzafbmcy6jyhxzqazi9p9"; - libraryHaskellDepends = [ - array - base - binary - bytestring - containers - data-binary-ieee754 - ghc-prim - haste-prim - integer-gmp - monads-tf - random - time - transformers - utf8-string - ]; - description = "Base libraries for haste-compiler"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "haste-markup" = callPackage ( - { - mkDerivation, - base, - containers, - directory, - filepath, - haste-lib, - }: - mkDerivation { - pname = "haste-markup"; - version = "0.0.1.0"; - sha256 = "02rqm4qjaww2c622bqd1bb2mjb73w2s7d7pwvz94x03npxkf4hn1"; - libraryHaskellDepends = [ - base - containers - directory - filepath - haste-lib - ]; - description = "A port of blaze-markup and blaze-html to Haste"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "haste-perch" = callPackage ( - { - mkDerivation, - base, - haste-compiler, - transformers, - }: - mkDerivation { - pname = "haste-perch"; - version = "0.1.0.9"; - sha256 = "1a92ahmphsr0dgj1jlp2cxpq5yy59b3avw3gzmv0jzrds41p3ic8"; - libraryHaskellDepends = [ - base - haste-compiler - transformers - ]; - description = "Create, navigate and modify the DOM tree with composable syntax, with the haste compiler"; - license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "haste-prim" = callPackage ( - { - mkDerivation, - base, - ghc-prim, - integer-gmp, - }: - mkDerivation { - pname = "haste-prim"; - version = "0.6.0.0"; - sha256 = "1gmvvqy0xy396r3jnfmdhh70j7k73qs38cw9znwgl8jjywpzrmw5"; - libraryHaskellDepends = [ + isExecutable = true; + enableSeparateDataOutput = true; + executableHaskellDepends = [ + array base + bin-package-db + binary + blaze-builder + bytestring + bzlib + Cabal + containers + cryptonite + directory + either + filepath + ghc + ghc-paths ghc-prim - integer-gmp + ghc-simple + HTTP + mtl + network + network-uri + process + random + shellmate + shellmate-extras + system-fileio + tar + terminfo + transformers + unix + utf8-string ]; - description = "Low level primitives for the Haste compiler"; + description = "Haskell To ECMAScript compiler"; license = lib.licenses.bsd3; hydraPlatforms = lib.platforms.none; broken = true; } - ) { }; + ) { bin-package-db = null; }; "hastily" = callPackage ( { @@ -313143,151 +181306,6 @@ self: { } ) { }; - "hat" = callPackage ( - { - mkDerivation, - base, - bytestring, - containers, - directory, - filepath, - haskeline, - haskell-src-exts, - old-locale, - old-time, - polyparse, - process, - random, - }: - mkDerivation { - pname = "hat"; - version = "2.9.4"; - sha256 = "13ldpj92qzp243zwnx0q044isdq2nmbh93wardqzr37jybs7m4xs"; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base - directory - old-locale - old-time - process - random - ]; - executableHaskellDepends = [ - base - bytestring - containers - directory - filepath - haskeline - haskell-src-exts - polyparse - process - ]; - description = "The Haskell tracer, generating and viewing Haskell execution traces"; - license = "unknown"; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "hatex-guide" = callPackage ( - { - mkDerivation, - base, - blaze-html, - directory, - filepath, - HaTeX, - parsec, - text, - time, - transformers, - }: - mkDerivation { - pname = "hatex-guide"; - version = "1.3.1.6"; - sha256 = "0vd5bmgs0nfk5y0d0a8975j3b15q3d6zgmnv3j4q9rnmjigwzmvs"; - libraryHaskellDepends = [ - base - blaze-html - directory - filepath - HaTeX - parsec - text - time - transformers - ]; - description = "HaTeX User's Guide"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "hatexmpp3" = callPackage ( - { - mkDerivation, - base, - bytestring, - containers, - data-default, - datetime, - gtk3, - hslogger, - monad-loops, - mtl, - Network-NineP, - pontarius-xmpp, - pontarius-xmpp-extras, - stm, - string-class, - text, - time, - tls, - transformers, - vector, - xml-conduit, - xml-types, - }: - mkDerivation { - pname = "hatexmpp3"; - version = "0"; - sha256 = "0j5428x0yq07x27lgd48fcyc8zix9a0vv8725ch8gr4v9znhwrwc"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - bytestring - containers - data-default - datetime - gtk3 - hslogger - monad-loops - mtl - Network-NineP - pontarius-xmpp - pontarius-xmpp-extras - stm - string-class - text - time - tls - transformers - vector - xml-conduit - xml-types - ]; - description = "XMPP client with 9P and (optionally) GTK interfaces"; - license = "unknown"; - hydraPlatforms = lib.platforms.none; - mainProgram = "hatexmpp"; - } - ) { }; - "hath" = callPackage ( { mkDerivation, base }: mkDerivation { @@ -313303,132 +181321,6 @@ self: { } ) { }; - "hats" = callPackage ( - { - mkDerivation, - aeson, - async, - attoparsec, - base, - bytestring, - conduit, - conduit-extra, - connection, - criterion, - deepseq, - HUnit, - network, - network-uri, - process, - QuickCheck, - random, - stm, - test-framework, - test-framework-hunit, - test-framework-quickcheck2, - text, - transformers, - unordered-containers, - }: - mkDerivation { - pname = "hats"; - version = "0.1.0.1"; - sha256 = "0c5qds2sz0kb576vfg0q8fbxpb1ljigc2qdwhvr2qlkrgv320z38"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson - async - attoparsec - base - bytestring - conduit - conduit-extra - connection - deepseq - network - network-uri - random - stm - text - transformers - unordered-containers - ]; - executableHaskellDepends = [ base ]; - testHaskellDepends = [ - aeson - attoparsec - base - bytestring - HUnit - process - QuickCheck - test-framework - test-framework-hunit - test-framework-quickcheck2 - text - ]; - benchmarkHaskellDepends = [ - async - attoparsec - base - bytestring - criterion - random - stm - ]; - description = "Haskell client for the NATS messaging system"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - mainProgram = "hats-examples"; - broken = true; - } - ) { }; - - "hatt" = callPackage ( - { - mkDerivation, - ansi-wl-pprint, - base, - cmdargs, - containers, - haskeline, - parsec, - QuickCheck, - test-framework, - test-framework-quickcheck2, - }: - mkDerivation { - pname = "hatt"; - version = "1.5.0.3"; - sha256 = "0dgjia07v489wlk23hg84d1043rh71hl9yg7vdcih2jcj8pn00z4"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - ansi-wl-pprint - base - containers - parsec - QuickCheck - ]; - executableHaskellDepends = [ - base - cmdargs - haskeline - ]; - testHaskellDepends = [ - base - test-framework - test-framework-quickcheck2 - ]; - description = "A truth table generator for classical propositional logic"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "hatt"; - broken = true; - } - ) { }; - "haveibeenpwned" = callPackage ( { mkDerivation, @@ -313476,242 +181368,6 @@ self: { } ) { }; - "haven" = callPackage ( - { - mkDerivation, - base, - bytestring, - containers, - directory, - filepath, - http-conduit, - http-types, - mtl, - process, - SHA, - temporary, - transformers, - xml, - }: - mkDerivation { - pname = "haven"; - version = "0.2.0.2"; - sha256 = "0n92h5gjy6ax0c5f2k80j21ymf741vzhsm1kdav86hphhxdlw8ng"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - bytestring - containers - directory - filepath - http-conduit - http-types - mtl - process - SHA - temporary - transformers - xml - ]; - description = "Recursively retrieve maven dependencies"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "haven"; - broken = true; - } - ) { }; - - "haverer" = callPackage ( - { - mkDerivation, - base, - basic-prelude, - containers, - errors, - lens, - MonadRandom, - mtl, - random-shuffle, - tasty, - tasty-hunit, - tasty-quickcheck, - text, - }: - mkDerivation { - pname = "haverer"; - version = "0.3.0.0"; - sha256 = "1p4llwjab7h2zg10585jp5a5bfrzmmkziq7in164wk15rb2z5y0p"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - basic-prelude - containers - errors - lens - MonadRandom - mtl - random-shuffle - tasty - tasty-quickcheck - text - ]; - executableHaskellDepends = [ - base - basic-prelude - text - ]; - testHaskellDepends = [ - base - basic-prelude - containers - errors - mtl - random-shuffle - tasty - tasty-hunit - tasty-quickcheck - text - ]; - description = "Implementation of the rules of Love Letter"; - license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; - mainProgram = "haverer"; - broken = true; - } - ) { }; - - "hawitter" = callPackage ( - { - mkDerivation, - base, - base64-string, - bytestring, - clock, - containers, - gconf, - glade, - gtk, - hoauth, - HTTP, - json, - mtl, - network, - old-locale, - parsec, - regex-base, - regex-tdfa, - SHA, - time, - utf8-string, - }: - mkDerivation { - pname = "hawitter"; - version = "0.4"; - sha256 = "10qg24qkh17l9zqn47g64cg6hp48x7bjbcwigj35zpqcq71s9dxc"; - isLibrary = false; - isExecutable = true; - enableSeparateDataOutput = true; - executableHaskellDepends = [ - base - base64-string - bytestring - clock - containers - gconf - glade - gtk - hoauth - HTTP - json - mtl - network - old-locale - parsec - regex-base - regex-tdfa - SHA - time - utf8-string - ]; - description = "A twitter client for GTK+. Beta version."; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "hawitter"; - } - ) { }; - - "hax" = callPackage ( - { - mkDerivation, - aeson, - array, - base, - blaze-html, - blaze-markup, - boxes, - bytestring, - containers, - Decimal, - directory, - filepath, - mtl, - split, - template-haskell, - text, - transformers, - }: - mkDerivation { - pname = "hax"; - version = "0.0.2"; - sha256 = "0hgjv5phip9d4zf8a22x4jc6pa87ly60spiq6cimf6c5k8khxlqf"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson - array - base - blaze-html - blaze-markup - boxes - bytestring - containers - Decimal - directory - filepath - mtl - split - template-haskell - text - transformers - ]; - executableHaskellDepends = [ - aeson - array - base - blaze-html - blaze-markup - boxes - bytestring - containers - Decimal - directory - filepath - mtl - split - template-haskell - text - transformers - ]; - description = "Haskell cash-flow and tax simulation"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - mainProgram = "hax"; - broken = true; - } - ) { }; - "haxl" = callPackage ( { mkDerivation, @@ -313787,165 +181443,6 @@ self: { } ) { }; - "haxl-amazonka" = callPackage ( - { - mkDerivation, - amazonka, - amazonka-core, - async, - base, - conduit, - hashable, - haxl, - transformers, - }: - mkDerivation { - pname = "haxl-amazonka"; - version = "0.1.1"; - sha256 = "1ikhl9zkiv512gv8j15bz7ac2a9jac0d6h7698g4dvj6ppk3xprw"; - libraryHaskellDepends = [ - amazonka - amazonka-core - async - base - conduit - hashable - haxl - transformers - ]; - description = "Haxl data source for accessing AWS services through amazonka"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "haxl-facebook" = callPackage ( - { - mkDerivation, - aeson, - async, - base, - conduit, - data-default, - fb, - hashable, - haxl, - http-client-tls, - http-conduit, - resourcet, - text, - time, - transformers, - unordered-containers, - vector, - }: - mkDerivation { - pname = "haxl-facebook"; - version = "0.1.0.0"; - sha256 = "0m8dycsh51sfrxhmajsaydgima4r0nc60yklv9w26302i176j2aq"; - libraryHaskellDepends = [ - aeson - async - base - conduit - data-default - fb - hashable - haxl - http-client-tls - http-conduit - resourcet - text - time - transformers - ]; - testHaskellDepends = [ - aeson - async - base - conduit - data-default - fb - hashable - haxl - http-client-tls - http-conduit - resourcet - text - time - transformers - unordered-containers - vector - ]; - description = "An example Haxl data source for accessing the Facebook Graph API"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "haxparse" = callPackage ( - { - mkDerivation, - base, - binary, - bytestring, - containers, - data-binary-ieee754, - data-default, - mtl, - optparse-applicative, - parsec, - split, - template-haskell, - transformers, - utf8-string, - zlib, - }: - mkDerivation { - pname = "haxparse"; - version = "0.3.1.0"; - sha256 = "12ksmhmk1yns8znh9srqm53q4by8dibdvkd9qhbihiwdyz137y6j"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - binary - bytestring - containers - data-binary-ieee754 - data-default - mtl - parsec - split - template-haskell - transformers - utf8-string - zlib - ]; - executableHaskellDepends = [ - base - binary - bytestring - containers - data-binary-ieee754 - data-default - mtl - optparse-applicative - parsec - split - template-haskell - transformers - utf8-string - zlib - ]; - description = "Readable HaxBall replays"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - mainProgram = "haxparse"; - broken = true; - } - ) { }; - "haxr" = callPackage ( { mkDerivation, @@ -314005,147 +181502,6 @@ self: { } ) { }; - "haxr-th" = callPackage ( - { - mkDerivation, - base, - haxr, - template-haskell, - }: - mkDerivation { - pname = "haxr-th"; - version = "3000.5"; - sha256 = "1h1g4r7c5k3rja49ip4m21f2sscn06xjxharnlyazvvs6mzfysif"; - libraryHaskellDepends = [ - base - haxr - template-haskell - ]; - description = "Automatic deriving of XML-RPC structs for Haskell records"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "haxy" = callPackage ( - { - mkDerivation, - base, - bytestring, - data-default-class, - hostname, - HTTP, - http-server, - mtl, - url, - }: - mkDerivation { - pname = "haxy"; - version = "1.0.1"; - sha256 = "0k4grll2kavg6fcpvd11pv6zafdpxl8iphpic3b94z1s8g9qzdbd"; - libraryHaskellDepends = [ - base - bytestring - data-default-class - hostname - HTTP - http-server - mtl - url - ]; - description = "A simple HTTP proxy server library"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "hayland" = - callPackage - ( - { - mkDerivation, - base, - data-flags, - libGL, - process, - template-haskell, - time, - wayland, - xml, - }: - mkDerivation { - pname = "hayland"; - version = "0.1.0.1"; - sha256 = "0dpisbqfsay8lwpfihw5fmpzi2ajc8qshsawbr4r6x8indy4kdy0"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - data-flags - process - template-haskell - time - xml - ]; - librarySystemDepends = [ - libGL - wayland - ]; - executableHaskellDepends = [ base ]; - testHaskellDepends = [ - base - process - xml - ]; - description = "Haskell bindings for the C Wayland library"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - mainProgram = "wayland-list-globals"; - broken = true; - } - ) - { - inherit (pkgs) libGL; - inherit (pkgs) wayland; - }; - - "hayoo-cli" = callPackage ( - { - mkDerivation, - aeson, - base, - bytestring, - http-conduit, - http-types, - optparse-applicative, - pandoc, - url, - }: - mkDerivation { - pname = "hayoo-cli"; - version = "0.1.0.4"; - sha256 = "05wfxpkpxma3ynla3wdgzq0raxqwg21fsa01qqpsh1ib7v462ls0"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - aeson - base - bytestring - http-conduit - http-types - optparse-applicative - pandoc - url - ]; - description = "Hayoo CLI"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - mainProgram = "hayoo"; - broken = true; - } - ) { }; - "hb3sum" = callPackage ( { mkDerivation, @@ -314173,161 +181529,6 @@ self: { } ) { }; - "hback" = callPackage ( - { - mkDerivation, - base, - cairo, - filepath, - glade, - gtk, - haskell98, - process, - svgcairo, - time, - unix, - }: - mkDerivation { - pname = "hback"; - version = "0.0.3"; - sha256 = "01wx4dls0ccl0q09hvydjhj0lfpqfd32z76rjgc89p5889czkm5j"; - isLibrary = false; - isExecutable = true; - enableSeparateDataOutput = true; - executableHaskellDepends = [ - base - cairo - filepath - glade - gtk - haskell98 - process - svgcairo - time - unix - ]; - description = "N-back memory game"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "hback"; - } - ) { }; - - "hbayes" = callPackage ( - { - mkDerivation, - array, - base, - binary, - boxes, - containers, - directory, - filepath, - gamma, - HUnit, - mtl, - mwc-random, - parsec, - pretty, - QuickCheck, - random, - split, - statistics, - test-framework, - test-framework-hunit, - test-framework-quickcheck2, - vector, - }: - mkDerivation { - pname = "hbayes"; - version = "0.5.2"; - sha256 = "1x8nwh3ba9qvrbcxd2fdb3lv9b94w6lkvdg4vrqm7vbns9yyk162"; - revision = "2"; - editedCabalFile = "19nclaq6y157gn8k4sl79rm30ws5gcykiq4zjmcnm7d5c1rm4dhn"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - array - base - binary - boxes - containers - directory - filepath - gamma - HUnit - mtl - mwc-random - parsec - pretty - QuickCheck - random - split - statistics - test-framework - test-framework-hunit - test-framework-quickcheck2 - vector - ]; - testHaskellDepends = [ - array - base - binary - boxes - containers - directory - filepath - gamma - HUnit - mtl - mwc-random - parsec - pretty - QuickCheck - random - split - statistics - test-framework - test-framework-hunit - test-framework-quickcheck2 - vector - ]; - description = "Bayesian Networks"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "hbb" = callPackage ( - { - mkDerivation, - base, - directory, - ghc, - ghc-mod, - ghc-paths, - libhbb, - }: - mkDerivation { - pname = "hbb"; - version = "0.4.0.2"; - sha256 = "1whnsbv04b9hr3dc6a3xzv270q7ygk8x4i20mb092fr98klbk9wn"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - directory - ghc - ghc-mod - ghc-paths - libhbb - ]; - description = "Haskell Busy Bee, a backend for text editors"; - license = lib.licenses.lgpl21Only; - hydraPlatforms = lib.platforms.none; - mainProgram = "hbb"; - } - ) { }; - "hbcd" = callPackage ( { mkDerivation, @@ -314353,175 +181554,6 @@ self: { } ) { }; - "hbeanstalk" = callPackage ( - { - mkDerivation, - attoparsec, - base, - blaze-builder, - bytestring, - containers, - network, - }: - mkDerivation { - pname = "hbeanstalk"; - version = "0.2.4"; - sha256 = "13xcia1nnayhr22zi1wzgn8qs403ib4n2zikpxd3xnzy33yrgbzy"; - libraryHaskellDepends = [ - attoparsec - base - blaze-builder - bytestring - containers - network - ]; - description = "Client for the beanstalkd workqueue service"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "hbeat" = callPackage ( - { - mkDerivation, - base, - containers, - mtl, - old-time, - OpenGL, - SDL, - SDL-mixer, - SDL_mixer, - }: - mkDerivation { - pname = "hbeat"; - version = "0.1.2"; - sha256 = "1lgsjwwpimvgczzgg2lvnf08hhcsnk5is52rm2lbmilky8ayhxjp"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - containers - mtl - old-time - OpenGL - SDL - SDL-mixer - ]; - executableSystemDepends = [ SDL_mixer ]; - description = "A simple step sequencer GUI"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "hbeat"; - broken = true; - } - ) { inherit (pkgs) SDL_mixer; }; - - "hbf" = callPackage ( - { - mkDerivation, - base, - binary, - bytestring, - criterion, - deepseq, - doctest, - filepath, - hedgehog, - hedgehog-checkers, - HUnit, - optparse-applicative, - parsec, - primitive, - smallcheck, - tasty, - tasty-discover, - tasty-hedgehog, - tasty-hunit, - tasty-smallcheck, - temporary, - text, - transformers, - vector, - }: - mkDerivation { - pname = "hbf"; - version = "0.2.0.0"; - sha256 = "1w0q30vxfw8pz9sjnkiw40sq5m9xdigvnw9ppixzj1kd4d9b29z9"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - binary - bytestring - deepseq - filepath - optparse-applicative - parsec - primitive - text - transformers - vector - ]; - executableHaskellDepends = [ - base - binary - bytestring - deepseq - filepath - optparse-applicative - parsec - primitive - text - transformers - vector - ]; - testHaskellDepends = [ - base - binary - bytestring - deepseq - doctest - filepath - hedgehog - hedgehog-checkers - HUnit - optparse-applicative - parsec - primitive - smallcheck - tasty - tasty-discover - tasty-hedgehog - tasty-hunit - tasty-smallcheck - temporary - text - transformers - vector - ]; - testToolDepends = [ tasty-discover ]; - benchmarkHaskellDepends = [ - base - binary - bytestring - criterion - deepseq - filepath - optparse-applicative - parsec - primitive - text - transformers - vector - ]; - description = "An optimizing Brainfuck compiler and evaluator"; - license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "hblas" = callPackage ( @@ -314568,53 +181600,6 @@ self: { inherit (pkgs) liblapack; }; - "hblock" = callPackage ( - { - mkDerivation, - aeson, - base, - blaze-markup, - bytestring, - cereal, - containers, - deepseq, - hashable, - path-pieces, - safecopy, - text, - unordered-containers, - uuid, - vector, - }: - mkDerivation { - pname = "hblock"; - version = "0.1.0.2"; - sha256 = "0g8hj42ir3jcpmwf3pin2k4zdcf5p1f1sx1f8rj380qbyxgdrw3v"; - revision = "1"; - editedCabalFile = "19pc6qh33xkldxvg459zrzx91y4pzx9hkqq7wmgf3brnanncx0h1"; - libraryHaskellDepends = [ - aeson - base - blaze-markup - bytestring - cereal - containers - deepseq - hashable - path-pieces - safecopy - text - unordered-containers - uuid - vector - ]; - description = "A mutable vector that provides indexation on the datatype fields it stores"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "hblosc" = callPackage ( { mkDerivation, @@ -314642,309 +181627,6 @@ self: { } ) { }; - "hbro" = callPackage ( - { - mkDerivation, - base, - bytestring, - chunked-data, - cond, - containers, - data-default-class, - directory, - dyre, - errors, - fast-logger, - filepath, - glib, - gtk3, - lifted-async, - lifted-base, - microlens-platform, - monad-control, - monad-logger, - monadIO, - mono-traversable, - mtl, - network-uri, - optparse-applicative, - pango, - parsec, - process, - random, - resourcet, - safe, - safe-exceptions, - semigroups, - stm-chans, - template-haskell, - text, - time, - transformers, - transformers-base, - unix, - uuid, - webkitgtk3, - zeromq4-haskell, - }: - mkDerivation { - pname = "hbro"; - version = "1.7.0.0"; - sha256 = "0vx3097g9q0bxyv1bwa4mc6aw152zkj3mawk5nrn5mh0zr60c3zh"; - revision = "1"; - editedCabalFile = "0slsd0f0qvlh4l6777b8iaskd4ij04193mcjwnq8p7szslxx40q1"; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base - bytestring - chunked-data - cond - containers - data-default-class - directory - dyre - errors - fast-logger - filepath - glib - gtk3 - lifted-async - lifted-base - microlens-platform - monad-control - monad-logger - monadIO - mono-traversable - mtl - network-uri - optparse-applicative - pango - parsec - process - random - resourcet - safe - safe-exceptions - semigroups - stm-chans - template-haskell - text - time - transformers - transformers-base - unix - uuid - webkitgtk3 - zeromq4-haskell - ]; - executableHaskellDepends = [ base ]; - description = "Minimal extensible web-browser"; - license = "unknown"; - hydraPlatforms = lib.platforms.none; - mainProgram = "hbro"; - } - ) { }; - - "hbro-contrib" = callPackage ( - { - mkDerivation, - aeson, - aeson-pretty, - base, - bytestring, - chunked-data, - containers, - directory, - filepath, - glib, - gtk3, - hbro, - microlens, - monad-control, - mono-traversable, - mtl, - network-uri, - pango, - parsec, - process, - resourcet, - safe, - safe-exceptions, - text, - time, - transformers-base, - unix, - webkitgtk3, - }: - mkDerivation { - pname = "hbro-contrib"; - version = "1.7.0.0"; - sha256 = "024mclr0hrvxdbsw9d051v9dfls2n3amyxlqfzakf11vrkgqqfam"; - revision = "1"; - editedCabalFile = "1vfkwzd5rsv0065bldkd90fprp1qspfqg44ip5i4ihnbj4vawv9b"; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - aeson - aeson-pretty - base - bytestring - chunked-data - containers - directory - filepath - glib - gtk3 - hbro - microlens - monad-control - mono-traversable - mtl - network-uri - pango - parsec - process - resourcet - safe - safe-exceptions - text - time - transformers-base - unix - webkitgtk3 - ]; - executableHaskellDepends = [ - aeson - aeson-pretty - base - bytestring - chunked-data - containers - directory - filepath - glib - gtk3 - hbro - microlens - monad-control - mono-traversable - mtl - network-uri - pango - parsec - process - resourcet - safe - safe-exceptions - text - time - transformers-base - unix - webkitgtk3 - ]; - description = "Third-party extensions to hbro"; - license = "unknown"; - hydraPlatforms = lib.platforms.none; - mainProgram = "example"; - } - ) { }; - - "hburg" = callPackage ( - { - mkDerivation, - alex, - array, - base, - containers, - filepath, - happy, - mtl, - pretty, - utf8-string, - }: - mkDerivation { - pname = "hburg"; - version = "1.1.3"; - sha256 = "1fjissjcfn5h4df6zckxrkw2i4lny4hyzzb8kwad96gqcrsf077y"; - revision = "2"; - editedCabalFile = "1kmp72ayx6q0yvnnnj7hzraxfyp13c98yj9jjs4fs12qxb4p60f6"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - array - base - containers - filepath - mtl - pretty - utf8-string - ]; - executableToolDepends = [ - alex - happy - ]; - description = "Haskell Bottom Up Rewrite Generator"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "hburg"; - broken = true; - } - ) { }; - - "hcad" = callPackage ( - { - mkDerivation, - base, - containers, - gasp, - mtl, - }: - mkDerivation { - pname = "hcad"; - version = "0.1"; - sha256 = "0qx0qpd7wg4555hlkv6fn80zyi0c5wmq8nd2fd1m6y25xmgbvkqm"; - libraryHaskellDepends = [ - base - containers - gasp - mtl - ]; - description = "Haskell CAD library"; - license = "GPL"; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "hcc" = callPackage ( - { - mkDerivation, - base, - bytestring, - language-c, - }: - mkDerivation { - pname = "hcc"; - version = "0.0.0"; - sha256 = "04aczl9mh1gb25kggh2jj043az61gzzhxqfg9gb3lcjr5krrnh4p"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - bytestring - language-c - ]; - description = "A toy C compiler"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "hcc"; - broken = true; - } - ) { }; - "hcdt" = callPackage ( { mkDerivation, @@ -314972,80 +181654,6 @@ self: { } ) { }; - "hcg-minus" = callPackage ( - { - mkDerivation, - base, - colour, - random, - }: - mkDerivation { - pname = "hcg-minus"; - version = "0.16"; - sha256 = "0578yi5zc61chmp936s5wczdd8j3593br24zx57sqr5a50c0mwmc"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base - colour - random - ]; - description = "haskell cg (minus)"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "hcg-minus-cairo" = callPackage ( - { - mkDerivation, - base, - cairo, - colour, - filepath, - hcg-minus, - process, - }: - mkDerivation { - pname = "hcg-minus-cairo"; - version = "0.16"; - sha256 = "0q51m7rac2dij9y34pp74xpz8qsskjb2if7i5dynpk9jnpqkj26h"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base - cairo - colour - filepath - hcg-minus - process - ]; - description = "haskell cg (minus) (cairo rendering)"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "hcheat" = callPackage ( - { - mkDerivation, - base, - mps, - }: - mkDerivation { - pname = "hcheat"; - version = "2010.1.16"; - sha256 = "1fwgnp15kha9qb7iagd8n5ahjjhg194wbva5i436mb57fn86pya2"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base - mps - ]; - description = "A collection of code cheatsheet"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "hcheckers" = callPackage ( { mkDerivation, @@ -315164,6 +181772,7 @@ self: { license = lib.licenses.bsd3; hydraPlatforms = lib.platforms.none; mainProgram = "hcheckersd"; + broken = true; } ) { }; @@ -315207,188 +181816,6 @@ self: { } ) { }; - "hcltest" = callPackage ( - { - mkDerivation, - base, - bytestring, - directory, - dlist, - doctest, - either, - filepath, - free, - lens, - mmorph, - monad-control, - mtl, - optparse-applicative, - process, - random-shuffle, - split, - stm, - tagged, - tasty, - temporary, - text, - transformers, - transformers-base, - }: - mkDerivation { - pname = "hcltest"; - version = "0.3.7"; - sha256 = "1hqx0khbxypq4hqq1hq0ybyadd7m6bpd6rzc3zya3w0s7kwk0dgd"; - libraryHaskellDepends = [ - base - bytestring - directory - dlist - either - filepath - free - lens - mmorph - monad-control - mtl - optparse-applicative - process - random-shuffle - split - stm - tagged - tasty - temporary - text - transformers - transformers-base - ]; - testHaskellDepends = [ - base - directory - doctest - filepath - ]; - description = "A testing library for command line applications"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "hcoap" = callPackage ( - { - mkDerivation, - async, - base, - binary, - bytestring, - dns, - HUnit, - iproute, - mtl, - network, - network-uri, - QuickCheck, - random, - stm, - time, - }: - mkDerivation { - pname = "hcoap"; - version = "0.1.2.1"; - sha256 = "1ml26whxhykq0wwf2qyicj572ldj6zr577bqqh48fx9bj8i7sz7b"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - async - base - binary - bytestring - dns - iproute - mtl - network - network-uri - random - stm - time - ]; - executableHaskellDepends = [ - base - bytestring - network - network-uri - ]; - testHaskellDepends = [ - async - base - bytestring - HUnit - network - QuickCheck - random - ]; - description = "CoAP implementation for Haskell"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "hcobs" = callPackage ( - { - mkDerivation, - base, - base64-bytestring, - bytestring, - containers, - criterion, - deepseq, - ghc-prim, - hedgehog, - mmorph, - mtl, - reflection, - weigh, - }: - mkDerivation { - pname = "hcobs"; - version = "0.1.0.1"; - sha256 = "103x2486yb0p9bxwhd8ywhr59pgnkgyr4z70bsv6xcs54g0zqdy7"; - libraryHaskellDepends = [ - base - bytestring - containers - ghc-prim - reflection - ]; - testHaskellDepends = [ - base - base64-bytestring - bytestring - deepseq - ghc-prim - hedgehog - mmorph - mtl - reflection - weigh - ]; - benchmarkHaskellDepends = [ - base - base64-bytestring - bytestring - criterion - ghc-prim - reflection - ]; - description = "An implementation of the Consistent Overhead Byte Stuffing algorithm"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "hcom" = callPackage ( { mkDerivation }: mkDerivation { @@ -315484,629 +181911,87 @@ self: { } ) { }; - "hcron" = callPackage ( - { - mkDerivation, - base, - bytestring, - containers, - directory, - mtl, - old-locale, - pretty, - process, - random, - stm, - time, - }: - mkDerivation { - pname = "hcron"; - version = "0.0.0.3"; - sha256 = "0ckq98aj6fgdgpwyy6ssydp4jazhhfshnalv71h2xx1z80m1ynq7"; - libraryHaskellDepends = [ - base - bytestring - containers - directory - mtl - old-locale - pretty - process - random - stm - time - ]; - description = "A simple job scheduler, which just runs some IO action at a given time"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "hcube" = callPackage ( - { - mkDerivation, - base, - directory, - HaskellForMaths, - QuickCheck, - text, - }: - mkDerivation { - pname = "hcube"; - version = "0.1.1"; - sha256 = "1h1g05a8wnk2q65mm4mwywxhygr7fs0150q8ml33ik59mcc5v7fr"; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base - directory - HaskellForMaths - QuickCheck - text - ]; - executableHaskellDepends = [ - base - directory - HaskellForMaths - QuickCheck - text - ]; - description = "Virtual Rubik's cube of arbitrary size"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "hcube"; - } - ) { }; - - "hcwiid" = - callPackage - ( - { - mkDerivation, - base, - bluetooth, - cwiid, - unix, - }: - mkDerivation { - pname = "hcwiid"; - version = "0.0.6.1"; - sha256 = "1c7lglbc4zf77b8nfc7jbk4d7v7n7asi451wrmyxsw6nzqlvib91"; - libraryHaskellDepends = [ - base - unix - ]; - librarySystemDepends = [ - bluetooth - cwiid - ]; - description = "Library to interface with the wiimote"; - license = lib.licenses.gpl2Only; - badPlatforms = lib.platforms.darwin; - } - ) - { - bluetooth = null; - inherit (pkgs) cwiid; - }; - - "hdaemonize" = callPackage ( - { - mkDerivation, - base, - bytestring, - extensible-exceptions, - filepath, - hsyslog, - mtl, - unix, - }: - mkDerivation { - pname = "hdaemonize"; - version = "0.5.7"; - sha256 = "06zh4z3xg98badbg91lf3kwy88n39ww7c1f06lija8zciql2723l"; - libraryHaskellDepends = [ - base - bytestring - extensible-exceptions - filepath - hsyslog - mtl - unix - ]; - description = "Library to handle the details of writing daemons for UNIX"; - license = lib.licenses.bsd3; - } - ) { }; - - "hdaemonize-buildfix" = callPackage ( - { - mkDerivation, - base, - extensible-exceptions, - filepath, - hsyslog, - mtl, - unix, - }: - mkDerivation { - pname = "hdaemonize-buildfix"; - version = "0.4.5"; - sha256 = "15k4z77caa5y1jix4llqdmqpx0j7iv9nx5lk3vc5hs8vl2ax86f6"; - libraryHaskellDepends = [ - base - extensible-exceptions - filepath - hsyslog - mtl - unix - ]; - description = "Library to handle the details of writing daemons for UNIX"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "hdbc-aeson" = callPackage ( - { - mkDerivation, - aeson, - base, - convertible, - HDBC, - scientific, - text, - unordered-containers, - vector, - }: - mkDerivation { - pname = "hdbc-aeson"; - version = "0.1.3.2"; - sha256 = "04bp1zxw5alazk241gbz7g1s4cr0gabb7c15irzzlkbjz5jsk6d5"; - libraryHaskellDepends = [ - aeson - base - convertible - HDBC - scientific - text - unordered-containers - vector - ]; - description = "Deserialize from HDBC rows to FromJSON instances"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "hdbc-postgresql-hstore" = callPackage ( - { - mkDerivation, - attoparsec, - base, - containers, - HDBC, - text, - }: - mkDerivation { - pname = "hdbc-postgresql-hstore"; - version = "0.0.1.1"; - sha256 = "034zsmqgavh4ns69f6j4a1afyqbd1b7h35macmf20vzxj0j0bawj"; - libraryHaskellDepends = [ - attoparsec - base - containers - HDBC - text - ]; - description = "Manipulate data in PostgreSQL \"hstore\" columns"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "hdbc-tuple" = callPackage ( - { - mkDerivation, - base, - convertible, - HDBC, - typical, - }: - mkDerivation { - pname = "hdbc-tuple"; - version = "0.0.1"; - sha256 = "155darl83c1b3gjkh7x8pwpj6v4nqfb389ix9vr39j7qw1pkjwdd"; - libraryHaskellDepends = [ - base - convertible - HDBC - typical - ]; - description = "Type save tuples for HDBC"; - license = "GPL"; - } - ) { }; - - "hdbi" = callPackage ( - { - mkDerivation, - attoparsec, - base, - blaze-builder, - bytestring, - containers, - Decimal, - deepseq, - derive, - hspec-expectations, - HUnit, - old-locale, - QuickCheck, - quickcheck-assertions, - quickcheck-instances, - stm, - template-haskell, - test-framework, - test-framework-hunit, - test-framework-quickcheck2, - text, - time, - uuid, - }: - mkDerivation { - pname = "hdbi"; - version = "1.3.0"; - sha256 = "0z8ivqs79lkqr2bji6nc5djd29ajag5r7d7caja482ksfq75wdc2"; - libraryHaskellDepends = [ - attoparsec - base - blaze-builder - bytestring - containers - Decimal - deepseq - old-locale - stm - template-haskell - text - time - uuid - ]; - testHaskellDepends = [ - attoparsec - base - blaze-builder - bytestring - containers - Decimal - deepseq - derive - hspec-expectations - HUnit - old-locale - QuickCheck - quickcheck-assertions - quickcheck-instances - stm - template-haskell - test-framework - test-framework-hunit - test-framework-quickcheck2 - text - time - uuid - ]; - description = "Haskell Database Independent interface"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "hdbi-conduit" = callPackage ( - { - mkDerivation, - base, - conduit, - hdbi, - hdbi-sqlite, - QuickCheck, - quickcheck-assertions, - resourcet, - test-framework, - test-framework-quickcheck2, - transformers, - }: - mkDerivation { - pname = "hdbi-conduit"; - version = "1.3.0"; - sha256 = "1wrc38m8451vslvnmd4p128x9885dbjx5hzc566s06dw8wshfdgj"; - libraryHaskellDepends = [ - base - conduit - hdbi - resourcet - transformers - ]; - testHaskellDepends = [ - base - conduit - hdbi - hdbi-sqlite - QuickCheck - quickcheck-assertions - resourcet - test-framework - test-framework-quickcheck2 - transformers - ]; - description = "Conduit glue for HDBI"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "hdbi-postgresql" = callPackage ( - { - mkDerivation, - attoparsec, - base, - blaze-builder, - bytestring, - containers, - Decimal, - derive, - hdbi, - hdbi-tests, - HUnit, - ieee754, - mtl, - old-locale, - postgresql-libpq, - postgresql-simple, - QuickCheck, - quickcheck-assertions, - quickcheck-instances, - safe, - test-framework, - test-framework-hunit, - test-framework-quickcheck2, - text, - time, - uuid, - }: - mkDerivation { - pname = "hdbi-postgresql"; - version = "1.3.0"; - sha256 = "1fjcp3ldc54bm8gj8l9ifjvdxx6h6lsswjspmwnzwfh1ahfrbg1x"; - libraryHaskellDepends = [ - attoparsec - base - blaze-builder - bytestring - hdbi - mtl - old-locale - postgresql-libpq - postgresql-simple - safe - text - time - uuid - ]; - testHaskellDepends = [ - attoparsec - base - blaze-builder - bytestring - containers - Decimal - derive - hdbi - hdbi-tests - HUnit - ieee754 - mtl - old-locale - postgresql-libpq - postgresql-simple - QuickCheck - quickcheck-assertions - quickcheck-instances - safe - test-framework - test-framework-hunit - test-framework-quickcheck2 - text - time - uuid - ]; - description = "PostgreSQL driver for hdbi"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "hdbi-sqlite" = callPackage ( - { - mkDerivation, - base, - blaze-builder, - bytestring, - direct-sqlite, - hdbi, - hdbi-tests, - test-framework, - text, - }: - mkDerivation { - pname = "hdbi-sqlite"; - version = "1.3.0"; - sha256 = "03vf5xv14hb6rwwaiv997a7j3s5rgp81cb60v0n013l20dqh1g04"; - libraryHaskellDepends = [ - base - blaze-builder - bytestring - direct-sqlite - hdbi - text - ]; - testHaskellDepends = [ - base - blaze-builder - bytestring - direct-sqlite - hdbi - hdbi-tests - test-framework - text - ]; - description = "SQlite driver for HDBI"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "hdbi-tests" = callPackage ( - { - mkDerivation, - base, - bytestring, - containers, - Decimal, - hdbi, - HUnit, - ieee754, - QuickCheck, - quickcheck-assertions, - quickcheck-instances, - stm, - test-framework, - test-framework-hunit, - test-framework-quickcheck2, - text, - time, - uuid, - }: - mkDerivation { - pname = "hdbi-tests"; - version = "1.3.0"; - sha256 = "0rvrjcv890flsmq8v6bpgh8kvg0ix3x2n149kdg7xviy26liyjg5"; - libraryHaskellDepends = [ - base - bytestring - containers - Decimal - hdbi - HUnit - ieee754 - QuickCheck - quickcheck-assertions - quickcheck-instances - stm - test-framework - test-framework-hunit - test-framework-quickcheck2 - text - time - uuid - ]; - description = "test suite for testing HDBI"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "hdevtools" = callPackage ( + "hcwiid" = + callPackage + ( + { + mkDerivation, + base, + bluetooth, + cwiid, + unix, + }: + mkDerivation { + pname = "hcwiid"; + version = "0.0.6.1"; + sha256 = "1c7lglbc4zf77b8nfc7jbk4d7v7n7asi451wrmyxsw6nzqlvib91"; + libraryHaskellDepends = [ + base + unix + ]; + librarySystemDepends = [ + bluetooth + cwiid + ]; + description = "Library to interface with the wiimote"; + license = lib.licenses.gpl2Only; + badPlatforms = lib.platforms.darwin; + } + ) + { + bluetooth = null; + inherit (pkgs) cwiid; + }; + + "hdaemonize" = callPackage ( { mkDerivation, base, - Cabal, - cmdargs, - directory, + bytestring, + extensible-exceptions, filepath, - ghc, - ghc-boot, - ghc-paths, - network, - process, - syb, - time, - transformers, + hsyslog, + mtl, unix, }: mkDerivation { - pname = "hdevtools"; - version = "0.1.8.0"; - sha256 = "161wq1l7kxr9wbikfvi2szicfg02s4ihcjdhjxwh95zvqfjqarif"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ + pname = "hdaemonize"; + version = "0.5.7"; + sha256 = "06zh4z3xg98badbg91lf3kwy88n39ww7c1f06lija8zciql2723l"; + libraryHaskellDepends = [ base - Cabal - cmdargs - directory + bytestring + extensible-exceptions filepath - ghc - ghc-boot - ghc-paths - network - process - syb - time - transformers + hsyslog + mtl unix ]; - description = "Persistent GHC powered background server for FAST haskell development tools"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - mainProgram = "hdevtools"; - broken = true; + description = "Library to handle the details of writing daemons for UNIX"; + license = lib.licenses.bsd3; } ) { }; - "hdf" = callPackage ( + "hdbc-tuple" = callPackage ( { mkDerivation, base, - directory, - fgl, - fgl-visualize, - filepath, - hosc, - hsc3, - murmur-hash, - process, - split, - transformers, + convertible, + HDBC, + typical, }: mkDerivation { - pname = "hdf"; - version = "0.15"; - sha256 = "11nf9wlymdhydf0bhh9gdl0cdn0i4mbvx3hfdcmnxfvag5jmfbkk"; - enableSeparateDataOutput = true; + pname = "hdbc-tuple"; + version = "0.0.1"; + sha256 = "155darl83c1b3gjkh7x8pwpj6v4nqfb389ix9vr39j7qw1pkjwdd"; libraryHaskellDepends = [ base - directory - fgl - fgl-visualize - filepath - hosc - hsc3 - murmur-hash - process - split - transformers + convertible + HDBC + typical ]; - description = "HDF: Uniform Rate Audio Signal Processing in Haskell"; + description = "Type save tuples for HDBC"; license = "GPL"; - hydraPlatforms = lib.platforms.none; - broken = true; } ) { }; @@ -316206,236 +182091,6 @@ self: { } ) { inherit (pkgs) hdf5; }; - "hdiff" = callPackage ( - { - mkDerivation, - base, - bytestring, - containers, - cryptonite, - generics-mrsop, - generics-mrsop-gdiff, - gitrev, - hspec, - language-lua, - memory, - mtl, - optparse-applicative, - parsec, - prettyprinter, - prettyprinter-ansi-terminal, - QuickCheck, - text, - }: - mkDerivation { - pname = "hdiff"; - version = "0.0.1"; - sha256 = "09a4vp80ik7fza2qzv9n3zddkk1phm0yd3f9v1r5zp3i8s38aa89"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - bytestring - containers - cryptonite - generics-mrsop - generics-mrsop-gdiff - hspec - memory - mtl - prettyprinter - prettyprinter-ansi-terminal - QuickCheck - text - ]; - executableHaskellDepends = [ - base - bytestring - containers - cryptonite - generics-mrsop - generics-mrsop-gdiff - gitrev - hspec - language-lua - memory - mtl - optparse-applicative - parsec - prettyprinter - prettyprinter-ansi-terminal - QuickCheck - text - ]; - testHaskellDepends = [ - base - bytestring - containers - cryptonite - generics-mrsop - generics-mrsop-gdiff - hspec - memory - mtl - prettyprinter - prettyprinter-ansi-terminal - QuickCheck - text - ]; - description = "Pattern-Expression-based differencing of arbitrary types"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - mainProgram = "hdiff"; - } - ) { }; - - "hdigest" = callPackage ( - { - mkDerivation, - base, - cgi, - Crypto, - network, - parsec, - random, - time, - }: - mkDerivation { - pname = "hdigest"; - version = "1.0"; - sha256 = "1wm9j8ncjfb0gscdz4zmkymrzykc6rqbcx7988r207l5s9q3043f"; - libraryHaskellDepends = [ - base - cgi - Crypto - network - parsec - random - time - ]; - description = "Server-side HTTP Digest (RFC2617) in the CGI monad"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "hdirect" = callPackage ( - { - mkDerivation, - array, - base, - happy, - haskell98, - pretty, - }: - mkDerivation { - pname = "hdirect"; - version = "0.21.0"; - sha256 = "1v7yx9k0kib6527k49hf3s4jvdda7a0wgv09qhyjk6lyriyi3ny2"; - revision = "1"; - editedCabalFile = "19h5zsxl8knbvkbyv7z0an5hdibi2xslbva5cmck9h5wgc9m874n"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - array - base - haskell98 - pretty - ]; - libraryToolDepends = [ happy ]; - executableHaskellDepends = [ - array - base - haskell98 - pretty - ]; - executableToolDepends = [ happy ]; - description = "An IDL compiler for Haskell"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "hdirect"; - } - ) { }; - - "hdis86" = callPackage ( - { - mkDerivation, - base, - bytestring, - containers, - QuickCheck, - }: - mkDerivation { - pname = "hdis86"; - version = "0.2"; - sha256 = "0qr8d4qbvkncv4im0iwwdr9khvkyy4ky8wnwxri1jqhylcq8vdks"; - libraryHaskellDepends = [ - base - bytestring - containers - QuickCheck - ]; - description = "Interface to the udis86 disassembler for x86 and x86-64 / AMD64"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "hdiscount" = callPackage ( - { - mkDerivation, - base, - bytestring, - markdown, - }: - mkDerivation { - pname = "hdiscount"; - version = "0.1.0.0"; - sha256 = "0z6kpsk57gjqwpvs5v6ikiirnyyg26mbrxx827bb1v27lhsy7py0"; - libraryHaskellDepends = [ - base - bytestring - ]; - librarySystemDepends = [ markdown ]; - description = "Haskell bindings to the Discount markdown library"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { markdown = null; }; - - "hdm" = callPackage ( - { - mkDerivation, - base, - directory, - process, - unix, - vty, - }: - mkDerivation { - pname = "hdm"; - version = "0.0.1"; - sha256 = "1qgq4bwq2ip315j43f0pyhxah033bjrj3wrmvnzmc62s8k2rfvgh"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - directory - process - unix - vty - ]; - description = "a small display manager"; - license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - mainProgram = "hdm"; - broken = true; - } - ) { }; - "hdmenu" = callPackage ( { mkDerivation, @@ -316522,91 +182177,6 @@ self: { } ) { }; - "hdo" = callPackage ( - { - mkDerivation, - aeson, - base, - bytestring, - case-insensitive, - comonad, - data-default, - free, - http-conduit, - iproute, - lens, - mtl, - network-uri, - optparse-applicative, - parsec, - pretty, - process, - random, - tagged, - text, - time, - transformers, - unix, - unordered-containers, - vector, - }: - mkDerivation { - pname = "hdo"; - version = "0.5"; - sha256 = "0nixnhj4pm05q1sgislyd46pdfk8i8hn5jy9d9jrh79cm6rznmas"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson - base - bytestring - case-insensitive - comonad - data-default - free - http-conduit - iproute - lens - mtl - network-uri - parsec - pretty - process - random - tagged - text - time - transformers - unix - unordered-containers - vector - ]; - executableHaskellDepends = [ - aeson - base - bytestring - comonad - data-default - free - iproute - network-uri - optparse-applicative - pretty - random - text - time - transformers - unordered-containers - vector - ]; - description = "A Digital Ocean client in Haskell"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - mainProgram = "docean"; - broken = true; - } - ) { }; - "hdocs" = callPackage ( { mkDerivation, @@ -316667,150 +182237,6 @@ self: { } ) { }; - "hdph" = callPackage ( - { - mkDerivation, - base, - bytestring, - cereal, - containers, - deepseq, - hdph-closure, - mtl, - network, - network-info, - network-multicast, - network-transport, - network-transport-tcp, - random, - template-haskell, - time, - }: - mkDerivation { - pname = "hdph"; - version = "0.0.1"; - sha256 = "116499cr0pcc1gg7aniprlcp9vp8s61b4vk7rcm673nw3lay496a"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - bytestring - cereal - containers - deepseq - hdph-closure - mtl - network - network-info - network-multicast - network-transport - network-transport-tcp - random - template-haskell - time - ]; - executableHaskellDepends = [ - base - bytestring - cereal - containers - deepseq - hdph-closure - mtl - network - network-info - network-multicast - network-transport - network-transport-tcp - random - template-haskell - time - ]; - description = "Haskell distributed parallel Haskell"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "hdph-closure" = callPackage ( - { - mkDerivation, - array, - base, - bytestring, - cereal, - containers, - deepseq, - template-haskell, - }: - mkDerivation { - pname = "hdph-closure"; - version = "0.0.1"; - sha256 = "0rcmp5i7jvpghg8nql5wlidbyjs79cxxmdb6bq3xxk806gdj66d8"; - libraryHaskellDepends = [ - array - base - bytestring - cereal - containers - deepseq - template-haskell - ]; - description = "Explicit closures in Haskell distributed parallel Haskell"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "hdr-histogram" = callPackage ( - { - mkDerivation, - base, - criterion, - deepseq, - hspec, - primitive, - QuickCheck, - random, - tagged, - vector, - vector-algorithms, - }: - mkDerivation { - pname = "hdr-histogram"; - version = "0.1.0.0"; - sha256 = "0b3n262kfivlzmpvv7h7f7bg311vl684lrzgx828r4bdbabhqy7q"; - libraryHaskellDepends = [ - base - deepseq - primitive - QuickCheck - tagged - vector - ]; - testHaskellDepends = [ - base - hspec - QuickCheck - random - tagged - vector - vector-algorithms - ]; - benchmarkHaskellDepends = [ - base - criterion - deepseq - primitive - ]; - description = "Haskell implementation of High Dynamic Range (HDR) Histograms"; - license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "headed-megaparsec" = callPackage ( { mkDerivation, @@ -316836,43 +182262,6 @@ self: { } ) { }; - "headergen" = callPackage ( - { - mkDerivation, - aeson, - aeson-pretty, - base, - bytestring, - directory, - filepath, - haskeline, - time, - }: - mkDerivation { - pname = "headergen"; - version = "0.2.0.0"; - sha256 = "1hc1pmbj9452k4a71iiazxg6id7caf783m08lqnf3flf77cdjxpa"; - isLibrary = false; - isExecutable = true; - enableSeparateDataOutput = true; - executableHaskellDepends = [ - aeson - aeson-pretty - base - bytestring - directory - filepath - haskeline - time - ]; - description = "Creates a header for a haskell source file"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - mainProgram = "headergen"; - broken = true; - } - ) { }; - "headroom" = callPackage ( { mkDerivation, @@ -317081,111 +182470,6 @@ self: { } ) { }; - "heapsort" = callPackage ( - { - mkDerivation, - array, - base, - }: - mkDerivation { - pname = "heapsort"; - version = "0.1.0"; - sha256 = "0fzws9fjhqsygsbwj7nvj786j16264vqvqzc97dr73y72538k9qa"; - isLibrary = true; - isExecutable = true; - executableHaskellDepends = [ - array - base - ]; - description = "Heapsort of MArrays as a demo of imperative programming"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "heapsort-example"; - broken = true; - } - ) { }; - - "heart-app" = callPackage ( - { - mkDerivation, - base, - co-log, - co-log-core, - ekg, - ekg-core, - ekg-statsd, - heart-core, - text, - }: - mkDerivation { - pname = "heart-app"; - version = "0.1.1"; - sha256 = "1wif7zxvh5wbz2spniga3apk43zzzjv58qj25gcc870haw6dp2db"; - libraryHaskellDepends = [ - base - co-log - co-log-core - ekg - ekg-core - ekg-statsd - heart-core - text - ]; - description = "An opinionated app prelude and framework in the UnliftIO style"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "heart-core" = callPackage ( - { - mkDerivation, - aeson, - aeson-casing, - base, - containers, - deepseq, - exceptions, - filepath, - hashable, - lens, - list-t, - mtl, - newtype-generics, - text, - unliftio, - unliftio-core, - unordered-containers, - }: - mkDerivation { - pname = "heart-core"; - version = "0.3.2"; - sha256 = "0fwhv0k5yykc72bk67d6rr6946w245hlg6cwjfbbgzq32b1cw7s3"; - libraryHaskellDepends = [ - aeson - aeson-casing - base - containers - deepseq - exceptions - filepath - hashable - lens - list-t - mtl - newtype-generics - text - unliftio - unliftio-core - unordered-containers - ]; - description = "An opinionated library prelude in the UnliftIO style"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "heartbeat-streams" = callPackage ( { mkDerivation, @@ -317211,149 +182495,6 @@ self: { } ) { }; - "heatitup" = callPackage ( - { - mkDerivation, - base, - bytestring, - bytestring-show, - cassava, - colour, - containers, - diagrams-core, - diagrams-html5, - diagrams-lib, - diagrams-pgf, - diagrams-rasterific, - diagrams-svg, - edit-distance, - fasta, - lens, - optparse-applicative, - pipes, - pipes-bytestring, - pipes-csv, - safe, - string-similarity, - stringsearch, - suffixtree, - vector, - }: - mkDerivation { - pname = "heatitup"; - version = "0.5.4.0"; - sha256 = "07qwsmk2hszm2q7ky4avmpwmd2j4xqprid7kvcrhh1s6d9f8nbz2"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - bytestring - bytestring-show - cassava - colour - containers - diagrams-lib - edit-distance - fasta - lens - pipes - pipes-bytestring - pipes-csv - safe - string-similarity - stringsearch - suffixtree - vector - ]; - executableHaskellDepends = [ - base - bytestring - colour - containers - diagrams-core - diagrams-html5 - diagrams-lib - diagrams-pgf - diagrams-rasterific - diagrams-svg - fasta - lens - optparse-applicative - pipes - pipes-bytestring - pipes-csv - safe - vector - ]; - description = "Find and annotate ITDs"; - license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - mainProgram = "heatitup"; - } - ) { }; - - "heatitup-complete" = callPackage ( - { - mkDerivation, - base, - bytestring, - cassava, - containers, - fasta, - foldl, - lens, - optparse-applicative, - pipes, - pipes-text, - safe, - text, - text-show, - turtle, - vector, - }: - mkDerivation { - pname = "heatitup-complete"; - version = "0.5.5.0"; - sha256 = "14izlkkhm1zgdni4j95f9nv919bgq766qhwhc2z8phr4aymvjsnx"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - bytestring - cassava - containers - fasta - foldl - lens - safe - text - text-show - turtle - vector - ]; - executableHaskellDepends = [ - base - bytestring - cassava - containers - fasta - foldl - optparse-applicative - pipes - pipes-text - safe - text - turtle - vector - ]; - description = "Find and annotate ITDs with assembly or read pair joining"; - license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - mainProgram = "heatitup-complete"; - broken = true; - } - ) { }; - "heatshrink" = callPackage ( { mkDerivation, @@ -317392,34 +182533,6 @@ self: { } ) { }; - "heavy-log-shortcuts" = callPackage ( - { - mkDerivation, - base, - fast-logger, - heavy-logger, - monad-control, - text, - text-format-heavy, - }: - mkDerivation { - pname = "heavy-log-shortcuts"; - version = "1.0.1"; - sha256 = "1fgfsp4999cdzwx6h945wj75fnmg0gw8iqs4xgah4255ld42a28r"; - libraryHaskellDepends = [ - base - fast-logger - heavy-logger - monad-control - text - text-format-heavy - ]; - description = "Simle api for heavy logger"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "heavy-logger" = callPackage ( { mkDerivation, @@ -317471,34 +182584,7 @@ self: { description = "Full-weight logging based on fast-logger"; license = lib.licenses.bsd3; hydraPlatforms = lib.platforms.none; - } - ) { }; - - "heavy-logger-amazon" = callPackage ( - { - mkDerivation, - amazonka-core, - base, - binary, - heavy-logger, - template-haskell, - text, - }: - mkDerivation { - pname = "heavy-logger-amazon"; - version = "0.1.0.0"; - sha256 = "18wcnpnjmv841ac3kvnyk0s9rrgfwvlgv950s1znnjdmi3qc0bjk"; - libraryHaskellDepends = [ - amazonka-core - base - binary - heavy-logger - template-haskell - text - ]; - description = "heavy-logger compatibility with amazonka-core logging"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; + broken = true; } ) { }; @@ -317547,6 +182633,7 @@ self: { description = "Orphan instances for data types in heavy-logger package"; license = lib.licenses.bsd3; hydraPlatforms = lib.platforms.none; + broken = true; } ) { }; @@ -317579,31 +182666,6 @@ self: { } ) { }; - "hecc" = callPackage ( - { - mkDerivation, - base, - cereal, - crypto-api, - hF2, - }: - mkDerivation { - pname = "hecc"; - version = "0.4.1.1"; - sha256 = "1p7h9mlap8i0w2inhq944r0dgr27rzwk44igylil7gv0dgf4hsyx"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base - cereal - crypto-api - hF2 - ]; - description = "Elliptic Curve Cryptography for Haskell"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "heck" = callPackage ( { mkDerivation, base }: mkDerivation { @@ -317636,50 +182698,6 @@ self: { } ) { }; - "heckle" = callPackage ( - { - mkDerivation, - base, - blaze-html, - directory, - pandoc, - pandoc-types, - process, - split, - tagsoup, - time, - }: - mkDerivation { - pname = "heckle"; - version = "2.0.2.1"; - sha256 = "1giq352z5hsa4j27mnzr07fzf3lfcndbh9ni3gdsa43rhkgn8kcn"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - blaze-html - directory - pandoc - pandoc-types - process - split - tagsoup - time - ]; - executableHaskellDepends = [ - base - directory - process - split - ]; - description = "Jekyll in Haskell (feat. LaTeX)"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - mainProgram = "heckle"; - broken = true; - } - ) { }; - "heddit" = callPackage ( { mkDerivation, @@ -317927,67 +182945,6 @@ self: { } ) { }; - "hedgehog-checkers" = callPackage ( - { - mkDerivation, - base, - containers, - either, - hedgehog, - semigroupoids, - semigroups, - }: - mkDerivation { - pname = "hedgehog-checkers"; - version = "0.1.0.0"; - sha256 = "0fr0jmvh3c6a1mvdppbjxxc1ps94p4kc1crxwdmw1487jlg2z8ps"; - libraryHaskellDepends = [ - base - containers - hedgehog - semigroupoids - semigroups - ]; - testHaskellDepends = [ - base - either - hedgehog - ]; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "hedgehog-checkers-lens" = callPackage ( - { - mkDerivation, - base, - hedgehog, - hedgehog-checkers, - lens, - }: - mkDerivation { - pname = "hedgehog-checkers-lens"; - version = "0.1.0.0"; - sha256 = "0zfk967xzpwfh3y3ys8d0c3zcz251dnp41xha11613ji3yfk0wff"; - libraryHaskellDepends = [ - base - hedgehog - hedgehog-checkers - lens - ]; - testHaskellDepends = [ - base - hedgehog - hedgehog-checkers - lens - ]; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "hedgehog-classes" = callPackage ( { mkDerivation, @@ -318217,126 +183174,6 @@ self: { } ) { }; - "hedgehog-gen" = callPackage ( - { - mkDerivation, - base, - bytestring, - hedgehog, - text, - typerep-map, - }: - mkDerivation { - pname = "hedgehog-gen"; - version = "0.1.0.0"; - sha256 = "07fq3ha96xgka35ag04vzmx7z2c59jnqr9y9bkrdzk5xm47mmlbf"; - libraryHaskellDepends = [ - base - bytestring - hedgehog - text - typerep-map - ]; - description = "Customizable Gen for ADT using Generics"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "hedgehog-gen-json" = callPackage ( - { - mkDerivation, - aeson, - base, - bytestring, - containers, - exceptions, - hedgehog, - lens, - protolude, - regex-genex, - regex-pcre, - scientific, - tasty, - tasty-hedgehog, - text, - time, - timerep, - tz, - unordered-containers, - vector, - }: - mkDerivation { - pname = "hedgehog-gen-json"; - version = "0.5.1"; - sha256 = "0cc46l1ls4dzlchwcd6cqmsa66qffjq01dhcj2k84gjw8gg4wnnx"; - libraryHaskellDepends = [ - aeson - base - bytestring - containers - exceptions - hedgehog - lens - protolude - regex-genex - scientific - text - time - timerep - tz - unordered-containers - vector - ]; - testHaskellDepends = [ - aeson - base - bytestring - containers - exceptions - hedgehog - lens - protolude - regex-genex - regex-pcre - scientific - tasty - tasty-hedgehog - text - time - timerep - tz - unordered-containers - vector - ]; - description = "JSON generators for Hedgehog"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "hedgehog-generic" = callPackage ( - { - mkDerivation, - base, - hedgehog, - }: - mkDerivation { - pname = "hedgehog-generic"; - version = "0.1"; - sha256 = "1166jwk3f4bfw54qaxk3q3gxrfmffwwfkmd8xyvwj7i3whwzxq0f"; - libraryHaskellDepends = [ - base - hedgehog - ]; - description = "GHC Generics automatically derived hedgehog generators"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "hedgehog-golden" = callPackage ( { mkDerivation, @@ -318586,37 +183423,6 @@ self: { } ) { }; - "hedis-config" = callPackage ( - { - mkDerivation, - aeson, - base, - bytestring, - hedis, - scientific, - text, - time, - }: - mkDerivation { - pname = "hedis-config"; - version = "1.0.0"; - sha256 = "19p0g83ybn9iajy5r8ymc8mapml34zw1a7s5hmpxdayv6slabg7r"; - libraryHaskellDepends = [ - aeson - base - bytestring - hedis - scientific - text - time - ]; - description = "Easy trivial configuration for Redis"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "hedis-effectful" = callPackage ( { mkDerivation, @@ -318662,183 +183468,6 @@ self: { } ) { }; - "hedis-monadic" = callPackage ( - { - mkDerivation, - base, - hedis, - monad-control, - mtl, - transformers, - transformers-base, - transformers-compat, - }: - mkDerivation { - pname = "hedis-monadic"; - version = "0.0.4"; - sha256 = "1540c4ra65y2kc97n7wxx7rdzf3dkaqqx7r4lwz4qpg3kzfi6q8w"; - libraryHaskellDepends = [ - base - hedis - monad-control - mtl - transformers - transformers-base - transformers-compat - ]; - description = "A la MonadReader for Redis connection"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "hedis-namespace" = callPackage ( - { - mkDerivation, - base, - bytestring, - hedis, - mtl, - }: - mkDerivation { - pname = "hedis-namespace"; - version = "0.1.0.0"; - sha256 = "1qfs1m8lwkmr48y1v8bya2vmpghk4hsg2bhl2w23i1ilyb1dwdrr"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - bytestring - hedis - mtl - ]; - executableHaskellDepends = [ - base - bytestring - hedis - mtl - ]; - testHaskellDepends = [ base ]; - description = "Initial project template from stack"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "hedis-namespace-exe"; - broken = true; - } - ) { }; - - "hedis-pile" = callPackage ( - { - mkDerivation, - base, - binary, - bytestring, - hedis, - hedis-tags, - HUnit, - lifted-base, - string-conversions, - test-framework, - test-framework-hunit, - transformers, - }: - mkDerivation { - pname = "hedis-pile"; - version = "0.6.3"; - sha256 = "0awwga4hvmfkkkqy68g4ja51szjifs1z20rav0kmbn3gn978248n"; - libraryHaskellDepends = [ - base - binary - bytestring - hedis - hedis-tags - string-conversions - transformers - ]; - testHaskellDepends = [ - base - binary - bytestring - hedis - HUnit - lifted-base - string-conversions - test-framework - test-framework-hunit - transformers - ]; - description = "Caching mandatory data with Redis"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "hedis-simple" = callPackage ( - { - mkDerivation, - base, - bytestring, - either, - hedis, - mtl, - }: - mkDerivation { - pname = "hedis-simple"; - version = "0.1.0.0"; - sha256 = "1dq7rpqg35caqj664q2ndqgd59mq7cfjahkaka5mlk1k5yjvz7av"; - libraryHaskellDepends = [ - base - bytestring - either - hedis - mtl - ]; - description = "A simplified API for hedis"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "hedis-tags" = callPackage ( - { - mkDerivation, - base, - bytestring, - hedis, - HUnit, - lifted-base, - test-framework, - test-framework-hunit, - transformers, - }: - mkDerivation { - pname = "hedis-tags"; - version = "0.2.3"; - sha256 = "0d9jr26366xjjcc39ma36bs944d11xpw5izww9pw3lajsgdr0d1s"; - libraryHaskellDepends = [ - base - bytestring - hedis - ]; - testHaskellDepends = [ - base - bytestring - hedis - HUnit - lifted-base - test-framework - test-framework-hunit - transformers - ]; - description = "Tags for hedis"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "hedn" = callPackage ( { mkDerivation, @@ -318922,40 +183551,6 @@ self: { } ) { }; - "hedra" = callPackage ( - { - mkDerivation, - base, - doctest, - haskeline, - random, - }: - mkDerivation { - pname = "hedra"; - version = "0.1"; - sha256 = "17yvqfhxvxrfy7g6s3wv4gp59s2mgikw1dc078jzhb1g00zggwb4"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - random - ]; - executableHaskellDepends = [ - base - haskeline - ]; - testHaskellDepends = [ - base - doctest - ]; - description = "A small library and executable for generating dice rolls"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - mainProgram = "hedra"; - broken = true; - } - ) { }; - "heftia" = callPackage ( { mkDerivation, @@ -319199,40 +183794,6 @@ self: { } ) { }; - "hein" = callPackage ( - { - mkDerivation, - base, - bytestring, - directory, - filepath, - http-conduit, - process, - transformers, - }: - mkDerivation { - pname = "hein"; - version = "0.1.0.5"; - sha256 = "0z3c9pvhnfx9zizzwkyawvzvs4zl7i5w5zkrjpax8rkrh8ai1060"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - bytestring - directory - filepath - http-conduit - process - transformers - ]; - description = "An extensible build helper for haskell, in the vein of leiningen"; - license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; - mainProgram = "hein"; - broken = true; - } - ) { }; - "heist" = callPackage ( { mkDerivation, @@ -319381,69 +183942,6 @@ self: { } ) { }; - "heist-aeson" = callPackage ( - { - mkDerivation, - aeson, - base, - blaze-builder, - bytestring, - containers, - heist, - monads-fd, - text, - vector, - xmlhtml, - }: - mkDerivation { - pname = "heist-aeson"; - version = "0.5"; - sha256 = "1m0rwrb0gzsajnp5h0w7cf10jf6fram4mjkmny5hk0h5xwcn19dc"; - libraryHaskellDepends = [ - aeson - base - blaze-builder - bytestring - containers - heist - monads-fd - text - vector - xmlhtml - ]; - description = "Use JSON directly from Heist templates"; - license = lib.licenses.publicDomain; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "heist-async" = callPackage ( - { - mkDerivation, - base, - heist, - template-haskell, - text, - xmlhtml, - }: - mkDerivation { - pname = "heist-async"; - version = "0.6.0.0"; - sha256 = "16ab3cfs6fj66ssf6ypmx2yddq5an115wlmwybk3va0a7kbp58ll"; - libraryHaskellDepends = [ - base - heist - template-haskell - text - xmlhtml - ]; - description = "Adding support for asynchronous updates (\"AJAX\") with heist"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "heist-emanote" = callPackage ( { mkDerivation, @@ -319658,921 +184156,223 @@ self: { text transformers ]; - executableToolDepends = [ - alex - happy - ]; - description = "Typechecking terms of the Edinburgh Logical Framework (LF)"; - license = lib.licenses.mit; - mainProgram = "helf"; - } - ) { }; - - "helic" = callPackage ( - { - mkDerivation, - base, - chronos, - containers, - exon, - fast-logger, - gi-gdk, - gi-glib, - gi-gtk, - hostname, - optparse-applicative, - path, - path-io, - polysemy, - polysemy-chronos, - polysemy-conc, - polysemy-http, - polysemy-log, - polysemy-plugin, - polysemy-process, - polysemy-test, - polysemy-time, - prelate, - random, - servant-client, - servant-server, - table-layout, - tasty, - terminal-size, - torsor, - transformers, - typed-process, - wai-extra, - warp, - yaml, - zeugma, - }: - mkDerivation { - pname = "helic"; - version = "0.6.1.0"; - sha256 = "0zwgnhgm571a62bxgvc7gwrbi1klydby0gb6j21y28h3cx12m1a5"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - chronos - exon - fast-logger - gi-gdk - gi-glib - gi-gtk - hostname - optparse-applicative - path - path-io - polysemy - polysemy-chronos - polysemy-conc - polysemy-http - polysemy-log - polysemy-plugin - polysemy-process - polysemy-time - prelate - servant-client - servant-server - table-layout - terminal-size - transformers - typed-process - wai-extra - warp - yaml - ]; - executableHaskellDepends = [ - base - polysemy - polysemy-plugin - prelate - ]; - testHaskellDepends = [ - base - chronos - containers - exon - path - polysemy - polysemy-chronos - polysemy-log - polysemy-plugin - polysemy-test - prelate - random - tasty - torsor - zeugma - ]; - description = "Clipboard Manager"; - license = "BSD-2-Clause-Patent"; - hydraPlatforms = lib.platforms.none; - mainProgram = "hel"; - } - ) { }; - - "helics" = - callPackage - ( - { - mkDerivation, - base, - bytestring, - bytestring-show, - data-default-class, - newrelic-collector-client, - newrelic-common, - newrelic-transaction, - time, - unix, - }: - mkDerivation { - pname = "helics"; - version = "0.5.1"; - sha256 = "06kj42rmlzlw6zrilq9kc5whk0np5714wwn3nwbpv6fx4ginzg2c"; - revision = "1"; - editedCabalFile = "0gfadz4f5hdp985br18a6rrwh5b40nsf71054b539xi2glc351v9"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - bytestring - bytestring-show - data-default-class - time - unix - ]; - librarySystemDepends = [ - newrelic-collector-client - newrelic-common - newrelic-transaction - ]; - description = "New Relic® agent SDK wrapper for Haskell"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - } - ) - { - newrelic-collector-client = null; - newrelic-common = null; - newrelic-transaction = null; - }; - - "helics-wai" = callPackage ( - { - mkDerivation, - base, - bytestring, - data-default-class, - helics, - vault, - wai, - }: - mkDerivation { - pname = "helics-wai"; - version = "0.5.1"; - sha256 = "10rb9l4sf31h59f5pwv54vqjnlm047mbq5gvhv5wblkh53ch1b31"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - bytestring - data-default-class - helics - vault - wai - ]; - description = "New Relic® agent SDK wrapper for wai"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "helisp" = callPackage ( - { - mkDerivation, - base, - containers, - mtl, - parsec, - process, - }: - mkDerivation { - pname = "helisp"; - version = "0.1"; - sha256 = "1j495j3kc43d34aviln6jrab3ydzsp1hrnk079p53mcnx2rpjz81"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - containers - mtl - parsec - process - ]; - description = "An incomplete Elisp compiler"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "helisp"; - broken = true; - } - ) { }; - - "helium" = callPackage ( - { - mkDerivation, - base, - containers, - directory, - filepath, - lvmlib, - mtl, - network, - parsec, - process, - Top, - transformers, - wl-pprint, - }: - mkDerivation { - pname = "helium"; - version = "1.8.1"; - sha256 = "0vwk8h5fwl63pjcydwndqgpikfjdm37w7gjmmgac95gl66fc5h5j"; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base - containers - directory - filepath - lvmlib - mtl - network - parsec - process - Top - transformers - wl-pprint - ]; - executableHaskellDepends = [ - base - containers - directory - filepath - lvmlib - mtl - network - parsec - process - Top - transformers - wl-pprint - ]; - description = "The Helium Compiler"; - license = "GPL"; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "helium-overture" = callPackage ( - { - mkDerivation, - base, - bytestring, - deepseq, - lifted-base, - mtl, - random, - text, - transformers, - }: - mkDerivation { - pname = "helium-overture"; - version = "1.0.0"; - sha256 = "1zrbikbrr73gniy5n60zdbkgh7rylcyb2a52k9l6mxwazi5j3nzw"; - libraryHaskellDepends = [ - base - bytestring - deepseq - lifted-base - mtl - random - text - transformers - ]; - description = "A backwards-compatible, modern replacement for the Prelude"; - license = lib.licenses.publicDomain; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "helix" = callPackage ( - { - mkDerivation, - aeson, - base, - blaze-builder, - bytestring, - case-insensitive, - containers, - cookie, - data-default-class, - filepath, - hspec, - hspec-wai, - hspec-wai-json, - http-types, - mime-types, - monad-loops, - mtl, - path-pieces, - random, - template-haskell, - text, - vault, - wai, - wai-app-static, - wai-extra, - }: - mkDerivation { - pname = "helix"; - version = "0.9.5"; - sha256 = "1aqzb17qzm2372nqlwlslz5iykx1w0h8xlk6xhawzdhd5zhlpqi0"; - libraryHaskellDepends = [ - aeson - base - blaze-builder - bytestring - case-insensitive - containers - cookie - data-default-class - filepath - http-types - mime-types - monad-loops - mtl - path-pieces - random - template-haskell - text - vault - wai - wai-app-static - wai-extra - ]; - testHaskellDepends = [ - aeson - base - hspec - hspec-wai - hspec-wai-json - text - wai - ]; - description = "Web development micro framework for haskell with typesafe URLs"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "hell" = callPackage ( - { - mkDerivation, - aeson, - async, - base, - bytestring, - constraints, - containers, - directory, - ghc-prim, - haskell-src-exts, - hspec, - lucid2, - mtl, - optparse-applicative, - QuickCheck, - syb, - template-haskell, - temporary, - text, - th-lift, - th-orphans, - typed-process, - unliftio, - vector, - }: - mkDerivation { - pname = "hell"; - version = "666.20250113"; - sha256 = "0fbzsl8qmsfdnl05xf3j133dngiidsfkc31lv9y28b04slgqbga1"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - aeson - async - base - bytestring - constraints - containers - directory - ghc-prim - haskell-src-exts - hspec - lucid2 - mtl - optparse-applicative - QuickCheck - syb - template-haskell - temporary - text - th-lift - th-orphans - typed-process - unliftio - vector - ]; - description = "Haskell-based shell scripting language"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "hell"; - broken = true; - } - ) { }; - - "hellage" = callPackage ( - { - mkDerivation, - base, - bytestring, - containers, - directory, - hellnet, - hjpath, - hjson, - HTTP, - Lucu, - mtl, - network, - regex-pcre, - safe, - stm, - tar, - utf8-string, - zlib, - }: - mkDerivation { - pname = "hellage"; - version = "0.1.1"; - sha256 = "1gqz042qycwhka6fyma6fb104mi8wd22nsbywrini3m3nib5ci75"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - bytestring - containers - directory - hellnet - hjpath - hjson - HTTP - Lucu - mtl - network - regex-pcre - safe - stm - tar - utf8-string - zlib - ]; - description = "Distributed hackage mirror"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "hellnet" = callPackage ( - { - mkDerivation, - base, - bytestring, - containers, - Crypto, - directory, - filepath, - haskell98, - hjpath, - hjson, - HTTP, - Lucu, - mtl, - network, - old-locale, - parsec, - pretty, - process, - random, - regex-posix, - RSA, - safe, - time, - unix, - uri, - utf8-string, - }: - mkDerivation { - pname = "hellnet"; - version = "0.1.1"; - sha256 = "0fb4r9nb39l1qr7xczgkx5i93cv4rqrin0fl22qq4h12ajvrp6m6"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - bytestring - Crypto - directory - filepath - haskell98 - hjpath - hjson - HTTP - old-locale - parsec - pretty - process - random - RSA - safe - time - unix - uri - utf8-string - ]; - executableHaskellDepends = [ - base - containers - Lucu - mtl - network - regex-posix - ]; - description = "Simple, distributed, anonymous data sharing network"; - license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "hello" = callPackage ( - { mkDerivation, base }: - mkDerivation { - pname = "hello"; - version = "1.0.0.2"; - sha256 = "1x6q7frbrc4jdfx1qhxrydmdp5k7mm3lx504d7rhg6z2m6ibbh57"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ base ]; - description = "Hello World, an example package"; - license = lib.licenses.bsd3; - mainProgram = "hello"; - } - ) { }; - - "helm" = callPackage ( - { - mkDerivation, - base, - cairo, - containers, - elerea, - hspec, - linear, - mtl, - pango, - random, - sdl2, - stm, - text, - transformers, - }: - mkDerivation { - pname = "helm"; - version = "1.0.0"; - sha256 = "0333xy5h7gskmk5a1pa9awy61yvkfx3p6bhwami1pqcx2wn11d1d"; - revision = "1"; - editedCabalFile = "03vh1ws729h9r9r325r0v5hmvpy35kz4a8szp8hggyjbxibsh0nk"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - cairo - containers - elerea - linear - mtl - pango - sdl2 - stm - text - transformers - ]; - executableHaskellDepends = [ - base - linear - random - ]; - testHaskellDepends = [ - base - hspec - ]; - description = "A functionally reactive game engine"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - mainProgram = "helm-example-flappy"; - broken = true; - } - ) { }; - - "help-esb" = callPackage ( - { - mkDerivation, - aeson, - base, - bytestring, - containers, - MissingH, - network, - network-uri, - text, - uuid, - }: - mkDerivation { - pname = "help-esb"; - version = "0.1.6"; - sha256 = "0fy0dygx3hdkbdip7gppk25akjar0p2px0s5q7sl1lmzgkcl1016"; - libraryHaskellDepends = [ - aeson - base - bytestring - containers - MissingH - network - network-uri - text - uuid - ]; - description = "A Haskell client for the Help.com team's ESB."; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "hemkay" = callPackage ( - { - mkDerivation, - array, - base, - binary, - bytestring, - hemkay-core, - portaudio, - }: - mkDerivation { - pname = "hemkay"; - version = "0.2.0"; - sha256 = "16f1nzpi20j7fza1rs1b89mhyni4162q2x4l3ixrnd82yjmcmc1l"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - array - base - binary - bytestring - hemkay-core - portaudio - ]; - description = "A module music mixer and player"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "hemkay"; - broken = true; - } - ) { }; - - "hemkay-core" = callPackage ( - { - mkDerivation, - array, - base, - binary, - bytestring, - }: - mkDerivation { - pname = "hemkay-core"; - version = "0.1.4"; - sha256 = "0br41879jynw3dzb2hlb07m55zmzgyim6gi8i48bzimbi70c9z89"; - libraryHaskellDepends = [ - array - base - binary - bytestring - ]; - description = "A device independent module music mixer"; - license = lib.licenses.bsd3; - } - ) { }; - - "hemokit" = callPackage ( - { - mkDerivation, - aeson, - base, - base64-bytestring, - bytestring, - cairo, - cipher-aes, - conduit, - criterion, - deepseq, - deepseq-generics, - gtk, - hidapi, - hspec, - HUnit, - mtl, - network-simple, - optparse-applicative, - pretty-show, - robot, - split, - svgcairo, - text, - time, - transformers, - vector, - vector-fftw, - websockets, - }: - mkDerivation { - pname = "hemokit"; - version = "0.6.6"; - sha256 = "0mfz2dvl35x08gpqaxj7gflzw7fqnkq6cggd94i611lzrrd3rvl3"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson - base - base64-bytestring - bytestring - cipher-aes - conduit - deepseq - deepseq-generics - hidapi - mtl - network-simple - optparse-applicative - text - vector - websockets - ]; - executableHaskellDepends = [ - aeson - base - bytestring - cairo - conduit - gtk - mtl - network-simple - optparse-applicative - pretty-show - robot - split - svgcairo - time - transformers - vector - vector-fftw - websockets - ]; - testHaskellDepends = [ - base - bytestring - hspec - HUnit - vector - ]; - benchmarkHaskellDepends = [ - base - conduit - criterion - mtl - ]; - description = "Haskell port of the Emokit EEG project"; + executableToolDepends = [ + alex + happy + ]; + description = "Typechecking terms of the Edinburgh Logical Framework (LF)"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; + mainProgram = "helf"; } ) { }; - "hen" = callPackage ( + "helic" = callPackage ( { mkDerivation, base, - bitset, - exceptions, - mtl, - QuickCheck, + chronos, + containers, + exon, + fast-logger, + gi-gdk, + gi-glib, + gi-gtk, + hostname, + optparse-applicative, + path, + path-io, + polysemy, + polysemy-chronos, + polysemy-conc, + polysemy-http, + polysemy-log, + polysemy-plugin, + polysemy-process, + polysemy-test, + polysemy-time, + prelate, + random, + servant-client, + servant-server, + table-layout, tasty, - tasty-quickcheck, + terminal-size, + torsor, transformers, - uuid, - xenctrl, + typed-process, + wai-extra, + warp, + yaml, + zeugma, }: mkDerivation { - pname = "hen"; - version = "0.1.3"; - sha256 = "1ri6brxmc2m09jx2r9p47lgpfn8zkxy147hyyw3x2pw3g6cgsill"; + pname = "helic"; + version = "0.6.1.0"; + sha256 = "0zwgnhgm571a62bxgvc7gwrbi1klydby0gb6j21y28h3cx12m1a5"; + isLibrary = true; + isExecutable = true; libraryHaskellDepends = [ base - bitset - exceptions - mtl + chronos + exon + fast-logger + gi-gdk + gi-glib + gi-gtk + hostname + optparse-applicative + path + path-io + polysemy + polysemy-chronos + polysemy-conc + polysemy-http + polysemy-log + polysemy-plugin + polysemy-process + polysemy-time + prelate + servant-client + servant-server + table-layout + terminal-size transformers - uuid + typed-process + wai-extra + warp + yaml + ]; + executableHaskellDepends = [ + base + polysemy + polysemy-plugin + prelate ]; - librarySystemDepends = [ xenctrl ]; testHaskellDepends = [ base - bitset - exceptions - mtl - QuickCheck + chronos + containers + exon + path + polysemy + polysemy-chronos + polysemy-log + polysemy-plugin + polysemy-test + prelate + random tasty - tasty-quickcheck - transformers - uuid + torsor + zeugma ]; - description = "Haskell bindings to Xen hypervisor interface"; - license = lib.licenses.mit; + description = "Clipboard Manager"; + license = "BSD-2-Clause-Patent"; hydraPlatforms = lib.platforms.none; + mainProgram = "hel"; } - ) { xenctrl = null; }; + ) { }; - "henet" = callPackage ( + "hell" = callPackage ( { mkDerivation, + aeson, + async, base, - bitset, bytestring, - network, - typesafe-endian, + constraints, + containers, + directory, + ghc-prim, + haskell-src-exts, + hspec, + lucid2, + mtl, + optparse-applicative, + QuickCheck, + syb, + template-haskell, + temporary, + text, + th-lift, + th-orphans, + typed-process, + unliftio, + vector, }: mkDerivation { - pname = "henet"; - version = "1.3.9.3"; - sha256 = "0pm5lnn7rc647ic404c8bmki9wfrkc0mdmmkng50vv0bm2d7z5aq"; - libraryHaskellDepends = [ + pname = "hell"; + version = "666.20250113"; + sha256 = "0fbzsl8qmsfdnl05xf3j133dngiidsfkc31lv9y28b04slgqbga1"; + isLibrary = false; + isExecutable = true; + executableHaskellDepends = [ + aeson + async base - bitset bytestring - network - typesafe-endian + constraints + containers + directory + ghc-prim + haskell-src-exts + hspec + lucid2 + mtl + optparse-applicative + QuickCheck + syb + template-haskell + temporary + text + th-lift + th-orphans + typed-process + unliftio + vector ]; - description = "Bindings and high level interface for to ENet v1.3.9"; - license = lib.licenses.mit; + description = "Haskell-based shell scripting language"; + license = lib.licenses.bsd3; hydraPlatforms = lib.platforms.none; + mainProgram = "hell"; + broken = true; + } + ) { }; + + "hello" = callPackage ( + { mkDerivation, base }: + mkDerivation { + pname = "hello"; + version = "1.0.0.2"; + sha256 = "1x6q7frbrc4jdfx1qhxrydmdp5k7mm3lx504d7rhg6z2m6ibbh57"; + isLibrary = false; + isExecutable = true; + executableHaskellDepends = [ base ]; + description = "Hello World, an example package"; + license = lib.licenses.bsd3; + mainProgram = "hello"; } ) { }; - "hepevt" = callPackage ( + "hemkay-core" = callPackage ( { mkDerivation, + array, + base, + binary, bytestring, - haskell2010, - lha, }: mkDerivation { - pname = "hepevt"; - version = "0.5"; - sha256 = "0b7syzfzbcznjb98hi4k8bp46ss08s9qg2763bnnm1b10i7km23z"; + pname = "hemkay-core"; + version = "0.1.4"; + sha256 = "0br41879jynw3dzb2hlb07m55zmzgyim6gi8i48bzimbi70c9z89"; libraryHaskellDepends = [ + array + base + binary bytestring - haskell2010 - lha ]; - description = "HEPEVT parser"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; + description = "A device independent module music mixer"; + license = lib.licenses.bsd3; } ) { }; @@ -320695,31 +184495,6 @@ self: { } ) { }; - "her-lexer-parsec" = callPackage ( - { - mkDerivation, - base, - her-lexer, - parsec, - transformers, - }: - mkDerivation { - pname = "her-lexer-parsec"; - version = "0.0.0"; - sha256 = "1gkcd9ikaxjirxh8haq8b9a372n1dlaq63n9xzq9gsyazkxz7lgn"; - libraryHaskellDepends = [ - base - her-lexer - parsec - transformers - ]; - description = "Parsec frontend to \"her-lexer\" for Haskell source code"; - license = lib.licenses.publicDomain; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "herb" = callPackage ( { mkDerivation, @@ -320760,40 +184535,6 @@ self: { } ) { }; - "herbalizer" = callPackage ( - { - mkDerivation, - base, - containers, - ghc-prim, - indents, - mtl, - parsec, - regex-posix, - }: - mkDerivation { - pname = "herbalizer"; - version = "0.4.9"; - sha256 = "1gm1ya1p1i734sxadbmj1zn6mbq1gssmzp897h5xjgb8vsa2fxs6"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - containers - ghc-prim - indents - mtl - parsec - regex-posix - ]; - description = "HAML to ERB translator"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - mainProgram = "herbalizer"; - broken = true; - } - ) { }; - "hercules-ci-agent" = callPackage ( @@ -321861,160 +185602,6 @@ self: { } ) { }; - "hermit" = callPackage ( - { - mkDerivation, - alex, - ansi-terminal, - array, - base, - containers, - data-default-class, - directory, - fail, - filepath, - ghc, - ghc-paths, - happy, - haskeline, - kure, - marked-pretty, - mtl, - process, - semigroups, - stm, - tasty, - tasty-golden, - temporary, - terminal-size, - transformers, - }: - mkDerivation { - pname = "hermit"; - version = "1.0.1"; - sha256 = "0jcjj0z0rpdahnkp0rgclxmb5snjc76ps24ay4dhhnyyx4i7ib1z"; - revision = "1"; - editedCabalFile = "1705wd6y8cvz8wv544zlq1azxmrvwdhg3hixl1nw3l50d3i7qg0i"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - ansi-terminal - array - base - containers - data-default-class - directory - fail - ghc - haskeline - kure - marked-pretty - mtl - process - semigroups - stm - temporary - terminal-size - transformers - ]; - libraryToolDepends = [ - alex - happy - ]; - executableHaskellDepends = [ base ]; - testHaskellDepends = [ - base - directory - filepath - ghc - ghc-paths - process - tasty - tasty-golden - temporary - ]; - description = "Haskell Equational Reasoning Model-to-Implementation Tunnel"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "hermit"; - } - ) { }; - - "hermit-syb" = callPackage ( - { - mkDerivation, - base, - containers, - ghc, - ghc-prim, - hermit, - syb, - template-haskell, - }: - mkDerivation { - pname = "hermit-syb"; - version = "0.1.0.0"; - sha256 = "1970n7q88q76dnp2h7h8r1d6psq0d9pdvrim556rqiv8smwi661x"; - libraryHaskellDepends = [ - base - containers - ghc - ghc-prim - hermit - syb - template-haskell - ]; - description = "HERMIT plugin for optimizing Scrap-Your-Boilerplate traversals"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "herms" = callPackage ( - { - mkDerivation, - ansi-terminal, - base, - brick, - directory, - filepath, - microlens, - microlens-th, - mtl, - optparse-applicative, - semigroups, - split, - vty, - }: - mkDerivation { - pname = "herms"; - version = "1.9.0.4"; - sha256 = "1b25jli7vp12fsc99r47d409yss9n11r2bpvhagbwfgp88sm8pxq"; - isLibrary = false; - isExecutable = true; - enableSeparateDataOutput = true; - executableHaskellDepends = [ - ansi-terminal - base - brick - directory - filepath - microlens - microlens-th - mtl - optparse-applicative - semigroups - split - vty - ]; - description = "A command-line manager for delicious kitchen recipes"; - license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - mainProgram = "herms"; - broken = true; - } - ) { }; - "hero-club-five-tenets" = callPackage ( { mkDerivation, @@ -322072,300 +185659,6 @@ self: { } ) { }; - "heroku-persistent" = callPackage ( - { - mkDerivation, - base, - bytestring, - heroku, - hspec, - persistent-postgresql, - text, - }: - mkDerivation { - pname = "heroku-persistent"; - version = "0.2.0"; - sha256 = "0368pxnxasj0lxllya00ramva8dlkc4hfbv4rnp93p6vc49i1hph"; - libraryHaskellDepends = [ - base - bytestring - heroku - persistent-postgresql - text - ]; - testHaskellDepends = [ - base - hspec - persistent-postgresql - ]; - description = "Parse DATABASE_URL into configuration types for Persistent"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "herringbone" = callPackage ( - { - mkDerivation, - base, - bytestring, - containers, - directory, - http-types, - mtl, - old-locale, - process, - process-listlike, - system-fileio, - system-filepath, - text, - time, - transformers, - unix-compat, - }: - mkDerivation { - pname = "herringbone"; - version = "0.1.1"; - sha256 = "1xpdz24dinm56z4gx51frw19j2169ms9jvasg8xixi944q34hwmk"; - libraryHaskellDepends = [ - base - bytestring - containers - directory - http-types - mtl - old-locale - process - process-listlike - system-fileio - system-filepath - text - time - transformers - unix-compat - ]; - description = "A library for compiling and serving static web assets"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "herringbone-embed" = callPackage ( - { - mkDerivation, - base, - bytestring, - file-embed, - herringbone, - system-fileio, - system-filepath, - template-haskell, - text, - }: - mkDerivation { - pname = "herringbone-embed"; - version = "0.1.1"; - sha256 = "02i0k29fg0nb4ax0yaw6bnrnb0v0rk2fy7lckd5f5bny557mk1h6"; - libraryHaskellDepends = [ - base - bytestring - file-embed - herringbone - system-fileio - system-filepath - template-haskell - text - ]; - description = "Embed preprocessed web assets in your executable with Template Haskell"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "herringbone-wai" = callPackage ( - { - mkDerivation, - base, - bytestring, - herringbone, - http-types, - system-fileio, - system-filepath, - text, - time, - wai, - wai-app-static, - }: - mkDerivation { - pname = "herringbone-wai"; - version = "0.1.1"; - sha256 = "1kw0n89qqazyap9w315pa6k4smnw1pf8s82grbm8z9d9xyhk980f"; - libraryHaskellDepends = [ - base - bytestring - herringbone - http-types - system-fileio - system-filepath - text - time - wai - wai-app-static - ]; - description = "Wai adapter for the Herringbone web asset preprocessor"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "hesh" = callPackage ( - { - mkDerivation, - aeson, - base, - bytestring, - Cabal, - cartel, - cmdargs, - containers, - cryptohash, - data-default, - directory, - exceptions, - filemanip, - filepath, - hackage-db, - haskell-src-exts, - parsec, - process, - template-haskell, - text, - time, - transformers, - uniplate, - unix, - }: - mkDerivation { - pname = "hesh"; - version = "1.11.0"; - sha256 = "1c704x1k2sbj87a4risy0d2aj5plf41205cn12f2q9w2agh3zv2b"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - exceptions - filemanip - parsec - process - template-haskell - text - transformers - ]; - executableHaskellDepends = [ - aeson - base - bytestring - Cabal - cartel - cmdargs - containers - cryptohash - data-default - directory - filepath - hackage-db - haskell-src-exts - parsec - process - text - time - uniplate - unix - ]; - description = "the Haskell Extensible Shell: Haskell for Bash-style scripts"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - mainProgram = "hesh"; - } - ) { }; - - "hesql" = callPackage ( - { - mkDerivation, - base, - filepath, - haskell-src, - HDBC, - HDBC-postgresql, - hssqlppp, - parsec, - }: - mkDerivation { - pname = "hesql"; - version = "0.8"; - sha256 = "1xxmm5b3n8wj548lmf7hp05g7qwy0sq7mkh0g98n7z1iqdmfamwa"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - filepath - haskell-src - HDBC - HDBC-postgresql - hssqlppp - parsec - ]; - description = "Haskell's embedded SQL"; - license = "GPL"; - hydraPlatforms = lib.platforms.none; - mainProgram = "hesql"; - } - ) { }; - - "hetero-dict" = callPackage ( - { - mkDerivation, - aeson, - base, - criterion, - deepseq, - hvect, - primitive, - template-haskell, - text, - unordered-containers, - vinyl, - }: - mkDerivation { - pname = "hetero-dict"; - version = "0.1.1.0"; - sha256 = "0s9ild828xa628x6swrk4v2jnqdkam18bamrarvgp6q9b4b8y2w8"; - revision = "1"; - editedCabalFile = "155bm9b10ar0vhwy46dz68h53379x31xzkdzvhki3y0ln5j8y74i"; - libraryHaskellDepends = [ - aeson - base - primitive - template-haskell - text - unordered-containers - ]; - benchmarkHaskellDepends = [ - base - criterion - deepseq - hvect - template-haskell - vinyl - ]; - description = "Fast heterogeneous data structures"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "hetero-map" = callPackage ( { mkDerivation, base }: mkDerivation { @@ -322527,93 +185820,6 @@ self: { } ) { }; - "heterogeneous-list-literals" = callPackage ( - { - mkDerivation, - base, - Only, - }: - mkDerivation { - pname = "heterogeneous-list-literals"; - version = "0.2.0.0"; - sha256 = "1b21ap20mp3vyj0cx4b3sj645bdykgf7ap3vsmbhmccq4iklvran"; - libraryHaskellDepends = [ - base - Only - ]; - testHaskellDepends = [ base ]; - description = "Allows the use of tuples as literals for Heterogeneous collections"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "heterolist" = callPackage ( - { - mkDerivation, - base, - constraint-manip, - hspec, - indextype, - polydata, - }: - mkDerivation { - pname = "heterolist"; - version = "0.2.0.0"; - sha256 = "0pf15l4ry7i8dhga7l5fpk2girxbplym4csl9vg230xp58h4m8gj"; - libraryHaskellDepends = [ - base - constraint-manip - indextype - polydata - ]; - testHaskellDepends = [ - base - constraint-manip - hspec - indextype - polydata - ]; - description = "A heterogeneous list type"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "hetris" = callPackage ( - { - mkDerivation, - array, - base, - hscurses, - ncurses, - old-time, - random, - }: - mkDerivation { - pname = "hetris"; - version = "0.2"; - sha256 = "0sj0grykzb7xq7iz0nj27c4fzhcr9f0yshfcq81xq2wdmg09j8yx"; - isLibrary = false; - isExecutable = true; - enableSeparateDataOutput = true; - executableHaskellDepends = [ - array - base - hscurses - old-time - random - ]; - executableSystemDepends = [ ncurses ]; - description = "Text Tetris"; - license = "GPL"; - hydraPlatforms = lib.platforms.none; - mainProgram = "hetris"; - broken = true; - } - ) { inherit (pkgs) ncurses; }; - "hetzner" = callPackage ( { mkDerivation, @@ -322659,35 +185865,6 @@ self: { } ) { }; - "heukarya" = callPackage ( - { - mkDerivation, - base, - containers, - deepseq, - parallel, - random, - text, - }: - mkDerivation { - pname = "heukarya"; - version = "0.2.0.2"; - sha256 = "1ycfy29crdj8ch07wm77lfpg656vm2vl34mdqvsxfxijdxb23cxg"; - libraryHaskellDepends = [ - base - containers - deepseq - parallel - random - text - ]; - description = "A genetic programming based on tree structure"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "hevm" = callPackage ( @@ -322905,68 +186082,6 @@ self: { inherit (pkgs) secp256k1; }; - "hevolisa" = callPackage ( - { - mkDerivation, - base, - bytestring, - cairo, - filepath, - haskell98, - }: - mkDerivation { - pname = "hevolisa"; - version = "0.0.1"; - sha256 = "1ys7xqdrnvwn6z2vgmh49zhfxj73pdmscblqcjk6qrwmpb2xha2s"; - isLibrary = false; - isExecutable = true; - enableSeparateDataOutput = true; - executableHaskellDepends = [ - base - bytestring - cairo - filepath - haskell98 - ]; - description = "Genetic Mona Lisa problem in Haskell"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "hevolisa"; - } - ) { }; - - "hevolisa-dph" = callPackage ( - { - mkDerivation, - base, - bytestring, - cairo, - dph-seq, - filepath, - haskell98, - }: - mkDerivation { - pname = "hevolisa-dph"; - version = "0.0.1"; - sha256 = "0jsynxd33r7d5s5vn204z4wdgm4cq6qyjs7afa77p94ni5m2p3kb"; - isLibrary = false; - isExecutable = true; - enableSeparateDataOutput = true; - executableHaskellDepends = [ - base - bytestring - cairo - dph-seq - filepath - haskell98 - ]; - description = "Genetic Mona Lisa problem in Haskell - using Data Parallel Haskell"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "hevolisa"; - } - ) { }; - "hex" = callPackage ( { mkDerivation, @@ -323019,27 +186134,6 @@ self: { } ) { }; - "hexchat" = callPackage ( - { - mkDerivation, - base, - containers, - }: - mkDerivation { - pname = "hexchat"; - version = "0.0.2.0"; - sha256 = "1bx49z3ycc24bsn0x0617x0gmgapan6qnwnwq6v0w06gjrahr4r4"; - libraryHaskellDepends = [ - base - containers - ]; - description = "Haskell scripting interface for HexChat"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "hexdump" = callPackage ( { mkDerivation, base }: mkDerivation { @@ -323053,67 +186147,6 @@ self: { } ) { }; - "hexif" = callPackage ( - { - mkDerivation, - base, - binary, - bytestring, - filepath, - }: - mkDerivation { - pname = "hexif"; - version = "0.2.0.0"; - sha256 = "1asv5vs694mcifffvm5a4gsplpz7frk3p3zr9lqqv1f172ql9lql"; - libraryHaskellDepends = [ - base - binary - bytestring - filepath - ]; - description = "Reading Exif data form a JPEG file with Haskell"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "hexmino" = callPackage ( - { - mkDerivation, - base, - containers, - directory, - filepath, - gloss, - grid, - optparse-applicative, - random, - }: - mkDerivation { - pname = "hexmino"; - version = "0.1.1.0"; - sha256 = "0l6gjjbzz2sa17b8glyiknf1ndwkp3089af52pj8fw6cg9ckvspx"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - containers - directory - filepath - gloss - grid - optparse-applicative - random - ]; - description = "A small game based on domino-like hexagonal tiles"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "hexmino"; - broken = true; - } - ) { }; - "hexml" = callPackage ( { mkDerivation, @@ -323254,69 +186287,6 @@ self: { } ) { }; - "hexpat-iteratee" = callPackage ( - { - mkDerivation, - base, - bytestring, - containers, - extensible-exceptions, - hexpat, - iteratee, - List, - parallel, - transformers, - }: - mkDerivation { - pname = "hexpat-iteratee"; - version = "0.6"; - sha256 = "10cqgrrqg518lhr9mk6gq48fgc0sjzwiakm2amhqgfflva3q0nqn"; - libraryHaskellDepends = [ - base - bytestring - containers - extensible-exceptions - hexpat - iteratee - List - parallel - transformers - ]; - description = "Chunked XML parsing using iteratees"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "hexpat-lens" = callPackage ( - { - mkDerivation, - base, - bytestring, - deepseq, - hexpat, - hexpat-tagsoup, - lens, - }: - mkDerivation { - pname = "hexpat-lens"; - version = "0.1.9"; - sha256 = "0vy96jq415rp6njkvnp4in07j052m68yfr1n1mdcbfd3j5a0dw39"; - libraryHaskellDepends = [ - base - bytestring - deepseq - hexpat - hexpat-tagsoup - lens - ]; - description = "Lenses for Hexpat"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "hexpat-pickle" = callPackage ( { mkDerivation, @@ -323346,41 +186316,6 @@ self: { } ) { }; - "hexpat-pickle-generic" = callPackage ( - { - mkDerivation, - base, - bytestring, - hexpat, - QuickCheck, - test-framework, - test-framework-quickcheck2, - text, - }: - mkDerivation { - pname = "hexpat-pickle-generic"; - version = "0.1.7"; - sha256 = "0l0h5n1afkg8zjq28h7aidsskdzf1i5lnz9jlq0hblwa9wamamis"; - libraryHaskellDepends = [ - base - bytestring - hexpat - text - ]; - testHaskellDepends = [ - base - bytestring - QuickCheck - test-framework - test-framework-quickcheck2 - ]; - description = "Picklers for de/serialising Generic data types to and from XML"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "hexpat-streamparser" = callPackage ( { mkDerivation, @@ -323442,107 +186377,6 @@ self: { } ) { }; - "hexpr" = callPackage ( - { - mkDerivation, - base, - data-ref, - either, - mtl, - parsec, - transformers, - }: - mkDerivation { - pname = "hexpr"; - version = "0.0.0.0"; - sha256 = "0wpmbzxdl63r2p398101ywzfs7b4p4x8ds4zzqbhvhs2r0fsg5wv"; - libraryHaskellDepends = [ - base - data-ref - either - mtl - parsec - transformers - ]; - description = "A framework for symbolic, homoiconic languages"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "hexpress" = callPackage ( - { - mkDerivation, - aeson, - base, - binary, - bytestring, - case-insensitive, - filepath, - http-types, - mime-types, - mtl, - text, - transformers, - vault, - wai, - warp, - }: - mkDerivation { - pname = "hexpress"; - version = "0.1.0.0"; - sha256 = "1zfcydsh88v0z7qywnq1iildlcm3sskvhfc41nqwkj9a5g1d42gk"; - libraryHaskellDepends = [ - aeson - base - binary - bytestring - case-insensitive - filepath - http-types - mime-types - mtl - text - transformers - vault - wai - warp - ]; - description = "An express-like http framework"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "hexquote" = callPackage ( - { - mkDerivation, - base, - bytestring, - containers, - parsec, - template-haskell, - }: - mkDerivation { - pname = "hexquote"; - version = "0.1"; - sha256 = "0fr0sn2k12yvbbwmldqkmwgg0qk6bfd6811h2dgpq77821y62hq8"; - libraryHaskellDepends = [ - base - bytestring - containers - parsec - template-haskell - ]; - description = "Hexadecimal ByteString literals, with placeholders that bind variables"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "hexstring" = callPackage ( { mkDerivation, @@ -323579,52 +186413,6 @@ self: { } ) { }; - "hext" = callPackage ( - { - mkDerivation, - base, - containers, - text, - unordered-containers, - }: - mkDerivation { - pname = "hext"; - version = "0.1.0.4"; - sha256 = "0l8ldgp97m733f39i10850wdarz2q731ja7cvhrmagc54mznzrx2"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - containers - text - unordered-containers - ]; - executableHaskellDepends = [ - base - text - ]; - description = "a text classification library"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "hext-exe"; - broken = true; - } - ) { }; - - "hextra" = callPackage ( - { mkDerivation, base }: - mkDerivation { - pname = "hextra"; - version = "1.1.0.1"; - sha256 = "0iq6kj7mijxppjghpqx19s79sj6k1jqf21gfi8jqbj6bq7j2cdvj"; - libraryHaskellDepends = [ base ]; - description = "Generic and niche utility functions and more for Haskell"; - license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "hextream" = callPackage ( { mkDerivation, @@ -323687,117 +186475,6 @@ self: { } ) { }; - "heyefi" = callPackage ( - { - mkDerivation, - base, - bytestring, - case-insensitive, - configurator, - directory, - exceptions, - filepath, - HandsomeSoup, - hspec, - hspec-wai, - http-types, - hxt, - iso8601-time, - MissingH, - mtl, - multipart, - optparse-applicative, - random, - silently, - stm, - tar, - temporary, - text, - time, - transformers, - unix, - unordered-containers, - utf8-string, - wai, - wai-extra, - warp, - }: - mkDerivation { - pname = "heyefi"; - version = "2.0.0.2"; - sha256 = "1dhjvg5hhqj7apbsz5sq5p05rp3g07igc00r8qa7dmgixrp0a77b"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - bytestring - case-insensitive - configurator - directory - exceptions - filepath - HandsomeSoup - http-types - hxt - iso8601-time - MissingH - mtl - multipart - optparse-applicative - random - stm - tar - temporary - text - time - transformers - unix - unordered-containers - utf8-string - wai - warp - ]; - testHaskellDepends = [ - base - bytestring - case-insensitive - configurator - directory - exceptions - filepath - HandsomeSoup - hspec - hspec-wai - http-types - hxt - iso8601-time - MissingH - mtl - multipart - optparse-applicative - random - silently - stm - tar - temporary - text - time - transformers - unix - unordered-containers - utf8-string - wai - wai-extra - warp - ]; - description = "A server for Eye-Fi SD cards"; - license = lib.licenses.publicDomain; - hydraPlatforms = lib.platforms.none; - mainProgram = "heyefi"; - broken = true; - } - ) { }; - "heystone" = callPackage ( { mkDerivation, @@ -323871,102 +186548,6 @@ self: { } ) { }; - "hfann" = - callPackage - ( - { - mkDerivation, - base, - doublefann, - fann, - }: - mkDerivation { - pname = "hfann"; - version = "0.4.2"; - sha256 = "09pr24riz63irvykn6csbnm28z35ikwzg52ksah1p7zrywmgq9as"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base ]; - librarySystemDepends = [ doublefann ]; - libraryPkgconfigDepends = [ fann ]; - description = "Haskell binding to the FANN library"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) - { - doublefann = null; - fann = null; - }; - - "hfd" = callPackage ( - { - mkDerivation, - base, - bytestring, - haskeline, - iteratee, - MissingH, - MonadCatchIO-transformers, - network, - transformers, - }: - mkDerivation { - pname = "hfd"; - version = "0.0.2"; - sha256 = "1n60h76hzkb4avnsl6lybq7ya4p4ghcdlplyml7fqwg7i20cak54"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - bytestring - haskeline - iteratee - MissingH - MonadCatchIO-transformers - network - transformers - ]; - description = "Flash debugger"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "hfd"; - } - ) { }; - - "hfiar" = callPackage ( - { - mkDerivation, - base, - eprocess, - mtl, - wx, - wxcore, - }: - mkDerivation { - pname = "hfiar"; - version = "2.1.1"; - sha256 = "1jsq33cdpdd52yriky989vd8wlafi9dq1bxzild7sjw1mql69d71"; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base - eprocess - mtl - ]; - executableHaskellDepends = [ - wx - wxcore - ]; - description = "Four in a Row in Haskell!!"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "hfiar"; - } - ) { }; - "hflags" = callPackage ( { mkDerivation, @@ -324102,45 +186683,6 @@ self: { } ) { }; - "hfoil" = callPackage ( - { - mkDerivation, - base, - directory, - haskeline, - hmatrix, - HTTP, - linear, - not-gloss, - parsec, - transformers, - }: - mkDerivation { - pname = "hfoil"; - version = "0.2.0.2"; - sha256 = "0jwnyfl1rcd2439738jgs0rgl0p09d1j877z84g0ax3xh7cm4zj1"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - directory - haskeline - hmatrix - HTTP - linear - not-gloss - parsec - transformers - ]; - executableHaskellDepends = [ base ]; - description = "Hess-Smith panel code for inviscid 2-d airfoil analysis"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "hfoil"; - broken = true; - } - ) { }; - "hformat" = callPackage ( { mkDerivation, @@ -324171,59 +186713,6 @@ self: { } ) { }; - "hfov" = callPackage ( - { mkDerivation, base }: - mkDerivation { - pname = "hfov"; - version = "1.0.2"; - sha256 = "04qwmjxm06akvpakc5imcx0ls9zlsz74s4r9p7xzj0q5fv20z09l"; - libraryHaskellDepends = [ base ]; - description = "Field-of-view calculation for low-resolution 2D raster grids"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "hfractal" = callPackage ( - { - mkDerivation, - array, - base, - colour, - containers, - data-accessor, - data-accessor-template, - gd, - GLUT, - OpenGL, - OpenGLRaw, - }: - mkDerivation { - pname = "hfractal"; - version = "0.4.2.5"; - sha256 = "060qx7wmqhlavamxxyzjyn2ar1cigvfw5ww7c0r70ns54xm0rw5z"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - array - base - colour - containers - data-accessor - data-accessor-template - gd - GLUT - OpenGL - OpenGLRaw - ]; - description = "OpenGL fractal renderer"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "hfractal"; - } - ) { }; - "hfsevents" = callPackage ( { mkDerivation, @@ -324250,74 +186739,6 @@ self: { } ) { }; - "hfusion" = callPackage ( - { - mkDerivation, - base, - containers, - haskell-src, - mtl, - pretty, - syb, - }: - mkDerivation { - pname = "hfusion"; - version = "0.0.6.1"; - sha256 = "05pisic8s6n2jqymyd2qjifr8kr824v3mflng1a0y4rp8pvbaj7r"; - libraryHaskellDepends = [ - base - containers - haskell-src - mtl - pretty - syb - ]; - description = "A library for fusing a subset of Haskell programs"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "hg-buildpackage" = callPackage ( - { - mkDerivation, - base, - directory, - HSH, - hslogger, - MissingH, - network, - parsec, - regex-compat, - regex-posix, - unix, - }: - mkDerivation { - pname = "hg-buildpackage"; - version = "1.0.4"; - sha256 = "0csibld3wrxi4jp35qqhfm17sw9fd5sca5rs9yd7i7l4jvsmfqhq"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - directory - HSH - hslogger - MissingH - network - parsec - regex-compat - regex-posix - unix - ]; - description = "Tools to help manage Debian packages with Mercurial"; - license = "GPL"; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "hgal" = callPackage ( { mkDerivation, @@ -324357,30 +186778,6 @@ self: { } ) { }; - "hgalib" = callPackage ( - { - mkDerivation, - array, - base, - haskell98, - mtl, - }: - mkDerivation { - pname = "hgalib"; - version = "0.2"; - sha256 = "08a8lmh1rg3d1rmpfhcc2fzyc0kybqhzahx4hrvfrqjw7czcnmrw"; - libraryHaskellDepends = [ - array - base - haskell98 - mtl - ]; - description = "Haskell Genetic Algorithm Library"; - license = lib.licenses.publicDomain; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "hgdal" = callPackage ( { mkDerivation, @@ -324406,138 +186803,6 @@ self: { } ) { inherit (pkgs) gdal; }; - "hgdbmi" = callPackage ( - { - mkDerivation, - base, - directory, - HUnit, - parsec, - process, - stm, - template-haskell, - temporary, - test-framework, - test-framework-hunit, - unix, - }: - mkDerivation { - pname = "hgdbmi"; - version = "0.2"; - sha256 = "1gfmpk9a909vc8khf40lr32l3srqqrfbcprp28dp6g02id1xmck4"; - libraryHaskellDepends = [ - base - parsec - process - stm - unix - ]; - testHaskellDepends = [ - base - directory - HUnit - process - template-haskell - temporary - test-framework - test-framework-hunit - ]; - description = "GDB Machine Interface: program-driven control of GDB"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "hgearman" = callPackage ( - { - mkDerivation, - base, - binary, - bytestring, - monad-control, - mtl, - network, - resource-pool, - transformers, - transformers-base, - unordered-containers, - }: - mkDerivation { - pname = "hgearman"; - version = "0.1.0.2"; - sha256 = "0bfipd7s6czp3aha0jx1yjzfzn8vywiswd07k68q2207j3br8yxk"; - libraryHaskellDepends = [ - base - binary - bytestring - monad-control - mtl - network - resource-pool - transformers - transformers-base - unordered-containers - ]; - description = "A Gearman client for Haskell"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "hgen" = callPackage ( - { - mkDerivation, - base, - directory, - filepath, - hylolib, - mtl, - random, - }: - mkDerivation { - pname = "hgen"; - version = "1.4.0"; - sha256 = "190zm0lkr2ymq91ka84a3v2lhxjv9yl43abqcyxj6c3cjqym9ib5"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - directory - filepath - hylolib - mtl - random - ]; - description = "Random generation of modal and hybrid logic formulas"; - license = "GPL"; - hydraPlatforms = lib.platforms.none; - mainProgram = "hgen"; - } - ) { }; - - "hgeometric" = callPackage ( - { - mkDerivation, - base, - containers, - }: - mkDerivation { - pname = "hgeometric"; - version = "0.0.2.2"; - sha256 = "0l460mmbla7354dldil0d7qzba7dp4jhhsna0s27gdd9aad4flsd"; - libraryHaskellDepends = [ - base - containers - ]; - description = "A geometric library with bindings to GPC"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "hgeometry" = callPackage ( { mkDerivation, @@ -324890,59 +187155,6 @@ self: { } ) { }; - "hgeometry-svg" = callPackage ( - { - mkDerivation, - base, - blaze-markup, - blaze-svg, - bytestring, - deepseq, - doctest, - hgeometry, - hgeometry-combinatorial, - hgeometry-ipe, - lens, - QuickCheck, - semigroupoids, - semigroups, - singletons, - template-haskell, - text, - vinyl, - }: - mkDerivation { - pname = "hgeometry-svg"; - version = "0.9.0.0"; - sha256 = "1aa1qgmq1qvbj8c06nmlvdk3yy9iflas7mz7icfbn9m77zgj1qvs"; - libraryHaskellDepends = [ - base - blaze-markup - blaze-svg - bytestring - deepseq - hgeometry - hgeometry-combinatorial - hgeometry-ipe - lens - QuickCheck - semigroupoids - semigroups - singletons - template-haskell - text - vinyl - ]; - testHaskellDepends = [ - base - doctest - ]; - description = "Writing geometric primitives from HGeometry as SVG Files"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "hgeos" = callPackage ( { mkDerivation, @@ -325074,48 +187286,6 @@ self: { } ) { }; - "hgithub" = callPackage ( - { - mkDerivation, - aeson, - attoparsec, - base, - base64-bytestring, - bytestring, - case-insensitive, - cmdargs, - directory, - http-enumerator, - text, - }: - mkDerivation { - pname = "hgithub"; - version = "0.1.0"; - sha256 = "05dxbz9z457b5nl0wsv95pgah9b74agdfwziqf7x79j5q2qqjc2l"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson - attoparsec - base - base64-bytestring - bytestring - case-insensitive - http-enumerator - text - ]; - executableHaskellDepends = [ - base - cmdargs - directory - ]; - description = "Haskell bindings to the GitHub API"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "hgithub"; - } - ) { }; - "hgl-example" = callPackage ( { mkDerivation, @@ -325176,64 +187346,6 @@ self: { } ) { }; - "hgom" = callPackage ( - { - mkDerivation, - base, - containers, - directory, - filepath, - mtl, - parsec, - wl-pprint, - }: - mkDerivation { - pname = "hgom"; - version = "0.6"; - sha256 = "0amdfdp1xmh506lgfbb4war2spfb4gqls864q18psmvshcwlpsmv"; - isLibrary = false; - isExecutable = true; - enableSeparateDataOutput = true; - executableHaskellDepends = [ - base - containers - directory - filepath - mtl - parsec - wl-pprint - ]; - description = "An haskell port of the java version of gom"; - license = "GPL"; - hydraPlatforms = lib.platforms.none; - mainProgram = "hgom"; - broken = true; - } - ) { }; - - "hgopher" = callPackage ( - { - mkDerivation, - base, - bytestring, - network, - }: - mkDerivation { - pname = "hgopher"; - version = "0.1.0.0"; - sha256 = "0j6ybi8f5csa9rpbpy8dc9p6l6vf2qh2zk589a9nqj2phllz7mwf"; - libraryHaskellDepends = [ - base - bytestring - network - ]; - description = "Gopher server"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "hgraph" = callPackage ( { mkDerivation, @@ -325274,641 +187386,152 @@ self: { base clock containers - random - transformers - ]; - description = "Tools for working on (di)graphs"; - license = lib.licenses.gpl3Only; - } - ) { }; - - "hgreet" = callPackage ( - { - mkDerivation, - aeson, - base, - bytestring, - cpu, - hosc, - network, - }: - mkDerivation { - pname = "hgreet"; - version = "0.1.0.0"; - sha256 = "0z44k67jrplny90gl7lj2ax2piayzaf8ga74jp58pfwcjci6r01m"; - revision = "3"; - editedCabalFile = "02kqa51jn8x1r878pm1pk8gv0agvwmmxnh00cm445wclmydlr6w7"; - libraryHaskellDepends = [ - aeson - base - bytestring - cpu - hosc - network - ]; - description = "Haskell module to interact with the greetd daemon trough it's IPC protocol"; - license = lib.licenses.gpl3Plus; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "hgrep" = callPackage ( - { - mkDerivation, - ansi-terminal, - base, - bytestring, - ghc, - ghc-exactprint, - hscolour, - lens, - optparse-applicative, - pcre-heavy, - template-haskell, - }: - mkDerivation { - pname = "hgrep"; - version = "0.1"; - sha256 = "1pddn24pw8yv1lp3ihbwnanyvrc1nr974sfba2w91shr8m1kimaf"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - ansi-terminal - base - bytestring - ghc - ghc-exactprint - hscolour - lens - pcre-heavy - template-haskell - ]; - executableHaskellDepends = [ - ansi-terminal - base - optparse-applicative - ]; - description = "Search Haskell source code from the command line"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "hgrep"; - broken = true; - } - ) { }; - - "hgrev" = callPackage ( - { - mkDerivation, - aeson, - base, - bytestring, - directory, - filepath, - process, - template-haskell, - }: - mkDerivation { - pname = "hgrev"; - version = "0.2.6"; - sha256 = "1v1niqvqj6w8nkr3pmjwj7va2f2nv8miwsfqsp3lj3b2i9x6asb2"; - libraryHaskellDepends = [ - aeson - base - bytestring - directory - filepath - process - template-haskell - ]; - description = "Compile Mercurial (hg) version info into Haskell code"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "hgrib" = callPackage ( - { - mkDerivation, - base, - c2hs, - directory, - grib_api, - hspec, - transformers, - }: - mkDerivation { - pname = "hgrib"; - version = "0.3.1.0"; - sha256 = "0fypwdjnn8y9iyk6ra9ac3g36mskgcr8wib6qlqc4d4912qx9q6k"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - transformers - ]; - librarySystemDepends = [ grib_api ]; - libraryToolDepends = [ c2hs ]; - testHaskellDepends = [ - base - directory - hspec - ]; - description = "Unofficial bindings for GRIB API"; - license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { grib_api = null; }; - - "hharp" = callPackage ( - { - mkDerivation, - base, - harp, - }: - mkDerivation { - pname = "hharp"; - version = "0.1.1.1"; - sha256 = "0pmn2j92pnyy0w3x550qqrzs91mi0sx8dwk592649x9l3xpqx1pm"; - libraryHaskellDepends = [ base ]; - librarySystemDepends = [ harp ]; - description = "Binding to libharp"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { harp = null; }; - - "hhp" = callPackage ( - { - mkDerivation, - base, - Cabal, - containers, - deepseq, - directory, - exceptions, - extra, - filepath, - ghc, - ghc-boot, - hlint, - hspec, - hspec-discover, - process, - syb, - }: - mkDerivation { - pname = "hhp"; - version = "1.0.3"; - sha256 = "059a5j39l0mmk5wc9zird3jz1zsrpgk5h8zxbn18w9i9zpmlbwlc"; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base - Cabal - containers - deepseq - directory - exceptions - filepath - ghc - ghc-boot - hlint - process - syb - ]; - executableHaskellDepends = [ - base - containers - directory - filepath - ]; - testHaskellDepends = [ - base - Cabal - containers - deepseq - directory - exceptions - extra - filepath - ghc - ghc-boot - hlint - hspec - process - syb - ]; - testToolDepends = [ hspec-discover ]; - description = "Happy Haskell Programming"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "hhwloc" = callPackage ( - { - mkDerivation, - base, - Cabal, - directory, - }: - mkDerivation { - pname = "hhwloc"; - version = "0.2.1"; - sha256 = "1vzlk2zgbs0l322gff71pap6y5dz7l6wkblyrpn9vip5bf0b12vs"; - enableSeparateDataOutput = true; - setupHaskellDepends = [ - base - Cabal - directory - ]; - libraryHaskellDepends = [ base ]; - description = "Bindings to https://www.open-mpi.org/projects/hwloc"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "hi" = callPackage ( - { - mkDerivation, - ansi-wl-pprint, - base, - bytestring, - directory, - doctest, - filepath, - hspec, - HUnit, - optparse-applicative, - parsec, - process, - silently, - split, - template, - temporary, - text, - time, - }: - mkDerivation { - pname = "hi"; - version = "1.2.0.2"; - sha256 = "00qfw428y4gjjj4jyd9vs2a5w9phs9xl90gsfrix1mqlk4qg3xqa"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - ansi-wl-pprint - base - bytestring - directory - filepath - optparse-applicative - parsec - process - split - template - temporary - text - time - ]; - executableHaskellDepends = [ - ansi-wl-pprint - base - bytestring - directory - filepath - optparse-applicative - parsec - process - split - template - temporary - text - time - ]; - testHaskellDepends = [ - ansi-wl-pprint - base - bytestring - directory - doctest - filepath - hspec - HUnit - optparse-applicative - parsec - process - silently - split - template - temporary - text - time - ]; - description = "Generate scaffold for cabal project"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "hi"; - broken = true; - } - ) { }; - - "hi-file-parser" = callPackage ( - { - mkDerivation, - base, - binary, - bytestring, - hspec, - mtl, - rio, - text, - vector, - }: - mkDerivation { - pname = "hi-file-parser"; - version = "0.1.8.0"; - sha256 = "1hyn87s4gvfmidiq8vp8wsflcy3wcyd92pqwkhs5zaq0imydhzi5"; - libraryHaskellDepends = [ - base - binary - bytestring - mtl - rio - text - vector - ]; - testHaskellDepends = [ - base - binary - bytestring - hspec - mtl - rio - text - vector - ]; - description = "Parser for GHC's *.hi files"; - license = lib.licenses.bsd3; - } - ) { }; - - "hi3status" = callPackage ( - { - mkDerivation, - aeson, - base, - binary, - bytestring, - dbus, - dyre, - network, - prefix-units, - process, - regex-pcre-builtin, - text, - time, - transformers, - vector, - }: - mkDerivation { - pname = "hi3status"; - version = "0.1.1.0"; - sha256 = "0riklhkz8mmm87z1rxla5dv1bczhylk2mfgkwa98a529cf8h6k6y"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson - base - binary - bytestring - dbus - dyre - network - prefix-units - process - regex-pcre-builtin - text - time - transformers - vector - ]; - executableHaskellDepends = [ - base - dbus - process - ]; - description = "Status line for i3bar"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "hiccup" = callPackage ( - { - mkDerivation, - base, - bytestring, - containers, - haskell98, - HUnit, - mtl, - parsec, - random, - readline, - time, - }: - mkDerivation { - pname = "hiccup"; - version = "0.40"; - sha256 = "1skzr5ipxz61zrndwifkngw70zdf2yh5f8qpbmfzaq0bscrzdxg5"; - isLibrary = false; - isExecutable = true; - enableSeparateDataOutput = true; - executableHaskellDepends = [ - base - bytestring - containers - haskell98 - HUnit - mtl - parsec - random - readline - time + random + transformers ]; - description = "Relatively efficient Tcl interpreter with support for basic operations"; - license = "GPL"; - hydraPlatforms = lib.platforms.none; - mainProgram = "hiccup"; + description = "Tools for working on (di)graphs"; + license = lib.licenses.gpl3Only; } ) { }; - "hichi" = callPackage ( + "hgreet" = callPackage ( { mkDerivation, - array, + aeson, base, bytestring, - mtl, + cpu, + hosc, network, }: mkDerivation { - pname = "hichi"; - version = "0.0.1"; - sha256 = "1f5cqqw9zn1nji0k2vp0ln1fdbzv9iwjqiaw9vd77kz9pz7p0kvq"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - array + pname = "hgreet"; + version = "0.1.0.0"; + sha256 = "0z44k67jrplny90gl7lj2ax2piayzaf8ga74jp58pfwcjci6r01m"; + revision = "3"; + editedCabalFile = "02kqa51jn8x1r878pm1pk8gv0agvwmmxnh00cm445wclmydlr6w7"; + libraryHaskellDepends = [ + aeson base bytestring - mtl + cpu + hosc network ]; - description = "haskell robot for IChat protocol"; - license = "GPL"; + description = "Haskell module to interact with the greetd daemon trough it's IPC protocol"; + license = lib.licenses.gpl3Plus; hydraPlatforms = lib.platforms.none; - mainProgram = "hichi"; broken = true; } ) { }; - "hid" = callPackage ( + "hhp" = callPackage ( { mkDerivation, base, - bytestring, - c2hs, - hidapi, - transformers, + Cabal, + containers, + deepseq, + directory, + exceptions, + extra, + filepath, + ghc, + ghc-boot, + hlint, + hspec, + hspec-discover, + process, + syb, }: mkDerivation { - pname = "hid"; - version = "0.2.2"; - sha256 = "1lkkhw85cprflh1r807y2bf3m0l8nz9x0ihqs7x6qqkip1icbm8d"; + pname = "hhp"; + version = "1.0.3"; + sha256 = "059a5j39l0mmk5wc9zird3jz1zsrpgk5h8zxbn18w9i9zpmlbwlc"; + isLibrary = true; + isExecutable = true; + enableSeparateDataOutput = true; libraryHaskellDepends = [ base - bytestring - transformers + Cabal + containers + deepseq + directory + exceptions + filepath + ghc + ghc-boot + hlint + process + syb ]; - libraryPkgconfigDepends = [ hidapi ]; - libraryToolDepends = [ c2hs ]; - description = "Interface to hidapi library"; + executableHaskellDepends = [ + base + containers + directory + filepath + ]; + testHaskellDepends = [ + base + Cabal + containers + deepseq + directory + exceptions + extra + filepath + ghc + ghc-boot + hlint + hspec + process + syb + ]; + testToolDepends = [ hspec-discover ]; + description = "Happy Haskell Programming"; license = lib.licenses.bsd3; hydraPlatforms = lib.platforms.none; broken = true; } - ) { inherit (pkgs) hidapi; }; + ) { }; - "hid-examples" = callPackage ( + "hi-file-parser" = callPackage ( { mkDerivation, - aeson, base, - blaze-html, + binary, bytestring, - cassava, - Chart, - Chart-diagrams, - containers, - criterion, - deepseq, - directory, - doctest, - extra, - filepath, - fingertree, - fmt, - hedgehog, - hint, - http-client, + hspec, mtl, - optparse-applicative, - random, - req, - safe, - safe-exceptions, - split, - tasty, - tasty-golden, - tasty-hedgehog, - tasty-hspec, + rio, text, - time, - transformers, - unix-compat, + vector, }: mkDerivation { - pname = "hid-examples"; - version = "0.5"; - sha256 = "1hs0cpls8x89dvv0ws1swagz92vrfcn84nw7jdaidc850168dygx"; - isLibrary = false; - isExecutable = true; - enableSeparateDataOutput = true; + pname = "hi-file-parser"; + version = "0.1.8.0"; + sha256 = "1hyn87s4gvfmidiq8vp8wsflcy3wcyd92pqwkhs5zaq0imydhzi5"; libraryHaskellDepends = [ base - fingertree - hedgehog - safe - safe-exceptions - split - ]; - executableHaskellDepends = [ - aeson - base - blaze-html + binary bytestring - cassava - Chart - Chart-diagrams - containers - directory - extra - filepath - fmt - hedgehog - hint - http-client mtl - optparse-applicative - random - req - safe - safe-exceptions + rio text - time - transformers - unix-compat + vector ]; testHaskellDepends = [ base - doctest - filepath - hedgehog - tasty - tasty-golden - tasty-hedgehog - tasty-hspec - ]; - benchmarkHaskellDepends = [ - base - criterion - deepseq + binary + bytestring + hspec + mtl + rio + text + vector ]; - doHaddock = false; - description = "Examples to accompany the book \"Haskell in Depth\""; + description = "Parser for GHC's *.hi files"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; } ) { }; @@ -325937,30 +187560,6 @@ self: { } ) { inherit (pkgs) systemd; }; - "hidden-char" = callPackage ( - { - mkDerivation, - base, - hspec, - }: - mkDerivation { - pname = "hidden-char"; - version = "0.1.0.2"; - sha256 = "167l83cn37mkq394pbanybz1kghnbim1m74fxskws1nclxr9747a"; - revision = "3"; - editedCabalFile = "0f6qghr4i3ar993pjlswdd2rl671lrnxj8740i2yhn89z410vzsa"; - libraryHaskellDepends = [ base ]; - testHaskellDepends = [ - base - hspec - ]; - description = "Provides cross-platform getHiddenChar function"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "hie-bios" = callPackage ( { mkDerivation, @@ -326093,127 +187692,6 @@ self: { } ) { }; - "hie-core" = callPackage ( - { - mkDerivation, - aeson, - async, - base, - binary, - bytestring, - containers, - data-default, - deepseq, - directory, - extra, - filepath, - ghc, - ghc-boot, - ghc-boot-th, - ghc-paths, - hashable, - haskell-lsp, - haskell-lsp-types, - hie-bios, - lens, - lsp-test, - mtl, - network-uri, - optparse-applicative, - parser-combinators, - prettyprinter, - prettyprinter-ansi-terminal, - rope-utf16-splay, - safe-exceptions, - shake, - sorted-list, - stm, - syb, - tasty, - tasty-hunit, - text, - time, - transformers, - unix, - unordered-containers, - utf8-string, - }: - mkDerivation { - pname = "hie-core"; - version = "0.0.1"; - sha256 = "1fdg5vz5qr9y9xmqqb2qcxss8byz3m38d7zcfybq783fxqrcyfsc"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson - async - base - binary - bytestring - containers - data-default - deepseq - directory - extra - filepath - ghc - ghc-boot - ghc-boot-th - hashable - haskell-lsp - haskell-lsp-types - mtl - network-uri - prettyprinter - prettyprinter-ansi-terminal - rope-utf16-splay - safe-exceptions - shake - sorted-list - stm - syb - text - time - transformers - unix - unordered-containers - utf8-string - ]; - executableHaskellDepends = [ - base - containers - data-default - directory - extra - filepath - ghc - ghc-paths - haskell-lsp - hie-bios - optparse-applicative - shake - text - ]; - testHaskellDepends = [ - base - containers - extra - filepath - haskell-lsp-types - lens - lsp-test - parser-combinators - tasty - tasty-hunit - text - ]; - description = "The core of an IDE"; - license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; - mainProgram = "hie-core"; - } - ) { }; - "hiedb" = callPackage ( { mkDerivation, @@ -326381,98 +187859,6 @@ self: { } ) { }; - "hieraclus" = callPackage ( - { - mkDerivation, - base, - containers, - HUnit, - mtl, - multiset, - }: - mkDerivation { - pname = "hieraclus"; - version = "0.1.2.1"; - sha256 = "11fjfmdjzvid0352d346p5xf44bl7dn8bd8pms5pi34xysdyr7pg"; - libraryHaskellDepends = [ - base - containers - HUnit - mtl - multiset - ]; - description = "Automated clustering of arbitrary elements in Haskell"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "hierarchical-clustering" = callPackage ( - { - mkDerivation, - array, - base, - containers, - hspec, - HUnit, - QuickCheck, - }: - mkDerivation { - pname = "hierarchical-clustering"; - version = "0.4.7"; - sha256 = "15fiqvhcd0i5l1w4s5liggfbdknasdpvyxd54qrjjdp41qb4d3qk"; - libraryHaskellDepends = [ - array - base - containers - ]; - testHaskellDepends = [ - base - hspec - HUnit - QuickCheck - ]; - description = "Fast algorithms for single, average/UPGMA and complete linkage clustering"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "hierarchical-clustering-diagrams" = callPackage ( - { - mkDerivation, - base, - diagrams-cairo, - diagrams-lib, - hierarchical-clustering, - hspec, - HUnit, - }: - mkDerivation { - pname = "hierarchical-clustering-diagrams"; - version = "0.4"; - sha256 = "0msb10qbqppwk3vspjz2w714srawbzgfsgml4ylhvyzrylpp6awr"; - libraryHaskellDepends = [ - base - diagrams-lib - hierarchical-clustering - ]; - testHaskellDepends = [ - base - diagrams-cairo - diagrams-lib - hierarchical-clustering - hspec - HUnit - ]; - description = "Draw diagrams of dendrograms made by hierarchical-clustering"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "hierarchical-env" = callPackage ( { mkDerivation, @@ -326519,240 +187905,6 @@ self: { } ) { }; - "hierarchical-exceptions" = callPackage ( - { - mkDerivation, - base, - template-haskell, - }: - mkDerivation { - pname = "hierarchical-exceptions"; - version = "1.0.1"; - sha256 = "1yzhw7kgz5iljm8ndh5kyr18367cl6l120m1gkn5x9hpsh9mlamm"; - libraryHaskellDepends = [ - base - template-haskell - ]; - description = "Template Haskell functions to easily create exception hierarchies"; - license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "hierarchical-spectral-clustering" = callPackage ( - { - mkDerivation, - aeson, - aeson-pretty, - base, - bytestring, - cassava, - clustering, - containers, - directory, - fgl, - filepath, - hierarchical-clustering, - hmatrix, - lens, - managed, - modularity, - mtl, - mwc-random, - optparse-generic, - safe, - sparse-linear-algebra, - spectral-clustering, - streaming, - streaming-bytestring, - streaming-cassava, - streaming-with, - text, - text-show, - tree-fun, - vector, - }: - mkDerivation { - pname = "hierarchical-spectral-clustering"; - version = "0.5.0.1"; - sha256 = "08pz68vw8pbm70iqgrq6h9jhmq4zpg801byjlgkr2rvx6x8d1ghv"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson - base - cassava - clustering - containers - fgl - hierarchical-clustering - hmatrix - managed - modularity - mtl - mwc-random - safe - sparse-linear-algebra - spectral-clustering - streaming - streaming-bytestring - streaming-cassava - streaming-with - text - tree-fun - vector - ]; - executableHaskellDepends = [ - aeson - aeson-pretty - base - bytestring - cassava - containers - directory - filepath - hmatrix - lens - optparse-generic - safe - text - text-show - vector - ]; - description = "Hierarchical spectral clustering of a graph"; - license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - mainProgram = "cluster-tree"; - } - ) { }; - - "hierarchy" = callPackage ( - { - mkDerivation, - base, - directory, - doctest, - exceptions, - filepath, - free, - mmorph, - monad-control, - mtl, - transformers, - transformers-base, - transformers-compat, - }: - mkDerivation { - pname = "hierarchy"; - version = "1.0.2"; - sha256 = "060kgg8gfp2155fibksi65xy5psbwabh4wymg7i6cqh3k3zhxy95"; - libraryHaskellDepends = [ - base - exceptions - free - mmorph - monad-control - mtl - transformers - transformers-base - transformers-compat - ]; - testHaskellDepends = [ - base - directory - doctest - exceptions - filepath - free - mmorph - monad-control - mtl - transformers - transformers-base - transformers-compat - ]; - description = "Predicated traversal of generated trees"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "hiernotify" = callPackage ( - { - mkDerivation, - base, - directory, - filepath, - mtl, - old-time, - stm, - timers-updatable, - }: - mkDerivation { - pname = "hiernotify"; - version = "2011.4.12"; - sha256 = "1imgwi6b0cn9y4y7vgqsyfgsyxjvsl1wkmqmrf51jkfqasnqsqh5"; - libraryHaskellDepends = [ - base - directory - filepath - mtl - old-time - stm - timers-updatable - ]; - description = "Notification library for a filesystem hierarchy"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "hifi" = callPackage ( - { - mkDerivation, - base, - cmdargs, - directory, - filepath, - mustache, - parsec, - process, - text, - unix, - }: - mkDerivation { - pname = "hifi"; - version = "0.1.4.1"; - sha256 = "01bdylz6a58aczaf3b35w6x7ji0hxr6b8sjcqsx2jwnc1vx379ns"; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base - directory - filepath - mustache - parsec - process - text - unix - ]; - executableHaskellDepends = [ - base - cmdargs - ]; - testHaskellDepends = [ base ]; - description = "WiFi connection script generator"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "hifi"; - broken = true; - } - ) { }; - "higgledy" = callPackage ( { mkDerivation, @@ -326809,104 +187961,6 @@ self: { } ) { }; - "highWaterMark" = callPackage ( - { - mkDerivation, - base, - ghc, - }: - mkDerivation { - pname = "highWaterMark"; - version = "0.1.1"; - sha256 = "1bwvhrzvrf004lypf0zrx6q6k6fn5qwvlk45vppmnv65v9vq519p"; - isLibrary = false; - isExecutable = true; - enableSeparateDataOutput = true; - executableHaskellDepends = [ - base - ghc - ]; - description = "Memory usage statistics"; - license = "GPL"; - hydraPlatforms = lib.platforms.none; - mainProgram = "highWaterMark"; - broken = true; - } - ) { }; - - "higher-leveldb" = callPackage ( - { - mkDerivation, - base, - bytestring, - cereal, - data-default, - exceptions, - hspec, - leveldb-haskell, - mtl, - process, - resourcet, - transformers, - transformers-base, - unliftio, - unliftio-core, - }: - mkDerivation { - pname = "higher-leveldb"; - version = "0.6.0.0"; - sha256 = "0gsqf92vp92a0jl3nchm40mxi5k7hnm7wjczhpkq0akka6b7ciy7"; - revision = "2"; - editedCabalFile = "1g8fnqvxjcq332wrnls272ff8grcbrc875phm77nsmjb8q4wjqz7"; - libraryHaskellDepends = [ - base - bytestring - cereal - data-default - exceptions - leveldb-haskell - mtl - resourcet - transformers - transformers-base - unliftio-core - ]; - testHaskellDepends = [ - base - bytestring - cereal - hspec - leveldb-haskell - mtl - process - resourcet - transformers - transformers-base - unliftio - ]; - description = "A rich monadic API for working with leveldb databases"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "higherorder" = callPackage ( - { mkDerivation, base }: - mkDerivation { - pname = "higherorder"; - version = "0.0"; - sha256 = "06cqhk9jalyps4v9w6wmpy9jdj3piwsp0wl3fvkzwa5iydlyvisz"; - revision = "1"; - editedCabalFile = "0nflwfx4gng0kk2lxfsrrk10sgjln7jq4zl3ydv8i0n4m472b1y5"; - libraryHaskellDepends = [ base ]; - description = "Some higher order functions for Bool and []"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "highjson" = callPackage ( { mkDerivation, @@ -327132,69 +188186,6 @@ self: { } ) { }; - "highlight-versions" = callPackage ( - { - mkDerivation, - ansi-terminal, - base, - Cabal, - containers, - hackage-db, - }: - mkDerivation { - pname = "highlight-versions"; - version = "0.1.4"; - sha256 = "1dnw4n1am4s5lfm4izg2ifkggdb2c3ba9rpjn4k5fw9x6kjyhazf"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - ansi-terminal - base - Cabal - containers - hackage-db - ]; - description = "Highlight package versions which differ from the latest version on Hackage"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "highlight-versions"; - broken = true; - } - ) { }; - - "highlighter" = callPackage ( - { - mkDerivation, - base, - blaze-html, - bytestring, - filepath, - mtl, - pcre-light, - text, - }: - mkDerivation { - pname = "highlighter"; - version = "0.2.2"; - sha256 = "1x381ngd2gg2ff2rj7dyqmhy1achly2wbssjhsrcm0p6sxqab21x"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - blaze-html - bytestring - filepath - mtl - pcre-light - text - ]; - description = "source code highlighting"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "highlighter2" = callPackage ( { mkDerivation, @@ -327228,55 +188219,6 @@ self: { } ) { }; - "highlighting-kate" = callPackage ( - { - mkDerivation, - base, - blaze-html, - bytestring, - containers, - Diff, - directory, - filepath, - mtl, - parsec, - pcre-light, - process, - utf8-string, - }: - mkDerivation { - pname = "highlighting-kate"; - version = "0.6.4"; - sha256 = "1bqv00gfmrsf0jjr4qf3lhshvfkyzmhbi3pjb6mafbnsyn2k7f6q"; - configureFlags = [ "-fpcre-light" ]; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - blaze-html - bytestring - containers - mtl - parsec - pcre-light - utf8-string - ]; - testHaskellDepends = [ - base - blaze-html - containers - Diff - directory - filepath - process - ]; - description = "Syntax highlighting"; - license = "GPL"; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "highs-lp" = callPackage ( { mkDerivation, @@ -327451,107 +188393,6 @@ self: { } ) { mozembed = null; }; - "himg" = callPackage ( - { - mkDerivation, - base, - bytestring, - directory, - gtk, - HTTP, - http-conduit, - network, - temporary, - }: - mkDerivation { - pname = "himg"; - version = "0.1.0.0"; - sha256 = "09ya9966fn3ss7xxc1cd0izb5js35gwr2r1km881w4455sknl093"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - bytestring - directory - gtk - HTTP - http-conduit - network - temporary - ]; - executableHaskellDepends = [ - base - bytestring - directory - gtk - HTTP - http-conduit - network - temporary - ]; - description = "Simple gtk2hs image viewer. Point it at an image and fire away."; - license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - mainProgram = "himg"; - broken = true; - } - ) { }; - - "himpy" = callPackage ( - { - mkDerivation, - aeson, - attoparsec, - base, - binary, - bytestring, - cereal, - containers, - MissingH, - NetSNMP, - network, - old-time, - protobuf, - regex-posix, - stm, - text, - type-level, - unordered-containers, - vector, - }: - mkDerivation { - pname = "himpy"; - version = "0.5.0"; - sha256 = "0rpgvv9hq8ai6imhsbfw95igfyqnnzdgx9mw6cpd8ch5kb6wfqig"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - aeson - attoparsec - base - binary - bytestring - cereal - containers - MissingH - NetSNMP - network - old-time - protobuf - regex-posix - stm - text - type-level - unordered-containers - vector - ]; - description = "multithreaded snmp poller for riemann"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - mainProgram = "himpy"; - } - ) { }; - "hindent" = callPackage ( { mkDerivation, @@ -327697,39 +188538,6 @@ self: { } ) { }; - "hindley-milner" = callPackage ( - { - mkDerivation, - base, - containers, - data-fix, - hspec, - mtl, - transformers, - }: - mkDerivation { - pname = "hindley-milner"; - version = "0.1.0.0"; - sha256 = "1b34d66sf4nbiaffif3vjhshbvghvkdbi36x2sh3z58whza6z7yj"; - libraryHaskellDepends = [ - base - containers - data-fix - mtl - transformers - ]; - testHaskellDepends = [ - base - containers - hspec - ]; - description = "Template for Hindley-Milner based languages"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "hindley-milner-type-check" = callPackage ( { mkDerivation, @@ -327803,93 +188611,6 @@ self: { } ) { }; - "hinduce-classifier" = callPackage ( - { - mkDerivation, - base, - hinduce-missingh, - layout, - }: - mkDerivation { - pname = "hinduce-classifier"; - version = "0.0.0.1"; - sha256 = "1cdx916xkpsy2ilsmmdkyqax2gb0cx6sgkydvjbiw7qibd76ylza"; - libraryHaskellDepends = [ - base - hinduce-missingh - layout - ]; - description = "Interface and utilities for classifiers"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "hinduce-classifier-decisiontree" = callPackage ( - { - mkDerivation, - base, - convertible, - hinduce-classifier, - hinduce-missingh, - layout, - }: - mkDerivation { - pname = "hinduce-classifier-decisiontree"; - version = "0.0.0.1"; - sha256 = "1hdz4lbbpy2yc5j7chkagjvslsakmv3hbz2s7lpz0isfq7ls9idl"; - revision = "1"; - editedCabalFile = "16zh2f474ga3s1jzg58hv6q103gdxb3kl25g2cj0k14jxr4k15a2"; - libraryHaskellDepends = [ - base - convertible - hinduce-classifier - hinduce-missingh - layout - ]; - description = "Decision Tree Classifiers for hInduce"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "hinduce-examples" = callPackage ( - { - mkDerivation, - base, - containers, - convertible, - csv, - hinduce-associations-apriori, - hinduce-classifier, - hinduce-classifier-decisiontree, - hinduce-missingh, - layout, - vector, - }: - mkDerivation { - pname = "hinduce-examples"; - version = "0.0.0.2"; - sha256 = "17jnrc8iji5byqbd08llwk0mw9yi1dq3biaszqp9jyinf50hcb4w"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base - containers - convertible - csv - hinduce-associations-apriori - hinduce-classifier - hinduce-classifier-decisiontree - hinduce-missingh - layout - vector - ]; - description = "Example data for hInduce"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "hinduce-missingh" = callPackage ( { mkDerivation, base }: mkDerivation { @@ -328056,44 +188777,6 @@ self: { } ) { }; - "hinotify-bytestring" = callPackage ( - { - mkDerivation, - base, - bytestring, - containers, - directory, - posix-paths, - unix, - utf8-string, - }: - mkDerivation { - pname = "hinotify-bytestring"; - version = "0.3.8.1"; - sha256 = "0yxc9qh4i4ba7x15zr8mdycvxbgxjslcaqzwb21x89x4jk0sqzpn"; - libraryHaskellDepends = [ - base - bytestring - containers - directory - unix - ]; - testHaskellDepends = [ - base - bytestring - directory - posix-paths - unix - utf8-string - ]; - description = "Haskell binding to inotify, using ByteString filepaths"; - license = lib.licenses.bsd3; - badPlatforms = lib.platforms.darwin; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "hinotify-conduit" = callPackage ( { mkDerivation, @@ -328157,74 +188840,6 @@ self: { } ) { }; - "hinquire" = callPackage ( - { - mkDerivation, - base, - bifunctors, - QuickCheck, - test-framework, - test-framework-quickcheck2, - test-framework-th, - }: - mkDerivation { - pname = "hinquire"; - version = "0.1.1"; - sha256 = "1mm0qi1y2qkiknb5s2jbgc3zljda52mi4mmh0fh7z8ck5rnng1x1"; - libraryHaskellDepends = [ - base - bifunctors - QuickCheck - test-framework - test-framework-quickcheck2 - test-framework-th - ]; - testHaskellDepends = [ - base - bifunctors - QuickCheck - test-framework - test-framework-quickcheck2 - test-framework-th - ]; - description = "Generate armet style query strings"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "hinstaller" = callPackage ( - { - mkDerivation, - base, - bytestring, - Cabal, - directory, - filepath, - process, - template-haskell, - }: - mkDerivation { - pname = "hinstaller"; - version = "2008.2.16"; - sha256 = "1ldfqx98w7inpj76xyi0drh2lykfjfq9r34hlbcw7mv4bgxp4l8c"; - libraryHaskellDepends = [ - base - bytestring - Cabal - directory - filepath - process - template-haskell - ]; - description = "Installer wrapper for Haskell applications"; - license = "LGPL"; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "hint" = callPackage ( { mkDerivation, @@ -328284,86 +188899,6 @@ self: { } ) { }; - "hint-server" = callPackage ( - { - mkDerivation, - base, - eprocess, - exceptions, - hint, - monad-loops, - mtl, - }: - mkDerivation { - pname = "hint-server"; - version = "1.4.3"; - sha256 = "1pgz8m5aad8wx9ahnaxawry25rksfn2rnmm6l55ha5pj7zb7zjzy"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base - eprocess - exceptions - hint - monad-loops - mtl - ]; - description = "A server process that runs hint"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "hinter" = callPackage ( - { - mkDerivation, - base, - directory, - exceptions, - extensible-exceptions, - filepath, - ghc, - ghc-boot, - ghc-paths, - HUnit, - mtl, - random, - unix, - }: - mkDerivation { - pname = "hinter"; - version = "0.1.0.0"; - sha256 = "0r790y7j64y79rqg7ip4dk5a8pbpryisp008lcmswzc0si35jfgl"; - revision = "3"; - editedCabalFile = "1l58br388rmqj6d30ar8i6ivjgx35v33gld9liih5x4mgx7jp0a1"; - libraryHaskellDepends = [ - base - directory - exceptions - filepath - ghc - ghc-boot - ghc-paths - mtl - random - unix - ]; - testHaskellDepends = [ - base - directory - exceptions - extensible-exceptions - filepath - HUnit - unix - ]; - description = "Runtime Haskell interpreter (GHC API wrapper)"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "hinterface" = callPackage ( { mkDerivation, @@ -328445,54 +188980,6 @@ self: { } ) { }; - "hinvaders" = callPackage ( - { - mkDerivation, - base, - haskell98, - random, - }: - mkDerivation { - pname = "hinvaders"; - version = "0.1"; - sha256 = "01v5szci7kbp3w2jsdcnzv9j3lbcl5bvn9ipcvp3v2xvfjik110h"; - isLibrary = false; - isExecutable = true; - enableSeparateDataOutput = true; - executableHaskellDepends = [ - base - haskell98 - random - ]; - description = "Space Invaders"; - license = "GPL"; - hydraPlatforms = lib.platforms.none; - mainProgram = "hinvaders"; - } - ) { }; - - "hinze-streams" = callPackage ( - { - mkDerivation, - base, - haskell98, - Stream, - }: - mkDerivation { - pname = "hinze-streams"; - version = "1.0"; - sha256 = "137jjwcs3a9n2zybkqqfdy2m1a2ahpdcmficwfmn7ykdz487xcsq"; - libraryHaskellDepends = [ - base - haskell98 - Stream - ]; - description = "Streams and Unique Fixed Points"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "hip" = callPackage ( { mkDerivation, @@ -328562,191 +189049,6 @@ self: { } ) { }; - "hipbot" = callPackage ( - { - mkDerivation, - aeson, - base, - bifunctors, - blaze-builder, - bytestring, - either, - exceptions, - http-client, - http-client-tls, - http-types, - jwt, - lens, - mtl, - network-uri, - postgresql-simple, - resource-pool, - safe, - stm, - text, - time, - transformers, - unordered-containers, - utf8-string, - wai, - wai-lens, - webcrank, - webcrank-wai, - wreq, - }: - mkDerivation { - pname = "hipbot"; - version = "0.5"; - sha256 = "0acy9bp2dwszd01l514nx2crdxgb356k18pm9ravddljxr24n1hs"; - revision = "1"; - editedCabalFile = "1f4aa34ax49zfdj5iq54w3sgxj8y0a551vzf1q0xq62wwhxnghba"; - libraryHaskellDepends = [ - aeson - base - bifunctors - blaze-builder - bytestring - either - exceptions - http-client - http-client-tls - http-types - jwt - lens - mtl - network-uri - postgresql-simple - resource-pool - safe - stm - text - time - transformers - unordered-containers - utf8-string - wai - wai-lens - webcrank - webcrank-wai - wreq - ]; - description = "A library for building HipChat Bots"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "hipchat-hs" = callPackage ( - { - mkDerivation, - aeson, - aeson-casing, - async, - base, - bytestring, - either, - http-client, - lens, - network-uri, - postgresql-simple, - servant, - servant-client, - split, - string-conversions, - text, - time, - }: - mkDerivation { - pname = "hipchat-hs"; - version = "0.0.4"; - sha256 = "0by0a1zdf1hii8lslbn7h5khlhk544d9p77bnp80rs288452ywba"; - libraryHaskellDepends = [ - aeson - aeson-casing - async - base - bytestring - either - http-client - lens - network-uri - postgresql-simple - servant - servant-client - split - string-conversions - text - time - ]; - description = "Hipchat API bindings in Haskell"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "hipe" = callPackage ( - { - mkDerivation, - base, - containers, - hgeometry, - hxt, - parsec, - split, - text, - text-format, - }: - mkDerivation { - pname = "hipe"; - version = "0.2.0.0"; - sha256 = "1y8awzmvrvixlba1ndvw5rwm8i38lj1yf4mcfm6h7pmmvpdvr5ah"; - libraryHaskellDepends = [ - base - containers - hgeometry - hxt - parsec - split - text - text-format - ]; - description = "Support for reading and writing ipe7 files (http://ipe7.sourceforge.net)"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "hips" = callPackage ( - { - mkDerivation, - base, - bytestring, - directory, - functors, - mtl, - }: - mkDerivation { - pname = "hips"; - version = "0.1"; - sha256 = "0m3ribabhpdkwavhywjpc8iqqa9bbdl19d7g3agm4f402gd3rmvr"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - bytestring - directory - functors - mtl - ]; - description = "an IPS patcher"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "hips"; - broken = true; - } - ) { }; - "hipsql-api" = callPackage ( { mkDerivation, @@ -328916,304 +189218,6 @@ self: { } ) { }; - "hircules" = callPackage ( - { - mkDerivation, - base, - containers, - directory, - gtk, - mtl, - network, - old-locale, - old-time, - time, - utf8-string, - }: - mkDerivation { - pname = "hircules"; - version = "0.4.1"; - sha256 = "1i291m3i3c082nsgg7mx2xx2a0q97kdmyashz26i4varqkwhz7qx"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - containers - directory - gtk - mtl - network - old-locale - old-time - time - utf8-string - ]; - description = "IRC client"; - license = "GPL"; - hydraPlatforms = lib.platforms.none; - mainProgram = "hircules"; - broken = true; - } - ) { }; - - "hirt" = callPackage ( - { - mkDerivation, - attoparsec, - base, - cmdargs, - containers, - csv, - hlbfgsb, - hmatrix, - mwc-random, - numeric-extras, - random, - statistics, - text, - text-format, - vector, - vector-space, - }: - mkDerivation { - pname = "hirt"; - version = "0.0.1.1"; - sha256 = "0scn4gljgx0ig2fr4rfavk6k3pcychpxlasffd6gp2k1v3sb850v"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - attoparsec - base - cmdargs - containers - csv - hlbfgsb - hmatrix - mwc-random - numeric-extras - random - statistics - text - text-format - vector - vector-space - ]; - description = "Calculates IRT 2PL and 3PL models"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "hirt"; - } - ) { }; - - "hissmetrics" = callPackage ( - { - mkDerivation, - base, - bytestring, - conduit, - http-conduit, - http-types, - text, - time, - }: - mkDerivation { - pname = "hissmetrics"; - version = "0.5.1"; - sha256 = "1rz0yxng4szhmjj1n6d36ljv3388ch8nih09yjrxk4l83zd6hc6d"; - libraryHaskellDepends = [ - base - bytestring - conduit - http-conduit - http-types - text - time - ]; - description = "Unofficial API bindings to KISSmetrics"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "hist-pl" = callPackage ( - { - mkDerivation, - aeson, - aeson-pretty, - base, - bytestring, - cmdargs, - containers, - hist-pl-dawg, - hist-pl-fusion, - hist-pl-lexicon, - hist-pl-lmf, - hist-pl-transliter, - morfeusz, - pipes, - polimorf, - text, - }: - mkDerivation { - pname = "hist-pl"; - version = "0.3.2"; - sha256 = "01c6k3f432yhcvcz7k4w29z7kbvhxlcnh57z1m47qbkymm5b4y7b"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson - base - containers - hist-pl-lexicon - hist-pl-transliter - morfeusz - text - ]; - executableHaskellDepends = [ - aeson-pretty - base - bytestring - cmdargs - containers - hist-pl-dawg - hist-pl-fusion - hist-pl-lexicon - hist-pl-lmf - pipes - polimorf - ]; - description = "Umbrella package for the historical dictionary of Polish"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "hist-pl"; - } - ) { }; - - "hist-pl-dawg" = callPackage ( - { - mkDerivation, - base, - binary, - containers, - dawg, - text, - text-binary, - }: - mkDerivation { - pname = "hist-pl-dawg"; - version = "0.2.1"; - sha256 = "1ghhwabi46dimzfk79nkcnk8s4rlcyvqfcpr8ay7sfy7xns2ahjg"; - libraryHaskellDepends = [ - base - binary - containers - dawg - text - text-binary - ]; - description = "A generic, DAWG-based dictionary"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "hist-pl-fusion" = callPackage ( - { - mkDerivation, - base, - binary, - containers, - dawg, - hist-pl-dawg, - hist-pl-lexicon, - polimorf, - text, - text-binary, - }: - mkDerivation { - pname = "hist-pl-fusion"; - version = "0.5.3"; - sha256 = "0ism9qw3g0x0r40qm6v0gj1b2fj5zdnfik7b4h0b0dqyi08m6sq3"; - libraryHaskellDepends = [ - base - binary - containers - dawg - hist-pl-dawg - hist-pl-lexicon - polimorf - text - text-binary - ]; - description = "Merging historical dictionary with PoliMorf"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "hist-pl-lexicon" = callPackage ( - { - mkDerivation, - base, - binary, - containers, - dawg, - directory, - filepath, - hist-pl-dawg, - hist-pl-types, - pipes, - text, - transformers, - }: - mkDerivation { - pname = "hist-pl-lexicon"; - version = "0.6.1"; - sha256 = "1baq1a5l44q56msp2y2m9hyd5v841jkxm0cdlgi816fmc0768cqk"; - libraryHaskellDepends = [ - base - binary - containers - dawg - directory - filepath - hist-pl-dawg - hist-pl-types - pipes - text - transformers - ]; - description = "A binary representation of the historical dictionary of Polish"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "hist-pl-lmf" = callPackage ( - { - mkDerivation, - base, - hist-pl-types, - polysoup, - text, - }: - mkDerivation { - pname = "hist-pl-lmf"; - version = "0.1.0"; - sha256 = "146vz15fig8k1wcvcw7fg64abxvg1nyarvhigz9jkzf5yngkzwvm"; - libraryHaskellDepends = [ - base - hist-pl-types - polysoup - text - ]; - description = "LMF parsing for the historical dictionary of Polish"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "hist-pl-transliter" = callPackage ( { mkDerivation, @@ -329233,31 +189237,6 @@ self: { } ) { }; - "hist-pl-types" = callPackage ( - { - mkDerivation, - base, - binary, - text, - text-binary, - }: - mkDerivation { - pname = "hist-pl-types"; - version = "0.1.0"; - sha256 = "0i13aj1xcwap0k3w48vyiiganbvj93zydawmw3gw7m0kr6nl5l9v"; - libraryHaskellDepends = [ - base - binary - text - text-binary - ]; - description = "Types in the historical dictionary of Polish"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "histogram-fill" = callPackage ( { mkDerivation, @@ -329356,155 +189335,6 @@ self: { } ) { }; - "historian" = callPackage ( - { - mkDerivation, - base, - containers, - directory, - filepath, - process, - regex-compat, - regex-posix, - }: - mkDerivation { - pname = "historian"; - version = "0.0.1"; - sha256 = "1lgajnq092jk4izy86qcw71ghxz6b8mprm4ha3ybrm5i2rlh12r6"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - containers - directory - filepath - process - regex-compat - regex-posix - ]; - description = "Extract the interesting bits from shell history"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "historian"; - broken = true; - } - ) { }; - - "hit" = callPackage ( - { - mkDerivation, - base, - bytestring, - containers, - git, - hashable, - hashtables, - hourglass, - }: - mkDerivation { - pname = "hit"; - version = "0.7.0"; - sha256 = "1d3kqc9yd5hxcrr406cwbxjqnqj0bh4laayx2v1mqqz48x6rmqah"; - isLibrary = false; - isExecutable = true; - enableSeparateDataOutput = true; - executableHaskellDepends = [ - base - bytestring - containers - git - hashable - hashtables - hourglass - ]; - description = "Git like program in haskell"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "Hit"; - } - ) { }; - - "hit-graph" = callPackage ( - { - mkDerivation, - base, - containers, - fgl, - hashable, - hit, - transformers, - unordered-containers, - }: - mkDerivation { - pname = "hit-graph"; - version = "0.1"; - sha256 = "0wi2lg6121f6mccnsav9wdmiff3hd45g3mw6c4s93qns0yxl9wch"; - libraryHaskellDepends = [ - base - containers - fgl - hashable - hit - transformers - unordered-containers - ]; - description = "Use graph algorithms to access and manipulate Git repos"; - license = lib.licenses.publicDomain; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "hit-on" = callPackage ( - { - mkDerivation, - ansi-terminal, - base, - base-noprelude, - directory, - github, - gitrev, - hspec, - optparse-applicative, - process, - relude, - shellmet, - text, - vector, - }: - mkDerivation { - pname = "hit-on"; - version = "0.1.0.0"; - sha256 = "13pxn9xqyfd5n53bl57bk0wc8qlnl5dsh1xq5y49arsnk2g86ir5"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - ansi-terminal - base-noprelude - directory - github - gitrev - optparse-applicative - process - relude - shellmet - text - vector - ]; - executableHaskellDepends = [ base ]; - testHaskellDepends = [ - base - github - hspec - text - ]; - description = "Haskell Git Helper Tool"; - license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; - mainProgram = "hit"; - broken = true; - } - ) { }; - "hix" = callPackage ( { mkDerivation, @@ -329621,41 +189451,6 @@ self: { } ) { }; - "hjcase" = callPackage ( - { - mkDerivation, - aeson, - base, - bytestring, - HUnit, - test-framework, - test-framework-hunit, - text, - unordered-containers, - vector, - }: - mkDerivation { - pname = "hjcase"; - version = "0.2.0.0"; - sha256 = "0d1pb24jqk2dj635hy1way9axr9719g1ppxmxr4jpbb0sj6xphjk"; - libraryHaskellDepends = [ - aeson - base - bytestring - HUnit - test-framework - test-framework-hunit - text - unordered-containers - vector - ]; - description = "Jcase library for Haskell"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "hjpath" = callPackage ( { mkDerivation, @@ -329679,43 +189474,6 @@ self: { } ) { }; - "hjs" = callPackage ( - { - mkDerivation, - array, - base, - bytestring, - containers, - directory, - mtl, - parsec, - regex-compat, - }: - mkDerivation { - pname = "hjs"; - version = "0.2.1"; - sha256 = "0gk4misxbkc2x8hh7ynrj1ma91fs0h6q702w6r0kjq136fh48zhi"; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - array - base - bytestring - containers - directory - mtl - parsec - regex-compat - ]; - description = "JavaScript Parser"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "hjs"; - broken = true; - } - ) { }; - "hjsmin" = callPackage ( { mkDerivation, @@ -329784,163 +189542,6 @@ self: { } ) { }; - "hjson-query" = callPackage ( - { - mkDerivation, - base, - containers, - hjson, - }: - mkDerivation { - pname = "hjson-query"; - version = "1.0.2"; - sha256 = "0sj86rm5pz0q9079f5kjnpz51dxvvq72waaf8h64jzrrhkpz8mlx"; - libraryHaskellDepends = [ - base - containers - hjson - ]; - description = "library for querying from JSON"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "hjsonpointer" = callPackage ( - { - mkDerivation, - aeson, - base, - hashable, - hspec, - http-types, - QuickCheck, - text, - unordered-containers, - vector, - }: - mkDerivation { - pname = "hjsonpointer"; - version = "1.5.0"; - sha256 = "1bdr5jpc2vcx6bk724jmfz7nh3jgqwrmj4hab64h9pjdrl4vz00y"; - revision = "3"; - editedCabalFile = "1y9fhqb8kjgflsds8nkw7nr1b9ydyz5f3227b4k8b7ir97rzy5d0"; - libraryHaskellDepends = [ - aeson - base - hashable - text - unordered-containers - vector - ]; - testHaskellDepends = [ - aeson - base - hspec - http-types - QuickCheck - text - unordered-containers - vector - ]; - description = "JSON Pointer library"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "hjsonschema" = callPackage ( - { - mkDerivation, - aeson, - async, - base, - bytestring, - containers, - directory, - file-embed, - filepath, - hashable, - hjsonpointer, - hspec, - http-client, - http-client-tls, - http-types, - pcre-heavy, - profunctors, - protolude, - QuickCheck, - safe-exceptions, - scientific, - text, - unordered-containers, - vector, - wai-app-static, - warp, - }: - mkDerivation { - pname = "hjsonschema"; - version = "1.10.0"; - sha256 = "1ya93a1jh40aia3adrg2ipdzyxww6cpnzcdw41r51h8x6f2m0n77"; - revision = "1"; - editedCabalFile = "1563di5mfclj4ms6wd9vszdyghxpqm3r8q9vfkanw9wjlw7kq56q"; - libraryHaskellDepends = [ - aeson - base - bytestring - containers - file-embed - filepath - hashable - hjsonpointer - http-client - http-client-tls - http-types - pcre-heavy - profunctors - protolude - QuickCheck - safe-exceptions - scientific - text - unordered-containers - vector - ]; - testHaskellDepends = [ - aeson - async - base - bytestring - containers - directory - file-embed - filepath - hashable - hjsonpointer - hspec - http-client - http-client-tls - http-types - pcre-heavy - profunctors - protolude - QuickCheck - safe-exceptions - scientific - text - unordered-containers - vector - wai-app-static - warp - ]; - description = "JSON Schema library"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "hjugement" = callPackage ( { mkDerivation, @@ -329984,164 +189585,6 @@ self: { } ) { }; - "hjugement-cli" = callPackage ( - { - mkDerivation, - aeson, - base, - base64-bytestring, - binary, - bytestring, - containers, - cryptonite, - deepseq, - directory, - filepath, - ghc-prim, - hjugement, - hjugement-protocol, - lens-family-core, - memory, - pipes, - pipes-aeson, - pipes-bytestring, - pipes-group, - pipes-parse, - pipes-safe, - pipes-text, - random, - reflection, - symantic-cli, - symantic-document, - terminal-size, - text, - time, - transformers, - unix, - unordered-containers, - }: - mkDerivation { - pname = "hjugement-cli"; - version = "0.0.0.20191104"; - sha256 = "17bz2cb9i7iv1s1s5g17797x07h80p3h682zkq9i4s5cbqjga44g"; - revision = "1"; - editedCabalFile = "0bjyn458jmrn230y7gphkx3bggvjkm8jbgnnz8h37rwj3mjaw7q5"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - aeson - base - base64-bytestring - binary - bytestring - containers - cryptonite - deepseq - directory - filepath - ghc-prim - hjugement - hjugement-protocol - lens-family-core - memory - pipes - pipes-aeson - pipes-bytestring - pipes-group - pipes-parse - pipes-safe - pipes-text - random - reflection - symantic-cli - symantic-document - terminal-size - text - time - transformers - unix - unordered-containers - ]; - description = "Majority Judgment and Helios-C command line tool"; - license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - mainProgram = "hjugement"; - } - ) { }; - - "hjugement-protocol" = callPackage ( - { - mkDerivation, - aeson, - base, - base64-bytestring, - binary, - bytestring, - containers, - criterion, - cryptonite, - deepseq, - memory, - QuickCheck, - random, - reflection, - tasty, - tasty-hunit, - tasty-quickcheck, - text, - transformers, - unordered-containers, - }: - mkDerivation { - pname = "hjugement-protocol"; - version = "0.0.10.20191104"; - sha256 = "1zra21x92bvgnqj4if2lhhzbf4kwj9xn1lp8glzngvby0914na7x"; - libraryHaskellDepends = [ - aeson - base - base64-bytestring - binary - bytestring - containers - cryptonite - deepseq - memory - random - reflection - text - transformers - unordered-containers - ]; - testHaskellDepends = [ - aeson - base - containers - QuickCheck - random - tasty - tasty-hunit - tasty-quickcheck - text - transformers - ]; - benchmarkHaskellDepends = [ - aeson - base - containers - criterion - deepseq - QuickCheck - random - text - transformers - ]; - description = "A cryptographic protocol for the Majority Judgment"; - license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "hkd" = callPackage ( { mkDerivation, @@ -330185,41 +189628,6 @@ self: { } ) { }; - "hkd-delta" = callPackage ( - { mkDerivation, base }: - mkDerivation { - pname = "hkd-delta"; - version = "0.0.1"; - sha256 = "0qb20y6nca61h4mpgyhi6xfcwxf4q92pscr5zqd8yklfcz4qqyz9"; - libraryHaskellDepends = [ base ]; - description = "Definition of \"Delta structures\" for higher kinded data"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "hkd-lens" = callPackage ( - { - mkDerivation, - base, - profunctors, - }: - mkDerivation { - pname = "hkd-lens"; - version = "0.0.1"; - sha256 = "0s3siyp85k84c9j1srg8y78ia6yj9s6vls9y1hnkgsmg1mx755qg"; - libraryHaskellDepends = [ - base - profunctors - ]; - description = "Generic lens/prism/traversal-kinded data"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "hkd-records" = callPackage ( { mkDerivation, @@ -330317,37 +189725,6 @@ self: { } ) { }; - "hkt" = callPackage ( - { - mkDerivation, - base, - hspec, - inspection-testing, - protolude, - text, - }: - mkDerivation { - pname = "hkt"; - version = "0.0.1"; - sha256 = "14w3r5i0gqsh1c6xjrr4xz3ym94gp206sji9gkyy4ahdp2ymyvj6"; - libraryHaskellDepends = [ - base - protolude - ]; - testHaskellDepends = [ - base - hspec - inspection-testing - protolude - text - ]; - description = "A library for higher kinded types"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "hlatex" = callPackage ( { mkDerivation, @@ -330389,126 +189766,6 @@ self: { } ) { }; - "hlbfgsb" = callPackage ( - { - mkDerivation, - base, - gfortran, - HUnit, - test-framework, - test-framework-hunit, - vector, - }: - mkDerivation { - pname = "hlbfgsb"; - version = "0.0.1.0"; - sha256 = "0nar59rbi5zr6gi2k0f49f09fnxcmshnq9bb2dh973a4y3gcw6dx"; - libraryHaskellDepends = [ - base - vector - ]; - librarySystemDepends = [ gfortran ]; - libraryToolDepends = [ gfortran ]; - testHaskellDepends = [ - base - HUnit - test-framework - test-framework-hunit - vector - ]; - description = "Haskell binding to L-BFGS-B version 3.0"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { inherit (pkgs) gfortran; }; - - "hlcm" = callPackage ( - { - mkDerivation, - array, - base, - bytestring, - bytestring-csv, - containers, - haskell98, - parallel, - }: - mkDerivation { - pname = "hlcm"; - version = "0.2.2"; - sha256 = "14yqc02kfp2c9i22inma29cprqz9k8yx6c7m90kwimv4psv8766a"; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - array - base - bytestring - haskell98 - parallel - ]; - executableHaskellDepends = [ - array - base - bytestring - bytestring-csv - containers - haskell98 - parallel - ]; - description = "Fast algorithm for mining closed frequent itemsets"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "hleap" = callPackage ( - { - mkDerivation, - aeson, - base, - containers, - data-default, - mtl, - text, - unordered-containers, - websockets, - }: - mkDerivation { - pname = "hleap"; - version = "0.2.0.0"; - sha256 = "0hh9r884kjw8gi7mcg74kzixzxxwzs1h67mg9z108kmlmnb742ry"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson - base - containers - data-default - mtl - text - unordered-containers - websockets - ]; - executableHaskellDepends = [ - aeson - base - containers - data-default - mtl - text - unordered-containers - websockets - ]; - description = "Web Socket interface to Leap Motion controller"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - mainProgram = "leap-tracker"; - broken = true; - } - ) { }; - "hledger" = callPackage ( { mkDerivation, @@ -330882,138 +190139,6 @@ self: { } ) { }; - "hledger-api" = callPackage ( - { - mkDerivation, - aeson, - base, - bytestring, - containers, - data-default, - Decimal, - docopt, - either, - hledger, - hledger-lib, - microlens, - microlens-platform, - safe, - servant-server, - servant-swagger, - swagger2, - text, - transformers, - wai, - wai-extra, - warp, - }: - mkDerivation { - pname = "hledger-api"; - version = "1.14"; - sha256 = "18zpclm3nh2zq6cqa10vm232ndg22r8s4h3ffmn2m4fg05172ymd"; - revision = "4"; - editedCabalFile = "126l1d6dirg0kn5p5wdrjnkckn6jsycrvqsh63ysiwswn096gf4c"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - aeson - base - bytestring - containers - data-default - Decimal - docopt - either - hledger - hledger-lib - microlens - microlens-platform - safe - servant-server - servant-swagger - swagger2 - text - transformers - wai - wai-extra - warp - ]; - description = "Web API server for the hledger accounting tool"; - license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - mainProgram = "hledger-api"; - broken = true; - } - ) { }; - - "hledger-chart" = callPackage ( - { - mkDerivation, - base, - Chart, - cmdargs, - colour, - containers, - hledger, - hledger-lib, - HUnit, - safe, - time, - }: - mkDerivation { - pname = "hledger-chart"; - version = "0.16.1"; - sha256 = "1yk563032ir98gqdvxazjjl1alg6q1pflzawh11pr3zrdnriracn"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - Chart - cmdargs - colour - containers - hledger - hledger-lib - HUnit - safe - time - ]; - description = "A pie chart image generator for the hledger accounting tool"; - license = "GPL"; - hydraPlatforms = lib.platforms.none; - mainProgram = "hledger-chart"; - broken = true; - } - ) { }; - - "hledger-diff" = callPackage ( - { - mkDerivation, - base, - hledger-lib, - text, - time, - }: - mkDerivation { - pname = "hledger-diff"; - version = "0.2.0.14"; - sha256 = "16njnl51kxmk2ika1ily5snl761559k0pbiql42pbn7zry93l1zn"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - hledger-lib - text - time - ]; - description = "Compares the transactions in two ledger files"; - license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - mainProgram = "hledger-diff"; - broken = true; - } - ) { }; - "hledger-flow" = callPackage ( { mkDerivation, @@ -331210,42 +190335,6 @@ self: { } ) { }; - "hledger-irr" = callPackage ( - { - mkDerivation, - base, - Cabal, - data-default-class, - Decimal, - hledger-lib, - math-functions, - text, - time, - }: - mkDerivation { - pname = "hledger-irr"; - version = "0.1.1.16"; - sha256 = "1zvr4yrl0s1hiz0k76dmkkx89656jlamdmdi7y2cmsw1m5cf97v4"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - Cabal - data-default-class - Decimal - hledger-lib - math-functions - text - time - ]; - description = "computes the internal rate of return of an investment"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "hledger-irr"; - broken = true; - } - ) { }; - "hledger-lib" = callPackage ( { mkDerivation, @@ -331570,55 +190659,6 @@ self: { } ) { }; - "hledger-makeitso" = callPackage ( - { - mkDerivation, - base, - containers, - foldl, - HUnit, - stm, - text, - time, - turtle, - }: - mkDerivation { - pname = "hledger-makeitso"; - version = "0.10.0.0"; - sha256 = "1gwlrh248vd9m07388ijvd1dxrsbhlf6jj5s0715ph9h1hrlb1jq"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - containers - foldl - stm - text - time - turtle - ]; - executableHaskellDepends = [ - base - text - turtle - ]; - testHaskellDepends = [ - base - containers - foldl - HUnit - stm - text - turtle - ]; - description = "An hledger workflow focusing on automated statement import and classification"; - license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - mainProgram = "hledger-makeitso"; - broken = true; - } - ) { }; - "hledger-stockquotes" = callPackage ( { mkDerivation, @@ -331853,42 +190893,6 @@ self: { } ) { }; - "hledger-vty" = callPackage ( - { - mkDerivation, - base, - cmdargs, - hledger, - hledger-lib, - HUnit, - safe, - time, - vty, - }: - mkDerivation { - pname = "hledger-vty"; - version = "0.16.1"; - sha256 = "10aq9apxz6nrzvvynha0wkhy34dn8dybizr8assni6rns8ylh188"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - cmdargs - hledger - hledger-lib - HUnit - safe - time - vty - ]; - description = "A curses-style console interface for the hledger accounting tool"; - license = "GPL"; - hydraPlatforms = lib.platforms.none; - mainProgram = "hledger-vty"; - broken = true; - } - ) { }; - "hledger-web" = callPackage ( { mkDerivation, @@ -332153,36 +191157,6 @@ self: { } ) { }; - "hlibBladeRF" = callPackage ( - { - mkDerivation, - base, - bindings-DSL, - bytestring, - hlint, - libbladeRF, - }: - mkDerivation { - pname = "hlibBladeRF"; - version = "0.1.0.6"; - sha256 = "15k15afy04kld6ar317lk441js873fcyk8qh92r98hnhbpq3nrmw"; - libraryHaskellDepends = [ - base - bindings-DSL - bytestring - ]; - libraryPkgconfigDepends = [ libbladeRF ]; - testHaskellDepends = [ - base - hlint - ]; - description = "Haskell binding to libBladeRF SDR library"; - license = lib.licenses.lgpl21Only; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { inherit (pkgs) libbladeRF; }; - "hlibcpuid" = callPackage ( { mkDerivation, base }: mkDerivation { @@ -332200,48 +191174,6 @@ self: { } ) { }; - "hlibev" = callPackage ( - { - mkDerivation, - base, - ev, - network, - }: - mkDerivation { - pname = "hlibev"; - version = "0.4.0"; - sha256 = "0416w0k5ahnj57gc6n15ihpsyznmm36s1sjkycl35l7s8bxdldyw"; - libraryHaskellDepends = [ - base - network - ]; - librarySystemDepends = [ ev ]; - description = "FFI interface to libev"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { ev = null; }; - - "hlibfam" = callPackage ( - { - mkDerivation, - base, - fam, - }: - mkDerivation { - pname = "hlibfam"; - version = "0.2"; - sha256 = "10rxwfq2ppmqs3kjb8cq6l04g0qsxqy7w7ri7dj013kiz7rzk1yd"; - libraryHaskellDepends = [ base ]; - librarySystemDepends = [ fam ]; - description = "FFI interface to libFAM"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { fam = null; }; - "hlibgit2" = callPackage ( @@ -332516,106 +191448,6 @@ self: { } ) { }; - "hlivy" = callPackage ( - { - mkDerivation, - aeson, - base, - bytestring, - exceptions, - http-client, - http-types, - lens, - mtl, - resourcet, - text, - transformers, - unordered-containers, - }: - mkDerivation { - pname = "hlivy"; - version = "1.0.1"; - sha256 = "1h3gi8i1c0793da1rpw01mqnrri23nca3m67n56id6ys3ld9901b"; - libraryHaskellDepends = [ - aeson - base - bytestring - exceptions - http-client - http-types - lens - mtl - resourcet - text - transformers - unordered-containers - ]; - description = "Client library for the Apache Livy REST API"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "hlogger" = callPackage ( - { - mkDerivation, - base, - old-locale, - time, - }: - mkDerivation { - pname = "hlogger"; - version = "0.0.3.0"; - sha256 = "1q3jsnxy7x0lv7wqfv9hlqnr22661k4agbb8yjbhj32fxyjqrn4f"; - libraryHaskellDepends = [ - base - old-locale - time - ]; - description = "Simple, concurrent, extendable and easy-to-use logging library"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "hlongurl" = callPackage ( - { - mkDerivation, - base, - bytestring, - curl, - json, - regex-base, - regex-posix, - }: - mkDerivation { - pname = "hlongurl"; - version = "0.9.3"; - sha256 = "1njj7cvj9zjy0gghkr33bzwsv6lj27xvf56kicsr0pyyn76wplv5"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - curl - json - ]; - executableHaskellDepends = [ - base - bytestring - curl - regex-base - regex-posix - ]; - description = "Library and utility interfacing to longurl.org"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "hlongurl"; - broken = true; - } - ) { }; - "hlrdb" = callPackage ( { mkDerivation, @@ -332694,31 +191526,6 @@ self: { } ) { }; - "hls" = callPackage ( - { - mkDerivation, - base, - containers, - hcg-minus, - hps, - }: - mkDerivation { - pname = "hls"; - version = "0.15"; - sha256 = "0h32fyvnqkxx8c9vfpdjvnqaxkvr8b15myjavxmnm6kwh7v2796l"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base - containers - hcg-minus - hps - ]; - description = "Haskell Lindenmayer Systems"; - license = "GPL"; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "hls-alternate-number-format-plugin" = callPackage ( { mkDerivation, @@ -334324,128 +193131,6 @@ self: { } ) { }; - "hlwm" = callPackage ( - { - mkDerivation, - base, - stm, - transformers, - unix, - X11, - }: - mkDerivation { - pname = "hlwm"; - version = "0.1.0.2"; - sha256 = "13ds5z34yszjrhvrfm4m5q4yx42q10y3ns2akhnk9a46sgkahw43"; - revision = "1"; - editedCabalFile = "10qjaqm4yw0snjyx8wvwgs2l3iczqycn9wgdms8gsp253aqz2xak"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - stm - transformers - unix - X11 - ]; - description = "Bindings to the herbstluftwm window manager"; - license = lib.licenses.bsd2; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "hly" = callPackage ( - { - mkDerivation, - base, - directory, - filepath, - hmt, - process, - split, - }: - mkDerivation { - pname = "hly"; - version = "0.16"; - sha256 = "0ccd5w4vzwki6p9dc69hx65ac1mkbjh5dx96gp2cb8qj3w3cas2m"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base - directory - filepath - hmt - process - split - ]; - description = "Haskell LilyPond"; - license = "GPL"; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "hmark" = callPackage ( - { - mkDerivation, - base, - bytestring, - random, - safe, - tokyocabinet-haskell, - utf8-string, - }: - mkDerivation { - pname = "hmark"; - version = "1.2"; - sha256 = "1s4ichb5dchcimcq9pvdddv2ibbdk2cb2b7p0l7p9s5lxn53bxgg"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - bytestring - random - safe - tokyocabinet-haskell - utf8-string - ]; - executableHaskellDepends = [ base ]; - description = "A tool and library for Markov chains based text generation"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "hmark"; - } - ) { }; - - "hmarkup" = callPackage ( - { - mkDerivation, - base, - containers, - mtl, - network, - parsec, - xhtml, - }: - mkDerivation { - pname = "hmarkup"; - version = "3000.0.1"; - sha256 = "0p6f1jd1b01dvzffiac17f8z0l403f54vrph8k9b3549lpjfh452"; - libraryHaskellDepends = [ - base - containers - mtl - network - parsec - xhtml - ]; - description = "Simple wikitext-like markup format implementation"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "hmatrix" = callPackage ( { mkDerivation, @@ -334541,33 +193226,6 @@ self: { } ) { }; - "hmatrix-banded" = callPackage ( - { - mkDerivation, - base, - hmatrix, - liblapack, - transformers, - }: - mkDerivation { - pname = "hmatrix-banded"; - version = "0.0.0.3"; - sha256 = "1vmvgxvyllqgp7cb2yrfqir99gcxn50s7gc9117g2fq8m3dqq34f"; - revision = "1"; - editedCabalFile = "0q58d297a555xb9mrpri9p30wyr5jmi46afixrh3hlvldddkw663"; - libraryHaskellDepends = [ - base - hmatrix - transformers - ]; - librarySystemDepends = [ liblapack ]; - description = "HMatrix interface to LAPACK functions for banded matrices"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { inherit (pkgs) liblapack; }; - "hmatrix-csv" = callPackage ( { mkDerivation, @@ -334672,29 +193330,6 @@ self: { } ) { inherit (pkgs) gsl; }; - "hmatrix-mmap" = callPackage ( - { - mkDerivation, - base, - hmatrix, - mmap, - }: - mkDerivation { - pname = "hmatrix-mmap"; - version = "0.0.5"; - sha256 = "03z1f1xqw4hqh41q6hh8p103cl7dg9hqcawqlinapfmkvw5mzy8d"; - libraryHaskellDepends = [ - base - hmatrix - mmap - ]; - description = "Memory map Vector from disk into memory efficiently"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "hmatrix-morpheus" = callPackage ( @@ -334748,29 +193383,6 @@ self: { inherit (pkgs) liblapack; }; - "hmatrix-nipals" = callPackage ( - { - mkDerivation, - base, - hmatrix, - }: - mkDerivation { - pname = "hmatrix-nipals"; - version = "0.2"; - sha256 = "0afmpwfi4hqz5bpcsm579mcvz1dx7vxqmqj2rb6axnw9512xyarj"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - hmatrix - ]; - description = "NIPALS method for Principal Components Analysis on large data-sets"; - license = lib.licenses.lgpl21Only; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "hmatrix-nlopt" = callPackage ( { mkDerivation, @@ -334845,42 +193457,6 @@ self: { } ) { }; - "hmatrix-sparse" = - callPackage - ( - { - mkDerivation, - base, - hmatrix, - mkl_core, - mkl_intel, - mkl_sequential, - }: - mkDerivation { - pname = "hmatrix-sparse"; - version = "0.19.0.0"; - sha256 = "04h9vf4aayhmjnlk8wnf9mg3rfjx9n6dhnv49vpwv7j8c4qhbd4s"; - libraryHaskellDepends = [ - base - hmatrix - ]; - librarySystemDepends = [ - mkl_core - mkl_intel - mkl_sequential - ]; - description = "Sparse linear solver"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) - { - mkl_core = null; - mkl_intel = null; - mkl_sequential = null; - }; - "hmatrix-special" = callPackage ( { mkDerivation, @@ -334902,227 +193478,6 @@ self: { } ) { }; - "hmatrix-static" = callPackage ( - { - mkDerivation, - array, - base, - haskell-src-meta, - hmatrix, - parsec, - template-haskell, - tfp, - }: - mkDerivation { - pname = "hmatrix-static"; - version = "0.3.0.2"; - sha256 = "1qjxj8k4cracinyyjpk0nr3c5n119v39kpxig78c11cjhvhm3zgi"; - libraryHaskellDepends = [ - array - base - haskell-src-meta - hmatrix - parsec - template-haskell - tfp - ]; - description = "hmatrix with vector and matrix sizes encoded in types"; - license = "GPL"; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "hmatrix-sundials" = - callPackage - ( - { - mkDerivation, - base, - bytestring, - cassava, - clock, - containers, - deepseq, - diagrams-lib, - diagrams-rasterific, - hmatrix, - hspec, - inline-c, - lens, - optparse-applicative, - plots, - split, - sundials_arkode, - sundials_cvode, - template-haskell, - vector, - }: - mkDerivation { - pname = "hmatrix-sundials"; - version = "0.20.1.0"; - sha256 = "0ysh3zamv8vm3i1a9bz0iqikfdxpmh95g4b0k8kgayjchhs3l6yn"; - libraryHaskellDepends = [ - base - containers - deepseq - hmatrix - inline-c - split - template-haskell - vector - ]; - librarySystemDepends = [ - sundials_arkode - sundials_cvode - ]; - testHaskellDepends = [ - base - containers - diagrams-lib - diagrams-rasterific - hmatrix - hspec - inline-c - lens - plots - split - template-haskell - vector - ]; - testSystemDepends = [ - sundials_arkode - sundials_cvode - ]; - benchmarkHaskellDepends = [ - base - bytestring - cassava - clock - hmatrix - optparse-applicative - ]; - description = "hmatrix interface to sundials"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) - { - sundials_arkode = null; - sundials_cvode = null; - }; - - "hmatrix-svdlibc" = callPackage ( - { - mkDerivation, - base, - criterion, - hmatrix, - hspec, - QuickCheck, - vector, - }: - mkDerivation { - pname = "hmatrix-svdlibc"; - version = "0.5.0.1"; - sha256 = "0n89899f4n84d284aq2lx88zz1327a030dlzh17bh0ns2yjbm63g"; - libraryHaskellDepends = [ - base - hmatrix - vector - ]; - testHaskellDepends = [ - base - hmatrix - hspec - QuickCheck - vector - ]; - benchmarkHaskellDepends = [ - base - criterion - hmatrix - vector - ]; - description = "SVDLIBC bindings for HMatrix"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "hmatrix-syntax" = callPackage ( - { - mkDerivation, - base, - haskell-src-exts, - haskell-src-meta, - hmatrix, - template-haskell, - }: - mkDerivation { - pname = "hmatrix-syntax"; - version = "0.1.2.1"; - sha256 = "0qy5dx480hf9i03d16kylg2l8dsj10lzwfbik5ijqa4x3h7h038b"; - libraryHaskellDepends = [ - base - haskell-src-exts - haskell-src-meta - hmatrix - template-haskell - ]; - description = "MATLAB-like syntax for hmatrix vectors and matrices"; - license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "hmatrix-tests" = callPackage ( - { - mkDerivation, - base, - binary, - deepseq, - hmatrix, - hmatrix-gsl, - HUnit, - QuickCheck, - random, - }: - mkDerivation { - pname = "hmatrix-tests"; - version = "0.19.0.0"; - sha256 = "18adrcwd8zgw8x9dn5fvpjq4l88iqvlm5z0yxzr96zppi8z5w6fw"; - libraryHaskellDepends = [ - base - binary - deepseq - hmatrix - hmatrix-gsl - HUnit - QuickCheck - random - ]; - testHaskellDepends = [ - base - HUnit - QuickCheck - random - ]; - benchmarkHaskellDepends = [ - base - HUnit - QuickCheck - random - ]; - description = "Tests for hmatrix"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "hmatrix-vector-sized" = callPackage ( { mkDerivation, @@ -335156,75 +193511,6 @@ self: { } ) { }; - "hmeap" = callPackage ( - { - mkDerivation, - array, - base, - bytestring, - bytestring-lexing, - delimited-text, - parsec, - }: - mkDerivation { - pname = "hmeap"; - version = "0.15"; - sha256 = "19hip2xzlsgj1fd8y4l4zhn4lcj8n8qyrayn6idzvlskx4vca0bh"; - libraryHaskellDepends = [ - array - base - bytestring - bytestring-lexing - delimited-text - parsec - ]; - description = "Haskell Meapsoft Parser"; - license = "GPL"; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "hmeap-utils" = callPackage ( - { - mkDerivation, - array, - base, - bytestring, - bytestring-lexing, - delimited-text, - gnuplot, - hmatrix, - hmeap, - hosc, - hsc3, - parsec, - }: - mkDerivation { - pname = "hmeap-utils"; - version = "0.14"; - sha256 = "1dnmvzy7vkx2rfbkkqapfpql8h0gm9sq0333r90hy5nsyl9hhbq8"; - isLibrary = false; - isExecutable = true; - enableSeparateDataOutput = true; - executableHaskellDepends = [ - array - base - bytestring - bytestring-lexing - delimited-text - gnuplot - hmatrix - hmeap - hosc - hsc3 - parsec - ]; - description = "Haskell Meapsoft Parser Utilities"; - license = "GPL"; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "hmemdb" = callPackage ( { mkDerivation, @@ -335252,71 +193538,6 @@ self: { } ) { }; - "hmenu" = callPackage ( - { - mkDerivation, - base, - MissingH, - process, - }: - mkDerivation { - pname = "hmenu"; - version = "0.1.0.1"; - sha256 = "0ym3nzyx1jwcc7m6qj8zchs2q73rj82d7f1r2rvykhns7ca20hrp"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - MissingH - process - ]; - description = "CLI fuzzy finder and launcher"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "hmenu"; - broken = true; - } - ) { }; - - "hmep" = callPackage ( - { - mkDerivation, - base, - HUnit, - mwc-random, - primitive, - probable, - vector, - }: - mkDerivation { - pname = "hmep"; - version = "0.1.1"; - sha256 = "1q8ns90mrww27pz90c0q3hr817s61rr0yvpksamkq8g75ywy5qma"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - mwc-random - primitive - probable - vector - ]; - executableHaskellDepends = [ - base - probable - vector - ]; - testHaskellDepends = [ - base - HUnit - vector - ]; - description = "HMEP Multi Expression Programming – a genetic programming variant"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "hmidi" = callPackage ( { mkDerivation, @@ -335336,124 +193557,6 @@ self: { } ) { }; - "hmk" = callPackage ( - { - mkDerivation, - base, - bytestring, - containers, - directory, - filepath, - mtl, - parsec, - pcre-light, - process, - unix, - }: - mkDerivation { - pname = "hmk"; - version = "0.9.7.4"; - sha256 = "1893kakhjy9j47i2lnwc2vnh19jb023s7vwjiaarkp7pvkqznln9"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - containers - ]; - executableHaskellDepends = [ - base - bytestring - containers - directory - filepath - mtl - parsec - pcre-light - process - unix - ]; - description = "A make alternative based on Plan9's mk"; - license = "GPL"; - hydraPlatforms = lib.platforms.none; - mainProgram = "hmk"; - broken = true; - } - ) { }; - - "hmm" = callPackage ( - { - mkDerivation, - array, - base, - data-memocombinators, - list-extras, - logfloat, - }: - mkDerivation { - pname = "hmm"; - version = "0.2.1.1"; - sha256 = "08gdicnhls8y180il2k51zrcra1acw8m1qw0s2nz5w57mhfnxq31"; - libraryHaskellDepends = [ - array - base - data-memocombinators - list-extras - logfloat - ]; - description = "A hidden markov model library"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "hmm-hmatrix" = callPackage ( - { - mkDerivation, - array, - base, - containers, - deepseq, - explicit-exception, - hmatrix, - lazy-csv, - non-empty, - QuickCheck, - random, - semigroups, - transformers, - utility-ht, - }: - mkDerivation { - pname = "hmm-hmatrix"; - version = "0.1.1"; - sha256 = "0vgsln8nskyqppjmd2c8mypq1922a2mxbihp4kz29naqzckh0hdh"; - libraryHaskellDepends = [ - array - base - containers - deepseq - explicit-exception - hmatrix - lazy-csv - non-empty - QuickCheck - random - semigroups - transformers - utility-ht - ]; - testHaskellDepends = [ - base - QuickCheck - ]; - description = "Hidden Markov Models using HMatrix primitives"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "hmm-lapack" = callPackage ( { mkDerivation, @@ -335526,52 +193629,6 @@ self: { } ) { }; - "hmp3" = callPackage ( - { - mkDerivation, - array, - base, - binary, - bytestring, - containers, - directory, - mersenne-random, - ncurses, - old-time, - pcre-light, - process, - unix, - zlib, - }: - mkDerivation { - pname = "hmp3"; - version = "1.5.2.1"; - sha256 = "0kfqzydilajcpaazpbhmpv3h18n3lx839wxmcbjlzvjc78ajblb3"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - array - base - binary - bytestring - containers - directory - mersenne-random - old-time - pcre-light - process - unix - zlib - ]; - executableSystemDepends = [ ncurses ]; - description = "An ncurses mp3 player written in Haskell"; - license = "GPL"; - hydraPlatforms = lib.platforms.none; - mainProgram = "hmp3"; - broken = true; - } - ) { inherit (pkgs) ncurses; }; - "hmp3-ng" = callPackage ( { mkDerivation, @@ -335656,233 +193713,95 @@ self: { logict, multiset-comb, parsec, - primes, - process, - random, - safe, - split, - strict, - text, - time, - }: - mkDerivation { - pname = "hmt"; - version = "0.20"; - sha256 = "0nz1k7xyyv51yjxlndwbqlg2vwrgxc7mj362nfclqfmly0ml0ynf"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - array - base - bytestring - colour - containers - data-memocombinators - data-ordlist - directory - fgl - filepath - hmt-base - lazy-csv - logict - multiset-comb - parsec - primes - process - random - safe - split - strict - text - time - ]; - description = "Haskell Music Theory"; - license = lib.licenses.gpl3Only; - } - ) { }; - - "hmt-base" = callPackage ( - { - mkDerivation, - array, - base, - bytestring, - containers, - data-ordlist, - directory, - filepath, - lazy-csv, - monad-loops, - process, - random, - safe, - split, - text, - time, - }: - mkDerivation { - pname = "hmt-base"; - version = "0.20"; - sha256 = "1g28if5b4azpbj28s4p6n76i2bami5przmh9f2axaj3awpk1ly2r"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - array - base - bytestring - containers - data-ordlist - directory - filepath - lazy-csv - monad-loops - process - random - safe - split - text - time - ]; - description = "Haskell Music Theory Base"; - license = lib.licenses.gpl3Only; - } - ) { }; - - "hmt-diagrams" = callPackage ( - { - mkDerivation, - base, - cairo, - colour, - filepath, - hcg-minus, - hcg-minus-cairo, - hmt, - html-minimalist, - process, - xml, - }: - mkDerivation { - pname = "hmt-diagrams"; - version = "0.15"; - sha256 = "1g64b31bz31x0kiivazn20s22y2w7dz9f2gw5cnfkcnjd20k7glm"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base - cairo - colour - filepath - hcg-minus - hcg-minus-cairo - hmt - html-minimalist - process - xml - ]; - description = "Haskell Music Theory Diagrams"; - license = "GPL"; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "hmumps" = callPackage ( - { - mkDerivation, - base, - containers, - haskeline, - mtl, - parsec, - QuickCheck, - regex-compat, - syb, + primes, + process, + random, + safe, + split, + strict, text, + time, }: mkDerivation { - pname = "hmumps"; - version = "0.1.1"; - sha256 = "06bixsd7vzfj0gwv0b2880p4xx3f9j7y1snindlnlcfr1qdp9jn2"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ + pname = "hmt"; + version = "0.20"; + sha256 = "0nz1k7xyyv51yjxlndwbqlg2vwrgxc7mj362nfclqfmly0ml0ynf"; + enableSeparateDataOutput = true; + libraryHaskellDepends = [ + array base + bytestring + colour containers - haskeline - mtl + data-memocombinators + data-ordlist + directory + fgl + filepath + hmt-base + lazy-csv + logict + multiset-comb parsec - QuickCheck - regex-compat - syb + primes + process + random + safe + split + strict text + time ]; - description = "Interpreter for the MUMPS langugae"; - license = "GPL"; - hydraPlatforms = lib.platforms.none; - mainProgram = "hmumps"; - broken = true; + description = "Haskell Music Theory"; + license = lib.licenses.gpl3Only; } ) { }; - "hnetcdf" = callPackage ( + "hmt-base" = callPackage ( { mkDerivation, + array, base, - c2hs, + bytestring, containers, + data-ordlist, directory, - errors, filepath, - HUnit, - netcdf, - QuickCheck, - repa, - test-framework, - test-framework-hunit, - test-framework-quickcheck2, - transformers, - vector, + lazy-csv, + monad-loops, + process, + random, + safe, + split, + text, + time, }: mkDerivation { - pname = "hnetcdf"; - version = "0.5.0.0"; - sha256 = "1if09rnm6px1ba2pqvpvaxgvch0knjp9s4dbx0a5l1x10n52c340"; - isLibrary = true; - isExecutable = true; + pname = "hmt-base"; + version = "0.20"; + sha256 = "1g28if5b4azpbj28s4p6n76i2bami5przmh9f2axaj3awpk1ly2r"; enableSeparateDataOutput = true; libraryHaskellDepends = [ + array base + bytestring containers - filepath - repa - transformers - vector - ]; - librarySystemDepends = [ netcdf ]; - libraryToolDepends = [ c2hs ]; - executableHaskellDepends = [ - base - containers - repa - vector - ]; - testHaskellDepends = [ - base - containers + data-ordlist directory - errors - HUnit - QuickCheck - repa - test-framework - test-framework-hunit - test-framework-quickcheck2 - vector + filepath + lazy-csv + monad-loops + process + random + safe + split + text + time ]; - testSystemDepends = [ netcdf ]; - description = "Haskell NetCDF library"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; + description = "Haskell Music Theory Base"; + license = lib.licenses.gpl3Only; } - ) { inherit (pkgs) netcdf; }; + ) { }; "hnix" = callPackage ( { @@ -336567,215 +194486,6 @@ self: { } ) { }; - "hnock" = callPackage ( - { - mkDerivation, - base, - parsec, - text, - }: - mkDerivation { - pname = "hnock"; - version = "0.4.0"; - sha256 = "1d3w6lmvsanzwjs3r424fhalv19ia6k4w6m37jaqkq60lmzkfp5d"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - parsec - text - ]; - executableHaskellDepends = [ - base - text - ]; - testHaskellDepends = [ base ]; - description = "A Nock interpreter"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - mainProgram = "hnock"; - broken = true; - } - ) { }; - - "hnop" = callPackage ( - { mkDerivation, base }: - mkDerivation { - pname = "hnop"; - version = "0.1"; - sha256 = "0sfw9gmcn7qclgsgzqm9zalyxhz0mig91fabcfq3g0r98krgjnr2"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ base ]; - license = "unknown"; - hydraPlatforms = lib.platforms.none; - mainProgram = "hnop"; - broken = true; - } - ) { }; - - "hnormalise" = callPackage ( - { - mkDerivation, - aeson, - aeson-pretty, - attoparsec, - attoparsec-iso8601, - base, - bytestring, - conduit, - conduit-combinators, - conduit-extra, - containers, - criterion, - deepseq, - directory, - extra, - hspec, - hspec-attoparsec, - hspec-core, - hspec-expectations, - ip, - lifted-base, - monad-control, - monad-loops, - monad-par, - mtl, - optparse-applicative, - permute, - random, - resourcet, - stm-conduit, - text, - time, - transformers-base, - unix, - unordered-containers, - word8, - yaml, - zeromq4-conduit, - zeromq4-haskell, - }: - mkDerivation { - pname = "hnormalise"; - version = "0.5.1.0"; - sha256 = "11p207fmkfkc6jimnq9y30xj3l1msc5r090qvg1klmyvmhjkh702"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson - aeson-pretty - attoparsec - attoparsec-iso8601 - base - bytestring - conduit - containers - deepseq - directory - ip - monad-loops - permute - resourcet - text - time - unordered-containers - yaml - zeromq4-conduit - zeromq4-haskell - ]; - executableHaskellDepends = [ - aeson - aeson-pretty - attoparsec - attoparsec-iso8601 - base - bytestring - conduit - conduit-combinators - conduit-extra - containers - deepseq - directory - extra - ip - lifted-base - monad-control - monad-loops - monad-par - mtl - optparse-applicative - resourcet - stm-conduit - text - time - transformers-base - unix - word8 - yaml - zeromq4-conduit - zeromq4-haskell - ]; - testHaskellDepends = [ - aeson - attoparsec - attoparsec-iso8601 - base - conduit-extra - hspec - hspec-attoparsec - hspec-core - hspec-expectations - ip - text - time - ]; - benchmarkHaskellDepends = [ - aeson - attoparsec - base - criterion - random - text - ]; - description = "Log message normalisation tool producing structured JSON messages"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "ho-rewriting" = callPackage ( - { - mkDerivation, - base, - compdata, - containers, - mtl, - patch-combinators, - }: - mkDerivation { - pname = "ho-rewriting"; - version = "0.2.1"; - sha256 = "1hnbsgbrynng5zhi2p6794g70h99rdx1bcnqwvk4ibzfk8snd09x"; - libraryHaskellDepends = [ - base - compdata - containers - mtl - patch-combinators - ]; - testHaskellDepends = [ - base - compdata - patch-combinators - ]; - description = "Generic rewrite rules with safe treatment of variables and binders"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "hoare" = callPackage ( { mkDerivation, @@ -336799,51 +194509,6 @@ self: { } ) { }; - "hoauth" = callPackage ( - { - mkDerivation, - base, - binary, - bytestring, - crypto-pubkey-types, - curl, - dataenc, - entropy, - mtl, - old-locale, - random, - RSA, - SHA, - time, - utf8-string, - }: - mkDerivation { - pname = "hoauth"; - version = "0.3.5"; - sha256 = "06vk3dv2dby7wadxg4qq2bzy10hl8ix2x4vpxggwd13xy3kpzjqp"; - libraryHaskellDepends = [ - base - binary - bytestring - crypto-pubkey-types - curl - dataenc - entropy - mtl - old-locale - random - RSA - SHA - time - utf8-string - ]; - description = "A Haskell implementation of OAuth 1.0a protocol."; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "hoauth2" = callPackage ( { mkDerivation, @@ -337106,107 +194771,6 @@ self: { } ) { }; - "hob" = callPackage ( - { - mkDerivation, - base, - bytestring, - containers, - directory, - filepath, - glib, - gtk-largeTreeStore, - gtk3, - gtksourceview3, - hspec, - mtl, - pango, - system-filepath, - text, - transformers, - vector, - }: - mkDerivation { - pname = "hob"; - version = "0.0.1.0"; - sha256 = "1m2sxbw5il818g50b0650cm5vrb7njclk09m0na6i3amx3q10xjc"; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base - containers - filepath - glib - gtk-largeTreeStore - gtk3 - gtksourceview3 - mtl - pango - system-filepath - text - transformers - vector - ]; - executableHaskellDepends = [ - base - bytestring - containers - directory - filepath - gtk3 - gtksourceview3 - mtl - text - ]; - testHaskellDepends = [ - base - containers - gtk3 - gtksourceview3 - hspec - mtl - text - ]; - description = "A source code editor aiming for the convenience of use"; - license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - mainProgram = "hob"; - } - ) { }; - - "hobbes" = callPackage ( - { - mkDerivation, - base, - filemanip, - filepath, - fsnotify, - system-filepath, - text, - }: - mkDerivation { - pname = "hobbes"; - version = "0.2.2"; - sha256 = "1pri63d59q918jv1hdp2ib06m6lzw9a2b6bjyn86b2qrrx2512xd"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - filemanip - filepath - fsnotify - system-filepath - text - ]; - description = "A small file watcher for OSX"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "hobbes"; - broken = true; - } - ) { }; - "hobbits" = callPackage ( { mkDerivation, @@ -337341,156 +194905,6 @@ self: { } ) { ocilib = null; }; - "hocker" = callPackage ( - { - mkDerivation, - aeson, - aeson-pretty, - async, - base, - bytestring, - concurrentoutput, - containers, - cryptonite, - data-fix, - deepseq, - directory, - exceptions, - filepath, - foldl, - hnix, - http-client, - http-types, - lens, - lens-aeson, - lifted-base, - megaparsec, - memory, - mtl, - neat-interpolation, - network, - network-uri, - nix-paths, - optional-args, - optparse-applicative, - optparse-generic, - pooled-io, - prettyprinter, - pureMD5, - scientific, - tar, - tasty, - tasty-golden, - tasty-hunit, - tasty-quickcheck, - tasty-smallcheck, - temporary, - text, - time, - transformers, - turtle, - unordered-containers, - uri-bytestring, - vector, - word8, - wreq, - zlib, - }: - mkDerivation { - pname = "hocker"; - version = "1.0.6"; - sha256 = "1j6gcb33jf3kcskxyl0s264h5b1rvmcgkrmhrgzw7i3314394xdj"; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - aeson - aeson-pretty - async - base - bytestring - concurrentoutput - containers - cryptonite - data-fix - deepseq - directory - exceptions - filepath - foldl - hnix - http-client - http-types - lens - lens-aeson - lifted-base - megaparsec - memory - mtl - neat-interpolation - network - network-uri - nix-paths - optparse-applicative - optparse-generic - pooled-io - prettyprinter - pureMD5 - scientific - tar - temporary - text - time - transformers - turtle - unordered-containers - uri-bytestring - vector - wreq - zlib - ]; - executableHaskellDepends = [ - base - bytestring - cryptonite - data-fix - filepath - hnix - lens - mtl - network - optional-args - optparse-applicative - optparse-generic - temporary - text - ]; - testHaskellDepends = [ - aeson - base - bytestring - containers - cryptonite - mtl - network - network-uri - prettyprinter - tasty - tasty-golden - tasty-hunit - tasty-quickcheck - tasty-smallcheck - text - unordered-containers - word8 - ]; - description = "Interact with the docker registry and generate nix build instructions"; - license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "hocon" = callPackage ( { mkDerivation, @@ -337525,332 +194939,6 @@ self: { } ) { }; - "hodatime" = callPackage ( - { - mkDerivation, - base, - binary, - bytestring, - containers, - criterion, - directory, - exceptions, - filepath, - fingertree, - mtl, - parsec, - QuickCheck, - random, - tasty, - tasty-hunit, - tasty-quickcheck, - tasty-smallcheck, - time, - unix, - }: - mkDerivation { - pname = "hodatime"; - version = "0.2.1.1"; - sha256 = "1172y9x52vkr5965iqfpgdl7s02dgywpa5b87mhm8nkcy8819fkv"; - libraryHaskellDepends = [ - base - binary - bytestring - containers - directory - exceptions - filepath - fingertree - mtl - parsec - unix - ]; - testHaskellDepends = [ - base - bytestring - QuickCheck - tasty - tasty-hunit - tasty-quickcheck - tasty-smallcheck - time - ]; - benchmarkHaskellDepends = [ - base - criterion - random - ]; - description = "A fully featured date/time library based on Nodatime"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "hoe" = callPackage ( - { - mkDerivation, - base, - exceptions, - hint, - mtl, - optparse-declarative, - regex-posix, - split, - text, - time, - }: - mkDerivation { - pname = "hoe"; - version = "1.1.0"; - sha256 = "0g8528jllh90f8zbrs229ms07lg7b397pm2zjccd6kriqpq1vfv0"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - exceptions - hint - mtl - optparse-declarative - regex-posix - split - text - time - ]; - description = "hoe: Haskell One-liner Evaluator"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "hoe"; - broken = true; - } - ) { }; - - "hofix-mtl" = callPackage ( - { - mkDerivation, - base, - mtl, - star-to-star, - template-haskell, - }: - mkDerivation { - pname = "hofix-mtl"; - version = "1.0"; - sha256 = "1xlsddrdv56n7ww7a377jwz43xkkckl5zygghwxs9k88wxzskvvd"; - libraryHaskellDepends = [ - base - mtl - star-to-star - template-haskell - ]; - description = "defining @mtl@-ready monads as * -> * fixed-points"; - license = "unknown"; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "hog" = callPackage ( - { - mkDerivation, - base, - cmdargs, - filepath, - irc, - network, - old-locale, - time, - unix, - }: - mkDerivation { - pname = "hog"; - version = "0.1.1"; - sha256 = "0mmp7ymmzvhpwmwjjnin9493a81vijai7hcyqwv9wrfhdjnykb1d"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - cmdargs - filepath - irc - network - old-locale - time - unix - ]; - description = "Simple IRC logger bot"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "hog"; - broken = true; - } - ) { }; - - "hogg" = callPackage ( - { - mkDerivation, - array, - base, - bytestring, - containers, - HUnit, - mtl, - old-locale, - random, - time, - }: - mkDerivation { - pname = "hogg"; - version = "0.4.1.2"; - sha256 = "0djgbgahhrfdpxknqfjqkqwzy7ra3d7mnxyv6n76kpldalhihklw"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - array - base - bytestring - containers - HUnit - mtl - old-locale - random - time - ]; - description = "Library and tools to manipulate the Ogg container format"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "hoggl" = callPackage ( - { - mkDerivation, - aeson, - base, - base64-string, - either, - formatting, - hashable, - http-client, - http-client-tls, - mtl, - optparse-applicative, - servant, - servant-client, - text, - time, - transformers, - unordered-containers, - }: - mkDerivation { - pname = "hoggl"; - version = "0.2.0.1"; - sha256 = "1l42s17kq78lba60l2gv1ig2sxb8mfywxm0md27jp5v6s4bqc7jy"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson - base - base64-string - either - formatting - hashable - http-client - http-client-tls - mtl - servant - servant-client - text - time - transformers - unordered-containers - ]; - executableHaskellDepends = [ - base - either - formatting - http-client - http-client-tls - optparse-applicative - servant-client - text - time - transformers - ]; - description = "Bindings to the Toggl.com REST API"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "hoggl"; - broken = true; - } - ) { }; - - "hogre" = - callPackage - ( - { - mkDerivation, - base, - cgen, - cgen-hs, - grgen, - OGRE, - OgreMain, - }: - mkDerivation { - pname = "hogre"; - version = "0.1.5"; - sha256 = "0ndgnflcj885ylxf8q8l71cykrpm4j6svzqxlpdynf054safq174"; - libraryHaskellDepends = [ - base - cgen - ]; - librarySystemDepends = [ OgreMain ]; - libraryPkgconfigDepends = [ OGRE ]; - libraryToolDepends = [ - cgen - cgen-hs - grgen - ]; - doHaddock = false; - description = "Haskell binding to a subset of OGRE"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - } - ) - { - OGRE = null; - OgreMain = null; - cgen-hs = null; - grgen = null; - }; - - "hogre-examples" = callPackage ( - { - mkDerivation, - base, - hogre, - OgreMain, - }: - mkDerivation { - pname = "hogre-examples"; - version = "0.1.4"; - sha256 = "10zq4qch5bs0aawvs0zg3yyz41lykg1jrna5jqxlrvbq0wfz2s5g"; - isLibrary = false; - isExecutable = true; - enableSeparateDataOutput = true; - executableHaskellDepends = [ - base - hogre - ]; - executableSystemDepends = [ OgreMain ]; - description = "Examples for using Hogre"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - } - ) { OgreMain = null; }; - "hois" = callPackage ( { mkDerivation, @@ -337968,50 +195056,6 @@ self: { } ) { }; - "hold-em" = callPackage ( - { - mkDerivation, - base, - random, - safe, - }: - mkDerivation { - pname = "hold-em"; - version = "0.1.0.0"; - sha256 = "1j2ql6izsd85skd6l9j1qfg7pj5rf513096s9bkvqip9bb4ibr4r"; - libraryHaskellDepends = [ - base - random - safe - ]; - description = "An engine for Texas hold'em Poker"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "hole" = callPackage ( - { - mkDerivation, - base, - containers, - }: - mkDerivation { - pname = "hole"; - version = "0.1.1"; - sha256 = "05ba87wk9b5i5b4gsfvsj16rv91dqsmzyys6b5fkssrxh2ika36c"; - libraryHaskellDepends = [ - base - containers - ]; - description = "Higher kinded type removal"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "holey-format" = callPackage ( { mkDerivation }: mkDerivation { @@ -338124,107 +195168,6 @@ self: { } ) { }; - "holy-project" = callPackage ( - { - mkDerivation, - aeson, - ansi-terminal, - base, - bytestring, - Cabal, - directory, - filepath, - hastache, - http-conduit, - HUnit, - lens, - lens-aeson, - process, - QuickCheck, - random, - smallcheck, - split, - syb, - tasty, - tasty-hunit, - tasty-quickcheck, - tasty-smallcheck, - text, - time, - unix, - }: - mkDerivation { - pname = "holy-project"; - version = "0.2.0.1"; - sha256 = "05181blw3y9j2715rdm49y6mfcpgyihb6yjswhp231kr6x40zxmh"; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - aeson - ansi-terminal - base - bytestring - directory - filepath - hastache - http-conduit - lens - lens-aeson - process - random - split - syb - text - time - unix - ]; - executableHaskellDepends = [ - aeson - ansi-terminal - base - bytestring - Cabal - directory - filepath - hastache - http-conduit - HUnit - lens - lens-aeson - process - QuickCheck - random - smallcheck - split - syb - tasty - tasty-hunit - tasty-quickcheck - tasty-smallcheck - text - time - unix - ]; - testHaskellDepends = [ - base - bytestring - Cabal - HUnit - QuickCheck - smallcheck - tasty - tasty-hunit - tasty-quickcheck - tasty-smallcheck - ]; - doCheck = false; - description = "Start your Haskell project with cabal, git and tests"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "home-assistant-client" = callPackage ( { mkDerivation, @@ -338297,59 +195240,6 @@ self: { } ) { }; - "homeomorphic" = callPackage ( - { - mkDerivation, - base, - containers, - mtl, - QuickCheck, - }: - mkDerivation { - pname = "homeomorphic"; - version = "0.1"; - sha256 = "1wm15bdz02sjgpz2n266xd50q3p6mncnv8mhimky6ps1kmzb5r6c"; - libraryHaskellDepends = [ - base - containers - mtl - QuickCheck - ]; - description = "Homeomorphic Embedding Test"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "hommage" = callPackage ( - { - mkDerivation, - array, - base, - directory, - haskell98, - random, - time, - }: - mkDerivation { - pname = "hommage"; - version = "0.0.6"; - sha256 = "053zv30ghm7c9idb6za44zasnn88g85z4bzbdpfpixlkvcm4sbck"; - libraryHaskellDepends = [ - array - base - directory - haskell98 - random - time - ]; - description = "Haskell Offline Music Manipulation And Generation EDSL"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "hommage-ds" = callPackage ( { mkDerivation, @@ -338376,28 +195266,6 @@ self: { } ) { }; - "homoiconic" = callPackage ( - { - mkDerivation, - base, - template-haskell, - }: - mkDerivation { - pname = "homoiconic"; - version = "0.1.2.0"; - sha256 = "1gc1qq7pxk2dnv6m84hlbjxl0afwh12qcqnjgjqja5k4xidn5jaw"; - libraryHaskellDepends = [ - base - template-haskell - ]; - testHaskellDepends = [ base ]; - description = "Constructs FAlgebras from typeclasses, making Haskell functions homoiconic"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "homotuple" = callPackage ( { mkDerivation, @@ -338627,52 +195495,6 @@ self: { } ) { }; - "honi" = - callPackage - ( - { - mkDerivation, - base, - bytestring, - freenect, - hspec, - HUnit, - OpenNI2, - text, - }: - mkDerivation { - pname = "honi"; - version = "0.1.0.0"; - sha256 = "0g1w1i78a93d10zgdy9ixkflblx9xixa493hh2cc8jzznqsp5yfi"; - libraryHaskellDepends = [ - base - bytestring - text - ]; - librarySystemDepends = [ - freenect - OpenNI2 - ]; - testHaskellDepends = [ - base - hspec - HUnit - ]; - testSystemDepends = [ - freenect - OpenNI2 - ]; - description = "OpenNI 2 binding"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) - { - OpenNI2 = null; - inherit (pkgs) freenect; - }; - "honk" = callPackage ( { mkDerivation, base }: mkDerivation { @@ -338686,637 +195508,6 @@ self: { } ) { }; - "hoobuddy" = callPackage ( - { - mkDerivation, - aeson, - base, - bytestring, - Cabal, - directory, - filepath, - hoogle, - monad-loops, - mtl, - process, - yaml, - }: - mkDerivation { - pname = "hoobuddy"; - version = "0.1.0.1"; - sha256 = "0l1q6h0irfv3275jajvylajm2rhkfmvi1kpfan6n6z5adibh9and"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - aeson - base - bytestring - Cabal - directory - filepath - hoogle - monad-loops - mtl - process - yaml - ]; - description = "Simple tool for fetching and merging hoogle data"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - mainProgram = "hoobuddy"; - broken = true; - } - ) { }; - - "hood" = callPackage ( - { - mkDerivation, - array, - base, - FPretty, - ghc-prim, - }: - mkDerivation { - pname = "hood"; - version = "0.3.1"; - sha256 = "0bi1knfp6h6x7rrw5gggiip0h7ynhw2ds7k2q2fynrhsg9jdp5qv"; - libraryHaskellDepends = [ - array - base - FPretty - ghc-prim - ]; - testHaskellDepends = [ - base - ghc-prim - ]; - description = "Debugging by observing in place"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "hood-off" = callPackage ( - { mkDerivation, base }: - mkDerivation { - pname = "hood-off"; - version = "0.2"; - sha256 = "15rj6qfyhihzc5svl3dwkn387x7bbkl5am7h0kj5jjj8hv2q1pnc"; - libraryHaskellDepends = [ base ]; - description = "Dummy package to disable Hood without having to remove all the calls to observe"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "hood2" = callPackage ( - { - mkDerivation, - array, - base, - }: - mkDerivation { - pname = "hood2"; - version = "0.2.1"; - sha256 = "0iyi1zljywamfaqc0mbd1xw3gn1hq0lcdgx688rr8zliw23jix02"; - libraryHaskellDepends = [ - array - base - ]; - description = "Debugging by observing in place"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "hoodie" = callPackage ( - { - mkDerivation, - array, - astar, - base, - containers, - hfov, - monad-loops, - mtl, - ncurses, - random, - }: - mkDerivation { - pname = "hoodie"; - version = "0.1.0.0"; - sha256 = "1q3wpsqz833vypqnd7ljiraiyn1klxid35mh5vyizldk3i0qqf6w"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - array - astar - base - containers - hfov - monad-loops - mtl - ncurses - random - ]; - description = "A small, toy roguelike"; - license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - mainProgram = "hoodie"; - } - ) { }; - - "hoodle" = callPackage ( - { - mkDerivation, - base, - cmdargs, - configurator, - containers, - directory, - filepath, - hoodle-core, - mtl, - }: - mkDerivation { - pname = "hoodle"; - version = "0.5"; - sha256 = "1rhxmiqwmzmnaqw7qj77k9y8svyy0gknpn8di7q5r9w1bdl807q5"; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base - cmdargs - configurator - containers - directory - filepath - hoodle-core - mtl - ]; - executableHaskellDepends = [ - base - cmdargs - hoodle-core - ]; - description = "Executable for hoodle"; - license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - mainProgram = "hoodle"; - } - ) { }; - - "hoodle-builder" = callPackage ( - { - mkDerivation, - base, - blaze-builder, - bytestring, - double-conversion, - hoodle-types, - lens, - strict, - text, - }: - mkDerivation { - pname = "hoodle-builder"; - version = "0.4"; - sha256 = "015cwdjznil7hwasmvcfh1r5jvsaarc8f8mxsn8241fn688fyl7k"; - libraryHaskellDepends = [ - base - blaze-builder - bytestring - double-conversion - hoodle-types - lens - strict - text - ]; - description = "text builder for hoodle file format"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "hoodle-core" = - callPackage - ( - { - mkDerivation, - aeson, - aeson-pretty, - array, - attoparsec, - base, - base64-bytestring, - binary, - bytestring, - cairo, - cereal, - configurator, - containers, - coroutine-object, - Diff, - directory, - either, - errors, - filepath, - fsnotify, - gd, - gtk3, - hoodle-builder, - hoodle-parser, - hoodle-publish, - hoodle-render, - hoodle-types, - http-types, - lens, - libX11, - libXi, - monad-loops, - mtl, - network-uri, - pango, - poppler, - process, - pureMD5, - stm, - strict, - svgcairo, - system-filepath, - template-haskell, - text, - time, - transformers, - transformers-free, - unordered-containers, - uuid, - vector, - xournal-parser, - }: - mkDerivation { - pname = "hoodle-core"; - version = "0.16.0"; - sha256 = "1v1y99x5rbkn85f91pdw19jfccwhcyfklg1qli0d7lq2c6aak4ka"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - aeson - aeson-pretty - array - attoparsec - base - base64-bytestring - binary - bytestring - cairo - cereal - configurator - containers - coroutine-object - Diff - directory - either - errors - filepath - fsnotify - gd - gtk3 - hoodle-builder - hoodle-parser - hoodle-publish - hoodle-render - hoodle-types - http-types - lens - monad-loops - mtl - network-uri - pango - poppler - process - pureMD5 - stm - strict - svgcairo - system-filepath - template-haskell - text - time - transformers - transformers-free - unordered-containers - uuid - vector - xournal-parser - ]; - librarySystemDepends = [ - libX11 - libXi - ]; - description = "Core library for hoodle"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) - { - inherit (pkgs.xorg) libX11; - inherit (pkgs.xorg) libXi; - }; - - "hoodle-extra" = callPackage ( - { - mkDerivation, - aeson, - aeson-pretty, - attoparsec, - base, - base64-bytestring, - binary, - bytestring, - cmdargs, - conduit, - containers, - directory, - either, - filepath, - hoodle-parser, - hoodle-types, - http-conduit, - lens, - monad-loops, - mtl, - network-simple, - process, - pureMD5, - resourcet, - text, - time, - transformers, - unordered-containers, - xournal-parser, - }: - mkDerivation { - pname = "hoodle-extra"; - version = "0.1"; - sha256 = "1mqx4qia457n8v4pdyd8mc8h7ybzx5asxm2d4p9ws5g2q4ybmshy"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - aeson - aeson-pretty - attoparsec - base - base64-bytestring - binary - bytestring - cmdargs - conduit - containers - directory - either - filepath - hoodle-parser - hoodle-types - http-conduit - lens - monad-loops - mtl - network-simple - process - pureMD5 - resourcet - text - time - transformers - unordered-containers - xournal-parser - ]; - description = "extra hoodle tools"; - license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "hoodle-parser" = callPackage ( - { - mkDerivation, - attoparsec, - base, - bytestring, - containers, - directory, - either, - hoodle-types, - lens, - mtl, - strict, - text, - transformers, - xournal-types, - }: - mkDerivation { - pname = "hoodle-parser"; - version = "0.4"; - sha256 = "0yjii2s58p7vcxrir1i49qy1hfn3j5y5v8x56fl3asnnqkj0b31f"; - libraryHaskellDepends = [ - attoparsec - base - bytestring - containers - directory - either - hoodle-types - lens - mtl - strict - text - transformers - xournal-types - ]; - description = "Hoodle file parser"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "hoodle-publish" = callPackage ( - { - mkDerivation, - attoparsec, - base, - bytestring, - cairo, - cmdargs, - containers, - directory, - directory-tree, - filepath, - gtk3, - hoodle-parser, - hoodle-render, - hoodle-types, - HTTP, - io-streams, - lens, - mtl, - network-uri, - pdf-toolbox-core, - pdf-toolbox-document, - process, - transformers, - unordered-containers, - uuid, - }: - mkDerivation { - pname = "hoodle-publish"; - version = "0.2.1"; - sha256 = "1gqkfvay3jgdhx250ja8yx6nsv78jj55qd0qf0dbd4mblfrpxrsx"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - attoparsec - base - bytestring - cairo - containers - directory - directory-tree - filepath - gtk3 - hoodle-parser - hoodle-render - hoodle-types - HTTP - io-streams - lens - mtl - network-uri - pdf-toolbox-core - pdf-toolbox-document - process - transformers - unordered-containers - uuid - ]; - executableHaskellDepends = [ - base - cmdargs - directory - directory-tree - filepath - gtk3 - ]; - description = "publish hoodle files as a static web site"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "hoodle-publish"; - } - ) { }; - - "hoodle-render" = callPackage ( - { - mkDerivation, - base, - base64-bytestring, - bytestring, - cairo, - containers, - directory, - filepath, - gd, - gtk3, - hashable, - hoodle-types, - lens, - monad-loops, - mtl, - poppler, - stm, - strict, - svgcairo, - time, - transformers, - unix, - unordered-containers, - uuid, - }: - mkDerivation { - pname = "hoodle-render"; - version = "0.6"; - sha256 = "1qyld0vmp89x7awnbi3iqchh0f90hi7vqdxdg0my4s3xrq50y1s7"; - libraryHaskellDepends = [ - base - base64-bytestring - bytestring - cairo - containers - directory - filepath - gd - gtk3 - hashable - hoodle-types - lens - monad-loops - mtl - poppler - stm - strict - svgcairo - time - transformers - unix - unordered-containers - uuid - ]; - description = "Hoodle file renderer"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "hoodle-types" = callPackage ( - { - mkDerivation, - aeson, - base, - bytestring, - cereal, - containers, - lens, - mtl, - strict, - text, - uuid, - vector, - }: - mkDerivation { - pname = "hoodle-types"; - version = "0.4"; - sha256 = "1dikxb2xx2a4fn6abs1pwbl2xy7ld7b1jrx38gphpbnbf9hkbcqx"; - libraryHaskellDepends = [ - aeson - base - bytestring - cereal - containers - lens - mtl - strict - text - uuid - vector - ]; - description = "Data types for programs for hoodle file format"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "hoogle" = callPackage ( { mkDerivation, @@ -339424,75 +195615,6 @@ self: { } ) { }; - "hoogle-index" = callPackage ( - { - mkDerivation, - base, - bytestring, - Cabal, - containers, - directory, - errors, - filepath, - hoogle, - optparse-applicative, - process, - temporary, - transformers, - }: - mkDerivation { - pname = "hoogle-index"; - version = "0.4.4"; - sha256 = "1ihq54hbc5rs2njxgi148gf2alhsrbd5yy9fwv3ps1ah7klch65w"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - bytestring - Cabal - containers - directory - errors - filepath - hoogle - optparse-applicative - process - temporary - transformers - ]; - description = "Easily generate Hoogle indices for installed packages"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "hoogle-index"; - broken = true; - } - ) { }; - - "hooks-dir" = callPackage ( - { - mkDerivation, - base, - directory, - process, - text, - }: - mkDerivation { - pname = "hooks-dir"; - version = "0.1.1.0"; - sha256 = "0gwdqpml8kn8xxxaq628d4way29k2f31f5av49fx7qj150h5qs5b"; - libraryHaskellDepends = [ - base - directory - process - text - ]; - description = "run executables in a directory as hooks"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "hookup" = callPackage ( { mkDerivation, @@ -339575,182 +195697,6 @@ self: { } ) { }; - "hoopl" = callPackage ( - { - mkDerivation, - base, - containers, - filepath, - mtl, - parsec, - test-framework, - test-framework-hunit, - }: - mkDerivation { - pname = "hoopl"; - version = "3.10.2.2"; - sha256 = "15rbb9a8mza3zv8h3p237zhmy29bxc4k48ik27kzzj7islb16yq9"; - revision = "2"; - editedCabalFile = "0j6pz4jzhvviyrhhn1j22ikmjvzrg60nzvq26lbpkcb6y4q6rlyx"; - libraryHaskellDepends = [ - base - containers - ]; - testHaskellDepends = [ - base - containers - filepath - mtl - parsec - test-framework - test-framework-hunit - ]; - description = "A library to support dataflow analysis and optimization"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "hoovie" = callPackage ( - { - mkDerivation, - base, - blaze-builder, - bytestring, - configurator, - directory, - enumerator, - file-embed, - filepath, - HDBC, - HDBC-sqlite3, - mtl, - network, - network-info, - network-multicast, - old-locale, - old-time, - process, - regex-compat, - snap-core, - snap-server, - text, - time, - transformers, - unix, - xml, - }: - mkDerivation { - pname = "hoovie"; - version = "0.1.1"; - sha256 = "1g486kj7pwfvdr0a0mpfjxv9hifrkbp7120hxcfyrhx2zjmmc449"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - blaze-builder - bytestring - configurator - directory - enumerator - file-embed - filepath - HDBC - HDBC-sqlite3 - mtl - network - network-info - network-multicast - old-locale - old-time - process - regex-compat - snap-core - snap-server - text - time - transformers - unix - xml - ]; - description = "Haskell Media Server"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "hoovie"; - } - ) { }; - - "hopencc" = callPackage ( - { - mkDerivation, - base, - bytestring, - c2hs, - opencc, - QuickCheck, - utf8-string, - }: - mkDerivation { - pname = "hopencc"; - version = "0.2.0.0"; - sha256 = "0bzx6l7j9qjc1dvcaicgayb05n4klb4dg64m1xlfi187jxcnz7jb"; - libraryHaskellDepends = [ - base - bytestring - utf8-string - ]; - libraryPkgconfigDepends = [ opencc ]; - libraryToolDepends = [ c2hs ]; - testHaskellDepends = [ - base - QuickCheck - ]; - description = "Haskell binding to libopencc"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { inherit (pkgs) opencc; }; - - "hopencl" = callPackage ( - { - mkDerivation, - base, - bytestring, - c2hs, - HUnit, - OpenCL, - QuickCheck, - test-framework, - test-framework-hunit, - test-framework-quickcheck2, - }: - mkDerivation { - pname = "hopencl"; - version = "0.2.1"; - sha256 = "1kdrjr1y5wfq8bb31bkh360pvgb7ryhn9awnqszbq5d4wdwplqk8"; - libraryHaskellDepends = [ - base - bytestring - ]; - librarySystemDepends = [ OpenCL ]; - libraryToolDepends = [ c2hs ]; - testHaskellDepends = [ - base - HUnit - QuickCheck - test-framework - test-framework-hunit - test-framework-quickcheck2 - ]; - description = "Haskell bindings for OpenCL"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { OpenCL = null; }; - "hopenpgp-tools" = callPackage ( { mkDerivation, @@ -339874,95 +195820,6 @@ self: { } ) { inherit (pkgs) openssl; }; - "hopfield" = - callPackage - ( - { - mkDerivation, - array, - base, - deepseq, - directory, - erf, - exact-combinatorics, - hmatrix, - hspec, - HUnit, - imagemagick, - JuicyPixels, - MagickCore, - monad-loops, - MonadRandom, - optparse-applicative, - parallel, - probability, - QuickCheck, - random, - random-fu, - rvar, - split, - vector, - }: - mkDerivation { - pname = "hopfield"; - version = "0.1.0.2"; - sha256 = "1cpr3540fdrqr39p6xhb64iz2fz8mzryd19515c55522s7xjk1zw"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - array - base - deepseq - erf - exact-combinatorics - hmatrix - monad-loops - MonadRandom - parallel - probability - QuickCheck - random - random-fu - rvar - split - vector - ]; - librarySystemDepends = [ - imagemagick - MagickCore - ]; - executableHaskellDepends = [ - base - directory - JuicyPixels - MonadRandom - optparse-applicative - random - vector - ]; - testHaskellDepends = [ - base - erf - exact-combinatorics - hspec - HUnit - MonadRandom - parallel - QuickCheck - random - vector - ]; - description = "Hopfield Networks, Boltzmann Machines and Clusters"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) - { - MagickCore = null; - inherit (pkgs) imagemagick; - }; - "hopfield-networks" = callPackage ( { mkDerivation, @@ -340011,40 +195868,6 @@ self: { } ) { }; - "hopfli" = callPackage ( - { - mkDerivation, - base, - bytestring, - hspec, - QuickCheck, - zlib, - }: - mkDerivation { - pname = "hopfli"; - version = "0.2.2.1"; - sha256 = "061as7aa806xzcpch35isrkqbgqhwdy48fs049f491wwb47xqwad"; - revision = "1"; - editedCabalFile = "116jns5im51sb9xiwpx308wz3pr67335633anrf8f704pz8vwjka"; - libraryHaskellDepends = [ - base - bytestring - zlib - ]; - testHaskellDepends = [ - base - bytestring - hspec - QuickCheck - zlib - ]; - description = "Bidings to Google's Zopfli compression library"; - license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "hoppy-docs" = callPackage ( { mkDerivation, @@ -340159,147 +195982,6 @@ self: { } ) { }; - "hops" = callPackage ( - { - mkDerivation, - aeson, - ansi-terminal, - attoparsec, - base, - bytestring, - conduit, - conduit-extra, - containers, - deepseq, - directory, - filepath, - http-conduit, - http-types, - optparse-applicative, - parallel, - process, - QuickCheck, - resourcet, - text, - transformers, - vector, - }: - mkDerivation { - pname = "hops"; - version = "0.7.2"; - sha256 = "16a1ygxv4isw5wiq5dhjn4xdlr67zy1ngn61mwilgwkvwj0cjxc3"; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - aeson - ansi-terminal - attoparsec - base - bytestring - conduit - conduit-extra - containers - deepseq - directory - filepath - http-conduit - http-types - optparse-applicative - resourcet - text - transformers - vector - ]; - executableHaskellDepends = [ - aeson - ansi-terminal - attoparsec - base - bytestring - conduit - conduit-extra - containers - deepseq - directory - filepath - http-conduit - http-types - optparse-applicative - parallel - resourcet - text - transformers - vector - ]; - testHaskellDepends = [ - aeson - attoparsec - base - bytestring - containers - deepseq - directory - filepath - process - QuickCheck - text - transformers - vector - ]; - description = "Handy Operations on Power Series"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "hops"; - broken = true; - } - ) { }; - - "hoq" = callPackage ( - { - mkDerivation, - alex, - array, - base, - bifunctors, - bytestring, - filepath, - happy, - mtl, - pretty, - readline, - void, - }: - mkDerivation { - pname = "hoq"; - version = "0.3"; - sha256 = "0h9cq1qzai1kbzc77bjlm0dbkrasfj0d21ydrh86kv9jd6gr7gb7"; - isLibrary = false; - isExecutable = true; - enableSeparateDataOutput = true; - executableHaskellDepends = [ - array - base - bifunctors - bytestring - filepath - mtl - pretty - readline - void - ]; - executableToolDepends = [ - alex - happy - ]; - description = "A language based on homotopy type theory with an interval type"; - license = lib.licenses.gpl2Only; - hydraPlatforms = lib.platforms.none; - mainProgram = "hoq"; - broken = true; - } - ) { }; - "hora" = callPackage ( { mkDerivation, @@ -340401,41 +196083,18 @@ self: { ]; testHaskellDepends = [ base - tasty - ]; - benchmarkHaskellDepends = [ - base - criterion - deepseq - random - ]; - doHaddock = false; - description = "Higher Order Reverse Derivatives Efficiently - Automatic Differentiation"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "horizon" = callPackage ( - { - mkDerivation, - AC-Angle, - base, - time, - }: - mkDerivation { - pname = "horizon"; - version = "0.1.1"; - sha256 = "1qx27i0xlrgcrdzp6lc06skipj888cfdxwwfrd7fyig48jn3wyd4"; - libraryHaskellDepends = [ - AC-Angle - base - time + tasty + ]; + benchmarkHaskellDepends = [ + base + criterion + deepseq + random ]; - description = "Sunrise and sunset UTC approximations from latitude and longitude coordinates"; + doHaddock = false; + description = "Higher Order Reverse Derivatives Efficiently - Automatic Differentiation"; license = lib.licenses.bsd3; hydraPlatforms = lib.platforms.none; - broken = true; } ) { }; @@ -340657,46 +196316,6 @@ self: { } ) { }; - "horname" = callPackage ( - { - mkDerivation, - base, - containers, - megaparsec, - optparse-applicative, - text, - these, - uniplate, - wl-pprint-text, - }: - mkDerivation { - pname = "horname"; - version = "0.2.0.0"; - sha256 = "1qcvgjwasrgi760sv5rxl5klincgw34xczd3mqz32id183s57164"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - containers - megaparsec - text - these - uniplate - wl-pprint-text - ]; - executableHaskellDepends = [ - base - optparse-applicative - text - ]; - description = "Rename function definitions returned by SMT solvers"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "horname"; - broken = true; - } - ) { }; - "hosc" = callPackage ( { mkDerivation, @@ -340731,48 +196350,6 @@ self: { } ) { }; - "hosc-json" = callPackage ( - { - mkDerivation, - aeson, - attoparsec, - base, - bifunctors, - bytestring, - hosc, - json, - text, - transformers, - unordered-containers, - utf8-string, - vector, - }: - mkDerivation { - pname = "hosc-json"; - version = "0.16"; - sha256 = "059wpgvr2vbkdq2gmy8mrwqkqv1zrh2qz499v6i242q0z9m4gr3m"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - aeson - attoparsec - base - bifunctors - bytestring - hosc - json - text - transformers - unordered-containers - utf8-string - vector - ]; - description = "Haskell Open Sound Control JSON Serialisation"; - license = "GPL"; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "hosc-utils" = callPackage ( { mkDerivation, @@ -340887,40 +196464,6 @@ self: { } ) { }; - "hosts-server" = callPackage ( - { - mkDerivation, - attoparsec, - base, - bytestring, - data-default, - dns, - iproute, - network, - }: - mkDerivation { - pname = "hosts-server"; - version = "0.1.1"; - sha256 = "1g5kga58c5iqm3svs2d0d2akkibxjnh0hc1jjhjf7dzxghg2paqy"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - attoparsec - base - bytestring - data-default - dns - iproute - network - ]; - description = "An dns server which is extremely easy to config"; - license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - mainProgram = "hosts-server"; - broken = true; - } - ) { }; - "hotel-california" = callPackage ( { mkDerivation, @@ -341014,66 +196557,6 @@ self: { } ) { }; - "hothasktags" = callPackage ( - { - mkDerivation, - array, - base, - containers, - cpphs, - filemanip, - filepath, - Glob, - haskell-src-exts, - optparse-applicative, - split, - }: - mkDerivation { - pname = "hothasktags"; - version = "0.3.8"; - sha256 = "00gkvi143yp6c4izhrw31k2rcqrrw97wdrkafccpgr5ql4k01c07"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - array - base - containers - cpphs - filemanip - filepath - Glob - haskell-src-exts - optparse-applicative - split - ]; - description = "Generates ctags for Haskell, incorporating import lists and qualified imports"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "hothasktags"; - broken = true; - } - ) { }; - - "hotswap" = callPackage ( - { - mkDerivation, - base, - plugins, - }: - mkDerivation { - pname = "hotswap"; - version = "0.1.9.13"; - sha256 = "1c614gvwypfqaj4gqsdimqq40i34w393vikq5hhy3d4qll2qp8hv"; - libraryHaskellDepends = [ - base - plugins - ]; - description = "Simple code hotswapping"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "hourglass" = callPackage ( { mkDerivation, @@ -341122,29 +196605,6 @@ self: { } ) { }; - "hourglass-fuzzy-parsing" = callPackage ( - { - mkDerivation, - base, - hourglass, - parsec, - }: - mkDerivation { - pname = "hourglass-fuzzy-parsing"; - version = "0.1.0.1"; - sha256 = "188mw1z8n650y3qik98x2m70sr8q66x4l4pg34mirk6kg4mgzy37"; - libraryHaskellDepends = [ - base - hourglass - parsec - ]; - description = "A small library for parsing more human friendly date/time formats"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "hourglass-orphans" = callPackage ( { mkDerivation, @@ -341177,98 +196637,6 @@ self: { } ) { }; - "houseman" = callPackage ( - { - mkDerivation, - base, - bytestring, - directory, - dotenv, - hspec, - interpolate, - io-streams, - mockery, - mtl, - optparse-generic, - parsers, - process, - QuickCheck, - silently, - streaming-commons, - temporary, - text, - time, - trifecta, - unix, - }: - mkDerivation { - pname = "houseman"; - version = "0.1.0"; - sha256 = "1751frrfq59navdjjqkfb4yz6i64vxaw6x6wwmvx3b5wfw37jbjl"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - bytestring - directory - dotenv - io-streams - mtl - optparse-generic - parsers - process - streaming-commons - text - time - trifecta - unix - ]; - executableHaskellDepends = [ - base - bytestring - directory - dotenv - io-streams - mtl - optparse-generic - parsers - process - streaming-commons - text - time - trifecta - unix - ]; - testHaskellDepends = [ - base - bytestring - directory - dotenv - hspec - interpolate - io-streams - mockery - mtl - optparse-generic - parsers - process - QuickCheck - silently - streaming-commons - temporary - text - time - trifecta - unix - ]; - description = "A Haskell implementation of Foreman"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - mainProgram = "houseman"; - broken = true; - } - ) { }; - "hout" = callPackage ( { mkDerivation, @@ -341294,153 +196662,6 @@ self: { } ) { }; - "hp2any-core" = callPackage ( - { - mkDerivation, - attoparsec, - base, - bytestring, - containers, - directory, - filepath, - network, - old-locale, - process, - time, - }: - mkDerivation { - pname = "hp2any-core"; - version = "0.11.2"; - sha256 = "1gmw9bggw8hsp6pi0xgrryf0sqjb1aaxbwh85q5h72h4ixskwn1y"; - libraryHaskellDepends = [ - attoparsec - base - bytestring - containers - directory - filepath - network - old-locale - process - time - ]; - description = "Heap profiling helper library"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "hp2any-graph" = - callPackage - ( - { - mkDerivation, - base, - bytestring, - containers, - directory, - filepath, - freeglut, - GLUT, - hp2any-core, - libGL, - libGLU, - network, - OpenGL, - parseargs, - process, - }: - mkDerivation { - pname = "hp2any-graph"; - version = "0.5.4.2"; - sha256 = "1yj1miqn265pxq2dfhx87s20vjnnxmsl3d9xdy88cbzglpx2v9il"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - hp2any-core - OpenGL - ]; - executableHaskellDepends = [ - base - bytestring - containers - directory - filepath - GLUT - hp2any-core - network - OpenGL - parseargs - process - ]; - executableSystemDepends = [ - freeglut - libGL - libGLU - ]; - description = "Real-time heap graphing utility and profile stream server with a reusable graphing module"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) - { - inherit (pkgs) freeglut; - inherit (pkgs) libGL; - inherit (pkgs) libGLU; - }; - - "hp2any-manager" = callPackage ( - { - mkDerivation, - array, - base, - bytestring, - cairo, - containers, - directory, - filepath, - glade, - glib, - gtk, - gtkglext, - hp2any-core, - hp2any-graph, - OpenGL, - time, - }: - mkDerivation { - pname = "hp2any-manager"; - version = "0.4.6"; - sha256 = "143j3ylvzyq1s2l357vzqrwdcgg6rqhnmv0awb3nvm66c9smaarv"; - isLibrary = false; - isExecutable = true; - enableSeparateDataOutput = true; - executableHaskellDepends = [ - array - base - bytestring - cairo - containers - directory - filepath - glade - glib - gtk - gtkglext - hp2any-core - hp2any-graph - OpenGL - time - ]; - description = "A utility to visualise and compare heap profiles"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "hp2any-manager"; - } - ) { }; - "hp2html" = callPackage ( { mkDerivation, @@ -341636,106 +196857,6 @@ self: { } ) { }; - "hpack-convert" = callPackage ( - { - mkDerivation, - aeson, - aeson-qq, - base, - base-compat, - bytestring, - Cabal, - containers, - deepseq, - directory, - filepath, - Glob, - hspec, - interpolate, - mockery, - pretty, - QuickCheck, - split, - temporary, - text, - unordered-containers, - vector, - yaml, - }: - mkDerivation { - pname = "hpack-convert"; - version = "1.0.1"; - sha256 = "1qwrbx22d3gvxa4hr4mk37vw9cms0gq1h8xaqphw7rpgs2iycfkp"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson - base - base-compat - bytestring - Cabal - containers - deepseq - directory - filepath - Glob - pretty - split - text - unordered-containers - vector - yaml - ]; - executableHaskellDepends = [ - aeson - base - base-compat - bytestring - Cabal - containers - deepseq - directory - filepath - Glob - pretty - split - text - unordered-containers - vector - yaml - ]; - testHaskellDepends = [ - aeson - aeson-qq - base - base-compat - bytestring - Cabal - containers - deepseq - directory - filepath - Glob - hspec - interpolate - mockery - pretty - QuickCheck - split - temporary - text - unordered-containers - vector - yaml - ]; - description = "Convert Cabal manifests into hpack's package.yamls"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - mainProgram = "hpack-convert"; - broken = true; - } - ) { }; - "hpack-dhall" = callPackage ( { mkDerivation, @@ -341829,292 +196950,6 @@ self: { } ) { }; - "hpaco" = callPackage ( - { - mkDerivation, - aeson, - base, - cmdargs, - filepath, - hpaco-lib, - strict, - utf8-string, - yaml, - }: - mkDerivation { - pname = "hpaco"; - version = "0.28.0.5"; - sha256 = "03h634wwyj4d5ycvn7nmm94qcxwq9vayd7d9l44hqhka1ach4sx9"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - aeson - base - cmdargs - filepath - hpaco-lib - strict - utf8-string - yaml - ]; - description = "Modular template compiler"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "hpaco"; - } - ) { }; - - "hpaco-lib" = callPackage ( - { - mkDerivation, - aeson, - base, - bytestring, - containers, - data-variant, - file-embed, - filepath, - mtl, - parsec, - safe, - split, - strict, - transformers, - }: - mkDerivation { - pname = "hpaco-lib"; - version = "0.28.0.5"; - sha256 = "1n6lmkip1is6y4x5vivqv30if5di8cy35l6fs2kyg8wjxcqcsyqm"; - libraryHaskellDepends = [ - aeson - base - bytestring - containers - data-variant - file-embed - filepath - mtl - parsec - safe - split - strict - transformers - ]; - description = "Modular template compiler library"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "hpage" = callPackage ( - { - mkDerivation, - base, - bytestring, - Cabal, - cabal-macosx, - containers, - directory, - eprocess, - filepath, - FindBin, - haskell-src-exts, - hint, - hint-server, - monad-loops, - mtl, - process, - time, - wx, - wxcore, - }: - mkDerivation { - pname = "hpage"; - version = "0.12.2"; - sha256 = "0sl2qh3l5vbijln2al7vmvxm4zhn3qsz8axvprs6jxjfbndmk78j"; - isLibrary = false; - isExecutable = true; - enableSeparateDataOutput = true; - executableHaskellDepends = [ - base - bytestring - Cabal - cabal-macosx - containers - directory - eprocess - filepath - FindBin - haskell-src-exts - hint - hint-server - monad-loops - mtl - process - time - wx - wxcore - ]; - description = "A scrapbook for Haskell developers"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "hpage"; - } - ) { }; - - "hpapi" = callPackage ( - { - mkDerivation, - base, - papi, - }: - mkDerivation { - pname = "hpapi"; - version = "0.0.1.0"; - sha256 = "0n07nr6mm9ssf632h30s6bqxsgvlfzpr39dhdl7vwrfyj2jvdg2s"; - libraryHaskellDepends = [ base ]; - librarySystemDepends = [ papi ]; - description = "Binding for the PAPI library"; - license = lib.licenses.bsd3; - platforms = lib.platforms.linux; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { inherit (pkgs) papi; }; - - "hpaste" = callPackage ( - { - mkDerivation, - base, - blaze-builder, - blaze-html, - blaze-markup, - bytestring, - cgi, - ConfigFile, - containers, - css, - Diff, - directory, - download-curl, - feed, - filepath, - haskell-src-exts, - HJScript, - hlint, - hscolour, - mime-mail, - MissingH, - MonadCatchIO-transformers, - mtl, - named-formlet, - network, - old-locale, - postgresql-simple, - process, - safe, - snap-app, - snap-core, - snap-server, - text, - time, - transformers, - utf8-string, - }: - mkDerivation { - pname = "hpaste"; - version = "1.2.0"; - sha256 = "1p8dfqm93598zcnz1ksj8px6l8i7kfn9514d68gx7qxvd4xw0fnm"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - blaze-builder - blaze-html - blaze-markup - bytestring - cgi - ConfigFile - containers - css - Diff - directory - download-curl - feed - filepath - haskell-src-exts - HJScript - hlint - hscolour - mime-mail - MissingH - MonadCatchIO-transformers - mtl - named-formlet - network - old-locale - postgresql-simple - process - safe - snap-app - snap-core - snap-server - text - time - transformers - utf8-string - ]; - description = "Haskell paste web site"; - license = "GPL"; - hydraPlatforms = lib.platforms.none; - mainProgram = "hpaste"; - } - ) { }; - - "hpasteit" = callPackage ( - { - mkDerivation, - base, - bytestring, - directory, - filepath, - http-conduit, - http-types, - lifted-base, - network, - optparse-applicative, - process, - safe, - utf8-string, - }: - mkDerivation { - pname = "hpasteit"; - version = "0.3.3"; - sha256 = "1jj5q1gpnajnafikwf9jmayvaimi5486fvi90fk8q4b3lg7z9awm"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - bytestring - directory - filepath - http-conduit - http-types - lifted-base - network - optparse-applicative - process - safe - utf8-string - ]; - description = "A command-line client for hpaste.org"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "hpasteit"; - broken = true; - } - ) { }; - "hpath" = callPackage ( { mkDerivation, @@ -342370,84 +197205,6 @@ self: { } ) { }; - "hpc-coveralls" = callPackage ( - { - mkDerivation, - aeson, - async, - base, - bytestring, - Cabal, - cmdargs, - containers, - curl, - directory, - directory-tree, - hpc, - HUnit, - process, - pureMD5, - regex-posix, - retry, - safe, - split, - transformers, - }: - mkDerivation { - pname = "hpc-coveralls"; - version = "1.0.10"; - sha256 = "1nfhh5ryz943v2wvbc3rgs2825gbpbhp233xjl2n49kddb9w08p2"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson - base - bytestring - Cabal - cmdargs - containers - curl - directory - directory-tree - hpc - process - pureMD5 - retry - safe - split - transformers - ]; - executableHaskellDepends = [ - aeson - async - base - bytestring - Cabal - cmdargs - containers - curl - directory - directory-tree - hpc - process - pureMD5 - regex-posix - retry - safe - split - transformers - ]; - testHaskellDepends = [ - base - HUnit - ]; - description = "Coveralls.io support for Haskell."; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "hpc-lcov" = callPackage ( { mkDerivation, @@ -342562,45 +197319,6 @@ self: { } ) { }; - "hpc-tracer" = callPackage ( - { - mkDerivation, - array, - base, - containers, - haskell98, - hpc, - network, - parsec, - pretty, - process, - unix, - }: - mkDerivation { - pname = "hpc-tracer"; - version = "0.3.1"; - sha256 = "1mahyall1p96nc8z270002cdk8is9ahrd0zn0663w36ic158i3li"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - array - base - containers - haskell98 - hpc - network - parsec - pretty - process - unix - ]; - description = "Tracer with AJAX interface"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "hpc-tracer"; - } - ) { }; - "hpdft" = callPackage ( { mkDerivation, @@ -342663,106 +197381,6 @@ self: { } ) { }; - "hpg" = callPackage ( - { - mkDerivation, - base, - random, - }: - mkDerivation { - pname = "hpg"; - version = "0.8"; - sha256 = "1in245bwnymzxp1bzvzkmfwxs2pxnhw94c9j8z9v3vxvz7g0fygs"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - random - ]; - description = "a simple password generator"; - license = lib.licenses.isc; - hydraPlatforms = lib.platforms.none; - mainProgram = "hpg"; - broken = true; - } - ) { }; - - "hpio" = callPackage ( - { - mkDerivation, - async, - base, - bytestring, - containers, - directory, - doctest, - exceptions, - filepath, - hspec, - monad-control, - monad-logger, - mtl, - optparse-applicative, - protolude, - QuickCheck, - text, - transformers, - transformers-base, - unix, - unix-bytestring, - }: - mkDerivation { - pname = "hpio"; - version = "0.9.0.7"; - sha256 = "1l08b668bl9gwbrzkhljg73aizv640gcc7smiafhgrnk2bsl7q2p"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - bytestring - containers - directory - exceptions - filepath - monad-control - monad-logger - mtl - protolude - QuickCheck - text - transformers - transformers-base - unix - unix-bytestring - ]; - executableHaskellDepends = [ - async - base - exceptions - mtl - optparse-applicative - protolude - text - transformers - ]; - testHaskellDepends = [ - base - containers - directory - doctest - exceptions - filepath - hspec - protolude - QuickCheck - ]; - description = "Monads for GPIO in Haskell"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "hpke" = callPackage ( { mkDerivation, @@ -342799,115 +197417,6 @@ self: { } ) { }; - "hplayground" = callPackage ( - { - mkDerivation, - base, - containers, - data-default, - haste-compiler, - haste-perch, - monads-tf, - transformers, - }: - mkDerivation { - pname = "hplayground"; - version = "0.1.3.1"; - sha256 = "15yri40046lap05b762k4nk9nly8k6cbypic790zfmhj9ljjq1bv"; - libraryHaskellDepends = [ - base - containers - data-default - haste-compiler - haste-perch - monads-tf - transformers - ]; - description = "monadic, reactive Formlets running in the Web browser"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "hplaylist" = callPackage ( - { - mkDerivation, - base, - directory, - filepath, - process, - }: - mkDerivation { - pname = "hplaylist"; - version = "0.2"; - sha256 = "01xkpsb8fjlifdz6fckwfawj1s5c4rs4slizcdr1hpij6mcdcg6y"; - isLibrary = false; - isExecutable = true; - enableSeparateDataOutput = true; - executableHaskellDepends = [ - base - directory - filepath - process - ]; - description = "Application for managing playlist files on a music player"; - license = "GPL"; - hydraPlatforms = lib.platforms.none; - mainProgram = "hplaylist"; - broken = true; - } - ) { }; - - "hpodder" = callPackage ( - { - mkDerivation, - base, - ConfigFile, - directory, - filepath, - HaXml, - HDBC, - HDBC-sqlite3, - hslogger, - MissingH, - mtl, - network, - old-time, - parsec, - process, - unix, - }: - mkDerivation { - pname = "hpodder"; - version = "1.1.6"; - sha256 = "0gi94phkqxffxf3sq5al3cmn3zhc9vz6jql4hjsvz5nbhpdjhwda"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - ConfigFile - directory - filepath - HaXml - HDBC - HDBC-sqlite3 - hslogger - MissingH - mtl - network - old-time - parsec - process - unix - ]; - description = "Podcast Aggregator (downloader)"; - license = "GPL"; - hydraPlatforms = lib.platforms.none; - mainProgram = "hpodder"; - broken = true; - } - ) { }; - "hpp" = callPackage ( { mkDerivation, @@ -343208,69 +197717,6 @@ self: { } ) { }; - "hprotoc-fork" = callPackage ( - { - mkDerivation, - alex, - array, - base, - binary, - bytestring, - containers, - directory, - filepath, - haskell-src-exts, - mtl, - parsec, - protocol-buffers-descriptor-fork, - protocol-buffers-fork, - utf8-string, - }: - mkDerivation { - pname = "hprotoc-fork"; - version = "2.0.16.1"; - sha256 = "1fbpdi4mcc66z3ina01dkqxhy8slcjs4irh03ll2msp6p5vdqw9r"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - array - base - binary - bytestring - containers - directory - filepath - haskell-src-exts - mtl - parsec - protocol-buffers-descriptor-fork - protocol-buffers-fork - utf8-string - ]; - libraryToolDepends = [ alex ]; - executableHaskellDepends = [ - array - base - binary - bytestring - containers - directory - filepath - haskell-src-exts - mtl - parsec - protocol-buffers-descriptor-fork - protocol-buffers-fork - utf8-string - ]; - executableToolDepends = [ alex ]; - description = "Parse Google Protocol Buffer specifications"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "hprotoc"; - } - ) { }; - "hprox" = callPackage ( { mkDerivation, @@ -343351,87 +197797,6 @@ self: { } ) { }; - "hps" = callPackage ( - { - mkDerivation, - base, - filepath, - hcg-minus, - process, - }: - mkDerivation { - pname = "hps"; - version = "0.16"; - sha256 = "0y819776sk97hdwf67x67289gdqmxn2g39l7ri0n8z8vdap5rq96"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base - filepath - hcg-minus - process - ]; - description = "Haskell Postscript"; - license = "GPL"; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "hps-cairo" = callPackage ( - { - mkDerivation, - base, - cairo, - gtk, - hps, - random, - }: - mkDerivation { - pname = "hps-cairo"; - version = "0.11"; - sha256 = "1xyk0q6qiqcqd849km86jns4bcfmyrvikg0zw44929wlmlbf0hg7"; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base - cairo - gtk - hps - ]; - executableHaskellDepends = [ - base - cairo - gtk - hps - random - ]; - description = "Cairo rendering for the haskell postscript library"; - license = "GPL"; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "hps-kmeans" = callPackage ( - { - mkDerivation, - base, - vector, - }: - mkDerivation { - pname = "hps-kmeans"; - version = "0.1.0.0"; - sha256 = "0w1yyrv4k7fi016084j4k1lh6jgxg5502r83zszr9cjc6rraj8fc"; - libraryHaskellDepends = [ - base - vector - ]; - description = "A nice implementation of the k-Means algorithm"; - license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "hpuz" = callPackage ( { mkDerivation, @@ -343457,177 +197822,6 @@ self: { } ) { }; - "hpygments" = callPackage ( - { - mkDerivation, - aeson, - base, - bytestring, - process, - process-extras, - }: - mkDerivation { - pname = "hpygments"; - version = "0.2.0"; - sha256 = "0f1cvkslvijlx8qlsc1vkv240ir30w4wq6h4pndzsqdj2y95ricj"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - aeson - base - bytestring - process - process-extras - ]; - description = "Highlight source code using Pygments"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "hpylos" = callPackage ( - { - mkDerivation, - array, - base, - containers, - EEConfig, - GLUT, - OpenGL, - }: - mkDerivation { - pname = "hpylos"; - version = "1.0"; - sha256 = "1vdpy9x3bg43zj9rcrnkz0jfsd9mrp4k5y2hn6jb2ar2bvq0iwha"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - array - base - containers - EEConfig - GLUT - OpenGL - ]; - description = "AI of Pylos game with GLUT interface"; - license = "GPL"; - hydraPlatforms = lib.platforms.none; - mainProgram = "hpylos"; - broken = true; - } - ) { }; - - "hpyrg" = callPackage ( - { - mkDerivation, - base, - lens, - optparse-applicative, - parsec, - text, - }: - mkDerivation { - pname = "hpyrg"; - version = "0.1.0.0"; - sha256 = "00ddyiznx07qkh3s4qjls39x991fqxvdw2bj245ypbxpxsk9fvsw"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - lens - optparse-applicative - parsec - text - ]; - description = "pyrg utility done right"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - mainProgram = "hpyrg"; - broken = true; - } - ) { }; - - "hpython" = callPackage ( - { - mkDerivation, - base, - bifunctors, - bytestring, - containers, - criterion, - deepseq, - deriving-compat, - digit, - dlist, - filepath, - fingertree, - generic-lens, - hedgehog, - lens, - megaparsec, - mtl, - parsers, - parsers-megaparsec, - semigroupoids, - text, - these, - validation, - }: - mkDerivation { - pname = "hpython"; - version = "0.3"; - sha256 = "1vbjvx87n4d6fhvgz6hbbpyfh2276d3dlq0v39jq85qsb1274ip2"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - bifunctors - bytestring - containers - deriving-compat - digit - dlist - fingertree - generic-lens - lens - megaparsec - mtl - parsers - parsers-megaparsec - semigroupoids - text - these - validation - ]; - executableHaskellDepends = [ - base - lens - text - ]; - testHaskellDepends = [ - base - filepath - hedgehog - lens - megaparsec - text - validation - ]; - benchmarkHaskellDepends = [ - base - criterion - deepseq - megaparsec - text - validation - ]; - description = "Python language tools"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "example"; - } - ) { }; - "hq" = callPackage ( { mkDerivation, @@ -343822,74 +198016,6 @@ self: { } ) { }; - "hquery" = callPackage ( - { - mkDerivation, - base, - bytestring, - containers, - filepath, - HUnit, - parsec, - test-framework, - test-framework-hunit, - text, - xmlhtml, - }: - mkDerivation { - pname = "hquery"; - version = "0.1.1.0"; - sha256 = "0phlbbvkifw65ndjb4nc8ar0xx6z4sqn8xj41bg8qgr31ffpcjf8"; - libraryHaskellDepends = [ - base - containers - parsec - text - xmlhtml - ]; - testHaskellDepends = [ - base - bytestring - filepath - HUnit - parsec - test-framework - test-framework-hunit - text - xmlhtml - ]; - description = "A query language for transforming HTML5"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "hranker" = callPackage ( - { - mkDerivation, - base, - HCL, - NonEmpty, - }: - mkDerivation { - pname = "hranker"; - version = "0.1.1"; - sha256 = "0hg2qjjr5pcnx62382r3d3rqvb3z7h1926lpym68869n4s19wz7d"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - HCL - NonEmpty - ]; - description = "Basic utility for ranking a list of items"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "hranker"; - } - ) { }; - "hreader" = callPackage ( { mkDerivation, @@ -343957,207 +198083,6 @@ self: { } ) { }; - "hreq-client" = callPackage ( - { - mkDerivation, - aeson, - base, - base-compat, - bytestring, - Cabal, - cabal-doctest, - containers, - doctest, - exceptions, - hreq-core, - hspec, - hspec-discover, - http-client, - http-client-tls, - http-media, - http-types, - mtl, - retry, - stm, - string-conversions, - text, - time, - unliftio-core, - }: - mkDerivation { - pname = "hreq-client"; - version = "0.1.1.0"; - sha256 = "0bx4vhvwh4arkp5ly6clj55dmai3npl2p87l64radhyqr9z0il24"; - isLibrary = true; - isExecutable = true; - setupHaskellDepends = [ - base - Cabal - cabal-doctest - ]; - libraryHaskellDepends = [ - base - base-compat - bytestring - containers - exceptions - hreq-core - http-client - http-client-tls - http-media - http-types - mtl - retry - stm - string-conversions - text - time - unliftio-core - ]; - executableHaskellDepends = [ - aeson - base - text - ]; - testHaskellDepends = [ - aeson - base - containers - doctest - hreq-core - hspec - http-types - ]; - testToolDepends = [ hspec-discover ]; - description = "A Type dependent Highlevel HTTP client library"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - mainProgram = "example"; - } - ) { }; - - "hreq-conduit" = callPackage ( - { - mkDerivation, - aeson, - base, - bytestring, - Cabal, - cabal-doctest, - conduit, - doctest, - exceptions, - hreq-client, - hreq-core, - hspec, - hspec-discover, - http-client, - http-types, - markdown-unlit, - mtl, - retry, - string-conversions, - text, - unliftio-core, - }: - mkDerivation { - pname = "hreq-conduit"; - version = "0.1.0.0"; - sha256 = "0rdi3nxmq3g7gzlc3w1vc27djwd2pbsifm6mvi6d9nk3ynnrc2vv"; - setupHaskellDepends = [ - base - Cabal - cabal-doctest - ]; - libraryHaskellDepends = [ - base - bytestring - conduit - exceptions - hreq-client - hreq-core - http-client - http-types - mtl - retry - unliftio-core - ]; - testHaskellDepends = [ - aeson - base - bytestring - conduit - doctest - hspec - http-types - string-conversions - text - ]; - testToolDepends = [ - hspec-discover - markdown-unlit - ]; - description = "Conduit streaming support for Hreq"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "hreq-core" = callPackage ( - { - mkDerivation, - aeson, - attoparsec, - base, - base-compat, - bytestring, - Cabal, - cabal-doctest, - containers, - doctest, - exceptions, - http-api-data, - http-media, - http-types, - mtl, - string-conversions, - text, - }: - mkDerivation { - pname = "hreq-core"; - version = "0.1.1.0"; - sha256 = "0lc1bc3kr3j6rkrz9w0s5aqb5bb60xhafg1v02n7vcyishdh2iwl"; - setupHaskellDepends = [ - base - Cabal - cabal-doctest - ]; - libraryHaskellDepends = [ - aeson - attoparsec - base - base-compat - bytestring - containers - exceptions - http-api-data - http-media - http-types - mtl - string-conversions - text - ]; - testHaskellDepends = [ - base - doctest - ]; - description = "Core functionality for Hreq Http client library"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "hrfsize" = callPackage ( { mkDerivation, @@ -344182,30 +198107,6 @@ self: { } ) { }; - "hricket" = callPackage ( - { - mkDerivation, - base, - containers, - }: - mkDerivation { - pname = "hricket"; - version = "0.5"; - sha256 = "1zhp9w0rki3chb27jbzvwifsgcjxzczn3q7hh7g3d0akfbg1v47f"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - containers - ]; - description = "A Cricket scoring application"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "hricket"; - broken = true; - } - ) { }; - "hriemann" = callPackage ( { mkDerivation, @@ -344527,97 +198428,6 @@ self: { } ) { }; - "hs-blake2" = callPackage ( - { - mkDerivation, - base, - bytestring, - bytestring-arbitrary, - criterion, - cryptohash, - libb2, - QuickCheck, - tasty, - tasty-quickcheck, - }: - mkDerivation { - pname = "hs-blake2"; - version = "0.0.2"; - sha256 = "0i0yqci0z5gqmpgb0gk76grcd8mn7xql6gjalm78z6cl84vzsgh4"; - libraryHaskellDepends = [ - base - bytestring - ]; - librarySystemDepends = [ libb2 ]; - testHaskellDepends = [ - base - bytestring - bytestring-arbitrary - QuickCheck - tasty - tasty-quickcheck - ]; - testSystemDepends = [ libb2 ]; - benchmarkHaskellDepends = [ - base - bytestring - criterion - cryptohash - ]; - benchmarkSystemDepends = [ libb2 ]; - description = "A cryptohash-inspired library for blake2"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { inherit (pkgs) libb2; }; - - "hs-brotli" = - callPackage - ( - { - mkDerivation, - base, - brotli, - brotlidec, - brotlienc, - bytestring, - ghc-prim, - QuickCheck, - quickcheck-instances, - tasty-quickcheck, - }: - mkDerivation { - pname = "hs-brotli"; - version = "0.1.0.0"; - sha256 = "083l7bbjlxh629a9m88mfp087f09gwsmzs9vmpxrqffw23zrnclf"; - libraryHaskellDepends = [ - base - bytestring - ghc-prim - ]; - librarySystemDepends = [ - brotlidec - brotlienc - ]; - testHaskellDepends = [ - base - brotli - bytestring - QuickCheck - quickcheck-instances - tasty-quickcheck - ]; - description = "Compression and decompression in the brotli format"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) - { - brotlidec = null; - brotlienc = null; - }; - "hs-captcha" = callPackage ( { mkDerivation, @@ -344643,71 +198453,6 @@ self: { } ) { }; - "hs-carbon" = callPackage ( - { - mkDerivation, - base, - deepseq, - HUnit, - mtl, - parallel, - random, - }: - mkDerivation { - pname = "hs-carbon"; - version = "0.1.1.0"; - sha256 = "0frip4q5vxvdkc4f8bigpp066i53f4786cj2znyq21h65zndaq53"; - libraryHaskellDepends = [ - base - deepseq - mtl - parallel - random - ]; - testHaskellDepends = [ - base - HUnit - ]; - description = "A Haskell framework for parallel monte carlo simulations"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "hs-carbon-examples" = callPackage ( - { - mkDerivation, - base, - deepseq, - gloss, - hs-carbon, - monad-loops, - mtl, - tf-random, - }: - mkDerivation { - pname = "hs-carbon-examples"; - version = "0.0.0.1"; - sha256 = "1hcg6z3slzry4lkxnv5bllmlfsr50hcyxmpz3qhsb487j9r76c2z"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - deepseq - gloss - hs-carbon - monad-loops - mtl - tf-random - ]; - description = "Example Monte Carlo simulations implemented with Carbon"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "hs-cdb" = callPackage ( { mkDerivation, @@ -344775,113 +198520,6 @@ self: { } ) { }; - "hs-di" = callPackage ( - { - mkDerivation, - base, - compose-ltr, - containers, - deepseq, - foreign-store, - ghcid, - haskell-src-meta, - hspec, - hspec-core, - hspec-expectations, - HUnit, - interpolate, - interpolatedstring-perl6, - MissingH, - neat-interpolation, - QuickCheck, - regex-tdfa, - template-haskell, - text, - time, - }: - mkDerivation { - pname = "hs-di"; - version = "0.3.0"; - sha256 = "1plbcvjas2mkvccd6pglglh9gxqxk3vbvrjd2g5i5yalbwkpx9xa"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - compose-ltr - containers - haskell-src-meta - template-haskell - ]; - executableHaskellDepends = [ - base - compose-ltr - containers - haskell-src-meta - template-haskell - time - ]; - testHaskellDepends = [ - base - compose-ltr - deepseq - foreign-store - ghcid - haskell-src-meta - hspec - hspec-core - hspec-expectations - HUnit - interpolate - interpolatedstring-perl6 - MissingH - neat-interpolation - QuickCheck - regex-tdfa - template-haskell - text - time - ]; - description = "Dependency Injection library for Haskell"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "hs-di-cases"; - broken = true; - } - ) { }; - - "hs-dotnet" = - callPackage - ( - { - mkDerivation, - base, - ghc-prim, - ole32, - oleaut32, - }: - mkDerivation { - pname = "hs-dotnet"; - version = "0.4.0"; - sha256 = "1l2h1zv63c25k80gljnan3vg2r25a4b7byf5yryj3cjwa9xcg457"; - libraryHaskellDepends = [ - base - ghc-prim - ]; - librarySystemDepends = [ - ole32 - oleaut32 - ]; - description = "Pragmatic .NET interop for Haskell"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) - { - ole32 = null; - oleaut32 = null; - }; - "hs-duktape" = callPackage ( { mkDerivation, @@ -344942,115 +198580,6 @@ self: { } ) { }; - "hs-excelx" = callPackage ( - { - mkDerivation, - base, - bytestring, - containers, - mtl, - text, - time, - xml-conduit, - zip-archive, - }: - mkDerivation { - pname = "hs-excelx"; - version = "0.6.0.0"; - sha256 = "12hpfad8wn4r811md6269w10inx6nbipryhn8vdhbbcj9mmda3l5"; - libraryHaskellDepends = [ - base - bytestring - containers - mtl - text - time - xml-conduit - zip-archive - ]; - description = "HS-Excelx provides basic read-only access to Excel 2007 and 2010 documents in XLSX format"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "hs-ffmpeg" = callPackage ( - { - mkDerivation, - base, - bytestring, - haskell98, - }: - mkDerivation { - pname = "hs-ffmpeg"; - version = "0.3.4"; - sha256 = "0j52drd3pb6ssgngfqxdsvvjjnx11nsmxwjsin6cmbv0nifpyq51"; - libraryHaskellDepends = [ - base - bytestring - haskell98 - ]; - description = "Bindings to FFMPEG library"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "hs-fltk" = - callPackage - ( - { - mkDerivation, - base, - fltk, - fltk_images, - }: - mkDerivation { - pname = "hs-fltk"; - version = "0.2.5"; - sha256 = "0nbxfy219mz0k27d16r3ir7hk0j450gxba9wrvrz1j17mr3gvqzx"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ base ]; - librarySystemDepends = [ - fltk - fltk_images - ]; - description = "Binding to GUI library FLTK"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) - { - inherit (pkgs) fltk; - fltk_images = null; - }; - - "hs-functors" = callPackage ( - { - mkDerivation, - base, - dual, - tagged, - transformers, - }: - mkDerivation { - pname = "hs-functors"; - version = "0.1.7.1"; - sha256 = "1cigaggilr05pgizj11g5c40ln38zb5q8p0igliamkhx7fz3axis"; - libraryHaskellDepends = [ - base - dual - tagged - transformers - ]; - description = "Functors from products of Haskell and its dual to Haskell"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "hs-gchart" = callPackage ( { mkDerivation, @@ -345071,74 +198600,6 @@ self: { } ) { }; - "hs-gen-iface" = callPackage ( - { - mkDerivation, - base, - Cabal, - containers, - filepath, - haskell-names, - haskell-packages, - haskell-src-exts, - hse-cpp, - mtl, - tagged, - }: - mkDerivation { - pname = "hs-gen-iface"; - version = "0.5.0"; - sha256 = "1mvzpn7zpk5ffyyqh214yd315dcis8zmm9p4m5099bqhfr735kws"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - Cabal - containers - filepath - haskell-names - haskell-packages - haskell-src-exts - hse-cpp - mtl - tagged - ]; - description = "Utility to generate haskell-names interface files"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - mainProgram = "hs-gen-iface"; - } - ) { }; - - "hs-gizapp" = callPackage ( - { - mkDerivation, - base, - containers, - directory, - filepath, - parsec, - process, - }: - mkDerivation { - pname = "hs-gizapp"; - version = "0.1.0.3"; - sha256 = "1j7ws3jm52n910p08432k60w09971bpcz4j5w48a305nz1dbkscm"; - libraryHaskellDepends = [ - base - containers - directory - filepath - parsec - process - ]; - description = "Haskell wrapper around the GIZA++ toolkit"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "hs-highlight" = callPackage ( { mkDerivation, @@ -345188,172 +198649,6 @@ self: { } ) { }; - "hs-ix" = callPackage ( - { - mkDerivation, - base, - hs-functors, - }: - mkDerivation { - pname = "hs-ix"; - version = "0.2.0.0"; - sha256 = "04dm8c5ilaw4agljfp7k31ln2j5m1shyg4zb3x36rjkbs807z8sf"; - libraryHaskellDepends = [ - base - hs-functors - ]; - description = "Indexed applicative functors and monads"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "hs-java" = callPackage ( - { - mkDerivation, - array, - base, - binary, - binary-state, - bytestring, - containers, - control-monad-exception, - data-binary-ieee754, - data-default, - directory, - filepath, - Glob, - LibZip, - MissingH, - mtl, - parsec, - utf8-string, - }: - mkDerivation { - pname = "hs-java"; - version = "0.4.1"; - sha256 = "1wpibfwxv9m1ldn9xqfrvjld18q8x31h06flvb4sbk26hqjrkr6f"; - libraryHaskellDepends = [ - array - base - binary - binary-state - bytestring - containers - control-monad-exception - data-binary-ieee754 - data-default - directory - filepath - Glob - LibZip - MissingH - mtl - parsec - utf8-string - ]; - description = "Java .class files assembler/disassembler"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "hs-json-rpc" = callPackage ( - { - mkDerivation, - aeson, - base, - bytestring, - HTTP, - network, - text, - }: - mkDerivation { - pname = "hs-json-rpc"; - version = "0.0.0.1"; - sha256 = "0qlzylkplcb0bvh7pd8mwmc0pg69jjh8229a1hg3rhaix08mmj3c"; - libraryHaskellDepends = [ - aeson - base - bytestring - HTTP - network - text - ]; - description = "JSON-RPC client library"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "hs-logo" = callPackage ( - { - mkDerivation, - base, - cmdargs, - colour, - containers, - diagrams-core, - diagrams-lib, - diagrams-svg, - HUnit, - mtl, - parsec, - parsec-numbers, - QuickCheck, - random, - test-framework, - test-framework-hunit, - test-framework-quickcheck2, - }: - mkDerivation { - pname = "hs-logo"; - version = "0.5.1"; - sha256 = "0ypr4jpc12f771g3gsahbj0yjzd0ns8mmwjl90knwg267d712i13"; - isLibrary = false; - isExecutable = true; - enableSeparateDataOutput = true; - executableHaskellDepends = [ - base - cmdargs - colour - containers - diagrams-core - diagrams-lib - diagrams-svg - mtl - parsec - parsec-numbers - random - ]; - testHaskellDepends = [ - base - cmdargs - colour - containers - diagrams-core - diagrams-lib - diagrams-svg - HUnit - mtl - parsec - parsec-numbers - QuickCheck - random - test-framework - test-framework-hunit - test-framework-quickcheck2 - ]; - description = "Logo interpreter written in Haskell"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "hs-logo"; - broken = true; - } - ) { }; - "hs-mesos" = callPackage ( @@ -345457,34 +198752,6 @@ self: { } ) { hs-multihash = null; }; - "hs-nombre-generator" = callPackage ( - { - mkDerivation, - base, - HandsomeSoup, - hxt, - random, - }: - mkDerivation { - pname = "hs-nombre-generator"; - version = "0.2.1.0"; - sha256 = "1bk278ni5bk8qcc8mbb7h26g9k5hcdl4h1ilrh8prc0kvngz8g4w"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - HandsomeSoup - hxt - random - ]; - description = "Name generator"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - mainProgram = "hs-nombre-generator"; - broken = true; - } - ) { }; - "hs-onnxruntime-capi" = callPackage ( { mkDerivation, @@ -346349,113 +199616,6 @@ self: { } ) { }; - "hs-pattrans" = callPackage ( - { - mkDerivation, - async, - base, - bytestring, - cassava, - Chart, - Chart-cairo, - colour, - containers, - contravariant, - directory, - Euterpea, - HCodecs, - hspec, - hspec-discover, - optparse-applicative, - parallel, - parsec, - QuickCheck, - }: - mkDerivation { - pname = "hs-pattrans"; - version = "0.1.0.2"; - sha256 = "0w1z0f1awh8xk3qyri79mlk44isss2s0j5qxhbrd52nvl8bjdzi1"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - async - base - bytestring - cassava - Chart - Chart-cairo - colour - containers - contravariant - directory - Euterpea - HCodecs - parallel - parsec - ]; - executableHaskellDepends = [ - base - bytestring - optparse-applicative - ]; - testHaskellDepends = [ - base - hspec - QuickCheck - ]; - testToolDepends = [ hspec-discover ]; - description = "DSL for musical patterns and transformation, based on contravariant functors"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "hs-pattrans"; - broken = true; - } - ) { }; - - "hs-pgms" = callPackage ( - { - mkDerivation, - array, - base, - directory, - glib, - gtk, - MonadPrompt, - mtl, - random, - }: - mkDerivation { - pname = "hs-pgms"; - version = "0.1.0.1"; - sha256 = "064sk0g8mzkqm80hfxg03qn6g1awydlw15ylikk3rs4wf7fclw30"; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - array - base - MonadPrompt - mtl - random - ]; - executableHaskellDepends = [ - array - base - directory - glib - gtk - MonadPrompt - mtl - random - ]; - description = "Programmer's Mine Sweeper in Haskell"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "hs-pgms"; - broken = true; - } - ) { }; - "hs-php-session" = callPackage ( { mkDerivation, @@ -346477,31 +199637,6 @@ self: { } ) { }; - "hs-pkg-config" = callPackage ( - { - mkDerivation, - base, - data-default-class, - text, - }: - mkDerivation { - pname = "hs-pkg-config"; - version = "0.2.1.0"; - sha256 = "09v2kp643asl3zpv8rbb8a7zv0h3bn5l4gxz44d71kly9qr3jkhh"; - revision = "2"; - editedCabalFile = "1kj5lrv2a9mgzqbwkznpsgjgs5s9wnwrcsab2mykxpkm8f71nk81"; - libraryHaskellDepends = [ - base - data-default-class - text - ]; - description = "Create pkg-config configuration files"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "hs-pkpass" = callPackage ( { mkDerivation, @@ -346578,128 +199713,6 @@ self: { } ) { }; - "hs-profunctors" = callPackage ( - { - mkDerivation, - base, - hs-functors, - }: - mkDerivation { - pname = "hs-profunctors"; - version = "0.1.0.0"; - sha256 = "09iylf1xjxsikjyaib9902na33bkfs8nv3wasyvikg4g82xqay5y"; - libraryHaskellDepends = [ - base - hs-functors - ]; - description = "Profunctors from Haskell to Haskell"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "hs-re" = callPackage ( - { - mkDerivation, - array, - base, - regex-base, - regex-posix, - }: - mkDerivation { - pname = "hs-re"; - version = "0.1.0"; - sha256 = "0rx7shfjyi9k910mvzskykqxnijl8rrh08c0bkqlmqwisyhl7wbb"; - libraryHaskellDepends = [ - array - base - regex-base - regex-posix - ]; - description = "Easy to use Regex"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "hs-rqlite" = callPackage ( - { - mkDerivation, - aeson, - base, - bifunctors, - bytestring, - containers, - HTTP, - scientific, - text, - unordered-containers, - }: - mkDerivation { - pname = "hs-rqlite"; - version = "0.1.2.0"; - sha256 = "1xfsbpfcy0s340jzdkl0bnx7isgx8dxhxvfdkrr9fpsga4s0l9bd"; - libraryHaskellDepends = [ - aeson - base - bifunctors - bytestring - containers - HTTP - scientific - text - unordered-containers - ]; - description = "A Haskell client for RQlite"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "hs-rs-notify" = callPackage ( - { - mkDerivation, - base, - filepath, - notifier, - process, - protolude, - text, - unix, - }: - mkDerivation { - pname = "hs-rs-notify"; - version = "0.1.0.18"; - sha256 = "0ffs9bbs076i3a44zszhv8kdxalz2m2yfg0fham971jil33gx2pc"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - filepath - process - protolude - text - unix - ]; - executableHaskellDepends = [ - base - protolude - ]; - executableSystemDepends = [ notifier ]; - testHaskellDepends = [ - base - protolude - ]; - description = "Experimental! Wraps this awesome rust library so you can use it in haskell. https://docs.rs/crate/notify"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "notify"; - broken = true; - } - ) { notifier = null; }; - "hs-samtools" = callPackage ( { mkDerivation, @@ -346768,63 +199781,6 @@ self: { } ) { }; - "hs-scrape" = callPackage ( - { - mkDerivation, - base, - bytestring, - containers, - data-default, - exceptions, - hspec, - html-conduit, - lens, - retry, - safe, - tasty, - tasty-hunit, - text, - transformers, - url, - wreq, - xml-conduit, - }: - mkDerivation { - pname = "hs-scrape"; - version = "0.1.0.0"; - sha256 = "0w5zrd7xj3ccw4xkdsq20j1ki2j8sy3glzijsq5m2227szwv7y6v"; - libraryHaskellDepends = [ - base - bytestring - containers - data-default - exceptions - hspec - html-conduit - lens - retry - safe - text - transformers - url - wreq - xml-conduit - ]; - testHaskellDepends = [ - base - containers - hspec - tasty - tasty-hunit - xml-conduit - ]; - description = "Simple and easy web scraping and automation in Haskell"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "hs-sdl-term-emulator" = callPackage ( { mkDerivation, @@ -346910,38 +199866,6 @@ self: { } ) { }; - "hs-snowtify" = callPackage ( - { - mkDerivation, - base, - either, - safe, - safe-exceptions, - text, - turtle, - }: - mkDerivation { - pname = "hs-snowtify"; - version = "0.1.0.0"; - sha256 = "124n8n6h1qrn359a9bhdxz4was9pc3n2d8r8zqvxaa2xqywjwfvf"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - either - safe - safe-exceptions - text - turtle - ]; - description = "snowtify send your result of `stack build` (`stack test`) to notify-daemon :dog2:"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - mainProgram = "snowtify"; - broken = true; - } - ) { }; - "hs-speedscope" = callPackage ( { mkDerivation, @@ -347194,99 +200118,6 @@ self: { } ) { tree-sitter-while = null; }; - "hs-twitter" = callPackage ( - { - mkDerivation, - base, - HTTP, - json, - mime, - network, - old-locale, - old-time, - random, - utf8-string, - }: - mkDerivation { - pname = "hs-twitter"; - version = "0.2.8"; - sha256 = "1r8bd5q7d5mxmd6012mpp1yx353wzib174xd9v0mvkbb009b4mph"; - revision = "1"; - editedCabalFile = "05cd5qcmjgaddi4999lr20i0qkdc5c8i3b1hxfl3kbvl6309fm70"; - libraryHaskellDepends = [ - base - HTTP - json - mime - network - old-locale - old-time - random - utf8-string - ]; - description = "Haskell binding to the Twitter API"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "hs-twitterarchiver" = callPackage ( - { - mkDerivation, - base, - HTTP, - json, - mtl, - network, - pretty, - }: - mkDerivation { - pname = "hs-twitterarchiver"; - version = "0.2"; - sha256 = "077mc8dn2f6x3s29pm80qi7mj6s2crdhky0vygzfqd8v23gmhqcg"; - isLibrary = false; - isExecutable = true; - enableSeparateDataOutput = true; - executableHaskellDepends = [ - base - HTTP - json - mtl - network - pretty - ]; - description = "Commandline Twitter feed archiver"; - license = "GPL"; - hydraPlatforms = lib.platforms.none; - mainProgram = "hs-twitterarchiver"; - broken = true; - } - ) { }; - - "hs-vcard" = callPackage ( - { - mkDerivation, - base, - old-locale, - time, - }: - mkDerivation { - pname = "hs-vcard"; - version = "0.1"; - sha256 = "0qb7gsbki3ciqddxp9j46rnx64vv622n2p9vidv1b000wbmmrz15"; - libraryHaskellDepends = [ - base - old-locale - time - ]; - description = "Implements the RFC 2426 vCard 3.0 spec"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "hs-watchman" = callPackage ( { mkDerivation, @@ -347340,241 +200171,94 @@ self: { bytestring, criterion, deepseq, - ghc-prim, - QuickCheck, - test-framework, - test-framework-quickcheck2, - zlib, - }: - mkDerivation { - pname = "hs-zstd"; - version = "0.1.1.1"; - sha256 = "1510r677j4vf9yrih3mimjrw31vgwcnw3wli41cddvghinm9paih"; - libraryHaskellDepends = [ - base - bytestring - deepseq - ghc-prim - ]; - testHaskellDepends = [ - base - bytestring - QuickCheck - test-framework - test-framework-quickcheck2 - ]; - benchmarkHaskellDepends = [ - base - bytestring - criterion - ghc-prim - zlib - ]; - description = "Haskell bindings to the Zstandard compression algorithm"; - license = lib.licenses.bsd3; - } - ) { }; - - "hs2048" = callPackage ( - { - mkDerivation, - base, - criterion, - doctest, - Glob, - hastache, - hlint, - hspec, - HUnit, - process, - QuickCheck, - random, - regex-compat, - statistics, - }: - mkDerivation { - pname = "hs2048"; - version = "0.1.0"; - sha256 = "1hm9lwhq1b8i04gl3z2iw6g67slrjcrymp2fxxvykxgkff6dmkps"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - random - ]; - executableHaskellDepends = [ - base - random - ]; - testHaskellDepends = [ - base - doctest - Glob - hlint - hspec - HUnit - process - QuickCheck - random - regex-compat - ]; - benchmarkHaskellDepends = [ - base - criterion - hastache - random - statistics - ]; - description = "A 2048 clone in Haskell"; - license = lib.licenses.mit; - mainProgram = "hs2048"; - } - ) { }; - - "hs2ats" = callPackage ( - { - mkDerivation, - ansi-wl-pprint, - base, - casing, - cpphs, - criterion, - deepseq, - haskell-src-exts, - hspec, - hspec-dirstream, - language-ats, - microlens, - optparse-generic, - system-filepath, - }: - mkDerivation { - pname = "hs2ats"; - version = "0.5.0.1"; - sha256 = "01xjk00rijrhixpmpl3x6m3vsvm1zyizrp3iigz13w80ivj1hpdk"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - ansi-wl-pprint - base - casing - cpphs - deepseq - haskell-src-exts - language-ats - microlens - ]; - executableHaskellDepends = [ - base - optparse-generic - ]; - testHaskellDepends = [ - base - hspec - hspec-dirstream - system-filepath - ]; - benchmarkHaskellDepends = [ - base - criterion - ]; - description = "Create ATS types from Haskell types"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "hs2ats"; - } - ) { }; - - "hs2bf" = callPackage ( - { - mkDerivation, - array, - base, - containers, - directory, - filepath, - haskell-src, - mtl, - }: - mkDerivation { - pname = "hs2bf"; - version = "0.6.2"; - sha256 = "1lx0px0gicwry5i4rwgzz6jasjhp24f620w2iby9xpbvn6h3zflm"; - isLibrary = false; - isExecutable = true; - enableSeparateDataOutput = true; - executableHaskellDepends = [ - array - base - containers - directory - filepath - haskell-src - mtl - ]; - description = "Haskell to Brainfuck compiler"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "hs2bf"; - broken = true; - } - ) { }; - - "hs2dot" = callPackage ( - { - mkDerivation, - base, - directory, - haskell-src, - haskell-src-exts, - haskell98, - split, + ghc-prim, + QuickCheck, + test-framework, + test-framework-quickcheck2, + zlib, }: mkDerivation { - pname = "hs2dot"; - version = "0.1.4"; - sha256 = "0pfbclqpndlnxnvs630q8x272q13z9dfp35gp9dj6m527x78fapx"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ + pname = "hs-zstd"; + version = "0.1.1.1"; + sha256 = "1510r677j4vf9yrih3mimjrw31vgwcnw3wli41cddvghinm9paih"; + libraryHaskellDepends = [ base - directory - haskell-src - haskell-src-exts - haskell98 - split + bytestring + deepseq + ghc-prim ]; - description = "Generate graphviz-code from Haskell-code"; - license = "unknown"; - hydraPlatforms = lib.platforms.none; - mainProgram = "hs2dot"; + testHaskellDepends = [ + base + bytestring + QuickCheck + test-framework + test-framework-quickcheck2 + ]; + benchmarkHaskellDepends = [ + base + bytestring + criterion + ghc-prim + zlib + ]; + description = "Haskell bindings to the Zstandard compression algorithm"; + license = lib.licenses.bsd3; } ) { }; - "hs2ps" = callPackage ( + "hs2048" = callPackage ( { mkDerivation, base, + criterion, + doctest, + Glob, + hastache, + hlint, hspec, - template-haskell, + HUnit, + process, + QuickCheck, + random, + regex-compat, + statistics, }: mkDerivation { - pname = "hs2ps"; - version = "0.1.4.0"; - sha256 = "1syfvhydxjnmdq9q0yxmn2m4whya91iviv6fyvggilyn80a8g82j"; + pname = "hs2048"; + version = "0.1.0"; + sha256 = "1hm9lwhq1b8i04gl3z2iw6g67slrjcrymp2fxxvykxgkff6dmkps"; + isLibrary = true; + isExecutable = true; libraryHaskellDepends = [ base - template-haskell + random + ]; + executableHaskellDepends = [ + base + random ]; testHaskellDepends = [ base + doctest + Glob + hlint hspec - template-haskell + HUnit + process + QuickCheck + random + regex-compat + ]; + benchmarkHaskellDepends = [ + base + criterion + hastache + random + statistics ]; - description = "Translate Haskell types to PureScript"; + description = "A 2048 clone in Haskell"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; + mainProgram = "hs2048"; } ) { }; @@ -347605,29 +200289,6 @@ self: { } ) { }; - "hsI2C" = callPackage ( - { - mkDerivation, - base, - bytestring, - unix, - }: - mkDerivation { - pname = "hsI2C"; - version = "0.1.3"; - sha256 = "0p77xndqpqfyjw9y7q791pysrpz3zkimw8mcxyfl4yrh34sammx9"; - libraryHaskellDepends = [ - base - bytestring - unix - ]; - description = "I2C access for Haskell and Linux"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "hsPID" = callPackage ( { mkDerivation, @@ -347653,157 +200314,6 @@ self: { } ) { }; - "hsSqlite3" = callPackage ( - { - mkDerivation, - base, - bindings-sqlite3, - bytestring, - mtl, - utf8-string, - }: - mkDerivation { - pname = "hsSqlite3"; - version = "0.1"; - sha256 = "0wmsswccwcz2zd3zap0wsapzbya72cxdyzhlcch4akvwqcl9hz6a"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base - bindings-sqlite3 - bytestring - mtl - utf8-string - ]; - description = "Sqlite3 bindings"; - license = "LGPL"; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "hsXenCtrl" = callPackage ( - { - mkDerivation, - array, - base, - bytestring, - dlist, - mtl, - xenctrl, - }: - mkDerivation { - pname = "hsXenCtrl"; - version = "0.2.0"; - sha256 = "0zxmlyckp9c0i5s8vi62d3qvnilh8kl093ckqr7dchgmki4az7rp"; - libraryHaskellDepends = [ - array - base - bytestring - dlist - mtl - ]; - librarySystemDepends = [ xenctrl ]; - description = "FFI bindings to the Xen Control library"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { xenctrl = null; }; - - "hsakamai" = callPackage ( - { - mkDerivation, - aeson, - base, - bytestring, - case-insensitive, - conduit, - conduit-extra, - cryptonite, - doctest, - http-client, - http-conduit, - http-types, - memory, - optparse-applicative, - random, - text, - unix, - unix-time, - uuid, - xml-conduit, - yaml, - }: - mkDerivation { - pname = "hsakamai"; - version = "0.1.0.1"; - sha256 = "1a4qz14b5z72nvvcnrymlqw6nwfxyl0y76lr3a93qqwi5zkah94s"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson - base - bytestring - case-insensitive - conduit - cryptonite - http-client - http-conduit - http-types - memory - random - text - unix-time - uuid - xml-conduit - ]; - executableHaskellDepends = [ - aeson - base - bytestring - case-insensitive - conduit - conduit-extra - cryptonite - http-client - http-conduit - http-types - memory - optparse-applicative - random - text - unix - unix-time - uuid - xml-conduit - yaml - ]; - testHaskellDepends = [ - aeson - base - bytestring - case-insensitive - conduit - cryptonite - doctest - http-client - http-conduit - http-types - memory - random - text - unix-time - uuid - xml-conduit - ]; - description = "Akamai API(Edgegrid and Netstorage)"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "purge"; - broken = true; - } - ) { }; - "hsaml2" = callPackage ( { mkDerivation, @@ -347969,37 +200479,6 @@ self: { } ) { }; - "hsay" = callPackage ( - { - mkDerivation, - base, - Hclip, - HTTP, - process, - unix, - }: - mkDerivation { - pname = "hsay"; - version = "1.1.0"; - sha256 = "0qar7y4190dfv63jmzx8saxqxzh73spc2q3i6pqywdbv7zb6zvrl"; - isLibrary = false; - isExecutable = true; - enableSeparateDataOutput = true; - executableHaskellDepends = [ - base - Hclip - HTTP - process - unix - ]; - description = "(ab)Use Google Translate as a speech synthesiser"; - license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - mainProgram = "hsay"; - broken = true; - } - ) { }; - "hsb2hs" = callPackage ( { mkDerivation, @@ -348030,237 +200509,6 @@ self: { } ) { }; - "hsbackup" = callPackage ( - { - mkDerivation, - base, - bytestring, - cmdargs, - directory, - filepath, - hashed-storage, - old-locale, - strict, - time, - }: - mkDerivation { - pname = "hsbackup"; - version = "0.1.1"; - sha256 = "1g1lb43f7cdm5fjmdd64n9vl2nxlm8jpng94hyyldwv8a6x7555z"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - bytestring - cmdargs - directory - filepath - hashed-storage - old-locale - strict - time - ]; - description = "simple utility for rolling filesystem backups"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "hsbackup"; - } - ) { }; - - "hsbc" = callPackage ( - { - mkDerivation, - attoparsec, - base, - text, - vector, - }: - mkDerivation { - pname = "hsbc"; - version = "0.1.1.0"; - sha256 = "1cf4ip16a2b1y0m8p4v5pc0cpzl7jqhmsyp1nr82pf0zj3w30b41"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - attoparsec - base - text - vector - ]; - description = "A command line calculator"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - mainProgram = "hsbc"; - broken = true; - } - ) { }; - - "hsbencher" = callPackage ( - { - mkDerivation, - async, - base, - bytestring, - containers, - data-default, - directory, - filepath, - GenericPretty, - HUnit, - io-streams, - mtl, - process, - random, - test-framework, - test-framework-hunit, - text, - time, - unix, - }: - mkDerivation { - pname = "hsbencher"; - version = "1.20.0.5"; - sha256 = "1fqp0n106dnqik3p6fa60xkamls8wgg8c5sp2klgp36n3xflvy9h"; - libraryHaskellDepends = [ - async - base - bytestring - containers - data-default - directory - filepath - GenericPretty - io-streams - mtl - process - random - time - unix - ]; - testHaskellDepends = [ - base - bytestring - containers - directory - HUnit - test-framework - test-framework-hunit - text - time - ]; - description = "Launch and gather data from Haskell and non-Haskell benchmarks"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "hsbencher-codespeed" = callPackage ( - { - mkDerivation, - base, - bytestring, - containers, - data-default, - directory, - filepath, - hsbencher, - HTTP, - http-conduit, - http-types, - json, - mtl, - network, - resourcet, - time, - }: - mkDerivation { - pname = "hsbencher-codespeed"; - version = "0.1.0.1"; - sha256 = "1a3hac73mzd0q25b1xbdh121k33m12phpxfn6hh7qcg5yys2i8l5"; - libraryHaskellDepends = [ - base - bytestring - containers - data-default - directory - filepath - hsbencher - HTTP - http-conduit - http-types - json - mtl - network - resourcet - time - ]; - description = "Backend for uploading benchmark data to CodeSpeed"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "hsbencher-fusion" = callPackage ( - { - mkDerivation, - base, - bytestring, - containers, - criterion, - csv, - data-default, - directory, - filepath, - handa-gdata, - hsbencher, - http-conduit, - mtl, - network, - split, - statistics, - text, - time, - }: - mkDerivation { - pname = "hsbencher-fusion"; - version = "0.3.15.2"; - sha256 = "0xp2jm5zvrx5sz2mniachd7hjmhmf0sv9as3dzln8693n6l1ak4r"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - bytestring - containers - data-default - directory - filepath - handa-gdata - hsbencher - http-conduit - mtl - network - time - ]; - executableHaskellDepends = [ - base - bytestring - containers - criterion - csv - handa-gdata - hsbencher - mtl - split - statistics - text - ]; - description = "Backend for uploading benchmark data to Google Fusion Tables"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "hsblst" = callPackage ( { mkDerivation, @@ -348396,868 +200644,6 @@ self: { } ) { }; - "hsc3-auditor" = callPackage ( - { - mkDerivation, - base, - filepath, - hmt, - hosc, - hsc3, - hsc3-sf-hsndfile, - }: - mkDerivation { - pname = "hsc3-auditor"; - version = "0.15"; - sha256 = "02p4y06p08mizdrbvl52364szksrwnx28s992prw8b2ilav11563"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base - filepath - hmt - hosc - hsc3 - hsc3-sf-hsndfile - ]; - description = "Haskell SuperCollider Auditor"; - license = "GPL"; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "hsc3-cairo" = callPackage ( - { - mkDerivation, - base, - cairo, - gtk, - hosc, - hsc3, - split, - }: - mkDerivation { - pname = "hsc3-cairo"; - version = "0.14"; - sha256 = "1f62mfjssky7igbp1nx2zf1azbih76m65xydnf5akp8pim7nzmis"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base - cairo - gtk - hosc - hsc3 - split - ]; - description = "haskell supercollider cairo drawing"; - license = "GPL"; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "hsc3-data" = callPackage ( - { - mkDerivation, - base, - bifunctors, - Glob, - hcg-minus, - hmt, - hsc3-lang, - hsc3-plot, - hsc3-sf-hsndfile, - safe, - split, - SVGPath, - xml, - }: - mkDerivation { - pname = "hsc3-data"; - version = "0.15"; - sha256 = "0321rnajfiwldwwpns78im842hypykc1js7flnasld7al6m7487d"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base - bifunctors - Glob - hcg-minus - hmt - hsc3-lang - hsc3-plot - hsc3-sf-hsndfile - safe - split - SVGPath - xml - ]; - description = "haskell supercollider data"; - license = "GPL"; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "hsc3-db" = callPackage ( - { - mkDerivation, - base, - hsc3, - safe, - }: - mkDerivation { - pname = "hsc3-db"; - version = "0.15"; - sha256 = "0sj3hq0d8dl4m6fn75lvyr78sg283p6y13lg8yi2yrgz74kn4zbl"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base - hsc3 - safe - ]; - description = "Haskell SuperCollider Unit Generator Database"; - license = "GPL"; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "hsc3-dot" = callPackage ( - { - mkDerivation, - base, - directory, - filepath, - hsc3, - process, - }: - mkDerivation { - pname = "hsc3-dot"; - version = "0.16"; - sha256 = "0jz3x6s6svgil1cyalq4xkv09s55d8r44cc2ksp0npmgpmp3x454"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base - directory - filepath - hsc3 - process - ]; - description = "haskell supercollider graph drawing"; - license = "GPL"; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "hsc3-forth" = callPackage ( - { - mkDerivation, - base, - containers, - directory, - filepath, - hashable, - hosc, - hsc3, - hsc3-db, - hsc3-dot, - mtl, - unix, - }: - mkDerivation { - pname = "hsc3-forth"; - version = "0.15"; - sha256 = "0b3q6w1r12wv1fl05armkrprlkx2s7n08mimkxxndsd9kl6zl8lw"; - isLibrary = false; - isExecutable = true; - enableSeparateDataOutput = true; - executableHaskellDepends = [ - base - containers - directory - filepath - hashable - hosc - hsc3 - hsc3-db - hsc3-dot - mtl - unix - ]; - description = "FORTH SUPERCOLLIDER"; - license = "GPL"; - hydraPlatforms = lib.platforms.none; - mainProgram = "hsc3-forth"; - } - ) { }; - - "hsc3-graphs" = callPackage ( - { - mkDerivation, - array, - base, - binary, - bytestring, - cairo, - containers, - data-default, - directory, - filepath, - hls, - hmt, - hosc, - hps, - hsc3, - hsc3-cairo, - hsc3-lang, - hsc3-sf, - hsc3-unsafe, - hsc3-utils, - hsharc, - MonadRandom, - primes, - random, - random-shuffle, - sc3-rdu, - she, - split, - }: - mkDerivation { - pname = "hsc3-graphs"; - version = "0.15"; - sha256 = "1d59gl0shwkwi9581j7x7yy1j63acns9ccpwin4y5lwk0k5x6s38"; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - array - base - binary - bytestring - cairo - containers - data-default - directory - filepath - hls - hmt - hosc - hps - hsc3 - hsc3-cairo - hsc3-lang - hsc3-sf - hsc3-unsafe - hsc3-utils - hsharc - MonadRandom - primes - random - random-shuffle - sc3-rdu - she - split - ]; - executableHaskellDepends = [ base ]; - description = "Haskell SuperCollider Graphs"; - license = "GPL"; - hydraPlatforms = lib.platforms.none; - mainProgram = "hsc3-graphs"; - } - ) { }; - - "hsc3-lang" = callPackage ( - { - mkDerivation, - array, - base, - bifunctors, - bytestring, - containers, - data-default, - data-ordlist, - dlist, - hashable, - hmatrix-special, - hosc, - hsc3, - MonadRandom, - random, - random-shuffle, - split, - transformers, - vector, - }: - mkDerivation { - pname = "hsc3-lang"; - version = "0.15"; - sha256 = "09qn9kb8h40cwhnjf4pl70i2vi7cn4pa4wkdwjbn07hrdpvxgihf"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - array - base - bifunctors - bytestring - containers - data-default - data-ordlist - dlist - hashable - hmatrix-special - hosc - hsc3 - MonadRandom - random - random-shuffle - split - transformers - vector - ]; - description = "Haskell SuperCollider Language"; - license = "GPL"; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "hsc3-lisp" = callPackage ( - { - mkDerivation, - base, - containers, - directory, - filepath, - hashable, - hosc, - hsc3, - hsc3-dot, - husk-scheme, - mtl, - safe, - unix, - }: - mkDerivation { - pname = "hsc3-lisp"; - version = "0.15"; - sha256 = "1k45ipivvlfymvh6rzxsv1kfvd11spsn3skmsswg2vd76bcgh20x"; - isLibrary = false; - isExecutable = true; - enableSeparateDataOutput = true; - executableHaskellDepends = [ - base - containers - directory - filepath - hashable - hosc - hsc3 - hsc3-dot - husk-scheme - mtl - safe - unix - ]; - description = "LISP SUPERCOLLIDER"; - license = "GPL"; - hydraPlatforms = lib.platforms.none; - mainProgram = "hsc3-lisp"; - } - ) { }; - - "hsc3-plot" = callPackage ( - { - mkDerivation, - base, - directory, - filepath, - hosc, - hsc3, - hsc3-lang, - process, - split, - statistics, - vector, - }: - mkDerivation { - pname = "hsc3-plot"; - version = "0.15"; - sha256 = "1v5n4k54qp8ifwka2bhrq9w1kfzd3ldzhqyhvkcgl0z46xcf7lk3"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base - directory - filepath - hosc - hsc3 - hsc3-lang - process - split - statistics - vector - ]; - description = "Haskell SuperCollider Plotting"; - license = "GPL"; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "hsc3-process" = callPackage ( - { - mkDerivation, - base, - bytestring, - containers, - data-default, - directory, - filepath, - hosc, - hsc3, - process, - time, - time-compat, - transformers, - }: - mkDerivation { - pname = "hsc3-process"; - version = "0.10.0"; - sha256 = "1h769akpd5gsmmlzmhya3dh56rhpf4fkj0vl6zngahc5hl4s7qxc"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - bytestring - containers - data-default - directory - filepath - hosc - hsc3 - process - time - time-compat - transformers - ]; - description = "Create and control scsynth processes"; - license = "GPL"; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "hsc3-rec" = callPackage ( - { - mkDerivation, - base, - hsc3, - }: - mkDerivation { - pname = "hsc3-rec"; - version = "0.14.1"; - sha256 = "0m814vr41i0mm0c001vbih9i93048niljv3z8czaz32wysa8xpfl"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base - hsc3 - ]; - description = "Haskell SuperCollider Record Variants"; - license = "GPL"; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "hsc3-rw" = callPackage ( - { - mkDerivation, - base, - directory, - haskell-src-exts, - parsec, - polyparse, - split, - syb, - transformers, - }: - mkDerivation { - pname = "hsc3-rw"; - version = "0.15"; - sha256 = "1jcnw0a1nf4wwf5bz61bkpwd3jfgccfxmcqq06vy43pc98223z8p"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base - directory - haskell-src-exts - parsec - polyparse - split - syb - transformers - ]; - description = "hsc3 re-writing"; - license = "GPL"; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "hsc3-server" = callPackage ( - { - mkDerivation, - base, - bitset, - bytestring, - containers, - data-default, - failure, - hashtables, - hosc, - hsc3, - hsc3-process, - lifted-base, - ListZipper, - monad-control, - QuickCheck, - random, - resourcet, - test-framework, - test-framework-quickcheck2, - transformers, - transformers-base, - }: - mkDerivation { - pname = "hsc3-server"; - version = "0.10.0"; - sha256 = "00lw0mj76i2fqhx81d258mqdwqxy8313574i2i8vrjn0mn4bbg2p"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - bitset - bytestring - containers - data-default - failure - hashtables - hosc - hsc3 - hsc3-process - lifted-base - ListZipper - monad-control - resourcet - transformers - transformers-base - ]; - testHaskellDepends = [ - base - failure - QuickCheck - random - test-framework - test-framework-quickcheck2 - transformers - ]; - description = "SuperCollider server resource management and synchronization"; - license = "GPL"; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "hsc3-sf" = callPackage ( - { - mkDerivation, - base, - bytestring, - hosc, - }: - mkDerivation { - pname = "hsc3-sf"; - version = "0.15"; - sha256 = "1dg3gqhvi2rshfqnw7i89bd4bvqjvbk4f9g17x18swyrvgkz9wr7"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base - bytestring - hosc - ]; - description = "Haskell SuperCollider SoundFile"; - license = "GPL"; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "hsc3-sf-hsndfile" = callPackage ( - { - mkDerivation, - array, - base, - hsc3-sf, - hsndfile, - hsndfile-vector, - vector, - }: - mkDerivation { - pname = "hsc3-sf-hsndfile"; - version = "0.15"; - sha256 = "11ksss2g8a7lqpjqvdwj4j9y3kdc8algc9mhlyjmj38mgg4raa2i"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - array - base - hsc3-sf - hsndfile - hsndfile-vector - vector - ]; - description = "Haskell SuperCollider SoundFile"; - license = "GPL"; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "hsc3-unsafe" = callPackage ( - { - mkDerivation, - base, - hsc3, - }: - mkDerivation { - pname = "hsc3-unsafe"; - version = "0.14"; - sha256 = "0kywqx7x10hqzhq8by0f62aznrnq4y3013cxkccx1r0naajpz3yj"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base - hsc3 - ]; - description = "Unsafe Haskell SuperCollider"; - license = "GPL"; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "hsc3-utils" = callPackage ( - { - mkDerivation, - base, - directory, - filepath, - hashable, - hosc, - hsc3, - hsc3-dot, - hsc3-rw, - hsc3-sf, - process, - }: - mkDerivation { - pname = "hsc3-utils"; - version = "0.15"; - sha256 = "1pvg2z6n2r7jhwgwx9rv4q94jdj2ql3kgjh4smjq4xafnzzlyrix"; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base - directory - filepath - hashable - hosc - hsc3 - hsc3-sf - ]; - executableHaskellDepends = [ - base - filepath - hsc3 - hsc3-dot - hsc3-rw - process - ]; - description = "Haskell SuperCollider Utilities"; - license = "GPL"; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "hscaffold" = callPackage ( - { - mkDerivation, - base, - directory, - exceptions, - filepath, - hspec, - mtl, - QuickCheck, - regex-compat, - temporary, - text, - transformers, - unix, - }: - mkDerivation { - pname = "hscaffold"; - version = "0.4.5.0"; - sha256 = "0pinplncp2yvqgqqdjmkll2f1ncnfl11f1z8iin2zgpgg1c5554g"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - directory - exceptions - filepath - mtl - regex-compat - temporary - text - transformers - unix - ]; - executableHaskellDepends = [ - base - directory - exceptions - filepath - mtl - regex-compat - temporary - text - transformers - unix - ]; - testHaskellDepends = [ - base - directory - exceptions - filepath - hspec - mtl - QuickCheck - regex-compat - temporary - text - transformers - unix - ]; - description = "Very simple file/directory structure scaffolding writer monad EDSL"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - mainProgram = "hsfiles-from-directory"; - broken = true; - } - ) { }; - - "hscamwire" = - callPackage - ( - { - mkDerivation, - array, - base, - camwire_1394, - dc1394_control, - raw1394, - time, - unix, - }: - mkDerivation { - pname = "hscamwire"; - version = "0.2.1"; - sha256 = "0alnwc170hd2dyq718nvfq5dsbnyp29j3z49w2w5k59pi9pnqybc"; - libraryHaskellDepends = [ - array - base - time - unix - ]; - librarySystemDepends = [ - camwire_1394 - dc1394_control - raw1394 - ]; - description = "Haskell bindings to IIDC1394 cameras, via Camwire"; - license = "LGPL"; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) - { - camwire_1394 = null; - dc1394_control = null; - raw1394 = null; - }; - - "hscassandra" = callPackage ( - { - mkDerivation, - base, - bytestring, - cassandra-thrift, - containers, - mtl, - network, - old-time, - Thrift, - }: - mkDerivation { - pname = "hscassandra"; - version = "0.0.7"; - sha256 = "06jr17karspq3qpan9iqh0zk2w3b2d7ghdvl8wd4hjz73yacw6f4"; - libraryHaskellDepends = [ - base - bytestring - cassandra-thrift - containers - mtl - network - old-time - Thrift - ]; - description = "cassandra database interface"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "hscd" = callPackage ( - { - mkDerivation, - aeson, - base, - bytestring, - ghc-prim, - HTTP, - }: - mkDerivation { - pname = "hscd"; - version = "0.0.3"; - sha256 = "1wjf3gba1gfbd54d0r4xpkfq7lyvyamhfw21wnsnqsl4hvp335jr"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson - base - bytestring - ghc-prim - HTTP - ]; - executableHaskellDepends = [ - aeson - base - bytestring - ghc-prim - HTTP - ]; - description = "Command line client and library for SoundCloud.com"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "hscd"; - broken = true; - } - ) { }; - "hscdio" = callPackage ( { mkDerivation, @@ -349375,93 +200761,6 @@ self: { } ) { }; - "hschema-aeson" = callPackage ( - { - mkDerivation, - aeson, - base, - bytestring, - comonad, - contravariant, - convertible, - directory, - free, - hschema, - hschema-prettyprinter, - hschema-quickcheck, - hspec, - lens, - mtl, - natural-transformation, - prettyprinter, - prettyprinter-ansi-terminal, - QuickCheck, - quickcheck-instances, - scientific, - text, - time, - unordered-containers, - vector, - }: - mkDerivation { - pname = "hschema-aeson"; - version = "0.0.1.1"; - sha256 = "0z85bsiynmrj46l3l24lcms5icj0a8bsvnvadbqqb8swq8j8npsc"; - libraryHaskellDepends = [ - aeson - base - comonad - contravariant - free - hschema - hschema-prettyprinter - hschema-quickcheck - lens - mtl - natural-transformation - prettyprinter - prettyprinter-ansi-terminal - QuickCheck - quickcheck-instances - scientific - text - time - unordered-containers - vector - ]; - testHaskellDepends = [ - aeson - base - bytestring - comonad - contravariant - convertible - directory - free - hschema - hschema-prettyprinter - hschema-quickcheck - hspec - lens - mtl - natural-transformation - prettyprinter - prettyprinter-ansi-terminal - QuickCheck - quickcheck-instances - scientific - text - time - unordered-containers - vector - ]; - description = "Describe schemas for your Haskell data types"; - license = lib.licenses.lgpl3Only; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "hschema-prettyprinter" = callPackage ( { mkDerivation, @@ -349663,36 +200962,6 @@ self: { } ) { }; - "hsclock" = callPackage ( - { - mkDerivation, - base, - cairo, - glib, - gtk, - old-time, - }: - mkDerivation { - pname = "hsclock"; - version = "1.0"; - sha256 = "0g853fq9vv33nga05rhls6hk5h4gaby8mws0i8yq2iday6j576nf"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - cairo - glib - gtk - old-time - ]; - description = "An elegant analog clock using Haskell, GTK and Cairo"; - license = "GPL"; - hydraPlatforms = lib.platforms.none; - mainProgram = "hsclock"; - broken = true; - } - ) { }; - "hscolour" = callPackage ( { mkDerivation, @@ -349720,59 +200989,6 @@ self: { } ) { }; - "hscope" = callPackage ( - { - mkDerivation, - base, - bytestring, - cereal, - cpphs, - deepseq, - directory, - haskell-src-exts, - mtl, - process, - pure-cdb, - test-simple, - uniplate, - Unixutils, - vector, - }: - mkDerivation { - pname = "hscope"; - version = "0.4.3"; - sha256 = "0ajkb2929h4xbq9n5cwfi3lxqgy8rlvq8dkas18pv5q694bjlqvd"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - bytestring - cereal - cpphs - deepseq - directory - haskell-src-exts - mtl - process - pure-cdb - uniplate - vector - ]; - testHaskellDepends = [ - base - directory - mtl - process - test-simple - Unixutils - ]; - description = "cscope like browser for Haskell code"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "hscope"; - } - ) { }; - "hscrtmpl" = callPackage ( { mkDerivation, @@ -349806,53 +201022,6 @@ self: { } ) { }; - "hscuid" = callPackage ( - { - mkDerivation, - base, - containers, - criterion, - hostname, - mwc-random, - random, - text, - time, - transformers, - unix, - }: - mkDerivation { - pname = "hscuid"; - version = "1.2.0.1"; - sha256 = "0dn0kikx3zjzj9x8fkr046l4s0j7cs61d4ksw1fpwqyg5jwkzhmj"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - hostname - mwc-random - random - text - time - transformers - unix - ]; - executableHaskellDepends = [ - base - criterion - ]; - testHaskellDepends = [ - base - containers - text - ]; - description = "Collision-resistant IDs"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "perf-test"; - broken = true; - } - ) { }; - "hscurses" = callPackage ( { mkDerivation, @@ -350068,66 +201237,10 @@ self: { ]; description = "Haskell development library"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "hsdev"; } ) { }; - "hsdif" = callPackage ( - { - mkDerivation, - base, - bytestring, - hosc, - }: - mkDerivation { - pname = "hsdif"; - version = "0.14"; - sha256 = "1wxms6z8mpyf4l1qqxi6gvscls3mwlj5aq6g3ldashzrmb7pcimm"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base - bytestring - hosc - ]; - description = "Haskell SDIF"; - license = "GPL"; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "hsdip" = callPackage ( - { - mkDerivation, - base, - cairo, - containers, - HUnit, - parsec, - }: - mkDerivation { - pname = "hsdip"; - version = "0.1"; - sha256 = "0hqwpcf2bcrj36wg02mxd2zdg07dqh4b5mv9yn295xp64snrdw84"; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base - cairo - containers - HUnit - parsec - ]; - description = "hsdip - a Diplomacy parser/renderer"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "hsdip"; - broken = true; - } - ) { }; - "hsdns" = callPackage ( { mkDerivation, @@ -350156,37 +201269,6 @@ self: { } ) { inherit (pkgs) adns; }; - "hsdns-cache" = callPackage ( - { - mkDerivation, - base, - hsdns, - network, - SafeSemaphore, - text, - time, - unordered-containers, - }: - mkDerivation { - pname = "hsdns-cache"; - version = "1.0.4"; - sha256 = "1f0822kly602izwzxfi46w668k0jybn3khfacnxmc1744jpqr89i"; - libraryHaskellDepends = [ - base - hsdns - network - SafeSemaphore - text - time - unordered-containers - ]; - description = "Caching asynchronous DNS resolver"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "hse-cpp" = callPackage ( { mkDerivation, @@ -350208,43 +201290,6 @@ self: { } ) { }; - "hsebaysdk" = callPackage ( - { - mkDerivation, - aeson, - base, - bytestring, - http-client, - http-client-tls, - http-types, - text, - time, - transformers, - unordered-containers, - }: - mkDerivation { - pname = "hsebaysdk"; - version = "0.4.1.0"; - sha256 = "0y1q667j0caqqaf57yjvcyyifvzpm4iwxk3y7awnp4c3ihf0ayb3"; - libraryHaskellDepends = [ - aeson - base - bytestring - http-client - http-client-tls - http-types - text - time - transformers - unordered-containers - ]; - description = "Haskell eBay SDK"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "hsec-core" = callPackage ( { mkDerivation, @@ -350593,53 +201638,6 @@ self: { } ) { }; - "hsenv" = callPackage ( - { - mkDerivation, - base, - bytestring, - Cabal, - directory, - file-embed, - filepath, - http-streams, - io-streams, - mtl, - process, - safe, - split, - unix, - }: - mkDerivation { - pname = "hsenv"; - version = "0.5"; - sha256 = "1kjj9p8x6369g9ah9h86xlyvcm4jkahvlz2pvj1m73javbgyyf03"; - isLibrary = false; - isExecutable = true; - enableSeparateDataOutput = true; - executableHaskellDepends = [ - base - bytestring - Cabal - directory - file-embed - filepath - http-streams - io-streams - mtl - process - safe - split - unix - ]; - description = "Virtual Haskell Environment builder"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "hsenv"; - broken = true; - } - ) { }; - "hserv" = callPackage ( { mkDerivation, @@ -350737,141 +201735,6 @@ self: { } ) { }; - "hsfacter" = callPackage ( - { - mkDerivation, - base, - containers, - language-puppet, - text, - }: - mkDerivation { - pname = "hsfacter"; - version = "0.2.1"; - sha256 = "1j7pny0yjpx5qw2d9br723dyic4v09k1qbvrham57p9qxn9m5b0q"; - libraryHaskellDepends = [ - base - containers - language-puppet - text - ]; - description = "A small and ugly library that emulates the output of the puppet facter program"; - license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "hsfcsh" = callPackage ( - { - mkDerivation, - base, - hdaemonize, - hslogger, - network, - process, - }: - mkDerivation { - pname = "hsfcsh"; - version = "0.0.1"; - sha256 = "1fc1fk33wslfkpb83c3ax251h60d5zn2qiqyw81v19wd5r2a6kqc"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - hdaemonize - hslogger - network - process - ]; - description = "Incremental builder for flash"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "hsfilt" = callPackage ( - { - mkDerivation, - base, - ghc, - }: - mkDerivation { - pname = "hsfilt"; - version = "0.1.0.0"; - sha256 = "063k5f64734wvrl45nrp1yvh3bf51w3dzzf3jj4fmj1gjp07zy48"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - ghc - ]; - description = "Z-decoder"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - mainProgram = "hsfilt"; - broken = true; - } - ) { }; - - "hsforce" = callPackage ( - { - mkDerivation, - aeson, - base, - bytestring, - fast-tagsoup, - HaXml, - http-conduit, - network-uri, - regex-posix, - tagsoup, - template-haskell, - text, - unordered-containers, - uri-encode, - }: - mkDerivation { - pname = "hsforce"; - version = "0.1.0.1"; - sha256 = "1n4zg3g0287j7z7vmmafv4gjwjl6f5dljl5gbhm9kr0ailsr1dr3"; - libraryHaskellDepends = [ - aeson - base - bytestring - fast-tagsoup - HaXml - http-conduit - network-uri - regex-posix - tagsoup - template-haskell - text - unordered-containers - uri-encode - ]; - testHaskellDepends = [ - aeson - base - bytestring - fast-tagsoup - HaXml - http-conduit - network-uri - regex-posix - tagsoup - template-haskell - text - unordered-containers - uri-encode - ]; - description = "Salesforce API Client"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "hsftp" = callPackage ( { mkDerivation, @@ -350946,108 +201809,6 @@ self: { } ) { }; - "hsgnutls" = - callPackage - ( - { - mkDerivation, - base, - bytestring, - gcrypt, - gnutls, - mtl, - old-time, - }: - mkDerivation { - pname = "hsgnutls"; - version = "0.2.3.2"; - sha256 = "1nd3z8kb4qjaj0hic9b305c15a7g6sfx6dixz8pspvqg1x84cjnm"; - libraryHaskellDepends = [ - base - bytestring - mtl - old-time - ]; - librarySystemDepends = [ - gcrypt - gnutls - ]; - description = "Library wrapping the GnuTLS API"; - license = "LGPL"; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) - { - gcrypt = null; - inherit (pkgs) gnutls; - }; - - "hsgnutls-yj" = - callPackage - ( - { - mkDerivation, - base, - bytestring, - gcrypt, - gnutls, - mtl, - old-time, - }: - mkDerivation { - pname = "hsgnutls-yj"; - version = "0.2.3.3"; - sha256 = "05dn7kvjxk2pnzv040hyw71nvr83jvdvajq4a9v76kcyjhhwiv0w"; - libraryHaskellDepends = [ - base - bytestring - mtl - old-time - ]; - librarySystemDepends = [ - gcrypt - gnutls - ]; - description = "Library wrapping the GnuTLS API"; - license = "LGPL"; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) - { - gcrypt = null; - inherit (pkgs) gnutls; - }; - - "hsgsom" = callPackage ( - { - mkDerivation, - base, - containers, - random, - stm, - time, - }: - mkDerivation { - pname = "hsgsom"; - version = "0.2.0"; - sha256 = "1043lavrimaxmscayg4knx7ly0yc0gsb729pg72g897hc455r2dn"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base - containers - random - stm - time - ]; - description = "An implementation of the GSOM clustering algorithm"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "hsgtd" = callPackage ( { mkDerivation, @@ -351178,66 +201939,6 @@ self: { } ) { }; - "hsimport" = callPackage ( - { - mkDerivation, - attoparsec, - base, - bytestring, - cmdargs, - directory, - dyre, - filepath, - haskell-src-exts, - ilist, - microlens, - mtl, - split, - tasty, - tasty-golden, - text, - utf8-string, - }: - mkDerivation { - pname = "hsimport"; - version = "0.11.0"; - sha256 = "1z55gpwyb2gwjlll2c32g9r4aqpdybjpnjy785z60wpjdl48qwaa"; - revision = "3"; - editedCabalFile = "017yfag3k4j9v9mj5fv7v8s2j7cla97isx8z4q6ks5wfvjvyfpjy"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - attoparsec - base - cmdargs - directory - dyre - haskell-src-exts - ilist - microlens - mtl - split - text - ]; - executableHaskellDepends = [ base ]; - testHaskellDepends = [ - base - bytestring - filepath - haskell-src-exts - tasty - tasty-golden - utf8-string - ]; - doHaddock = false; - description = "Extend the import list of a Haskell source file"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "hsimport"; - broken = true; - } - ) { }; - "hsini" = callPackage ( { mkDerivation, @@ -351322,95 +202023,6 @@ self: { } ) { }; - "hsinspect-lsp" = callPackage ( - { - mkDerivation, - aeson, - base, - bytestring, - cache, - data-default, - directory, - extra, - filepath, - ghc, - ghc-paths, - haskell-lsp, - hslogger, - hspec, - hspec-discover, - mtl, - process, - stm, - text, - transformers, - unordered-containers, - }: - mkDerivation { - pname = "hsinspect-lsp"; - version = "0.0.6"; - sha256 = "0z02hismrc14yw36ly0xgzavam9n4svwyv0g31yjrg9szyadn1i8"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson - base - bytestring - cache - directory - extra - filepath - ghc - ghc-paths - hslogger - process - text - transformers - ]; - executableHaskellDepends = [ - aeson - base - bytestring - cache - data-default - directory - extra - filepath - ghc - ghc-paths - haskell-lsp - hslogger - mtl - process - stm - text - transformers - unordered-containers - ]; - testHaskellDepends = [ - aeson - base - bytestring - cache - directory - extra - filepath - ghc - ghc-paths - hslogger - hspec - process - text - transformers - ]; - testToolDepends = [ hspec-discover ]; - description = "LSP interface over the hsinspect binary"; - license = lib.licenses.gpl3Plus; - hydraPlatforms = lib.platforms.none; - mainProgram = "hsinspect-lsp"; - } - ) { }; - "hsinstall" = callPackage ( { mkDerivation, @@ -351506,115 +202118,6 @@ self: { } ) { }; - "hskeleton" = callPackage ( - { - mkDerivation, - base, - Cabal, - }: - mkDerivation { - pname = "hskeleton"; - version = "0.1.1"; - sha256 = "0f06xir28rzpwphk14gkpww8l7gbws4habhm26915idpnd4bva2w"; - libraryHaskellDepends = [ - base - Cabal - ]; - description = "Skeleton for new Haskell programs"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "hslackbuilder" = callPackage ( - { - mkDerivation, - base, - Cabal, - directory, - filepath, - process, - unix, - }: - mkDerivation { - pname = "hslackbuilder"; - version = "0.0.2"; - sha256 = "0j4wkw6hqajgwzik8flfzs2m5rlmy9blm98n5ym56svjypshl55q"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - Cabal - directory - filepath - process - unix - ]; - description = "HSlackBuilder automatically generates slackBuild scripts from a cabal package"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "cabal2slackBuild"; - broken = true; - } - ) { }; - - "hslibsvm" = callPackage ( - { - mkDerivation, - base, - containers, - svm, - }: - mkDerivation { - pname = "hslibsvm"; - version = "2.89.0.1"; - sha256 = "00smw10j2ipw10133qc38famar5r6rkswj7bhvb9hdj2rrdyx6sf"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base - containers - ]; - librarySystemDepends = [ svm ]; - description = "A FFI binding to libsvm"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { svm = null; }; - - "hslinks" = callPackage ( - { - mkDerivation, - base, - Cabal, - hint, - MemoTrie, - process, - regex-compat, - }: - mkDerivation { - pname = "hslinks"; - version = "0.6.1"; - sha256 = "1dqicdvklkczn216qxb7gnjjgvgmr0s6iljyb33qhmmabrx5a7x1"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - Cabal - hint - MemoTrie - process - regex-compat - ]; - description = "Resolves links to Haskell identifiers"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "hslinks"; - broken = true; - } - ) { }; - "hslogger" = callPackage ( { mkDerivation, @@ -351651,71 +202154,6 @@ self: { } ) { }; - "hslogger-reader" = callPackage ( - { - mkDerivation, - attoparsec, - base, - hslogger, - optparse-applicative, - text, - text-icu, - time, - }: - mkDerivation { - pname = "hslogger-reader"; - version = "1.0.3"; - sha256 = "18yvks9v8z27jjrfwmczrnhkpx9q33v2l6vfwisrx4a7sv7mc0fp"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - attoparsec - base - hslogger - text - time - ]; - executableHaskellDepends = [ - attoparsec - base - hslogger - optparse-applicative - text - text-icu - time - ]; - description = "Parsing hslogger-produced logs"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "hslogger-template" = callPackage ( - { - mkDerivation, - base, - hslogger, - mtl, - template-haskell, - }: - mkDerivation { - pname = "hslogger-template"; - version = "2.0.4"; - sha256 = "1fg7nz63c3nbpibm5q4mm7rvch7ihf3rlbh6jnhdj6qdspvm38p8"; - libraryHaskellDepends = [ - base - hslogger - mtl - template-haskell - ]; - description = "Automatic generation of hslogger functions"; - license = lib.licenses.publicDomain; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "hslogger4j" = callPackage ( { mkDerivation, hslogger }: mkDerivation { @@ -351729,94 +202167,6 @@ self: { } ) { }; - "hslogstash" = callPackage ( - { - mkDerivation, - aeson, - attoparsec, - base, - blaze-builder, - bytestring, - conduit, - conduit-extra, - containers, - data-default, - hedis, - hspec, - http-client, - http-conduit, - http-types, - iconv, - lens, - lens-aeson, - network, - parallel-io, - QuickCheck, - resourcet, - split, - stm, - stm-chans, - stm-conduit, - stm-firehose, - text, - text-format, - time, - transformers, - unordered-containers, - vector, - wai, - }: - mkDerivation { - pname = "hslogstash"; - version = "0.4.2"; - sha256 = "105ylpr04r73gqindh5865bl1jd9dpjr61wk1zylybilndasb948"; - libraryHaskellDepends = [ - aeson - attoparsec - base - blaze-builder - bytestring - conduit - conduit-extra - containers - data-default - hedis - http-client - http-conduit - http-types - iconv - lens - lens-aeson - network - parallel-io - resourcet - stm - stm-chans - stm-conduit - stm-firehose - text - text-format - time - transformers - unordered-containers - vector - wai - ]; - testHaskellDepends = [ - base - conduit - hspec - QuickCheck - split - stm - transformers - ]; - description = "A library to work with, or as, a logstash server"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "hslua" = callPackage ( { mkDerivation, @@ -352794,108 +203144,6 @@ self: { } ) { }; - "hsluv-haskell" = callPackage ( - { - mkDerivation, - aeson, - base, - bytestring, - colour, - containers, - }: - mkDerivation { - pname = "hsluv-haskell"; - version = "0.1.0.0"; - sha256 = "1pdp1qfhqjv33mfgayay2by7bf5p1acw5791kgay20a8r5wvalab"; - libraryHaskellDepends = [ - base - colour - ]; - testHaskellDepends = [ - aeson - base - bytestring - colour - containers - ]; - description = "HSLuv conversion utility"; - license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "hsmagick" = - callPackage - ( - { - mkDerivation, - base, - bytestring, - bzip2, - directory, - filepath, - freetype, - GraphicsMagick, - jasper, - lcms, - libjpeg, - libpng, - libxml2, - pretty, - process, - tiff, - wmflite, - zlib, - }: - mkDerivation { - pname = "hsmagick"; - version = "0.5"; - sha256 = "1bfzbwddss0m0z4jf7i0b06pmxy9rvknpqnzhf0v5jggv5nr442p"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base - bytestring - directory - filepath - pretty - process - ]; - librarySystemDepends = [ - bzip2 - jasper - libjpeg - libpng - tiff - wmflite - zlib - ]; - libraryPkgconfigDepends = [ - freetype - GraphicsMagick - lcms - libxml2 - ]; - description = "FFI bindings for the GraphicsMagick library"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) - { - GraphicsMagick = null; - inherit (pkgs) bzip2; - inherit (pkgs) freetype; - inherit (pkgs) jasper; - inherit (pkgs) lcms; - inherit (pkgs) libjpeg; - inherit (pkgs) libpng; - inherit (pkgs) libxml2; - tiff = null; - wmflite = null; - inherit (pkgs) zlib; - }; - "hsmisc" = callPackage ( { mkDerivation, @@ -352930,65 +203178,6 @@ self: { } ) { }; - "hsmodetweaks" = callPackage ( - { - mkDerivation, - base, - containers, - directory, - hpack, - protolude, - text, - }: - mkDerivation { - pname = "hsmodetweaks"; - version = "0.1.0.1"; - sha256 = "1nwmfd6wvwis58z97amgzix42mcqj5nsj915593w2cw7j5sv5y17"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - containers - directory - hpack - protolude - text - ]; - description = "Tool for generating .dir-locals.el for intero"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "hsmodetweaks"; - broken = true; - } - ) { }; - - "hsmtpclient" = callPackage ( - { - mkDerivation, - array, - base, - directory, - network, - old-time, - }: - mkDerivation { - pname = "hsmtpclient"; - version = "1.0"; - sha256 = "08gbrwrc85in34nrgjm0zr5sjz2zbjc7hk2zlpvk1dq8x62a6wsg"; - libraryHaskellDepends = [ - array - base - directory - network - old-time - ]; - description = "Simple SMTP Client"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "hsndfile" = callPackage ( { mkDerivation, @@ -353050,53 +203239,6 @@ self: { } ) { }; - "hsnock" = callPackage ( - { - mkDerivation, - base, - HUnit, - parsec, - QuickCheck, - readline, - test-framework, - test-framework-hunit, - test-framework-quickcheck2, - }: - mkDerivation { - pname = "hsnock"; - version = "0.5.1"; - sha256 = "1hh4lyrd2ki79q6pfz62icp3igzyljwa5bz8ba9vk4kxxawrnbhw"; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base - parsec - readline - ]; - executableHaskellDepends = [ - base - parsec - readline - ]; - testHaskellDepends = [ - base - HUnit - parsec - QuickCheck - readline - test-framework - test-framework-hunit - test-framework-quickcheck2 - ]; - description = "Nock 5K interpreter"; - license = lib.licenses.publicDomain; - hydraPlatforms = lib.platforms.none; - mainProgram = "hsnock"; - broken = true; - } - ) { }; - "hsnoise" = callPackage ( { mkDerivation, @@ -353116,340 +203258,6 @@ self: { } ) { }; - "hsns" = callPackage ( - { - mkDerivation, - base, - network, - pcap, - }: - mkDerivation { - pname = "hsns"; - version = "0.5.3"; - sha256 = "0r3z9h5l4hxbjfcqsfk67jp2r964wgvrisk352lpx550vwd6chbf"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - network - pcap - ]; - description = "a miniature network sniffer"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "hsns"; - broken = true; - } - ) { }; - - "hsnsq" = callPackage ( - { - mkDerivation, - aeson, - async, - attoparsec, - attoparsec-binary, - base, - bytestring, - containers, - hostname, - hslogger, - mtl, - network, - pipes, - pipes-attoparsec, - pipes-network, - stm, - stm-chans, - text, - }: - mkDerivation { - pname = "hsnsq"; - version = "0.1.2.0"; - sha256 = "0chmcyfar29rnsni47yx286a308rll098lxrr1zhyi7kxvh9j4fb"; - libraryHaskellDepends = [ - aeson - async - attoparsec - attoparsec-binary - base - bytestring - containers - hostname - hslogger - mtl - network - pipes - pipes-attoparsec - pipes-network - stm - stm-chans - text - ]; - description = "Haskell NSQ client"; - license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "hsntp" = callPackage ( - { - mkDerivation, - array, - base, - mtl, - network, - old-time, - random, - unix, - }: - mkDerivation { - pname = "hsntp"; - version = "0.1"; - sha256 = "0pw5l6z1yjjvcxgw71i00gfnjdqcvg09bsacazq9ahvnwsn4aayd"; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - array - base - mtl - network - old-time - random - ]; - executableHaskellDepends = [ unix ]; - description = "Libraries to use SNTP protocol and small client/server implementations"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "hsoptions" = callPackage ( - { - mkDerivation, - base, - containers, - directory, - HUnit, - parsec, - QuickCheck, - regex-compat, - regex-posix, - test-framework, - test-framework-hunit, - test-framework-quickcheck2, - }: - mkDerivation { - pname = "hsoptions"; - version = "1.0.0.0"; - sha256 = "1c4sigmagwbs3g5pj3as4f930mvba090p7cjq4cy8hbmv6cz0fn1"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - containers - directory - parsec - regex-compat - regex-posix - ]; - executableHaskellDepends = [ base ]; - testHaskellDepends = [ - base - containers - directory - HUnit - parsec - QuickCheck - regex-compat - regex-posix - test-framework - test-framework-hunit - test-framework-quickcheck2 - ]; - description = "Haskell library that supports command-line flag processing"; - license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "hsoz" = callPackage ( - { - mkDerivation, - aeson, - attoparsec, - base, - bytestring, - case-insensitive, - containers, - cryptonite, - data-default, - either, - errors, - exceptions, - hashable, - http-client, - http-conduit, - http-types, - HUnit, - lens, - lucid, - memory, - mtl, - network, - optparse-applicative, - QuickCheck, - scientific, - scotty, - tasty, - tasty-golden, - tasty-hunit, - tasty-quickcheck, - text, - time, - transformers, - unordered-containers, - uri-bytestring, - vault, - wai, - warp, - }: - mkDerivation { - pname = "hsoz"; - version = "0.0.1.0"; - sha256 = "0r1dxaxrx0cha13dl1137ggl191jpf60h5s7xs5wqdvgavwfw965"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson - attoparsec - base - bytestring - case-insensitive - containers - cryptonite - data-default - either - errors - exceptions - hashable - http-client - http-types - lens - memory - mtl - network - scientific - scotty - text - time - transformers - unordered-containers - uri-bytestring - vault - wai - warp - ]; - executableHaskellDepends = [ - aeson - base - bytestring - case-insensitive - containers - cryptonite - data-default - http-client - http-conduit - http-types - lens - lucid - optparse-applicative - scotty - text - time - transformers - uri-bytestring - wai - warp - ]; - testHaskellDepends = [ - aeson - base - bytestring - data-default - http-client - http-types - HUnit - QuickCheck - tasty - tasty-golden - tasty-hunit - tasty-quickcheck - text - time - wai - ]; - description = "Iron, Hawk, Oz: Web auth protocols"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "hsp" = callPackage ( - { - mkDerivation, - base, - mtl, - text, - }: - mkDerivation { - pname = "hsp"; - version = "0.10.0"; - sha256 = "1ayfywgrlmzivsq6lirmgvl65x1shf8041lzw2yh245rkmd91lsf"; - libraryHaskellDepends = [ - base - mtl - text - ]; - description = "Haskell Server Pages is a library for writing dynamic server-side web pages"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "hsp-cgi" = callPackage ( - { - mkDerivation, - base, - containers, - harp, - hsp, - network, - }: - mkDerivation { - pname = "hsp-cgi"; - version = "0.4.4"; - sha256 = "0m1xylqzmi2c1c92zk5bq6232id9fmjlx4s88ic2fvf5a389n11n"; - libraryHaskellDepends = [ - base - containers - harp - hsp - network - ]; - description = "Facilitates running Haskell Server Pages web pages as CGI programs"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "hsparklines" = callPackage ( { mkDerivation, @@ -354066,62 +203874,6 @@ self: { } ) { }; - "hspec-expectations-match" = callPackage ( - { - mkDerivation, - base, - hspec, - hspec-expectations, - template-haskell, - transformers-base, - }: - mkDerivation { - pname = "hspec-expectations-match"; - version = "0.2.0.0"; - sha256 = "16ca3fqjigj08y1cz2vvzsqfxnwypdi62hm5rw31flih45nb5nq1"; - libraryHaskellDepends = [ - base - hspec-expectations - template-haskell - transformers-base - ]; - testHaskellDepends = [ - base - hspec - ]; - description = "An hspec expectation that asserts a value matches a pattern"; - license = lib.licenses.isc; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "hspec-expectations-pretty" = callPackage ( - { - mkDerivation, - base, - deepseq, - hspec-expectations, - wl-pprint-extras, - wl-pprint-terminfo, - }: - mkDerivation { - pname = "hspec-expectations-pretty"; - version = "0.1"; - sha256 = "1x8xpc9b2m33sqwf7j643wjzja956m4vcdvaqrwlpxwqn887sxn5"; - libraryHaskellDepends = [ - base - deepseq - hspec-expectations - wl-pprint-extras - wl-pprint-terminfo - ]; - description = "hspec-expectations with pretty printing on failure"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "hspec-expectations-pretty-diff" = callPackage ( { mkDerivation, @@ -354164,36 +203916,6 @@ self: { } ) { }; - "hspec-experimental" = callPackage ( - { - mkDerivation, - base, - hspec, - hspec-meta, - HUnit, - QuickCheck, - }: - mkDerivation { - pname = "hspec-experimental"; - version = "0.1.0"; - sha256 = "197c9x25r41xmaq84xqhi0kizxi7as7jn7k9klj7pq9fmd9hcg7m"; - libraryHaskellDepends = [ - base - hspec - HUnit - QuickCheck - ]; - testHaskellDepends = [ - base - hspec-meta - ]; - description = "An experimental DSL for testing on top of Hspec"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "hspec-formatter-github" = callPackage ( { mkDerivation, @@ -354392,29 +204114,6 @@ self: { } ) { }; - "hspec-jenkins" = callPackage ( - { - mkDerivation, - base, - blaze-markup, - hspec, - }: - mkDerivation { - pname = "hspec-jenkins"; - version = "0.1.1"; - sha256 = "16aql0fyssc16z85isskccq93dj5i1pydblnf2q1np7z6pl1azy2"; - libraryHaskellDepends = [ - base - blaze-markup - hspec - ]; - description = "Jenkins-friendly XML formatter for Hspec"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "hspec-junit-formatter" = callPackage ( { mkDerivation, @@ -354674,33 +204373,6 @@ self: { } ) { }; - "hspec-monad-control" = callPackage ( - { - mkDerivation, - base, - hspec-core, - monad-control, - transformers, - transformers-base, - }: - mkDerivation { - pname = "hspec-monad-control"; - version = "0.1.0.0"; - sha256 = "07ry4nghrjbrlv6slv2a1m67r5ajdss7ifyzph0zwa96bjl1w124"; - libraryHaskellDepends = [ - base - hspec-core - monad-control - transformers - transformers-base - ]; - description = "Orphan instances of MonadBase and MonadBaseControl for SpecM"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "hspec-multicheck" = callPackage ( { mkDerivation, @@ -354875,103 +204547,6 @@ self: { } ) { }; - "hspec-setup" = callPackage ( - { - mkDerivation, - ansi-wl-pprint, - base, - bytestring, - cryptohash, - directory, - directory-tree, - filepath, - haskell-src-exts, - hspec, - language-dockerfile, - pretty, - process, - projectroot, - QuickCheck, - split, - strict, - }: - mkDerivation { - pname = "hspec-setup"; - version = "0.2.1.0"; - sha256 = "1l3pq6i9npbyzh0bv8qb315l50zhv81s5rqqnc8k27rlrabirndb"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - ansi-wl-pprint - base - directory - directory-tree - filepath - haskell-src-exts - pretty - process - projectroot - split - strict - ]; - executableHaskellDepends = [ - ansi-wl-pprint - base - directory - directory-tree - filepath - haskell-src-exts - pretty - process - projectroot - split - strict - ]; - testHaskellDepends = [ - ansi-wl-pprint - base - bytestring - cryptohash - directory - directory-tree - filepath - haskell-src-exts - hspec - language-dockerfile - pretty - process - projectroot - QuickCheck - split - strict - ]; - description = "Add an hspec test-suite in one command"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - mainProgram = "hspec-setup"; - } - ) { }; - - "hspec-shouldbe" = callPackage ( - { - mkDerivation, - hspec, - test-shouldbe, - }: - mkDerivation { - pname = "hspec-shouldbe"; - version = "0.0.1"; - sha256 = "0b4y84vqyx22kihr0sbbxzr6sdz99hi2rhyl09r8ddzkzqadfii3"; - libraryHaskellDepends = [ - hspec - test-shouldbe - ]; - description = "Convenience wrapper and utilities for hspec"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "hspec-slow" = callPackage ( { mkDerivation, @@ -355142,55 +204717,6 @@ self: { } ) { }; - "hspec-structured-formatter" = callPackage ( - { - mkDerivation, - base, - hspec, - }: - mkDerivation { - pname = "hspec-structured-formatter"; - version = "0.1.0.3"; - sha256 = "008gm0qvhvp6z6a9sq5vpljqb90258apd83rkzy47k3bczy1sgmj"; - libraryHaskellDepends = [ - base - hspec - ]; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "hspec-tables" = callPackage ( - { - mkDerivation, - base, - hspec, - hspec-core, - }: - mkDerivation { - pname = "hspec-tables"; - version = "0.0.1"; - sha256 = "07z85920dr85kc763hfqd6rrzl81cc39cjgc0ymy95ycgpdz2w1q"; - revision = "1"; - editedCabalFile = "1li02kvz1mpq0x9j7q7cjwn8b35m2aqgfbrgab4vsngqq61a4f0z"; - libraryHaskellDepends = [ - base - hspec-core - ]; - testHaskellDepends = [ - base - hspec - hspec-core - ]; - description = "Table-driven (by-example) HSpec tests"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "hspec-test-framework" = callPackage ( { mkDerivation, @@ -355523,31 +205049,6 @@ self: { } ) { }; - "hspec2" = callPackage ( - { - mkDerivation, - base, - hspec, - hspec-discover, - }: - mkDerivation { - pname = "hspec2"; - version = "0.6.1"; - sha256 = "0zlvm7r46q8yhgx2kx9mfrf6x2f5amdbi3a59fh69dsqs4lbgmf4"; - revision = "2"; - editedCabalFile = "1q0pw1ggki7h839jicf2k0lllbm219qjcr3407hvcih9vfkbw03j"; - libraryHaskellDepends = [ - base - hspec - hspec-discover - ]; - description = "Alpha version of Hspec 2.0"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "hspecVariant" = callPackage ( { mkDerivation, @@ -355577,49 +205078,6 @@ self: { } ) { }; - "hspkcs11" = callPackage ( - { - mkDerivation, - base, - base64-bytestring, - bytestring, - c2hs, - cipher-aes, - cprng-aes, - crypto-api, - RSA, - unix, - utf8-string, - }: - mkDerivation { - pname = "hspkcs11"; - version = "0.7"; - sha256 = "0xbwwnj4n674c3ybxq966w6l71xfg992yig8989gbww4x21n9cy2"; - libraryHaskellDepends = [ - base - bytestring - unix - utf8-string - ]; - libraryToolDepends = [ c2hs ]; - testHaskellDepends = [ - base - base64-bytestring - bytestring - cipher-aes - cprng-aes - crypto-api - RSA - unix - utf8-string - ]; - description = "Wrapper for PKCS #11 interface"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "hspr-sh" = callPackage ( { mkDerivation, @@ -355686,64 +205144,6 @@ self: { } ) { }; - "hspread" = callPackage ( - { - mkDerivation, - base, - binary, - bytestring, - containers, - extensible-exceptions, - network, - }: - mkDerivation { - pname = "hspread"; - version = "0.3.3"; - sha256 = "1z7v5awagmhxyz4cl020s4gk4yxp0i62z3hqm9kwf73b3b69x2kf"; - libraryHaskellDepends = [ - base - binary - bytestring - containers - extensible-exceptions - network - ]; - description = "A client library for the spread toolkit"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "hspresent" = callPackage ( - { - mkDerivation, - array, - base, - bytestring, - vty, - }: - mkDerivation { - pname = "hspresent"; - version = "0.2.2"; - sha256 = "0x4f3y8l8vj1498bnw4fxw9nzf7q2y4vjys72j73h50c7hr83j07"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - array - base - bytestring - vty - ]; - doHaddock = false; - description = "A terminal presentation tool"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "hspresent"; - broken = true; - } - ) { }; - "hspretty" = callPackage ( { mkDerivation, @@ -355798,67 +205198,6 @@ self: { } ) { }; - "hsprocess" = callPackage ( - { - mkDerivation, - base, - bytestring, - containers, - directory, - easy-file, - filepath, - hint, - hspec, - HUnit, - MonadCatchIO-mtl, - process, - QuickCheck, - stringsearch, - test-framework, - test-framework-hunit, - time, - }: - mkDerivation { - pname = "hsprocess"; - version = "0.3"; - sha256 = "1g47g3i8fgknzyf7pp7g1mk2bfn7r7igm0c6j2v9fnahhrpj4a5z"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - bytestring - containers - ]; - executableHaskellDepends = [ - base - bytestring - containers - directory - easy-file - filepath - hint - MonadCatchIO-mtl - process - stringsearch - time - ]; - testHaskellDepends = [ - base - bytestring - containers - hspec - HUnit - QuickCheck - test-framework - test-framework-hunit - ]; - description = "The Haskell Stream Processor command line utility"; - license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - mainProgram = "hsp"; - } - ) { }; - "hsql" = callPackage ( { mkDerivation, @@ -355882,102 +205221,6 @@ self: { } ) { }; - "hsql-mysql" = callPackage ( - { - mkDerivation, - base, - Cabal, - hsql, - mysqlclient, - }: - mkDerivation { - pname = "hsql-mysql"; - version = "1.8.3"; - sha256 = "0834jr5jrr1m7ap93wvmb5ir0906f7f7xx52x21i1l1jfpan34j9"; - revision = "1"; - editedCabalFile = "1aqlpx6fjyp2pyjxz0bs5qrvvj1105g4lgm94g7hlcbfrcgbgfz1"; - libraryHaskellDepends = [ - base - Cabal - hsql - ]; - librarySystemDepends = [ mysqlclient ]; - description = "MySQL driver for HSQL"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { mysqlclient = null; }; - - "hsql-odbc" = callPackage ( - { - mkDerivation, - base, - hsql, - old-time, - unixODBC, - }: - mkDerivation { - pname = "hsql-odbc"; - version = "1.8.2"; - sha256 = "0lz9zjy1xgjjbabbi2hcrvsnfid6c78y2cb2703qjwr93xy54f1f"; - libraryHaskellDepends = [ - base - hsql - old-time - ]; - librarySystemDepends = [ unixODBC ]; - description = "A Haskell Interface to ODBC"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { inherit (pkgs) unixODBC; }; - - "hsql-postgresql" = callPackage ( - { - mkDerivation, - base, - hsql, - libpq, - old-time, - }: - mkDerivation { - pname = "hsql-postgresql"; - version = "1.8.2"; - sha256 = "0yj0jalpapjvpxmc79yd6bn93ax13pp87dipbg2c9mxf3p38jc9z"; - libraryHaskellDepends = [ - base - hsql - old-time - ]; - librarySystemDepends = [ libpq ]; - description = "A Haskell Interface to PostgreSQL via the PQ library"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { inherit (pkgs) libpq; }; - - "hsql-sqlite3" = callPackage ( - { - mkDerivation, - base, - hsql, - sqlite, - }: - mkDerivation { - pname = "hsql-sqlite3"; - version = "1.8.2"; - sha256 = "15f7f4f4k1afrpmkw2k6lyx1b81hlwvwv660yh0vm2vz269mxycl"; - libraryHaskellDepends = [ - base - hsql - ]; - librarySystemDepends = [ sqlite ]; - description = "SQLite3 driver for HSQL"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { inherit (pkgs) sqlite; }; - "hsqml" = callPackage ( @@ -356252,55 +205495,6 @@ self: { } ) { }; - "hsreadability" = callPackage ( - { - mkDerivation, - aeson, - authenticate-oauth, - base, - bytestring, - data-default, - file-embed, - http-conduit, - http-types, - HUnit, - test-framework, - test-framework-hunit, - text, - xsd, - }: - mkDerivation { - pname = "hsreadability"; - version = "1.0.0.0"; - sha256 = "0q4sqx7xjsa8jplrdzirdlh6170ckqags02idjknwpc48plarnaw"; - revision = "1"; - editedCabalFile = "08zsb0ajbpc5mhyqdalhidz046fm29w9qig19h130ivs94l7mf70"; - libraryHaskellDepends = [ - aeson - authenticate-oauth - base - bytestring - data-default - http-conduit - http-types - text - xsd - ]; - testHaskellDepends = [ - aeson - base - file-embed - HUnit - test-framework - test-framework-hunit - text - ]; - description = "Access to the Readability API"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "hsrelp" = callPackage ( { mkDerivation, @@ -356342,34 +205536,6 @@ self: { } ) { }; - "hsseccomp" = callPackage ( - { - mkDerivation, - base, - seccomp, - tasty, - tasty-hunit, - unix, - }: - mkDerivation { - pname = "hsseccomp"; - version = "0.2.0.1"; - sha256 = "0brpvl5rp8awckcznscmy10k435lzdp0vbgxdkh6b9vcbcf4hf5i"; - libraryHaskellDepends = [ base ]; - librarySystemDepends = [ seccomp ]; - testHaskellDepends = [ - base - tasty - tasty-hunit - unix - ]; - description = "Haskell bindings to libseccomp"; - license = "LGPL"; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { seccomp = null; }; - "hssh" = callPackage ( { mkDerivation, @@ -356449,128 +205615,6 @@ self: { } ) { }; - "hssourceinfo" = callPackage ( - { - mkDerivation, - base, - containers, - directory, - filepath, - regexpr, - }: - mkDerivation { - pname = "hssourceinfo"; - version = "0.0.2"; - sha256 = "07g1wsm4131ymp4ym33fx8yfs0bsqn9as65lkyg21ajc0dz2j1qa"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - containers - directory - filepath - regexpr - ]; - description = "get haskell source code info"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "hssqlppp" = callPackage ( - { - mkDerivation, - base, - containers, - haskell-src-exts, - mtl, - parsec, - pretty, - pretty-show, - syb, - tasty, - tasty-hunit, - template-haskell, - text, - transformers, - uniplate, - }: - mkDerivation { - pname = "hssqlppp"; - version = "0.6.2"; - sha256 = "0lzy6laqxi6v6hlz9j2kvxm9rc4i89m9lnffymfkfwxlrgq7wg0s"; - libraryHaskellDepends = [ - base - containers - mtl - parsec - pretty - pretty-show - syb - text - transformers - uniplate - ]; - testHaskellDepends = [ - base - containers - haskell-src-exts - mtl - parsec - pretty - pretty-show - syb - tasty - tasty-hunit - template-haskell - text - transformers - uniplate - ]; - description = "SQL parser and type checker"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "hssqlppp-th" = callPackage ( - { - mkDerivation, - base, - hssqlppp, - syb, - tasty, - tasty-hunit, - template-haskell, - text, - }: - mkDerivation { - pname = "hssqlppp-th"; - version = "0.6.2"; - sha256 = "1p17srzz09iikxn47yr7qmv5g6z7c5kc5svlszmxlhs5j0kgahb0"; - libraryHaskellDepends = [ - base - hssqlppp - syb - template-haskell - text - ]; - testHaskellDepends = [ - base - hssqlppp - syb - tasty - tasty-hunit - template-haskell - text - ]; - description = "hssqlppp extras which need template-haskell"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "hstar" = callPackage ( { mkDerivation, @@ -356650,109 +205694,6 @@ self: { } ) { }; - "hstats" = callPackage ( - { mkDerivation, base }: - mkDerivation { - pname = "hstats"; - version = "0.3.0.1"; - sha256 = "1a0rzbnbxd7r9b0ibs74nzijbdhj019wssdk1fls2r9i0w1v6i9h"; - libraryHaskellDepends = [ base ]; - description = "Statistical Computing in Haskell"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "hstatsd" = callPackage ( - { - mkDerivation, - base, - bytestring, - mtl, - network, - text, - }: - mkDerivation { - pname = "hstatsd"; - version = "0.1"; - sha256 = "092q52yyb1xdji1y72bdcgvp8by2w1z9j717sl1gmh2p89cpjrs4"; - libraryHaskellDepends = [ - base - bytestring - mtl - network - text - ]; - description = "Quick and dirty statsd interface"; - license = lib.licenses.publicDomain; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "hstest" = callPackage ( - { - mkDerivation, - base, - directory, - filepath, - ghc, - ghc-paths, - HUnit, - mtl, - QuickCheck, - random, - }: - mkDerivation { - pname = "hstest"; - version = "0.0.1"; - sha256 = "0afvl5b82alnbdj0l26scg1qy7rln94qk9an252p83zlg5nd16gd"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - directory - filepath - ghc - ghc-paths - HUnit - mtl - QuickCheck - random - ]; - description = "Runs tests via QuickCheck1 and HUnit; like quickCheck-script but uses GHC api"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "hstest"; - broken = true; - } - ) { }; - - "hstidy" = callPackage ( - { - mkDerivation, - base, - haskell-src-exts, - }: - mkDerivation { - pname = "hstidy"; - version = "0.2"; - sha256 = "1hjsdxl0vn42n5kfiq42yvrr3j31sjy9g7iwjlnj2x72jff79vxs"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - haskell-src-exts - ]; - description = "Takes haskell source on stdin, parses it, then prettyprints it to stdout"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "hstidy"; - broken = true; - } - ) { }; - "hstorchat" = callPackage ( { mkDerivation, @@ -356815,359 +205756,6 @@ self: { } ) { }; - "hstox" = callPackage ( - { - mkDerivation, - async, - base, - base16-bytestring, - binary, - binary-bits, - bytestring, - clock, - containers, - data-msgpack, - data-msgpack-types, - entropy, - hspec, - integer-gmp, - iproute, - lens-family, - MonadRandom, - mtl, - network, - network-msgpack-rpc, - process, - QuickCheck, - random, - saltine, - semigroups, - tagged, - text, - transformers, - }: - mkDerivation { - pname = "hstox"; - version = "0.0.2"; - sha256 = "0dnz2kza50741gkhkclipd73wiqlfh0f40bsx9askl2sbj5zschg"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - base16-bytestring - binary - binary-bits - bytestring - clock - containers - data-msgpack - data-msgpack-types - entropy - hspec - integer-gmp - iproute - lens-family - MonadRandom - mtl - network - network-msgpack-rpc - QuickCheck - random - saltine - semigroups - tagged - text - transformers - ]; - executableHaskellDepends = [ - base - process - ]; - testHaskellDepends = [ - async - base - ]; - description = "A Tox protocol implementation in Haskell"; - license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "hstradeking" = callPackage ( - { - mkDerivation, - aeson, - attoparsec, - base, - bytestring, - case-insensitive, - conduit, - configurator, - containers, - hoauth, - http-conduit, - lifted-base, - numbers, - old-locale, - resourcet, - RSA, - safe, - text, - time, - transformers, - vector, - }: - mkDerivation { - pname = "hstradeking"; - version = "0.1.0"; - sha256 = "10wyvfha6vngrj8h8i9dx1skyz3c4g1pcx13cafix5cpim6dr64w"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson - attoparsec - base - bytestring - case-insensitive - conduit - configurator - containers - hoauth - http-conduit - lifted-base - numbers - old-locale - resourcet - RSA - safe - text - time - vector - ]; - executableHaskellDepends = [ - base - bytestring - conduit - resourcet - transformers - ]; - description = "Tradeking API bindings for Haskell"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "tradeking"; - } - ) { }; - - "hstyle" = callPackage ( - { - mkDerivation, - base, - cmdargs, - directory, - filepath, - haskell-src-exts, - syb, - text, - vector, - }: - mkDerivation { - pname = "hstyle"; - version = "0.2.0.3"; - sha256 = "1a63i54zd9ls1lii4p2qzpds3q8xbcl8w8b6m53ix3n6ikpa4n35"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - cmdargs - directory - filepath - haskell-src-exts - syb - text - vector - ]; - description = "Checks Haskell source code for style compliance"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "hstyle"; - broken = true; - } - ) { }; - - "hstzaar" = callPackage ( - { - mkDerivation, - array, - base, - cairo, - containers, - directory, - filepath, - glade, - gtk, - hashable, - mtl, - parallel, - QuickCheck, - random, - unordered-containers, - vector, - xml, - }: - mkDerivation { - pname = "hstzaar"; - version = "0.9.4"; - sha256 = "0wfi468d08irw0s7dn6rmfsi1hrvh0in2fr655fmmwk6ngmnix51"; - isLibrary = false; - isExecutable = true; - enableSeparateDataOutput = true; - executableHaskellDepends = [ - array - base - cairo - containers - directory - filepath - glade - gtk - hashable - mtl - parallel - QuickCheck - random - unordered-containers - vector - xml - ]; - description = "A two player abstract strategy game"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "hstzaar"; - } - ) { }; - - "hsubconvert" = callPackage ( - { - mkDerivation, - base, - bytestring, - cmdargs, - general-prelude, - gitlib, - hslogger, - lens, - mtl, - parallel-io, - regex-posix, - stringable, - svndump, - system-fileio, - system-filepath, - text, - text-format, - time, - transformers, - unix, - }: - mkDerivation { - pname = "hsubconvert"; - version = "0.0.2"; - sha256 = "1sl7dxqi47x937wivdlx5yg6a4niczcz22xs3flvgsrxbx1ahy9w"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - bytestring - cmdargs - general-prelude - gitlib - hslogger - lens - mtl - parallel-io - regex-posix - stringable - svndump - system-fileio - system-filepath - text - text-format - time - transformers - unix - ]; - description = "One-time, faithful conversion of Subversion repositories to Git"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "hsubconvert"; - } - ) { }; - - "hsudoku" = callPackage ( - { - mkDerivation, - base, - bytestring, - gi-gtk, - HandsomeSoup, - haskell-gi-base, - hspec, - http-client, - http-client-tls, - hxt, - QuickCheck, - text, - }: - mkDerivation { - pname = "hsudoku"; - version = "0.1.1.0"; - sha256 = "1sq498shkr9xvzrg7spwvsfrnp0d414vcb6iv6pcy7h1jsplrgaz"; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base - bytestring - gi-gtk - HandsomeSoup - haskell-gi-base - http-client - http-client-tls - hxt - text - ]; - executableHaskellDepends = [ - base - bytestring - gi-gtk - HandsomeSoup - haskell-gi-base - http-client - http-client-tls - hxt - text - ]; - testHaskellDepends = [ - base - bytestring - gi-gtk - HandsomeSoup - haskell-gi-base - hspec - http-client - http-client-tls - hxt - QuickCheck - text - ]; - description = "Sudoku game with a GTK3 interface"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - mainProgram = "hsudoku"; - broken = true; - } - ) { }; - "hsverilog" = callPackage ( { mkDerivation, @@ -357206,73 +205794,6 @@ self: { } ) { }; - "hswip" = - callPackage - ( - { - mkDerivation, - base, - haskell98, - mtl, - ncurses, - readline, - swipl, - }: - mkDerivation { - pname = "hswip"; - version = "0.3"; - sha256 = "11nlpnfjnypz76m2padkz7ppjdir1vz3bp65s9wzphvnsmp3a681"; - libraryHaskellDepends = [ - base - haskell98 - mtl - ]; - librarySystemDepends = [ - ncurses - readline - swipl - ]; - description = "embedding prolog in haskell"; - license = "GPL"; - hydraPlatforms = lib.platforms.none; - } - ) - { - inherit (pkgs) ncurses; - inherit (pkgs) readline; - swipl = null; - }; - - "hsx" = callPackage ( - { - mkDerivation, - base, - haskell-src-exts, - mtl, - utf8-string, - }: - mkDerivation { - pname = "hsx"; - version = "0.10.5"; - sha256 = "046428y16h6za41lwqkp5pnqfd74zw8jiz8xw7j7sq0rhylg134v"; - revision = "1"; - editedCabalFile = "1v3m3vbzinhyvqpcz26fm3ay4qrl3ckpj0n5qqqmyx1896xw0kwr"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - haskell-src-exts - mtl - utf8-string - ]; - description = "HSX (Haskell Source with XML) allows literal XML syntax in Haskell source code"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "trhsx"; - broken = true; - } - ) { }; - "hsx-jmacro" = callPackage ( { mkDerivation, @@ -357298,28 +205819,7 @@ self: { description = "hsp+jmacro support"; license = lib.licenses.bsd3; hydraPlatforms = lib.platforms.none; - } - ) { }; - - "hsx-xhtml" = callPackage ( - { - mkDerivation, - base, - hsx, - mtl, - }: - mkDerivation { - pname = "hsx-xhtml"; - version = "0.4.4"; - sha256 = "1051fh4yjnsax60v4rfh5r87n660ygq033gmg710nm3gw57ihkl2"; - libraryHaskellDepends = [ - base - hsx - mtl - ]; - description = "XHTML utilities to use together with HSX"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; + broken = true; } ) { }; @@ -357366,20 +205866,6 @@ self: { } ) { }; - "hsyscall" = callPackage ( - { mkDerivation, base }: - mkDerivation { - pname = "hsyscall"; - version = "0.4"; - sha256 = "0ysi317vwgksaq78k31sb8s34rjjhl4w8ncvycfsmmdnv7cdg2ld"; - libraryHaskellDepends = [ base ]; - description = "FFI to syscalls"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "hsyslog" = callPackage ( { mkDerivation, base }: mkDerivation { @@ -357397,112 +205883,6 @@ self: { } ) { }; - "hsyslog-tcp" = callPackage ( - { - mkDerivation, - base, - bytestring, - hsyslog, - hsyslog-udp, - network, - text, - time, - }: - mkDerivation { - pname = "hsyslog-tcp"; - version = "0.2.1.0"; - sha256 = "09kr9mcjd41xl5an8ddfrcyx8dc1fgfq70mkw6m96dvcmhryf0gv"; - libraryHaskellDepends = [ - base - bytestring - hsyslog - hsyslog-udp - network - text - time - ]; - description = "syslog over TCP"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "hsyslog-udp" = callPackage ( - { - mkDerivation, - base, - bytestring, - hspec, - hsyslog, - network, - network-bsd, - text, - time, - unix, - }: - mkDerivation { - pname = "hsyslog-udp"; - version = "0.2.5"; - sha256 = "02n2l9fl926di21w01qhqn3f39hnm6nqc7kn0af1f89qncpbxl5d"; - libraryHaskellDepends = [ - base - bytestring - hsyslog - network - network-bsd - text - time - unix - ]; - testHaskellDepends = [ - base - hspec - time - ]; - description = "Log to syslog over a network via UDP"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "hszephyr" = - callPackage - ( - { - mkDerivation, - base, - bytestring, - com_err, - mtl, - time, - zephyr, - }: - mkDerivation { - pname = "hszephyr"; - version = "0.2"; - sha256 = "067lj67bdhhj41g6gfsqjxw8ni8cn09w4f4bs9nghdvymv6wfxci"; - libraryHaskellDepends = [ - base - bytestring - mtl - time - ]; - librarySystemDepends = [ - com_err - zephyr - ]; - description = "Simple libzephyr bindings"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) - { - com_err = null; - zephyr = null; - }; - "htaglib" = callPackage ( { mkDerivation, @@ -357540,36 +205920,6 @@ self: { } ) { inherit (pkgs) taglib; }; - "htags" = callPackage ( - { - mkDerivation, - base, - directory, - filepath, - haskell-src, - mtl, - }: - mkDerivation { - pname = "htags"; - version = "1.0.1"; - sha256 = "064ddzligzqimdhprgpgl1j0gf4xv53anaisx3fc88as104q8zjk"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - directory - filepath - haskell-src - mtl - ]; - description = "A Haskell98 parsing tags program similar to ctags"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "htags"; - broken = true; - } - ) { }; - "htalkat" = callPackage ( { mkDerivation, @@ -357654,44 +206004,6 @@ self: { } ) { inherit (pkgs) ncurses; }; - "htar" = callPackage ( - { - mkDerivation, - base, - bytestring, - bzlib, - directory, - filepath, - old-locale, - tar, - time, - zlib, - }: - mkDerivation { - pname = "htar"; - version = "0.4.0.2"; - sha256 = "15m57vq0hcfk2dqamh2c624icv3smcqjgswy58glcclxz7f8ly3z"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - bytestring - bzlib - directory - filepath - old-locale - tar - time - zlib - ]; - description = "Command-line tar archive utility"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "htar"; - broken = true; - } - ) { }; - "htaut" = callPackage ( { mkDerivation, base }: mkDerivation { @@ -357737,66 +206049,6 @@ self: { } ) { }; - "htestu" = callPackage ( - { - mkDerivation, - base, - gcc, - random, - }: - mkDerivation { - pname = "htestu"; - version = "0.1.1.2"; - sha256 = "0kr583psz166mcyb79kg4161acpl5q6d1kjxvw1s5q02zxd2cz6n"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - random - ]; - libraryToolDepends = [ gcc ]; - executableHaskellDepends = [ base ]; - description = "A library for testing correctness of pseudo random number generators in Haskell"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - mainProgram = "runTestu"; - broken = true; - } - ) { inherit (pkgs) gcc; }; - - "htiled" = callPackage ( - { - mkDerivation, - base, - base64-bytestring, - bytestring, - containers, - filepath, - hxt, - split, - zlib, - }: - mkDerivation { - pname = "htiled"; - version = "0.1.4.0"; - sha256 = "1hdflndjirp9hiz5m5lnl6imbga7hmrlhhrvr49jd4i8agrlz3gp"; - libraryHaskellDepends = [ - base - base64-bytestring - bytestring - containers - filepath - hxt - split - zlib - ]; - description = "Import from the Tiled map editor"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "htime" = callPackage ( { mkDerivation, @@ -357851,27 +206103,6 @@ self: { } ) { }; - "htlset" = callPackage ( - { - mkDerivation, - base, - containers, - }: - mkDerivation { - pname = "htlset"; - version = "0.1.0.1"; - sha256 = "0i7qipq0dbyd9zqjl1n6sxzma066293gpbxwqwd84wiw3vw2gz3w"; - libraryHaskellDepends = [ - base - containers - ]; - description = "Heterogenous Set"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "html" = callPackage ( { mkDerivation, base }: mkDerivation { @@ -358107,28 +206338,6 @@ self: { } ) { }; - "html-kure" = callPackage ( - { - mkDerivation, - base, - hxt, - kure, - }: - mkDerivation { - pname = "html-kure"; - version = "0.2.1"; - sha256 = "1x72f3r6nayv03y0a7x5dyj2lnbli14nmqi5i7i8isqbngsvca0l"; - libraryHaskellDepends = [ - base - hxt - kure - ]; - description = "HTML rewrite engine, using KURE"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "html-minimalist" = callPackage ( { mkDerivation, @@ -358250,83 +206459,6 @@ self: { } ) { }; - "html-rules" = callPackage ( - { - mkDerivation, - base, - lens, - mtl, - tagsoup, - transformers, - }: - mkDerivation { - pname = "html-rules"; - version = "0.1.0.1"; - sha256 = "1k0jqx1mlcar6z8ggrz3fv1nzilkwdxvg3gvsb3pg7nvbkhz5lpw"; - libraryHaskellDepends = [ - base - lens - mtl - tagsoup - transformers - ]; - description = "Perform traversals of HTML structures using sets of rules"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "html-tokenizer" = callPackage ( - { - mkDerivation, - attoparsec, - base, - base-prelude, - html-entities, - QuickCheck, - quickcheck-instances, - rerebase, - semigroups, - tasty, - tasty-hunit, - tasty-quickcheck, - text, - text-builder, - vector, - vector-builder, - }: - mkDerivation { - pname = "html-tokenizer"; - version = "0.6.4"; - sha256 = "1ws1y05qxyz5zx3y7lwj10giiviqzlka9h2bqj4y3wpzjdbrd4rk"; - libraryHaskellDepends = [ - attoparsec - base - base-prelude - html-entities - semigroups - text - text-builder - vector - vector-builder - ]; - testHaskellDepends = [ - attoparsec - QuickCheck - quickcheck-instances - rerebase - tasty - tasty-hunit - tasty-quickcheck - ]; - description = "An \"attoparsec\"-based HTML tokenizer"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "html-truncate" = callPackage ( { mkDerivation, @@ -358413,49 +206545,6 @@ self: { } ) { }; - "html2hamlet" = callPackage ( - { - mkDerivation, - base, - bytestring, - containers, - hamlet, - html-conduit, - http-conduit, - mtl, - optparse-declarative, - regex-tdfa, - text, - wl-pprint-text, - xml-conduit, - }: - mkDerivation { - pname = "html2hamlet"; - version = "0.3.0"; - sha256 = "1n49dz59nlkvb4ax1h9cfq7nqcwlxcrm372x4373ig6xdzbckdmz"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - bytestring - containers - hamlet - html-conduit - http-conduit - mtl - optparse-declarative - regex-tdfa - text - wl-pprint-text - xml-conduit - ]; - description = "HTML to Hamlet converter"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "html2hamlet"; - } - ) { }; - "html5-entity" = callPackage ( { mkDerivation, @@ -358824,96 +206913,6 @@ self: { } ) { }; - "hts" = callPackage ( - { - mkDerivation, - base, - hmt, - xml, - }: - mkDerivation { - pname = "hts"; - version = "0.15"; - sha256 = "0l09skjsds4p9kdwrwrxg8hdd1ja7m2zmggf23dfimzm1jsij6y2"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base - hmt - xml - ]; - description = "Haskell Music Typesetting"; - license = "GPL"; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "htsn" = callPackage ( - { - mkDerivation, - base, - cmdargs, - configurator, - directory, - filepath, - hdaemonize, - hslogger, - htsn-common, - hxt, - MissingH, - network, - process, - tasty, - tasty-hunit, - unix, - }: - mkDerivation { - pname = "htsn"; - version = "0.1.1"; - sha256 = "123h3x22652xfnc1szvclnhfnr5wb5ndx8ahyvramvgjr1mmxpp5"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - cmdargs - configurator - directory - filepath - hdaemonize - hslogger - htsn-common - hxt - MissingH - network - tasty - tasty-hunit - unix - ]; - testHaskellDepends = [ - base - cmdargs - configurator - directory - filepath - hdaemonize - hslogger - htsn-common - hxt - MissingH - network - process - tasty - tasty-hunit - unix - ]; - description = "Parse XML files from The Sports Network feed"; - license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - mainProgram = "htsn"; - broken = true; - } - ) { }; - "htsn-common" = callPackage ( { mkDerivation, @@ -358937,118 +206936,6 @@ self: { } ) { }; - "htsn-import" = callPackage ( - { - mkDerivation, - base, - cmdargs, - configurator, - containers, - directory, - doctest, - filepath, - fixed-vector-hetero, - groundhog, - groundhog-postgresql, - groundhog-sqlite, - groundhog-th, - hslogger, - htsn-common, - hxt, - MissingH, - old-locale, - process, - split, - tasty, - tasty-hunit, - time, - transformers, - tuple, - }: - mkDerivation { - pname = "htsn-import"; - version = "0.2.4"; - sha256 = "1mm098a748dmwzzak0ciam7dq80l3iv4hvk8c1crr03dbybr8rq3"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - cmdargs - configurator - containers - directory - filepath - fixed-vector-hetero - groundhog - groundhog-postgresql - groundhog-sqlite - groundhog-th - hslogger - htsn-common - hxt - MissingH - old-locale - split - tasty - tasty-hunit - time - transformers - tuple - ]; - testHaskellDepends = [ - base - cmdargs - configurator - containers - directory - doctest - filepath - fixed-vector-hetero - groundhog - groundhog-postgresql - groundhog-sqlite - groundhog-th - hslogger - htsn-common - hxt - MissingH - old-locale - process - split - tasty - tasty-hunit - time - transformers - tuple - ]; - description = "Import XML files from The Sports Network into an RDBMS"; - license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - mainProgram = "htsn-import"; - } - ) { }; - - "htssets" = callPackage ( - { - mkDerivation, - base, - containers, - }: - mkDerivation { - pname = "htssets"; - version = "0.2.0.0"; - sha256 = "15wbafj54yfipp3pfqk0yd5qlzm76457mngv1fs899sp31y2m2cv"; - libraryHaskellDepends = [ - base - containers - ]; - description = "Heterogenous Sets"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "http-accept" = callPackage ( { mkDerivation, @@ -359197,31 +207084,6 @@ self: { } ) { }; - "http-attoparsec" = callPackage ( - { - mkDerivation, - attoparsec, - base, - bytestring, - http-types, - }: - mkDerivation { - pname = "http-attoparsec"; - version = "0.1.1"; - sha256 = "12l892fix11mrvm10awwvv31y59q5rb6gb0sqjp6l4p4ym9ngqa3"; - libraryHaskellDepends = [ - attoparsec - base - bytestring - http-types - ]; - description = "Attoparsec parsers for http-types"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "http-barf" = callPackage ( { mkDerivation, @@ -359344,48 +207206,6 @@ self: { } ) { }; - "http-client-auth" = callPackage ( - { - mkDerivation, - base, - base64-string, - blaze-builder, - bytestring, - case-insensitive, - conduit, - crypto-conduit, - http-client, - http-conduit, - pureMD5, - resourcet, - transformers, - utf8-string, - }: - mkDerivation { - pname = "http-client-auth"; - version = "0.1.0.1"; - sha256 = "07scawz138qffcgw5lyxbxmwdm0czhylqy1rzm0ff59n8amr46j4"; - libraryHaskellDepends = [ - base - base64-string - blaze-builder - bytestring - case-insensitive - conduit - crypto-conduit - http-client - http-conduit - pureMD5 - resourcet - transformers - utf8-string - ]; - description = "HTTP authorization (both basic and digest) done right"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "http-client-brread-timeout" = callPackage ( { mkDerivation, @@ -359472,35 +207292,6 @@ self: { } ) { }; - "http-client-lens" = callPackage ( - { - mkDerivation, - base, - bytestring, - http-client, - http-types, - lens, - network, - }: - mkDerivation { - pname = "http-client-lens"; - version = "0.1.0"; - sha256 = "1n5q3wprhp8kwwq2n1v06l1a9k9p3z96rxv3kr6bbwga9lsb3jip"; - libraryHaskellDepends = [ - base - bytestring - http-client - http-types - lens - network - ]; - description = "Optics for http-client"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "http-client-multipart" = callPackage ( { mkDerivation, @@ -359610,39 +207401,6 @@ self: { } ) { }; - "http-client-request-modifiers" = callPackage ( - { - mkDerivation, - base, - bytestring, - exceptions, - http-client, - http-media, - http-types, - network, - network-uri, - }: - mkDerivation { - pname = "http-client-request-modifiers"; - version = "0.1"; - sha256 = "1bd6r24gh0nxfj040q3x39nqnpkdqkri1wdlg3jf2h61cb5gli5r"; - libraryHaskellDepends = [ - base - bytestring - exceptions - http-client - http-media - http-types - network - network-uri - ]; - description = "Convenient monadic HTTP request modifiers"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "http-client-restricted" = callPackage ( { mkDerivation, @@ -359727,66 +207485,6 @@ self: { } ) { }; - "http-client-session" = callPackage ( - { - mkDerivation, - base-prelude, - bytestring, - either, - http-client, - mtl-prelude, - }: - mkDerivation { - pname = "http-client-session"; - version = "0.1.2"; - sha256 = "0rcy7jnhciqzsqhn3jq4g0bnzm66jxh5x0xfgljgcralz99g9d4w"; - libraryHaskellDepends = [ - base-prelude - bytestring - either - http-client - mtl-prelude - ]; - description = "A simple abstraction over the \"http-client\" connection manager"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "http-client-streams" = callPackage ( - { - mkDerivation, - base, - bytestring, - HsOpenSSL, - http-client, - http-client-openssl, - io-streams, - mtl, - transformers, - }: - mkDerivation { - pname = "http-client-streams"; - version = "0.3.1.0"; - sha256 = "1q9w0l89a599l4955kb3156ysmlg7il9pz0x7kfl3bxly4gadf8z"; - libraryHaskellDepends = [ - base - bytestring - HsOpenSSL - http-client - http-client-openssl - io-streams - mtl - transformers - ]; - description = "http-client for io-streams supporting openssl"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "http-client-tls" = callPackage ( { mkDerivation, @@ -360022,91 +207720,6 @@ self: { } ) { }; - "http-conduit-browser" = callPackage ( - { - mkDerivation, - base, - base64-bytestring, - blaze-builder, - bytestring, - case-insensitive, - conduit, - containers, - cookie, - data-default, - exceptions, - hspec, - http-client, - http-conduit, - http-types, - HUnit, - lifted-base, - monad-control, - network, - network-uri, - resourcet, - text, - time, - transformers, - transformers-base, - wai, - warp, - }: - mkDerivation { - pname = "http-conduit-browser"; - version = "2.0.0.1"; - sha256 = "0h8kqjpw859q8kafplbxz5hn7zva71ym25z7vf5vz0pwiw2587wv"; - libraryHaskellDepends = [ - base - bytestring - conduit - containers - cookie - data-default - exceptions - http-client - http-conduit - http-types - lifted-base - monad-control - network-uri - resourcet - time - transformers - transformers-base - ]; - testHaskellDepends = [ - base - base64-bytestring - blaze-builder - bytestring - case-insensitive - conduit - containers - cookie - data-default - hspec - http-client - http-conduit - http-types - HUnit - lifted-base - monad-control - network - resourcet - text - time - transformers - wai - warp - ]; - description = "Browser interface to the http-conduit package"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "http-conduit-downloader" = callPackage ( { mkDerivation, @@ -360233,44 +207846,6 @@ self: { } ) { }; - "http-dispatch" = callPackage ( - { - mkDerivation, - aeson, - base, - base64-bytestring, - bytestring, - case-insensitive, - hspec, - http-client, - http-client-tls, - http-types, - }: - mkDerivation { - pname = "http-dispatch"; - version = "0.6.2.0"; - sha256 = "1lvpfvm6i48r9rhwcxdd2wv0ja3g5rap8343h3d2pq2glhmhhf48"; - libraryHaskellDepends = [ - base - base64-bytestring - bytestring - case-insensitive - http-client - http-client-tls - http-types - ]; - testHaskellDepends = [ - aeson - base - hspec - ]; - description = "High level HTTP client for Haskell"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "http-download" = callPackage ( { mkDerivation, @@ -360339,109 +207914,6 @@ self: { } ) { }; - "http-encodings" = callPackage ( - { - mkDerivation, - base, - bytestring, - HTTP, - iconv, - mime, - mtl, - parsec, - text, - utf8-string, - zlib, - }: - mkDerivation { - pname = "http-encodings"; - version = "0.9.3"; - sha256 = "0b29zqa2ybja73jip83qn1xhiinn1k64b6dmc39ccp48ip1xdnvn"; - revision = "3"; - editedCabalFile = "1yg6n1wwnycd8xd0s8qrsgvbqsaa0gaq2bxrxdpyq739sg9qhq2x"; - libraryHaskellDepends = [ - base - bytestring - HTTP - iconv - mime - mtl - parsec - text - utf8-string - zlib - ]; - description = "A library for encoding and decoding bodies of HTTP messages"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "http-enumerator" = callPackage ( - { - mkDerivation, - asn1-data, - attoparsec, - attoparsec-enumerator, - base, - base64-bytestring, - blaze-builder, - blaze-builder-enumerator, - bytestring, - case-insensitive, - certificate, - containers, - cprng-aes, - data-default, - enumerator, - failure, - http-types, - monad-control, - network, - tls, - tls-extra, - transformers, - utf8-string, - zlib-enum, - }: - mkDerivation { - pname = "http-enumerator"; - version = "0.7.3.3"; - sha256 = "10w2ppgb4kjl3h77iq7j9qh3gcl6a0fvbpidi2njd4pfhrq4lgs6"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - asn1-data - attoparsec - attoparsec-enumerator - base - base64-bytestring - blaze-builder - blaze-builder-enumerator - bytestring - case-insensitive - certificate - containers - cprng-aes - data-default - enumerator - failure - http-types - monad-control - network - tls - tls-extra - transformers - utf8-string - zlib-enum - ]; - description = "HTTP client package with enumerator interface and HTTPS support. (deprecated)"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "http-exchange" = callPackage ( { mkDerivation, @@ -360686,99 +208158,6 @@ self: { } ) { }; - "http-kinder" = callPackage ( - { - mkDerivation, - aeson, - base, - bytestring, - case-insensitive, - containers, - http-media, - http-types, - HUnit, - QuickCheck, - singletons, - tasty, - tasty-ant-xml, - tasty-hunit, - tasty-quickcheck, - text, - time, - wai, - wai-extra, - }: - mkDerivation { - pname = "http-kinder"; - version = "0.2.0.0"; - sha256 = "09py55rs20ipxl5v386j5gs3if36z2zi1ah7f418z2m9mn5nwfik"; - libraryHaskellDepends = [ - aeson - base - bytestring - case-insensitive - containers - http-media - http-types - singletons - text - time - ]; - testHaskellDepends = [ - base - HUnit - QuickCheck - tasty - tasty-ant-xml - tasty-hunit - tasty-quickcheck - text - wai - wai-extra - ]; - description = "Generic kinds and types for working with HTTP"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "http-kit" = callPackage ( - { - mkDerivation, - base, - bytestring, - case-insensitive, - hspec, - http-types, - QuickCheck, - quickcheck-instances, - }: - mkDerivation { - pname = "http-kit"; - version = "0.5.1"; - sha256 = "1swnvsbaabk946pys9q9kr0bgdvalnznd59dw981sg7cywqdcz28"; - libraryHaskellDepends = [ - base - bytestring - case-insensitive - http-types - ]; - testHaskellDepends = [ - base - bytestring - hspec - http-types - QuickCheck - quickcheck-instances - ]; - description = "A low-level HTTP library"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "http-link-header" = callPackage ( { mkDerivation, @@ -360841,37 +208220,6 @@ self: { } ) { }; - "http-listen" = callPackage ( - { - mkDerivation, - base, - bytestring, - exceptions, - HTTP, - network, - transformers, - }: - mkDerivation { - pname = "http-listen"; - version = "0.1.0.0"; - sha256 = "1ccm4lzlngcw7hp4rvk2d85zg5725pj01mzavl3zx140i6w0psz0"; - revision = "2"; - editedCabalFile = "1vxjpslwxagi3p44s0ivsg8gr9fycnsgdgzmz1i8likcbhgfk3cn"; - libraryHaskellDepends = [ - base - bytestring - exceptions - HTTP - network - transformers - ]; - description = "Listen to HTTP requests and handle them in arbitrary ways"; - license = lib.licenses.publicDomain; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "http-media" = callPackage ( { mkDerivation, @@ -360991,82 +208339,6 @@ self: { } ) { }; - "http-pony" = callPackage ( - { - mkDerivation, - base, - bytestring, - exceptions, - network, - pipes, - pipes-network, - pipes-safe, - transformers, - }: - mkDerivation { - pname = "http-pony"; - version = "0.1.0.7"; - sha256 = "1zlz9fmnhaxb38axscmpda4iqsv8idv3wq116pr449dvxs5kj721"; - libraryHaskellDepends = [ - base - bytestring - exceptions - network - pipes - pipes-network - pipes-safe - transformers - ]; - description = "A type unsafe http library"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "http-pony-serve-wai" = callPackage ( - { - mkDerivation, - attoparsec, - base, - blaze-builder, - bytestring, - case-insensitive, - http-pony-transformer-http, - http-pony-transformer-startline, - http-types, - pipes, - pipes-bytestring, - pipes-safe, - transformers, - wai, - }: - mkDerivation { - pname = "http-pony-serve-wai"; - version = "0.1.0.4"; - sha256 = "01fwxn8sybklm7vl1hyirgnxiihqlqx6g7dvwmh4xpclrshskqy1"; - libraryHaskellDepends = [ - attoparsec - base - blaze-builder - bytestring - case-insensitive - http-pony-transformer-http - http-pony-transformer-startline - http-types - pipes - pipes-bytestring - pipes-safe - transformers - wai - ]; - description = "Serve a WAI application with http-pony"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "http-pony-transformer-case-insensitive" = callPackage ( { mkDerivation, @@ -361268,83 +208540,6 @@ self: { } ) { }; - "http-querystring" = callPackage ( - { - mkDerivation, - base, - bytestring, - containers, - doctest, - hspec, - http-types, - QuickCheck, - }: - mkDerivation { - pname = "http-querystring"; - version = "1.0"; - sha256 = "0n21x8w9pggyp5lbgww70g7860k6n35csq669s9gvrmv1n22k7m6"; - libraryHaskellDepends = [ - base - bytestring - containers - http-types - ]; - testHaskellDepends = [ - base - bytestring - containers - doctest - hspec - http-types - QuickCheck - ]; - description = "The HTTP query builder"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "http-response-decoder" = callPackage ( - { - mkDerivation, - base, - base-prelude, - bytestring, - bytestring-tree-builder, - case-insensitive, - http-client, - http-types, - matcher, - profunctors, - text, - transformers, - unordered-containers, - }: - mkDerivation { - pname = "http-response-decoder"; - version = "0.2.3"; - sha256 = "0cczj0m70rhmbjvghnbjahjlc0qqfch5yw9migpi3f1k7z20l3sf"; - libraryHaskellDepends = [ - base - base-prelude - bytestring - bytestring-tree-builder - case-insensitive - http-client - http-types - matcher - profunctors - text - transformers - unordered-containers - ]; - description = "Declarative DSL for parsing an HTTP response"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "http-reverse-proxy" = callPackage ( { mkDerivation, @@ -361498,64 +208693,6 @@ self: { } ) { }; - "http-server" = callPackage ( - { - mkDerivation, - base, - HTTP, - mime, - network, - network-uri, - text, - unix, - url, - utf8-string, - }: - mkDerivation { - pname = "http-server"; - version = "1.0.6"; - sha256 = "1da385swv7x92d8cpdz28bdp38a8h058svbbpnkqpvrs0m0lgm2w"; - libraryHaskellDepends = [ - base - HTTP - mime - network - network-uri - text - unix - url - utf8-string - ]; - description = "A library for writing Haskell web servers"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "http-shed" = callPackage ( - { - mkDerivation, - base, - network, - }: - mkDerivation { - pname = "http-shed"; - version = "0.1"; - sha256 = "0asb499rkxr3jzyv5abiqcjx7jdsxkqndcaiqrlx7sfb6f3rccdv"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - network - ]; - description = "A simple websever with an interact style API"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "http-slim" = callPackage ( { mkDerivation, @@ -361690,51 +208827,6 @@ self: { } ) { }; - "http-test" = callPackage ( - { - mkDerivation, - aeson, - base, - bytestring, - http-client, - lens, - lens-aeson, - mtl, - tasty, - tasty-hunit, - text, - time, - wreq, - }: - mkDerivation { - pname = "http-test"; - version = "0.2.5"; - sha256 = "18xkzpk8l7581jhnfmc25vhxsjzp9j67xvjvdsng6zbana34s986"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson - base - bytestring - http-client - lens - lens-aeson - mtl - tasty - tasty-hunit - text - time - wreq - ]; - executableHaskellDepends = [ base ]; - description = "Test framework for HTTP APIs"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "test-http-test-bayeshive"; - broken = true; - } - ) { }; - "http-trace" = callPackage ( { mkDerivation, @@ -361808,31 +208900,6 @@ self: { } ) { }; - "http-wget" = callPackage ( - { - mkDerivation, - base, - failure, - process, - transformers, - }: - mkDerivation { - pname = "http-wget"; - version = "0.6.2.3"; - sha256 = "1sbg4gpx8ikaxb15wflm7fnjnkr32fj07bva62z54dsm630s37fx"; - libraryHaskellDepends = [ - base - failure - process - transformers - ]; - description = "Provide a simple HTTP client interface by wrapping the wget command line tool. (deprecated)"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "http2" = callPackage ( { mkDerivation, @@ -361977,91 +209044,6 @@ self: { } ) { }; - "http2-client-exe" = callPackage ( - { - mkDerivation, - async, - base, - bytestring, - data-default-class, - http2, - http2-client, - lifted-async, - lifted-base, - optparse-applicative, - time, - tls, - }: - mkDerivation { - pname = "http2-client-exe"; - version = "0.2.0.0"; - sha256 = "15yvg3nmsajc7q63c2qsmmckw3v4h37364zdxqi3dk9r0xkpssjy"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - async - base - bytestring - data-default-class - http2 - http2-client - lifted-async - lifted-base - optparse-applicative - time - tls - ]; - description = "A command-line http2 client"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "http2-client-exe"; - broken = true; - } - ) { }; - - "http2-client-grpc" = callPackage ( - { - mkDerivation, - async, - base, - binary, - bytestring, - case-insensitive, - data-default-class, - http2, - http2-client, - http2-grpc-types, - lifted-async, - lifted-base, - text, - tls, - }: - mkDerivation { - pname = "http2-client-grpc"; - version = "0.8.0.0"; - sha256 = "1dprkdcylyvmvnhn94wzkxzgm6rx3bs4iv82xyg9y317d348pn12"; - libraryHaskellDepends = [ - async - base - binary - bytestring - case-insensitive - data-default-class - http2 - http2-client - http2-grpc-types - lifted-async - lifted-base - text - tls - ]; - testHaskellDepends = [ base ]; - description = "Implement gRPC-over-HTTP2 clients"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "http2-grpc-proto-lens" = callPackage ( { mkDerivation, @@ -362089,6 +209071,7 @@ self: { description = "Encoders based on `proto-lens` for gRPC over HTTP2"; license = lib.licenses.bsd3; hydraPlatforms = lib.platforms.none; + broken = true; } ) { }; @@ -362121,32 +209104,6 @@ self: { description = "Encoders based on `proto3-wire` for gRPC over HTTP2"; license = lib.licenses.bsd3; hydraPlatforms = lib.platforms.none; - } - ) { }; - - "http2-grpc-types" = callPackage ( - { - mkDerivation, - base, - binary, - bytestring, - case-insensitive, - zlib, - }: - mkDerivation { - pname = "http2-grpc-types"; - version = "0.5.0.0"; - sha256 = "0p479rj60lpd9vc4hb0jybjb0f8gw42dpfc7h2nxapcihafr4knb"; - libraryHaskellDepends = [ - base - binary - bytestring - case-insensitive - zlib - ]; - description = "Types for gRPC over HTTP2 common for client and servers"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; broken = true; } ) { }; @@ -362311,138 +209268,6 @@ self: { } ) { }; - "https-everywhere-rules" = callPackage ( - { - mkDerivation, - attoparsec, - base, - errors, - functor-infix, - hspec, - http-client, - https-everywhere-rules-raw, - lens, - network, - pipes, - string-conversions, - taggy-lens, - text, - text-icu, - }: - mkDerivation { - pname = "https-everywhere-rules"; - version = "0.1.0"; - sha256 = "170ynbjv8dz221rs26i4d0kwkv3h4ljmx5azslc9jj9lzgb42knp"; - libraryHaskellDepends = [ - attoparsec - base - errors - functor-infix - http-client - https-everywhere-rules-raw - lens - network - pipes - string-conversions - taggy-lens - text - text-icu - ]; - testHaskellDepends = [ - attoparsec - base - errors - functor-infix - hspec - http-client - https-everywhere-rules-raw - lens - network - pipes - string-conversions - taggy-lens - text - text-icu - ]; - description = "High-level access to HTTPS Everywhere rulesets"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "https-everywhere-rules-raw" = callPackage ( - { - mkDerivation, - base, - directory, - filepath, - functor-infix, - text, - }: - mkDerivation { - pname = "https-everywhere-rules-raw"; - version = "4.0"; - sha256 = "0zm3znn42nzh9dlpjjn38nsz8rsb0gzl5rv6ngii1vfq534sddy6"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base - directory - filepath - functor-infix - text - ]; - description = "Low-level (i.e. XML) access to HTTPS Everywhere rulesets."; - license = lib.licenses.gpl2Only; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "httpspec" = callPackage ( - { - mkDerivation, - base, - bidispec, - bytestring, - cgi, - containers, - encoding, - filepath, - HTTP, - hxt, - hxthelper, - MissingH, - mtl, - network, - pretty, - safe, - }: - mkDerivation { - pname = "httpspec"; - version = "0.3.0.1"; - sha256 = "1vghkrs72cja9x2lqshh6nhsdp8f68s3wh7zljn86011h4widd5v"; - libraryHaskellDepends = [ - base - bidispec - bytestring - cgi - containers - encoding - filepath - HTTP - hxt - hxthelper - MissingH - mtl - network - pretty - safe - ]; - description = "Specification of HTTP request/response generators and parsers"; - license = "LGPL"; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "httpstan" = callPackage ( { mkDerivation, @@ -362502,178 +209327,6 @@ self: { } ) { }; - "htune" = callPackage ( - { - mkDerivation, - alsa-pcm, - base, - carray, - fft, - gloss, - }: - mkDerivation { - pname = "htune"; - version = "0.2"; - sha256 = "1il1d8b7xyv59f7xim337zyh88s1qchsrdhrgmv322hqf73n6rh2"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - alsa-pcm - base - carray - fft - gloss - ]; - description = "harmonic analyser and tuner for musical instruments"; - license = lib.licenses.bsd3; - platforms = lib.platforms.linux; - hydraPlatforms = lib.platforms.none; - mainProgram = "htune"; - broken = true; - } - ) { }; - - "htvm" = callPackage ( - { - mkDerivation, - array, - base, - bytestring, - c2hs, - containers, - deriving-compat, - directory, - Earley, - filepath, - mtl, - pretty-show, - process, - QuickCheck, - recursion-schemes, - tasty, - tasty-hunit, - tasty-quickcheck, - temporary, - text, - tvm_runtime, - unordered-containers, - }: - mkDerivation { - pname = "htvm"; - version = "0.1.2"; - sha256 = "0ggb6g6cdx6qzvda4l2z9danq5pkwncf3p2cyb68bwghs988fgxs"; - libraryHaskellDepends = [ - array - base - bytestring - containers - deriving-compat - directory - Earley - filepath - mtl - pretty-show - process - recursion-schemes - temporary - text - unordered-containers - ]; - librarySystemDepends = [ tvm_runtime ]; - libraryToolDepends = [ c2hs ]; - testHaskellDepends = [ - base - bytestring - containers - directory - QuickCheck - recursion-schemes - tasty - tasty-hunit - tasty-quickcheck - temporary - text - ]; - testSystemDepends = [ tvm_runtime ]; - description = "Bindings for TVM machine learning framework"; - license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { tvm_runtime = null; }; - - "htzaar" = callPackage ( - { - mkDerivation, - base, - OpenGL, - random, - SDL, - }: - mkDerivation { - pname = "htzaar"; - version = "0.0.2"; - sha256 = "12g41q821yh43nslb96jpqyb58k1lz6g0a6vmqw202m0hv94npdb"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - OpenGL - random - SDL - ]; - description = "A two player abstract strategy game"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "htzaar"; - broken = true; - } - ) { }; - - "hub" = callPackage ( - { - mkDerivation, - array, - base, - bytestring, - containers, - directory, - fgl, - filepath, - hexpat, - process, - regex-compat, - unix, - utf8-string, - }: - mkDerivation { - pname = "hub"; - version = "1.9.0.1"; - sha256 = "10hcaddk1mqzyl1fmzsvzqq141lg9a43295158ckmkbnx8i1rxv1"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - array - base - bytestring - containers - directory - fgl - filepath - hexpat - process - regex-compat - unix - utf8-string - ]; - description = "For multiplexing GHC installations and providing development sandboxes"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "hub"; - broken = true; - } - ) { }; - "hubigraph" = callPackage ( { mkDerivation, @@ -362698,108 +209351,6 @@ self: { } ) { }; - "hubris" = callPackage ( - { - mkDerivation, - array, - base, - bytestring, - Cabal, - containers, - ghc, - ghc-paths, - haskell98, - hint, - mtl, - old-time, - process, - ruby, - }: - mkDerivation { - pname = "hubris"; - version = "0.0.3"; - sha256 = "135q3nzchncbkx4bpx7p1glwnc9aw5j77f3xnr0d6llfba1bw79l"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - array - base - bytestring - Cabal - containers - ghc - ghc-paths - haskell98 - hint - mtl - old-time - ]; - librarySystemDepends = [ ruby ]; - executableHaskellDepends = [ - array - base - bytestring - Cabal - containers - ghc - ghc-paths - haskell98 - hint - mtl - old-time - process - ]; - executableSystemDepends = [ ruby ]; - description = "Support library for Hubris, the Ruby <=> Haskell bridge"; - license = "unknown"; - hydraPlatforms = lib.platforms.none; - mainProgram = "Hubrify"; - } - ) { inherit (pkgs) ruby; }; - - "huck" = callPackage ( - { - mkDerivation, - base, - classy-prelude, - containers, - hedgehog, - megaparsec, - scientific, - text, - time, - unordered-containers, - }: - mkDerivation { - pname = "huck"; - version = "0.0.1"; - sha256 = "0kwv459n32zj4vpas055cswp3xcqj959y6syxmv7h3yhz74nqw4f"; - libraryHaskellDepends = [ - base - classy-prelude - containers - megaparsec - scientific - text - time - unordered-containers - ]; - testHaskellDepends = [ - base - classy-prelude - hedgehog - megaparsec - text - time - unordered-containers - ]; - description = "huck"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "huckleberry" = callPackage ( { mkDerivation, base }: mkDerivation { @@ -362812,104 +209363,6 @@ self: { } ) { }; - "huff" = callPackage ( - { - mkDerivation, - alex, - alex-tools, - array, - base, - containers, - hashable, - heaps, - template-haskell, - text, - unordered-containers, - }: - mkDerivation { - pname = "huff"; - version = "0.1.0.1"; - sha256 = "0fya29145b2m2z5wnn6g8fq5cf4la92ai871y95nkm25zd8r0bpz"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - alex-tools - array - base - containers - hashable - heaps - template-haskell - text - unordered-containers - ]; - libraryToolDepends = [ alex ]; - executableHaskellDepends = [ base ]; - description = "A fast-foward-based planner"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "blocksWorld"; - broken = true; - } - ) { }; - - "huffman" = callPackage ( - { - mkDerivation, - base, - containers, - fingertree, - }: - mkDerivation { - pname = "huffman"; - version = "1.0.1"; - sha256 = "191llv4s64jrh8cma43r5z740avd5picja5fr45l4mi2gwmkx4s3"; - libraryHaskellDepends = [ - base - containers - fingertree - ]; - description = "Pure Haskell implementation of the Huffman encoding algorithm"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "hugs2yc" = callPackage ( - { - mkDerivation, - base, - containers, - directory, - filepath, - mtl, - parsec, - uniplate, - ycextra, - yhccore, - }: - mkDerivation { - pname = "hugs2yc"; - version = "0.1.1"; - sha256 = "1bmcdjwh08q84ijx7hdfraz0wqq0wwgf5pj0jlmdq5rbpb9c547a"; - libraryHaskellDepends = [ - base - containers - directory - filepath - mtl - parsec - uniplate - ycextra - yhccore - ]; - description = "Hugs Front-end to Yhc Core"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "huihua" = callPackage ( { mkDerivation, @@ -362960,89 +209413,6 @@ self: { } ) { }; - "hulk" = callPackage ( - { - mkDerivation, - aeson, - base, - bytestring, - case-insensitive, - cmdargs, - ConfigFile, - containers, - Crypto, - directory, - fastirc, - filepath, - ghc-prim, - monad-extras, - mtl, - network, - split, - strict, - text, - time, - unix, - utf8-string, - }: - mkDerivation { - pname = "hulk"; - version = "0.2.0"; - sha256 = "0vq0sb11kiiry67bh5ish1cwj8sf6rgf70p1zrm462zsqgv9wkk2"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson - base - bytestring - case-insensitive - cmdargs - ConfigFile - containers - Crypto - directory - fastirc - filepath - ghc-prim - monad-extras - mtl - network - split - strict - text - time - unix - utf8-string - ]; - executableHaskellDepends = [ - aeson - base - bytestring - case-insensitive - cmdargs - ConfigFile - containers - Crypto - directory - fastirc - filepath - ghc-prim - monad-extras - mtl - network - split - strict - text - time - unix - utf8-string - ]; - description = "IRC server written in Haskell"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "hum" = callPackage ( { mkDerivation, @@ -363149,27 +209519,6 @@ self: { } ) { }; - "human-parse" = callPackage ( - { - mkDerivation, - base, - text, - }: - mkDerivation { - pname = "human-parse"; - version = "0.1.0.3"; - sha256 = "0lr2m5gci1k0x7w1i49cb6nhbnnkym4raaagn916ahf79y05jv7d"; - libraryHaskellDepends = [ - base - text - ]; - description = "A lawless typeclass for parsing text entered by humans"; - license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "human-readable-duration" = callPackage ( { mkDerivation, @@ -363199,166 +209548,6 @@ self: { } ) { }; - "human-text" = callPackage ( - { - mkDerivation, - base, - text, - }: - mkDerivation { - pname = "human-text"; - version = "0.1.0.3"; - sha256 = "0v6wrs9mcmiwk9ladjcibw1yqpbbl0y6v9i3ni39v0byby0a2zpa"; - libraryHaskellDepends = [ - base - text - ]; - description = "A lawless typeclass for converting values to human-friendly text"; - license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "humble-prelude" = callPackage ( - { - mkDerivation, - base, - bytestring, - deepseq, - ghc, - text, - }: - mkDerivation { - pname = "humble-prelude"; - version = "0.2"; - sha256 = "0pzfhp65afkdc33pjbxzcf68c02w6nq8sxqspfwbn78dghg9cbrn"; - libraryHaskellDepends = [ - base - bytestring - deepseq - ghc - text - ]; - description = "Redefinition-free prelude alternative"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "hums" = callPackage ( - { - mkDerivation, - base, - blaze-builder, - bytestring, - case-insensitive, - ConfigFile, - containers, - directory, - filepath, - HaXml, - http-types, - hxt, - MissingH, - mtl, - network, - system-fileio, - system-filepath, - system-uuid, - text, - transformers, - unix, - unordered-containers, - wai, - warp, - }: - mkDerivation { - pname = "hums"; - version = "0.7.0"; - sha256 = "1wb9bn83lrn6cpp0gkpc7v40m9wlx8i8zqijm4dmd23zzmrlrxhr"; - isLibrary = false; - isExecutable = true; - enableSeparateDataOutput = true; - executableHaskellDepends = [ - base - blaze-builder - bytestring - case-insensitive - ConfigFile - containers - directory - filepath - HaXml - http-types - hxt - MissingH - mtl - network - system-fileio - system-filepath - system-uuid - text - transformers - unix - unordered-containers - wai - warp - ]; - description = "Haskell UPnP Media Server"; - license = "GPL"; - hydraPlatforms = lib.platforms.none; - mainProgram = "hums"; - broken = true; - } - ) { }; - - "hunch" = callPackage ( - { - mkDerivation, - base, - containers, - directory, - filepath, - optparse-applicative, - parsec, - QuickCheck, - split, - }: - mkDerivation { - pname = "hunch"; - version = "0.2.0"; - sha256 = "0cb34gypsmala0s2jjwvj0215wgj871d2rdb6nbyv3xgp6vi9qjj"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - containers - directory - filepath - optparse-applicative - parsec - split - ]; - testHaskellDepends = [ - base - containers - directory - filepath - optparse-applicative - parsec - QuickCheck - split - ]; - description = "CSS-like syntax for file system manipulation"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - mainProgram = "hunch"; - broken = true; - } - ) { }; - "hunit-dejafu" = callPackage ( { mkDerivation, @@ -363382,43 +209571,6 @@ self: { } ) { }; - "hunit-gui" = callPackage ( - { - mkDerivation, - base, - cairo, - gtk, - haskell98, - HUnit, - }: - mkDerivation { - pname = "hunit-gui"; - version = "0.1.4"; - sha256 = "0wzy2gjxpqr0j2cfnl88ixccm8dv3z9cql1zpzr4ph6g37dc9w60"; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base - cairo - gtk - haskell98 - HUnit - ]; - executableHaskellDepends = [ - base - cairo - gtk - haskell98 - HUnit - ]; - description = "A GUI testrunner for HUnit"; - license = lib.licenses.publicDomain; - hydraPlatforms = lib.platforms.none; - mainProgram = "tests"; - } - ) { }; - "hunit-parsec" = callPackage ( { mkDerivation, @@ -363440,73 +209592,6 @@ self: { } ) { }; - "hunit-rematch" = callPackage ( - { - mkDerivation, - base, - hspec, - HUnit, - rematch, - }: - mkDerivation { - pname = "hunit-rematch"; - version = "0.1.0.1"; - sha256 = "1xj5f6l8nfanbf0xdwl2j2na45w5h0spi9a8pxqgpxx2rak145gs"; - libraryHaskellDepends = [ - base - HUnit - rematch - ]; - testHaskellDepends = [ - base - hspec - HUnit - rematch - ]; - description = "HUnit support for rematch"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "hunp" = callPackage ( - { - mkDerivation, - base, - bytestring, - directory, - filepath, - monads-fd, - parsec, - pcre-light, - process, - split, - }: - mkDerivation { - pname = "hunp"; - version = "0.1"; - sha256 = "0k07dbqrlnhg3a4yk25gc665z43hcl57kblr20mzryw0cf9zdsci"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - bytestring - directory - filepath - monads-fd - parsec - pcre-light - process - split - ]; - description = "Unpacker tool with DWIM"; - license = "GPL"; - hydraPlatforms = lib.platforms.none; - mainProgram = "hunp"; - } - ) { }; - "hunspell-hs" = callPackage ( { mkDerivation, @@ -363544,165 +209629,6 @@ self: { } ) { inherit (pkgs) hunspell; }; - "hunt-searchengine" = callPackage ( - { - mkDerivation, - aeson, - aeson-pretty, - base, - binary, - bytestring, - containers, - data-default, - data-r-tree, - data-stringmap, - deepseq, - directory, - dlist, - filepath, - hslogger, - HUnit, - hxt-regex-xmlschema, - monad-parallel, - mtl, - murmur-hash, - old-locale, - parsec, - QuickCheck, - random, - test-framework, - test-framework-hunit, - test-framework-quickcheck2, - text, - time, - transformers, - unordered-containers, - vector, - }: - mkDerivation { - pname = "hunt-searchengine"; - version = "0.3.0.1"; - sha256 = "1y8pq158jwdl3zq5f0xdgszihp8z181lhwd92d66ckw9nh0sllw6"; - revision = "1"; - editedCabalFile = "1srw68r0ccar89vx72ndqxd3009pflx7iyy3cnlp4v50v0imsn4x"; - libraryHaskellDepends = [ - aeson - aeson-pretty - base - binary - bytestring - containers - data-default - data-r-tree - data-stringmap - deepseq - dlist - filepath - hslogger - hxt-regex-xmlschema - monad-parallel - mtl - murmur-hash - parsec - text - time - transformers - unordered-containers - vector - ]; - testHaskellDepends = [ - aeson - base - binary - containers - data-default - data-r-tree - directory - HUnit - monad-parallel - mtl - old-locale - QuickCheck - random - test-framework - test-framework-hunit - test-framework-quickcheck2 - text - time - ]; - description = "A search and indexing engine"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "hunt-server" = callPackage ( - { - mkDerivation, - aeson, - aeson-pretty, - base, - binary, - blaze-html, - blaze-markup, - bytestring, - cmdargs, - containers, - data-default, - deepseq, - ekg-core, - hamlet, - hslogger, - http-types, - hunt-searchengine, - mtl, - scotty, - shakespeare-js, - text, - wai, - wai-extra, - wai-middleware-static, - warp, - }: - mkDerivation { - pname = "hunt-server"; - version = "0.3.0.2"; - sha256 = "19bbn97pj01sbqbjkgh82hiwzxfybnnm29wj4irgicab0d72jvg6"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - aeson - aeson-pretty - base - binary - blaze-html - blaze-markup - bytestring - cmdargs - containers - data-default - deepseq - ekg-core - hamlet - hslogger - http-types - hunt-searchengine - mtl - scotty - shakespeare-js - text - wai - wai-extra - wai-middleware-static - warp - ]; - description = "A search and indexing engine server"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - mainProgram = "hunt-server"; - } - ) { }; - "hunt-server-cli" = callPackage ( { mkDerivation, @@ -363860,35 +209786,6 @@ self: { } ) { }; - "hurdle" = callPackage ( - { - mkDerivation, - array, - base, - bytestring, - containers, - kangaroo, - }: - mkDerivation { - pname = "hurdle"; - version = "0.4.0"; - sha256 = "13hg6v7vk72yiy0qhwm1f3ksm85vf56a3g5mm62kpbb0lcxvvqwf"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - array - base - bytestring - containers - kangaroo - ]; - description = "Extract function names from Windows DLLs"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "hurdle"; - } - ) { }; - "hurl" = callPackage ( { mkDerivation, @@ -363955,7 +209852,6 @@ self: { ]; description = "Haskell URL resolver"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; } ) { }; @@ -364007,50 +209903,6 @@ self: { ]; description = "Fetch parsed XML & possibly CSS for a URL based on MIMEtype"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "hurriyet" = callPackage ( - { - mkDerivation, - aeson, - base, - bytestring, - containers, - here, - hspec, - http-client, - http-client-tls, - mtl, - text, - }: - mkDerivation { - pname = "hurriyet"; - version = "0.2.0.0"; - sha256 = "1czdal0dxic0gw5qjp29jcbq8z0syffgrfmdqcg579y37ah1hgqg"; - libraryHaskellDepends = [ - aeson - base - bytestring - http-client - http-client-tls - mtl - text - ]; - testHaskellDepends = [ - aeson - base - bytestring - containers - here - hspec - text - ]; - description = "Haskell bindings for Hurriyet API"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; } ) { }; @@ -364115,168 +209967,6 @@ self: { } ) { }; - "husk-scheme-libs" = callPackage ( - { - mkDerivation, - array, - base, - containers, - husk-scheme, - json, - mtl, - transformers, - }: - mkDerivation { - pname = "husk-scheme-libs"; - version = "0.0.1"; - sha256 = "18c8ww2f7bgxbh33agcrpb36xgjn7zs509ji7q968hnwqnx9vgcj"; - libraryHaskellDepends = [ - array - base - containers - husk-scheme - json - mtl - transformers - ]; - description = "Extra libraries for the husk Scheme platform"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "husky" = callPackage ( - { - mkDerivation, - base, - containers, - mtl, - old-locale, - parsec, - readline, - time, - }: - mkDerivation { - pname = "husky"; - version = "0.4"; - sha256 = "136sskjkb4nwsqdmgyly207zv4kv27bxf633p2wl869wcr6kkdbg"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - containers - mtl - old-locale - parsec - readline - time - ]; - description = "A simple command line calculator"; - license = "GPL"; - hydraPlatforms = lib.platforms.none; - mainProgram = "husky"; - broken = true; - } - ) { }; - - "hutton" = callPackage ( - { - mkDerivation, - aeson, - base, - bytestring, - connection, - flow, - http-client, - http-conduit, - http-types, - network, - rainbow, - regex-compat, - text, - time, - transformers, - websockets, - wuss, - }: - mkDerivation { - pname = "hutton"; - version = "1.0.0"; - sha256 = "12rvlagd0n946x05wnyixd1b16ls9ynagccw2bc77fjqfb0d9shi"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - aeson - base - bytestring - connection - flow - http-client - http-conduit - http-types - network - rainbow - regex-compat - text - time - transformers - websockets - wuss - ]; - description = "A program for the button on Reddit"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - mainProgram = "hutton"; - broken = true; - } - ) { }; - - "huttons-razor" = callPackage ( - { - mkDerivation, - base, - parsec, - parsec-numbers, - }: - mkDerivation { - pname = "huttons-razor"; - version = "0.1.1.0"; - sha256 = "1wwphyg2fm34gxn7s7a4q7p8fyab3c7am4fmw1x50gkrmkwgd72s"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - parsec - parsec-numbers - ]; - description = "Quick implemention of Hutton's Razor"; - license = lib.licenses.bsd2; - hydraPlatforms = lib.platforms.none; - mainProgram = "huttons-razor"; - broken = true; - } - ) { }; - - "huzzy" = callPackage ( - { - mkDerivation, - base, - easyplot, - }: - mkDerivation { - pname = "huzzy"; - version = "0.1.5.5"; - sha256 = "0i8h380nszd7hk7x6l7qx0ri6k12551li2m77gspzakcf47l6ldp"; - libraryHaskellDepends = [ - base - easyplot - ]; - description = "Fuzzy logic library with support for T1, IT2, GT2"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "hvect" = callPackage ( { mkDerivation, @@ -364411,90 +210101,6 @@ self: { } ) { }; - "hw-all" = callPackage ( - { - mkDerivation, - base, - bits-extra, - hw-aeson, - hw-balancedparens, - hw-bits, - hw-conduit, - hw-diagnostics, - hw-dsv, - hw-dump, - hw-eliasfano, - hw-excess, - hw-fingertree, - hw-fingertree-strict, - hw-hedgehog, - hw-hspec-hedgehog, - hw-int, - hw-ip, - hw-json, - hw-json-lens, - hw-json-simd, - hw-json-simple-cursor, - hw-json-standard-cursor, - hw-mquery, - hw-packed-vector, - hw-parser, - hw-prim, - hw-rankselect, - hw-rankselect-base, - hw-simd, - hw-streams, - hw-string-parse, - hw-succinct, - hw-uri, - hw-xml, - }: - mkDerivation { - pname = "hw-all"; - version = "0.0.0.1"; - sha256 = "09yp4aq5jd6jkabk9hqmvq7hjigabwa5s8wfjl6pswgpadvqpsmm"; - libraryHaskellDepends = [ - base - bits-extra - hw-aeson - hw-balancedparens - hw-bits - hw-conduit - hw-diagnostics - hw-dsv - hw-dump - hw-eliasfano - hw-excess - hw-fingertree - hw-fingertree-strict - hw-hedgehog - hw-hspec-hedgehog - hw-int - hw-ip - hw-json - hw-json-lens - hw-json-simd - hw-json-simple-cursor - hw-json-standard-cursor - hw-mquery - hw-packed-vector - hw-parser - hw-prim - hw-rankselect - hw-rankselect-base - hw-simd - hw-streams - hw-string-parse - hw-succinct - hw-uri - hw-xml - ]; - description = "Demo library"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "hw-aws-sqs-conduit" = callPackage ( { mkDerivation, @@ -364687,45 +210293,6 @@ self: { } ) { }; - "hw-ci-assist" = callPackage ( - { - mkDerivation, - base, - hedgehog, - hspec, - hspec-discover, - hw-hedgehog, - hw-hspec-hedgehog, - optparse-applicative, - }: - mkDerivation { - pname = "hw-ci-assist"; - version = "0.1.0.0"; - sha256 = "0r7ng4is9y2d9bh2fmww2b66zc7m7a8k98g9nw7fwbvb5z02q8yd"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base ]; - executableHaskellDepends = [ - base - optparse-applicative - ]; - testHaskellDepends = [ - base - hedgehog - hspec - hw-hedgehog - hw-hspec-hedgehog - ]; - testToolDepends = [ hspec-discover ]; - doHaddock = false; - description = "CI Assistant for Haskell projects"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "hw-ci-assist"; - broken = true; - } - ) { }; - "hw-conduit" = callPackage ( { mkDerivation, @@ -366141,67 +211708,6 @@ self: { } ) { inherit (pkgs) rdkafka; }; - "hw-kafka-conduit" = callPackage ( - { - mkDerivation, - base, - bifunctors, - bytestring, - conduit, - conduit-extra, - containers, - exceptions, - extra, - hspec, - hspec-discover, - hw-kafka-client, - mtl, - QuickCheck, - resourcet, - transformers, - }: - mkDerivation { - pname = "hw-kafka-conduit"; - version = "2.7.0"; - sha256 = "1ld0kmfk0i87rqyk4hxnrchl4asjy6bf6qvp5f1dcrp69r02mqy0"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - bifunctors - bytestring - conduit - conduit-extra - containers - exceptions - hw-kafka-client - mtl - resourcet - transformers - ]; - testHaskellDepends = [ - base - bifunctors - bytestring - conduit - conduit-extra - containers - extra - hspec - hw-kafka-client - mtl - QuickCheck - resourcet - transformers - ]; - testToolDepends = [ hspec-discover ]; - description = "Conduit bindings for hw-kafka-client"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "hw-lazy" = callPackage ( { mkDerivation, @@ -367207,52 +212713,6 @@ self: { } ) { }; - "hw-succinct" = callPackage ( - { - mkDerivation, - attoparsec, - base, - bytestring, - conduit, - containers, - hw-balancedparens, - hw-bits, - hw-prim, - hw-rankselect, - hw-rankselect-base, - mmap, - mono-traversable, - text, - vector, - word8, - }: - mkDerivation { - pname = "hw-succinct"; - version = "0.1.0.1"; - sha256 = "1ns96y77r7pa7pv6p7v24m0w2xw7451skcl9y2z3r8zp3y65fb00"; - libraryHaskellDepends = [ - attoparsec - base - bytestring - conduit - containers - hw-balancedparens - hw-bits - hw-prim - hw-rankselect - hw-rankselect-base - mmap - mono-traversable - text - vector - word8 - ]; - description = "Succint datastructures"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "hw-tar" = callPackage ( { mkDerivation, @@ -367382,7 +212842,6 @@ self: { testToolDepends = [ hspec-discover ]; description = "Supports IO on URIs"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "hw-uri"; } ) { }; @@ -367546,42 +213005,6 @@ self: { } ) { }; - "hwall-auth-iitk" = callPackage ( - { - mkDerivation, - base, - bytestring, - haskeline, - http-conduit, - http-types, - mtl, - regex-compat, - unix, - }: - mkDerivation { - pname = "hwall-auth-iitk"; - version = "0.1.0.1"; - sha256 = "0ibxdyg9r5n3dc8szhb8fvdjsbgpbwdah2aahn0kagi1zxw24fl2"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - bytestring - haskeline - http-conduit - http-types - mtl - regex-compat - unix - ]; - description = "Initial version of firewall Authentication for IITK network"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "firewall-auth"; - broken = true; - } - ) { }; - "hweblib" = callPackage ( { mkDerivation, @@ -367634,61 +213057,6 @@ self: { } ) { }; - "hwhile" = callPackage ( - { - mkDerivation, - alex, - array, - base, - Cabal, - containers, - filepath, - happy, - haskeline, - mtl, - repline, - }: - mkDerivation { - pname = "hwhile"; - version = "0.1.1.6"; - sha256 = "1cbb4djd0dnawbvjxnnsw6k7kz6gv79gkywvvvdbzri0krzb9isk"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - array - base - containers - filepath - haskeline - mtl - repline - ]; - executableHaskellDepends = [ - array - base - containers - filepath - mtl - ]; - executableToolDepends = [ - alex - happy - ]; - testHaskellDepends = [ - array - base - Cabal - containers - mtl - ]; - description = "An implementation of Neil D. Jones' While language"; - license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - mainProgram = "hwhile"; - broken = true; - } - ) { }; - "hwk" = callPackage ( { mkDerivation, @@ -367720,456 +213088,6 @@ self: { } ) { }; - "hworker" = callPackage ( - { - mkDerivation, - aeson, - attoparsec, - base, - bytestring, - hedis, - hspec, - hspec-contrib, - HUnit, - text, - time, - uuid, - }: - mkDerivation { - pname = "hworker"; - version = "0.1.0.1"; - sha256 = "079z4ahnbwibhy15jm3ymfzbfxgwy7f2l1raq06sp47ip16wrjrl"; - revision = "1"; - editedCabalFile = "0w2bpvfr68n2qipvr8gc5096dain3g2536m4n9kqx1fahf12mwy5"; - libraryHaskellDepends = [ - aeson - attoparsec - base - bytestring - hedis - text - time - uuid - ]; - testHaskellDepends = [ - aeson - attoparsec - base - bytestring - hedis - hspec - hspec-contrib - HUnit - text - time - uuid - ]; - description = "A reliable at-least-once job queue built on top of redis"; - license = lib.licenses.isc; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "hworker-ses" = callPackage ( - { - mkDerivation, - aeson, - amazonka, - amazonka-core, - amazonka-ses, - base, - hworker, - lens, - text, - time, - unordered-containers, - }: - mkDerivation { - pname = "hworker-ses"; - version = "0.1.1.1"; - sha256 = "1rvf9fbmdf1xfpwlcxcrbjp0a3h5gmhb91897g6dp343wrq41amv"; - libraryHaskellDepends = [ - aeson - amazonka - amazonka-core - amazonka-ses - base - hworker - lens - text - time - unordered-containers - ]; - description = "Library for sending email with Amazon's SES and hworker"; - license = lib.licenses.isc; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "hwormhole" = callPackage ( - { - mkDerivation, - aeson, - async, - base, - binary, - binary-conduit, - bytestring, - conduit, - conduit-extra, - containers, - cryptonite, - directory, - filepath, - haskeline, - hedgehog, - hspec, - magic-wormhole, - memory, - mtl, - network, - network-info, - optparse-applicative, - pathwalk, - pgp-wordlist, - protolude, - random, - saltine, - spake2, - temporary, - text, - transformers, - unix-compat, - zip, - }: - mkDerivation { - pname = "hwormhole"; - version = "0.2.0.1"; - sha256 = "1y3x13lh1g048a1myk5kkm078b34p4rdfhjcvfc991ys5zc46sir"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson - async - base - binary - bytestring - conduit - conduit-extra - containers - cryptonite - directory - filepath - haskeline - magic-wormhole - memory - mtl - network - network-info - pathwalk - pgp-wordlist - protolude - random - saltine - spake2 - temporary - text - transformers - unix-compat - zip - ]; - executableHaskellDepends = [ - aeson - base - binary - bytestring - optparse-applicative - protolude - text - transformers - ]; - testHaskellDepends = [ - aeson - base - binary - binary-conduit - bytestring - conduit - conduit-extra - containers - hedgehog - hspec - magic-wormhole - protolude - saltine - text - ]; - description = "magic-wormhole client"; - license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - mainProgram = "hwormhole-exe"; - } - ) { }; - - "hws" = callPackage ( - { - mkDerivation, - array, - base, - containers, - directory, - haskell98, - html, - mtl, - network, - old-time, - regex-compat, - text, - unix, - }: - mkDerivation { - pname = "hws"; - version = "1.1.0.1"; - sha256 = "0d0f0bwbfcmbm1jx6m90qxxjad2adz5k0k51i4jh5ylrfa9xfs7r"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - array - base - containers - directory - haskell98 - html - mtl - network - old-time - regex-compat - text - unix - ]; - description = "Simple Haskell Web Server"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "hws"; - } - ) { }; - - "hwsl2" = callPackage ( - { - mkDerivation, - base, - bytestring, - Cabal, - criterion, - cryptohash, - parallel, - quickcheck-properties, - tasty, - tasty-quickcheck, - }: - mkDerivation { - pname = "hwsl2"; - version = "0.4.0.1"; - sha256 = "07kg0m75fi9m236lnisrjdyx7y53hl6pm4v5l9cxvghfankfbgk0"; - libraryHaskellDepends = [ - base - bytestring - ]; - testHaskellDepends = [ - base - bytestring - quickcheck-properties - tasty - tasty-quickcheck - ]; - benchmarkHaskellDepends = [ - base - bytestring - Cabal - criterion - cryptohash - parallel - ]; - description = "Hashing with SL2"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "hwsl2-bytevector" = callPackage ( - { - mkDerivation, - base, - bytestring, - fingertree, - hwsl2, - }: - mkDerivation { - pname = "hwsl2-bytevector"; - version = "0.1.0.0"; - sha256 = "0kfsc85k4vgdbkryrw80rgpjzzbavwqqzqylc95h80vm7xnlg2p9"; - libraryHaskellDepends = [ - base - bytestring - fingertree - hwsl2 - ]; - description = "A hashed byte-vector based on algebraic hashes and finger trees"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "hwsl2-reducers" = callPackage ( - { - mkDerivation, - base, - bytestring, - hwsl2, - reducers, - semigroups, - }: - mkDerivation { - pname = "hwsl2-reducers"; - version = "0.1.0.0"; - sha256 = "1q7phb2v11gfwlvm0f0jrsm7gc7ga9awd9cp0kkxm2k20mggrg7x"; - libraryHaskellDepends = [ - base - bytestring - hwsl2 - reducers - semigroups - ]; - description = "Semigroup and Reducer instances for Data.Hash.SL2"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "hx" = callPackage ( - { mkDerivation, base }: - mkDerivation { - pname = "hx"; - version = "0.4"; - sha256 = "04wkgql6gs9glmp9kj5awis5b15vmwgkyqzi814k9514k3c7c1rb"; - libraryHaskellDepends = [ base ]; - description = "Haskell extras (missing utility functions)"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "hxmppc" = callPackage ( - { - mkDerivation, - base, - fclabels, - network, - network-protocol-xmpp, - text, - transformers, - xml-types, - }: - mkDerivation { - pname = "hxmppc"; - version = "0.2.3"; - sha256 = "1fri1xcs95ynkf471hrkai0k8kvxhx77ra07yripycnlpa9fcwj9"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - fclabels - network - network-protocol-xmpp - text - transformers - xml-types - ]; - description = "Haskell XMPP (Jabber Client) Command Line Interface (CLI)"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "hxmppc"; - broken = true; - } - ) { }; - - "hxournal" = callPackage ( - { - mkDerivation, - base, - bytestring, - cairo, - cmdargs, - configurator, - containers, - Diff, - directory, - double-conversion, - dyre, - fclabels, - filepath, - gtk, - monad-coroutine, - mtl, - poppler, - strict, - template-haskell, - time, - transformers, - TypeCompose, - xournal-builder, - xournal-parser, - xournal-render, - xournal-types, - }: - mkDerivation { - pname = "hxournal"; - version = "0.6.6.1"; - sha256 = "1fk4cgk4ncf5v7k8hankwb49ablfcxj1rcw64ka6pz3jrz4sablq"; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base - bytestring - cairo - cmdargs - configurator - containers - Diff - directory - double-conversion - dyre - fclabels - filepath - gtk - monad-coroutine - mtl - poppler - strict - template-haskell - time - transformers - TypeCompose - xournal-builder - xournal-parser - xournal-render - xournal-types - ]; - executableHaskellDepends = [ - base - cmdargs - ]; - description = "A pen notetaking program written in haskell"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "hxournal"; - } - ) { }; - "hxt" = callPackage ( { mkDerivation, @@ -368211,36 +213129,6 @@ self: { } ) { }; - "hxt-binary" = callPackage ( - { - mkDerivation, - base, - binary, - bytestring, - bzlib, - deepseq, - haskell98, - hxt, - }: - mkDerivation { - pname = "hxt-binary"; - version = "0.0.2"; - sha256 = "1hbby0lcb9kis05zsf5rgyisa1qwryvv8zf91q9fi0j0d7s3rasw"; - libraryHaskellDepends = [ - base - binary - bytestring - bzlib - deepseq - haskell98 - hxt - ]; - description = "Serialisation and deserialisation of HXT XmlTrees"; - license = "unknown"; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "hxt-cache" = callPackage ( { mkDerivation, @@ -368382,44 +213270,6 @@ self: { } ) { }; - "hxt-filter" = callPackage ( - { - mkDerivation, - base, - containers, - directory, - filepath, - haskell98, - HTTP, - HUnit, - hxt, - network, - parsec, - process, - }: - mkDerivation { - pname = "hxt-filter"; - version = "8.4.2"; - sha256 = "0jxiph7c59dc2fy5c2ygii1xlcmh8s5zb8c0hwvjkj0hzfjznra0"; - libraryHaskellDepends = [ - base - containers - directory - filepath - haskell98 - HTTP - HUnit - hxt - network - parsec - process - ]; - description = "A collection of tools for processing XML with Haskell (Filter variant)"; - license = "unknown"; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "hxt-http" = callPackage ( { mkDerivation, @@ -368449,31 +213299,6 @@ self: { } ) { }; - "hxt-pickle-utils" = callPackage ( - { - mkDerivation, - base, - hxt, - mtl, - }: - mkDerivation { - pname = "hxt-pickle-utils"; - version = "0.1.0.3"; - sha256 = "1id9459yphsbxqa0z89dhsmqqcgvk2axv91d05aw3n6r4ygs3nwx"; - revision = "3"; - editedCabalFile = "0d5fg718y7xzw76ip33q0w1liqk70q9074qkd198mjnijxjcrkf3"; - libraryHaskellDepends = [ - base - hxt - mtl - ]; - description = "Utility functions for using HXT picklers"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "hxt-regex-xmlschema" = callPackage ( { mkDerivation, @@ -368646,61 +213471,6 @@ self: { } ) { }; - "hxthelper" = callPackage ( - { - mkDerivation, - base, - bytestring, - encoding, - hxt, - mtl, - }: - mkDerivation { - pname = "hxthelper"; - version = "0.2.2"; - sha256 = "1il21mqmvvfdny5ksnyixj1wqhabvxqhccd6vj4dbzlvvf5yb6k1"; - libraryHaskellDepends = [ - base - bytestring - encoding - hxt - mtl - ]; - description = "Helper functions for HXT"; - license = "LGPL"; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "hxweb" = callPackage ( - { - mkDerivation, - base, - cgi, - fastcgi, - libxml, - mtl, - xslt, - }: - mkDerivation { - pname = "hxweb"; - version = "0.1"; - sha256 = "0faiyflyhmn2y0bs920qgm9xkj9i69lzxhsg4rxffal989gi32z8"; - libraryHaskellDepends = [ - base - cgi - fastcgi - libxml - mtl - xslt - ]; - description = "Minimal webframework using fastcgi, libxml2 and libxslt"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "hyahtzee" = callPackage ( { mkDerivation, @@ -368727,83 +213497,6 @@ self: { } ) { }; - "hyakko" = callPackage ( - { - mkDerivation, - aeson, - base, - blaze-html, - bytestring, - cmdargs, - directory, - filepath, - highlighting-kate, - mtl, - pandoc, - regex-pcre-builtin, - text, - unordered-containers, - }: - mkDerivation { - pname = "hyakko"; - version = "0.6.7"; - sha256 = "1k81whay05mp9jb39gmb64l2xqxa90yrb7svbphj1cnsz0b76qwk"; - isLibrary = false; - isExecutable = true; - enableSeparateDataOutput = true; - executableHaskellDepends = [ - aeson - base - blaze-html - bytestring - cmdargs - directory - filepath - highlighting-kate - mtl - pandoc - regex-pcre-builtin - text - unordered-containers - ]; - description = "Literate-style Documentation Generator"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - mainProgram = "hyakko"; - broken = true; - } - ) { }; - - "hybrid" = callPackage ( - { - mkDerivation, - base, - containers, - haskell98, - mtl, - parsec, - }: - mkDerivation { - pname = "hybrid"; - version = "2.0"; - sha256 = "05v69csnz7g9ikymnrmzjqhdwlrfsb44pbv8mzddgk6my9ddlb9w"; - isLibrary = false; - isExecutable = true; - enableSeparateDataOutput = true; - executableHaskellDepends = [ - base - containers - haskell98 - mtl - parsec - ]; - description = "A implementation of a type-checker for Lambda-H"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "hybrid"; - } - ) { }; - "hybrid-vectors" = callPackage ( { mkDerivation, @@ -368895,427 +213588,6 @@ self: { } ) { }; - "hydra-hs" = callPackage ( - { - mkDerivation, - base, - hmatrix, - sixense_x64, - }: - mkDerivation { - pname = "hydra-hs"; - version = "1.0.0.2"; - sha256 = "18sxqangnl3gbb77dsg036ymsjj6w7zws2v43qnp3cfi0ksjxx8s"; - libraryHaskellDepends = [ - base - hmatrix - ]; - librarySystemDepends = [ sixense_x64 ]; - testHaskellDepends = [ base ]; - description = "Haskell binding to the Sixense SDK for the Razer Hydra"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { sixense_x64 = null; }; - - "hydra-print" = callPackage ( - { - mkDerivation, - async, - base, - bytestring, - containers, - directory, - filepath, - HUnit, - io-streams, - mtl, - ncurses, - process, - QuickCheck, - random, - semigroups, - test-framework, - test-framework-hunit, - test-framework-quickcheck2, - test-framework-th, - text, - time, - transformers, - unix, - }: - mkDerivation { - pname = "hydra-print"; - version = "0.1.0.3"; - sha256 = "16cgp3a475pzy0zasvfv3cvkvgc84g6p960sykk7y4aki0n3769i"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - async - base - bytestring - containers - directory - io-streams - mtl - ncurses - process - random - semigroups - text - time - transformers - unix - ]; - executableHaskellDepends = [ - async - base - bytestring - containers - directory - filepath - io-streams - mtl - ncurses - process - random - semigroups - text - time - transformers - unix - ]; - testHaskellDepends = [ - async - base - bytestring - containers - directory - HUnit - io-streams - mtl - ncurses - process - QuickCheck - random - semigroups - test-framework - test-framework-hunit - test-framework-quickcheck2 - test-framework-th - text - time - transformers - unix - ]; - description = "NCurses interface to view multiple ByteString streams in parallel"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "hydrogen" = callPackage ( - { - mkDerivation, - base, - bytestring, - Cabal, - containers, - mtl, - pretty, - QuickCheck, - text, - }: - mkDerivation { - pname = "hydrogen"; - version = "0.3.0.0"; - sha256 = "0aq4svvwcys06mv172zz4yp624f6mnjg94lycj4r66xhm8m3fv4i"; - libraryHaskellDepends = [ - base - bytestring - containers - mtl - pretty - text - ]; - testHaskellDepends = [ - base - Cabal - containers - mtl - QuickCheck - ]; - description = "An alternate Prelude"; - license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "hydrogen-cli" = callPackage ( - { - mkDerivation, - base, - hydrogen-cli-args, - hydrogen-data, - hydrogen-multimap, - hydrogen-parsing, - hydrogen-prelude, - hydrogen-syntax, - }: - mkDerivation { - pname = "hydrogen-cli"; - version = "0.14"; - sha256 = "03hz4z964zg1b5nzywymrd1m3ss081rq6nnbqwcgbwabx6wd209b"; - isLibrary = false; - isExecutable = true; - enableSeparateDataOutput = true; - executableHaskellDepends = [ - base - hydrogen-cli-args - hydrogen-data - hydrogen-multimap - hydrogen-parsing - hydrogen-prelude - hydrogen-syntax - ]; - description = "Hydrogen Data"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - mainProgram = "h"; - } - ) { }; - - "hydrogen-cli-args" = callPackage ( - { - mkDerivation, - base, - containers, - hydrogen-multimap, - hydrogen-prelude, - }: - mkDerivation { - pname = "hydrogen-cli-args"; - version = "0.17"; - sha256 = "1wapq5lfyvm09sl9n7zhiaxpb8iapirvizq3ak9rl17vy4iz5xl4"; - libraryHaskellDepends = [ - base - containers - hydrogen-multimap - hydrogen-prelude - ]; - description = "Hydrogen Command Line Arguments Parser"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "hydrogen-data" = callPackage ( - { - mkDerivation, - base, - hydrogen-parsing, - hydrogen-prelude, - }: - mkDerivation { - pname = "hydrogen-data"; - version = "0.14"; - sha256 = "0d9457sarii5z1m2p1jzfk1g1ix2bm0s3ghfw7gab1w74i3hlh88"; - libraryHaskellDepends = [ - base - hydrogen-parsing - hydrogen-prelude - ]; - description = "Hydrogen Data"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "hydrogen-multimap" = callPackage ( - { - mkDerivation, - base, - containers, - ghc-prim, - }: - mkDerivation { - pname = "hydrogen-multimap"; - version = "0.3"; - sha256 = "0ik68a85yxdz12sgfpqi7bagkhvm9qgvl2bgplm2anxjsxcqbi93"; - libraryHaskellDepends = [ - base - containers - ghc-prim - ]; - description = "Hydrogen Multimap"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "hydrogen-parsing" = callPackage ( - { - mkDerivation, - base, - containers, - hydrogen-prelude, - parsec, - }: - mkDerivation { - pname = "hydrogen-parsing"; - version = "0.17"; - sha256 = "0m9rliry031lr7bn4xkbjmar288zcrnpsbnjdyxs13v675bh7h29"; - libraryHaskellDepends = [ - base - containers - hydrogen-prelude - parsec - ]; - description = "Hydrogen Parsing Utilities"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "hydrogen-prelude" = callPackage ( - { - mkDerivation, - array, - base, - binary, - bytestring, - cereal, - containers, - directory, - filepath, - hashable, - hydrogen-multimap, - hydrogen-version, - network, - process, - random, - regex-base, - regex-tdfa, - strict, - text, - time, - transformers, - uuid, - }: - mkDerivation { - pname = "hydrogen-prelude"; - version = "0.20"; - sha256 = "18g3r95ssg385zqzny3137ms0ppv7d33xgvc4gvxkijv8cgj1697"; - libraryHaskellDepends = [ - array - base - binary - bytestring - cereal - containers - directory - filepath - hashable - hydrogen-multimap - hydrogen-version - network - process - random - regex-base - regex-tdfa - strict - text - time - transformers - uuid - ]; - description = "Hydrogen Prelude"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "hydrogen-prelude-parsec" = callPackage ( - { - mkDerivation, - base, - hydrogen-prelude, - parsec, - }: - mkDerivation { - pname = "hydrogen-prelude-parsec"; - version = "0.17"; - sha256 = "0hdvvp3kxc66y6bxzcrjqp7wc6s21isvfra0ps53j69jmnzqd2mh"; - libraryHaskellDepends = [ - base - hydrogen-prelude - parsec - ]; - description = "Hydrogen Prelude /w Parsec"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "hydrogen-syntax" = callPackage ( - { - mkDerivation, - base, - containers, - hydrogen-parsing, - hydrogen-prelude, - nicify, - parsec, - uuid, - }: - mkDerivation { - pname = "hydrogen-syntax"; - version = "0.17"; - sha256 = "17j6iq2fh1s3vwkzd5js786abk1zkmj4dfg425d290k4nvdl08dv"; - libraryHaskellDepends = [ - base - containers - hydrogen-parsing - hydrogen-prelude - nicify - parsec - uuid - ]; - description = "Hydrogen Syntax"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "hydrogen-util" = callPackage ( - { - mkDerivation, - base, - containers, - hydrogen-prelude, - parsec, - time, - }: - mkDerivation { - pname = "hydrogen-util"; - version = "0.8"; - sha256 = "14z2nf2af0ydqr2sm4r4cn252qn0hbacdc4z1lhyjnin66djb1a8"; - libraryHaskellDepends = [ - base - containers - hydrogen-prelude - parsec - time - ]; - description = "Hydrogen Tools"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "hydrogen-version" = callPackage ( { mkDerivation, base }: mkDerivation { @@ -369328,95 +213600,6 @@ self: { } ) { }; - "hyena" = callPackage ( - { - mkDerivation, - base, - bytestring, - containers, - directory, - extensible-exceptions, - filepath, - mtl, - network, - network-bytestring, - unix, - }: - mkDerivation { - pname = "hyena"; - version = "0.1.0.1"; - sha256 = "0899lw0vyvcw03ph4w717rxach2ncb69xfn9387j7fl0s01ch0ji"; - libraryHaskellDepends = [ - base - bytestring - containers - directory - extensible-exceptions - filepath - mtl - network - network-bytestring - unix - ]; - description = "Simple web application server"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "hylide" = callPackage ( - { - mkDerivation, - aeson, - base, - bytestring, - filepath, - fsnotify, - hint, - http-types, - hylogen, - process, - text, - vector-space, - wai, - warp, - websockets, - }: - mkDerivation { - pname = "hylide"; - version = "0.1.5.1"; - sha256 = "0ryzhbmwrg173lmzyl8a77qnqp11maxcn72y1x0hn8mabj8js3hn"; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base - hylogen - vector-space - ]; - executableHaskellDepends = [ - aeson - base - bytestring - filepath - fsnotify - hint - http-types - hylogen - process - text - wai - warp - websockets - ]; - description = "WebGL live-coding environment for writing shaders with Hylogen"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - mainProgram = "hylide"; - broken = true; - } - ) { }; - "hylogen" = callPackage ( { mkDerivation, @@ -369438,91 +213621,6 @@ self: { } ) { }; - "hylolib" = callPackage ( - { - mkDerivation, - array, - base, - containers, - mtl, - pretty, - random, - uniplate, - }: - mkDerivation { - pname = "hylolib"; - version = "1.5.4"; - sha256 = "0vznqq8z4f42plidagmg2d099gvfk3pwv4xclar8d0gp6dsbks6v"; - libraryHaskellDepends = [ - array - base - containers - mtl - pretty - random - uniplate - ]; - description = "Tools for hybrid logics related programs"; - license = "GPL"; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "hylotab" = callPackage ( - { - mkDerivation, - base, - hylolib, - mtl, - }: - mkDerivation { - pname = "hylotab"; - version = "1.2.1"; - sha256 = "0xynx72xpb84g19gnsgq00gwj3ycfgk5qgd9j949b6k3fqr3n71w"; - isLibrary = false; - isExecutable = true; - enableSeparateDataOutput = true; - executableHaskellDepends = [ - base - hylolib - mtl - ]; - description = "Tableau based theorem prover for hybrid logics"; - license = "GPL"; - hydraPlatforms = lib.platforms.none; - mainProgram = "hylotab"; - } - ) { }; - - "hyloutils" = callPackage ( - { - mkDerivation, - base, - containers, - hylolib, - mtl, - uniplate, - }: - mkDerivation { - pname = "hyloutils"; - version = "1.0"; - sha256 = "1pn14f3hjcxa5bww0pg2irqmbvfs7f3vfwl8z87jmxfyydgffgnh"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - containers - hylolib - mtl - uniplate - ]; - description = "Very small programs for hybrid logics"; - license = "GPL"; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "hyper" = callPackage ( { mkDerivation, @@ -369705,69 +213803,6 @@ self: { } ) { }; - "hyperdrive" = callPackage ( - { - mkDerivation, - base, - bytestring, - bytestring-lexing, - extensible-exceptions, - mtl, - network, - pipes, - pretty, - }: - mkDerivation { - pname = "hyperdrive"; - version = "0.1"; - sha256 = "0hvgxsrq1aws5c97w1lrk87d74kn8796vmclkdxhajfammj6ccz9"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - bytestring - bytestring-lexing - extensible-exceptions - mtl - network - pipes - pretty - ]; - description = "a fast, trustworthy HTTP(s) server built"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "pong"; - broken = true; - } - ) { }; - - "hyperfunctions" = callPackage ( - { - mkDerivation, - adjunctions, - base, - distributive, - profunctors, - transformers, - }: - mkDerivation { - pname = "hyperfunctions"; - version = "0"; - sha256 = "0q452g2qzlw961zwkdihwi8d8hknxavfgd8vkjdhiazx5anbqzkm"; - libraryHaskellDepends = [ - adjunctions - base - distributive - profunctors - transformers - ]; - description = "Hyperfunctions"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "hypergeomatrix" = callPackage ( { mkDerivation, @@ -369810,84 +213845,6 @@ self: { } ) { }; - "hyperion" = callPackage ( - { - mkDerivation, - aeson, - ansi-wl-pprint, - base, - bytestring, - clock, - containers, - deepseq, - directory, - exceptions, - filepath, - generic-deriving, - hashable, - hspec, - lens, - mtl, - optparse-applicative, - process, - QuickCheck, - random, - random-shuffle, - statistics, - text, - time, - unordered-containers, - vector, - }: - mkDerivation { - pname = "hyperion"; - version = "0.1.0.0"; - sha256 = "06292m9igzqilhw5ybmfqkbncg713644i31wdpn0yl8j9iyqw6im"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson - ansi-wl-pprint - base - bytestring - clock - containers - deepseq - directory - exceptions - filepath - generic-deriving - hashable - lens - mtl - optparse-applicative - random - random-shuffle - statistics - text - time - unordered-containers - vector - ]; - executableHaskellDepends = [ - base - process - ]; - testHaskellDepends = [ - base - hspec - lens - QuickCheck - text - unordered-containers - ]; - description = "Reliable performance measurement with robust data export"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "hyperloglog" = callPackage ( { mkDerivation, @@ -369945,73 +213902,6 @@ self: { } ) { }; - "hyperloglogplus" = callPackage ( - { - mkDerivation, - base, - bits, - containers, - HUnit, - murmur-hash, - semigroups, - tasty, - tasty-hunit, - vector, - }: - mkDerivation { - pname = "hyperloglogplus"; - version = "0.1.0.0"; - sha256 = "1ji130vb1vyy9arwc36m65wbn92l6wbcnl696wdmc95w4p8sb79k"; - libraryHaskellDepends = [ - base - bits - containers - murmur-hash - semigroups - vector - ]; - testHaskellDepends = [ - base - HUnit - semigroups - tasty - tasty-hunit - ]; - description = "Approximate cardinality estimation using constant space"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "hyperpublic" = callPackage ( - { - mkDerivation, - aeson, - attoparsec, - base, - bytestring, - http-enumerator, - http-types, - }: - mkDerivation { - pname = "hyperpublic"; - version = "0.1.1"; - sha256 = "07jz89x0daps5rkmccjprrbkwn5mzdskp2yv8asfnmcyir36lmzd"; - libraryHaskellDepends = [ - aeson - attoparsec - base - bytestring - http-enumerator - http-types - ]; - description = "A thin wrapper for the Hyperpublic API"; - license = lib.licenses.publicDomain; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "hyperscript" = callPackage ( { mkDerivation, @@ -370182,95 +214072,6 @@ self: { } ) { }; - "hypher" = callPackage ( - { - mkDerivation, - aeson, - base, - bytestring, - Cabal, - containers, - data-default, - hashable, - HTTP, - http-conduit, - http-types, - HUnit, - lifted-base, - monad-control, - mtl, - QuickCheck, - resourcet, - scientific, - test-framework, - test-framework-hunit, - test-framework-quickcheck2, - test-framework-th, - text, - transformers, - transformers-base, - unordered-containers, - vector, - }: - mkDerivation { - pname = "hypher"; - version = "0.1.5"; - sha256 = "0q5lpza6l4aqd85i1wxkkrdd3j9kk2k8xd0l6szpgkv87b41qfhk"; - libraryHaskellDepends = [ - aeson - base - bytestring - containers - data-default - hashable - HTTP - http-conduit - http-types - lifted-base - monad-control - mtl - resourcet - scientific - text - transformers - transformers-base - unordered-containers - vector - ]; - testHaskellDepends = [ - aeson - base - bytestring - Cabal - data-default - hashable - HTTP - http-conduit - http-types - HUnit - lifted-base - monad-control - mtl - QuickCheck - resourcet - scientific - test-framework - test-framework-hunit - test-framework-quickcheck2 - test-framework-th - text - transformers - transformers-base - unordered-containers - vector - ]; - description = "A Haskell neo4j client"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "hyraxAbif" = callPackage ( { mkDerivation, @@ -370486,78 +214287,6 @@ self: { } ) { inherit (pkgs) zookeeper_mt; }; - "hzulip" = callPackage ( - { - mkDerivation, - aeson, - async, - base, - bytestring, - conduit, - exceptions, - hspec, - http-client, - http-client-tls, - http-types, - lens, - lens-aeson, - mtl, - raw-strings-qq, - scotty, - stm, - stm-conduit, - text, - transformers, - }: - mkDerivation { - pname = "hzulip"; - version = "1.1.1.3"; - sha256 = "0qc68shmp8s3bwp64vdn5wvffxkvk5zxzzrv07yfp12rcsg15754"; - libraryHaskellDepends = [ - aeson - base - bytestring - conduit - exceptions - http-client - http-client-tls - http-types - lens - lens-aeson - mtl - stm - stm-conduit - text - transformers - ]; - testHaskellDepends = [ - aeson - async - base - bytestring - conduit - exceptions - hspec - http-client - http-client-tls - http-types - lens - lens-aeson - mtl - raw-strings-qq - scotty - stm - stm-conduit - text - transformers - ]; - description = "A haskell wrapper for the Zulip API"; - license = lib.licenses.gpl2Only; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "i" = callPackage ( { mkDerivation, @@ -370604,138 +214333,6 @@ self: { } ) { }; - "i18n" = callPackage ( - { - mkDerivation, - base, - containers, - directory, - filepath, - hspec, - mtl, - parsec, - tasty, - tasty-hspec, - text, - transformers, - }: - mkDerivation { - pname = "i18n"; - version = "0.4.0.0"; - sha256 = "1ylk5zz3d6wp0wqfr69lzn0dwf7acc8sq2nj1j5l5crzi1sz63by"; - revision = "1"; - editedCabalFile = "1sxiifn4m17294inyb4q7isbdd3s77zpqxafghpbfkz5hkrv0xxg"; - libraryHaskellDepends = [ - base - containers - directory - filepath - mtl - parsec - text - transformers - ]; - testHaskellDepends = [ - base - containers - hspec - tasty - tasty-hspec - text - ]; - description = "Internationalization for Haskell"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "i3blocks-hs-contrib" = callPackage ( - { - mkDerivation, - aeson, - attoparsec, - base, - http-client, - http-client-tls, - text, - time, - transformers, - turtle, - }: - mkDerivation { - pname = "i3blocks-hs-contrib"; - version = "2.1.0"; - sha256 = "191jrmid5q3pfamyhlmyh7ypws5slr1x95ajaxijcnsqnivb4sac"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - text - turtle - ]; - executableHaskellDepends = [ - aeson - attoparsec - base - http-client - http-client-tls - text - time - transformers - turtle - ]; - description = "Base i3blocks written in haskell"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "i3ipc" = callPackage ( - { - mkDerivation, - aeson, - base, - binary, - bytestring, - containers, - exceptions, - hspec, - network, - text, - typed-process, - vector, - }: - mkDerivation { - pname = "i3ipc"; - version = "0.2.0.0"; - sha256 = "1h4vj027h0n3pvwxq4ipzdxpw03skbpi1qc6griwlkslk1qwyv8w"; - libraryHaskellDepends = [ - aeson - base - binary - bytestring - containers - exceptions - network - text - typed-process - vector - ]; - testHaskellDepends = [ - aeson - base - bytestring - hspec - ]; - description = "A type-safe wrapper around i3's IPC"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "iCalendar" = callPackage ( { mkDerivation, @@ -370779,138 +214376,6 @@ self: { } ) { }; - "iException" = callPackage ( - { - mkDerivation, - base, - interleavableIO, - mtl, - }: - mkDerivation { - pname = "iException"; - version = "0.0.1"; - sha256 = "0g9hh7v5m194wyj9c5vzsjjc10fia60c9p8si778yky4chvfvj7p"; - libraryHaskellDepends = [ - base - interleavableIO - mtl - ]; - description = "Version of Control.Exception using InterleavableIO."; - license = "unknown"; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "iap-verifier" = callPackage ( - { - mkDerivation, - aeson, - base, - base64-bytestring, - bytestring, - conduit, - http-conduit, - monads-tf, - text, - transformers, - }: - mkDerivation { - pname = "iap-verifier"; - version = "0.1.0.1"; - sha256 = "0mf55kx2y5q8qldgqcq805r3565nxngjm7nwq4q2xy54s7m2fsha"; - libraryHaskellDepends = [ - aeson - base - base64-bytestring - bytestring - conduit - http-conduit - monads-tf - text - transformers - ]; - description = "A simple wrapper of In-App-Purchase receipt validate APIs"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "ib-api" = callPackage ( - { - mkDerivation, - attoparsec, - base, - bytestring, - network, - unix, - }: - mkDerivation { - pname = "ib-api"; - version = "0.1.0.1"; - sha256 = "0zswsb7mvbm8zycb14sks2kvg4jy2wn3vc7z6lb00s0alm1v0srk"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - attoparsec - base - bytestring - network - ]; - executableHaskellDepends = [ - attoparsec - base - bytestring - network - unix - ]; - description = "An API for the Interactive Brokers Trading Workstation written in pure Haskell"; - license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - mainProgram = "ex"; - broken = true; - } - ) { }; - - "iban" = callPackage ( - { - mkDerivation, - base, - containers, - HUnit, - iso3166-country-codes, - tasty, - tasty-hunit, - text, - unordered-containers, - }: - mkDerivation { - pname = "iban"; - version = "0.1.1.1"; - sha256 = "14cwzkanh72fr86f882j06hw3xvm3pbznixiiac5inwy4mlyzqp9"; - revision = "1"; - editedCabalFile = "1gsc8dbsc0pfcabj8j61151mcfbdfbpd6sz7dmfnm3yqxms3dsvg"; - libraryHaskellDepends = [ - base - containers - iso3166-country-codes - text - unordered-containers - ]; - testHaskellDepends = [ - base - HUnit - tasty - tasty-hunit - text - ]; - description = "Validate and generate IBANs"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "ibus-hs" = callPackage ( { mkDerivation, @@ -370922,62 +214387,17 @@ self: { }: mkDerivation { pname = "ibus-hs"; - version = "0.0.0.1"; - sha256 = "0yrdh4y0ssldg0lmrbr6yk0zg2sihirp3mnh20dvg3m887kdhrj1"; - libraryHaskellDepends = [ - base - dbus - directory - unix - xdg-basedir - ]; - description = "A simple uncomplete ibus api"; - license = lib.licenses.lgpl3Only; - } - ) { }; - - "ical" = callPackage ( - { - mkDerivation, - aeson, - attoparsec, - base, - containers, - either, - mtl, - text, - time, - transformers, - }: - mkDerivation { - pname = "ical"; - version = "0.0.1"; - sha256 = "10nqlypcv7rpc8q83rjhpb2n3sfqfx6p3xhf123hmacs4ks5vr7m"; - revision = "1"; - editedCabalFile = "0sxh3m5iscf1kdkmc8bqgb8snn878ljm962h0f1sgx8z72avawr9"; - isLibrary = true; - isExecutable = true; + version = "0.0.0.1"; + sha256 = "0yrdh4y0ssldg0lmrbr6yk0zg2sihirp3mnh20dvg3m887kdhrj1"; libraryHaskellDepends = [ - aeson - attoparsec - base - containers - either - mtl - text - time - transformers - ]; - executableHaskellDepends = [ base - time + dbus + directory + unix + xdg-basedir ]; - testHaskellDepends = [ base ]; - description = "iCalendar format parser and org-mode converter"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "ical-org"; - broken = true; + description = "A simple uncomplete ibus api"; + license = lib.licenses.lgpl3Only; } ) { }; @@ -371171,29 +214591,6 @@ self: { } ) { }; - "icfpc2020-galaxy" = callPackage ( - { - mkDerivation, - base, - ghc-prim, - transformers, - }: - mkDerivation { - pname = "icfpc2020-galaxy"; - version = "0.2.0.0"; - sha256 = "17m8vp3kikpscagb40972r9a8i6ng8wjc697zdslj5zl95rpyrvd"; - libraryHaskellDepends = [ - base - ghc-prim - transformers - ]; - description = "A strange message received at the Pegovka observatory"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "icon-fonts" = callPackage ( { mkDerivation, base }: mkDerivation { @@ -371227,269 +214624,6 @@ self: { } ) { }; - "iconv-typed" = callPackage ( - { - mkDerivation, - base, - bytestring, - iconv, - shelly, - template-haskell, - text, - }: - mkDerivation { - pname = "iconv-typed"; - version = "0.2.0.0"; - sha256 = "1a52j2q2fsh8l8sahv5l3rb8736zwy6mv7gy5fzgyxvxx0abnhrx"; - libraryHaskellDepends = [ - base - bytestring - iconv - shelly - template-haskell - text - ]; - testHaskellDepends = [ base ]; - description = "Type safe iconv wrapper"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "ide-backend" = callPackage ( - { - mkDerivation, - aeson, - async, - attoparsec, - base, - binary, - bytestring, - bytestring-trie, - Cabal-ide-backend, - containers, - crypto-api, - data-accessor, - data-accessor-mtl, - deepseq, - directory, - executable-path, - filemanip, - filepath, - fingertree, - ghc-prim, - HUnit, - ide-backend-common, - monads-tf, - mtl, - network, - parallel, - pretty-show, - process, - pureMD5, - random, - regex-compat, - stm, - tagged, - tasty, - template-haskell, - temporary, - test-framework, - test-framework-hunit, - text, - time, - transformers, - unix, - unix-compat, - unordered-containers, - utf8-string, - }: - mkDerivation { - pname = "ide-backend"; - version = "0.10.0.1"; - sha256 = "1w7swl5gs2i4kxrzm5kvjpp6qfjw2h8gq5lwqgx98phkv30nw607"; - revision = "1"; - editedCabalFile = "0bb6cg0yiadcwa7pdg5gan3lir3pxdakwimi0cp64hi76scy0xng"; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - async - attoparsec - base - binary - bytestring - Cabal-ide-backend - containers - data-accessor - data-accessor-mtl - directory - filemanip - filepath - ghc-prim - ide-backend-common - mtl - network - pretty-show - process - pureMD5 - template-haskell - temporary - text - time - transformers - unix - utf8-string - ]; - executableHaskellDepends = [ - aeson - async - attoparsec - base - binary - bytestring - bytestring-trie - Cabal-ide-backend - containers - crypto-api - data-accessor - data-accessor-mtl - directory - executable-path - filemanip - filepath - fingertree - ghc-prim - ide-backend-common - mtl - network - pretty-show - process - pureMD5 - random - tagged - template-haskell - temporary - text - time - transformers - unix - unix-compat - unordered-containers - ]; - testHaskellDepends = [ - aeson - async - base - binary - bytestring - Cabal-ide-backend - containers - deepseq - directory - executable-path - filemanip - filepath - HUnit - ide-backend-common - monads-tf - network - parallel - process - random - regex-compat - stm - tagged - tasty - template-haskell - temporary - test-framework - test-framework-hunit - text - unix - utf8-string - ]; - description = "An IDE backend library"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - mainProgram = "ide-backend-exe-cabal"; - } - ) { }; - - "ide-backend-common" = callPackage ( - { - mkDerivation, - aeson, - async, - attoparsec, - base, - base64-bytestring, - binary, - bytestring, - bytestring-trie, - containers, - crypto-api, - data-accessor, - directory, - filepath, - fingertree, - monad-logger, - mtl, - network, - pretty-show, - process, - pureMD5, - tagged, - template-haskell, - temporary, - text, - transformers, - unix, - unix-compat, - }: - mkDerivation { - pname = "ide-backend-common"; - version = "0.10.1.2"; - sha256 = "0nwiln0kvwb14jg1mhn6g5swmijn4f4cvkk5hsjp8q8sivrjh403"; - revision = "1"; - editedCabalFile = "1ncxddrqgdz60575ddsbpd1vr18ps5qrq6n9g4571428gx2skjn4"; - libraryHaskellDepends = [ - aeson - async - attoparsec - base - base64-bytestring - binary - bytestring - bytestring-trie - containers - crypto-api - data-accessor - directory - filepath - fingertree - monad-logger - mtl - network - pretty-show - process - pureMD5 - tagged - template-haskell - temporary - text - transformers - unix - unix-compat - ]; - description = "Shared library used be ide-backend and ide-backend-server"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "ide-backend-rts" = callPackage ( { mkDerivation, base }: mkDerivation { @@ -371502,243 +214636,6 @@ self: { } ) { }; - "ide-backend-server" = callPackage ( - { - mkDerivation, - array, - async, - base, - bytestring, - containers, - data-accessor, - data-accessor-mtl, - directory, - file-embed, - filemanip, - filepath, - ghc, - ide-backend-common, - mtl, - network, - process, - tar, - temporary, - text, - transformers, - unix, - unordered-containers, - zlib, - }: - mkDerivation { - pname = "ide-backend-server"; - version = "0.10.0.2"; - sha256 = "0pzyrjdd35xqlazr70g3045qa7f08gbl4qq16rvppivw4h40wag5"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - array - async - base - bytestring - containers - data-accessor - data-accessor-mtl - directory - file-embed - filemanip - filepath - ghc - ide-backend-common - mtl - network - process - tar - temporary - text - transformers - unix - unordered-containers - zlib - ]; - description = "An IDE backend server"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - mainProgram = "ide-backend-server"; - } - ) { }; - - "ideas" = callPackage ( - { - mkDerivation, - base, - blaze-builder, - bytestring, - case-insensitive, - containers, - Diff, - directory, - filepath, - HDBC, - HDBC-sqlite3, - http-types, - mtl, - network, - parsec, - QuickCheck, - random, - streaming-commons, - time, - uniplate, - wai, - wl-pprint, - }: - mkDerivation { - pname = "ideas"; - version = "1.8"; - sha256 = "0bkcn9rc2bwnfy7n7yja9dlzpjfyvbjj3i10h7clhz59k9x5d8km"; - libraryHaskellDepends = [ - base - blaze-builder - bytestring - case-insensitive - containers - Diff - directory - filepath - HDBC - HDBC-sqlite3 - http-types - mtl - network - parsec - QuickCheck - random - streaming-commons - time - uniplate - wai - wl-pprint - ]; - description = "Feedback services for intelligent tutoring systems"; - license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "ideas-math" = callPackage ( - { - mkDerivation, - base, - containers, - ideas, - parsec, - QuickCheck, - random, - }: - mkDerivation { - pname = "ideas-math"; - version = "1.2"; - sha256 = "1s3pryjzc7dkmfdfrysag1w1j752y29cga4040a8fag10n9w7rr2"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - containers - ideas - parsec - QuickCheck - random - ]; - description = "Interactive domain reasoner for logic and mathematics"; - license = "GPL"; - hydraPlatforms = lib.platforms.none; - mainProgram = "ideas-math"; - } - ) { }; - - "ideas-math-types" = callPackage ( - { - mkDerivation, - base, - containers, - ideas, - parsec, - QuickCheck, - }: - mkDerivation { - pname = "ideas-math-types"; - version = "1.1"; - sha256 = "1kv743lziag8l5g6lnfhyw624xw21c01dlifrszwbh360wvgd782"; - libraryHaskellDepends = [ - base - containers - ideas - parsec - QuickCheck - ]; - description = "Common types for mathematical domain reasoners"; - license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "ideas-statistics" = callPackage ( - { - mkDerivation, - base, - containers, - ideas, - ideas-math-types, - }: - mkDerivation { - pname = "ideas-statistics"; - version = "1.0"; - sha256 = "1pniy4v4w3zs3ihwsx0zyb6x6hyqsbdka7flrdq9kj4abph6f1rb"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - containers - ideas - ideas-math-types - ]; - description = "Interactive domain reasoner for statistics"; - license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; - mainProgram = "statistics.cgi"; - } - ) { }; - - "idempotent" = callPackage ( - { - mkDerivation, - base, - containers, - hspec, - QuickCheck, - }: - mkDerivation { - pname = "idempotent"; - version = "0.1.2"; - sha256 = "18jwk65mm50lqnbx9px4c8aa2x7n5dkrazzpzvdwq7cy4q614bj0"; - libraryHaskellDepends = [ - base - containers - ]; - testHaskellDepends = [ - base - containers - hspec - QuickCheck - ]; - description = "Idempotent monoids"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "identicon" = callPackage ( { mkDerivation, @@ -371818,120 +214715,6 @@ self: { } ) { }; - "identifiers" = callPackage ( - { - mkDerivation, - base, - binary, - bytestring, - cereal, - containers, - criterion, - deepseq, - hashable, - ListLike, - QuickCheck, - test-framework, - test-framework-quickcheck2, - text, - unordered-containers, - }: - mkDerivation { - pname = "identifiers"; - version = "0.4.3.0"; - sha256 = "0i27cg4p4nzzwxc54041n2675iv42j4zby3nn4bi0vi1bbwkxl20"; - libraryHaskellDepends = [ - base - binary - cereal - containers - deepseq - hashable - ListLike - text - unordered-containers - ]; - testHaskellDepends = [ - base - QuickCheck - test-framework - test-framework-quickcheck2 - ]; - benchmarkHaskellDepends = [ - base - binary - bytestring - cereal - criterion - deepseq - text - ]; - description = "Numeric identifiers for values"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "idiii" = callPackage ( - { - mkDerivation, - base, - bytestring, - containers, - data-accessor, - directory, - filepath, - HUnit, - MissingH, - polyparse, - process, - text, - utf8-string, - }: - mkDerivation { - pname = "idiii"; - version = "0.1.3.3"; - sha256 = "11595aj56sjwk28grh6ldsbk5c6kgrirsc2xglfixw82vj7viw8h"; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base - bytestring - containers - data-accessor - MissingH - polyparse - text - utf8-string - ]; - executableHaskellDepends = [ - base - containers - ]; - testHaskellDepends = [ - base - bytestring - containers - data-accessor - directory - filepath - HUnit - MissingH - polyparse - process - text - utf8-string - ]; - description = "ID3v2 (tagging standard for MP3 files) library"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "read-idiii"; - broken = true; - } - ) { }; - "idiomatic" = callPackage ( { mkDerivation, base }: mkDerivation { @@ -371946,53 +214729,6 @@ self: { } ) { }; - "idna" = callPackage ( - { - mkDerivation, - base, - punycode, - stringprep, - text, - }: - mkDerivation { - pname = "idna"; - version = "0.3.0"; - sha256 = "04w2mp9wa4mzdz4njx47j081jia8y000b46cw8vmx44fx8gv1zwp"; - libraryHaskellDepends = [ - base - punycode - stringprep - text - ]; - description = "Implements IDNA (RFC 3490)"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "idna2008" = callPackage ( - { - mkDerivation, - base, - punycode, - split, - }: - mkDerivation { - pname = "idna2008"; - version = "0.0.1.0"; - sha256 = "1pd62pr1hyk565mxc15f5lxyms58bywcqll5ya6cnzw20lv4lzlz"; - libraryHaskellDepends = [ - base - punycode - split - ]; - description = "Converts Unicode hostnames into ASCII"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "idringen" = callPackage ( { mkDerivation, @@ -372194,20 +214930,6 @@ self: { } ) { }; - "ieee-utils" = callPackage ( - { mkDerivation, base }: - mkDerivation { - pname = "ieee-utils"; - version = "0.4.0"; - sha256 = "0548m1xjvzf65kkklmqjr2f5h85zdfpvxmdbx5rcg33zi8aiqfgk"; - libraryHaskellDepends = [ base ]; - description = "ieee-utils"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "ieee-utils-tempfix" = callPackage ( { mkDerivation, base }: mkDerivation { @@ -372252,45 +214974,6 @@ self: { } ) { }; - "iexcloud" = callPackage ( - { - mkDerivation, - aeson, - base, - bytestring, - containers, - http-conduit, - HUnit, - semigroups, - stocks, - unordered-containers, - }: - mkDerivation { - pname = "iexcloud"; - version = "0.0.0.1"; - sha256 = "15qn3h1bz75bykcnyra6gg4d33gmr6ywc485hk2gmi4k6hbl6amf"; - libraryHaskellDepends = [ - aeson - base - bytestring - containers - http-conduit - semigroups - unordered-containers - ]; - testHaskellDepends = [ - base - bytestring - HUnit - stocks - ]; - description = "Library for the IEX Trading API"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "if" = callPackage ( { mkDerivation, base }: mkDerivation { @@ -372335,36 +215018,6 @@ self: { } ) { }; - "ifcxt" = callPackage ( - { - mkDerivation, - base, - QuickCheck, - tasty, - tasty-quickcheck, - template-haskell, - }: - mkDerivation { - pname = "ifcxt"; - version = "0.1.1"; - sha256 = "0maxamkasfiwwjcrba158as79hkrip4plhqy9mby1fx662rss0fc"; - libraryHaskellDepends = [ - base - template-haskell - ]; - testHaskellDepends = [ - base - QuickCheck - tasty - tasty-quickcheck - ]; - description = "put if statements within type constraints"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "iff" = callPackage ( { mkDerivation, @@ -372389,297 +215042,6 @@ self: { } ) { }; - "ifscs" = callPackage ( - { - mkDerivation, - base, - containers, - failure, - HUnit, - test-framework, - test-framework-hunit, - }: - mkDerivation { - pname = "ifscs"; - version = "0.2.0.0"; - sha256 = "1675j66kmlfcwd8g0wanx4jfs3vnnvz8hpazskzng6ghvp4bam1q"; - libraryHaskellDepends = [ - base - containers - failure - ]; - testHaskellDepends = [ - base - HUnit - test-framework - test-framework-hunit - ]; - description = "An inductive-form set constraint solver"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "ig" = callPackage ( - { - mkDerivation, - aeson, - base, - base16-bytestring, - bytestring, - conduit, - conduit-extra, - crypto-api, - cryptohash, - cryptohash-cryptoapi, - data-default, - http-conduit, - http-types, - lifted-base, - monad-control, - resourcet, - text, - time, - transformers, - transformers-base, - unordered-containers, - }: - mkDerivation { - pname = "ig"; - version = "0.8"; - sha256 = "1kqgmh11qv0r75jvx8hb7w5s7brxm9843k2mga20cz3q9wirsdlv"; - libraryHaskellDepends = [ - aeson - base - base16-bytestring - bytestring - conduit - conduit-extra - crypto-api - cryptohash - cryptohash-cryptoapi - data-default - http-conduit - http-types - lifted-base - monad-control - resourcet - text - time - transformers - transformers-base - unordered-containers - ]; - description = "Bindings to Instagram's API"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "ige" = callPackage ( - { - mkDerivation, - aeson, - array, - base, - bytestring, - cairo, - conduit, - conduit-combinators, - containers, - directory, - fgl, - gtk, - linear, - megaparsec, - microlens-platform, - mtl, - mwc-random, - protolude, - stm, - stm-chans, - stm-conduit, - text, - transformers, - wl-pprint-text, - }: - mkDerivation { - pname = "ige"; - version = "0.1.0.0"; - sha256 = "14cbmb69h8fxabcqi2ncs48xsnflcq5g8gl8s6hvc4x80wb79f5s"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - aeson - array - base - bytestring - cairo - conduit - conduit-combinators - containers - directory - fgl - gtk - linear - megaparsec - microlens-platform - mtl - mwc-random - protolude - stm - stm-chans - stm-conduit - text - transformers - wl-pprint-text - ]; - description = "An keyboard-driven interactive graph editor"; - license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - mainProgram = "ige"; - broken = true; - } - ) { }; - - "ige-mac-integration" = callPackage ( - { - mkDerivation, - array, - base, - containers, - glib, - gtk, - gtk2hs-buildtools, - haskell98, - ige-mac-integration, - mtl, - }: - mkDerivation { - pname = "ige-mac-integration"; - version = "0.1.0.1"; - sha256 = "1949c5v3157xlwcmddawc79iagxlgy4l08skpkldi45amyy3jqn6"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - array - base - containers - glib - gtk - haskell98 - mtl - ]; - libraryPkgconfigDepends = [ ige-mac-integration ]; - libraryToolDepends = [ gtk2hs-buildtools ]; - description = "Bindings for the Gtk/OS X integration library"; - license = lib.licenses.lgpl21Only; - hydraPlatforms = lib.platforms.none; - } - ) { ige-mac-integration = null; }; - - "ignore" = callPackage ( - { - mkDerivation, - base, - directory, - Glob, - HTF, - mtl, - path, - pcre-heavy, - text, - }: - mkDerivation { - pname = "ignore"; - version = "0.1.1.0"; - sha256 = "0x9mqx198ssj742cv8w643w2cxv9avgyl9j7dr85mp4bmgyq3x5a"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - directory - Glob - mtl - path - pcre-heavy - text - ]; - executableHaskellDepends = [ - base - directory - path - ]; - testHaskellDepends = [ - base - HTF - text - ]; - description = "Handle ignore files of different VCSes"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "ignore"; - broken = true; - } - ) { }; - - "igraph" = callPackage ( - { - mkDerivation, - base, - c2hs, - containers, - hashable, - igraph, - unordered-containers, - }: - mkDerivation { - pname = "igraph"; - version = "0.1.1"; - sha256 = "098b1y1iwmlpi3kspq4cd82cs0bbxvygghssjr986664lgv06hsd"; - libraryHaskellDepends = [ - base - containers - hashable - unordered-containers - ]; - librarySystemDepends = [ igraph ]; - libraryToolDepends = [ c2hs ]; - description = "Bindings to the igraph C library"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { inherit (pkgs) igraph; }; - - "igrf" = callPackage ( - { - mkDerivation, - ad, - base, - poly, - semirings, - text, - vector-space, - }: - mkDerivation { - pname = "igrf"; - version = "0.4.0.0"; - sha256 = "0n3xchwxslrc25sb06y2vg9gwgifpsfs57xhy7z6g2j43r187x1w"; - libraryHaskellDepends = [ - ad - base - poly - semirings - text - vector-space - ]; - description = "International Geomagnetic Reference Field"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "ihaskell" = callPackage ( { mkDerivation, @@ -372873,37 +215235,6 @@ self: { } ) { }; - "ihaskell-charts" = callPackage ( - { - mkDerivation, - base, - bytestring, - Chart, - Chart-cairo, - data-default-class, - directory, - ihaskell, - }: - mkDerivation { - pname = "ihaskell-charts"; - version = "0.3.0.1"; - sha256 = "1m7jxl1pxl0hcfa24xgjcwj4k50an8phm2lkpr4493yr1x2isk35"; - libraryHaskellDepends = [ - base - bytestring - Chart - Chart-cairo - data-default-class - directory - ihaskell - ]; - description = "IHaskell display instances for charts types"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "ihaskell-diagrams" = callPackage ( { mkDerivation, @@ -372962,56 +215293,6 @@ self: { } ) { }; - "ihaskell-gnuplot" = callPackage ( - { - mkDerivation, - base, - bytestring, - gnuplot, - ihaskell, - }: - mkDerivation { - pname = "ihaskell-gnuplot"; - version = "0.1.0.1"; - sha256 = "1qdcx0y52w805z5dg2xwsy1ykbbk05i4k04y0w3r4r3wwjvq3kk6"; - libraryHaskellDepends = [ - base - bytestring - gnuplot - ihaskell - ]; - description = "IHaskell display instance for Gnuplot (from gnuplot package)"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "ihaskell-graphviz" = callPackage ( - { - mkDerivation, - base, - bytestring, - ihaskell, - process, - }: - mkDerivation { - pname = "ihaskell-graphviz"; - version = "0.1.0.0"; - sha256 = "1min39vd75rn7vwpmggf8a30fhlv5zphhmckb5a4g6lqg5v1kf1y"; - libraryHaskellDepends = [ - base - bytestring - ihaskell - process - ]; - description = "IHaskell display instance for GraphViz (external binary)"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "ihaskell-hatex" = callPackage ( { mkDerivation, @@ -373060,42 +215341,6 @@ self: { } ) { }; - "ihaskell-inline-r" = callPackage ( - { - mkDerivation, - base, - base64-bytestring, - blaze-html, - bytestring, - filepath, - ihaskell, - ihaskell-blaze, - inline-r, - template-haskell, - temporary, - }: - mkDerivation { - pname = "ihaskell-inline-r"; - version = "0.1.1.0"; - sha256 = "0nk6b3mz2sbc90gv307kfhsh72qcn1lfcyn34v7vn3hlq79lln76"; - libraryHaskellDepends = [ - base - base64-bytestring - blaze-html - bytestring - filepath - ihaskell - ihaskell-blaze - inline-r - template-haskell - temporary - ]; - description = "Embed R quasiquotes and plots in IHaskell notebooks"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "ihaskell-juicypixels" = callPackage ( { mkDerivation, @@ -373152,108 +215397,6 @@ self: { } ) { }; - "ihaskell-parsec" = callPackage ( - { - mkDerivation, - aeson, - base, - here, - ihaskell, - parsec, - random, - text, - unordered-containers, - }: - mkDerivation { - pname = "ihaskell-parsec"; - version = "0.3.0.0"; - sha256 = "0n1awvn81228cci1q1rvy7p91zfl29byp5imkiwqbxswzz5sq8n4"; - libraryHaskellDepends = [ - aeson - base - here - ihaskell - parsec - random - text - unordered-containers - ]; - description = "IHaskell display instances for Parsec"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "ihaskell-plot" = callPackage ( - { - mkDerivation, - base, - bytestring, - hmatrix, - ihaskell, - plot, - }: - mkDerivation { - pname = "ihaskell-plot"; - version = "0.3.0.1"; - sha256 = "12bi8im5489kmy0d26kn3hljkj4c1xynsa97h6nh5dp53awklm3y"; - libraryHaskellDepends = [ - base - bytestring - hmatrix - ihaskell - plot - ]; - description = "IHaskell display instance for Plot (from plot package)"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "ihaskell-rlangqq" = callPackage ( - { - mkDerivation, - base, - base64-bytestring, - blaze-html, - bytestring, - directory, - filepath, - ihaskell, - ihaskell-blaze, - Rlang-QQ, - split, - stm, - template-haskell, - xformat, - }: - mkDerivation { - pname = "ihaskell-rlangqq"; - version = "0.3.0.0"; - sha256 = "1w2ywl3m122d56cvgnhll6dpjw03y2jy3nc8v325291zhknrziaj"; - libraryHaskellDepends = [ - base - base64-bytestring - blaze-html - bytestring - directory - filepath - ihaskell - ihaskell-blaze - Rlang-QQ - split - stm - template-haskell - xformat - ]; - description = "a rDisp quasiquote to show plots from Rlang-QQ in IHaskell"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "ihaskell-symtegration" = callPackage ( { mkDerivation, @@ -373901,44 +216044,6 @@ self: { } ) { }; - "ihttp" = callPackage ( - { - mkDerivation, - attoparsec, - base, - bytestring, - containers, - contstuff, - enumerator, - netlines, - network, - }: - mkDerivation { - pname = "ihttp"; - version = "0.3.0"; - sha256 = "1rcv92cdy3g9v3qgr3zvjjj0c4d7k99n7ya0mym0bjj79wj4r5zm"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - attoparsec - base - bytestring - containers - contstuff - enumerator - netlines - ]; - executableHaskellDepends = [ - base - network - ]; - description = "Incremental HTTP iteratee"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "ihttp-test"; - } - ) { }; - "ilist" = callPackage ( { mkDerivation, @@ -373975,76 +216080,6 @@ self: { } ) { }; - "illuminate" = callPackage ( - { - mkDerivation, - alex, - array, - base, - containers, - filemanip, - filepath, - hscolour, - html, - utf8-string, - xhtml, - }: - mkDerivation { - pname = "illuminate"; - version = "0.1"; - sha256 = "16ijh2sadbayh3ldiagjq67xilhyv55qhqmmz8a73lbnlq3cphk5"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - containers - filemanip - filepath - hscolour - html - utf8-string - xhtml - ]; - libraryToolDepends = [ alex ]; - executableHaskellDepends = [ - array - base - containers - html - xhtml - ]; - executableToolDepends = [ alex ]; - description = "A fast syntax highlighting library built with alex"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "illuminate"; - broken = true; - } - ) { }; - - "image-type" = callPackage ( - { - mkDerivation, - base, - bytestring, - }: - mkDerivation { - pname = "image-type"; - version = "0.1.0.0"; - sha256 = "0xr55c5g4jn1y83qy7bqa5ww9r73vw9clgln9ld893vypmb91wks"; - revision = "1"; - editedCabalFile = "1wl2sv2g7iwxldk582h1z6a2b3ks4wzk8rx8bflcxwlh6s4kq0s7"; - libraryHaskellDepends = [ - base - bytestring - ]; - description = "Determine the type of an image by reading the first bytes"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "imagefilters" = callPackage ( { mkDerivation, @@ -374064,103 +216099,6 @@ self: { } ) { }; - "imagemagick" = callPackage ( - { - mkDerivation, - base, - bytestring, - directory, - filepath, - imagemagick, - lifted-base, - QuickCheck, - resourcet, - tasty, - tasty-hunit, - text, - transformers, - vector, - }: - mkDerivation { - pname = "imagemagick"; - version = "0.0.4.2"; - sha256 = "0y4i13a783vp6h1vra7vnsmngf61jlah4n6350syfhww2d4gsmhr"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - bytestring - filepath - resourcet - text - transformers - vector - ]; - libraryPkgconfigDepends = [ imagemagick ]; - testHaskellDepends = [ - base - bytestring - directory - filepath - lifted-base - QuickCheck - resourcet - tasty - tasty-hunit - text - transformers - vector - ]; - testPkgconfigDepends = [ imagemagick ]; - description = "bindings to imagemagick library"; - license = "unknown"; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { inherit (pkgs) imagemagick; }; - - "imagepaste" = callPackage ( - { - mkDerivation, - base, - containers, - HTTP, - json, - mtl, - network, - regex-posix, - tagsoup, - template-haskell, - transformers, - vcs-revision, - }: - mkDerivation { - pname = "imagepaste"; - version = "0.2.0.1"; - sha256 = "1k512mw4a2hm6nzz2sn00rmkf7fb7mj4a2lk1klr1wmlchwimvpv"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - containers - HTTP - json - mtl - network - regex-posix - tagsoup - template-haskell - transformers - vcs-revision - ]; - description = "Command-line image paste utility"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "imagepaste"; - broken = true; - } - ) { }; - "imagesize-conduit" = callPackage ( { mkDerivation, @@ -374198,128 +216136,6 @@ self: { } ) { }; - "imap" = callPackage ( - { - mkDerivation, - attoparsec, - base, - bytestring, - connection, - containers, - derive, - either, - exceptions, - hslogger, - HUnit, - list-t, - monadIO, - mtl, - network, - pipes, - QuickCheck, - random, - rolling-queue, - stm, - stm-delay, - tasty, - tasty-hunit, - tasty-quickcheck, - text, - transformers, - word8, - }: - mkDerivation { - pname = "imap"; - version = "0.3.0.9"; - sha256 = "1lskisk4aacqiv1v6fr95zcc5mrn9l4ikxf7xpj568k2i3aqcnwk"; - libraryHaskellDepends = [ - attoparsec - base - bytestring - connection - containers - either - exceptions - hslogger - list-t - network - pipes - random - rolling-queue - stm - stm-delay - text - transformers - word8 - ]; - testHaskellDepends = [ - attoparsec - base - bytestring - connection - containers - derive - either - exceptions - hslogger - HUnit - list-t - monadIO - mtl - network - pipes - QuickCheck - random - rolling-queue - stm - stm-delay - tasty - tasty-hunit - tasty-quickcheck - text - transformers - word8 - ]; - description = "An efficient IMAP client library, with SSL and streaming"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "imapget" = callPackage ( - { - mkDerivation, - base, - bytestring, - directory, - HaskellNet, - HsOpenSSL, - network, - text, - }: - mkDerivation { - pname = "imapget"; - version = "0.0.3"; - sha256 = "0h6kbh3z78xm1rjphyv7zkjc5knd7v9agss0b9rzarm1z4qd2q5v"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - bytestring - directory - HaskellNet - HsOpenSSL - network - text - ]; - description = "Downloads email from imap SSL servers"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "imapget"; - broken = true; - } - ) { }; - "imbib" = callPackage ( { mkDerivation, @@ -374377,258 +216193,6 @@ self: { } ) { }; - "imgur" = callPackage ( - { - mkDerivation, - base, - data-default-class, - http-client, - req, - text, - xml-conduit, - xml-lens, - }: - mkDerivation { - pname = "imgur"; - version = "1.0"; - sha256 = "140n07ygfjnyxfqbq2vzfgsk93b3j5m2s61jcivx74z6sc7g867h"; - libraryHaskellDepends = [ - base - data-default-class - http-client - req - text - xml-conduit - xml-lens - ]; - description = "A function to post an image to imgur"; - license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "imgurder" = callPackage ( - { - mkDerivation, - base, - curl, - directory, - haskell98, - hxt, - hxt-xpath, - url, - }: - mkDerivation { - pname = "imgurder"; - version = "1.2"; - sha256 = "156a3fq274112j3a6lqiprwhgrcrjp3izix2z1s9bbx3c04pwrjx"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - curl - directory - haskell98 - hxt - hxt-xpath - url - ]; - executableHaskellDepends = [ - base - curl - directory - haskell98 - hxt - hxt-xpath - url - ]; - description = "Uploader for Imgur"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "imgurder"; - } - ) { }; - - "imj-animation" = callPackage ( - { - mkDerivation, - base, - imj-base, - imj-prelude, - mtl, - }: - mkDerivation { - pname = "imj-animation"; - version = "0.1.0.2"; - sha256 = "1v0rji1b45n309wn4ld5fs60rri8gn4xg0wz319f2mcqqrih6ir4"; - libraryHaskellDepends = [ - base - imj-base - imj-prelude - mtl - ]; - testHaskellDepends = [ base ]; - description = "Animation Framework"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "imj-base" = callPackage ( - { - mkDerivation, - ansi-terminal, - base, - imj-prelude, - mtl, - primitive, - random, - terminal-size, - text, - time, - vector, - vector-algorithms, - }: - mkDerivation { - pname = "imj-base"; - version = "0.1.0.2"; - sha256 = "1b42xqzbgr47r2rkhy9299p68z9imgx19xc1d5rvfc3qyg8ciph2"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - ansi-terminal - base - imj-prelude - mtl - primitive - random - terminal-size - text - time - vector - vector-algorithms - ]; - executableHaskellDepends = [ - ansi-terminal - base - imj-prelude - mtl - text - time - ]; - testHaskellDepends = [ - ansi-terminal - base - imj-prelude - mtl - text - time - ]; - description = "Game engine with geometry, easing, animated text, delta rendering"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "imj-base-examples-exe"; - } - ) { }; - - "imj-game-hamazed" = callPackage ( - { - mkDerivation, - base, - containers, - imj-animation, - imj-base, - imj-prelude, - matrix, - mtl, - terminal-size, - text, - vector, - }: - mkDerivation { - pname = "imj-game-hamazed"; - version = "0.1.0.2"; - sha256 = "0s0a2c1pfp5mwfmh1fjbq83ws68d8k5r526b7qmq36p4n78hx22g"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - containers - imj-animation - imj-base - imj-prelude - matrix - mtl - terminal-size - text - vector - ]; - executableHaskellDepends = [ - base - imj-prelude - ]; - testHaskellDepends = [ - base - imj-base - mtl - text - ]; - description = "A game with flying numbers and 8-bit color animations"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "imj-game-hamazed-exe"; - } - ) { }; - - "imj-measure-stdout" = callPackage ( - { - mkDerivation, - base, - imj-prelude, - optparse-applicative, - }: - mkDerivation { - pname = "imj-measure-stdout"; - version = "0.1.0.2"; - sha256 = "15s7dd241z9lzm0nb46yr0y7rjryy6jydwfgigcsalv5my4p2j6x"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - imj-prelude - optparse-applicative - ]; - description = "An application to determine the maximum capacity of stdout buffer"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "imj-measure-stdout-exe"; - } - ) { }; - - "imj-prelude" = callPackage ( - { - mkDerivation, - base, - mtl, - text, - }: - mkDerivation { - pname = "imj-prelude"; - version = "0.1.0.2"; - sha256 = "1nv3fxps3i4znibv98qygxdl22dzri5zkw6hjaqajb4nlnh4bd0v"; - libraryHaskellDepends = [ - base - mtl - text - ]; - description = "Prelude library"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "imm" = callPackage ( { mkDerivation, @@ -374998,6 +216562,7 @@ self: { description = "Immutaball platformer game (prototype version)"; license = lib.licenses.bsd0; hydraPlatforms = lib.platforms.none; + broken = true; } ) { }; @@ -375035,66 +216600,6 @@ self: { } ) { }; - "imparse" = callPackage ( - { - mkDerivation, - ascetic, - base, - compilation, - containers, - directory, - indents, - MissingH, - parsec, - richreports, - split, - staticanalysis, - text, - uxadt, - }: - mkDerivation { - pname = "imparse"; - version = "0.0.0.3"; - sha256 = "15bpz985d39az15jn8hd6wcil7ivsi3vcnxi5lcfs34i848rs9fg"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - ascetic - base - compilation - containers - directory - indents - MissingH - parsec - richreports - split - staticanalysis - text - uxadt - ]; - executableHaskellDepends = [ - ascetic - base - compilation - containers - directory - indents - MissingH - parsec - richreports - split - staticanalysis - text - uxadt - ]; - description = "Multi-platform parser analyzer and generator"; - license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - mainProgram = "imparse"; - } - ) { }; - "imperative-edsl" = callPackage ( { mkDerivation, @@ -375169,66 +216674,6 @@ self: { } ) { }; - "imperative-edsl-vhdl" = callPackage ( - { - mkDerivation, - base, - bytestring, - constraints, - containers, - language-vhdl, - mtl, - operational-alacarte, - pretty, - syntactic, - }: - mkDerivation { - pname = "imperative-edsl-vhdl"; - version = "0.3.2"; - sha256 = "161hhjb00hspdv4ppn2nxivdhb139539q4s1cjhanmmd9lg7giib"; - libraryHaskellDepends = [ - base - bytestring - constraints - containers - language-vhdl - mtl - operational-alacarte - pretty - syntactic - ]; - description = "Deep embedding of VHDL programs with code generation"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "impl" = callPackage ( - { - mkDerivation, - base, - containers, - named, - template-haskell, - }: - mkDerivation { - pname = "impl"; - version = "0.2.0.0"; - sha256 = "00fyb41abz9k52ninlavnldm2vz20wbhdrdq5r2s7ir1karv551g"; - libraryHaskellDepends = [ - base - containers - named - template-haskell - ]; - doHaddock = false; - description = "Framework for defaulting superclasses"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "implicit" = callPackage ( { mkDerivation, @@ -375412,54 +216857,6 @@ self: { } ) { }; - "implicit-logging" = callPackage ( - { - mkDerivation, - base, - mtl, - time, - transformers, - }: - mkDerivation { - pname = "implicit-logging"; - version = "0.2.0.0"; - sha256 = "1qy37rijx56c0l2x46450q7ykh221zbbdjz721s0cqq9nlwcbcc1"; - revision = "1"; - editedCabalFile = "02x6cmbxyw26y5azhjrx8461vngsj27l0a255xvhg2pl25zwfbfs"; - libraryHaskellDepends = [ - base - mtl - time - transformers - ]; - description = "A logging framework built around implicit parameters"; - license = lib.licenses.lgpl3Only; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "implicit-params" = callPackage ( - { - mkDerivation, - base, - data-default-class, - }: - mkDerivation { - pname = "implicit-params"; - version = "0.2.1"; - sha256 = "1da01fnwxf1350ywawvl58qf479q2rz81wi9s8lvw2n3d75qpn8i"; - libraryHaskellDepends = [ - base - data-default-class - ]; - description = "Named and unnamed implicit parameters with defaults"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "import-style-plugin" = callPackage ( { mkDerivation, @@ -375485,152 +216882,6 @@ self: { } ) { }; - "importify" = callPackage ( - { - mkDerivation, - aeson, - aeson-pretty, - autoexporter, - base, - bytestring, - Cabal, - containers, - filepath, - fmt, - foldl, - hashable, - haskell-names, - haskell-src-exts, - hse-cpp, - hspec, - log-warper, - microlens-platform, - optparse-applicative, - path, - path-io, - pretty-simple, - syb, - template-haskell, - text, - text-format, - turtle, - universum, - unordered-containers, - yaml, - }: - mkDerivation { - pname = "importify"; - version = "1.0.1"; - sha256 = "1snm75p3p3nvjclqis6qglb17gr0pm2dw0i980jpzrqm3n3kciy3"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson - aeson-pretty - autoexporter - base - bytestring - Cabal - containers - filepath - fmt - foldl - hashable - haskell-names - haskell-src-exts - hse-cpp - log-warper - microlens-platform - path - path-io - pretty-simple - syb - template-haskell - text - text-format - turtle - universum - unordered-containers - yaml - ]; - executableHaskellDepends = [ - base - log-warper - optparse-applicative - path - path-io - text - universum - ]; - testHaskellDepends = [ - base - filepath - hspec - log-warper - microlens-platform - path - path-io - universum - unordered-containers - ]; - description = "Tool for haskell imports refactoring"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "imports" = callPackage ( - { - mkDerivation, - base, - directory, - filepath, - mtl, - }: - mkDerivation { - pname = "imports"; - version = "0.2.0.0"; - sha256 = "0qfwy9iyw0rfb95100azz2i2w9n34fgm2rvaj9jjz1p4pik3hhla"; - libraryHaskellDepends = [ - base - directory - filepath - mtl - ]; - testHaskellDepends = [ - base - directory - filepath - mtl - ]; - description = "Generate code for importing directories automatically"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "impossible" = callPackage ( - { - mkDerivation, - base, - lens, - }: - mkDerivation { - pname = "impossible"; - version = "1.1.4"; - sha256 = "0557f8a9aaslkhpyp7b6zidg88a3472ya31rp8amqf71393nvkqp"; - libraryHaskellDepends = [ - base - lens - ]; - description = "Set of data and type definitions of impossible types. Impossible types are useful when declaring type classes / type families instances that should not be expanded by GHC until a specific type is provided in order to keep the types nice and readable."; - license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "imprevu" = callPackage ( { mkDerivation, @@ -375693,172 +216944,6 @@ self: { } ) { Imprevu = null; }; - "imprevu-happstack" = callPackage ( - { - mkDerivation, - base, - blaze-html, - Cabal, - containers, - DebugTraceHelpers, - ghc, - happstack-server, - HTTP, - imprevu, - lens, - monad-extras, - mtl, - NoTrace, - old-locale, - reform, - reform-blaze, - reform-happstack, - safe, - stm, - text, - }: - mkDerivation { - pname = "imprevu-happstack"; - version = "0.1.0"; - sha256 = "06zhckxn6s20jdifizhwac0z5l5knv15lx9wn7ailf7y558789ar"; - libraryHaskellDepends = [ - base - blaze-html - containers - DebugTraceHelpers - ghc - happstack-server - HTTP - imprevu - lens - monad-extras - mtl - NoTrace - old-locale - reform - reform-blaze - reform-happstack - safe - stm - text - ]; - testHaskellDepends = [ - base - Cabal - ]; - description = "Imprevu support for Happstack"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "imprint" = callPackage ( - { - mkDerivation, - base, - binary, - bytestring, - constraints, - hspec, - }: - mkDerivation { - pname = "imprint"; - version = "0.0.1.0"; - sha256 = "0f56zy6ay6wvcvqfplvc3gckngxngxm9r62h1w36lxm74xy8544v"; - revision = "1"; - editedCabalFile = "13418pfcsanj7cl651v4qqbypgjkrpld2gs560kpw3k2lj6w4wa0"; - libraryHaskellDepends = [ - base - binary - bytestring - constraints - ]; - testHaskellDepends = [ - base - binary - constraints - hspec - ]; - description = "Serialization of arbitrary Haskell expressions"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "improve" = callPackage ( - { - mkDerivation, - base, - mtl, - yices, - }: - mkDerivation { - pname = "improve"; - version = "0.4.0"; - sha256 = "0z8w7lgk263ickb4l3ajhvy1bjq38bbiiw6c048a3yn4h8kpg67a"; - libraryHaskellDepends = [ - base - mtl - yices - ]; - description = "An imperative, verifiable programming language for high assurance applications"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "impure-containers" = callPackage ( - { - mkDerivation, - base, - containers, - criterion, - ghc-prim, - hashable, - HUnit, - primitive, - QuickCheck, - test-framework, - test-framework-hunit, - test-framework-quickcheck2, - transformers, - vector, - }: - mkDerivation { - pname = "impure-containers"; - version = "0.5.1"; - sha256 = "15jxnkcmxwcb41zzw2yw00fg2w53iq1li6z432yvvj4hbdn9s90w"; - libraryHaskellDepends = [ - base - containers - ghc-prim - hashable - primitive - vector - ]; - testHaskellDepends = [ - base - containers - HUnit - QuickCheck - test-framework - test-framework-hunit - test-framework-quickcheck2 - transformers - vector - ]; - benchmarkHaskellDepends = [ - base - criterion - ]; - description = "Mutable containers in Haskell"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "in-other-words" = callPackage ( { mkDerivation, @@ -375982,63 +217067,15 @@ self: { stm, }: mkDerivation { - pname = "inc-ref"; - version = "0.3.0.0"; - sha256 = "0hr25bdwq2a1mj74wb8dvb95jyfqx13rz0h4makyb5kqlhxz40xl"; - libraryHaskellDepends = [ - base - stm - ]; - description = "A STM reference useful for incremental computing"; - license = lib.licenses.bsd3; - } - ) { }; - - "inch" = callPackage ( - { - mkDerivation, - base, - containers, - directory, - filepath, - IndentParser, - mtl, - parsec, - presburger, - pretty, - }: - mkDerivation { - pname = "inch"; - version = "0.2.0"; - sha256 = "05f25yza05ib0xnkpfimhrb3nqyp5km85r1j9n6yh9k0cwdagndi"; - isLibrary = false; - isExecutable = true; - enableSeparateDataOutput = true; - executableHaskellDepends = [ - base - containers - filepath - IndentParser - mtl - parsec - presburger - pretty - ]; - testHaskellDepends = [ + pname = "inc-ref"; + version = "0.3.0.0"; + sha256 = "0hr25bdwq2a1mj74wb8dvb95jyfqx13rz0h4makyb5kqlhxz40xl"; + libraryHaskellDepends = [ base - containers - directory - filepath - IndentParser - mtl - parsec - presburger - pretty + stm ]; - description = "A type-checker for Haskell with integer constraints"; + description = "A STM reference useful for incremental computing"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "inch"; } ) { }; @@ -376228,103 +217265,6 @@ self: { } ) { }; - "incremental-computing" = callPackage ( - { - mkDerivation, - base, - Cabal, - cabal-test-quickcheck, - containers, - deepseq, - dlist, - fingertree, - order-maintenance, - QuickCheck, - transformers, - }: - mkDerivation { - pname = "incremental-computing"; - version = "0.0.1.0"; - sha256 = "1ya80d5zzbx7hgmqhhfrqiba8w1vlagpksnspq3rfq8qn6a68nbw"; - libraryHaskellDepends = [ - base - containers - dlist - fingertree - order-maintenance - transformers - ]; - testHaskellDepends = [ - base - Cabal - cabal-test-quickcheck - containers - QuickCheck - ]; - benchmarkHaskellDepends = [ - base - containers - deepseq - QuickCheck - ]; - description = "Incremental computing"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "incremental-maps" = callPackage ( - { - mkDerivation, - aeson, - base, - Cabal, - cabal-test-quickcheck, - containers, - criterion, - deepseq, - deepseq-generics, - dlist, - fingertree, - order-maintenance, - QuickCheck, - transformers, - }: - mkDerivation { - pname = "incremental-maps"; - version = "0.0.0.0"; - sha256 = "16zm4jbzd5kqccpdqbswmnqh4hq49sjcip56v6blyl8inz4b2b25"; - libraryHaskellDepends = [ - base - containers - dlist - fingertree - order-maintenance - transformers - ]; - testHaskellDepends = [ - base - Cabal - cabal-test-quickcheck - containers - QuickCheck - ]; - benchmarkHaskellDepends = [ - aeson - base - containers - criterion - deepseq - deepseq-generics - dlist - QuickCheck - ]; - description = "Package for doing incremental computations on maps"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "incremental-parser" = callPackage ( { mkDerivation, @@ -376378,68 +217318,6 @@ self: { } ) { }; - "incremental-sat-solver" = callPackage ( - { - mkDerivation, - base, - containers, - mtl, - }: - mkDerivation { - pname = "incremental-sat-solver"; - version = "0.1.8"; - sha256 = "1a75jkv48awijwdch0lnvcxdihh8ns9rflzgsbbhw8p34k1jpz8s"; - libraryHaskellDepends = [ - base - containers - mtl - ]; - description = "Simple, Incremental SAT Solving as a Library"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "increments" = callPackage ( - { - mkDerivation, - base, - beamable, - bytestring, - containers, - ghc-prim, - QuickCheck, - test-framework, - test-framework-quickcheck2, - }: - mkDerivation { - pname = "increments"; - version = "0.1.0.4"; - sha256 = "0dsand1y9f215fsikwr2601zxrzxpv85aka6f0gaaf0657mr4x9i"; - libraryHaskellDepends = [ - base - beamable - bytestring - containers - ghc-prim - ]; - testHaskellDepends = [ - base - beamable - bytestring - containers - ghc-prim - QuickCheck - test-framework - test-framework-quickcheck2 - ]; - description = "type classes for incremental updates to data"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "indent" = callPackage ( { mkDerivation, @@ -376470,125 +217348,6 @@ self: { } ) { }; - "indentation" = callPackage ( - { - mkDerivation, - base, - indentation-core, - indentation-parsec, - indentation-trifecta, - mtl, - parsec, - parsers, - trifecta, - }: - mkDerivation { - pname = "indentation"; - version = "0.3.3"; - sha256 = "0iwnz4j4zkr9xpw5f8p42blgifdj6mqbxpqsci76pic6safp3avq"; - libraryHaskellDepends = [ - base - indentation-core - indentation-parsec - indentation-trifecta - mtl - parsec - parsers - trifecta - ]; - description = "Indentation sensitive parsing combinators for Parsec and Trifecta"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "indentation-core" = callPackage ( - { - mkDerivation, - base, - mtl, - }: - mkDerivation { - pname = "indentation-core"; - version = "0.0.0.2"; - sha256 = "1l1zk5wz9x0m4ird1qk8shi1fkcm3sq2nwkjj6wz2sicp0xkx6h9"; - libraryHaskellDepends = [ - base - mtl - ]; - description = "Indentation sensitive parsing combinators core library"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "indentation-parsec" = callPackage ( - { - mkDerivation, - base, - indentation-core, - mtl, - parsec, - tasty, - tasty-hunit, - }: - mkDerivation { - pname = "indentation-parsec"; - version = "0.0.0.2"; - sha256 = "1m7jr1s7h4vrx0lbl88gjrpd6zgzalmqzqsv6rn5s17ay5p88dqf"; - libraryHaskellDepends = [ - base - indentation-core - mtl - parsec - ]; - testHaskellDepends = [ - base - parsec - tasty - tasty-hunit - ]; - description = "Indentation sensitive parsing combinators for Parsec"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "indentation-trifecta" = callPackage ( - { - mkDerivation, - base, - indentation-core, - mtl, - parsers, - tasty, - tasty-hunit, - trifecta, - }: - mkDerivation { - pname = "indentation-trifecta"; - version = "0.1.0"; - sha256 = "1za8x4w26ifxvfv5xra5xpykr67ari91c4p0vca89y28q54l9qpj"; - libraryHaskellDepends = [ - base - indentation-core - mtl - parsers - trifecta - ]; - testHaskellDepends = [ - base - tasty - tasty-hunit - trifecta - ]; - description = "Indentation sensitive parsing combinators for Trifecta"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "indentparser" = callPackage ( { mkDerivation, @@ -376661,68 +217420,6 @@ self: { } ) { }; - "indexation" = callPackage ( - { - mkDerivation, - base, - bitvec, - bytestring, - cereal, - cereal-vector, - contravariant, - deepseq, - deferred-folds, - dense-int-set, - focus, - foldl, - hashable, - list-t, - mmorph, - potoki, - potoki-cereal, - profunctors, - stm-containers, - text, - transformers, - unordered-containers, - vector, - vector-th-unbox, - }: - mkDerivation { - pname = "indexation"; - version = "0.8"; - sha256 = "111ikvrmxhqb1idpc1n70hds6slp3c9i15pigmpldj73jxinqihf"; - libraryHaskellDepends = [ - base - bitvec - bytestring - cereal - cereal-vector - contravariant - deepseq - deferred-folds - dense-int-set - focus - foldl - hashable - list-t - mmorph - potoki - potoki-cereal - profunctors - stm-containers - text - transformers - unordered-containers - vector - vector-th-unbox - ]; - description = "Tools for entity indexation"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "indexed" = callPackage ( { mkDerivation, base }: mkDerivation { @@ -376759,60 +217456,6 @@ self: { } ) { }; - "indexed-do-notation" = callPackage ( - { - mkDerivation, - base, - haskell-src-meta, - indexed, - template-haskell, - }: - mkDerivation { - pname = "indexed-do-notation"; - version = "0.1"; - sha256 = "10yvbhjjzg19lyw9ynn2j1cyms2k4hxly5hmw0ad416f8zxmisf9"; - libraryHaskellDepends = [ - base - haskell-src-meta - indexed - template-haskell - ]; - description = "Do notation for indexed monads"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "indexed-extras" = callPackage ( - { - mkDerivation, - base, - bifunctors, - indexed, - mtl, - pointed, - }: - mkDerivation { - pname = "indexed-extras"; - version = "0.2"; - sha256 = "17rbk2kgiy04n48i6hk4lracwdl45qqklvs1lri7mma2r62f67xh"; - revision = "1"; - editedCabalFile = "0103q2ns33wmcnlhda2lcrz2x1kr2cyfxpv7akj6y09k7q19ir77"; - libraryHaskellDepends = [ - base - bifunctors - indexed - mtl - pointed - ]; - description = "Indexed functors, monads and comonads that require extensions to Haskell98"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "indexed-free" = callPackage ( { mkDerivation, @@ -376989,28 +217632,6 @@ self: { } ) { }; - "indextype" = callPackage ( - { - mkDerivation, - base, - hspec, - }: - mkDerivation { - pname = "indextype"; - version = "0.3.0.1"; - sha256 = "1v2jly7sn54bfz0swa9835l15f8r78zj6wqd8kavzwx00ini443i"; - libraryHaskellDepends = [ base ]; - testHaskellDepends = [ - base - hspec - ]; - description = "A series of type families and constraints for \"indexable\" types"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "indian-language-font-converter" = callPackage ( { mkDerivation, @@ -377034,41 +217655,6 @@ self: { } ) { }; - "indices" = callPackage ( - { - mkDerivation, - base, - criterion, - deepseq, - QuickCheck, - tagged, - template-haskell, - }: - mkDerivation { - pname = "indices"; - version = "1.7.1"; - sha256 = "1sy609gq9idk5x28wasd9i61jwhlpf9ls21jps1nw1dfymid41c5"; - libraryHaskellDepends = [ - base - tagged - template-haskell - ]; - testHaskellDepends = [ - base - QuickCheck - ]; - benchmarkHaskellDepends = [ - base - criterion - deepseq - ]; - description = "Multi-dimensional statically bounded indices"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "indieweb-algorithms" = callPackage ( { mkDerivation, @@ -377258,7 +217844,6 @@ self: { testToolDepends = [ tasty-discover ]; description = "Convenient imperative eDSL over Lorentz"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "indigo"; } ) { }; @@ -377306,41 +217891,6 @@ self: { } ) { }; - "inf-interval" = callPackage ( - { - mkDerivation, - array, - base, - deepseq, - QuickCheck, - text, - vector, - }: - mkDerivation { - pname = "inf-interval"; - version = "0.1.0.2"; - sha256 = "08fjmza05wlj11mvdjwfcp3fn6k5zi1hsld84805clipd55sbp0r"; - libraryHaskellDepends = [ - array - base - deepseq - vector - ]; - testHaskellDepends = [ - array - base - deepseq - QuickCheck - text - vector - ]; - description = "Non-contiguous interval data types with potentially infinite ranges"; - license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "infer-license" = callPackage ( { mkDerivation, @@ -377375,40 +217925,6 @@ self: { } ) { }; - "infer-upstream" = callPackage ( - { - mkDerivation, - ansi-wl-pprint, - base, - github, - optparse-applicative, - parsec, - process, - text, - }: - mkDerivation { - pname = "infer-upstream"; - version = "0.1.1.0"; - sha256 = "11v8njjinjqzqfa5hggj0r1gki3hz6y7cxj5qfnzxa77hdav10fa"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - ansi-wl-pprint - base - github - optparse-applicative - parsec - process - text - ]; - description = "Find the repository from where a given repo was forked"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - mainProgram = "infer-upstream"; - broken = true; - } - ) { }; - "infernal" = callPackage ( { mkDerivation, @@ -377535,7 +218051,6 @@ self: { ]; description = "A statically-typed functional scripting language"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; } ) { }; @@ -377600,7 +218115,6 @@ self: { executableHaskellDepends = [ base ]; description = "LSP for Inferno"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "inferno-lsp-server"; } ) { }; @@ -377738,50 +218252,6 @@ self: { } ) { }; - "infernu" = callPackage ( - { - mkDerivation, - base, - containers, - digits, - either, - fgl, - language-ecmascript, - mtl, - optparse-applicative, - parsec, - transformers, - }: - mkDerivation { - pname = "infernu"; - version = "0.0.0.1"; - sha256 = "0m4azl5pxypnf3q9riwf1gkwlfwrw5dswgrr2y9j1myb812ag5qn"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - containers - digits - either - fgl - language-ecmascript - mtl - optparse-applicative - parsec - transformers - ]; - executableHaskellDepends = [ - base - optparse-applicative - parsec - ]; - description = "Type inference and checker for JavaScript (experimental)"; - license = lib.licenses.gpl2Only; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "infinite-list" = callPackage ( { mkDerivation, @@ -377829,61 +218299,6 @@ self: { } ) { }; - "infinity" = callPackage ( - { - mkDerivation, - base, - binary, - Cabal, - filepath, - ghc, - irc, - plugins, - }: - mkDerivation { - pname = "infinity"; - version = "0.3"; - sha256 = "1d2l6a4ngawm7zqgfwxd19rh3zwihivbgns39q44yjh1d5v0azab"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - binary - Cabal - filepath - ghc - irc - plugins - ]; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "infinity"; - } - ) { }; - - "infix" = callPackage ( - { - mkDerivation, - base, - containers, - haskell-src, - }: - mkDerivation { - pname = "infix"; - version = "0.1.1"; - sha256 = "156lcw4bvav9w41vggfjk84z41ppam31880wpislxwcsvc9jrd6q"; - libraryHaskellDepends = [ - base - containers - haskell-src - ]; - description = "Infix expression re-parsing (for HsParser library)"; - license = "GPL"; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "inflections" = callPackage ( { mkDerivation, @@ -377925,31 +218340,6 @@ self: { } ) { }; - "inflist" = callPackage ( - { - mkDerivation, - base, - QuickCheck, - }: - mkDerivation { - pname = "inflist"; - version = "0.0.1"; - sha256 = "0srw75ds7hic0sjs2fnj0hsqsygzvppgy17y8qmsjz9z14ryqncw"; - libraryHaskellDepends = [ - base - QuickCheck - ]; - testHaskellDepends = [ - base - QuickCheck - ]; - description = "An infinite list type and operations thereon"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "influxdb" = callPackage ( { mkDerivation, @@ -378029,81 +218419,6 @@ self: { } ) { }; - "informative" = callPackage ( - { - mkDerivation, - base, - containers, - csv, - highlighting-kate, - http-conduit, - monad-logger, - pandoc, - persistent, - persistent-postgresql, - shakespeare, - text, - time, - time-locale-compat, - yesod, - yesod-auth, - yesod-core, - yesod-form, - }: - mkDerivation { - pname = "informative"; - version = "0.1.0.27"; - sha256 = "05h69883lmj9d80h847yig0ryl1a49y7pckdhq8gl9ahx3hzsgyh"; - revision = "1"; - editedCabalFile = "1bcdaykax075cal066v7j3f1jmbhkqpql0wkj3dny6ww9jdvq1ws"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - containers - csv - highlighting-kate - http-conduit - monad-logger - pandoc - persistent - persistent-postgresql - shakespeare - text - time - time-locale-compat - yesod - yesod-auth - yesod-core - yesod-form - ]; - executableHaskellDepends = [ - base - containers - csv - highlighting-kate - http-conduit - monad-logger - pandoc - persistent - persistent-postgresql - shakespeare - text - time - time-locale-compat - yesod - yesod-auth - yesod-core - yesod-form - ]; - description = "A yesod subsite serving a wiki"; - license = lib.licenses.agpl3Only; - hydraPlatforms = lib.platforms.none; - mainProgram = "informative-test"; - broken = true; - } - ) { }; - "ini" = callPackage ( { mkDerivation, @@ -378133,98 +218448,6 @@ self: { } ) { }; - "ini-qq" = callPackage ( - { - mkDerivation, - base, - HUnit, - ini, - raw-strings-qq, - template-haskell, - text, - }: - mkDerivation { - pname = "ini-qq"; - version = "0.1.0.0"; - sha256 = "1szsx2jdq4qqjrj4z5xvwzx35j6apf7i1p4iqbiy0z9hyfh9splc"; - libraryHaskellDepends = [ - base - ini - template-haskell - text - ]; - testHaskellDepends = [ - base - HUnit - ini - raw-strings-qq - text - ]; - description = "Quasiquoter for INI"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "inilist" = callPackage ( - { - mkDerivation, - base, - bifunctors, - containers, - deepseq, - HUnit, - safe, - tasty, - tasty-hunit, - testpack, - trifecta, - }: - mkDerivation { - pname = "inilist"; - version = "0.2.0.0"; - sha256 = "1rr71yajc6j0idsqgna8mbnawiv6iw1x8kswkv7x2l0ih89r6y3a"; - libraryHaskellDepends = [ - base - bifunctors - containers - safe - trifecta - ]; - testHaskellDepends = [ - base - bifunctors - containers - deepseq - HUnit - safe - tasty - tasty-hunit - testpack - trifecta - ]; - description = "Processing for .ini files with duplicate sections and options"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "initialize" = callPackage ( - { mkDerivation, base }: - mkDerivation { - pname = "initialize"; - version = "0.1.1.0"; - sha256 = "0k3bl5adj512bzqysapnggvf6fmi0hs3mvxkymsh9af7gan8y504"; - libraryHaskellDepends = [ base ]; - description = "Initialization and Deinitialization of 'Storable' values"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "inj" = callPackage ( { mkDerivation }: mkDerivation { @@ -378236,27 +218459,6 @@ self: { } ) { }; - "inj-base" = callPackage ( - { - mkDerivation, - base, - inj, - }: - mkDerivation { - pname = "inj-base"; - version = "0.2.0.0"; - sha256 = "1cvhk4ww55nd85rwhaagaz2fihcakrqxy9r37jdp3jghaybk9p9d"; - libraryHaskellDepends = [ - base - inj - ]; - description = "'Inj' instances for 'base'"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "inject" = callPackage ( { mkDerivation, @@ -378297,20 +218499,6 @@ self: { } ) { }; - "inject-function" = callPackage ( - { mkDerivation, base }: - mkDerivation { - pname = "inject-function"; - version = "0.2.1.0"; - sha256 = "1iw82rzw2w3y40zndz3mxpa7k5ds8zs87ccvp228s4zva0mp5ddl"; - libraryHaskellDepends = [ base ]; - description = "Monadic functions with injected parameters"; - license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "injections" = callPackage ( { mkDerivation, @@ -379011,31 +219199,6 @@ self: { } ) { }; - "inserts" = callPackage ( - { - mkDerivation, - attoparsec, - base, - bytestring, - dlist, - }: - mkDerivation { - pname = "inserts"; - version = "0.1.2"; - sha256 = "1m72ysfd2g2jszvcihh7zbfxvpj2a8qjq3ra4vs4bjzpja4kh477"; - libraryHaskellDepends = [ - attoparsec - base - bytestring - dlist - ]; - description = "Stupid simple bytestring templates"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "inspection-proxy" = callPackage ( { mkDerivation, @@ -379094,53 +219257,6 @@ self: { } ) { }; - "inspector-wrecker" = callPackage ( - { - mkDerivation, - aeson, - base, - bytestring, - case-insensitive, - connection, - data-default, - http-client, - http-client-tls, - http-types, - optparse-applicative, - text, - time, - wrecker, - }: - mkDerivation { - pname = "inspector-wrecker"; - version = "0.1.0.0"; - sha256 = "1va2v9gmicyd7d93x9rgdg814dbmfwddgvwfdv31krba0iigpg3i"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson - base - bytestring - case-insensitive - connection - data-default - http-client - http-client-tls - http-types - optparse-applicative - text - time - wrecker - ]; - executableHaskellDepends = [ base ]; - testHaskellDepends = [ base ]; - description = "Create benchmarks from the HAR files"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "inspector-wrecker-exe"; - } - ) { }; - "instana-haskell-trace-sdk" = callPackage ( { mkDerivation, @@ -379282,294 +219398,6 @@ self: { } ) { }; - "instance-control" = callPackage ( - { - mkDerivation, - base, - mtl, - transformers, - }: - mkDerivation { - pname = "instance-control"; - version = "0.1.2.0"; - sha256 = "0wvb3hia5n0nmfd5ih17qp6f7517s164c5mhrn29ai7vv20x6vbx"; - libraryHaskellDepends = [ - base - mtl - transformers - ]; - description = "Controls how the compiler searches for instances using type families"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "instance-map" = callPackage ( - { - mkDerivation, - aeson, - base, - binary, - bytestring, - containers, - hspec, - mtl, - template-haskell, - }: - mkDerivation { - pname = "instance-map"; - version = "0.1.0.0"; - sha256 = "03mzwprhi98jmsr5qg3zm71rg01nbkxf53qqqfjrnar3qw3drk16"; - libraryHaskellDepends = [ - base - containers - mtl - template-haskell - ]; - testHaskellDepends = [ - aeson - base - binary - bytestring - containers - hspec - mtl - template-haskell - ]; - description = "Template haskell utilities for helping with deserialization etc. of existential types"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "instant-aeson" = callPackage ( - { - mkDerivation, - aeson, - base, - instant-generics, - tasty, - tasty-quickcheck, - }: - mkDerivation { - pname = "instant-aeson"; - version = "0.2"; - sha256 = "08m2ddgqp22lvsd5mz97mm84lvbkpjmjw5lw5karppn3mqc3vm4q"; - libraryHaskellDepends = [ - aeson - base - instant-generics - ]; - testHaskellDepends = [ - aeson - base - instant-generics - tasty - tasty-quickcheck - ]; - description = "Generic Aeson instances through instant-generics"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "instant-bytes" = callPackage ( - { - mkDerivation, - base, - bytes, - instant-generics, - tasty, - tasty-quickcheck, - }: - mkDerivation { - pname = "instant-bytes"; - version = "0.2"; - sha256 = "1xgrfhhdv7r9dnblk3v9sbsfgg5bqm9y03d32gjc16irr82wh377"; - libraryHaskellDepends = [ - base - bytes - instant-generics - ]; - testHaskellDepends = [ - base - bytes - instant-generics - tasty - tasty-quickcheck - ]; - description = "Generic Serial instances through instant-generics"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "instant-deepseq" = callPackage ( - { - mkDerivation, - base, - deepseq, - instant-generics, - }: - mkDerivation { - pname = "instant-deepseq"; - version = "0.2"; - sha256 = "088fwsj4hllp96ik91wpqyjfjcb5n64sb6b4fqfvplcsn3zzlvv0"; - libraryHaskellDepends = [ - base - deepseq - instant-generics - ]; - description = "Generic NFData instances through instant-generics"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "instant-generics" = callPackage ( - { - mkDerivation, - base, - containers, - syb, - template-haskell, - }: - mkDerivation { - pname = "instant-generics"; - version = "0.6"; - sha256 = "05ggwx62y2f9dp6rl3jwnz0p76hcaplvmmnx24g38q5hq1k0apmi"; - revision = "1"; - editedCabalFile = "1z5224dfrwlz29clxb2x2s4cn88sfgmq4264zj4vgkkgakvp848w"; - libraryHaskellDepends = [ - base - containers - syb - template-haskell - ]; - description = "Generic programming library with a sum of products view"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "instant-hashable" = callPackage ( - { - mkDerivation, - base, - hashable, - instant-generics, - }: - mkDerivation { - pname = "instant-hashable"; - version = "0.2"; - sha256 = "0xrs81j6dmwd5xb69rn24ibngkhrs51n9kr8bs292vhj0awm3y4b"; - libraryHaskellDepends = [ - base - hashable - instant-generics - ]; - description = "Generic Hashable instances through instant-generics"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "instant-zipper" = callPackage ( - { - mkDerivation, - base, - instant-generics, - mtl, - }: - mkDerivation { - pname = "instant-zipper"; - version = "0.0.0"; - sha256 = "0gd5hzlm5rlmzba2dl37al711vp1nn2b30d36rvb2j8y90y8c44c"; - revision = "1"; - editedCabalFile = "0dy0p5j3d2j9djrsia72c3hij1c4l7kzryr0inhzmvp3sc85bqd0"; - libraryHaskellDepends = [ - base - instant-generics - mtl - ]; - description = "Heterogenous Zipper in Instant Generics"; - license = "GPL"; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "instapaper-sender" = callPackage ( - { - mkDerivation, - aeson, - base, - bytestring, - data-default-class, - HaskellNet, - HaskellNet-SSL, - http-types, - network, - scotty, - text, - wai, - wai-extra, - }: - mkDerivation { - pname = "instapaper-sender"; - version = "0.1.0.2"; - sha256 = "16f1n7nf8yfs626qx6p5m3i6pzymbjk1gxn4v721bbi8aqkjfjy1"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - aeson - base - bytestring - data-default-class - HaskellNet - HaskellNet-SSL - http-types - network - scotty - text - wai - wai-extra - ]; - description = "Basic HTTP gateway to save articles to Instapaper"; - license = lib.licenses.agpl3Only; - hydraPlatforms = lib.platforms.none; - mainProgram = "instapaper-sender"; - broken = true; - } - ) { }; - - "instinct" = callPackage ( - { - mkDerivation, - base, - containers, - mersenne-random, - vector, - }: - mkDerivation { - pname = "instinct"; - version = "0.1.0"; - sha256 = "0wh95zjdv9j1n3ccg2j08av43qnb9vmiyvqvyi70p47dr481npl8"; - libraryHaskellDepends = [ - base - containers - mersenne-random - vector - ]; - description = "Fast artifical neural networks"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "instrument" = callPackage ( { mkDerivation, @@ -379880,45 +219708,6 @@ self: { } ) { }; - "int-multimap" = callPackage ( - { - mkDerivation, - base, - containers, - hashable, - tasty, - tasty-hunit, - tasty-quickcheck, - unordered-containers, - }: - mkDerivation { - pname = "int-multimap"; - version = "0.3.1"; - sha256 = "0sl3xzlw0mzyq1h28mqklm41q9pknsf1qmd74a5syn24m01dknnv"; - revision = "1"; - editedCabalFile = "09lnidjri2z00mfbn73cc9mzbgadmlcym9y1hia0c219dm8zjrh0"; - libraryHaskellDepends = [ - base - containers - hashable - unordered-containers - ]; - testHaskellDepends = [ - base - containers - hashable - tasty - tasty-hunit - tasty-quickcheck - unordered-containers - ]; - description = "A data structure that associates each Int key with a set of values"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "int-supply" = callPackage ( { mkDerivation, base }: mkDerivation { @@ -380068,19 +219857,6 @@ self: { } ) { }; - "integer-pure" = callPackage ( - { mkDerivation }: - mkDerivation { - pname = "integer-pure"; - version = "1.0"; - sha256 = "0lrhf6mw90bfph3hbyxv3n7g2n2xnjfq4qnhyhw4ml76k4yybmxa"; - description = "A pure-Haskell implementation of arbitrary-precision Integers"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "integer-roots" = callPackage ( { mkDerivation, @@ -380113,20 +219889,6 @@ self: { } ) { }; - "integer-simple" = callPackage ( - { mkDerivation, ghc-prim }: - mkDerivation { - pname = "integer-simple"; - version = "0.1.1.1"; - sha256 = "1z8hfl4wnsb3bypv3arms0sbvixkalhlcchv35vwziy5wnflnsvn"; - libraryHaskellDepends = [ ghc-prim ]; - description = "Simple Integer library"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "integer-types" = callPackage ( { mkDerivation, @@ -380185,125 +219947,6 @@ self: { } ) { }; - "integreat" = callPackage ( - { - mkDerivation, - aeson, - async, - base, - bytestring, - cassava, - containers, - fgl, - foldl, - hmatrix, - lens, - mtl, - mwc-random, - optparse-generic, - parallel, - random-fu, - rank-product, - sequence, - statistics, - stringsearch, - text, - text-show, - vector, - vector-th-unbox, - }: - mkDerivation { - pname = "integreat"; - version = "0.2.2.1"; - sha256 = "1kyahjbvl6y53ymlnzmjgpi32wdnnq0pwamb7fbzcf3mh94l57lz"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson - async - base - bytestring - cassava - containers - fgl - foldl - hmatrix - lens - mtl - mwc-random - parallel - random-fu - rank-product - sequence - statistics - stringsearch - text - text-show - vector - vector-th-unbox - ]; - executableHaskellDepends = [ - base - bytestring - cassava - containers - lens - mtl - optparse-generic - text - vector - ]; - description = "Integrate different assays"; - license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - mainProgram = "integreat"; - } - ) { }; - - "intel-aes" = callPackage ( - { - mkDerivation, - base, - bytestring, - cereal, - crypto-api, - DRBG, - intel_aes, - largeword, - process, - random, - rdtsc, - split, - tagged, - time, - unix, - }: - mkDerivation { - pname = "intel-aes"; - version = "0.2.1.1"; - sha256 = "11cy9dlynlz9mgbs4w4xfjb9dx05dklfjl3gg2130si8q2kk3cm9"; - libraryHaskellDepends = [ - base - bytestring - cereal - crypto-api - DRBG - largeword - process - random - rdtsc - split - tagged - time - unix - ]; - librarySystemDepends = [ intel_aes ]; - description = "Hardware accelerated AES encryption and Random Number Generation"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { intel_aes = null; }; - "intel-powermon" = callPackage ( { mkDerivation, @@ -380412,121 +220055,6 @@ self: { } ) { }; - "intensional-datatys" = callPackage ( - { - mkDerivation, - aeson, - base, - containers, - directory, - extra, - filepath, - ghc, - hashable, - haskeline, - mtl, - unordered-containers, - }: - mkDerivation { - pname = "intensional-datatys"; - version = "0.2.0.0"; - sha256 = "194f5z6h1pl5jh26zl1rw3d16q60m04a3wdy16vfvwaj2w1bkgz2"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson - base - containers - directory - extra - filepath - ghc - hashable - haskeline - mtl - unordered-containers - ]; - testHaskellDepends = [ base ]; - doHaddock = false; - description = "A GHC Core plugin for intensional datatype refinement checking"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "interact" = callPackage ( - { - mkDerivation, - base, - bytestring, - hspec, - main-tester, - mtl, - silently, - }: - mkDerivation { - pname = "interact"; - version = "0.2.0.0"; - sha256 = "0fnzhcdyd95z5jll88y8zi9dgr2z55w0ddiv4kfyjxy6jampdypj"; - libraryHaskellDepends = [ - base - mtl - ]; - testHaskellDepends = [ - base - bytestring - hspec - main-tester - mtl - silently - ]; - description = "instantly create REPL from any function"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "interactive-plot" = callPackage ( - { - mkDerivation, - base, - containers, - data-default-class, - microlens, - microlens-th, - MonadRandom, - mtl, - transformers, - vty, - }: - mkDerivation { - pname = "interactive-plot"; - version = "0.1.0.0"; - sha256 = "0iq7y0vxn7cqrlqd0iqfk6cy80sc4ijln9mwm5r24v94s8cq1rkn"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - containers - data-default-class - microlens - microlens-th - MonadRandom - mtl - transformers - vty - ]; - executableHaskellDepends = [ base ]; - description = "Interactive quick time series plotting"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "interactive-plot-demo"; - broken = true; - } - ) { }; - "interchangeable" = callPackage ( { mkDerivation, @@ -380546,57 +220074,6 @@ self: { } ) { }; - "interleavableGen" = callPackage ( - { - mkDerivation, - base, - directory, - haskell-src, - hint, - mtl, - }: - mkDerivation { - pname = "interleavableGen"; - version = "0.0.1"; - sha256 = "10clafccpg8xciqhj2hzbi4kixzprgp733396qf531nwakvnqpp2"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - directory - haskell-src - hint - mtl - ]; - description = "Generates a version of a module using InterleavableIO"; - license = "unknown"; - hydraPlatforms = lib.platforms.none; - mainProgram = "interleavableGen"; - broken = true; - } - ) { }; - - "interleavableIO" = callPackage ( - { - mkDerivation, - base, - mtl, - }: - mkDerivation { - pname = "interleavableIO"; - version = "0.0.1"; - sha256 = "19jdrfr6n6yzvj1i8r7hhr3k6zkkbrs6pizqcbzhb0nvzzshmqa8"; - libraryHaskellDepends = [ - base - mtl - ]; - description = "Use other Monads in functions that asks for an IO Monad"; - license = "unknown"; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "interleave" = callPackage ( { mkDerivation, base }: mkDerivation { @@ -380622,47 +220099,6 @@ self: { } ) { }; - "interlude-l" = callPackage ( - { - mkDerivation, - aeson, - base, - exceptions, - lens, - monad-control, - MonadRandom, - mtl, - protolude, - string-conv, - text, - transformers, - witherable, - }: - mkDerivation { - pname = "interlude-l"; - version = "0.5.0.0"; - sha256 = "1p3qv356lqw5m88wilj7mb2hyqhbcd67rcg9kdaqg3pibmyiq3bx"; - libraryHaskellDepends = [ - aeson - base - exceptions - lens - monad-control - MonadRandom - mtl - protolude - string-conv - text - transformers - witherable - ]; - description = "Prelude replacement based on protolude"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "intermediate-structures" = callPackage ( { mkDerivation, base }: mkDerivation { @@ -380737,208 +220173,6 @@ self: { } ) { }; - "intero" = callPackage ( - { - mkDerivation, - array, - base, - bytestring, - containers, - directory, - filepath, - ghc, - ghc-boot-th, - ghc-paths, - ghci, - haskeline, - hspec, - mtl, - network, - process, - random, - regex-compat, - syb, - temporary, - time, - transformers, - unix, - }: - mkDerivation { - pname = "intero"; - version = "0.1.40"; - sha256 = "09p5bjjqagbz1xkcfd5psmgxbg3z057kyv39j0i63g4q484zznz3"; - isLibrary = false; - isExecutable = true; - enableSeparateDataOutput = true; - executableHaskellDepends = [ - array - base - bytestring - containers - directory - filepath - ghc - ghc-boot-th - ghc-paths - ghci - haskeline - mtl - network - process - random - syb - time - transformers - unix - ]; - testHaskellDepends = [ - base - directory - filepath - hspec - process - regex-compat - temporary - transformers - ]; - description = "Complete interactive development program for Haskell"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "intero"; - broken = true; - } - ) { }; - - "interp" = callPackage ( - { - mkDerivation, - aeson, - base, - bytestring, - containers, - hspec, - megaparsec, - mtl, - optparse-applicative, - parser-combinators, - random-fu, - rvar, - semigroups, - text, - transformers, - unordered-containers, - vector, - }: - mkDerivation { - pname = "interp"; - version = "1.0.0.2"; - sha256 = "036j44vrvgvxvnlj57mkg4h8cc6dycxfrszmgai70mybr3bxvhd5"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson - base - bytestring - containers - hspec - megaparsec - mtl - optparse-applicative - parser-combinators - random-fu - rvar - semigroups - text - transformers - unordered-containers - vector - ]; - executableHaskellDepends = [ - aeson - base - bytestring - containers - hspec - megaparsec - mtl - optparse-applicative - parser-combinators - random-fu - rvar - semigroups - text - transformers - unordered-containers - vector - ]; - testHaskellDepends = [ - aeson - base - bytestring - containers - hspec - megaparsec - mtl - optparse-applicative - parser-combinators - random-fu - rvar - semigroups - text - transformers - unordered-containers - vector - ]; - description = "Tracery-like randomized text interpolation"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "interp"; - broken = true; - } - ) { }; - - "interpol" = callPackage ( - { - mkDerivation, - base, - haskell-src-exts, - HUnit, - regex-posix, - syb, - test-framework, - test-framework-hunit, - }: - mkDerivation { - pname = "interpol"; - version = "0.2.3"; - sha256 = "11awkl6rgy33yl4qcnf7ns464c87xjk9hqcf10z8shjjbaadbz43"; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ base ]; - executableHaskellDepends = [ - base - haskell-src-exts - regex-posix - syb - ]; - testHaskellDepends = [ - base - haskell-src-exts - HUnit - regex-posix - syb - test-framework - test-framework-hunit - ]; - description = "GHC preprocessor and library to enable variable interpolation in strings"; - license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - mainProgram = "interpol"; - broken = true; - } - ) { }; - "interpolate" = callPackage ( { mkDerivation, @@ -381010,88 +220244,6 @@ self: { } ) { }; - "interpolatedstring-qq" = callPackage ( - { - mkDerivation, - base, - haskell-src-meta-mwotton, - template-haskell, - }: - mkDerivation { - pname = "interpolatedstring-qq"; - version = "0.2"; - sha256 = "1bqn9gqc43r158hyk35x8avsiqyd43vlpw2jkhpdfmr2wx29jprq"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base - haskell-src-meta-mwotton - template-haskell - ]; - description = "QuasiQuoter for Ruby-style multi-line interpolated strings"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "interpolatedstring-qq-mwotton" = callPackage ( - { - mkDerivation, - base, - haskell-src-meta-mwotton, - template-haskell, - }: - mkDerivation { - pname = "interpolatedstring-qq-mwotton"; - version = "0.1.1"; - sha256 = "1cwhy4jwbl50nglfw0wfmdr3rrg33dqskw0wq06prx14x22yshbk"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base - haskell-src-meta-mwotton - template-haskell - ]; - description = "DO NOT USE THIS. interpolatedstring-qq works now."; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "interpolatedstring-qq2" = callPackage ( - { - mkDerivation, - base, - bytestring, - haskell-src-meta, - HUnit, - template-haskell, - text, - }: - mkDerivation { - pname = "interpolatedstring-qq2"; - version = "0.1.0.0"; - sha256 = "0d7xq1pdrhfl1vfl1axhzpv04hbc9yhvfagisrfq42hj6mbh8djx"; - libraryHaskellDepends = [ - base - bytestring - haskell-src-meta - template-haskell - text - ]; - testHaskellDepends = [ - base - bytestring - haskell-src-meta - HUnit - template-haskell - text - ]; - description = "QuasiQuoter for multi-line interpolated strings"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "interpolation" = callPackage ( { mkDerivation, @@ -381130,60 +220282,6 @@ self: { } ) { }; - "interpolator" = callPackage ( - { - mkDerivation, - aeson, - base, - containers, - either, - hspec, - mono-traversable, - mtl, - product-profunctors, - profunctors, - QuickCheck, - template-haskell, - text, - }: - mkDerivation { - pname = "interpolator"; - version = "1.1.0.2"; - sha256 = "1lrng3y109brnm6jlqnbhrdi38qgwlb0lymxjdv2yv71x7rwdgvf"; - libraryHaskellDepends = [ - aeson - base - containers - either - mono-traversable - mtl - product-profunctors - profunctors - QuickCheck - template-haskell - text - ]; - testHaskellDepends = [ - aeson - base - containers - either - hspec - mono-traversable - mtl - product-profunctors - profunctors - QuickCheck - template-haskell - text - ]; - description = "Runtime interpolation of environment variables in records using profunctors"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "interprocess" = callPackage ( { mkDerivation, @@ -381216,97 +220314,6 @@ self: { } ) { }; - "interruptible" = callPackage ( - { - mkDerivation, - base, - Cabal, - either, - lifted-base, - monad-control, - transformers, - }: - mkDerivation { - pname = "interruptible"; - version = "0.1.1.1"; - sha256 = "0p0ymy8aqijjlsya2p2bnz3fb8whmk1x6pc4qznl2c6hg3qr5vyk"; - revision = "2"; - editedCabalFile = "106fcwbffmvimwj3d7immqsjd34k5h9l0a5ci7i32p4b6pa1apcr"; - libraryHaskellDepends = [ - base - either - lifted-base - monad-control - transformers - ]; - testHaskellDepends = [ - base - Cabal - either - transformers - ]; - description = "Monad transformers that can be run and resumed later, conserving their context"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "interspersed" = callPackage ( - { - mkDerivation, - base, - base-prelude, - transformers, - }: - mkDerivation { - pname = "interspersed"; - version = "0.1.2"; - sha256 = "1z0ca16vp3j9l2nkzg8gck2jrysqn2fw4vxr2br0j41fp7iss5wx"; - libraryHaskellDepends = [ - base - base-prelude - transformers - ]; - description = "An abstraction over interspersing monadic actions"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "interval" = callPackage ( - { - mkDerivation, - base, - deepseq, - fingertree, - tasty, - tasty-hunit, - }: - mkDerivation { - pname = "interval"; - version = "1.20160821"; - sha256 = "1pfa78ljkmldzhrz2rb78zfjhypcpnyx9nj7mba3k1kc578gagkp"; - revision = "1"; - editedCabalFile = "1a46slb1q3wr909lis1j146i0iar32y0i8mr0j43mripc9cr437s"; - libraryHaskellDepends = [ - base - deepseq - fingertree - ]; - testHaskellDepends = [ - base - tasty - tasty-hunit - ]; - description = "Intervals with adherences"; - license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "interval-algebra" = callPackage ( { mkDerivation, @@ -381590,235 +220597,6 @@ self: { } ) { }; - "intrinsic-superclasses" = callPackage ( - { - mkDerivation, - base, - containers, - haskell-src-meta, - mtl, - template-haskell, - }: - mkDerivation { - pname = "intrinsic-superclasses"; - version = "0.4.0.0"; - sha256 = "1lnb1sp77fdszz3d4qxgyynla037vn2a4c9wkv2fjjaghbsb1csi"; - libraryHaskellDepends = [ - base - containers - haskell-src-meta - mtl - template-haskell - ]; - description = "A quasiquoter for better instance deriving and default methods"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "intro" = callPackage ( - { - mkDerivation, - base, - bytestring, - containers, - extra, - hashable, - lens, - mtl, - optics, - QuickCheck, - safe, - text, - transformers, - unordered-containers, - writer-cps-mtl, - }: - mkDerivation { - pname = "intro"; - version = "0.9.0.0"; - sha256 = "0x48bj9nri2zhsjpwx08nvjmpsjq6zd61npa02zsf357wylxir0x"; - libraryHaskellDepends = [ - base - bytestring - containers - extra - hashable - mtl - safe - text - transformers - unordered-containers - writer-cps-mtl - ]; - testHaskellDepends = [ - base - bytestring - containers - extra - hashable - lens - mtl - optics - QuickCheck - safe - text - transformers - unordered-containers - writer-cps-mtl - ]; - description = "Safe and minimal prelude"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "intro-prelude" = callPackage ( - { mkDerivation, intro }: - mkDerivation { - pname = "intro-prelude"; - version = "0.1.0.0"; - sha256 = "1fmabxbg8a0hmrgiflbn3vqni1sly14pnjvqngszyv2m7x3g6bb0"; - revision = "1"; - editedCabalFile = "1rjxxkd8cjxkk481sg4a2b5k5bzmwdzg7qpaf28yl9ibn3aavzx6"; - libraryHaskellDepends = [ intro ]; - testHaskellDepends = [ intro ]; - doHaddock = false; - description = "Intro reexported as Prelude"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "introduction" = callPackage ( - { - mkDerivation, - async, - base, - bytestring, - containers, - deepseq, - exceptions, - filepath, - ghc-prim, - lifted-base, - monad-control, - mtl, - path, - path-io, - safe, - stm, - string-conv, - text, - transformers, - transformers-base, - validity, - validity-containers, - }: - mkDerivation { - pname = "introduction"; - version = "0.0.1.0"; - sha256 = "0g6d2h1gxhyk9c63czbmrcfgvrhi3szbj1srv61wa9imhr6iw1ja"; - libraryHaskellDepends = [ - async - base - bytestring - containers - deepseq - exceptions - filepath - ghc-prim - lifted-base - monad-control - mtl - path - path-io - safe - stm - string-conv - text - transformers - transformers-base - validity - validity-containers - ]; - description = "A prelude for safe new projects"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "introduction-test" = callPackage ( - { - mkDerivation, - base, - bytestring, - containers, - filepath, - genvalidity, - genvalidity-containers, - genvalidity-hspec, - genvalidity-text, - hspec, - introduction, - path, - path-io, - QuickCheck, - time, - }: - mkDerivation { - pname = "introduction-test"; - version = "0.0.1.0"; - sha256 = "1fri7zmk707cirns21hanmg4rs6g7i07bdlgypa8d2s8jgzr309r"; - libraryHaskellDepends = [ - base - bytestring - containers - filepath - genvalidity - genvalidity-containers - genvalidity-hspec - genvalidity-text - hspec - introduction - path - path-io - QuickCheck - time - ]; - description = "A prelude for the tests of safe new projects"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "intset" = callPackage ( - { - mkDerivation, - base, - bits-extras, - bytestring, - deepseq, - }: - mkDerivation { - pname = "intset"; - version = "0.1.1.0"; - sha256 = "044nw8z2ga46mal9pr64vsc714n4dibx0k2lwgnrkk49729c7lk0"; - libraryHaskellDepends = [ - base - bits-extras - bytestring - deepseq - ]; - description = "Pure, mergeable, succinct Int sets"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "intset-imperative" = callPackage ( { mkDerivation, @@ -382098,184 +220876,41 @@ self: { bifunctors containers mtl - prettyprinter - profunctors - semigroups - tagged - template-haskell - text - transformers - ]; - description = "Invertible parsing combinators framework"; - license = lib.licenses.bsd3; - } - ) { }; - - "invertible-hlist" = callPackage ( - { - mkDerivation, - base, - HList, - invertible, - }: - mkDerivation { - pname = "invertible-hlist"; - version = "0.2.0.2"; - sha256 = "1824j4k8y5mn16vyk1h3mb72gr19j6rc833w24yqjxjlqw81y3y5"; - libraryHaskellDepends = [ - base - HList - invertible - ]; - description = "invertible functions and instances for HList"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "invertible-hxt" = callPackage ( - { - mkDerivation, - base, - hxt, - hxt-charproperties, - invertible, - mtl, - }: - mkDerivation { - pname = "invertible-hxt"; - version = "0.1"; - sha256 = "154fm1slk8cn3dqyniz0wqb2gq4byshj1gjbzpc37fb7cs2bmlxd"; - libraryHaskellDepends = [ - base - hxt - hxt-charproperties - invertible - mtl - ]; - description = "invertible transformer instances for HXT Picklers"; - license = lib.licenses.bsd3; - } - ) { }; - - "invertible-syntax" = callPackage ( - { - mkDerivation, - base, - partial-isomorphisms, - }: - mkDerivation { - pname = "invertible-syntax"; - version = "0.2.1"; - sha256 = "0kyi7gq0a792v4lwmpq8i56vzwk6g7cjc3lbpxch47jsqv8lfhbp"; - libraryHaskellDepends = [ - base - partial-isomorphisms - ]; - description = "Invertible syntax descriptions for both parsing and pretty printing"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "involutive-semigroups" = callPackage ( - { - mkDerivation, - base, - bytestring, - containers, - text, - vector, - }: - mkDerivation { - pname = "involutive-semigroups"; - version = "0.1.0.0"; - sha256 = "1nms6w5b8apdz9xlwdqyj9n4m0b192simxg9zl7pv8zkyklyb3aw"; - libraryHaskellDepends = [ - base - bytestring - containers - text - vector - ]; - description = "Semigroups with involution"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "io-capture" = callPackage ( - { - mkDerivation, - base, - bytestring, - hspec, - hspec-core, - streaming-bytestring, - unix, - }: - mkDerivation { - pname = "io-capture"; - version = "1.0.0"; - sha256 = "0iy8wpmc906na2p6zj3v4nw7cnd18vmdbn40pwz8y6cxrdl5p246"; - libraryHaskellDepends = [ - base - bytestring - streaming-bytestring - unix - ]; - testHaskellDepends = [ - base - bytestring - hspec - hspec-core - streaming-bytestring - unix + prettyprinter + profunctors + semigroups + tagged + template-haskell + text + transformers ]; - description = "Capture IO actions' stdout and stderr"; + description = "Invertible parsing combinators framework"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; } ) { }; - "io-choice" = callPackage ( + "invertible-hxt" = callPackage ( { mkDerivation, base, - hspec, - lifted-base, - monad-control, - template-haskell, - transformers, - transformers-base, + hxt, + hxt-charproperties, + invertible, + mtl, }: mkDerivation { - pname = "io-choice"; - version = "0.0.7"; - sha256 = "16v6b9r5k2y5vm2s8k3j7xc5wh77nqd8j636mc6wxcxwn3260jir"; + pname = "invertible-hxt"; + version = "0.1"; + sha256 = "154fm1slk8cn3dqyniz0wqb2gq4byshj1gjbzpc37fb7cs2bmlxd"; libraryHaskellDepends = [ base - lifted-base - monad-control - template-haskell - transformers - transformers-base - ]; - testHaskellDepends = [ - base - hspec - lifted-base - monad-control - transformers + hxt + hxt-charproperties + invertible + mtl ]; - description = "Choice for IO and lifted IO"; + description = "invertible transformer instances for HXT Picklers"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; } ) { }; @@ -382447,24 +221082,6 @@ self: { } ) { }; - "io-reactive" = callPackage ( - { mkDerivation, base }: - mkDerivation { - pname = "io-reactive"; - version = "0.1.1"; - sha256 = "09iq8c86ql0hmzdf7i82lpdqa6nn6r0zy9lgryd6chkxd0kcpgvn"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base ]; - executableHaskellDepends = [ base ]; - description = "An API for generating TIMBER style reactive objects"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "io-reactive-test"; - broken = true; - } - ) { }; - "io-region" = callPackage ( { mkDerivation, @@ -382766,69 +221383,6 @@ self: { } ) { }; - "ioctl" = callPackage ( - { - mkDerivation, - base, - network, - unix, - }: - mkDerivation { - pname = "ioctl"; - version = "0.0.1"; - sha256 = "0rwh7mlwdd24ndzz4b4vd5b5daz9cga47m9nz6g75m03iyy237qs"; - revision = "1"; - editedCabalFile = "15i0plam5pr3zkvmmy0g5q9v1fwvp49r4gsyx3y5j89svyffwqaq"; - libraryHaskellDepends = [ - base - network - unix - ]; - description = "Type-safe I/O control package"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "ion" = callPackage ( - { - mkDerivation, - base, - containers, - ivory, - ivory-backend-c, - mtl, - }: - mkDerivation { - pname = "ion"; - version = "1.0.0.0"; - sha256 = "03fcnwri7wlqzchqmrdbgi2wcs6klv7d6h7hr0qvbbkb1vin98r4"; - revision = "1"; - editedCabalFile = "1nf36ki1zsgc4a06b2czfmdq360gr6ranw08jnkxd5kd4mxxd2s6"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - containers - ivory - ivory-backend-c - mtl - ]; - executableHaskellDepends = [ - base - containers - ivory - ivory-backend-c - mtl - ]; - description = "EDSL for concurrent, realtime, embedded programming on top of Ivory"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "ion_example"; - } - ) { }; - "ioref-stable" = callPackage ( { mkDerivation, base }: mkDerivation { @@ -382841,59 +221395,6 @@ self: { } ) { }; - "iostring" = callPackage ( - { - mkDerivation, - base, - bytestring, - path, - text, - }: - mkDerivation { - pname = "iostring"; - version = "0.0.0.0"; - sha256 = "0bqi5b8j0i56nqm2fw2ylk6qnc2hm41qx36p93hs0f8javpmv1nn"; - libraryHaskellDepends = [ - base - bytestring - path - text - ]; - description = "A class of strings that can be involved in IO"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "iothread" = callPackage ( - { mkDerivation, base }: - mkDerivation { - pname = "iothread"; - version = "0.1.0.0"; - sha256 = "1nvysb0nmx42q0ilr09nzbsmr7mbbclhgl0iikibhhfb34r2afx0"; - libraryHaskellDepends = [ base ]; - description = "run IOs in a single thread"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "iotransaction" = callPackage ( - { mkDerivation, base }: - mkDerivation { - pname = "iotransaction"; - version = "0.1"; - sha256 = "0ylwrim2wfx3v03syd8v0iwf9kbw9154wlxsp8wc1d3n6sz7p1cc"; - libraryHaskellDepends = [ base ]; - description = "Supports the automatic undoing of IO operations when an exception is thrown"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "ip" = callPackage ( { mkDerivation, @@ -382978,40 +221479,6 @@ self: { } ) { }; - "ip-quoter" = callPackage ( - { - mkDerivation, - base, - cpu, - network, - tasty, - tasty-hunit, - template-haskell, - }: - mkDerivation { - pname = "ip-quoter"; - version = "1.0.1.1"; - sha256 = "1819742yjdl96k2z8s55a5x9xw9mg4lps1dq1f55zvc31afkdi4l"; - libraryHaskellDepends = [ - base - cpu - network - template-haskell - ]; - testHaskellDepends = [ - base - cpu - network - tasty - tasty-hunit - ]; - description = "Quasiquoter for IP addresses"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "ip2location" = callPackage ( { mkDerivation, @@ -383172,110 +221639,6 @@ self: { } ) { }; - "ipatch" = callPackage ( - { - mkDerivation, - base, - bytestring, - darcs, - directory, - filepath, - hashed-storage, - process, - unix, - }: - mkDerivation { - pname = "ipatch"; - version = "0.1.1"; - sha256 = "19yf0b82ifplja05if38llfs38mzmxxald89jc2yzqzzkvws9ldq"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - bytestring - darcs - directory - filepath - hashed-storage - process - unix - ]; - description = "interactive patch editor"; - license = lib.licenses.gpl2Only; - hydraPlatforms = lib.platforms.none; - mainProgram = "ipatch"; - } - ) { }; - - "ipc" = callPackage ( - { - mkDerivation, - base, - binary, - bytestring, - dlist, - mtl, - network, - network-bytestring, - stm, - }: - mkDerivation { - pname = "ipc"; - version = "0.0.5"; - sha256 = "0d1w62181s21ks63548i3jdfk4k1rg0hssnhkm97ymkrlcz6w68d"; - libraryHaskellDepends = [ - base - binary - bytestring - dlist - mtl - network - network-bytestring - stm - ]; - description = "High level inter-process communication library"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "ipcvar" = callPackage ( - { - mkDerivation, - base, - binary, - bytestring, - directory, - hspec, - text, - unix, - uuid, - }: - mkDerivation { - pname = "ipcvar"; - version = "0.1.1"; - sha256 = "169gbfd6pgj6v87rvn8pmr1sx3aj58c4fvn1gdxdgzm70910hkmk"; - libraryHaskellDepends = [ - base - binary - bytestring - directory - text - unix - uuid - ]; - testHaskellDepends = [ - base - hspec - unix - ]; - description = "Simple inter-process communication through IPCVars"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "ipfs" = callPackage ( { mkDerivation, @@ -383396,105 +221759,6 @@ self: { } ) { }; - "ipld-cid" = callPackage ( - { - mkDerivation, - base, - binary, - binary-varint, - bytestring, - cryptonite, - deepseq, - hashable, - hedgehog, - multibase, - multihash-cryptonite, - text, - }: - mkDerivation { - pname = "ipld-cid"; - version = "0.1.0.0"; - sha256 = "1y08j0ibcrpfcm0zv1h17zdgbl3hm3sjvm0w9bk1lzdipd6p6cwj"; - libraryHaskellDepends = [ - base - binary - binary-varint - bytestring - cryptonite - deepseq - hashable - multibase - multihash-cryptonite - text - ]; - testHaskellDepends = [ - base - bytestring - cryptonite - hedgehog - multibase - multihash-cryptonite - text - ]; - description = "IPLD Content-IDentifiers "; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "ipopt-hs" = - callPackage - ( - { - mkDerivation, - ad, - ansi-wl-pprint, - base, - c2hs, - containers, - ipopt, - lens, - mtl, - nlopt, - template-haskell, - uu-parsinglib, - vector, - vector-space, - }: - mkDerivation { - pname = "ipopt-hs"; - version = "0.5.1.0"; - sha256 = "0jilfb2d46znxxamg0813sv77fy1v0b7jzyksjc3km5fdp097wda"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - ad - ansi-wl-pprint - base - containers - lens - mtl - template-haskell - uu-parsinglib - vector - vector-space - ]; - libraryPkgconfigDepends = [ - ipopt - nlopt - ]; - libraryToolDepends = [ c2hs ]; - description = "haskell binding to ipopt and nlopt including automatic differentiation"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) - { - inherit (pkgs) ipopt; - inherit (pkgs) nlopt; - }; - "ipprint" = callPackage ( { mkDerivation, @@ -383559,116 +221823,6 @@ self: { } ) { }; - "iptables-helpers" = callPackage ( - { - mkDerivation, - base, - containers, - mtl, - parsec, - QuickCheck, - safe, - syb, - utf8-string, - }: - mkDerivation { - pname = "iptables-helpers"; - version = "0.5.0"; - sha256 = "13xv7g349ssgbz9c0g8q77hf52gp0v7nw9q665l697237jbvl57j"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - containers - mtl - parsec - safe - utf8-string - ]; - executableHaskellDepends = [ - base - QuickCheck - syb - ]; - description = "iptables rules parser/printer library"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "iptables-helpers-test"; - broken = true; - } - ) { }; - - "iptadmin" = callPackage ( - { - mkDerivation, - augeas, - base, - blaze-html, - blaze-markup, - bytestring, - ConfigFile, - containers, - file-embed, - filepath, - happstack-server, - happstack-server-tls, - hdaemonize, - hsyslog, - iptables-helpers, - mtl, - network, - old-time, - pam, - parsec, - process, - random, - safe, - template-haskell, - time, - unix, - utf8-string, - }: - mkDerivation { - pname = "iptadmin"; - version = "1.3.4"; - sha256 = "1ksnypq95xaybsb3vvhmabrh8l3c2c3mcqz83a61md9c1vw3n94m"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - augeas - base - blaze-html - blaze-markup - bytestring - ConfigFile - containers - file-embed - filepath - happstack-server - happstack-server-tls - hdaemonize - hsyslog - iptables-helpers - mtl - network - old-time - pam - parsec - process - random - safe - template-haskell - time - unix - utf8-string - ]; - description = "web-interface for iptables"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "iptadmin"; - } - ) { }; - "ipynb" = callPackage ( { mkDerivation, @@ -384014,240 +222168,6 @@ self: { } ) { }; - "irc-dcc" = callPackage ( - { - mkDerivation, - attoparsec, - base, - binary, - bytestring, - hspec-attoparsec, - io-streams, - iproute, - irc-ctcp, - mtl, - network, - path, - safe-exceptions, - tasty, - tasty-hspec, - tasty-quickcheck, - transformers, - utf8-string, - }: - mkDerivation { - pname = "irc-dcc"; - version = "2.0.1"; - sha256 = "1pyj4ngh6rw0k1cd9nlrhwb6rr3jmpiwaxs6crik8gbl6f3s4234"; - revision = "8"; - editedCabalFile = "1ya1bl8pdzbs3gxkq7hsyvkaajf8prrdhr1lx5hm9pi1nqsi879z"; - libraryHaskellDepends = [ - attoparsec - base - binary - bytestring - io-streams - iproute - irc-ctcp - mtl - network - path - safe-exceptions - transformers - utf8-string - ]; - testHaskellDepends = [ - base - bytestring - hspec-attoparsec - iproute - network - path - tasty - tasty-hspec - tasty-quickcheck - utf8-string - ]; - description = "A DCC message parsing and helper library for IRC clients"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "irc-fun-bot" = callPackage ( - { - mkDerivation, - aeson, - auto-update, - base, - case-insensitive, - clock, - containers, - data-default-class, - fast-logger, - formatting, - irc-fun-client, - irc-fun-types, - json-state, - text, - time, - time-interval, - time-units, - transformers, - unordered-containers, - }: - mkDerivation { - pname = "irc-fun-bot"; - version = "0.6.0.0"; - sha256 = "10nd14cc9xjas3kbbmgb1kb1917cij87i4gvfl4v7n2pb4ni910j"; - libraryHaskellDepends = [ - aeson - auto-update - base - case-insensitive - clock - containers - data-default-class - fast-logger - formatting - irc-fun-client - irc-fun-types - json-state - text - time - time-interval - time-units - transformers - unordered-containers - ]; - description = "Library for writing fun IRC bots"; - license = lib.licenses.publicDomain; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "irc-fun-client" = callPackage ( - { - mkDerivation, - auto-update, - base, - bytestring, - connection, - data-default-class, - fast-logger, - hashable, - irc-fun-messages, - irc-fun-types, - text, - time, - time-units, - unordered-containers, - }: - mkDerivation { - pname = "irc-fun-client"; - version = "0.5.0.0"; - sha256 = "0njj67m4m3pdc7kbh8xs9pacw0lqcdnxf1kkd6qg8bzx6l4bp9m8"; - libraryHaskellDepends = [ - auto-update - base - bytestring - connection - data-default-class - fast-logger - hashable - irc-fun-messages - irc-fun-types - text - time - time-units - unordered-containers - ]; - description = "Another library for writing IRC clients"; - license = lib.licenses.publicDomain; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "irc-fun-color" = callPackage ( - { - mkDerivation, - base, - dlist, - formatting, - irc-fun-types, - text, - text-show, - }: - mkDerivation { - pname = "irc-fun-color"; - version = "0.2.1.0"; - sha256 = "11xwy1iidm0j0xkcq4p4gz3lfyr7pvxb7mkwz1dab7rhnhw3nhpq"; - libraryHaskellDepends = [ - base - dlist - formatting - irc-fun-types - text - text-show - ]; - testHaskellDepends = [ - base - text - ]; - description = "Add color and style decorations to IRC messages"; - license = lib.licenses.publicDomain; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "irc-fun-messages" = callPackage ( - { - mkDerivation, - base, - irc-fun-types, - regex-applicative, - text, - }: - mkDerivation { - pname = "irc-fun-messages"; - version = "0.4"; - sha256 = "0lr189ip4smpf20h4m9h1bmmzi6v705c0b1dg23sq1lgx8fbz0zr"; - libraryHaskellDepends = [ - base - irc-fun-types - regex-applicative - text - ]; - description = "Types and functions for working with the IRC protocol"; - license = lib.licenses.publicDomain; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "irc-fun-types" = callPackage ( - { - mkDerivation, - base, - hashable, - text, - }: - mkDerivation { - pname = "irc-fun-types"; - version = "0.2"; - sha256 = "15q9sfpazrnplj8yp1v641amnw8zcvwb9wp8siy8fbhi6gcx5lip"; - libraryHaskellDepends = [ - base - hashable - text - ]; - description = "Common types for IRC related packages"; - license = lib.licenses.publicDomain; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "ircbot" = callPackage ( { mkDerivation, @@ -384311,27 +222231,6 @@ self: { } ) { }; - "ireal" = callPackage ( - { - mkDerivation, - base, - QuickCheck, - }: - mkDerivation { - pname = "ireal"; - version = "0.2.3"; - sha256 = "0wxwr74rhf2kmx8dz629k707ir10w4mlkvis50v113kh87d990lj"; - libraryHaskellDepends = [ - base - QuickCheck - ]; - description = "Real numbers and intervals with relatively efficient exact arithmetic"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "iri" = callPackage ( { mkDerivation, @@ -384453,84 +222352,6 @@ self: { } ) { }; - "iridium" = callPackage ( - { - mkDerivation, - aeson, - ansi-terminal, - base, - bytestring, - Cabal, - containers, - extra, - foldl, - HTTP, - lifted-base, - monad-control, - multistate, - network-uri, - process, - split, - system-filepath, - tagged, - text, - transformers, - transformers-base, - turtle, - unordered-containers, - vector, - yaml, - }: - mkDerivation { - pname = "iridium"; - version = "0.1.5.8"; - sha256 = "02l18z38n3cbrav7lyi3d27393invc216j78xgg7qfpbvhm3pfgw"; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - aeson - ansi-terminal - base - bytestring - Cabal - containers - extra - foldl - HTTP - lifted-base - monad-control - multistate - network-uri - process - split - system-filepath - tagged - text - transformers - transformers-base - turtle - unordered-containers - vector - yaml - ]; - executableHaskellDepends = [ - base - extra - multistate - text - transformers - unordered-containers - yaml - ]; - description = "Automated Local Cabal Package Testing and Uploading"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "iridium"; - broken = true; - } - ) { }; - "iris" = callPackage ( { mkDerivation, @@ -384571,101 +222392,6 @@ self: { } ) { }; - "iron-mq" = callPackage ( - { - mkDerivation, - aeson, - base, - http-client, - lens, - text, - wreq, - }: - mkDerivation { - pname = "iron-mq"; - version = "0.1.1.0"; - sha256 = "1yi1ia4ii6xg17ndp0v47cix0ds6bbrsbf0pghcmx3y4b55v0dlr"; - libraryHaskellDepends = [ - aeson - base - http-client - lens - text - wreq - ]; - description = "Iron.IO message queueing client library"; - license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "ironforge" = callPackage ( - { - mkDerivation, - antisplice, - base, - chatty, - chatty-utils, - mtl, - transformers, - }: - mkDerivation { - pname = "ironforge"; - version = "0.1.0.36"; - sha256 = "11fsph447c3cml0805zdf8454skd7v12ip0cflma6llp3cnfbbl6"; - revision = "1"; - editedCabalFile = "09xmdl9d92jg3l9b2j7crf2kkyhf7zw9vysvr8qfbrhwkkq8d56z"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - antisplice - base - chatty - chatty-utils - mtl - transformers - ]; - executableHaskellDepends = [ - antisplice - base - chatty - chatty-utils - mtl - transformers - ]; - description = "A technical demo for Antisplice"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "ironforge"; - } - ) { }; - - "irt" = callPackage ( - { - mkDerivation, - ad, - base, - data-default-class, - statistics, - }: - mkDerivation { - pname = "irt"; - version = "0.2.0.1"; - sha256 = "05a1k70cj4rlaz7yx84m7riz6zhsb588vfyzkza2gr4i5wlhjr6c"; - libraryHaskellDepends = [ - ad - base - data-default-class - statistics - ]; - description = "Item Response Theory functions for use in computerized adaptive testing"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "is" = callPackage ( { mkDerivation, @@ -384716,68 +222442,6 @@ self: { } ) { }; - "isdicom" = callPackage ( - { - mkDerivation, - base, - directory, - doctest, - filepath, - QuickCheck, - template-haskell, - }: - mkDerivation { - pname = "isdicom"; - version = "0.0.2"; - sha256 = "05f99nv4ydals0x1y39mswm3437s6bisdk63bgfzb89sgh0p9w1p"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - directory - filepath - ]; - executableHaskellDepends = [ - base - directory - filepath - ]; - testHaskellDepends = [ - base - directory - doctest - filepath - QuickCheck - template-haskell - ]; - description = "An executable and library to determine if a file is a DICOM file"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "isdicom"; - broken = true; - } - ) { }; - - "isevaluated" = callPackage ( - { - mkDerivation, - base, - vacuum, - }: - mkDerivation { - pname = "isevaluated"; - version = "0.3.0.2"; - sha256 = "10f09br33xy5ldl924kfnnlc5ilwq44hd17s2qdf9jm75q4sa7d5"; - libraryHaskellDepends = [ - base - vacuum - ]; - description = "Check whether a value has been evaluated"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "isiz" = callPackage ( { mkDerivation, @@ -384819,44 +222483,6 @@ self: { } ) { }; - "ismtp" = callPackage ( - { - mkDerivation, - base, - bytestring, - containers, - contstuff, - dnscache, - enumerator, - lifted-base, - monad-control, - netlines, - network, - vector, - }: - mkDerivation { - pname = "ismtp"; - version = "4.0.2"; - sha256 = "0skyrp497p0gfh39j1ng7ahpbzfykfvykq720akafgnapgsfxkhm"; - libraryHaskellDepends = [ - base - bytestring - containers - contstuff - dnscache - enumerator - lifted-base - monad-control - netlines - network - vector - ]; - description = "Advanced ESMTP library"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "iso-deriving" = callPackage ( { mkDerivation, @@ -385010,139 +222636,6 @@ self: { } ) { }; - "isobmff" = callPackage ( - { - mkDerivation, - base, - binary, - bytestring, - criterion, - data-default, - function-builder, - hspec, - mtl, - pretty-types, - QuickCheck, - singletons, - tagged, - template-haskell, - text, - time, - type-spec, - vector, - }: - mkDerivation { - pname = "isobmff"; - version = "0.14.0.0"; - sha256 = "1kc77bcp4k4n8j6lx09rq5q4mn21fv7wp059gsg86krb48a09cjx"; - libraryHaskellDepends = [ - base - bytestring - data-default - function-builder - mtl - pretty-types - singletons - tagged - template-haskell - text - time - type-spec - vector - ]; - testHaskellDepends = [ - base - binary - bytestring - hspec - mtl - pretty-types - QuickCheck - tagged - text - type-spec - ]; - benchmarkHaskellDepends = [ - base - binary - bytestring - criterion - tagged - type-spec - ]; - description = "A parser and generator for the ISO-14496-12/14 base media file format"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "isobmff-builder" = callPackage ( - { - mkDerivation, - base, - binary, - bytestring, - criterion, - data-default, - hspec, - mtl, - pretty-types, - QuickCheck, - singletons, - tagged, - template-haskell, - text, - time, - type-list, - type-spec, - vector, - }: - mkDerivation { - pname = "isobmff-builder"; - version = "0.11.3.0"; - sha256 = "0hkzbj61b76vlrsvxj23h2ga8601hfaf4p872gjcf9rl8w7l93jp"; - libraryHaskellDepends = [ - base - bytestring - data-default - mtl - pretty-types - singletons - tagged - template-haskell - text - time - type-list - type-spec - vector - ]; - testHaskellDepends = [ - base - binary - bytestring - hspec - mtl - pretty-types - QuickCheck - tagged - text - type-spec - ]; - benchmarkHaskellDepends = [ - base - binary - bytestring - criterion - tagged - type-spec - ]; - description = "A (bytestring-) builder for the ISO-14496-12 base media file format"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "isocline" = callPackage ( { mkDerivation, @@ -385177,42 +222670,6 @@ self: { } ) { }; - "isohunt" = callPackage ( - { - mkDerivation, - aeson, - base, - bytestring, - data-default, - ghc-prim, - http-conduit, - text, - unordered-containers, - uri, - vector, - }: - mkDerivation { - pname = "isohunt"; - version = "0.1.3"; - sha256 = "189dmxczmr0kqh440ziyp6kxx6iza2yyq7cs05hic9w8lhpwa6pw"; - libraryHaskellDepends = [ - aeson - base - bytestring - data-default - ghc-prim - http-conduit - text - unordered-containers - uri - vector - ]; - description = "Bindings to the isoHunt torrent search API"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "isomorphism-class" = callPackage ( { mkDerivation, @@ -385264,42 +222721,6 @@ self: { } ) { }; - "isotope" = callPackage ( - { - mkDerivation, - base, - containers, - hspec, - megaparsec, - QuickCheck, - template-haskell, - th-lift, - }: - mkDerivation { - pname = "isotope"; - version = "0.5.0.1"; - sha256 = "0mpbyr6qv7pmabry8wp1cby8zyc44sigl8fvsav32ac7g311k9pa"; - libraryHaskellDepends = [ - base - containers - megaparsec - template-haskell - th-lift - ]; - testHaskellDepends = [ - base - containers - hspec - megaparsec - QuickCheck - ]; - description = "Isotopic masses and relative abundances"; - license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "ispositive" = callPackage ( { mkDerivation, @@ -385320,33 +222741,6 @@ self: { } ) { }; - "it-has" = callPackage ( - { - mkDerivation, - base, - generic-lens, - QuickCheck, - }: - mkDerivation { - pname = "it-has"; - version = "0.2.0.0"; - sha256 = "0cpv2g95gvb4cb3jin2k12yz7nvksqkc9fn9mgy9smbx1m7xc06g"; - libraryHaskellDepends = [ - base - generic-lens - ]; - testHaskellDepends = [ - base - generic-lens - QuickCheck - ]; - description = "Automatically derivable Has instances"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "itanium-abi" = callPackage ( { mkDerivation, @@ -385385,203 +222779,6 @@ self: { } ) { }; - "itcli" = callPackage ( - { - mkDerivation, - base, - bytestring, - directory, - filepath, - mtl, - optparse-applicative, - text, - time, - uuid, - yaml, - }: - mkDerivation { - pname = "itcli"; - version = "0.1.8.3"; - sha256 = "1ml6k0imkb6wy3fky2fd5q1gkbywm360jmlb6gw8mp8z7ci6ijbg"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - bytestring - directory - filepath - mtl - optparse-applicative - text - time - uuid - yaml - ]; - description = "Issue Tracker for the CLI"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "itcli"; - broken = true; - } - ) { }; - - "itemfield" = callPackage ( - { - mkDerivation, - base, - brick, - data-default, - HUnit, - microlens, - microlens-th, - QuickCheck, - random, - test-framework, - test-framework-hunit, - test-framework-quickcheck2, - text, - vty, - }: - mkDerivation { - pname = "itemfield"; - version = "1.2.5.0"; - sha256 = "049gj5c6z68yf7cmnp1kbjdg71n4rdwyb59hivdjajsdp9xay7hn"; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base - brick - data-default - microlens - text - vty - ]; - executableHaskellDepends = [ - base - brick - data-default - microlens - microlens-th - random - text - vty - ]; - testHaskellDepends = [ - base - brick - data-default - HUnit - microlens - microlens-th - QuickCheck - test-framework - test-framework-hunit - test-framework-quickcheck2 - text - vty - ]; - description = "A brick Widget for selectable summary of many elements on a terminal"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "iter-stats" = callPackage ( - { - mkDerivation, - base, - heap, - HUnit, - iteratee, - ListLike, - mtl, - statistics, - test-framework, - test-framework-hunit, - test-framework-quickcheck2, - vector, - }: - mkDerivation { - pname = "iter-stats"; - version = "0.1.0.4"; - sha256 = "1pfvxxps319ynfpaqgkiyk7gbpi4l2rfqzqyw27jhzlxx860yq71"; - libraryHaskellDepends = [ - base - heap - iteratee - ListLike - mtl - ]; - testHaskellDepends = [ - base - heap - HUnit - iteratee - ListLike - mtl - statistics - test-framework - test-framework-hunit - test-framework-quickcheck2 - vector - ]; - description = "iteratees for statistical processing"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "iterIO" = callPackage ( - { - mkDerivation, - array, - attoparsec, - base, - bytestring, - containers, - filepath, - HsOpenSSL, - ListLike, - mtl, - network, - old-locale, - process, - stringsearch, - time, - unix, - zlib, - }: - mkDerivation { - pname = "iterIO"; - version = "0.2.2"; - sha256 = "0cq0awzl249m9kzgs0hzs49r2v29q4dhq3sbd818izvyqzfzz4zm"; - libraryHaskellDepends = [ - array - attoparsec - base - bytestring - containers - filepath - HsOpenSSL - ListLike - mtl - network - old-locale - process - stringsearch - time - unix - ]; - librarySystemDepends = [ zlib ]; - description = "Iteratee-based IO with pipe operators"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { inherit (pkgs) zlib; }; - "iterable" = callPackage ( { mkDerivation, @@ -385612,204 +222809,6 @@ self: { } ) { }; - "iteratee" = callPackage ( - { - mkDerivation, - base, - bytestring, - containers, - criterion, - deepseq, - exceptions, - HUnit, - ListLike, - monad-control, - mtl, - parallel, - QuickCheck, - test-framework, - test-framework-hunit, - test-framework-quickcheck2, - transformers, - transformers-base, - unix, - }: - mkDerivation { - pname = "iteratee"; - version = "0.8.9.6"; - sha256 = "1yc5fqqb8warvgld3cymka7d2wmjydvfin5jy7zaazb7alf14q1p"; - revision = "1"; - editedCabalFile = "1nb5f2f5lvyjqrgrhyv8ai12jlp6k3282cs0ini2zmjdkkyiw4z1"; - libraryHaskellDepends = [ - base - bytestring - containers - exceptions - ListLike - monad-control - parallel - transformers - transformers-base - unix - ]; - testHaskellDepends = [ - base - bytestring - exceptions - HUnit - ListLike - monad-control - mtl - QuickCheck - test-framework - test-framework-hunit - test-framework-quickcheck2 - transformers - transformers-base - unix - ]; - benchmarkHaskellDepends = [ - base - bytestring - criterion - deepseq - exceptions - ListLike - monad-control - mtl - transformers - transformers-base - unix - ]; - description = "Iteratee-based I/O"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "iteratee-compress" = - callPackage - ( - { - mkDerivation, - base, - bytestring, - bzip2, - iteratee, - mtl, - zlib, - }: - mkDerivation { - pname = "iteratee-compress"; - version = "0.3.3.1"; - sha256 = "1j5w3pfi8mx88wfg6fwrj5jccfp8spw0jwb4zh3yyzg1jacrpal4"; - libraryHaskellDepends = [ - base - bytestring - iteratee - mtl - ]; - librarySystemDepends = [ - bzip2 - zlib - ]; - description = "Enumeratees for compressing and decompressing streams"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) - { - inherit (pkgs) bzip2; - inherit (pkgs) zlib; - }; - - "iteratee-mtl" = callPackage ( - { - mkDerivation, - base, - bytestring, - containers, - ListLike, - MonadCatchIO-mtl, - mtl, - unix, - }: - mkDerivation { - pname = "iteratee-mtl"; - version = "0.5.0.0"; - sha256 = "0a3f0m9lgc4ks18891a689bbb1c1kdrxswj42s5syvcq73y7v2h0"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - bytestring - containers - ListLike - MonadCatchIO-mtl - mtl - unix - ]; - description = "Iteratee-based I/O"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "iteratee-parsec" = callPackage ( - { - mkDerivation, - base, - iteratee, - ListLike, - parsec, - reference, - transformers, - }: - mkDerivation { - pname = "iteratee-parsec"; - version = "0.0.6"; - sha256 = "1saffq3pl20fph6jdss6yzdgfaqxwb2183gb3qxj6cwsrblzz628"; - libraryHaskellDepends = [ - base - iteratee - ListLike - parsec - reference - transformers - ]; - description = "Package allowing parsec parser initeratee"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "iteratee-stm" = callPackage ( - { - mkDerivation, - base, - iteratee, - stm, - stm-chans, - transformers, - }: - mkDerivation { - pname = "iteratee-stm"; - version = "0.1.2"; - sha256 = "1916phr07ckvm571rspswqr93z22la0mkxghvzljr0vgd1zi4p0x"; - libraryHaskellDepends = [ - base - iteratee - stm - stm-chans - transformers - ]; - description = "Concurrent iteratees using STM"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "iterative-forward-search" = callPackage ( { mkDerivation, @@ -385858,44 +222857,6 @@ self: { } ) { }; - "iterio-server" = callPackage ( - { - mkDerivation, - base, - bytestring, - filepath, - iterIO, - ListLike, - monadIO, - mtl, - network, - split, - transformers, - unix, - }: - mkDerivation { - pname = "iterio-server"; - version = "0.3"; - sha256 = "1yz05y6i036irdbnsmhhr9lpcfk56ii6ls1fqdgh80h9giyi6c0n"; - libraryHaskellDepends = [ - base - bytestring - filepath - iterIO - ListLike - monadIO - mtl - network - split - transformers - unix - ]; - description = "Library for building servers with IterIO"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "iterm-show" = callPackage ( { mkDerivation, @@ -385980,38 +222941,6 @@ self: { } ) { }; - "ival" = callPackage ( - { - mkDerivation, - alg, - base, - smallcheck, - tasty, - tasty-smallcheck, - }: - mkDerivation { - pname = "ival"; - version = "0.2.0.0"; - sha256 = "1djgkxz6npymkzf5802hdcvr40jlc16pmyxd3qpi98f1c1h4rg5x"; - revision = "1"; - editedCabalFile = "0hgvsmjkblbawwv7kfa3imnbjvv330gccv2n245nd0vhfgsbpvxa"; - libraryHaskellDepends = [ - alg - base - ]; - testHaskellDepends = [ - alg - base - smallcheck - tasty - tasty-smallcheck - ]; - description = "Intervals"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "ivar-simple" = callPackage ( { mkDerivation, base }: mkDerivation { @@ -386024,86 +222953,6 @@ self: { } ) { }; - "ivor" = callPackage ( - { - mkDerivation, - base, - binary, - containers, - directory, - haskell98, - mtl, - parsec, - }: - mkDerivation { - pname = "ivor"; - version = "0.1.14.1"; - sha256 = "0r9ykfkxpwsrhsvv691r361pf79a7y511hxy2mvd6ysz1441mych"; - revision = "1"; - editedCabalFile = "0d96j24n4v61q7ynrwaag96as2sl6q67kmypmb4wk42cw400g41j"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base - binary - containers - directory - haskell98 - mtl - parsec - ]; - description = "Theorem proving library based on dependent type theory"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "ivory" = callPackage ( - { - mkDerivation, - alex, - array, - base, - base-compat, - containers, - dlist, - filepath, - happy, - monadLib, - pretty, - template-haskell, - text, - th-abstraction, - th-lift, - }: - mkDerivation { - pname = "ivory"; - version = "0.1.0.9"; - sha256 = "1gml49dhjjciw71h0g7pn9bw5irghs5kkl6zgabyk4isfh9dllr1"; - libraryHaskellDepends = [ - array - base - base-compat - containers - dlist - filepath - monadLib - pretty - template-haskell - text - th-abstraction - th-lift - ]; - libraryToolDepends = [ - alex - happy - ]; - description = "Safe embedded C programming"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "ivory-artifact" = callPackage ( { mkDerivation, @@ -386154,361 +223003,7 @@ self: { description = "Ivory register bindings for the Atmega328p"; license = lib.licenses.bsd3; hydraPlatforms = lib.platforms.none; - } - ) { }; - - "ivory-backend-c" = callPackage ( - { - mkDerivation, - base, - base-compat, - bytestring, - containers, - directory, - filepath, - ivory, - ivory-artifact, - ivory-opts, - language-c-quote, - mainland-pretty, - monadLib, - process, - srcloc, - template-haskell, - }: - mkDerivation { - pname = "ivory-backend-c"; - version = "0.1.0.8"; - sha256 = "1zp5kddiczkb85ac7y6wn145bzx3hpvzzhincgq8f1ykcr23miz9"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base - base-compat - bytestring - containers - directory - filepath - ivory - ivory-artifact - ivory-opts - language-c-quote - mainland-pretty - monadLib - process - srcloc - template-haskell - ]; - description = "Ivory C backend"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "ivory-bitdata" = callPackage ( - { - mkDerivation, - base, - ivory, - ivory-backend-c, - monadLib, - parsec, - template-haskell, - }: - mkDerivation { - pname = "ivory-bitdata"; - version = "0.2.0.0"; - sha256 = "03qqax98qr2qyidc71i81f70lbma1s2q5jikl3m4ni4wyj3gg1m3"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - ivory - ivory-backend-c - monadLib - parsec - template-haskell - ]; - executableHaskellDepends = [ - base - ivory - ivory-backend-c - ]; - description = "Ivory bit-data support"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "ivory-bitdata-example"; - } - ) { }; - - "ivory-eval" = callPackage ( - { - mkDerivation, - base, - base-compat, - containers, - ivory, - monadLib, - tasty, - tasty-hunit, - }: - mkDerivation { - pname = "ivory-eval"; - version = "0.1.0.6"; - sha256 = "0009sndrv9m672wzkd8klmi10yc8ckzcszx1d224xm0qs2hhy0v3"; - libraryHaskellDepends = [ - base - base-compat - containers - ivory - monadLib - ]; - testHaskellDepends = [ - base - base-compat - containers - ivory - monadLib - tasty - tasty-hunit - ]; - description = "Simple concrete evaluator for Ivory programs"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "ivory-examples" = callPackage ( - { - mkDerivation, - base, - base-compat, - ivory, - ivory-backend-c, - ivory-opts, - ivory-stdlib, - monadLib, - pretty, - QuickCheck, - template-haskell, - }: - mkDerivation { - pname = "ivory-examples"; - version = "0.1.0.5"; - sha256 = "0mh3afpqvwxv4gcpq23ln06jmvh8iknc86j052qvqzcg0svnb6sk"; - revision = "1"; - editedCabalFile = "0ffshn32fv3qwf7gq0ms0ay21b21xvy0gb97ymg89plan18n2gx8"; - isLibrary = false; - isExecutable = true; - enableSeparateDataOutput = true; - executableHaskellDepends = [ - base - base-compat - ivory - ivory-backend-c - ivory-opts - ivory-stdlib - monadLib - pretty - QuickCheck - template-haskell - ]; - description = "Ivory examples"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "ivory-c-clang-test"; - } - ) { }; - - "ivory-hw" = callPackage ( - { - mkDerivation, - base, - filepath, - ivory, - ivory-artifact, - }: - mkDerivation { - pname = "ivory-hw"; - version = "0.1.0.6"; - sha256 = "0az65nj7pl32gyffv2z2vmcgm36cm740y765n4r7389drls5lj5d"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base - filepath - ivory - ivory-artifact - ]; - description = "Ivory hardware model (STM32F4)"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "ivory-opts" = callPackage ( - { - mkDerivation, - base, - base-compat, - containers, - data-reify, - dlist, - fgl, - filepath, - ivory, - monadLib, - pretty, - }: - mkDerivation { - pname = "ivory-opts"; - version = "0.1.0.6"; - sha256 = "014dnfflf09gfn6c47jjg25lq95bx9sl6nkj18zylyzy0f1qszrq"; - libraryHaskellDepends = [ - base - base-compat - containers - data-reify - dlist - fgl - filepath - ivory - monadLib - pretty - ]; - description = "Ivory compiler optimizations"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "ivory-quickcheck" = callPackage ( - { - mkDerivation, - base, - base-compat, - directory, - filepath, - ivory, - ivory-backend-c, - ivory-eval, - ivory-stdlib, - monadLib, - process, - QuickCheck, - random, - tasty, - tasty-hunit, - }: - mkDerivation { - pname = "ivory-quickcheck"; - version = "0.2.0.5"; - sha256 = "1w2kp47w8a4hpf68fq8hl71jm7mkrn0dj9agxw4fbadj307zk4ws"; - libraryHaskellDepends = [ - base - base-compat - ivory - ivory-backend-c - ivory-eval - monadLib - QuickCheck - random - ]; - testHaskellDepends = [ - base - base-compat - directory - filepath - ivory - ivory-backend-c - ivory-stdlib - monadLib - process - QuickCheck - tasty - tasty-hunit - ]; - description = "QuickCheck driver for Ivory"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "ivory-serialize" = callPackage ( - { - mkDerivation, - base, - base-compat, - filepath, - ivory, - ivory-artifact, - monadLib, - }: - mkDerivation { - pname = "ivory-serialize"; - version = "0.1.0.6"; - sha256 = "1v8gf92z7g8ihcbnqalpjbbsm1z24242ysar9cg0dfq8n5if226a"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base - base-compat - filepath - ivory - ivory-artifact - monadLib - ]; - description = "Serialization library for Ivory"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "ivory-stdlib" = callPackage ( - { - mkDerivation, - base, - filepath, - ivory, - ivory-artifact, - }: - mkDerivation { - pname = "ivory-stdlib"; - version = "0.1.0.5"; - sha256 = "1sdbwy5sqa87zidfp7xmxwvfw3xx26kc8m68hgmhsxvs8j6xavmg"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base - filepath - ivory - ivory-artifact - ]; - description = "Ivory standard library"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "ivy-web" = callPackage ( - { - mkDerivation, - base, - invertible-syntax, - partial-isomorphisms, - snap, - snap-core, - }: - mkDerivation { - pname = "ivy-web"; - version = "0.2"; - sha256 = "0m2wd8lh22nqyjiijw9ldl6l17fbkj7b4n0j5ymgrs3yx2mnnv1q"; - libraryHaskellDepends = [ - base - invertible-syntax - partial-isomorphisms - snap - snap-core - ]; - description = "A lightweight web framework"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; + broken = true; } ) { }; @@ -386530,48 +223025,6 @@ self: { } ) { inherit (pkgs) wirelesstools; }; - "ix" = callPackage ( - { - mkDerivation, - base, - base-unicode-symbols, - category, - criterion, - smallcheck, - tasty, - tasty-smallcheck, - transformers, - util, - }: - mkDerivation { - pname = "ix"; - version = "0.1.1.0"; - sha256 = "0y3nvh2r4vpjn77innf8h0s6q89h1zk7yg8gbjnvz9482np44xam"; - revision = "1"; - editedCabalFile = "0r6mb33zr50vibkb31jijw6h5nzizi01skccfbiz9yqwvlqnfq4v"; - libraryHaskellDepends = [ - base - base-unicode-symbols - category - transformers - util - ]; - testHaskellDepends = [ - base - smallcheck - tasty - tasty-smallcheck - ]; - benchmarkHaskellDepends = [ - base - criterion - ]; - description = "Indexed monads"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "ix-shapable" = callPackage ( { mkDerivation, @@ -386591,55 +223044,6 @@ self: { } ) { }; - "ixdopp" = callPackage ( - { - mkDerivation, - base, - preprocessor-tools, - syb, - }: - mkDerivation { - pname = "ixdopp"; - version = "0.1.3"; - sha256 = "1vknwznk42b33q4pmh6z620g761yf3cmsmrmhilgq42i5qhll4d4"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - preprocessor-tools - syb - ]; - description = "A preprocessor for expanding \"ixdo\" notation for indexed monads"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "ixdopp"; - broken = true; - } - ) { }; - - "ixmonad" = callPackage ( - { - mkDerivation, - base, - ghc-prim, - }: - mkDerivation { - pname = "ixmonad"; - version = "0.57"; - sha256 = "1k8qfx9p6jw6gb4jsgq6y2bc6y6ah4h44gdgs0fxkrg371wyym7k"; - revision = "1"; - editedCabalFile = "064bqv1i43car216ajjiq7j9vz2ha0rxhmpin83ajrchva1yd7sq"; - libraryHaskellDepends = [ - base - ghc-prim - ]; - description = "Embeds effect systems into Haskell using parameteric effect monads"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "ixset" = callPackage ( { mkDerivation, @@ -386798,6 +223202,7 @@ self: { description = "Conversions from ixset-typed to other containers"; license = lib.licenses.mit; hydraPlatforms = lib.platforms.none; + broken = true; } ) { }; @@ -386822,90 +223227,6 @@ self: { } ) { }; - "ixshader" = callPackage ( - { - mkDerivation, - base, - ghc-prim, - indexed, - language-glsl, - parsec, - prettyclass, - singletons, - template-haskell, - text, - }: - mkDerivation { - pname = "ixshader"; - version = "0.0.1.0"; - sha256 = "02ql4yl80jb1fz4j35hvkd47wrpkq2zzpcbws2hsr4njcxsi31wp"; - libraryHaskellDepends = [ - base - ghc-prim - indexed - language-glsl - parsec - prettyclass - singletons - template-haskell - text - ]; - description = "A shallow embedding of the OpenGL Shading Language in Haskell"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "iyql" = callPackage ( - { - mkDerivation, - base, - binary, - bytestring, - containers, - directory, - filepath, - haskeline, - haskell98, - hoauth, - mtl, - old-locale, - parsec, - time, - utf8-string, - xml, - }: - mkDerivation { - pname = "iyql"; - version = "0.0.7"; - sha256 = "1jb97jzm9w8z8jyswbcr3kdraam95by6bc1gpjddwn817dijf0q4"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - binary - bytestring - containers - directory - filepath - haskeline - haskell98 - hoauth - mtl - old-locale - parsec - time - utf8-string - xml - ]; - description = "CLI (command line interface) to YQL"; - license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - mainProgram = "iyql"; - } - ) { }; - "j" = callPackage ( { mkDerivation, @@ -386944,57 +223265,6 @@ self: { } ) { }; - "j2hs" = callPackage ( - { - mkDerivation, - base, - bimap, - containers, - directory, - filepath, - hx, - java-bridge, - java-bridge-extras, - java-reflect, - mtl, - named-records, - split, - strict, - strings, - syb, - transformers, - }: - mkDerivation { - pname = "j2hs"; - version = "0.99.1"; - sha256 = "0fls5krx9l0c7g755b4yyksiki45hbb6v7m0y6nsmpd217rggkb2"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - bimap - containers - directory - filepath - hx - java-bridge - java-bridge-extras - java-reflect - mtl - named-records - split - strict - strings - syb - transformers - ]; - description = "j2hs"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - mainProgram = "j2hs"; - } - ) { }; - "ja-base-extra" = callPackage ( { mkDerivation, base }: mkDerivation { @@ -387115,76 +223385,30 @@ self: { }: mkDerivation { pname = "jack"; - version = "0.7.2.2"; - sha256 = "0f47cyhsjw57k4cgbmwvawn02v9dvx4x1pn7k2z612srf5l1igb5"; - revision = "3"; - editedCabalFile = "18w4v7psxkfgfi5hzms9v2myia18nxm7vdrrirdrkfnjwkbqsh7f"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - array - base - bytestring - enumset - event-list - explicit-exception - midi - non-negative - semigroups - transformers - ]; - libraryPkgconfigDepends = [ libjack2 ]; - description = "Bindings for the JACK Audio Connection Kit"; - license = lib.licenses.gpl2Only; - maintainers = [ lib.maintainers.thielema ]; - } - ) { inherit (pkgs) libjack2; }; - - "jack-bindings" = callPackage ( - { - mkDerivation, - base, - c2hs, - libjack2, - mtl, - }: - mkDerivation { - pname = "jack-bindings"; - version = "0.1.1"; - sha256 = "1gmz2qiz7wzydj0rhswbfhwi0zbdcbps29l1lryzqxm8chfc9mbm"; - libraryHaskellDepends = [ - base - mtl - ]; - libraryPkgconfigDepends = [ libjack2 ]; - libraryToolDepends = [ c2hs ]; - description = "DEPRECATED Bindings to the JACK Audio Connection Kit"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { inherit (pkgs) libjack2; }; - - "jackminimix" = callPackage ( - { - mkDerivation, - base, - hosc, - }: - mkDerivation { - pname = "jackminimix"; - version = "0.1"; - sha256 = "03ysmgg5f3dsimskqw5vpnrv5jg4gf1gd0khmf0s1ilfm1jc1nfd"; + version = "0.7.2.2"; + sha256 = "0f47cyhsjw57k4cgbmwvawn02v9dvx4x1pn7k2z612srf5l1igb5"; + revision = "3"; + editedCabalFile = "18w4v7psxkfgfi5hzms9v2myia18nxm7vdrrirdrkfnjwkbqsh7f"; + isLibrary = true; + isExecutable = true; libraryHaskellDepends = [ + array base - hosc + bytestring + enumset + event-list + explicit-exception + midi + non-negative + semigroups + transformers ]; - description = "control JackMiniMix"; - license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - broken = true; + libraryPkgconfigDepends = [ libjack2 ]; + description = "Bindings for the JACK Audio Connection Kit"; + license = lib.licenses.gpl2Only; + maintainers = [ lib.maintainers.thielema ]; } - ) { }; + ) { inherit (pkgs) libjack2; }; "jackpolynomials" = callPackage ( { @@ -387276,36 +223500,6 @@ self: { } ) { }; - "jacobi-roots" = callPackage ( - { - mkDerivation, - base, - binary, - bytestring, - doctest, - vector, - }: - mkDerivation { - pname = "jacobi-roots"; - version = "0.2.0.4"; - sha256 = "1skpw2jm5g0lylc79n5fk37d3lrvhwb3cmn50wcy4i5nnjvfdijc"; - libraryHaskellDepends = [ - base - binary - bytestring - vector - ]; - testHaskellDepends = [ - base - doctest - ]; - description = "Roots of two shifted Jacobi polynomials (Legendre and Radau) to double precision"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "jacobi-theta" = callPackage ( { mkDerivation, @@ -387328,91 +223522,6 @@ self: { } ) { }; - "jaeger-flamegraph" = callPackage ( - { - mkDerivation, - aeson, - base, - bytestring, - containers, - extra, - optparse-applicative, - QuickCheck, - tasty, - tasty-discover, - tasty-hspec, - tasty-quickcheck, - text, - }: - mkDerivation { - pname = "jaeger-flamegraph"; - version = "1.3.2"; - sha256 = "1m7vs4zi1cm5xj3wn8zr44rdx1l99ra59xwr64y9bdrs1raga7k3"; - revision = "1"; - editedCabalFile = "003h3aqdkpvpqqyv7ypv3shvfiqcwq7cfihqv38bp2iq5vin938q"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson - base - containers - QuickCheck - text - ]; - executableHaskellDepends = [ - aeson - base - bytestring - containers - extra - optparse-applicative - text - ]; - testHaskellDepends = [ - aeson - base - containers - tasty - tasty-hspec - tasty-quickcheck - text - ]; - testToolDepends = [ tasty-discover ]; - description = "Generate flamegraphs from Jaeger .json dumps."; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "jaeger-flamegraph"; - broken = true; - } - ) { }; - - "jail" = callPackage ( - { - mkDerivation, - base, - containers, - directory, - monads-fd, - transformers, - }: - mkDerivation { - pname = "jail"; - version = "0.0.1.1"; - sha256 = "0wxz3w5r1zc571ibyqskwk27ba1dafwwpr10psbsg44fj7ii3vvz"; - libraryHaskellDepends = [ - base - containers - directory - monads-fd - transformers - ]; - description = "Jailed IO monad"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "jailbreak-cabal" = callPackage ( { mkDerivation, @@ -387469,120 +223578,6 @@ self: { } ) { }; - "jalla" = - callPackage - ( - { - mkDerivation, - base, - base-orphans, - blas, - c2hs, - cblas, - convertible, - HUnit, - lapacke, - mtl, - QuickCheck, - random, - test-framework, - test-framework-hunit, - test-framework-quickcheck2, - }: - mkDerivation { - pname = "jalla"; - version = "0.2.0.1"; - sha256 = "122lf1j9hs81yzj6hdv7a7q56846h1ggasbjgvjnk8r34d0xsl40"; - libraryHaskellDepends = [ - base - base-orphans - convertible - mtl - QuickCheck - random - ]; - librarySystemDepends = [ - blas - cblas - lapacke - ]; - libraryToolDepends = [ c2hs ]; - testHaskellDepends = [ - base - HUnit - QuickCheck - random - test-framework - test-framework-hunit - test-framework-quickcheck2 - ]; - description = "Higher level functions for linear algebra. Wraps BLAS and LAPACKE."; - license = "GPL"; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) - { - inherit (pkgs) blas; - cblas = null; - lapacke = null; - }; - - "jammittools" = callPackage ( - { - mkDerivation, - base, - boxes, - bytestring, - conduit, - conduit-audio, - containers, - directory, - filepath, - JuicyPixels, - process, - resourcet, - text, - transformers, - vector, - xml, - }: - mkDerivation { - pname = "jammittools"; - version = "0.5.5.2"; - sha256 = "0x7zyyn7q9j5d74bkvf5pbm5i6kcxv7v107j1z26x5m42gibs9kv"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - bytestring - conduit - conduit-audio - containers - directory - filepath - JuicyPixels - process - resourcet - text - transformers - vector - xml - ]; - executableHaskellDepends = [ - base - boxes - directory - filepath - ]; - description = "Export sheet music and audio from Windows/Mac app Jammit"; - license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - mainProgram = "jammittools"; - broken = true; - } - ) { }; - "japanese-calendar" = callPackage ( { mkDerivation, @@ -387639,87 +223634,6 @@ self: { } ) { }; - "jarfind" = callPackage ( - { - mkDerivation, - array, - base, - binary, - bytestring, - regex-tdfa, - zip-archive, - }: - mkDerivation { - pname = "jarfind"; - version = "0.1.0.3"; - sha256 = "0cfxq8k0k8r3wf4siypb78rqx5c9m2cm899bpa0zz591hc0p6k0w"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - array - base - binary - bytestring - regex-tdfa - zip-archive - ]; - executableHaskellDepends = [ - array - base - binary - bytestring - regex-tdfa - zip-archive - ]; - description = "Tool for searching java classes, members and fields in classfiles and JAR archives"; - license = "GPL"; - hydraPlatforms = lib.platforms.none; - mainProgram = "jarf"; - broken = true; - } - ) { }; - - "jarify" = callPackage ( - { - mkDerivation, - base, - bytestring, - directory, - filepath, - process, - regex-tdfa, - temporary, - text, - zip-archive, - }: - mkDerivation { - pname = "jarify"; - version = "1.0"; - sha256 = "0xlk07vcizp9rms5d28klidcf535ncffcx75rwixhvlii2qmyjn7"; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ base ]; - executableHaskellDepends = [ - base - bytestring - directory - filepath - process - regex-tdfa - temporary - text - zip-archive - ]; - doHaddock = false; - description = "Jarification of Haskell sources"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "jarify"; - broken = true; - } - ) { }; - "jaskell" = callPackage ( { mkDerivation, @@ -387753,51 +223667,6 @@ self: { } ) { }; - "jason" = callPackage ( - { - mkDerivation, - aeson, - base, - bytestring, - containers, - text, - unordered-containers, - vector, - }: - mkDerivation { - pname = "jason"; - version = "0.1.0.1"; - sha256 = "014xwjj0xrapxa5ly1w56bhzif604kkpqh15vqzc181xz6f5ysm3"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson - base - containers - text - unordered-containers - vector - ]; - executableHaskellDepends = [ - aeson - base - bytestring - text - ]; - testHaskellDepends = [ - aeson - base - bytestring - text - ]; - description = "A fast JASONETTE-iOS JSON combinator library for haskell"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "jason"; - broken = true; - } - ) { }; - "java-adt" = callPackage ( { mkDerivation, @@ -387829,110 +223698,6 @@ self: { } ) { }; - "java-bridge" = callPackage ( - { - mkDerivation, - base, - bimap, - containers, - cpphs, - directory, - filepath, - hinduce-missingh, - hint, - mtl, - multimap, - named-records, - names, - split, - strings, - syb, - transformers, - unix, - }: - mkDerivation { - pname = "java-bridge"; - version = "0.20130606.3"; - sha256 = "16nm5jn5y3rs3g1m524gn8xqxw13973cmpllmylh6qdpqcz47457"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - containers - cpphs - directory - filepath - hinduce-missingh - mtl - multimap - strings - syb - transformers - unix - ]; - executableHaskellDepends = [ - base - bimap - containers - directory - filepath - hint - multimap - named-records - names - split - strings - syb - ]; - description = "Bindings to the JNI and a high level interface generator"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "java-bridge-extras" = callPackage ( - { - mkDerivation, - base, - java-bridge, - transformers, - }: - mkDerivation { - pname = "java-bridge-extras"; - version = "0.99"; - sha256 = "0wjxm0h5xlsab7iphcabb66c7gjxy7hyb502inlj5zxq1ic5ghzv"; - libraryHaskellDepends = [ - base - java-bridge - transformers - ]; - description = "Utilities for working with the java-bridge package"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "java-character" = callPackage ( - { - mkDerivation, - base, - diet, - }: - mkDerivation { - pname = "java-character"; - version = "0.0.4"; - sha256 = "1ms8m95mara3pp7qdg8jn2ajbq3zj8pnbs1b9jhpxbdkl5220768"; - libraryHaskellDepends = [ - base - diet - ]; - description = "Functions to simulate Java's Character class"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "java-poker" = callPackage ( { mkDerivation, @@ -387956,240 +223721,6 @@ self: { } ) { }; - "java-reflect" = callPackage ( - { - mkDerivation, - base, - containers, - hx, - java-bridge, - }: - mkDerivation { - pname = "java-reflect"; - version = "0.99"; - sha256 = "1vdfq3c8chqhss6jiy139yrm45mij4kjdwxf2wrsfm4064j0n3wc"; - libraryHaskellDepends = [ - base - containers - hx - java-bridge - ]; - description = "Tools for reflecting on Java classes"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "javaclass" = callPackage ( - { - mkDerivation, - base, - bytestring, - directory, - doctest, - filepath, - greplicate, - lens, - QuickCheck, - semigroupoids, - semigroups, - tagged, - template-haskell, - tickle, - }: - mkDerivation { - pname = "javaclass"; - version = "0.0.1"; - sha256 = "1xb4s5j9mcvihccgqaac6vsj4wgm98ss4jyypg4j9ldm44xn2jfl"; - libraryHaskellDepends = [ - base - bytestring - greplicate - lens - semigroupoids - semigroups - tagged - tickle - ]; - testHaskellDepends = [ - base - directory - doctest - filepath - QuickCheck - template-haskell - ]; - description = "Java class files"; - license = "unknown"; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "javascript-bridge" = callPackage ( - { - mkDerivation, - aeson, - base, - binary, - containers, - scotty, - stm, - text, - time, - transformers, - wai, - wai-extra, - wai-websockets, - websockets, - }: - mkDerivation { - pname = "javascript-bridge"; - version = "0.2.0"; - sha256 = "13k7rkvmgm3ajhjvxlkkbipsbkx01lbjwq2xgfyygbcb0lccjrd9"; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - aeson - base - binary - containers - stm - text - time - transformers - wai - wai-websockets - websockets - ]; - executableHaskellDepends = [ - base - scotty - text - ]; - testHaskellDepends = [ - aeson - base - scotty - stm - text - time - wai-extra - ]; - description = "Remote Monad for JavaScript on the browser"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "javascript-extras" = callPackage ( - { - mkDerivation, - base, - deepseq, - ghcjs-base-stub, - newtype-generics, - parallel, - text, - }: - mkDerivation { - pname = "javascript-extras"; - version = "0.5.0.0"; - sha256 = "1p87nkjmc5gjbj95wdchvj7ha7v5zfbricibakqkcbsahmgddk4c"; - revision = "1"; - editedCabalFile = "0y29kvmhpngv5qm0hi8kixmpxzgzih0dlpg77658ikw3mn5x30p1"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - deepseq - ghcjs-base-stub - newtype-generics - parallel - text - ]; - executableHaskellDepends = [ - base - ghcjs-base-stub - ]; - description = "Extra javascript functions when using GHCJS"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "javascript-extras-test"; - broken = true; - } - ) { }; - - "javasf" = callPackage ( - { - mkDerivation, - base, - binary, - bytestring, - directory, - doctest, - filepath, - language-java-classfile, - QuickCheck, - }: - mkDerivation { - pname = "javasf"; - version = "0.1.0"; - sha256 = "0k8si8rdhplfhfp5yq7rlkifj80401qyanfhv101h8amxg20m97w"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - binary - bytestring - language-java-classfile - ]; - testHaskellDepends = [ - base - directory - doctest - filepath - QuickCheck - ]; - description = "A utility to print the SourceFile attribute of one or more Java class files"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "javasf"; - } - ) { }; - - "javav" = callPackage ( - { - mkDerivation, - base, - directory, - doctest, - filepath, - QuickCheck, - }: - mkDerivation { - pname = "javav"; - version = "0.1.1"; - sha256 = "1kzhp9gim9jl78jw8gm9vzxciiz6m04pjamgx1pqbhkji3lkw55d"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ base ]; - testHaskellDepends = [ - base - directory - doctest - filepath - QuickCheck - ]; - description = "A utility to print the target version of Java class files"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "javav"; - broken = true; - } - ) { }; - "javelin" = callPackage ( { mkDerivation, @@ -388351,165 +223882,6 @@ self: { } ) { }; - "jbi" = callPackage ( - { - mkDerivation, - aeson, - aeson-pretty, - base, - Cabal, - directory, - filepath, - monad-parallel, - optparse-applicative, - process, - tagged, - text, - }: - mkDerivation { - pname = "jbi"; - version = "0.2.0.0"; - sha256 = "0h08p1lra76yx0grxr08z2q83al1yn4a8rbpcahpz47cxxydwry4"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson - base - Cabal - directory - filepath - monad-parallel - process - tagged - ]; - executableHaskellDepends = [ - aeson-pretty - base - optparse-applicative - text - ]; - description = "Just Build It - a \"do what I mean\" abstraction for Haskell build tools"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - mainProgram = "jbi"; - broken = true; - } - ) { }; - - "jcdecaux-vls" = callPackage ( - { - mkDerivation, - aeson, - base, - bytestring, - http-conduit, - text, - transformers, - }: - mkDerivation { - pname = "jcdecaux-vls"; - version = "0.1.0"; - sha256 = "11army6p19xmdils32nxf5zbjh4fcsp075x7h3v2hbc08n6fkj8s"; - libraryHaskellDepends = [ - aeson - base - bytestring - http-conduit - text - transformers - ]; - description = "JCDecaux self-service bicycles API client"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "jdi" = callPackage ( - { - mkDerivation, - base, - binary, - bytestring, - containers, - mtl, - network, - transformers, - }: - mkDerivation { - pname = "jdi"; - version = "0.0.3"; - sha256 = "1jznizbnyg37lir155sq84dbsqcaavz061hj2a703w9x28s6pcnb"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - binary - bytestring - containers - mtl - network - transformers - ]; - executableHaskellDepends = [ - base - mtl - network - ]; - description = "Implementation of Java Debug Interface"; - license = lib.licenses.gpl2Only; - hydraPlatforms = lib.platforms.none; - mainProgram = "Test"; - broken = true; - } - ) { }; - - "jenga" = callPackage ( - { - mkDerivation, - aeson, - base, - bytestring, - Cabal, - containers, - http-conduit, - http-types, - optparse-applicative, - text, - yaml, - }: - mkDerivation { - pname = "jenga"; - version = "0.1.1.0"; - sha256 = "0a8njzqrjkq47shbczbhpl2k0raff71zyff8gr1zj58piwadaf8k"; - revision = "1"; - editedCabalFile = "01764pa86dbll242ky92spzvy71qc6bv4y97m9f6m41agw1ha4b4"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson - base - bytestring - Cabal - containers - http-conduit - http-types - text - yaml - ]; - executableHaskellDepends = [ - base - optparse-applicative - text - ]; - description = "Generate a cabal freeze file from a stack.yaml"; - license = lib.licenses.bsd2; - hydraPlatforms = lib.platforms.none; - mainProgram = "jenga"; - broken = true; - } - ) { }; - "jenkinsPlugins2nix" = callPackage ( { mkDerivation, @@ -388569,76 +223941,6 @@ self: { } ) { }; - "jespresso" = callPackage ( - { - mkDerivation, - arrows, - base, - bytestring, - cmdargs, - data-default-class, - data-default-instances-base, - Diff, - directory, - filepath, - HTTP, - http-encodings, - hxt, - hxt-tagsoup, - language-ecmascript, - network, - network-uri, - random, - tasty, - tasty-golden, - transformers, - }: - mkDerivation { - pname = "jespresso"; - version = "1.0.2"; - sha256 = "0wka2wq89x6vzhvr93wrlc8dp7shd8jic11camrgpqqsqk3j0pnd"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - arrows - base - bytestring - data-default-class - data-default-instances-base - HTTP - http-encodings - hxt - hxt-tagsoup - language-ecmascript - network - network-uri - random - ]; - executableHaskellDepends = [ - base - cmdargs - HTTP - network - network-uri - ]; - testHaskellDepends = [ - arrows - base - Diff - directory - filepath - hxt - tasty - tasty-golden - transformers - ]; - description = "Extract all JavaScript from an HTML page and consolidate it in one script"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "jespresso"; - } - ) { }; - "jet" = callPackage ( { mkDerivation, @@ -388806,61 +224108,6 @@ self: { } ) { }; - "jinquantities" = callPackage ( - { - mkDerivation, - base, - containers, - doctest, - Glob, - hlint, - hspec, - mtl, - parsec, - process, - quantities, - regex-compat, - }: - mkDerivation { - pname = "jinquantities"; - version = "0.1.1"; - sha256 = "1zrdbd2dkc4n1jycv20a1j8px6lkxdjvnv9l3w7b3z2rajj7rfh2"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - containers - mtl - parsec - ]; - executableHaskellDepends = [ - base - containers - mtl - parsec - quantities - ]; - testHaskellDepends = [ - base - containers - doctest - Glob - hlint - hspec - mtl - parsec - process - quantities - regex-compat - ]; - description = "Unit conversion and manipulation library"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "quantities"; - broken = true; - } - ) { }; - "jira-wiki-markup" = callPackage ( { mkDerivation, @@ -389033,168 +224280,6 @@ self: { } ) { }; - "jmacro-rpc" = callPackage ( - { - mkDerivation, - aeson, - attoparsec, - base, - blaze-html, - bytestring, - containers, - contravariant, - jmacro, - mtl, - scientific, - split, - text, - unordered-containers, - vector, - }: - mkDerivation { - pname = "jmacro-rpc"; - version = "0.3.3"; - sha256 = "0gqyv8y4hjk2fwvzar173hvhgw860as0wijfhxqnxbkhd7f2r4gf"; - libraryHaskellDepends = [ - aeson - attoparsec - base - blaze-html - bytestring - containers - contravariant - jmacro - mtl - scientific - split - text - unordered-containers - vector - ]; - description = "JSON-RPC clients and servers using JMacro, and evented client-server Reactive Programming"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "jmacro-rpc-happstack" = callPackage ( - { - mkDerivation, - aeson, - base, - blaze-html, - bytestring, - containers, - happstack-server, - jmacro, - jmacro-rpc, - mtl, - }: - mkDerivation { - pname = "jmacro-rpc-happstack"; - version = "0.3.2"; - sha256 = "0r5h8hlsjppnhqdxa0dsrjkpv3pldbkv5v4dryd4km2v38yfxkcr"; - libraryHaskellDepends = [ - aeson - base - blaze-html - bytestring - containers - happstack-server - jmacro - jmacro-rpc - mtl - ]; - description = "Happstack backend for jmacro-rpc"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "jmacro-rpc-snap" = callPackage ( - { - mkDerivation, - aeson, - base, - bytestring, - containers, - jmacro, - jmacro-rpc, - mtl, - snap-core, - }: - mkDerivation { - pname = "jmacro-rpc-snap"; - version = "0.3"; - sha256 = "1syzx2lw4r8knsqhsvilp04wb8a718379cmn0nhjqlwhpaja9bj8"; - libraryHaskellDepends = [ - aeson - base - bytestring - containers - jmacro - jmacro-rpc - mtl - snap-core - ]; - description = "Snap backend for jmacro-rpc"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "jml-web-service" = callPackage ( - { - mkDerivation, - base, - bytestring, - clock, - data-default, - http-types, - monad-logger, - optparse-applicative, - prometheus-client, - prometheus-metrics-ghc, - protolude, - tasty, - text, - wai, - wai-extra, - warp, - }: - mkDerivation { - pname = "jml-web-service"; - version = "0.1.0"; - sha256 = "1gs3qmcx87wh7372a4sa3g5f4w1lbyvd8iwr1w5pay21f0kcgnxk"; - libraryHaskellDepends = [ - base - bytestring - clock - data-default - http-types - monad-logger - optparse-applicative - prometheus-client - prometheus-metrics-ghc - protolude - text - wai - wai-extra - warp - ]; - testHaskellDepends = [ - base - protolude - tasty - ]; - description = "Common utilities for running a web service"; - license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "jmonkey" = callPackage ( { mkDerivation, @@ -389319,211 +224404,6 @@ self: { } ) { }; - "jobqueue" = callPackage ( - { - mkDerivation, - aeson, - async, - attoparsec, - base, - bytestring, - containers, - data-default, - directory, - fast-logger, - HDBC, - HDBC-sqlite3, - hslogger, - hspec, - hzk, - lifted-base, - monad-control, - monad-logger, - mtl, - network, - QuickCheck, - regex-posix, - split, - stm, - template-haskell, - text, - text-format, - time, - transformers-base, - }: - mkDerivation { - pname = "jobqueue"; - version = "0.1.6"; - sha256 = "15fmblszhvn5s1szx982ajn8jgm9avrjgpx5mncdjdh36brw8q79"; - libraryHaskellDepends = [ - aeson - attoparsec - base - bytestring - containers - data-default - fast-logger - HDBC - HDBC-sqlite3 - hslogger - hzk - lifted-base - monad-control - monad-logger - mtl - network - regex-posix - split - stm - template-haskell - text - text-format - time - transformers-base - ]; - testHaskellDepends = [ - async - base - bytestring - data-default - directory - hspec - network - QuickCheck - stm - ]; - description = "A job queue library"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "jobs-ui" = callPackage ( - { - mkDerivation, - base, - bytestring, - containers, - deepseq, - digestive-functors, - digestive-functors-lucid, - file-embed, - http-types, - hvect, - lucid, - mtl, - pretty-relative-time, - Spock, - Spock-digestive, - Spock-lucid, - stm, - text, - time, - transformers, - warp, - }: - mkDerivation { - pname = "jobs-ui"; - version = "0.2.0.0"; - sha256 = "0k5n1nqxlqlqnxcznmwqz9m4sdy8hhg3gv8m1bikc3d5im1rap7j"; - libraryHaskellDepends = [ - base - bytestring - containers - deepseq - digestive-functors - digestive-functors-lucid - file-embed - http-types - hvect - lucid - mtl - pretty-relative-time - Spock - Spock-digestive - Spock-lucid - stm - text - time - transformers - warp - ]; - description = "A library for creating a jobs management website running custom jobs"; - license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "join" = callPackage ( - { - mkDerivation, - base, - haskell98, - multisetrewrite, - stm, - }: - mkDerivation { - pname = "join"; - version = "0.4"; - sha256 = "0bx9cvdhhw7z30qgxwpl0j23z18sx7xyin2y7bwxvg5ga737j8qx"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base - haskell98 - multisetrewrite - stm - ]; - description = "Parallel Join Patterns with Guards and Propagation"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "join-api" = callPackage ( - { - mkDerivation, - aeson, - base, - bytestring, - lens, - text, - url, - wreq, - }: - mkDerivation { - pname = "join-api"; - version = "0.0.0.0"; - sha256 = "17jncdby098hdap21yx4m827x9y6by62khzyb6bglb28sq0yskqh"; - libraryHaskellDepends = [ - aeson - base - bytestring - lens - text - url - wreq - ]; - description = "Bindings for Join push notifications"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "joinlist" = callPackage ( - { mkDerivation, base }: - mkDerivation { - pname = "joinlist"; - version = "0.3.0"; - sha256 = "0hjlyyylbh471696v9b1jckm7d4gfp1ka978sr1j0005d03gwv35"; - libraryHaskellDepends = [ base ]; - description = "Join list - symmetric list type"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "joint" = callPackage ( { mkDerivation, @@ -389551,41 +224431,6 @@ self: { } ) { }; - "jonathanscard" = callPackage ( - { - mkDerivation, - base, - bytestring, - containers, - HTTP, - json, - mtl, - network, - old-locale, - time, - }: - mkDerivation { - pname = "jonathanscard"; - version = "0.1.1"; - sha256 = "0zwd5mdwamyl6xlflhj0yvp9k5yfrxggvv49d3hriz9z15f5v5g8"; - libraryHaskellDepends = [ - base - bytestring - containers - HTTP - json - mtl - network - old-locale - time - ]; - description = "An implementation of the Jonathan's Card API"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "jord" = callPackage ( { mkDerivation, @@ -389971,32 +224816,6 @@ self: { } ) { }; - "jort" = callPackage ( - { - mkDerivation, - array, - base, - gtk, - }: - mkDerivation { - pname = "jort"; - version = "1.0.0"; - sha256 = "1c1nr8pq4vyn4mvyqms2mq1sm42qgr2mrznn5rsv34rd1f75b2d3"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - array - base - gtk - ]; - description = "JP's own ray tracer"; - license = "unknown"; - hydraPlatforms = lib.platforms.none; - mainProgram = "jort"; - broken = true; - } - ) { }; - "jose" = callPackage ( { mkDerivation, @@ -390319,27 +225138,6 @@ self: { } ) { }; - "jpeg" = callPackage ( - { - mkDerivation, - base, - mtl, - }: - mkDerivation { - pname = "jpeg"; - version = "0.0.1.1"; - sha256 = "1hnfapr21zpfyiywa4zzmwa518jzg73dnmaakrbvvpcmr4fvh9qx"; - libraryHaskellDepends = [ - base - mtl - ]; - description = "A library for decoding JPEG files written in pure Haskell"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "jpeg-turbo" = callPackage ( { mkDerivation, @@ -390482,27 +225280,6 @@ self: { } ) { }; - "js-good-parts" = callPackage ( - { - mkDerivation, - base, - wl-pprint, - }: - mkDerivation { - pname = "js-good-parts"; - version = "0.0.7"; - sha256 = "0i3r3xl8hi2a3d6hrj77vbfi54bkq4pidrjcz13vz4az9dvz6k75"; - libraryHaskellDepends = [ - base - wl-pprint - ]; - description = "Javascript: The Good Parts -- AST & Pretty Printer"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "js-jquery" = callPackage ( { mkDerivation, @@ -390879,38 +225656,6 @@ self: { } ) { }; - "jsc" = callPackage ( - { - mkDerivation, - base, - jmacro, - lens, - template-haskell, - text, - transformers, - webkitgtk3, - webkitgtk3-javascriptcore, - }: - mkDerivation { - pname = "jsc"; - version = "0.1.1.1"; - sha256 = "18mvpncvsfv4gv7lx00g8aixjmhzp0yklxaajx45v2hsx0azn8zc"; - libraryHaskellDepends = [ - base - jmacro - lens - template-haskell - text - transformers - webkitgtk3 - webkitgtk3-javascriptcore - ]; - description = "High level interface for webkit-javascriptcore"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "jsdom-extras" = callPackage ( { mkDerivation, @@ -390940,30 +225685,6 @@ self: { } ) { }; - "jsmw" = callPackage ( - { - mkDerivation, - base, - DOM, - mtl, - WebBits, - }: - mkDerivation { - pname = "jsmw"; - version = "0.1"; - sha256 = "1r36w2h5007qln56gnyyd7w6bcqiymn1jw287z0waf4fhpy02ygq"; - libraryHaskellDepends = [ - base - DOM - mtl - WebBits - ]; - description = "Javascript Monadic Writer base package"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "json" = callPackage ( { mkDerivation, @@ -391016,147 +225737,6 @@ self: { } ) { }; - "json-api" = callPackage ( - { - mkDerivation, - aeson, - aeson-pretty, - base, - bytestring, - containers, - data-default, - hspec, - lens, - lens-aeson, - text, - unordered-containers, - url, - }: - mkDerivation { - pname = "json-api"; - version = "0.1.4.0"; - sha256 = "1xswmpkwr1f49kf4hmp9014lwv4lcnyjj161ylfh5ihjfr30w0yb"; - libraryHaskellDepends = [ - aeson - base - containers - data-default - lens - lens-aeson - text - unordered-containers - url - ]; - testHaskellDepends = [ - aeson - aeson-pretty - base - bytestring - containers - data-default - hspec - lens - lens-aeson - text - unordered-containers - url - ]; - description = "Utilities for generating JSON-API payloads"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "json-api-lib" = callPackage ( - { - mkDerivation, - aeson, - aeson-pretty, - base, - bytestring, - containers, - data-default, - deepseq, - hspec, - hspec-discover, - lens, - lens-aeson, - text, - unordered-containers, - uri-encode, - }: - mkDerivation { - pname = "json-api-lib"; - version = "0.3.0.0"; - sha256 = "14lycfqjp3v6lnr4vqagps80dpvy8z6gs6sqq3qz184xyw4m2ini"; - revision = "1"; - editedCabalFile = "16k87v87lq2xf3rbig4229a2gc3p6s9a771g48a95xc0rk4k4hkk"; - libraryHaskellDepends = [ - aeson - base - containers - data-default - deepseq - lens - lens-aeson - text - unordered-containers - uri-encode - ]; - testHaskellDepends = [ - aeson - aeson-pretty - base - bytestring - containers - data-default - hspec - lens - lens-aeson - text - unordered-containers - uri-encode - ]; - testToolDepends = [ hspec-discover ]; - description = "Utilities for generating JSON-API payloads"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "json-assertions" = callPackage ( - { - mkDerivation, - aeson, - base, - indexed, - indexed-free, - lens, - lens-aeson, - text, - }: - mkDerivation { - pname = "json-assertions"; - version = "1.0.13"; - sha256 = "01jv8risxswq6ihpl376vf19g8abav3sgbfjmb79yqwzgx7vbjcx"; - libraryHaskellDepends = [ - aeson - base - indexed - indexed-free - lens - lens-aeson - text - ]; - description = "Test that your (Aeson) JSON encoding matches your expectations"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "json-ast" = callPackage ( { mkDerivation, @@ -391182,256 +225762,6 @@ self: { } ) { }; - "json-ast-json-encoder" = callPackage ( - { - mkDerivation, - base-prelude, - contravariant, - contravariant-extras, - json-ast, - json-encoder, - scientific, - text, - unordered-containers, - vector, - }: - mkDerivation { - pname = "json-ast-json-encoder"; - version = "0.1.1"; - sha256 = "0jjig4qg8d4wmnhr3r5ijl1z3hv0vnhk0rfjnw2i0j7nx68fc6di"; - libraryHaskellDepends = [ - base-prelude - contravariant - contravariant-extras - json-ast - json-encoder - scientific - text - unordered-containers - vector - ]; - description = "Encoders of JSON AST"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "json-ast-quickcheck" = callPackage ( - { - mkDerivation, - base, - json-ast, - QuickCheck, - quickcheck-instances, - }: - mkDerivation { - pname = "json-ast-quickcheck"; - version = "0.2"; - sha256 = "016dwrk9mwhhb6f5q6n2i1xhv5mf4s1w04bk88klfqanfyscm9j1"; - libraryHaskellDepends = [ - base - json-ast - QuickCheck - quickcheck-instances - ]; - description = "Compatibility layer for \"json-ast\" and \"QuickCheck\""; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "json-autotype" = callPackage ( - { - mkDerivation, - aeson, - base, - bytestring, - containers, - data-default, - directory, - filepath, - GenericPretty, - hashable, - json-alt, - lens, - mtl, - optparse-applicative, - pretty, - process, - QuickCheck, - run-haskell-module, - scientific, - smallcheck, - template-haskell, - text, - uniplate, - unordered-containers, - vector, - yaml, - }: - mkDerivation { - pname = "json-autotype"; - version = "3.1.2"; - sha256 = "1wg1198jwgiy6yxr0msz1cvrkkv3zjx72ck3cykddy2hwx55113g"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson - base - containers - data-default - filepath - GenericPretty - hashable - json-alt - lens - mtl - pretty - process - QuickCheck - run-haskell-module - scientific - smallcheck - template-haskell - text - uniplate - unordered-containers - vector - ]; - executableHaskellDepends = [ - aeson - base - bytestring - containers - filepath - GenericPretty - hashable - json-alt - lens - mtl - optparse-applicative - pretty - process - scientific - template-haskell - text - uniplate - unordered-containers - vector - yaml - ]; - testHaskellDepends = [ - aeson - base - bytestring - containers - directory - filepath - GenericPretty - hashable - json-alt - lens - mtl - optparse-applicative - pretty - process - QuickCheck - scientific - smallcheck - template-haskell - text - uniplate - unordered-containers - vector - ]; - description = "Automatic type declaration for JSON input data"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "json-autotype"; - broken = true; - } - ) { }; - - "json-b" = callPackage ( - { - mkDerivation, - base, - bytestring, - bytestring-nums, - bytestring-trie, - bytestringparser-temporary, - containers, - utf8-string, - }: - mkDerivation { - pname = "json-b"; - version = "0.0.4"; - sha256 = "0wcvaswgffzvhfq7v5lqxp6xhxajaabbxkqpqxp5vwcv5slkiags"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - bytestring - bytestring-nums - bytestring-trie - bytestringparser-temporary - containers - utf8-string - ]; - executableHaskellDepends = [ - base - bytestring - bytestring-nums - bytestring-trie - bytestringparser-temporary - containers - utf8-string - ]; - description = "JSON parser that uses byte strings"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "json-schema"; - } - ) { }; - - "json-builder" = callPackage ( - { - mkDerivation, - base, - blaze-builder, - blaze-textual, - bytestring, - containers, - text, - unordered-containers, - utf8-string, - vector, - }: - mkDerivation { - pname = "json-builder"; - version = "0.3"; - sha256 = "0k8b93bqi68c7nwq09cws8kfm84kd4k5lpy4z9ifks1jaiyj3vxm"; - revision = "1"; - editedCabalFile = "13cs8n3d0cc81lly3dxrq8k6wvxjyhkmhzghs51fzgahawb9kcww"; - libraryHaskellDepends = [ - base - blaze-builder - blaze-textual - bytestring - containers - text - unordered-containers - utf8-string - vector - ]; - description = "Data structure agnostic JSON serialization"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "json-bytes-builder" = callPackage ( { mkDerivation, @@ -391516,508 +225846,42 @@ self: { } ) { }; - "json-encoder" = callPackage ( - { - mkDerivation, - base, - base-prelude, - bytestring, - bytestring-tree-builder, - contravariant, - contravariant-extras, - scientific, - semigroups, - text, - }: - mkDerivation { - pname = "json-encoder"; - version = "0.1.8"; - sha256 = "0gwph8z28glv6j75hfsypgxvrl612jnnbggy49h2z203blgiqal1"; - libraryHaskellDepends = [ - base - base-prelude - bytestring - bytestring-tree-builder - contravariant - contravariant-extras - scientific - semigroups - text - ]; - description = "A direct-to-bytes single-pass JSON encoder with a declarative DSL"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "json-enumerator" = callPackage ( - { - mkDerivation, - base, - blaze-builder, - blaze-builder-enumerator, - bytestring, - containers, - enumerator, - json-types, - text, - transformers, - }: - mkDerivation { - pname = "json-enumerator"; - version = "0.0.1.2"; - sha256 = "08gwrm15pvvhhrkrncy6wr4fi5v55fdhc8byfrw5zd62hmx8xm9d"; - libraryHaskellDepends = [ - base - blaze-builder - blaze-builder-enumerator - bytestring - containers - enumerator - json-types - text - transformers - ]; - description = "Pure-Haskell utilities for dealing with JSON with the enumerator package. (deprecated)"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "json-extra" = callPackage ( - { - mkDerivation, - aeson, - base, - bytestring, - data-default, - template-haskell, - unordered-containers, - yaml, - }: - mkDerivation { - pname = "json-extra"; - version = "0.2.0.0"; - sha256 = "14wac0fccvq71rd971rmxky51w2ch125k982xp1z53ql3xrc3n7q"; - libraryHaskellDepends = [ - aeson - base - bytestring - data-default - template-haskell - unordered-containers - yaml - ]; - description = "Utility functions to extend Aeson"; - license = lib.licenses.bsd2; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "json-feed" = callPackage ( { mkDerivation, aeson, base, bytestring, - filepath, - hspec, - mime-types, - network-uri, - tagsoup, - text, - time, - }: - mkDerivation { - pname = "json-feed"; - version = "2.0.0.15"; - sha256 = "0rkcwd61j4bfp4jmhjj34nsid6mwgzyf715cn9jrm0xsxwcx5bx9"; - libraryHaskellDepends = [ - aeson - base - bytestring - mime-types - network-uri - tagsoup - text - time - ]; - testHaskellDepends = [ - base - bytestring - filepath - hspec - ]; - description = "JSON Feed"; - license = lib.licenses.mit; - } - ) { }; - - "json-fu" = callPackage ( - { - mkDerivation, - aeson, - attoparsec, - base, - bytestring, - containers, - hashable, - hspec, - mtl, - syb, - text, - time, - unordered-containers, - vector, - }: - mkDerivation { - pname = "json-fu"; - version = "0.1.1"; - sha256 = "098ps56igr12wm9hai3agh2hdmvd00rzpdd5lw0ffjivjxxfh829"; - libraryHaskellDepends = [ - aeson - attoparsec - base - bytestring - containers - hashable - mtl - syb - text - time - unordered-containers - vector - ]; - testHaskellDepends = [ - aeson - attoparsec - base - bytestring - containers - hashable - hspec - mtl - syb - text - time - unordered-containers - vector - ]; - description = "Generic JSON serialization / deserialization"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "json-incremental-decoder" = callPackage ( - { - mkDerivation, - attoparsec, - base, - base-prelude, - bytestring, - ghc-prim, - hashable, - interspersed, - matcher, - monad-par, - QuickCheck, - quickcheck-instances, - rebase, - scientific, - success, - supplemented, - tasty, - tasty-hunit, - tasty-quickcheck, - tasty-smallcheck, - text, - transformers, - unordered-containers, - unsequential, - vector, - }: - mkDerivation { - pname = "json-incremental-decoder"; - version = "0.1.2"; - sha256 = "19nlcm83093qzl5yjvgyqmlq4rxc0dn6c666i60g4xa33r6dh7c2"; - libraryHaskellDepends = [ - attoparsec - base - base-prelude - bytestring - ghc-prim - hashable - interspersed - matcher - monad-par - scientific - success - supplemented - text - transformers - unordered-containers - unsequential - vector - ]; - testHaskellDepends = [ - QuickCheck - quickcheck-instances - rebase - tasty - tasty-hunit - tasty-quickcheck - tasty-smallcheck - ]; - description = "Incremental JSON parser with early termination and a declarative DSL"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "json-litobj" = callPackage ( - { - mkDerivation, - base, - hspec, - json, - QuickCheck, - }: - mkDerivation { - pname = "json-litobj"; - version = "0.1.0.0"; - sha256 = "1rhwlkcap4hk3hj1vf5s93bzvc14gx4n6xsp8n2d8nd5qqybvi2a"; - libraryHaskellDepends = [ - base - json - ]; - testHaskellDepends = [ - base - hspec - json - QuickCheck - ]; - description = "Extends Text.JSON to handle literal JS objects."; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "json-pointer" = callPackage ( - { - mkDerivation, - attoparsec, - base, - base-prelude, - text, - }: - mkDerivation { - pname = "json-pointer"; - version = "0.1.2.2"; - sha256 = "0cwk5jxg528dipfdhrmmjpz950pfpaykncvw16rajvf35wvcnk9x"; - revision = "1"; - editedCabalFile = "0bs7fa02jjq9r7bn3vlwn4xq93yllj62h3bb5g2lsihx1svk7lkn"; - libraryHaskellDepends = [ - attoparsec - base - base-prelude - text - ]; - description = "JSON Pointer parsing and interpretation utilities"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "json-pointer-aeson" = callPackage ( - { - mkDerivation, - aeson, - base-prelude, - json-pointer, - unordered-containers, - vector, - }: - mkDerivation { - pname = "json-pointer-aeson"; - version = "0.1.2"; - sha256 = "0ipqndmzqfc9n6g2xsjigd1a73cd1qhf9p2wb36mjyl5c2pqsa3x"; - libraryHaskellDepends = [ - aeson - base-prelude - json-pointer - unordered-containers - vector - ]; - description = "Integration layer for \"json-pointer\" and \"aeson\""; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "json-pointer-hasql" = callPackage ( - { - mkDerivation, - aeson, - base-prelude, - either, - hasql, - json-pointer, - rebase, - text, - transformers, - }: - mkDerivation { - pname = "json-pointer-hasql"; - version = "0.1.1"; - sha256 = "1f8n2372cvmkm1nz2aa14z78mbj0xawzbhmbx9r4w29mxa8nfqph"; - libraryHaskellDepends = [ - base-prelude - hasql - json-pointer - text - ]; - testHaskellDepends = [ - aeson - either - hasql - json-pointer - rebase - transformers - ]; - description = "JSON Pointer extensions for Hasql"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "json-pointy" = callPackage ( - { - mkDerivation, - aeson, - attoparsec, - base, - bytestring, - containers, - directory, - doctest, - filepath, - hashable, - http-types, - microlens, - mtl, - tasty, - tasty-discover, - tasty-hunit, - template-haskell, - text, - th-lift-instances, - unordered-containers, - uri-bytestring, - vector, - }: - mkDerivation { - pname = "json-pointy"; - version = "0.1.0.1"; - sha256 = "15vzpazhj4mbbw95mr6dcafij69nihnrw1c6zrw7d964jr269193"; - libraryHaskellDepends = [ - aeson - attoparsec - base - bytestring - http-types - microlens - template-haskell - text - th-lift-instances - unordered-containers - uri-bytestring - vector - ]; - testHaskellDepends = [ - base - bytestring - containers - directory - doctest - filepath - hashable - mtl - tasty - tasty-discover - tasty-hunit - text - unordered-containers - vector - ]; - testToolDepends = [ tasty-discover ]; - description = "JSON Pointer (RFC 6901) parsing, access, and modification"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "json-python" = callPackage ( - { - mkDerivation, - aeson, - base, - bytestring, - containers, - pureMD5, - python, - template-haskell, - }: - mkDerivation { - pname = "json-python"; - version = "0.4.0.1"; - sha256 = "0ga3clvmq20xlyx47bril651xg8rhq77s7nj6r1v836m3xwcb0y9"; - libraryHaskellDepends = [ - aeson - base - bytestring - containers - pureMD5 - template-haskell - ]; - libraryPkgconfigDepends = [ python ]; - description = "Call python inline from haskell"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { python = null; }; - - "json-qq" = callPackage ( - { - mkDerivation, - base, - haskell-src-meta, - parsec, - template-haskell, + filepath, + hspec, + mime-types, + network-uri, + tagsoup, + text, + time, }: mkDerivation { - pname = "json-qq"; - version = "0.4.1"; - sha256 = "0rpfv0i4jhjkq39xcs3b89ms0w4il4l7f385msqj93qzj76is7m6"; - revision = "1"; - editedCabalFile = "0nzqr6mbbc4vv5v1p5x208rmkfgyvilvd2hp3z95w4330bggyw70"; + pname = "json-feed"; + version = "2.0.0.15"; + sha256 = "0rkcwd61j4bfp4jmhjj34nsid6mwgzyf715cn9jrm0xsxwcx5bx9"; libraryHaskellDepends = [ + aeson base - haskell-src-meta - parsec - template-haskell + bytestring + mime-types + network-uri + tagsoup + text + time ]; - description = "Json Quasiquatation library for Haskell"; - license = "unknown"; - hydraPlatforms = lib.platforms.none; - broken = true; + testHaskellDepends = [ + base + bytestring + filepath + hspec + ]; + description = "JSON Feed"; + license = lib.licenses.mit; } ) { }; @@ -392170,66 +226034,6 @@ self: { } ) { }; - "json-rpc-client" = callPackage ( - { - mkDerivation, - aeson, - base, - bytestring, - HUnit, - json-rpc-server, - mtl, - QuickCheck, - scientific, - test-framework, - test-framework-hunit, - test-framework-quickcheck2, - text, - unordered-containers, - vector, - vector-algorithms, - }: - mkDerivation { - pname = "json-rpc-client"; - version = "0.2.5.0"; - sha256 = "177lrw5m9dxdk6mcay0f92rwyih8q7znwb8m6da6r3zsn30gajak"; - revision = "10"; - editedCabalFile = "19vf7gibvqgcm27b5n0ls4s7wi1kr87crn776ifqc9gbr2l9bfpi"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson - base - bytestring - json-rpc-server - mtl - text - unordered-containers - vector - vector-algorithms - ]; - testHaskellDepends = [ - aeson - base - bytestring - HUnit - json-rpc-server - mtl - QuickCheck - scientific - test-framework - test-framework-hunit - test-framework-quickcheck2 - text - unordered-containers - vector - ]; - description = "JSON-RPC 2.0 on the client side."; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "json-rpc-generic" = callPackage ( { mkDerivation, @@ -392326,67 +226130,6 @@ self: { } ) { }; - "json-schema" = callPackage ( - { - mkDerivation, - aeson, - attoparsec, - base, - base-compat-batteries, - bytestring, - containers, - generic-aeson, - generic-deriving, - mtl, - scientific, - tasty, - tasty-hunit, - tasty-th, - text, - time, - unordered-containers, - vector, - }: - mkDerivation { - pname = "json-schema"; - version = "0.7.4.2"; - sha256 = "09bgcc00q1v24rdglw9b24dgi690mlax6abarhcgvgmn22406wp8"; - revision = "1"; - editedCabalFile = "0pwmh48z54n0mrwzmgff95mwy1jbmy1rwsk5kmddby86f0j5873g"; - libraryHaskellDepends = [ - aeson - base - base-compat-batteries - containers - generic-aeson - generic-deriving - mtl - scientific - text - time - unordered-containers - vector - ]; - testHaskellDepends = [ - aeson - attoparsec - base - base-compat-batteries - bytestring - generic-aeson - tasty - tasty-hunit - tasty-th - text - vector - ]; - description = "Types and type classes for defining JSON schemas"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "json-sop" = callPackage ( { mkDerivation, @@ -392630,34 +226373,6 @@ self: { } ) { }; - "json-state" = callPackage ( - { - mkDerivation, - aeson, - aeson-pretty, - base, - bytestring, - libgit, - time-units, - }: - mkDerivation { - pname = "json-state"; - version = "0.1.0.1"; - sha256 = "1xv4kmbq09q5qc0nl4bqwrlr226q943nyq8ap7b2bvcqykyaf2pi"; - libraryHaskellDepends = [ - aeson - aeson-pretty - base - bytestring - libgit - time-units - ]; - description = "Keep program state in JSON files"; - license = lib.licenses.publicDomain; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "json-stream" = callPackage ( { mkDerivation, @@ -392992,217 +226707,6 @@ self: { } ) { }; - "json-togo" = callPackage ( - { - mkDerivation, - aeson, - attoparsec, - attoparsec-trans, - base, - bytestring, - scientific, - text, - transformers, - unordered-containers, - vector, - }: - mkDerivation { - pname = "json-togo"; - version = "0.1.1.0"; - sha256 = "0aw0dkv1scllj56vj9q07a44vfs88f3k5x1m80y0mivlpz0280l3"; - libraryHaskellDepends = [ - aeson - attoparsec - attoparsec-trans - base - bytestring - scientific - text - transformers - unordered-containers - vector - ]; - description = "Effectful parsing of JSON documents"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "json-tokens" = callPackage ( - { - mkDerivation, - array-builder, - array-chunks, - base, - byteslice, - bytesmith, - bytestring, - gauge, - neat-interpolation, - primitive, - QuickCheck, - scientific-notation, - small-bytearray-builder, - tasty, - tasty-hunit, - text, - text-short, - vector, - }: - mkDerivation { - pname = "json-tokens"; - version = "0.1.0.1"; - sha256 = "031x1k0j86qnkq8xddxf6q8mhrbmd88aa40x8w6485zr1v16dnis"; - libraryHaskellDepends = [ - array-builder - array-chunks - base - byteslice - bytesmith - bytestring - primitive - scientific-notation - text-short - ]; - testHaskellDepends = [ - base - byteslice - bytestring - neat-interpolation - primitive - QuickCheck - scientific-notation - small-bytearray-builder - tasty - tasty-hunit - text - vector - ]; - benchmarkHaskellDepends = [ - base - byteslice - bytestring - gauge - neat-interpolation - primitive - scientific-notation - text - ]; - description = "Tokenize JSON"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "json-tools" = callPackage ( - { - mkDerivation, - aeson, - attoparsec, - attoparsec-expr, - base, - bytestring, - containers, - process, - scientific, - string-conversions, - tar, - text, - unordered-containers, - vector, - }: - mkDerivation { - pname = "json-tools"; - version = "0.5.1"; - sha256 = "0ylh7a3h2dwl55p5s4q7378k0f1jcsvwlngxqrr5v1kf1qp74jnm"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - aeson - attoparsec - attoparsec-expr - base - bytestring - containers - process - scientific - string-conversions - tar - text - unordered-containers - vector - ]; - description = "A collection of JSON tools"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "json-tracer" = callPackage ( - { - mkDerivation, - aeson, - aeson-pretty, - base, - bytestring, - containers, - ghc-prim, - hashable, - hspec, - hspec-core, - hspec-discover, - hspec-expectations, - microlens, - microlens-ghc, - mtl, - template-haskell, - text, - time, - transformers, - unordered-containers, - }: - mkDerivation { - pname = "json-tracer"; - version = "0.0.3.0"; - sha256 = "164plgxsaz2nyjl59zip8zj6rxn6gzq91vfqp11fdmafxn3cjv61"; - libraryHaskellDepends = [ - aeson - base - containers - ghc-prim - hashable - microlens - microlens-ghc - mtl - template-haskell - text - transformers - unordered-containers - ]; - testHaskellDepends = [ - aeson - aeson-pretty - base - bytestring - containers - hspec - hspec-core - hspec-discover - hspec-expectations - microlens - mtl - time - ]; - testToolDepends = [ hspec-discover ]; - description = "A polymorphic, type-safe, json-structured tracing library"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "json-types" = callPackage ( { mkDerivation, @@ -393224,75 +226728,6 @@ self: { } ) { }; - "json2" = callPackage ( - { - mkDerivation, - base, - blaze-builder, - bytestring, - containers, - json2-types, - mtl, - old-locale, - parsec, - pretty, - time, - utf8-string, - }: - mkDerivation { - pname = "json2"; - version = "0.8.3"; - sha256 = "1w7x67cykbnr2h8jjjqd5whf7pq7vwk7r9g1q1i9g25b9b49i7r8"; - libraryHaskellDepends = [ - base - blaze-builder - bytestring - containers - json2-types - mtl - old-locale - parsec - pretty - time - utf8-string - ]; - description = "Library provides support for JSON"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "json2-hdbc" = callPackage ( - { - mkDerivation, - base, - containers, - HDBC, - json2, - json2-types, - time, - utf8-string, - }: - mkDerivation { - pname = "json2-hdbc"; - version = "0.5.1"; - sha256 = "1flbh68ymm39ccw5h9fiwy35qarn8zkxljmnjgg6fd39j8zbc3dj"; - libraryHaskellDepends = [ - base - containers - HDBC - json2 - json2-types - time - utf8-string - ]; - description = "Support JSON for SQL Database"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "json2-types" = callPackage ( { mkDerivation, @@ -393416,52 +226851,6 @@ self: { } ) { }; - "jsonextfilter" = callPackage ( - { - mkDerivation, - aeson, - attoparsec, - base, - bytestring, - containers, - monads-tf, - optparse-applicative, - process, - scientific, - string-qq, - text, - unordered-containers, - vector, - }: - mkDerivation { - pname = "jsonextfilter"; - version = "0.1.0.0"; - sha256 = "0mm1q3fplxig32qi3iyish6ba40j7n13wg40l0266fiy2dsccbbc"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - aeson - attoparsec - base - bytestring - containers - monads-tf - optparse-applicative - process - scientific - string-qq - text - unordered-containers - vector - ]; - description = "Filter select values in JSON objects to unix programs"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - mainProgram = "jsonextfilter"; - broken = true; - } - ) { }; - "jsonifier" = callPackage ( { mkDerivation, @@ -393846,37 +227235,6 @@ self: { } ) { }; - "jsonresume" = callPackage ( - { - mkDerivation, - aeson, - base, - bytestring, - old-locale, - text, - time, - unordered-containers, - }: - mkDerivation { - pname = "jsonresume"; - version = "0.1.0.1"; - sha256 = "14kv1cbjh1m9ri0vjj015hx6bx6l7jv71gpfa6n0fg21hh5fl7a4"; - libraryHaskellDepends = [ - aeson - base - bytestring - old-locale - text - time - unordered-containers - ]; - description = "Parser and datatypes for the JSON Resume format"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "jsonrpc-conduit" = callPackage ( { mkDerivation, @@ -393965,364 +227323,6 @@ self: { } ) { }; - "jsons-to-schema" = callPackage ( - { - mkDerivation, - aeson, - aeson-pretty, - base, - bytestring, - conduit, - conduit-combinators, - containers, - Glob, - hjsonschema, - hspec, - neat-interpolation, - optparse-applicative, - protolude, - QuickCheck, - quickcheck-instances, - safe, - scientific, - semigroups, - text, - uniplate, - unordered-containers, - vector, - }: - mkDerivation { - pname = "jsons-to-schema"; - version = "0.1.0.0"; - sha256 = "0agnvc8x2yvl2m0lz5hcflmi44gscyb349zn0xbrlk9arq7ha8nc"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson - aeson-pretty - base - bytestring - containers - hjsonschema - protolude - QuickCheck - safe - scientific - semigroups - text - unordered-containers - vector - ]; - executableHaskellDepends = [ - base - bytestring - conduit - conduit-combinators - Glob - hjsonschema - optparse-applicative - protolude - ]; - testHaskellDepends = [ - aeson - aeson-pretty - base - bytestring - containers - hjsonschema - hspec - neat-interpolation - protolude - QuickCheck - quickcheck-instances - scientific - text - uniplate - unordered-containers - vector - ]; - description = "JSON to JSON Schema"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - mainProgram = "jsons-to-schema-exe"; - } - ) { }; - - "jsonschema-gen" = callPackage ( - { - mkDerivation, - aeson, - base, - bytestring, - containers, - process, - scientific, - tagged, - text, - time, - unordered-containers, - vector, - }: - mkDerivation { - pname = "jsonschema-gen"; - version = "0.4.1.0"; - sha256 = "1ssgci0nnpdj5sgw7wghnca8ndx20azb5z7svbxk6a1gmh9pfndj"; - revision = "1"; - editedCabalFile = "0fiwjdyp4fmw662x7bcdp1wglxxm39l6ivshkb65zmczc3szac5d"; - libraryHaskellDepends = [ - aeson - base - bytestring - containers - scientific - tagged - text - time - unordered-containers - vector - ]; - testHaskellDepends = [ - aeson - base - bytestring - containers - process - tagged - text - ]; - description = "JSON Schema generator from Algebraic data type"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "jsonsql" = callPackage ( - { - mkDerivation, - aeson, - attoparsec, - base, - bytestring, - containers, - HUnit, - optparse-applicative, - scientific, - string-qq, - text, - unordered-containers, - vector, - }: - mkDerivation { - pname = "jsonsql"; - version = "0.1.2.1"; - sha256 = "0swnnwayj00nm4wpl31g4qc45vd70mi2vkbqw1cpyi9lh084w8wk"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - aeson - attoparsec - base - bytestring - containers - HUnit - optparse-applicative - scientific - string-qq - text - unordered-containers - vector - ]; - description = "Interpolate JSON object values into SQL strings"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - mainProgram = "jsonsql"; - broken = true; - } - ) { }; - - "jsontsv" = callPackage ( - { - mkDerivation, - aeson, - attoparsec, - base, - bytestring, - containers, - csv, - optparse-applicative, - scientific, - string-qq, - text, - unordered-containers, - vector, - }: - mkDerivation { - pname = "jsontsv"; - version = "0.1.7.0"; - sha256 = "1fs15fmf634jr6racck22djfjp1gnjsyff2a7xfnibd9jznxknpx"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - aeson - attoparsec - base - bytestring - containers - csv - optparse-applicative - scientific - string-qq - text - unordered-containers - vector - ]; - description = "JSON to TSV transformer"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - mainProgram = "jsontsv"; - broken = true; - } - ) { }; - - "jsonxlsx" = callPackage ( - { - mkDerivation, - aeson, - attoparsec, - base, - bytestring, - containers, - HUnit, - old-time, - optparse-applicative, - scientific, - string-qq, - text, - time, - unordered-containers, - vector, - xlsx, - }: - mkDerivation { - pname = "jsonxlsx"; - version = "0.1.0.1"; - sha256 = "0q64z7hw9mr3lpz02dcqybw4jxjc3glagyj4va9cgipfxxxjcy27"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - aeson - attoparsec - base - bytestring - containers - HUnit - old-time - optparse-applicative - scientific - string-qq - text - time - unordered-containers - vector - xlsx - ]; - description = "json to xlsx converter"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - mainProgram = "jsonxlsx"; - broken = true; - } - ) { }; - - "jsop" = callPackage ( - { - mkDerivation, - aeson, - base, - containers, - generics-sop, - lens, - lens-aeson, - monoidal-containers, - protolude, - string-interpolate, - tasty, - tasty-discover, - tasty-hspec, - text, - unordered-containers, - }: - mkDerivation { - pname = "jsop"; - version = "0.2.0.1"; - sha256 = "05qacp69pk4fm1b1mrk2ax8f8mbfzsb71bkj2qraa116xym61j38"; - libraryHaskellDepends = [ - aeson - base - containers - generics-sop - lens - lens-aeson - monoidal-containers - protolude - string-interpolate - tasty - tasty-discover - tasty-hspec - text - unordered-containers - ]; - testHaskellDepends = [ - aeson - base - containers - generics-sop - lens - lens-aeson - monoidal-containers - protolude - string-interpolate - tasty - tasty-discover - tasty-hspec - text - unordered-containers - ]; - testToolDepends = [ tasty-discover ]; - description = "Cherry picking in JSON objects"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "jspath" = callPackage ( - { - mkDerivation, - base, - bytestring, - bytestring-trie, - JSONb, - utf8-string, - }: - mkDerivation { - pname = "jspath"; - version = "0.1"; - sha256 = "072q6mipfaqf33w806chf2226zpay124lgph0wlgfdbhfd5118n7"; - libraryHaskellDepends = [ - base - bytestring - bytestring-trie - JSONb - utf8-string - ]; - description = "Extract substructures from JSON by following a path"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "juandelacosa" = callPackage ( { mkDerivation, @@ -394382,105 +227382,6 @@ self: { } ) { }; - "judge" = callPackage ( - { - mkDerivation, - aeson, - ansi-wl-pprint, - attoparsec, - base, - bytestring, - containers, - directory, - filepath, - mtl, - optparse-applicative, - pointedlist, - terminal-size, - texmath, - text, - transformers, - unordered-containers, - utf8-string, - vector, - yaml, - }: - mkDerivation { - pname = "judge"; - version = "0.1.3.0"; - sha256 = "02lyd1ql4qj5da0p3mhpkh0gq8lrc6xmz3yg5hnc8mk5d3a381hw"; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - aeson - ansi-wl-pprint - attoparsec - base - bytestring - containers - mtl - pointedlist - terminal-size - texmath - text - transformers - unordered-containers - utf8-string - vector - yaml - ]; - executableHaskellDepends = [ - ansi-wl-pprint - attoparsec - base - directory - filepath - optparse-applicative - text - unordered-containers - yaml - ]; - description = "Tableau-based theorem prover for justification logic"; - license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - mainProgram = "judge"; - broken = true; - } - ) { }; - - "judy" = callPackage ( - { - mkDerivation, - base, - bytestring, - ghc-prim, - hspec, - Judy, - QuickCheck, - }: - mkDerivation { - pname = "judy"; - version = "0.4.1"; - sha256 = "0inm77n75066jcjw820cdpklqjfy76i7by4qz136c83x2x7w6fsm"; - libraryHaskellDepends = [ - base - bytestring - ghc-prim - ]; - librarySystemDepends = [ Judy ]; - testHaskellDepends = [ - base - hspec - QuickCheck - ]; - description = "Fast, scalable, mutable dynamic arrays, maps and hashes"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { Judy = null; }; - "juicy-draw" = callPackage ( { mkDerivation, @@ -394683,91 +227584,6 @@ self: { } ) { }; - "jupyter" = callPackage ( - { - mkDerivation, - aeson, - async, - base, - bytestring, - cereal, - containers, - directory, - exceptions, - extra, - filepath, - monad-control, - mtl, - process, - SHA, - silently, - tasty, - tasty-hunit, - temporary, - text, - transformers, - unordered-containers, - uuid, - zeromq4-haskell, - }: - mkDerivation { - pname = "jupyter"; - version = "0.9.0"; - sha256 = "0k06fh005njif2cszfvnfm9c9kfxpl5n28smxz6waqadg6x4k84k"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson - async - base - bytestring - cereal - containers - directory - exceptions - filepath - monad-control - mtl - process - SHA - temporary - text - transformers - unordered-containers - uuid - zeromq4-haskell - ]; - executableHaskellDepends = [ - base - process - text - transformers - ]; - testHaskellDepends = [ - aeson - async - base - bytestring - containers - directory - exceptions - extra - process - silently - tasty - tasty-hunit - text - transformers - unordered-containers - zeromq4-haskell - ]; - description = "A library for creating and using Jupyter kernels"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "justified-containers" = callPackage ( { mkDerivation, @@ -395260,59 +228076,6 @@ self: { } ) { }; - "kademlia" = callPackage ( - { - mkDerivation, - base, - bytestring, - containers, - HUnit, - mtl, - network, - QuickCheck, - stm, - tasty, - tasty-hunit, - tasty-quickcheck, - transformers, - transformers-compat, - }: - mkDerivation { - pname = "kademlia"; - version = "1.1.0.0"; - sha256 = "0wjyslrhbms6cnm495g40yl6365h3vgjcka12lka8xdy89v3c0yy"; - libraryHaskellDepends = [ - base - bytestring - containers - mtl - network - stm - transformers - transformers-compat - ]; - testHaskellDepends = [ - base - bytestring - containers - HUnit - mtl - network - QuickCheck - stm - tasty - tasty-hunit - tasty-quickcheck - transformers - transformers-compat - ]; - description = "An implementation of the Kademlia DHT Protocol"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "kafka" = callPackage ( { mkDerivation }: mkDerivation { @@ -395325,310 +228088,6 @@ self: { } ) { }; - "kafka-client" = callPackage ( - { - mkDerivation, - base, - bytestring, - cereal, - digest, - dlist, - hspec, - hspec-discover, - network, - QuickCheck, - snappy, - time, - zlib, - }: - mkDerivation { - pname = "kafka-client"; - version = "0.7.0.1"; - sha256 = "1577s3s9lf3rdw7xf7snfhiw53h6pg85l5h9l29av5fsg051ifai"; - libraryHaskellDepends = [ - base - bytestring - cereal - digest - dlist - network - snappy - time - zlib - ]; - testHaskellDepends = [ - base - bytestring - cereal - hspec - hspec-discover - QuickCheck - time - ]; - testToolDepends = [ hspec-discover ]; - description = "Low-level Haskell client library for Apache Kafka 0.7."; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "kafka-client-sync" = callPackage ( - { - mkDerivation, - base, - containers, - hw-kafka-client, - monad-parallel, - text, - }: - mkDerivation { - pname = "kafka-client-sync"; - version = "0.1.1.1"; - sha256 = "0gdp8aw2fg0haijpp1pa3rk3vgy2xarz8cc4lpxa74krifllyzyh"; - libraryHaskellDepends = [ - base - containers - hw-kafka-client - ]; - testHaskellDepends = [ - base - hw-kafka-client - monad-parallel - text - ]; - description = "Synchronous Kafka Client"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "kafka-device" = callPackage ( - { - mkDerivation, - aeson, - base, - binary, - bytestring, - cereal, - linear, - milena, - mtl, - }: - mkDerivation { - pname = "kafka-device"; - version = "1.0.2.1"; - sha256 = "1ig1qbb1yrizff4f807pw2lqqy0nvn5hy89xf4v20p02zvy0w673"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson - base - binary - bytestring - cereal - linear - milena - mtl - ]; - executableHaskellDepends = [ - aeson - base - binary - bytestring - cereal - linear - milena - mtl - ]; - description = "UI device events via a Kafka message broker"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "kafka-device-glut" = callPackage ( - { - mkDerivation, - base, - GLUT, - kafka-device, - OpenGL, - }: - mkDerivation { - pname = "kafka-device-glut"; - version = "1.0.2.1"; - sha256 = "0rz2xlrvhpqafb7m3svfykr1aa2fwrz0qpwzdxjfhpnd85ccfmzi"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - GLUT - kafka-device - OpenGL - ]; - executableHaskellDepends = [ - base - GLUT - kafka-device - OpenGL - ]; - description = "GLUT events via a Kafka message broker"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - mainProgram = "kafka-device-glut"; - } - ) { }; - - "kafka-device-joystick" = callPackage ( - { - mkDerivation, - aeson, - base, - binary, - bytestring, - cereal, - kafka-device, - yaml, - }: - mkDerivation { - pname = "kafka-device-joystick"; - version = "1.0.2.1"; - sha256 = "053whqf4yh3gjhamjfh383ijsw2brajid2q0wsyf0qbsd2y6pikl"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson - base - binary - bytestring - cereal - kafka-device - ]; - executableHaskellDepends = [ - aeson - base - binary - bytestring - cereal - kafka-device - yaml - ]; - description = "Linux joystick events via a Kafka message broker"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - mainProgram = "kafka-device-joystick"; - } - ) { }; - - "kafka-device-leap" = callPackage ( - { - mkDerivation, - aeson, - base, - hleap, - kafka-device, - websockets, - }: - mkDerivation { - pname = "kafka-device-leap"; - version = "1.0.2.1"; - sha256 = "1dm49kwk4nyvfzz6aj9h80pj510xnczfd15yamajfwwszalrj432"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson - base - hleap - kafka-device - websockets - ]; - executableHaskellDepends = [ - aeson - base - hleap - kafka-device - websockets - ]; - description = "Leap Motion events via a Kafka message broker"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - mainProgram = "kafka-device-leap"; - } - ) { }; - - "kafka-device-spacenav" = callPackage ( - { - mkDerivation, - aeson, - base, - binary, - bytestring, - cereal, - kafka-device, - yaml, - }: - mkDerivation { - pname = "kafka-device-spacenav"; - version = "1.0.2.1"; - sha256 = "0x8fwawlzzwip7v950d1m613h0p57lyy8qa2ps29alk4fj31rcik"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson - base - binary - bytestring - cereal - kafka-device - ]; - executableHaskellDepends = [ - aeson - base - binary - bytestring - cereal - kafka-device - yaml - ]; - description = "Linux SpaceNavigator events via a Kafka message broker"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - mainProgram = "kafka-device-spacenav"; - } - ) { }; - - "kafka-device-vrpn" = callPackage ( - { - mkDerivation, - base, - kafka-device, - vrpn, - }: - mkDerivation { - pname = "kafka-device-vrpn"; - version = "1.0.2.1"; - sha256 = "1jy9qqhj4yq2ry42yab7c8d9ipczv9rd09l8ixzqx4yclswzgi0x"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - kafka-device - vrpn - ]; - executableHaskellDepends = [ - base - kafka-device - vrpn - ]; - description = "VRPN events via a Kafka message broker"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - mainProgram = "kafka-device-vrpn"; - } - ) { }; - "kafka-interchange" = callPackage ( { mkDerivation, @@ -395713,88 +228172,6 @@ self: { } ) { }; - "kaleidoscope" = callPackage ( - { - mkDerivation, - base, - containers, - haskeline, - llvm-general, - llvm-general-pure, - mtl, - parsec, - transformers, - }: - mkDerivation { - pname = "kaleidoscope"; - version = "0.1.0.0"; - sha256 = "1xaisygn3bbzjkqc8labwrgiig1d2ldc04wvvkkrp32619dsrph1"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - haskeline - llvm-general - llvm-general-pure - mtl - transformers - ]; - executableHaskellDepends = [ - base - containers - haskeline - llvm-general - llvm-general-pure - mtl - parsec - transformers - ]; - doHaddock = false; - description = "Haskell Kaleidoscope tutorial"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "kalman" = callPackage ( - { - mkDerivation, - base, - Chart, - Chart-cairo, - Chart-diagrams, - hmatrix, - random-fu, - random-fu-multivariate, - vector, - }: - mkDerivation { - pname = "kalman"; - version = "1.0.0.2"; - sha256 = "01rw9r650igzgwaz5mqky485j75idz0vg4c9jxj6ih58646whz41"; - libraryHaskellDepends = [ - base - hmatrix - random-fu - random-fu-multivariate - vector - ]; - testHaskellDepends = [ - base - Chart - Chart-cairo - Chart-diagrams - hmatrix - random-fu - random-fu-multivariate - ]; - description = "Kalman and particle filters and smoothers"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "kan-extensions" = callPackage ( { mkDerivation, @@ -395838,27 +228215,6 @@ self: { } ) { }; - "kangaroo" = callPackage ( - { - mkDerivation, - array, - base, - }: - mkDerivation { - pname = "kangaroo"; - version = "0.4.0"; - sha256 = "1l7b71dhrxd2g3nbqg3h0n5dvgxr23av1cy1f0mvw347y91rx36x"; - libraryHaskellDepends = [ - array - base - ]; - description = "Binary parsing with random access"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "kanji" = callPackage ( { mkDerivation, @@ -395946,164 +228302,6 @@ self: { } ) { }; - "kansas-lava" = callPackage ( - { - mkDerivation, - base, - bytestring, - cmdargs, - containers, - data-default, - data-reify, - directory, - dotgen, - filepath, - netlist, - netlist-to-vhdl, - process, - random, - sized-types, - strict, - template-haskell, - }: - mkDerivation { - pname = "kansas-lava"; - version = "0.2.4.5"; - sha256 = "0pcxmsf18ykvf1mbm3w8qn86rdmr69ilcakrgidl1ag6liq1s6zc"; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base - bytestring - cmdargs - containers - data-default - data-reify - directory - dotgen - filepath - netlist - netlist-to-vhdl - process - random - sized-types - strict - template-haskell - ]; - description = "Kansas Lava is a hardware simulator and VHDL generator"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "kansas-lava-cores" = callPackage ( - { - mkDerivation, - ansi-terminal, - base, - bytestring, - data-default, - directory, - filepath, - kansas-lava, - network, - sized-types, - }: - mkDerivation { - pname = "kansas-lava-cores"; - version = "0.1.2.2"; - sha256 = "076hd8c59hivdirpf4y5vgdlvhq74lfd5zm6np34y8hblq6jyl0m"; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - ansi-terminal - base - bytestring - data-default - directory - filepath - kansas-lava - network - sized-types - ]; - description = "FPGA Cores Written in Kansas Lava"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "kansas-lava-papilio" = callPackage ( - { - mkDerivation, - ansi-terminal, - base, - bytestring, - data-default, - directory, - filepath, - kansas-lava, - kansas-lava-cores, - netlist, - network, - sized-types, - }: - mkDerivation { - pname = "kansas-lava-papilio"; - version = "0.3.1"; - sha256 = "0n8ffiygl72cbqza0whmkhsqyg6d7flfdz1jvr22g68x3005r00y"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - ansi-terminal - base - bytestring - data-default - directory - filepath - kansas-lava - kansas-lava-cores - netlist - network - sized-types - ]; - description = "Kansas Lava support files for the Papilio FPGA board"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "kansas-lava-shake" = callPackage ( - { - mkDerivation, - base, - containers, - kansas-lava, - mustache, - shake, - text, - vector, - }: - mkDerivation { - pname = "kansas-lava-shake"; - version = "0.3.0"; - sha256 = "00mmk0fsv1vdm3xidmv9wa5dwbnka564bhjp2j3jx5i4l7kw4xrb"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base - containers - kansas-lava - mustache - shake - text - vector - ]; - description = "Shake rules for building Kansas Lava projects"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "karabiner-config" = callPackage ( { mkDerivation, @@ -396149,119 +228347,6 @@ self: { } ) { }; - "karakuri" = callPackage ( - { - mkDerivation, - base, - comonad, - containers, - minioperational, - mtl, - transformers, - }: - mkDerivation { - pname = "karakuri"; - version = "0.1.1"; - sha256 = "0ys4kx4pq9xrb4gjg6syyim8mpfy3yzyyiw2mdc4vh9hmsny373c"; - libraryHaskellDepends = [ - base - comonad - containers - minioperational - mtl - transformers - ]; - description = "Good stateful automata"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "karps" = callPackage ( - { - mkDerivation, - aeson, - aeson-pretty, - base, - base16-bytestring, - binary, - bytestring, - containers, - cryptohash-sha256, - deepseq, - either, - exceptions, - formatting, - hashable, - hspec, - lens, - monad-logger, - mtl, - QuickCheck, - random, - raw-strings-qq, - scientific, - semigroups, - SHA, - text, - text-format, - transformers, - unordered-containers, - vector, - wreq, - }: - mkDerivation { - pname = "karps"; - version = "0.2.0.0"; - sha256 = "06z010p2f0xzv69kp6csl68b3bl3cds6in6vvb80s4gjwkrj5v9k"; - libraryHaskellDepends = [ - aeson - aeson-pretty - base - base16-bytestring - binary - bytestring - containers - cryptohash-sha256 - deepseq - either - exceptions - formatting - hashable - lens - monad-logger - mtl - QuickCheck - random - scientific - semigroups - SHA - text - text-format - transformers - unordered-containers - vector - wreq - ]; - testHaskellDepends = [ - aeson - base - bytestring - containers - formatting - hspec - QuickCheck - raw-strings-qq - text - vector - ]; - description = "Haskell bindings for Spark Dataframes and Datasets"; - license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "karver" = callPackage ( { mkDerivation, @@ -396647,33 +228732,6 @@ self: { } ) { }; - "katip-kafka" = callPackage ( - { - mkDerivation, - aeson, - base, - bytestring, - hw-kafka-client, - katip, - }: - mkDerivation { - pname = "katip-kafka"; - version = "0.0.1"; - sha256 = "1w5w3sccvh1rl0zd69k0nya0bbf9jwi9ahb7q1c761jq5333gv8q"; - libraryHaskellDepends = [ - aeson - base - bytestring - hw-kafka-client - katip - ]; - description = "Katip scribe to send logs to Kafka"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "katip-logstash" = callPackage ( { mkDerivation, @@ -396827,79 +228885,6 @@ self: { } ) { }; - "katip-rollbar" = callPackage ( - { - mkDerivation, - aeson, - async, - base, - hostname, - http-client, - katip, - rollbar-hs, - stm-chans, - text, - time, - }: - mkDerivation { - pname = "katip-rollbar"; - version = "0.3.0.1"; - sha256 = "1phci2x12qmih9aaly0j1g1a07wcd80rrkwqgfy3pxnbjx6d6817"; - libraryHaskellDepends = [ - aeson - async - base - hostname - http-client - katip - rollbar-hs - stm-chans - text - time - ]; - description = "Katip scribe that logs to Rollbar"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "katip-scalyr-scribe" = callPackage ( - { - mkDerivation, - aeson, - base, - katip, - scientific, - text, - unordered-containers, - }: - mkDerivation { - pname = "katip-scalyr-scribe"; - version = "0.1.0.1"; - sha256 = "0pbq4mawa0aq2gzzhkrk9avv0pv20hjhq2qv0lvs0wyhv5jnmkqr"; - libraryHaskellDepends = [ - aeson - base - katip - scientific - text - unordered-containers - ]; - testHaskellDepends = [ - aeson - base - katip - scientific - text - unordered-containers - ]; - description = "A katip scribe for logging to json"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "katip-syslog" = callPackage ( { mkDerivation, @@ -396996,365 +228981,6 @@ self: { } ) { }; - "katt" = callPackage ( - { - mkDerivation, - aeson, - base, - bytestring, - ConfigFile, - containers, - directory, - errors, - filepath, - lens, - mtl, - parsec, - text, - url, - wreq, - zip-archive, - }: - mkDerivation { - pname = "katt"; - version = "0.2.0.3"; - sha256 = "1hvi23r9wgz77w6wl9nhpvkcbajm5m8kmy87pjmfgifj60d9cmhg"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson - base - bytestring - ConfigFile - containers - directory - errors - filepath - lens - mtl - parsec - text - url - wreq - zip-archive - ]; - executableHaskellDepends = [ - base - bytestring - mtl - ]; - testHaskellDepends = [ - base - bytestring - directory - mtl - ]; - description = "Client for the Kattis judge system"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "katt"; - broken = true; - } - ) { }; - - "katydid" = callPackage ( - { - mkDerivation, - base, - bytestring, - containers, - criterion, - deepseq, - directory, - either, - extra, - filepath, - HUnit, - hxt, - ilist, - json, - mtl, - parsec, - primes, - regex-tdfa, - tasty, - tasty-hunit, - text, - transformers, - }: - mkDerivation { - pname = "katydid"; - version = "0.4.0.2"; - sha256 = "0gg94j983q6bga015h2wiia2a0miy0s70rsxa46g3k0czpkzgyyg"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - bytestring - containers - deepseq - either - extra - hxt - ilist - json - mtl - parsec - regex-tdfa - text - transformers - ]; - executableHaskellDepends = [ - base - bytestring - containers - deepseq - either - extra - hxt - ilist - json - mtl - parsec - regex-tdfa - text - transformers - ]; - testHaskellDepends = [ - base - bytestring - containers - deepseq - directory - either - extra - filepath - HUnit - hxt - ilist - json - mtl - parsec - primes - regex-tdfa - tasty - tasty-hunit - text - transformers - ]; - benchmarkHaskellDepends = [ - base - bytestring - containers - criterion - deepseq - directory - either - extra - filepath - hxt - ilist - json - mtl - parsec - regex-tdfa - text - transformers - ]; - description = "A haskell implementation of Katydid"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "katydid-exe"; - broken = true; - } - ) { }; - - "kawa" = callPackage ( - { - mkDerivation, - attoparsec, - base, - directory, - hashable, - hedgehog, - optparse-applicative, - text, - unordered-containers, - }: - mkDerivation { - pname = "kawa"; - version = "0.1.0.0"; - sha256 = "1rd5k12my1693sjnkqr6jn7p7byrycpcszf98z5s9pxaxblz4gdk"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - attoparsec - base - hashable - text - unordered-containers - ]; - executableHaskellDepends = [ - base - directory - optparse-applicative - text - unordered-containers - ]; - testHaskellDepends = [ - base - hedgehog - text - unordered-containers - ]; - description = "Key-value store in single files"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "kawa"; - broken = true; - } - ) { }; - - "kawaii" = callPackage ( - { - mkDerivation, - base, - bytestring, - containers, - data-default, - hakyll, - hspec, - lens, - lifted-base, - monad-control, - monad-logger, - mtl, - optparse-applicative, - QuickCheck, - safe, - streaming-commons, - text, - wai, - wai-app-static, - wai-extra, - warp, - warp-tls, - }: - mkDerivation { - pname = "kawaii"; - version = "0.0.1.1"; - sha256 = "1h22bxcy7z19ls9g2dxnbf3r6xacxm59n2mkrbs4q798pgznczlv"; - libraryHaskellDepends = [ - base - bytestring - containers - data-default - hakyll - lens - lifted-base - monad-control - monad-logger - mtl - optparse-applicative - safe - streaming-commons - text - wai - wai-app-static - wai-extra - warp - warp-tls - ]; - testHaskellDepends = [ - base - bytestring - containers - data-default - hakyll - hspec - lens - lifted-base - monad-control - monad-logger - mtl - optparse-applicative - QuickCheck - safe - streaming-commons - text - wai - wai-app-static - wai-extra - warp - warp-tls - ]; - description = "Utilities for serving static sites and blogs with Wai/Warp"; - license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "kawhi" = callPackage ( - { - mkDerivation, - aeson, - base, - bytestring, - exceptions, - http-client, - http-conduit, - http-types, - mtl, - safe, - scientific, - smallcheck, - tasty, - tasty-hunit, - tasty-quickcheck, - tasty-smallcheck, - text, - }: - mkDerivation { - pname = "kawhi"; - version = "0.3.0"; - sha256 = "0kx4lbyfh7brfg6vr05xcwa233lzld0pm3isvc4pr8fs7mx3h893"; - libraryHaskellDepends = [ - aeson - base - bytestring - exceptions - http-client - http-conduit - http-types - mtl - safe - scientific - text - ]; - testHaskellDepends = [ - aeson - base - bytestring - exceptions - http-client - http-types - mtl - scientific - smallcheck - tasty - tasty-hunit - tasty-quickcheck - tasty-smallcheck - text - ]; - description = "stats.NBA.com library"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "kazura-queue" = callPackage ( { mkDerivation, @@ -397473,69 +229099,6 @@ self: { } ) { kcd-parser = null; }; - "kd-tree" = callPackage ( - { - mkDerivation, - base, - lens, - linear, - vector, - vector-algorithms, - }: - mkDerivation { - pname = "kd-tree"; - version = "0.1.0"; - sha256 = "0j9wlap9gx2szb5saa4pxm7mp2w132ki1p6mlcv0s0wy9rv6dnm7"; - libraryHaskellDepends = [ - base - lens - linear - vector - vector-algorithms - ]; - description = "A simple k-d tree implementation"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "kdesrc-build-extra" = callPackage ( - { - mkDerivation, - ansi-terminal, - base, - bytestring, - cmdargs, - directory, - MissingH, - parsec, - process, - }: - mkDerivation { - pname = "kdesrc-build-extra"; - version = "0.1.1"; - sha256 = "07bcx57ahnxi3ihj2x81q8cfxzpjyvxbikh5bgljdxili01r0kn5"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - ansi-terminal - base - bytestring - cmdargs - directory - MissingH - parsec - process - ]; - description = "Build profiles for kdesrc-build"; - license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - mainProgram = "kdesrc-build-extra"; - broken = true; - } - ) { }; - "kdesrc-build-profiles" = callPackage ( { mkDerivation, @@ -397617,71 +229180,6 @@ self: { } ) { }; - "keccak" = callPackage ( - { - mkDerivation, - base, - base16-bytestring, - bytestring, - cryptonite, - gauge, - HUnit, - memory, - parsec, - QuickCheck, - quickcheck-instances, - test-framework, - test-framework-hunit, - test-framework-quickcheck2, - text, - vector, - }: - mkDerivation { - pname = "keccak"; - version = "0.2.0"; - sha256 = "1hkp6zn86bvn817vvxd2yqjgfh76n0ynvyqq2942frl1i0v19ymw"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - bytestring - vector - ]; - executableHaskellDepends = [ - base - base16-bytestring - bytestring - ]; - testHaskellDepends = [ - base - base16-bytestring - bytestring - cryptonite - HUnit - memory - parsec - QuickCheck - quickcheck-instances - test-framework - test-framework-hunit - test-framework-quickcheck2 - text - ]; - benchmarkHaskellDepends = [ - base - bytestring - cryptonite - gauge - memory - ]; - description = "cryptographic functions based on the sponge construction"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - mainProgram = "collision"; - broken = true; - } - ) { }; - "keelung" = callPackage ( { mkDerivation, @@ -397730,82 +229228,6 @@ self: { } ) { }; - "keenser" = callPackage ( - { - mkDerivation, - aeson, - attoparsec, - base, - bytestring, - containers, - fast-logger, - hedis, - hostname, - lifted-base, - monad-control, - monad-logger, - old-locale, - random, - scientific, - stm, - text, - thyme, - time, - transformers, - transformers-base, - unix, - unordered-containers, - vector-space, - }: - mkDerivation { - pname = "keenser"; - version = "0.1.0.0"; - sha256 = "17ci4928qyqsyzxk99pqvsi3zfyz0ifqv5qdv5zhg4qwndf84zll"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson - attoparsec - base - bytestring - containers - hedis - hostname - lifted-base - monad-control - monad-logger - old-locale - random - scientific - stm - text - thyme - time - transformers - transformers-base - unix - unordered-containers - vector-space - ]; - executableHaskellDepends = [ - aeson - base - bytestring - fast-logger - hedis - monad-logger - text - unix - ]; - testHaskellDepends = [ base ]; - description = "Initial project template from stack"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "keenser-exe"; - broken = true; - } - ) { }; - "keep-alive" = callPackage ( { mkDerivation, @@ -397908,7 +229330,6 @@ self: { ]; description = "Haskell on Gtk rails - Gtk-based global environment for MVC applications"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; } ) { }; @@ -398031,7 +229452,6 @@ self: { ]; description = "Haskell on Gtk rails - Solutions to recurrent problems in Gtk applications"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; } ) { }; @@ -398068,6 +229488,7 @@ self: { description = "Haskell on Gtk rails - Gtk-based View for MVC applications"; license = lib.licenses.bsd3; hydraPlatforms = lib.platforms.none; + broken = true; } ) { }; @@ -398164,7 +229585,6 @@ self: { ]; description = "Haskell on Gtk rails - Reactive Fields for Gtk widgets"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; } ) { }; @@ -398266,7 +229686,6 @@ self: { ]; description = "Haskell on Rails - Reactive Fields for WX widgets"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; } ) { }; @@ -398392,96 +229811,6 @@ self: { } ) { }; - "keera-posture" = callPackage ( - { - mkDerivation, - allocated-processor, - base, - bytestring, - cmdargs, - containers, - cv-combinators, - directory, - filepath, - gio, - glib, - gtk, - gtk-helpers, - hgettext, - HOpenCV, - HTTP, - IfElse, - keera-hails-i18n, - keera-hails-mvc-controller, - keera-hails-mvc-environment-gtk, - keera-hails-mvc-model-protectedmodel, - keera-hails-mvc-solutions-config, - keera-hails-mvc-solutions-gtk, - keera-hails-mvc-view-gtk, - keera-hails-reactive-gtk, - keera-hails-reactivevalues, - MissingK, - mtl, - network, - process, - SDL, - SDL-mixer, - SDL_mixer, - setlocale, - time, - utf8-string, - }: - mkDerivation { - pname = "keera-posture"; - version = "0.2.4.3"; - sha256 = "0kaka302qgax29583kvzhyl6fffzmywh3fk398xhzvixmza9k7sl"; - isLibrary = false; - isExecutable = true; - enableSeparateDataOutput = true; - executableHaskellDepends = [ - allocated-processor - base - bytestring - cmdargs - containers - cv-combinators - directory - filepath - gio - glib - gtk - gtk-helpers - hgettext - HOpenCV - HTTP - IfElse - keera-hails-i18n - keera-hails-mvc-controller - keera-hails-mvc-environment-gtk - keera-hails-mvc-model-protectedmodel - keera-hails-mvc-solutions-config - keera-hails-mvc-solutions-gtk - keera-hails-mvc-view-gtk - keera-hails-reactive-gtk - keera-hails-reactivevalues - MissingK - mtl - network - process - SDL - SDL-mixer - setlocale - time - utf8-string - ]; - executableSystemDepends = [ SDL_mixer ]; - description = "Get notifications when your sitting posture is inappropriate"; - license = "unknown"; - hydraPlatforms = lib.platforms.none; - mainProgram = "keera-posture"; - } - ) { inherit (pkgs) SDL_mixer; }; - "keid-core" = callPackage ( { mkDerivation, @@ -398808,60 +230137,6 @@ self: { } ) { }; - "keiretsu" = callPackage ( - { - mkDerivation, - aeson, - ansi-terminal, - async, - base, - bytestring, - conduit, - conduit-extra, - directory, - filepath, - hslogger, - network, - optparse-applicative, - process, - text, - unix, - unordered-containers, - yaml, - }: - mkDerivation { - pname = "keiretsu"; - version = "0.4.4"; - sha256 = "0bwwsxav04dnipg5xvb8j4ncxbd5mw6r5gisn5avqjm34wr8y2b9"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - aeson - ansi-terminal - async - base - bytestring - conduit - conduit-extra - directory - filepath - hslogger - network - optparse-applicative - process - text - unix - unordered-containers - yaml - ]; - description = "Multi-process orchestration for development and integration testing"; - license = "unknown"; - hydraPlatforms = lib.platforms.none; - mainProgram = "keiretsu"; - broken = true; - } - ) { }; - "kempe" = callPackage ( { mkDerivation, @@ -398955,63 +230230,6 @@ self: { } ) { }; - "kerry" = callPackage ( - { - mkDerivation, - aeson, - aeson-pretty, - base, - bytestring, - containers, - errors, - hedgehog, - hedgehog-corpus, - mmorph, - mtl, - process, - resourcet, - temporary-resourcet, - text, - transformers, - transformers-bifunctors, - }: - mkDerivation { - pname = "kerry"; - version = "0.1.1"; - sha256 = "1b42mmwjvw39fyqi9b6gv67qpmswg6biabar55vggsxi8j43s76z"; - libraryHaskellDepends = [ - aeson - aeson-pretty - base - bytestring - containers - errors - mmorph - text - transformers - transformers-bifunctors - ]; - testHaskellDepends = [ - aeson - base - bytestring - containers - hedgehog - hedgehog-corpus - mmorph - mtl - process - resourcet - temporary-resourcet - text - transformers - ]; - description = "Manage and abstract your packer configurations"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "kesha" = callPackage ( { mkDerivation, @@ -399482,61 +230700,6 @@ self: { } ) { }; - "kevin" = callPackage ( - { - mkDerivation, - attoparsec, - base, - bytestring, - containers, - cprng-aes, - damnpacket, - data-default, - exceptions, - HTTP, - lens, - mtl, - network, - regex-pcre-builtin, - stm, - text, - time, - tls, - tls-extra, - }: - mkDerivation { - pname = "kevin"; - version = "0.11.0"; - sha256 = "00hghd44h8d87kbf0j8ns78syz79a9sdwl454sb5n6ynq62fgwr1"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - attoparsec - base - bytestring - containers - cprng-aes - damnpacket - data-default - exceptions - HTTP - lens - mtl - network - regex-pcre-builtin - stm - text - time - tls - tls-extra - ]; - description = "a dAmn ↔ IRC proxy"; - license = "GPL"; - hydraPlatforms = lib.platforms.none; - mainProgram = "kevin"; - } - ) { }; - "kewar" = callPackage ( { mkDerivation, @@ -399578,27 +230741,6 @@ self: { } ) { }; - "key" = callPackage ( - { - mkDerivation, - base, - transformers, - }: - mkDerivation { - pname = "key"; - version = "0.1.2.0"; - sha256 = "18wgalv0hr5ndr7mbywr7ilyc504kzf28xyymmkj1fm66wb93n4k"; - libraryHaskellDepends = [ - base - transformers - ]; - description = "Type-safe unconstrained dynamic typing"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "key-state" = callPackage ( { mkDerivation, @@ -399619,32 +230761,6 @@ self: { } ) { }; - "key-vault" = callPackage ( - { - mkDerivation, - base, - base-unicode-symbols, - containers, - key, - util, - }: - mkDerivation { - pname = "key-vault"; - version = "0.1.0.0"; - sha256 = "1cgsrfckph7zc5iwxjpcglz8vjk5ligmmp2rhp4nrc14njm06v8x"; - libraryHaskellDepends = [ - base - base-unicode-symbols - containers - key - util - ]; - description = "Store of values of arbitrary types"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "keycloak-hs" = callPackage ( { mkDerivation, @@ -399739,29 +230855,6 @@ self: { } ) { }; - "keyed" = callPackage ( - { - mkDerivation, - base, - containers, - vector, - }: - mkDerivation { - pname = "keyed"; - version = "0.3.0.0"; - sha256 = "0q53nv4babmvj1nzc2my3d88aqm8yxl10rd396y62z7412jvnp5q"; - libraryHaskellDepends = [ - base - containers - vector - ]; - description = "Generic indexing for many data structures"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "keyed-vals" = callPackage ( { mkDerivation, @@ -399933,28 +231026,6 @@ self: { } ) { }; - "keyring" = callPackage ( - { - mkDerivation, - base, - udbus, - }: - mkDerivation { - pname = "keyring"; - version = "0.1.0.5"; - sha256 = "1y015550fdr8c1k3g7y7ilicd4rq0pz31pzksh8llnqvisqc2rcm"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - udbus - ]; - description = "Keyring access"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "keys" = callPackage ( { mkDerivation, @@ -399996,112 +231067,6 @@ self: { } ) { }; - "keysafe" = callPackage ( - { - mkDerivation, - aeson, - argon2, - async, - base, - bloomfilter, - bytestring, - containers, - deepseq, - directory, - disk-free-space, - exceptions, - fast-logger, - filepath, - http-client, - lifted-base, - MonadRandom, - network, - optparse-applicative, - process, - raaz, - random, - random-shuffle, - readline, - SafeSemaphore, - secret-sharing, - servant, - servant-client, - servant-server, - socks, - split, - stm, - text, - text-short, - time, - token-bucket, - transformers, - unbounded-delays, - unix, - unix-compat, - utf8-string, - wai, - warp, - zxcvbn-c, - }: - mkDerivation { - pname = "keysafe"; - version = "0.20200214"; - sha256 = "0agsnkz8l8v33gibpqinfi0a9d8xzy3kfw9awns8y4rsp9s84vbv"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - aeson - argon2 - async - base - bloomfilter - bytestring - containers - deepseq - directory - disk-free-space - exceptions - fast-logger - filepath - http-client - lifted-base - MonadRandom - network - optparse-applicative - process - raaz - random - random-shuffle - readline - SafeSemaphore - secret-sharing - servant - servant-client - servant-server - socks - split - stm - text - text-short - time - token-bucket - transformers - unbounded-delays - unix - unix-compat - utf8-string - wai - warp - zxcvbn-c - ]; - description = "back up a secret key securely to the cloud"; - license = lib.licenses.agpl3Only; - hydraPlatforms = lib.platforms.none; - mainProgram = "keysafe"; - broken = true; - } - ) { }; - "keystore" = callPackage ( { mkDerivation, @@ -400201,133 +231166,6 @@ self: { } ) { }; - "keyvaluehash" = callPackage ( - { - mkDerivation, - array, - base, - binary, - bytestring, - derive, - directory, - filepath, - hashable, - mmap, - storable-record, - }: - mkDerivation { - pname = "keyvaluehash"; - version = "0.3.1.2"; - sha256 = "1gph4cfx1xqjzhzx6nl2sfgqa6mk6a272a65gk5j43yjfh4s17gl"; - libraryHaskellDepends = [ - array - base - binary - bytestring - derive - directory - filepath - hashable - mmap - storable-record - ]; - description = "Pure Haskell key/value store implementation"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "keyword-args" = callPackage ( - { - mkDerivation, - base, - bytestring, - cassava, - containers, - hspec, - parsec, - parseerror-eq, - }: - mkDerivation { - pname = "keyword-args"; - version = "0.2.0.2"; - sha256 = "18cj2l804d77mxzmdl2mai1a157yljskadqdlinmc9w9krhcx4jx"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - containers - parsec - ]; - executableHaskellDepends = [ - base - bytestring - cassava - containers - parsec - ]; - testHaskellDepends = [ - base - containers - hspec - parsec - parseerror-eq - ]; - description = "Extract data from a keyword-args config file format"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - mainProgram = "keyword-args"; - } - ) { }; - - "khph" = callPackage ( - { - mkDerivation, - aeson, - base, - bytestring, - cmdargs, - containers, - directory, - filepath, - mtl, - parsec, - text, - transformers, - unix, - unordered-containers, - yaml, - }: - mkDerivation { - pname = "khph"; - version = "0.1.0"; - sha256 = "1xz2cbq5bq3i6q2x3lnlfj268k0r9s9lb8193jcjxpsk0204l3fx"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - aeson - base - bytestring - cmdargs - containers - directory - filepath - mtl - parsec - text - transformers - unix - unordered-containers - yaml - ]; - description = "Command-line file tagging and organization tool"; - license = lib.licenses.agpl3Only; - hydraPlatforms = lib.platforms.none; - mainProgram = "khph"; - broken = true; - } - ) { }; - "ki" = callPackage ( { mkDerivation, @@ -400476,121 +231314,6 @@ self: { } ) { }; - "kickass-torrents-dump-parser" = callPackage ( - { - mkDerivation, - base, - bytestring, - cassava, - hspec, - hspec-expectations, - string-qq, - text, - vector, - }: - mkDerivation { - pname = "kickass-torrents-dump-parser"; - version = "0.0.1"; - sha256 = "1bqv07v5sx0jaalnzyk703g08js6sb2snvpsk6ld5zr6iqm7k4wk"; - libraryHaskellDepends = [ - base - bytestring - cassava - text - vector - ]; - testHaskellDepends = [ - base - bytestring - cassava - hspec - hspec-expectations - string-qq - text - vector - ]; - description = "Parses kat.ph torrent dumps"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "kickchan" = callPackage ( - { - mkDerivation, - base, - containers, - HUnit, - primitive, - QuickCheck, - test-framework, - test-framework-hunit, - test-framework-quickcheck2, - vector, - }: - mkDerivation { - pname = "kickchan"; - version = "0.1.0.4"; - sha256 = "1gmp8d2gm275mc379rhyhyfk7r2z8d1mhaz0nikbg4wpczhqf0n7"; - libraryHaskellDepends = [ - base - containers - primitive - vector - ]; - testHaskellDepends = [ - base - containers - HUnit - primitive - QuickCheck - test-framework - test-framework-hunit - test-framework-quickcheck2 - vector - ]; - description = "Kick Channels: bounded channels with non-blocking writes"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "kif-parser" = callPackage ( - { - mkDerivation, - base, - bytestring, - cmdargs, - hostname, - old-time, - parsec, - twine, - }: - mkDerivation { - pname = "kif-parser"; - version = "0.0.3"; - sha256 = "1d8abd4l8mcgcfqmm06zmd7yxvfls1kqkphx64bi6mmqzy8lcx3k"; - isLibrary = false; - isExecutable = true; - enableSeparateDataOutput = true; - executableHaskellDepends = [ - base - bytestring - cmdargs - hostname - old-time - parsec - twine - ]; - description = "Process KIF iOS test logs"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "kif-parser"; - } - ) { }; - "kill-bool" = callPackage ( { mkDerivation, @@ -400813,57 +231536,6 @@ self: { } ) { }; - "kit" = callPackage ( - { - mkDerivation, - ansi-terminal, - attoparsec, - base, - cabal-file-th, - cmdargs, - containers, - directory, - errors, - filepath, - Glob, - mtl, - process, - text, - unix, - unordered-containers, - yaml, - }: - mkDerivation { - pname = "kit"; - version = "0.7.12"; - sha256 = "0557v1js7bzd9a00lq078csr66pdrr4kr9qiign2zwz03rrcaviw"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - ansi-terminal - attoparsec - base - cabal-file-th - cmdargs - containers - directory - errors - filepath - Glob - mtl - process - text - unix - unordered-containers - yaml - ]; - description = "A dependency manager for Xcode (Objective-C) projects"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "kit"; - } - ) { }; - "kleene" = callPackage ( { mkDerivation, @@ -400911,46 +231583,6 @@ self: { } ) { }; - "kleene-list" = callPackage ( - { - mkDerivation, - base, - base-compat, - Cabal, - cabal-doctest, - deepseq, - doctest, - QuickCheck, - template-haskell, - }: - mkDerivation { - pname = "kleene-list"; - version = "0.1.0.0"; - sha256 = "1iqwpy8ds617inr1hljxbhdwjlxcw7jkq5znsvc9p5mv3wnz6f32"; - setupHaskellDepends = [ - base - Cabal - cabal-doctest - ]; - libraryHaskellDepends = [ - base - deepseq - ]; - testHaskellDepends = [ - base - base-compat - deepseq - doctest - QuickCheck - template-haskell - ]; - description = "A list type based on the Kleene star and plus"; - license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "kmeans" = callPackage ( { mkDerivation, base }: mkDerivation { @@ -400963,96 +231595,6 @@ self: { } ) { }; - "kmeans-par" = callPackage ( - { - mkDerivation, - base, - criterion, - deepseq, - hspec, - metric, - normaldistribution, - parallel, - QuickCheck, - random, - semigroups, - vector, - }: - mkDerivation { - pname = "kmeans-par"; - version = "1.5.1"; - sha256 = "087z1r9fljvysgl940qpnrf7any80fy33shmn8hbmn2kwgczn69c"; - libraryHaskellDepends = [ - base - metric - parallel - semigroups - vector - ]; - testHaskellDepends = [ - base - hspec - metric - normaldistribution - parallel - QuickCheck - semigroups - vector - ]; - benchmarkHaskellDepends = [ - base - criterion - deepseq - metric - normaldistribution - random - vector - ]; - description = "Sequential and parallel implementations of Lloyd's algorithm"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "kmeans-vector" = callPackage ( - { - mkDerivation, - base, - criterion, - mtl, - probable, - QuickCheck, - vector, - }: - mkDerivation { - pname = "kmeans-vector"; - version = "0.3.2"; - sha256 = "1ckw3dmwwqzgbl0wcd6h435afjddqmim3y19p2wqcghxd2rk8bdv"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - mtl - vector - ]; - executableHaskellDepends = [ - base - probable - vector - ]; - benchmarkHaskellDepends = [ - base - criterion - QuickCheck - vector - ]; - description = "An implementation of the kmeans clustering algorithm based on the vector package"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "kmeans-example"; - } - ) { }; - "kmn-programming" = callPackage ( { mkDerivation, @@ -401117,54 +231659,26 @@ self: { megaparsec mtl optparse-applicative - resourcet - rio - template-haskell - time - transformers - unix - unliftio - ]; - executableHaskellDepends = [ base ]; - testHaskellDepends = [ - base - hspec - rio - ]; - testToolDepends = [ hspec-discover ]; - description = "Advanced keyboard remapping utility"; - license = lib.licenses.mit; - badPlatforms = lib.platforms.darwin; - mainProgram = "kmonad"; - maintainers = [ lib.maintainers.slotThe ]; - } - ) { }; - - "kmp-dfa" = callPackage ( - { - mkDerivation, - array, - base, - QuickCheck, - }: - mkDerivation { - pname = "kmp-dfa"; - version = "0.1.0.1"; - sha256 = "0h0jk0pidikk655yw8nwmgrvwknhikjmalhizqspfd28w9ijxprg"; - libraryHaskellDepends = [ - array - base - QuickCheck + resourcet + rio + template-haskell + time + transformers + unix + unliftio ]; + executableHaskellDepends = [ base ]; testHaskellDepends = [ - array base - QuickCheck + hspec + rio ]; - description = "KMP algorithm implementation, based on Deterministic Finite State Automata"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; + testToolDepends = [ hspec-discover ]; + description = "Advanced keyboard remapping utility"; + license = lib.licenses.mit; + badPlatforms = lib.platforms.darwin; + mainProgram = "kmonad"; + maintainers = [ lib.maintainers.slotThe ]; } ) { }; @@ -401224,33 +231738,6 @@ self: { } ) { }; - "knead-arithmetic" = callPackage ( - { - mkDerivation, - base, - knead, - llvm-extra, - llvm-tf, - utility-ht, - }: - mkDerivation { - pname = "knead-arithmetic"; - version = "0.0.0.1"; - sha256 = "0a5rhq44pd0g7fhaf4nhsimzljkq52d1wqaiym55cp817p3him3y"; - libraryHaskellDepends = [ - base - knead - llvm-extra - llvm-tf - utility-ht - ]; - description = "Linear algebra and interpolation using LLVM JIT"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "knit" = callPackage ( { mkDerivation, @@ -401280,128 +231767,6 @@ self: { } ) { }; - "knit-haskell" = callPackage ( - { - mkDerivation, - aeson-pretty, - base, - base64-bytestring, - blaze-colonnade, - blaze-html, - bytestring, - case-insensitive, - cereal, - colonnade, - constraints, - containers, - diagrams-lib, - diagrams-svg, - directory, - doctemplates, - exceptions, - Glob, - here, - http-client, - http-client-tls, - http-types, - hvega, - lucid, - monad-control, - mtl, - network, - network-uri, - pandoc, - plots, - polysemy, - polysemy-plugin, - polysemy-RandomFu, - polysemy-zoo, - prettyprinter, - random, - random-fu, - random-source, - say, - stm, - store, - streamly, - streamly-bytestring, - svg-builder, - text, - time, - transformers-base, - }: - mkDerivation { - pname = "knit-haskell"; - version = "0.8.0.0"; - sha256 = "1maq5s4f05fpd98nw2gljqcwgdr62hy5lpcblvybcyp2xqh8fc9i"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - aeson-pretty - base - base64-bytestring - blaze-colonnade - blaze-html - bytestring - case-insensitive - cereal - colonnade - constraints - containers - diagrams-lib - diagrams-svg - directory - doctemplates - exceptions - Glob - http-client - http-client-tls - http-types - hvega - lucid - monad-control - mtl - network - network-uri - pandoc - polysemy - polysemy-plugin - polysemy-zoo - prettyprinter - random - say - stm - streamly - streamly-bytestring - svg-builder - text - time - transformers-base - ]; - testHaskellDepends = [ - base - blaze-html - bytestring - colonnade - containers - here - hvega - mtl - plots - polysemy - polysemy-plugin - polysemy-RandomFu - random-fu - random-source - store - streamly - text - ]; - description = "a minimal Rmarkdown sort-of-thing for haskell, by way of Pandoc"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "knob" = callPackage ( { mkDerivation, @@ -401425,75 +231790,6 @@ self: { } ) { }; - "knots" = callPackage ( - { - mkDerivation, - array, - base, - containers, - data-default, - deepseq, - mtl, - parallel, - vector, - yap, - }: - mkDerivation { - pname = "knots"; - version = "0.1.0.1"; - sha256 = "1yv26gnf8aipjh6d6apszbx4jwvfa7cafnjz0frw73xagnd1z084"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - array - base - containers - data-default - deepseq - mtl - parallel - vector - yap - ]; - executableHaskellDepends = [ - base - containers - parallel - ]; - description = "Khovanov homology computations"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - mainProgram = "Rolfsen-Kh"; - broken = true; - } - ) { }; - - "koellner-phonetic" = callPackage ( - { - mkDerivation, - base, - HUnit, - }: - mkDerivation { - pname = "koellner-phonetic"; - version = "0.0"; - sha256 = "0r7gbgvs49y1nyq5z5f2sb4sjfr847l1vrbih2f5975i3hd9c9kg"; - libraryHaskellDepends = [ - base - HUnit - ]; - testHaskellDepends = [ - base - HUnit - ]; - doHaddock = false; - description = "\"map German words to code representing pronunciation\""; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "koji" = callPackage ( { mkDerivation, @@ -401760,41 +232056,6 @@ self: { } ) { }; - "kontra-config" = callPackage ( - { - mkDerivation, - base, - bytestring, - data-default, - exceptions, - text, - transformers-base, - unjson, - utf8-string, - yaml, - }: - mkDerivation { - pname = "kontra-config"; - version = "0.1"; - sha256 = "0h955j0mbbqlwi099p0zzn9ffcd5v31rgnxilnyn0l2cbs0pxc8n"; - libraryHaskellDepends = [ - base - bytestring - data-default - exceptions - text - transformers-base - unjson - utf8-string - yaml - ]; - description = "JSON config file parsing based on unjson"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "kontrakcja-templates" = callPackage ( { mkDerivation, @@ -401834,113 +232095,6 @@ self: { } ) { }; - "koofr-client" = callPackage ( - { - mkDerivation, - aeson, - base, - bytestring, - filepath, - http-client, - http-client-tls, - http-types, - mtl, - }: - mkDerivation { - pname = "koofr-client"; - version = "1.0.0.3"; - sha256 = "1bz7akd7sssn1gzqfvr0y343771zk7dn1n3as0m93wg4ifpz1dia"; - revision = "1"; - editedCabalFile = "0qaipcg9n93z0za2a8jy3mv73a3q2b1dv98v2g5wwcv1qx7rvvhv"; - libraryHaskellDepends = [ - aeson - base - bytestring - filepath - http-client - http-client-tls - http-types - mtl - ]; - description = "Client to Koofr API"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "korea-holidays" = callPackage ( - { - mkDerivation, - aeson, - base, - hspec, - monad-extras, - split, - template-haskell, - time, - yaml, - }: - mkDerivation { - pname = "korea-holidays"; - version = "0.1.0.4"; - sha256 = "11yiip6nv84k8q4n37w9kn1w57vizlcggszh0pnrkkx36xwwk9ll"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - aeson - base - monad-extras - split - template-haskell - time - yaml - ]; - testHaskellDepends = [ - aeson - base - hspec - monad-extras - split - template-haskell - time - yaml - ]; - description = "Korea Holidays"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "korfu" = callPackage ( - { - mkDerivation, - base, - bio, - bytestring, - haskell98, - simpleargs, - }: - mkDerivation { - pname = "korfu"; - version = "0.2"; - sha256 = "1mwndf83yl57bawc6vk8983qca3yhcdiczj6q7n1rgv8qphnw0wz"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - bio - bytestring - haskell98 - simpleargs - ]; - description = "The Korfu ORF Utility"; - license = "GPL"; - hydraPlatforms = lib.platforms.none; - mainProgram = "korfu"; - } - ) { }; - "kparams" = callPackage ( { mkDerivation, @@ -401997,37 +232151,6 @@ self: { } ) { }; - "kraken" = callPackage ( - { - mkDerivation, - aeson, - base, - bytestring, - http-client, - http-client-tls, - mtl, - }: - mkDerivation { - pname = "kraken"; - version = "0.1.0"; - sha256 = "12l24z6alscbdicp11nfc8fwmlhk5mjdjyh6xdqyvlzphp5yfp1k"; - revision = "3"; - editedCabalFile = "1l4i9nhwvy958ka6l6gb5w5cxgjhdm1h7ycvcc2nrqlw2iwk16v1"; - libraryHaskellDepends = [ - aeson - base - bytestring - http-client - http-client-tls - mtl - ]; - description = "Kraken.io API client"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "krank" = callPackage ( { mkDerivation, @@ -402110,176 +232233,6 @@ self: { } ) { }; - "krapsh" = callPackage ( - { - mkDerivation, - aeson, - aeson-pretty, - base, - base16-bytestring, - binary, - bytestring, - containers, - cryptohash-sha256, - deepseq, - exceptions, - formatting, - hashable, - hspec, - lens, - monad-logger, - mtl, - QuickCheck, - random, - raw-strings-qq, - scientific, - SHA, - text, - text-format, - transformers, - unordered-containers, - vector, - wreq, - }: - mkDerivation { - pname = "krapsh"; - version = "0.1.9.0"; - sha256 = "1w5anvnng34bnxjgn0f88gwljr0s5xad4xplfdc6vc71qzvnd17w"; - libraryHaskellDepends = [ - aeson - aeson-pretty - base - base16-bytestring - binary - bytestring - containers - cryptohash-sha256 - deepseq - exceptions - formatting - hashable - lens - monad-logger - mtl - QuickCheck - random - scientific - SHA - text - text-format - transformers - unordered-containers - vector - wreq - ]; - testHaskellDepends = [ - aeson - base - bytestring - containers - formatting - hspec - QuickCheck - raw-strings-qq - text - vector - ]; - description = "Haskell bindings for Spark Dataframes and Datasets"; - license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "krpc" = callPackage ( - { - mkDerivation, - base, - bencoding, - bytestring, - containers, - criterion, - data-default-class, - hspec, - lifted-base, - monad-control, - monad-logger, - mtl, - network, - QuickCheck, - quickcheck-instances, - text, - transformers, - }: - mkDerivation { - pname = "krpc"; - version = "0.6.1.0"; - sha256 = "0ldhg4ahhfp4jy3ijssfmcwfg68dggw3biqmc4my2qrcgd2mvx29"; - libraryHaskellDepends = [ - base - bencoding - bytestring - containers - data-default-class - lifted-base - monad-control - monad-logger - mtl - network - text - transformers - ]; - testHaskellDepends = [ - base - bencoding - bytestring - hspec - monad-logger - mtl - network - QuickCheck - quickcheck-instances - ]; - benchmarkHaskellDepends = [ - base - bytestring - criterion - monad-logger - mtl - ]; - description = "KRPC protocol implementation"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "ks-test" = callPackage ( - { - mkDerivation, - base, - gamma, - random-fu, - roots, - vector, - }: - mkDerivation { - pname = "ks-test"; - version = "0.1"; - sha256 = "1xj9bnwiws3rnax3rlf67p8dh487w07xl99h81a9j1wjkqysldym"; - libraryHaskellDepends = [ - base - gamma - random-fu - roots - vector - ]; - description = "Kolmogorov distribution and Kolmogorov-Smirnov test"; - license = lib.licenses.publicDomain; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "ksystools" = callPackage ( { mkDerivation, @@ -402299,41 +232252,6 @@ self: { } ) { }; - "ktx" = - callPackage - ( - { - mkDerivation, - base, - bytestring, - egl, - glew, - OpenGL, - }: - mkDerivation { - pname = "ktx"; - version = "0.2"; - sha256 = "1s7jw27p96spksja6ks2xdnhyds8diwc5y7h22bj6cq5kglskvxf"; - libraryHaskellDepends = [ - base - bytestring - OpenGL - ]; - libraryPkgconfigDepends = [ - egl - glew - ]; - description = "A binding for libktx from Khronos"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) - { - egl = null; - inherit (pkgs) glew; - }; - "ktx-codec" = callPackage ( { mkDerivation, @@ -402792,37 +232710,6 @@ self: { } ) { }; - "kubernetes-webhook-haskell" = callPackage ( - { - mkDerivation, - aeson, - base, - base64-bytestring, - binary, - bytestring, - text, - unordered-containers, - }: - mkDerivation { - pname = "kubernetes-webhook-haskell"; - version = "0.2.0.3"; - sha256 = "1xvc35jibs2nizzp6xgdzzyx6fhgzgqb55a48vl1djbi84s8b4q1"; - libraryHaskellDepends = [ - aeson - base - base64-bytestring - binary - bytestring - text - unordered-containers - ]; - description = "Create Kubernetes Admission Webhooks in Haskell"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "kudzu" = callPackage ( { mkDerivation, @@ -402855,31 +232742,6 @@ self: { } ) { }; - "kuifje" = callPackage ( - { - mkDerivation, - base, - boxes, - containers, - lens, - }: - mkDerivation { - pname = "kuifje"; - version = "0.1.2.0"; - sha256 = "0f7ldw506g4r6f7s803iwq49syfl1zmxdyyr62arbzg6h5qg81j7"; - libraryHaskellDepends = [ - base - boxes - containers - lens - ]; - description = "A Quantitative Information Flow aware programming language"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "kure" = callPackage ( { mkDerivation, @@ -402903,138 +232765,6 @@ self: { } ) { }; - "kure-your-boilerplate" = callPackage ( - { - mkDerivation, - base, - kure, - template-haskell, - }: - mkDerivation { - pname = "kure-your-boilerplate"; - version = "0.1.3"; - sha256 = "0bfcmx1fz521vkc2lrbpyvaqcy4c29h5xp6wmyxvgrjjnq32ld1b"; - libraryHaskellDepends = [ - base - kure - template-haskell - ]; - description = "Generator for Boilerplate KURE Combinators"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "kurita" = callPackage ( - { - mkDerivation, - aeson, - approximate, - async, - atomic-write, - base, - bits, - broadcast-chan, - bytes, - bytestring, - containers, - delay, - double-metaphone, - hashable, - http-types, - hyperloglog, - lens, - linklater, - megaparsec, - monad-loops, - mtl, - parser-combinators, - random, - reflection, - siphash, - sorted-list, - split, - stm, - text, - time, - unordered-containers, - uri-bytestring, - vector, - wai, - wai-websockets, - warp, - websockets, - wreq, - wuss, - }: - mkDerivation { - pname = "kurita"; - version = "0"; - sha256 = "1drm9jbp8ypisg3smhrjlcpls7m7h4dxc5zv570wvjkfxhfkvf6d"; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - aeson - approximate - async - atomic-write - base - broadcast-chan - bytestring - containers - delay - double-metaphone - hashable - http-types - hyperloglog - lens - linklater - megaparsec - monad-loops - mtl - parser-combinators - random - reflection - sorted-list - split - stm - text - time - unordered-containers - uri-bytestring - vector - wai - wai-websockets - websockets - wreq - wuss - ]; - executableHaskellDepends = [ - aeson - async - base - bits - bytes - bytestring - containers - delay - linklater - monad-loops - siphash - stm - text - time - warp - websockets - ]; - testHaskellDepends = [ base ]; - description = "Find the alpha emoji"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "kvitable" = callPackage ( { mkDerivation, @@ -403100,73 +232830,6 @@ self: { } ) { inherit (pkgs) kyotocabinet; }; - "l-bfgs-b" = callPackage ( - { - mkDerivation, - base, - lbfgsb, - vector, - }: - mkDerivation { - pname = "l-bfgs-b"; - version = "0.1.0.1"; - sha256 = "0ypzkq2rpbmdjfqba72pl3wf6d4wz0z5vmy84dq5m38ij5mlb4y7"; - libraryHaskellDepends = [ - base - vector - ]; - librarySystemDepends = [ lbfgsb ]; - description = "Bindings to L-BFGS-B, Fortran code for limited-memory quasi-Newton bound-constrained optimization"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { lbfgsb = null; }; - - "l10n" = callPackage ( - { - mkDerivation, - base, - text, - time, - }: - mkDerivation { - pname = "l10n"; - version = "0.1.0.1"; - sha256 = "182w8l9h2zw8lxr1fahnmcasbd09z2z00ii7gkmq2y95dm3k4w0a"; - libraryHaskellDepends = [ - base - text - time - ]; - description = "Enables providing localization as typeclass instances in separate files"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "labeled-graph" = callPackage ( - { - mkDerivation, - base, - labeled-tree, - }: - mkDerivation { - pname = "labeled-graph"; - version = "1.0.0.0"; - sha256 = "060nvnlh1h8vxi6k2hsz79fn4xypangdj5v4q0kc6abyf9garf7r"; - libraryHaskellDepends = [ - base - labeled-tree - ]; - description = "Labeled graph structure"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "labeled-tree" = callPackage ( { mkDerivation, base }: mkDerivation { @@ -403198,306 +232861,6 @@ self: { } ) { }; - "laborantin-hs" = callPackage ( - { - mkDerivation, - aeson, - async, - base, - bytestring, - cmdlib, - containers, - directory, - hslogger, - mtl, - old-locale, - parsec, - random, - split, - text, - time, - transformers, - uuid, - }: - mkDerivation { - pname = "laborantin-hs"; - version = "0.1.5.2"; - sha256 = "18bgd9v4bh3wfh7p7xjzrsj130cppm6x55vzagcpn10cwqag41cs"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson - async - base - bytestring - cmdlib - containers - directory - hslogger - mtl - old-locale - parsec - random - split - text - time - transformers - uuid - ]; - executableHaskellDepends = [ - aeson - base - bytestring - cmdlib - containers - directory - hslogger - mtl - random - split - text - transformers - uuid - ]; - description = "an experiment management framework"; - license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; - mainProgram = "labor-example"; - } - ) { }; - - "labsat" = callPackage ( - { - mkDerivation, - attoparsec, - base, - bytestring, - conduit, - conduit-extra, - lifted-async, - lifted-base, - optparse-generic, - preamble, - scientific, - tasty, - tasty-hunit, - text, - }: - mkDerivation { - pname = "labsat"; - version = "0.0.5"; - sha256 = "02c6bx1pwjcqni8nx7899mk3mzzfrpdpxjiwnkizzianrzmwz0mw"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - attoparsec - base - bytestring - conduit - conduit-extra - lifted-async - lifted-base - preamble - scientific - text - ]; - executableHaskellDepends = [ - base - optparse-generic - preamble - text - ]; - testHaskellDepends = [ - attoparsec - base - bytestring - preamble - tasty - tasty-hunit - ]; - description = "LabSat TCP Interface Wrapper"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - mainProgram = "labsat"; - } - ) { }; - - "labyrinth" = callPackage ( - { - mkDerivation, - base, - containers, - derive, - HTF, - HUnit, - lens, - monad-loops, - MonadRandom, - mtl, - parsec, - QuickCheck, - random, - safecopy, - template-haskell, - transformers, - }: - mkDerivation { - pname = "labyrinth"; - version = "0.5.0.0"; - sha256 = "1yi53vg248j8ww08z2a5v3agci84q3m2d37h9mdbprciryh3hfcl"; - libraryHaskellDepends = [ - base - containers - derive - lens - monad-loops - MonadRandom - mtl - parsec - random - safecopy - template-haskell - transformers - ]; - testHaskellDepends = [ - base - containers - derive - HTF - HUnit - lens - monad-loops - MonadRandom - mtl - parsec - QuickCheck - random - safecopy - template-haskell - transformers - ]; - description = "A complicated turn-based game"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "labyrinth-server" = callPackage ( - { - mkDerivation, - acid-state, - aeson, - base, - bytestring, - containers, - derive, - directory, - filepath, - hamlet, - HTF, - http-types, - HUnit, - labyrinth, - lens, - mtl, - parsec, - QuickCheck, - random, - safecopy, - shakespeare-css, - shakespeare-js, - template-haskell, - text, - transformers, - unordered-containers, - utf8-string, - vector, - wai, - wai-test, - wai-websockets, - warp, - websockets, - yesod, - yesod-static, - }: - mkDerivation { - pname = "labyrinth-server"; - version = "0.1.4.1"; - sha256 = "00mx8zmwqawp2hh1a0v4r26w7wsji0iz7jwsh83742wimir316aw"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - acid-state - aeson - base - bytestring - containers - derive - filepath - hamlet - labyrinth - lens - mtl - parsec - random - safecopy - shakespeare-css - shakespeare-js - template-haskell - text - transformers - unordered-containers - utf8-string - vector - wai-websockets - warp - websockets - yesod - yesod-static - ]; - testHaskellDepends = [ - acid-state - aeson - base - bytestring - containers - derive - directory - filepath - hamlet - HTF - http-types - HUnit - labyrinth - lens - mtl - parsec - QuickCheck - random - safecopy - shakespeare-css - shakespeare-js - template-haskell - text - transformers - unordered-containers - utf8-string - vector - wai - wai-test - wai-websockets - warp - websockets - yesod - yesod-static - ]; - description = "A complicated turn-based game - Web server"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - mainProgram = "labyrinth-server"; - } - ) { }; - "lackey" = callPackage ( { mkDerivation, @@ -403539,83 +232902,6 @@ self: { } ) { }; - "lagrangian" = callPackage ( - { - mkDerivation, - ad, - base, - hmatrix, - HUnit, - nonlinear-optimization, - test-framework, - test-framework-hunit, - test-framework-quickcheck2, - vector, - }: - mkDerivation { - pname = "lagrangian"; - version = "0.6.0.1"; - sha256 = "07jlmfynnq42syim9k7hks6zmkzq2i62slvwwik8w2rg07ran72v"; - libraryHaskellDepends = [ - ad - base - hmatrix - nonlinear-optimization - vector - ]; - testHaskellDepends = [ - ad - base - hmatrix - HUnit - nonlinear-optimization - test-framework - test-framework-hunit - test-framework-quickcheck2 - vector - ]; - description = "Solve Lagrange multiplier problems"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "laika" = callPackage ( - { - mkDerivation, - attoparsec, - base-prelude, - either, - record, - system-fileio, - system-filepath, - template-haskell, - text, - transformers, - }: - mkDerivation { - pname = "laika"; - version = "0.1.3.1"; - sha256 = "0brysrzz0cci6hqm5ldl7fk5zqhcjp7naifabks1zk3mzg8kr1x1"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - attoparsec - base-prelude - either - record - system-fileio - system-filepath - template-haskell - text - transformers - ]; - description = "Minimalistic type-checked compile-time template engine"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "lambda" = callPackage ( { mkDerivation, @@ -403658,24 +232944,6 @@ self: { } ) { }; - "lambda-bridge" = callPackage ( - { mkDerivation, base }: - mkDerivation { - pname = "lambda-bridge"; - version = "0.1"; - sha256 = "0qiqw4av62fdf2b1qc64lvj84lkzcfpik7lvq81qk015pz58cbs3"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base ]; - executableHaskellDepends = [ base ]; - description = "A bridge from Haskell (on a CPU) to VHDL on a FPGA"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "haskell-test1"; - broken = true; - } - ) { }; - "lambda-calculator" = callPackage ( { mkDerivation, @@ -403766,33 +233034,6 @@ self: { } ) { }; - "lambda-canvas" = callPackage ( - { - mkDerivation, - base, - GLUT, - mtl, - OpenGL, - time, - }: - mkDerivation { - pname = "lambda-canvas"; - version = "0.1"; - sha256 = "14wl1w1sc0j1yjfad5v00346ccxp0grfs1677hnjqwisashdac92"; - libraryHaskellDepends = [ - base - GLUT - mtl - OpenGL - time - ]; - description = "Educational drawing canvas for FP explorers"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "lambda-cube" = callPackage ( { mkDerivation, @@ -403830,61 +233071,6 @@ self: { } ) { }; - "lambda-devs" = callPackage ( - { - mkDerivation, - base, - binary, - containers, - dimensional, - distributed-process, - HUnit, - numtype, - QuickCheck, - test-framework, - test-framework-hunit, - test-framework-quickcheck2, - }: - mkDerivation { - pname = "lambda-devs"; - version = "0.4.0"; - sha256 = "1j2j6clm35ffvdjlh7apydir06g7az40gsqvlcw8p4qbdk2z2vrh"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - binary - containers - dimensional - distributed-process - ]; - executableHaskellDepends = [ - base - binary - containers - dimensional - distributed-process - numtype - ]; - testHaskellDepends = [ - base - binary - containers - dimensional - distributed-process - HUnit - QuickCheck - test-framework - test-framework-hunit - test-framework-quickcheck2 - ]; - description = "a Paralell-DEVS implementaion based on distributed-process"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "lambda-devs-example"; - } - ) { }; - "lambda-options" = callPackage ( { mkDerivation, @@ -403923,161 +233109,6 @@ self: { } ) { }; - "lambda-sampler" = callPackage ( - { - mkDerivation, - base, - MonadRandom, - mtl, - QuickCheck, - test-framework, - test-framework-quickcheck2, - transformers, - }: - mkDerivation { - pname = "lambda-sampler"; - version = "1.1"; - sha256 = "0vfin9f9mhxq7r63pyl3rpipb5z7dbyhwbf02y6h7brjq8wg9gx8"; - libraryHaskellDepends = [ - base - MonadRandom - mtl - transformers - ]; - testHaskellDepends = [ - base - QuickCheck - test-framework - test-framework-quickcheck2 - ]; - description = "Boltzmann sampler utilities for lambda calculus"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "lambda-toolbox" = callPackage ( - { mkDerivation, base }: - mkDerivation { - pname = "lambda-toolbox"; - version = "1.0.1"; - sha256 = "1m11gdwq4nma3231043h5szplmask5152y2r9ayyrpacczddcbim"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ base ]; - description = "An application to work with the lambda calculus (for learning)"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "lambda-toolbox"; - broken = true; - } - ) { }; - - "lambda2js" = callPackage ( - { - mkDerivation, - base, - parsec, - }: - mkDerivation { - pname = "lambda2js"; - version = "0.1.0.1"; - sha256 = "0n2jadsg8pnpzvnb4parsh91nqza3am97d6ii3bsi79jzrcmaa3m"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - parsec - ]; - description = "Untyped Lambda calculus to JavaScript compiler"; - license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - mainProgram = "lambda2js"; - broken = true; - } - ) { }; - - "lambdaBase" = callPackage ( - { - mkDerivation, - base, - parsec, - }: - mkDerivation { - pname = "lambdaBase"; - version = "0.0.2.0"; - sha256 = "19c2bxipilb2lag7qzk4ajlzqch574dbhqk9cna13ijsjiyq24nd"; - libraryHaskellDepends = [ - base - parsec - ]; - testHaskellDepends = [ - base - parsec - ]; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "lambdaFeed" = callPackage ( - { - mkDerivation, - base, - haskell98, - html, - }: - mkDerivation { - pname = "lambdaFeed"; - version = "0.3.1"; - sha256 = "0gji0jix99qbldqkclymnwf5pnmiszy0qka9m2wq8kyi09f3y4h8"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - haskell98 - html - ]; - description = "RSS 2.0 feed generator"; - license = "GPL"; - hydraPlatforms = lib.platforms.none; - mainProgram = "lambdaFeed"; - } - ) { }; - - "lambdaLit" = callPackage ( - { - mkDerivation, - base, - bytestring, - haskeline, - lambdaBase, - mtl, - network, - }: - mkDerivation { - pname = "lambdaLit"; - version = "0.1.1.0"; - sha256 = "1xw1496q84wrzy1r3dwvwy04sb3184namnmdj5kspc5pmd8ipx0h"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - bytestring - haskeline - lambdaBase - mtl - network - ]; - description = "..."; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - mainProgram = "lambdaLit"; - } - ) { }; - "lambdabot" = callPackage ( { mkDerivation, @@ -404143,1121 +233174,509 @@ self: { random, random-fu, regex-tdfa, - SafeSemaphore, - split, - syb, - template-haskell, - time, - transformers, - transformers-base, - unix, - utf8-string, - zlib, - }: - mkDerivation { - pname = "lambdabot-core"; - version = "5.3.1.2"; - sha256 = "14my72cw39hfc0i7fzhgxv5xjrdfr4pz2ccrixaclngypfd08g28"; - revision = "2"; - editedCabalFile = "0mmjysffj34i7snzkdn6ixlg3j12frcw4csb2mq3167mm987shs4"; - libraryHaskellDepends = [ - base - binary - bytestring - containers - dependent-map - dependent-sum - dependent-sum-template - directory - edit-distance - exceptions - filepath - haskeline - hslogger - HTTP - lifted-base - monad-control - mtl - network - network-bsd - parsec - prim-uniq - random - random-fu - regex-tdfa - SafeSemaphore - split - syb - template-haskell - time - transformers - transformers-base - unix - utf8-string - zlib - ]; - description = "Lambdabot core functionality"; - license = "GPL"; - } - ) { }; - - "lambdabot-haskell-plugins" = callPackage ( - { - mkDerivation, - array, - arrows, - base, - bytestring, - containers, - data-memocombinators, - directory, - filepath, - haskell-src-exts-simple, - hoogle, - HTTP, - IOSpec, - lambdabot-core, - lambdabot-reference-plugins, - lambdabot-trusted, - lifted-base, - logict, - mtl, - mueval, - network, - numbers, - oeis, - parsec, - pretty, - process, - QuickCheck, - regex-tdfa, - show, - split, - syb, - transformers, - utf8-string, - vector-space, - }: - mkDerivation { - pname = "lambdabot-haskell-plugins"; - version = "5.3.1.2"; - sha256 = "0pbhwhcxn4fqvn7ynhc19285r75fiksfd9yfjz6d8iq7wmp1frp8"; - revision = "1"; - editedCabalFile = "080a4iv2md1p9qa34ikqc6bliwlgmjsrlf7ys44lh3zj1ldshxfh"; - libraryHaskellDepends = [ - array - arrows - base - bytestring - containers - data-memocombinators - directory - filepath - haskell-src-exts-simple - hoogle - HTTP - IOSpec - lambdabot-core - lambdabot-reference-plugins - lambdabot-trusted - lifted-base - logict - mtl - mueval - network - numbers - oeis - parsec - pretty - process - QuickCheck - regex-tdfa - show - split - syb - transformers - utf8-string - vector-space - ]; - description = "Lambdabot Haskell plugins"; - license = "GPL"; - } - ) { }; - - "lambdabot-irc-plugins" = callPackage ( - { - mkDerivation, - base, - bytestring, - containers, - directory, - filepath, - lambdabot-core, - lifted-base, - mtl, - network, - SafeSemaphore, - split, - time, - }: - mkDerivation { - pname = "lambdabot-irc-plugins"; - version = "5.3.1.2"; - sha256 = "00s27136i4xadm09clncrkm5annvnahrvcy04m5llrxa9ja09ixb"; - revision = "1"; - editedCabalFile = "15b4r4m2sqw4pa1yk90q9rg7cpk2davpib79sah13m8xf1lrf2ci"; - libraryHaskellDepends = [ - base - bytestring - containers - directory - filepath - lambdabot-core - lifted-base - mtl - network - SafeSemaphore - split - time - ]; - description = "IRC plugins for lambdabot"; - license = "GPL"; - } - ) { }; - - "lambdabot-misc-plugins" = callPackage ( - { - mkDerivation, - base, - bytestring, - containers, - filepath, - lambdabot-core, - lifted-base, - mtl, - network, - network-uri, - parsec, - process, - regex-tdfa, - SafeSemaphore, - split, - tagsoup, - template-haskell, - time, - transformers, - transformers-base, - unix, - utf8-string, - zlib, - }: - mkDerivation { - pname = "lambdabot-misc-plugins"; - version = "5.3.1.2"; - sha256 = "0hkia5zziwabm847bl1f2pap47iyrvjwzdsygcvywving467302d"; - revision = "1"; - editedCabalFile = "09d3bngay0xai4sngp0ddly38qdpdzdaa4p5yp4qvrgg8b0nlv2w"; - libraryHaskellDepends = [ - base - bytestring - containers - filepath - lambdabot-core - lifted-base - mtl - network - network-uri - parsec - process - regex-tdfa - SafeSemaphore - split - tagsoup - template-haskell - time - transformers - transformers-base - unix - utf8-string - zlib - ]; - description = "Lambdabot miscellaneous plugins"; - license = "GPL"; - } - ) { }; - - "lambdabot-novelty-plugins" = callPackage ( - { - mkDerivation, - base, - binary, - brainfuck, - bytestring, - containers, - dice, - directory, - lambdabot-core, - misfortune, - process, - random, - random-fu, - regex-tdfa, - unlambda, - }: - mkDerivation { - pname = "lambdabot-novelty-plugins"; - version = "5.3.1.2"; - sha256 = "01sas4jg54k1n68sl5v6i1lyai9chw0v0j6dl4p5rh8wdp0n5863"; - libraryHaskellDepends = [ - base - binary - brainfuck - bytestring - containers - dice - directory - lambdabot-core - misfortune - process - random - random-fu - regex-tdfa - unlambda - ]; - description = "Novelty plugins for Lambdabot"; - license = "GPL"; - } - ) { }; - - "lambdabot-reference-plugins" = callPackage ( - { - mkDerivation, - base, - bytestring, - containers, - HTTP, - lambdabot-core, - mtl, - network, - network-uri, - oeis, - process, - regex-tdfa, - split, - tagsoup, - utf8-string, - }: - mkDerivation { - pname = "lambdabot-reference-plugins"; - version = "5.3.1.2"; - sha256 = "086ac4j85x2s156xzwmlldk7sll6jq3gq4mp2vjsa8w9q0p6yw0y"; - revision = "1"; - editedCabalFile = "1sglhkprhbdn3mv4iw1wrn8yfsc9rh1la2h2vqqx5jv7wdy3v9nd"; - libraryHaskellDepends = [ - base - bytestring - containers - HTTP - lambdabot-core - mtl - network - network-uri - oeis - process - regex-tdfa - split - tagsoup - utf8-string - ]; - description = "Lambdabot reference plugins"; - license = "GPL"; - } - ) { }; - - "lambdabot-social-plugins" = callPackage ( - { - mkDerivation, - base, - binary, - bytestring, - containers, - lambdabot-core, - mtl, - split, - time, - }: - mkDerivation { - pname = "lambdabot-social-plugins"; - version = "5.3.1.2"; - sha256 = "137vgsr3alsmaa0dz7z55ijy2zvgy5al3wsdgmwhgkim9ahs4d2k"; - libraryHaskellDepends = [ - base - binary - bytestring - containers - lambdabot-core - mtl - split - time - ]; - description = "Social plugins for Lambdabot"; - license = "GPL"; - } - ) { }; - - "lambdabot-telegram-plugins" = callPackage ( - { - mkDerivation, - base, - containers, - dependent-map, - dependent-sum, - directory, - edit-distance, - haskell-src-exts-simple, - lambdabot-core, - lambdabot-haskell-plugins, - lifted-base, - monad-control, - mtl, - pretty-simple, - process, - regex-tdfa, - split, - stm, - telegram-bot-simple, - text, - transformers, - utf8-string, - }: - mkDerivation { - pname = "lambdabot-telegram-plugins"; - version = "0.2.1"; - sha256 = "1r0qr28n2lz4nxbvnv3iyc221b8b1w92m23mcahh95agvkjxk6ys"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - containers - dependent-map - dependent-sum - directory - edit-distance - haskell-src-exts-simple - lambdabot-core - lifted-base - monad-control - mtl - pretty-simple - process - regex-tdfa - split - stm - telegram-bot-simple - text - transformers - utf8-string - ]; - executableHaskellDepends = [ - base - lambdabot-core - lambdabot-haskell-plugins - mtl - ]; - description = "Lambdabot for Telegram"; - license = lib.licenses.gpl2Plus; - hydraPlatforms = lib.platforms.none; - mainProgram = "telegram-lambdabot"; - broken = true; - } - ) { }; - - "lambdabot-trusted" = callPackage ( - { - mkDerivation, - base, - oeis, - QuickCheck, - QuickCheck-safe, - }: - mkDerivation { - pname = "lambdabot-trusted"; - version = "5.3.1.2"; - sha256 = "0y3c7jhihhb925x04b3ja8akgsfj2a1hyx1p8i08kaarrfmk796l"; - libraryHaskellDepends = [ - base - oeis - QuickCheck - QuickCheck-safe - ]; - description = "Lambdabot trusted code"; - license = "GPL"; - } - ) { }; - - "lambdabot-utils" = callPackage ( - { - mkDerivation, - base, - binary, - bytestring, - containers, - haskell-src, - mtl, - network, - old-time, - process, - random, - regex-compat, - regex-posix, - syb, - tagsoup, - unix, - utf8-string, - zlib, - }: - mkDerivation { - pname = "lambdabot-utils"; - version = "4.2.2"; - sha256 = "0mmz9rn6vv8xnavmz66g164h1liir3rzg1n7lmbcsgwcyhm925d7"; - revision = "3"; - editedCabalFile = "024sylbp8z62903rdznyn63pnviaa6dl21k6g7cg2qsdjvb46kgm"; - libraryHaskellDepends = [ - base - binary - bytestring - containers - haskell-src - mtl - network - old-time - process - random - regex-compat - regex-posix - syb - tagsoup - unix - utf8-string - zlib - ]; - description = "Utility libraries for the advanced IRC bot, Lambdabot"; - license = "GPL"; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "lambdabot-xmpp" = callPackage ( - { - mkDerivation, - base, - crypton-x509-validation, - data-default, - lambdabot-core, - lambdabot-haskell-plugins, - lambdabot-irc-plugins, - lambdabot-misc-plugins, - lambdabot-novelty-plugins, - lambdabot-reference-plugins, - lambdabot-social-plugins, - lifted-base, - mtl, - network, - pontarius-xmpp, - split, - text, - tls, - xml-types, - }: - mkDerivation { - pname = "lambdabot-xmpp"; - version = "0.1.0.6"; - sha256 = "19hgvj49wh39hj9zpjbndvwdgwdz283abrkd5crc5jq04zfi9cw6"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - crypton-x509-validation - data-default - lambdabot-core - lambdabot-haskell-plugins - lambdabot-irc-plugins - lambdabot-misc-plugins - lambdabot-novelty-plugins - lambdabot-reference-plugins - lambdabot-social-plugins - lifted-base - mtl - network - pontarius-xmpp - split - text - tls - xml-types - ]; - description = "Lambdabot plugin for XMPP (Jabber) protocol"; - license = "unknown"; - mainProgram = "lambdabot-xmpp"; - } - ) { }; - - "lambdabot-zulip" = callPackage ( - { - mkDerivation, - base, - containers, - hint, - hspec, - HUnit, - hzulip, - mueval, - optparse-applicative, - say, - text, - yaml, - }: - mkDerivation { - pname = "lambdabot-zulip"; - version = "0.1.0"; - sha256 = "1gjilhmkgbxdrf97mrfcmn84d8wx1g50k7sd27q5q2mldb4vr0xg"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - containers - hint - hzulip - mueval - optparse-applicative - say - text - yaml - ]; - executableHaskellDepends = [ base ]; - testHaskellDepends = [ - base - hspec - HUnit - text - ]; - description = "Lambdabot for Zulip Chat"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - mainProgram = "lamdabot-zulip-server"; - } - ) { }; - - "lambdacat" = callPackage ( - { - mkDerivation, - base, - cmdargs, - containers, - dyre, - glade, - gtk, - mtl, - network, - webkit, - }: - mkDerivation { - pname = "lambdacat"; - version = "0.1.1"; - sha256 = "18m7z0lmi26ib1n1wrql96wb5i229k8fk3iw4vavs9j59b4pz1br"; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base - cmdargs - containers - dyre - glade - gtk - mtl - network - webkit - ]; - description = "Webkit Browser"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "lambdacat"; - } - ) { }; - - "lambdacms-core" = callPackage ( - { - mkDerivation, - base, - blaze-html, - bytestring, - classy-prelude, - classy-prelude-yesod, - containers, - data-default, - esqueleto, - file-embed, - friendly-time, - gravatar, - hspec, - lists, - mime-mail, - old-locale, - persistent, - shakespeare, - template-haskell, - text, - time, - uuid, - wai, - yesod, - yesod-auth, - yesod-core, - yesod-form, - }: - mkDerivation { - pname = "lambdacms-core"; - version = "0.3.0.2"; - sha256 = "0m8piymzcciy4dqhxqxslpm1rbzasm1diasr8ab05r9lcrs1dn76"; - libraryHaskellDepends = [ - base - blaze-html - bytestring - containers - data-default - esqueleto - file-embed - friendly-time - gravatar - lists - mime-mail - old-locale - persistent - shakespeare - template-haskell - text - time - uuid - wai - yesod - yesod-auth - yesod-core - yesod-form - ]; - testHaskellDepends = [ - base - classy-prelude - classy-prelude-yesod - hspec - yesod - yesod-core - ]; - description = "LambdaCms 'core' subsite for Yesod apps"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "lambdacms-media" = callPackage ( - { - mkDerivation, - base, - directory, - filepath, - lambdacms-core, - persistent, - shakespeare, - text, - time, - yesod, - yesod-form, - }: - mkDerivation { - pname = "lambdacms-media"; - version = "0.4.0.0"; - sha256 = "0vq32qppnasc24jrjh6c19hr2pxby65c5m5k90fk7afyms307b5c"; - libraryHaskellDepends = [ - base - directory - filepath - lambdacms-core - persistent - shakespeare - text - time - yesod - yesod-form - ]; - description = "LambdaCms \"media\" extension"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "lambdacube" = callPackage ( - { - mkDerivation, - base, - editline, - mtl, - pretty, - }: - mkDerivation { - pname = "lambdacube"; - version = "2008.12.25"; - sha256 = "1qwwcbs7slddpjlz3dlyjr32xk66clcbxbnb6j1d5v5dz9mvjh3b"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - editline - mtl - pretty - ]; - description = "A simple lambda cube type checker"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "cube"; - } - ) { }; - - "lambdacube-bullet" = callPackage ( - { - mkDerivation, - base, - bullet, - lambdacube-engine, - mtl, - vector, + SafeSemaphore, + split, + syb, + template-haskell, + time, + transformers, + transformers-base, + unix, + utf8-string, + zlib, }: mkDerivation { - pname = "lambdacube-bullet"; - version = "0.2.1"; - sha256 = "1wnv8vgp100fdnx4g80d3gshbba9jni7rbjhhj8rx1mi0wcc1bcv"; + pname = "lambdabot-core"; + version = "5.3.1.2"; + sha256 = "14my72cw39hfc0i7fzhgxv5xjrdfr4pz2ccrixaclngypfd08g28"; + revision = "2"; + editedCabalFile = "0mmjysffj34i7snzkdn6ixlg3j12frcw4csb2mq3167mm987shs4"; libraryHaskellDepends = [ base - bullet - lambdacube-engine + binary + bytestring + containers + dependent-map + dependent-sum + dependent-sum-template + directory + edit-distance + exceptions + filepath + haskeline + hslogger + HTTP + lifted-base + monad-control mtl - vector + network + network-bsd + parsec + prim-uniq + random + random-fu + regex-tdfa + SafeSemaphore + split + syb + template-haskell + time + transformers + transformers-base + unix + utf8-string + zlib ]; - description = "Example for combining LambdaCube and Bullet"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; + description = "Lambdabot core functionality"; + license = "GPL"; } ) { }; - "lambdacube-compiler" = callPackage ( + "lambdabot-haskell-plugins" = callPackage ( { mkDerivation, - aeson, - ansi-wl-pprint, + array, + arrows, base, bytestring, containers, + data-memocombinators, directory, - exceptions, filepath, - lambdacube-ir, - megaparsec, + haskell-src-exts-simple, + hoogle, + HTTP, + IOSpec, + lambdabot-core, + lambdabot-reference-plugins, + lambdabot-trusted, + lifted-base, + logict, mtl, - optparse-applicative, - pretty-show, - semigroups, - text, - vector, + mueval, + network, + numbers, + oeis, + parsec, + pretty, + process, + QuickCheck, + regex-tdfa, + show, + split, + syb, + transformers, + utf8-string, + vector-space, }: mkDerivation { - pname = "lambdacube-compiler"; - version = "0.6.0.1"; - sha256 = "1rylz8cxlf4llnakihphs7250bmvqqbz35aywjmh2vnghyc8dq28"; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; + pname = "lambdabot-haskell-plugins"; + version = "5.3.1.2"; + sha256 = "0pbhwhcxn4fqvn7ynhc19285r75fiksfd9yfjz6d8iq7wmp1frp8"; + revision = "1"; + editedCabalFile = "080a4iv2md1p9qa34ikqc6bliwlgmjsrlf7ys44lh3zj1ldshxfh"; libraryHaskellDepends = [ - aeson - ansi-wl-pprint + array + arrows base + bytestring containers + data-memocombinators directory - exceptions filepath - lambdacube-ir - megaparsec + haskell-src-exts-simple + hoogle + HTTP + IOSpec + lambdabot-core + lambdabot-reference-plugins + lambdabot-trusted + lifted-base + logict mtl - pretty-show - semigroups - text - vector - ]; - executableHaskellDepends = [ - aeson - base - bytestring - filepath - optparse-applicative + mueval + network + numbers + oeis + parsec + pretty + process + QuickCheck + regex-tdfa + show + split + syb + transformers + utf8-string + vector-space ]; - description = "LambdaCube 3D is a DSL to program GPUs"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "lc"; + description = "Lambdabot Haskell plugins"; + license = "GPL"; } ) { }; - "lambdacube-core" = callPackage ( + "lambdabot-irc-plugins" = callPackage ( { mkDerivation, base, bytestring, - bytestring-trie, containers, + directory, + filepath, + lambdabot-core, + lifted-base, mtl, - vector, + network, + SafeSemaphore, + split, + time, }: mkDerivation { - pname = "lambdacube-core"; - version = "0.2.0"; - sha256 = "001nw31h61dawh036yk4w9b35aha6c6xdmsl4vdipnr3kwykgk9l"; + pname = "lambdabot-irc-plugins"; + version = "5.3.1.2"; + sha256 = "00s27136i4xadm09clncrkm5annvnahrvcy04m5llrxa9ja09ixb"; + revision = "1"; + editedCabalFile = "15b4r4m2sqw4pa1yk90q9rg7cpk2davpib79sah13m8xf1lrf2ci"; libraryHaskellDepends = [ base bytestring - bytestring-trie containers + directory + filepath + lambdabot-core + lifted-base mtl - vector + network + SafeSemaphore + split + time ]; - description = "LambdaCube 3D IR"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; + description = "IRC plugins for lambdabot"; + license = "GPL"; } ) { }; - "lambdacube-edsl" = callPackage ( + "lambdabot-misc-plugins" = callPackage ( { mkDerivation, base, bytestring, - bytestring-trie, containers, - ghc-prim, - lambdacube-core, + filepath, + lambdabot-core, + lifted-base, mtl, - vector, + network, + network-uri, + parsec, + process, + regex-tdfa, + SafeSemaphore, + split, + tagsoup, + template-haskell, + time, + transformers, + transformers-base, + unix, + utf8-string, + zlib, }: mkDerivation { - pname = "lambdacube-edsl"; - version = "0.2.0"; - sha256 = "18lbkshc9wh7scb2bbvl565w6yryz7n1iy14r81cahnj7m68fj8m"; + pname = "lambdabot-misc-plugins"; + version = "5.3.1.2"; + sha256 = "0hkia5zziwabm847bl1f2pap47iyrvjwzdsygcvywving467302d"; + revision = "1"; + editedCabalFile = "09d3bngay0xai4sngp0ddly38qdpdzdaa4p5yp4qvrgg8b0nlv2w"; libraryHaskellDepends = [ base bytestring - bytestring-trie containers - ghc-prim - lambdacube-core + filepath + lambdabot-core + lifted-base mtl - vector + network + network-uri + parsec + process + regex-tdfa + SafeSemaphore + split + tagsoup + template-haskell + time + transformers + transformers-base + unix + utf8-string + zlib ]; - description = "LambdaCube 3D EDSL definition"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; + description = "Lambdabot miscellaneous plugins"; + license = "GPL"; } ) { }; - "lambdacube-engine" = callPackage ( + "lambdabot-novelty-plugins" = callPackage ( { mkDerivation, - array, base, binary, - bitmap, + brainfuck, bytestring, - bytestring-trie, containers, + dice, directory, - filepath, - mtl, - OpenGLRaw, - stb-image, - uulib, - vect, - vector, - vector-algorithms, - xml, - zip-archive, + lambdabot-core, + misfortune, + process, + random, + random-fu, + regex-tdfa, + unlambda, }: mkDerivation { - pname = "lambdacube-engine"; - version = "0.2.4"; - sha256 = "1xdp10nylndmfw16dywqrxj30g99rf9qbcx5qiglvzm1c1kxid3f"; + pname = "lambdabot-novelty-plugins"; + version = "5.3.1.2"; + sha256 = "01sas4jg54k1n68sl5v6i1lyai9chw0v0j6dl4p5rh8wdp0n5863"; libraryHaskellDepends = [ - array base binary - bitmap + brainfuck bytestring - bytestring-trie containers + dice directory - filepath - mtl - OpenGLRaw - stb-image - uulib - vect - vector - vector-algorithms - xml - zip-archive + lambdabot-core + misfortune + process + random + random-fu + regex-tdfa + unlambda ]; - description = "3D rendering engine written entirely in Haskell"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; + description = "Novelty plugins for Lambdabot"; + license = "GPL"; } ) { }; - "lambdacube-examples" = callPackage ( + "lambdabot-reference-plugins" = callPackage ( { mkDerivation, base, - elerea, - GLFW-b, - lambdacube-engine, + bytestring, + containers, + HTTP, + lambdabot-core, mtl, + network, + network-uri, + oeis, + process, + regex-tdfa, + split, + tagsoup, + utf8-string, }: mkDerivation { - pname = "lambdacube-examples"; - version = "0.2.2"; - sha256 = "14l40ncbkblphmyn4prqiy2w70agcw830bpyawfdilf93bs340b9"; - isLibrary = false; - isExecutable = true; - enableSeparateDataOutput = true; - executableHaskellDepends = [ + pname = "lambdabot-reference-plugins"; + version = "5.3.1.2"; + sha256 = "086ac4j85x2s156xzwmlldk7sll6jq3gq4mp2vjsa8w9q0p6yw0y"; + revision = "1"; + editedCabalFile = "1sglhkprhbdn3mv4iw1wrn8yfsc9rh1la2h2vqqx5jv7wdy3v9nd"; + libraryHaskellDepends = [ base - elerea - GLFW-b - lambdacube-engine + bytestring + containers + HTTP + lambdabot-core mtl + network + network-uri + oeis + process + regex-tdfa + split + tagsoup + utf8-string ]; - description = "Examples for LambdaCube"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; + description = "Lambdabot reference plugins"; + license = "GPL"; } ) { }; - "lambdacube-gl" = callPackage ( + "lambdabot-social-plugins" = callPackage ( { mkDerivation, base, + binary, bytestring, containers, - JuicyPixels, - lambdacube-ir, + lambdabot-core, mtl, - OpenGLRaw, - vector, - vector-algorithms, + split, + time, }: mkDerivation { - pname = "lambdacube-gl"; - version = "0.5.2.4"; - sha256 = "1qbf81fv66l0d0j2n1zlf3l2wlmr0wby0j4ckkims2biyzf9pflx"; - isLibrary = true; - isExecutable = true; + pname = "lambdabot-social-plugins"; + version = "5.3.1.2"; + sha256 = "137vgsr3alsmaa0dz7z55ijy2zvgy5al3wsdgmwhgkim9ahs4d2k"; libraryHaskellDepends = [ base + binary bytestring containers - JuicyPixels - lambdacube-ir + lambdabot-core mtl - OpenGLRaw - vector - vector-algorithms + split + time ]; - description = "OpenGL 3.3 Core Profile backend for LambdaCube 3D"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; + description = "Social plugins for Lambdabot"; + license = "GPL"; } ) { }; - "lambdacube-ir" = callPackage ( + "lambdabot-telegram-plugins" = callPackage ( { mkDerivation, - aeson, base, containers, + dependent-map, + dependent-sum, + directory, + edit-distance, + haskell-src-exts-simple, + lambdabot-core, + lambdabot-haskell-plugins, + lifted-base, + monad-control, mtl, + pretty-simple, + process, + regex-tdfa, + split, + stm, + telegram-bot-simple, text, - vector, + transformers, + utf8-string, }: mkDerivation { - pname = "lambdacube-ir"; - version = "0.3.0.1"; - sha256 = "1xq1l27p5k863yklhiw0ldrq5ri9h5fg7wj7k2nbbwm7860mha0z"; + pname = "lambdabot-telegram-plugins"; + version = "0.2.1"; + sha256 = "1r0qr28n2lz4nxbvnv3iyc221b8b1w92m23mcahh95agvkjxk6ys"; + isLibrary = true; + isExecutable = true; libraryHaskellDepends = [ - aeson base containers + dependent-map + dependent-sum + directory + edit-distance + haskell-src-exts-simple + lambdabot-core + lifted-base + monad-control mtl + pretty-simple + process + regex-tdfa + split + stm + telegram-bot-simple text - vector + transformers + utf8-string ]; - description = "LambdaCube 3D intermediate representation of 3D graphics pipelines"; - license = lib.licenses.bsd3; + executableHaskellDepends = [ + base + lambdabot-core + lambdabot-haskell-plugins + mtl + ]; + description = "Lambdabot for Telegram"; + license = lib.licenses.gpl2Plus; hydraPlatforms = lib.platforms.none; + mainProgram = "telegram-lambdabot"; broken = true; } ) { }; - "lambdacube-samples" = callPackage ( + "lambdabot-trusted" = callPackage ( { mkDerivation, base, - bytestring, - bytestring-trie, - elerea, - GLFW-b, - lambdacube-core, - lambdacube-edsl, - lambdacube-gl, + oeis, + QuickCheck, + QuickCheck-safe, + }: + mkDerivation { + pname = "lambdabot-trusted"; + version = "5.3.1.2"; + sha256 = "0y3c7jhihhb925x04b3ja8akgsfj2a1hyx1p8i08kaarrfmk796l"; + libraryHaskellDepends = [ + base + oeis + QuickCheck + QuickCheck-safe + ]; + description = "Lambdabot trusted code"; + license = "GPL"; + } + ) { }; + + "lambdabot-xmpp" = callPackage ( + { + mkDerivation, + base, + crypton-x509-validation, + data-default, + lambdabot-core, + lambdabot-haskell-plugins, + lambdabot-irc-plugins, + lambdabot-misc-plugins, + lambdabot-novelty-plugins, + lambdabot-reference-plugins, + lambdabot-social-plugins, + lifted-base, mtl, - OpenGLRaw, - stb-image, - time, - vect, - vector, + network, + pontarius-xmpp, + split, + text, + tls, + xml-types, }: mkDerivation { - pname = "lambdacube-samples"; - version = "0.2.0"; - sha256 = "0zl9d524a81vg3h7f9cbfi34b0hw452bd30xmgvg9ayfwxa842d1"; + pname = "lambdabot-xmpp"; + version = "0.1.0.6"; + sha256 = "19hgvj49wh39hj9zpjbndvwdgwdz283abrkd5crc5jq04zfi9cw6"; isLibrary = false; isExecutable = true; - enableSeparateDataOutput = true; executableHaskellDepends = [ base - bytestring - bytestring-trie - elerea - GLFW-b - lambdacube-core - lambdacube-edsl - lambdacube-gl + crypton-x509-validation + data-default + lambdabot-core + lambdabot-haskell-plugins + lambdabot-irc-plugins + lambdabot-misc-plugins + lambdabot-novelty-plugins + lambdabot-reference-plugins + lambdabot-social-plugins + lifted-base mtl - OpenGLRaw - stb-image - time - vect - vector + network + pontarius-xmpp + split + text + tls + xml-types ]; - description = "Samples for LambdaCube 3D"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; + description = "Lambdabot plugin for XMPP (Jabber) protocol"; + license = "unknown"; + mainProgram = "lambdabot-xmpp"; } ) { }; @@ -405334,181 +233753,6 @@ self: { } ) { }; - "lambdatex" = callPackage ( - { - mkDerivation, - async, - base, - containers, - directory, - filepath, - HaTeX, - hspec, - mtl, - QuickCheck, - quickcheck-text, - text, - transformers, - }: - mkDerivation { - pname = "lambdatex"; - version = "0.2.0.0"; - sha256 = "1affvm2cr8k3zwjq79rcl6gqnd9yv2gw9h7mj09wrrwplgqrzn34"; - libraryHaskellDepends = [ - async - base - containers - directory - filepath - HaTeX - mtl - text - transformers - ]; - testHaskellDepends = [ - base - hspec - QuickCheck - quickcheck-text - text - ]; - description = "Type-Safe LaTeX EDSL"; - license = "GPL"; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "lambdatwit" = callPackage ( - { - mkDerivation, - acid-state, - authenticate-oauth, - base, - bytestring, - case-insensitive, - conduit, - containers, - data-default, - exceptions, - hint, - http-conduit, - http-types, - lens, - MissingH, - monad-control, - monad-logger, - mtl, - mueval, - network-uri, - resourcet, - safecopy, - text, - transformers, - transformers-base, - twitter-conduit, - twitter-types, - utf8-string, - }: - mkDerivation { - pname = "lambdatwit"; - version = "0.1.0.0"; - sha256 = "01mqmhnq70k3yg29z492x7d6mzpwlijdrrgf0zbz8c8mlgnm4ljx"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - acid-state - authenticate-oauth - base - bytestring - case-insensitive - conduit - containers - data-default - exceptions - hint - http-conduit - http-types - lens - MissingH - monad-control - monad-logger - mtl - mueval - network-uri - resourcet - safecopy - text - transformers - transformers-base - twitter-conduit - twitter-types - utf8-string - ]; - description = "Lambdabot running as a twitter bot. Similar to the @fsibot f# bot."; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "lambdaya-bus" = callPackage ( - { - mkDerivation, - base, - clash-prelude, - Lambdaya, - template-haskell, - }: - mkDerivation { - pname = "lambdaya-bus"; - version = "0.0.0.2"; - sha256 = "1xd0961ga6ayf0qf9dqvfsgs1krc48j0nqngcrqpl1kx2mjgc39m"; - libraryHaskellDepends = [ - base - clash-prelude - Lambdaya - template-haskell - ]; - description = "Fpga bus core and serialization for RedPitaya"; - license = lib.licenses.lgpl3Only; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "lambdiff" = callPackage ( - { - mkDerivation, - attoparsec, - attoparsec-enumerator, - base, - bytestring, - enumerator, - gtk, - mtl, - }: - mkDerivation { - pname = "lambdiff"; - version = "0.1"; - sha256 = "0xlvz4r09vn1vdvs5wykry626hwcsg2zvdvl6jf6zrsq9331zcwy"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - attoparsec - attoparsec-enumerator - base - bytestring - enumerator - gtk - mtl - ]; - description = "Diff Viewer"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "lambdiff"; - } - ) { }; - "lame" = callPackage ( { mkDerivation, @@ -405559,40 +233803,6 @@ self: { } ) { mp3lame = null; }; - "lame-tester" = callPackage ( - { - mkDerivation, - base-noprelude, - bizzlelude, - containers, - semigroups, - tasty, - tasty-hunit, - validation, - }: - mkDerivation { - pname = "lame-tester"; - version = "1.4.0"; - sha256 = "0rlq0hmsrfvs3m3bp4whaljqxpwxs9svgmy02yg152vjmg0vv971"; - libraryHaskellDepends = [ - base-noprelude - bizzlelude - containers - semigroups - validation - ]; - testHaskellDepends = [ - bizzlelude - containers - tasty - tasty-hunit - ]; - description = "A strange and unnecessary selective test-running library"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "laminar" = callPackage ( { mkDerivation, @@ -405687,30 +233897,6 @@ self: { } ) { }; - "lang" = callPackage ( - { - mkDerivation, - base, - bytestring, - http-streams, - Mapping, - }: - mkDerivation { - pname = "lang"; - version = "0.2.2"; - sha256 = "1nmyirpf07q7lrgfdqxwaspa173a2g3077gy9k7rpviw8pg2az0w"; - libraryHaskellDepends = [ - base - bytestring - http-streams - Mapping - ]; - description = "A Lisp"; - license = lib.licenses.agpl3Only; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "langchain-hs" = callPackage ( { mkDerivation, @@ -405860,43 +234046,6 @@ self: { } ) { }; - "language-asn" = callPackage ( - { - mkDerivation, - aeson, - base, - bytestring, - contravariant, - hashable, - pretty, - primitive, - text, - vector, - }: - mkDerivation { - pname = "language-asn"; - version = "0.1.1.0"; - sha256 = "0ynqpfws2ga2v79cmlxxg1nl7w228mz9znbxj4mxpsbqyc9j25zg"; - revision = "1"; - editedCabalFile = "178pdynmpcg02yz9fc8gaqry2vazy5847sr0cnn8ivm554sh96fx"; - libraryHaskellDepends = [ - aeson - base - bytestring - contravariant - hashable - pretty - primitive - text - vector - ]; - description = "ASN.1 encoding and decoding"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "language-asn1" = callPackage ( { mkDerivation, @@ -406108,60 +234257,6 @@ self: { } ) { }; - "language-boogie" = callPackage ( - { - mkDerivation, - ansi-terminal, - base, - cmdargs, - containers, - lens, - mtl, - parsec, - pretty, - random, - stream-monad, - time, - transformers, - }: - mkDerivation { - pname = "language-boogie"; - version = "0.2"; - sha256 = "166n9x3gil42w26r7p9d1jq6iy0yi9zacijkfmxj2gkkswyyb91x"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - containers - lens - mtl - parsec - pretty - random - stream-monad - transformers - ]; - executableHaskellDepends = [ - ansi-terminal - base - cmdargs - containers - lens - mtl - parsec - pretty - random - stream-monad - time - transformers - ]; - description = "Interpreter and language infrastructure for Boogie"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "boogaloo"; - } - ) { }; - "language-c" = callPackage ( { mkDerivation, @@ -406211,63 +234306,6 @@ self: { } ) { }; - "language-c-comments" = callPackage ( - { - mkDerivation, - alex, - array, - base, - language-c, - }: - mkDerivation { - pname = "language-c-comments"; - version = "0.3"; - sha256 = "1rmciff72zpcq7pvbbxlsg2339dbk00k18vxp35sz8haql0jnrf2"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - array - base - language-c - ]; - libraryToolDepends = [ alex ]; - description = "Extracting comments from C code"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "language-c-inline" = callPackage ( - { - mkDerivation, - array, - base, - containers, - filepath, - language-c-quote, - mainland-pretty, - template-haskell, - }: - mkDerivation { - pname = "language-c-inline"; - version = "0.7.11.0"; - sha256 = "1f31yk4h507d3gl0crjrjxhc2c313i8l04sacw79m2vyvy7fqrzw"; - libraryHaskellDepends = [ - array - base - containers - filepath - language-c-quote - mainland-pretty - template-haskell - ]; - description = "Inline C & Objective-C code in Haskell for language interoperability"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "language-c-quote" = callPackage ( { mkDerivation, @@ -406472,37 +234510,6 @@ self: { } ) { }; - "language-csharp" = callPackage ( - { - mkDerivation, - alex, - array, - base, - parsec, - pretty, - text, - }: - mkDerivation { - pname = "language-csharp"; - version = "0.0.1"; - sha256 = "1sg7i0mpq98nfwnq3rfmhd9y1lvjff99843fprif3r3ww62clp2c"; - revision = "1"; - editedCabalFile = "1x5pn0zr2wzhmcfs2rcdy5wjjwp2xhfg4fjs4zhglfh3svvlwpqx"; - libraryHaskellDepends = [ - array - base - parsec - pretty - text - ]; - libraryToolDepends = [ alex ]; - description = "C# source code manipulation"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "language-css" = callPackage ( { mkDerivation, @@ -406522,34 +234529,6 @@ self: { } ) { }; - "language-dart" = callPackage ( - { - mkDerivation, - base, - hspec, - pretty, - raw-strings-qq, - }: - mkDerivation { - pname = "language-dart"; - version = "0.2.0.0"; - sha256 = "1ig9njsc13877kwrfnwiny7qsq1jyd4s5cmjymf380gh7am49ca1"; - libraryHaskellDepends = [ - base - pretty - ]; - testHaskellDepends = [ - base - hspec - raw-strings-qq - ]; - description = "Manipulating Dart source: abstract syntax and pretty-printer"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "language-dickinson" = callPackage ( { mkDerivation, @@ -406714,96 +234693,6 @@ self: { } ) { }; - "language-dockerfile" = callPackage ( - { - mkDerivation, - aeson, - base, - bytestring, - directory, - filepath, - free, - Glob, - hspec, - HUnit, - mtl, - parsec, - pretty, - process, - QuickCheck, - ShellCheck, - split, - template-haskell, - test-framework, - test-framework-hunit, - text, - th-lift, - th-lift-instances, - transformers, - unordered-containers, - yaml, - }: - mkDerivation { - pname = "language-dockerfile"; - version = "0.3.6.0"; - sha256 = "1dqvnz81qbaabc3sx3lqi725hwvw7dk36v7xvvbpkmy2zl0xv3pn"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson - base - bytestring - directory - filepath - free - Glob - mtl - parsec - pretty - ShellCheck - split - template-haskell - text - th-lift - th-lift-instances - transformers - unordered-containers - yaml - ]; - testHaskellDepends = [ - aeson - base - bytestring - directory - filepath - free - Glob - hspec - HUnit - mtl - parsec - pretty - process - QuickCheck - ShellCheck - split - template-haskell - test-framework - test-framework-hunit - text - th-lift - th-lift-instances - transformers - unordered-containers - yaml - ]; - description = "Dockerfile linter, parser, pretty-printer and embedded DSL"; - license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "language-dot" = callPackage ( { mkDerivation, @@ -406839,240 +234728,6 @@ self: { } ) { }; - "language-ecmascript" = callPackage ( - { - mkDerivation, - ansi-wl-pprint, - base, - charset, - containers, - data-default-class, - Diff, - directory, - filepath, - HUnit, - mtl, - parsec, - QuickCheck, - template-haskell, - test-framework, - test-framework-hunit, - test-framework-quickcheck2, - testing-feat, - uniplate, - }: - mkDerivation { - pname = "language-ecmascript"; - version = "0.19.1.0"; - sha256 = "0kk5zk9lr6kvpkz4ihw8ww4j03m899i0af6yhf4q3r7r4d1yq22s"; - libraryHaskellDepends = [ - ansi-wl-pprint - base - charset - containers - data-default-class - Diff - mtl - parsec - QuickCheck - template-haskell - uniplate - ]; - testHaskellDepends = [ - ansi-wl-pprint - base - charset - containers - data-default-class - Diff - directory - filepath - HUnit - mtl - parsec - QuickCheck - test-framework - test-framework-hunit - test-framework-quickcheck2 - testing-feat - uniplate - ]; - description = "JavaScript parser and pretty-printer library"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "language-ecmascript-analysis" = callPackage ( - { - mkDerivation, - base, - containers, - language-ecmascript, - parsec, - uniplate, - }: - mkDerivation { - pname = "language-ecmascript-analysis"; - version = "0.9.2"; - sha256 = "14d6iggyvnkngpq0vxpg23jyvpbsgwpdq5y8476xgvbp6kv7gd5g"; - libraryHaskellDepends = [ - base - containers - language-ecmascript - parsec - uniplate - ]; - description = "JavaScript static analysis library"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "language-eiffel" = callPackage ( - { - mkDerivation, - alex, - array, - base, - binary, - bytestring, - containers, - deepseq, - derive, - ghc-prim, - hashable, - lens, - mtl, - parsec, - pretty, - text, - unordered-containers, - }: - mkDerivation { - pname = "language-eiffel"; - version = "0.1.2"; - sha256 = "1v3m31ffx4pmgq92ahvlyzsh9hjvrdsmyzhd61qxzgpn3z9zzlcm"; - libraryHaskellDepends = [ - array - base - binary - bytestring - containers - deepseq - derive - ghc-prim - hashable - lens - mtl - parsec - pretty - text - unordered-containers - ]; - libraryToolDepends = [ alex ]; - description = "Parser and pretty printer for the Eiffel language"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "language-elm" = callPackage ( - { - mkDerivation, - base, - doctest, - hspec, - MissingH, - mtl, - pretty, - protolude, - }: - mkDerivation { - pname = "language-elm"; - version = "0.2.0.0"; - sha256 = "13hlkdkxybldwkri0r93pn14lbx9msj4vhyxkibkkjyx7hc9zi9i"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base - MissingH - mtl - pretty - protolude - ]; - libraryToolDepends = [ doctest ]; - testHaskellDepends = [ - base - hspec - mtl - pretty - protolude - ]; - testToolDepends = [ doctest ]; - description = "Generate elm code"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "language-fortran" = callPackage ( - { - mkDerivation, - alex, - array, - base, - happy, - haskell-src, - parsec, - syb, - }: - mkDerivation { - pname = "language-fortran"; - version = "0.5.1"; - sha256 = "16kzdvhxpmfiia68c4y36fv1sjymy7sblba4iz77qqnwfqz3zka4"; - libraryHaskellDepends = [ - array - base - haskell-src - parsec - syb - ]; - libraryToolDepends = [ - alex - happy - ]; - description = "Fortran lexer and parser, language support, and extensions"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "language-gcl" = callPackage ( - { - mkDerivation, - base, - bifunctors, - parsers, - }: - mkDerivation { - pname = "language-gcl"; - version = "0.2"; - sha256 = "12yh49zh9wissms20rbvgzw5i5wlc8m1iqwkxg68f52g7mk6clrf"; - libraryHaskellDepends = [ - base - bifunctors - parsers - ]; - description = "Something similar to Dijkstra's guarded command language"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "language-gemini" = callPackage ( { mkDerivation, @@ -407146,57 +234801,6 @@ self: { } ) { }; - "language-go" = callPackage ( - { - mkDerivation, - array, - base, - parsec, - utf8-string, - }: - mkDerivation { - pname = "language-go"; - version = "0.8"; - sha256 = "1p545115x73q4mzfja50f4lxal97ydvz9r3wq6pvcqls2xgvxzvc"; - libraryHaskellDepends = [ - array - base - parsec - utf8-string - ]; - description = "A library for analysis and synthesis of Go code"; - license = "GPL"; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "language-guess" = callPackage ( - { - mkDerivation, - base, - bytestring, - cereal, - containers, - }: - mkDerivation { - pname = "language-guess"; - version = "0.1.2"; - sha256 = "0gdnkc1hb0mcn494vk9r7fw19hvaba807brwh6fna0sxyh2nx3p0"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base - bytestring - cereal - containers - ]; - description = "Guess at which language a text is written in using trigrams"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "language-haskell-extract" = callPackage ( { mkDerivation, @@ -407220,68 +234824,6 @@ self: { } ) { }; - "language-hcl" = callPackage ( - { - mkDerivation, - base, - criterion, - deepseq, - directory, - filepath, - hspec, - hspec-megaparsec, - megaparsec, - pretty, - QuickCheck, - scientific, - semigroups, - text, - transformers, - unordered-containers, - }: - mkDerivation { - pname = "language-hcl"; - version = "0.1.2.0"; - sha256 = "08213ylz3n0hp0aryvzs76ky44sgbhqx84wm8h6kynzdfbxrq8g2"; - libraryHaskellDepends = [ - base - deepseq - directory - filepath - megaparsec - pretty - scientific - semigroups - text - unordered-containers - ]; - testHaskellDepends = [ - base - directory - filepath - hspec - hspec-megaparsec - megaparsec - pretty - QuickCheck - semigroups - text - transformers - ]; - benchmarkHaskellDepends = [ - base - criterion - directory - filepath - text - ]; - description = "HCL parsers and pretty-printers for the Haskell programming language"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "language-java" = callPackage ( { mkDerivation, @@ -407324,49 +234866,6 @@ self: { } ) { }; - "language-java-classfile" = callPackage ( - { - mkDerivation, - array, - base, - binary, - bytestring, - containers, - data-binary-ieee754, - data-flags, - deepseq, - language-java, - LibZip, - mtl, - parsec, - utf8-string, - }: - mkDerivation { - pname = "language-java-classfile"; - version = "0.2.0"; - sha256 = "0pzlvzx5rv006mn88b15zvvrhf7h681xpl166368b92dc0x85gcf"; - libraryHaskellDepends = [ - array - base - binary - bytestring - containers - data-binary-ieee754 - data-flags - deepseq - language-java - LibZip - mtl - parsec - utf8-string - ]; - description = "Parser for Java .class files"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "language-javascript_0_7_0_0" = callPackage ( { mkDerivation, @@ -407503,55 +235002,6 @@ self: { } ) { }; - "language-kort" = callPackage ( - { - mkDerivation, - base, - base64-bytestring, - bytestring, - QuickCheck, - random, - razom-text-util, - regex-applicative, - smaoin, - text, - text-position, - utf8-string, - vocabulary-kadma, - }: - mkDerivation { - pname = "language-kort"; - version = "0.1.0.0"; - sha256 = "0dhrzd470hfvkjpizgg9czgyz80nc9sq86r2zcimsch6rxmid0i0"; - revision = "1"; - editedCabalFile = "1xzv8zimd19l2awhypxjp9yqf9yw9a5ik487nwjjh8nblk5322cp"; - libraryHaskellDepends = [ - base - base64-bytestring - bytestring - random - razom-text-util - regex-applicative - smaoin - text - text-position - utf8-string - vocabulary-kadma - ]; - testHaskellDepends = [ - base - bytestring - QuickCheck - smaoin - text - vocabulary-kadma - ]; - description = "Parser and serializer for the Kort information language"; - license = lib.licenses.publicDomain; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "language-lua" = callPackage ( { mkDerivation, @@ -407611,251 +235061,6 @@ self: { } ) { }; - "language-lua-qq" = callPackage ( - { - mkDerivation, - base, - haskell-src-meta, - language-lua, - mtl, - syb, - template-haskell, - text, - }: - mkDerivation { - pname = "language-lua-qq"; - version = "0.1.0.0"; - sha256 = "0kg0rl76rq38s1hz6aykc0ikkrls1l5d040ajs8jbajia1dhmyfj"; - libraryHaskellDepends = [ - base - haskell-src-meta - language-lua - mtl - syb - template-haskell - text - ]; - testHaskellDepends = [ base ]; - description = "Initial project template from stack"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "language-lua2" = callPackage ( - { - mkDerivation, - base, - containers, - deepseq, - Earley, - lexer-applicative, - microlens, - QuickCheck, - regex-applicative, - semigroups, - srcloc, - tasty, - tasty-hunit, - tasty-quickcheck, - transformers, - unordered-containers, - wl-pprint, - }: - mkDerivation { - pname = "language-lua2"; - version = "0.1.0.5"; - sha256 = "0g9r4i29061xgglqwh3gicdm68v28b73bn7as7lwgqfv2nqdf92g"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - containers - Earley - lexer-applicative - microlens - regex-applicative - semigroups - srcloc - transformers - unordered-containers - wl-pprint - ]; - testHaskellDepends = [ - base - deepseq - lexer-applicative - QuickCheck - semigroups - srcloc - tasty - tasty-hunit - tasty-quickcheck - unordered-containers - ]; - description = "Lua parser and pretty printer"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "language-mixal" = callPackage ( - { - mkDerivation, - base, - mtl, - parsec, - pretty, - }: - mkDerivation { - pname = "language-mixal"; - version = "0.1"; - sha256 = "0fgjkx003bn0bi4z6rgg8yvsl8k8almydh2lajkyp6zi5348vcv5"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - mtl - parsec - pretty - ]; - executableHaskellDepends = [ - base - pretty - ]; - description = "Parser, pretty-printer, and AST types for the MIXAL assembly language"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "mixal-pretty"; - broken = true; - } - ) { }; - - "language-ninja" = callPackage ( - { - mkDerivation, - aeson, - aeson-pretty, - base, - bytestring, - Cabal, - cabal-doctest, - containers, - deepseq, - doctest, - flow, - ghc, - haddock-api, - haddock-library, - hashable, - intern, - lens, - megaparsec, - monad-mock, - mtl, - optparse-generic, - QuickCheck, - quickcheck-instances, - semigroups, - smallcheck, - system-filepath, - tasty, - tasty-html, - tasty-hunit, - tasty-lens, - tasty-quickcheck, - tasty-smallcheck, - template-haskell, - text, - transformers, - turtle, - unordered-containers, - versions, - }: - mkDerivation { - pname = "language-ninja"; - version = "0.2.0"; - sha256 = "08lzkvq0v3b8grji7gcfg2m714xql85k18b5wg3h0nh38wkh6m8d"; - isLibrary = true; - isExecutable = true; - setupHaskellDepends = [ - base - Cabal - cabal-doctest - ]; - libraryHaskellDepends = [ - aeson - base - bytestring - containers - deepseq - flow - hashable - intern - lens - megaparsec - mtl - QuickCheck - semigroups - smallcheck - system-filepath - text - transformers - unordered-containers - versions - ]; - executableHaskellDepends = [ - aeson - aeson-pretty - base - flow - lens - mtl - optparse-generic - text - transformers - ]; - testHaskellDepends = [ - aeson - base - bytestring - cabal-doctest - containers - doctest - flow - ghc - haddock-api - haddock-library - hashable - lens - monad-mock - mtl - QuickCheck - quickcheck-instances - semigroups - smallcheck - system-filepath - tasty - tasty-html - tasty-hunit - tasty-lens - tasty-quickcheck - tasty-smallcheck - template-haskell - text - transformers - turtle - unordered-containers - versions - ]; - description = "A library for dealing with the Ninja build language"; - license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "language-nix" = callPackage ( { mkDerivation, @@ -407965,197 +235170,6 @@ self: { } ) { }; - "language-objc" = callPackage ( - { - mkDerivation, - alex, - array, - base, - bytestring, - containers, - directory, - filepath, - happy, - newtype, - pretty, - process, - syb, - }: - mkDerivation { - pname = "language-objc"; - version = "0.4.2.8"; - sha256 = "0dqx8fzbh53kakbh62zmq3x4gx4p5zfwisi3z6n03mjyfv3wv6jv"; - libraryHaskellDepends = [ - array - base - bytestring - containers - directory - filepath - newtype - pretty - process - syb - ]; - libraryToolDepends = [ - alex - happy - ]; - description = "Analysis and generation of Objective C code"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "language-ocaml" = callPackage ( - { - mkDerivation, - alex, - array, - base, - containers, - data-default, - directory, - extensible-effects, - extra, - filepath, - happy, - interpolate, - lens, - megaparsec, - mtl, - prettyprinter, - string-qq, - tasty, - tasty-golden, - tasty-hunit, - zlib, - }: - mkDerivation { - pname = "language-ocaml"; - version = "0.2.0"; - sha256 = "1z9qk9vyv0nimkpgjkmnjvqg0schyiffyx59myi6r9gnmdagifh5"; - libraryHaskellDepends = [ - array - base - containers - data-default - directory - extensible-effects - extra - filepath - interpolate - lens - megaparsec - mtl - prettyprinter - string-qq - tasty - tasty-golden - tasty-hunit - ]; - libraryPkgconfigDepends = [ zlib ]; - libraryToolDepends = [ - alex - happy - ]; - testHaskellDepends = [ - base - directory - extra - filepath - interpolate - megaparsec - prettyprinter - string-qq - tasty - tasty-golden - tasty-hunit - ]; - description = "Language tools for manipulating OCaml programs in Haskell"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { inherit (pkgs) zlib; }; - - "language-openscad" = callPackage ( - { - mkDerivation, - attoparsec, - base, - bytestring, - }: - mkDerivation { - pname = "language-openscad"; - version = "0.1.7"; - sha256 = "18ws65lc5w9pidadrlynscxavxfij794wi1f2ijnr11vbz087drd"; - revision = "1"; - editedCabalFile = "1kmqwdgfxhpia6yi734g9a0mrdqzgi6lzzadx1fhwhfx1pgnap0y"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - attoparsec - base - bytestring - ]; - executableHaskellDepends = [ - attoparsec - base - bytestring - ]; - description = "A simple parser for OpenSCAD"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "Test"; - broken = true; - } - ) { }; - - "language-pig" = callPackage ( - { - mkDerivation, - base, - Cabal, - containers, - HUnit, - parsec, - pretty-tree, - QuickCheck, - test-framework, - test-framework-hunit, - test-framework-quickcheck2, - text, - }: - mkDerivation { - pname = "language-pig"; - version = "0.3.0.1"; - sha256 = "1lv8zm352him9rby1k0n90bklx8wlvr1w8anzmr54fmbd9ibx0f2"; - libraryHaskellDepends = [ - base - Cabal - containers - parsec - pretty-tree - ]; - testHaskellDepends = [ - base - Cabal - HUnit - QuickCheck - test-framework - test-framework-hunit - test-framework-quickcheck2 - text - ]; - description = "Pig parser in haskell"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "language-protobuf" = callPackage ( { mkDerivation, @@ -408367,225 +235381,6 @@ self: { } ) { }; - "language-python-colour" = callPackage ( - { - mkDerivation, - base, - haskell98, - language-python, - xhtml, - }: - mkDerivation { - pname = "language-python-colour"; - version = "0.1"; - sha256 = "1cspr1v0dm4lbjrb654n8lax9nvmj94a89cp3vqir8xccaxhggpz"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - haskell98 - language-python - xhtml - ]; - description = "Generate coloured XHTML for Python code"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "pycol"; - } - ) { }; - - "language-python-test" = callPackage ( - { - mkDerivation, - base, - language-python, - }: - mkDerivation { - pname = "language-python-test"; - version = "0.5.8"; - sha256 = "0gsh5sziznzsy623izx7fs1s68xdmgf4vmk8rwhmvh5hhxvyazb6"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - language-python - ]; - description = "testing code for the language-python library"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "language-qux" = callPackage ( - { - mkDerivation, - base, - containers, - either, - indents, - llvm-general-pure, - mtl, - parsec, - pretty, - transformers, - }: - mkDerivation { - pname = "language-qux"; - version = "0.2.0.0"; - sha256 = "0xfa05c2h3wi6h6qs02lk2gl3ydkrihpsrl277s40bz63j5y650j"; - libraryHaskellDepends = [ - base - containers - either - indents - llvm-general-pure - mtl - parsec - pretty - transformers - ]; - description = "Utilities for working with the Qux language"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "language-rust" = callPackage ( - { - mkDerivation, - aeson, - alex, - array, - base, - bytestring, - criterion, - deepseq, - directory, - filepath, - happy, - HUnit, - prettyprinter, - process, - statistics, - template-haskell, - test-framework, - test-framework-hunit, - text, - time, - transformers, - unordered-containers, - utf8-string, - vector, - weigh, - }: - mkDerivation { - pname = "language-rust"; - version = "0.2.0.27"; - sha256 = "04xyw05i5fbk766igpa5kx9wa4801s84wr6nyl4y9dwy8fcnq9va"; - libraryHaskellDepends = [ - array - base - bytestring - deepseq - prettyprinter - template-haskell - transformers - utf8-string - ]; - libraryToolDepends = [ - alex - happy - ]; - testHaskellDepends = [ - aeson - base - bytestring - directory - filepath - HUnit - prettyprinter - process - test-framework - test-framework-hunit - text - time - unordered-containers - vector - ]; - benchmarkHaskellDepends = [ - aeson - base - bytestring - criterion - directory - filepath - process - statistics - weigh - ]; - description = "Parsing and pretty printing of Rust code"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "language-sally" = callPackage ( - { - mkDerivation, - ansi-wl-pprint, - base, - bytestring, - containers, - text, - }: - mkDerivation { - pname = "language-sally"; - version = "0.1.2.0"; - sha256 = "053lswpcscsx74lyfjm6g5yzckfd5fc2bvj34ps8470d8dhbphkb"; - libraryHaskellDepends = [ - ansi-wl-pprint - base - bytestring - containers - text - ]; - description = "AST and pretty printer for Sally"; - license = lib.licenses.isc; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "language-sh" = callPackage ( - { - mkDerivation, - base, - directory, - filepath, - mtl, - parsec, - pcre-light, - }: - mkDerivation { - pname = "language-sh"; - version = "0.0.3.1"; - sha256 = "12yjynd1sib1mxx4jc28gs1k3r7kl1qv7xhanvn635dkcmswsd5k"; - libraryHaskellDepends = [ - base - directory - filepath - mtl - parsec - pcre-light - ]; - description = "A package for parsing shell scripts"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "language-slice" = callPackage ( { mkDerivation, @@ -408625,52 +235420,6 @@ self: { } ) { }; - "language-spelling" = callPackage ( - { - mkDerivation, - array, - base, - bk-tree, - bytestring, - containers, - criterion, - ListLike, - listlike-instances, - random-shuffle, - text, - time, - tst, - vector, - }: - mkDerivation { - pname = "language-spelling"; - version = "0.3.2"; - sha256 = "05jgx1rcfb9aidrim2h9vr72c3m9hak2njkh04hkf4q3v1pv03ym"; - libraryHaskellDepends = [ - array - base - bk-tree - bytestring - containers - ListLike - listlike-instances - text - tst - vector - ]; - testHaskellDepends = [ - base - bytestring - criterion - random-shuffle - time - ]; - description = "Various tools to detect/correct mistakes in words"; - license = lib.licenses.publicDomain; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "language-spir-v" = callPackage ( { mkDerivation, @@ -408706,37 +235455,6 @@ self: { } ) { inherit (pkgs) shaderc; }; - "language-sqlite" = callPackage ( - { - mkDerivation, - array, - base, - bytestring, - containers, - mtl, - template-haskell, - utf8-string, - }: - mkDerivation { - pname = "language-sqlite"; - version = "1.1"; - sha256 = "1mpbp56xgqx6j4mfla00kvr9q6mysncjw57mphvrz86ificjw93m"; - libraryHaskellDepends = [ - array - base - bytestring - containers - mtl - template-haskell - utf8-string - ]; - description = "Full parser and generator for SQL as implemented by SQLite3"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "language-sygus" = callPackage ( { mkDerivation, @@ -408921,31 +235639,6 @@ self: { } ) { }; - "language-typescript" = callPackage ( - { - mkDerivation, - base, - containers, - parsec, - pretty, - }: - mkDerivation { - pname = "language-typescript"; - version = "0.0.4"; - sha256 = "07lm3d4m7c6j2b5gywqm05189iwkh2zjiv5xwwmcw1fm2a63r2zd"; - libraryHaskellDepends = [ - base - containers - parsec - pretty - ]; - description = "A library for working with TypeScript Definition files"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "language-vhdl" = callPackage ( { mkDerivation, @@ -408965,67 +235658,6 @@ self: { } ) { }; - "language-webidl" = callPackage ( - { - mkDerivation, - base, - HUnit, - parsec, - wl-pprint, - }: - mkDerivation { - pname = "language-webidl"; - version = "0.2.0.0"; - sha256 = "1h93a19y8109mwxl795hi0xdb3jy1z9w2ks3sc6g673kv04pw0pf"; - libraryHaskellDepends = [ - base - parsec - wl-pprint - ]; - testHaskellDepends = [ - base - HUnit - ]; - description = "Parser and Pretty Printer for WebIDL"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "laop" = callPackage ( - { - mkDerivation, - base, - criterion, - deepseq, - QuickCheck, - }: - mkDerivation { - pname = "laop"; - version = "0.1.1.1"; - sha256 = "1f1dgj8dkyi2aymicc47s5n3rhy3cl02j2fphhg9iibqinfi4jz9"; - libraryHaskellDepends = [ - base - deepseq - ]; - testHaskellDepends = [ - base - deepseq - ]; - benchmarkHaskellDepends = [ - base - criterion - deepseq - QuickCheck - ]; - description = "Matrix programming library"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "lapack" = callPackage ( { mkDerivation, @@ -409656,137 +236288,6 @@ self: { } ) { }; - "lat" = callPackage ( - { - mkDerivation, - ansi-wl-pprint, - base, - cmdargs, - directory, - filepath, - haskell98, - haxr, - HDBC, - HDBC-sqlite3, - hsini, - HTTP, - mtl, - old-locale, - regex-compat, - tagsoup, - time, - }: - mkDerivation { - pname = "lat"; - version = "0.6"; - sha256 = "0snzcck07v3w1qcgw2j6w7g4ydm59cprf3cqivl9qbgsjljl3zxn"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - ansi-wl-pprint - base - cmdargs - directory - filepath - haskell98 - haxr - HDBC - HDBC-sqlite3 - hsini - HTTP - mtl - old-locale - regex-compat - tagsoup - time - ]; - description = "Tool to track security alerts on LWN"; - license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - mainProgram = "lat"; - } - ) { }; - - "latest-npm-version" = callPackage ( - { - mkDerivation, - aeson, - base, - cmdargs, - hspec, - http-client, - http-types, - lens, - network, - pipes, - pipes-attoparsec, - pipes-bytestring, - pipes-http, - text, - text-format, - transformers, - }: - mkDerivation { - pname = "latest-npm-version"; - version = "0.3.1"; - sha256 = "0z6jl0i9d9r4nifyn2h6pk8s3ni5zfmbc4gpaqim3hzzbh6kqrn0"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson - base - http-client - http-types - lens - network - pipes - pipes-attoparsec - pipes-bytestring - pipes-http - text - text-format - transformers - ]; - executableHaskellDepends = [ - aeson - base - cmdargs - http-client - http-types - lens - network - pipes - pipes-attoparsec - pipes-bytestring - pipes-http - text - text-format - transformers - ]; - testHaskellDepends = [ - aeson - base - hspec - http-client - http-types - lens - network - pipes - pipes-attoparsec - pipes-bytestring - pipes-http - text - text-format - transformers - ]; - description = "Find the latest version of a package on npm"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - mainProgram = "latest-npm-version"; - broken = true; - } - ) { }; - "latex" = callPackage ( { mkDerivation, @@ -409811,111 +236312,6 @@ self: { } ) { }; - "latex-formulae-hakyll" = callPackage ( - { - mkDerivation, - base, - hakyll, - latex-formulae-image, - latex-formulae-pandoc, - lrucache, - pandoc-types, - }: - mkDerivation { - pname = "latex-formulae-hakyll"; - version = "0.2.0.4"; - sha256 = "0q16p3ccql38ri3rnbsx54vj6jn154j3m6vic64zi4nk54g0sc5f"; - revision = "1"; - editedCabalFile = "08502482n0szzg32bcrdyhs853hlmx3r14bpjww1fv2dijk5asrw"; - libraryHaskellDepends = [ - base - hakyll - latex-formulae-image - latex-formulae-pandoc - lrucache - pandoc-types - ]; - description = "Use actual LaTeX to render formulae inside Hakyll pages"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "latex-formulae-image" = callPackage ( - { - mkDerivation, - base, - directory, - errors, - filepath, - JuicyPixels, - process, - temporary, - transformers, - }: - mkDerivation { - pname = "latex-formulae-image"; - version = "0.1.1.4"; - sha256 = "0s3r0qd235lgmw4g5j52r2d97zsr3nd0ikzffgpwigvcbzshddv0"; - revision = "1"; - editedCabalFile = "0m15dyrxala5dh5sh228bsrfa3nym9wd719byj19vfl4i2nabw9d"; - libraryHaskellDepends = [ - base - directory - errors - filepath - JuicyPixels - process - temporary - transformers - ]; - description = "A library for rendering LaTeX formulae as images using an actual LaTeX installation"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "latex-formulae-pandoc" = callPackage ( - { - mkDerivation, - base, - base64-bytestring, - bytestring, - directory, - filepath, - JuicyPixels, - latex-formulae-image, - pandoc-types, - }: - mkDerivation { - pname = "latex-formulae-pandoc"; - version = "0.2.0.6"; - sha256 = "120ckmvd9ykgdxmfidfw9rfifikmg85zh91wvynfwdz27290pz1f"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - base64-bytestring - bytestring - directory - filepath - JuicyPixels - latex-formulae-image - pandoc-types - ]; - executableHaskellDepends = [ - base - latex-formulae-image - pandoc-types - ]; - description = "Render LaTeX formulae in pandoc documents to images with an actual LaTeX installation"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "latex-formulae-filter"; - } - ) { }; - "latex-function-tables" = callPackage ( { mkDerivation, @@ -409988,111 +236384,6 @@ self: { } ) { }; - "latex-svg-hakyll" = callPackage ( - { - mkDerivation, - base, - hakyll, - latex-svg-image, - latex-svg-pandoc, - lrucache, - pandoc-types, - }: - mkDerivation { - pname = "latex-svg-hakyll"; - version = "0.2"; - sha256 = "0brpnsd96r5q01mdaamny74mwphhjyhnz1zjy620i13d2cswl1rw"; - libraryHaskellDepends = [ - base - hakyll - latex-svg-image - latex-svg-pandoc - lrucache - pandoc-types - ]; - description = "Use actual LaTeX to render formulae inside Hakyll pages"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "latex-svg-image" = callPackage ( - { - mkDerivation, - base, - base64-bytestring, - bytestring, - cryptohash-sha256, - deepseq, - directory, - filepath, - parsec, - process, - temporary, - transformers, - }: - mkDerivation { - pname = "latex-svg-image"; - version = "0.2"; - sha256 = "1vr66sk1g4g8rhm78ply1mfk0ybcmpg420z26nniw51zr79lvnvn"; - libraryHaskellDepends = [ - base - base64-bytestring - bytestring - cryptohash-sha256 - deepseq - directory - filepath - parsec - process - temporary - transformers - ]; - description = "A library for rendering LaTeX formulae as SVG using an actual LaTeX"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "latex-svg-pandoc" = callPackage ( - { - mkDerivation, - base, - bytestring, - directory, - filepath, - latex-svg-image, - pandoc-types, - text, - }: - mkDerivation { - pname = "latex-svg-pandoc"; - version = "0.2.1"; - sha256 = "12rwapjx4whsw4id4rijwcqksfblp0mnvf0xrvj6pf17pgg4qh52"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - bytestring - directory - filepath - latex-svg-image - pandoc-types - text - ]; - executableHaskellDepends = [ - base - latex-svg-image - pandoc-types - ]; - description = "Render LaTeX formulae in pandoc documents to images with an actual LaTeX"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "latex-svg-filter"; - } - ) { }; - "lathe" = callPackage ( { mkDerivation, @@ -410371,39 +236662,6 @@ self: { } ) { }; - "launchpad-control" = callPackage ( - { - mkDerivation, - array, - base, - containers, - hmidi, - mtl, - transformers, - }: - mkDerivation { - pname = "launchpad-control"; - version = "0.0.1.0"; - sha256 = "0lbrrm5wfi3vgmvba9rvbzq78idq6z98psjfh5scjp8hg0qbf8q2"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - array - base - containers - hmidi - mtl - transformers - ]; - executableHaskellDepends = [ base ]; - description = "High and low-level interface to the Novation Launchpad midi controller"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "launchpad-control-examples"; - broken = true; - } - ) { }; - "lawful" = callPackage ( { mkDerivation, base }: mkDerivation { @@ -410615,58 +236873,6 @@ self: { } ) { }; - "lawless-concurrent-machines" = callPackage ( - { - mkDerivation, - async, - base, - containers, - lifted-async, - machines, - monad-control, - semigroups, - tasty, - tasty-hunit, - time, - transformers, - transformers-base, - }: - mkDerivation { - pname = "lawless-concurrent-machines"; - version = "0.3.1"; - sha256 = "17y523yahblrd5zq7f5nvr93fg4bqr9aj0zi915l16ffv8hqvply"; - libraryHaskellDepends = [ - async - base - containers - lifted-async - machines - monad-control - semigroups - time - transformers - transformers-base - ]; - testHaskellDepends = [ - base - machines - tasty - tasty-hunit - time - transformers - ]; - benchmarkHaskellDepends = [ - base - machines - time - ]; - description = "Concurrent networked stream transducers"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "lawz" = callPackage ( { mkDerivation, base }: mkDerivation { @@ -410731,85 +236937,6 @@ self: { } ) { }; - "layered-state" = callPackage ( - { - mkDerivation, - base, - constraints, - criterion, - data-default, - deepseq, - either, - exceptions, - kan-extensions, - lens, - lens-utils, - monad-branch, - monoid, - mtl, - mtl-c, - primitive, - profunctors, - prologue, - timeit, - transformers, - typelevel, - }: - mkDerivation { - pname = "layered-state"; - version = "1.1.5"; - sha256 = "122z7jzhy65ksdkgn505gkjgn0j04gqq38q5k1d3xlg96x670chk"; - libraryHaskellDepends = [ - base - constraints - data-default - exceptions - lens - lens-utils - monad-branch - monoid - mtl - primitive - profunctors - prologue - transformers - typelevel - ]; - benchmarkHaskellDepends = [ - criterion - deepseq - either - kan-extensions - mtl-c - timeit - ]; - description = "Control structure similar to Control.Monad.State, allowing multiple nested states, distinguishable by provided phantom types."; - license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "layers" = callPackage ( - { - mkDerivation, - base, - transformers, - }: - mkDerivation { - pname = "layers"; - version = "0.1"; - sha256 = "1yn8swgxb908wslcnh04919m9rzy47dxgawns89zw5v1gbq3wmdf"; - libraryHaskellDepends = [ - base - transformers - ]; - description = "Modular type class machinery for monad transformer stacks"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "layers-game" = callPackage ( { mkDerivation, @@ -410851,105 +236978,6 @@ self: { } ) { }; - "layout" = callPackage ( - { - mkDerivation, - base, - convertible, - hinduce-missingh, - }: - mkDerivation { - pname = "layout"; - version = "0.0.0.2"; - sha256 = "126r47n5aaz3ksl7fwfc5lg5wniy46lscr1c3z7d2sdk10rhbql9"; - libraryHaskellDepends = [ - base - convertible - hinduce-missingh - ]; - description = "Turn values into pretty text or markup"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "layout-bootstrap" = callPackage ( - { - mkDerivation, - base, - blaze-html, - containers, - text, - }: - mkDerivation { - pname = "layout-bootstrap"; - version = "0.2.2"; - sha256 = "0rm0w5l4g865ais4rg3vdfx6fyzp1dginlhlabvqclbjwwzkiyqi"; - libraryHaskellDepends = [ - base - blaze-html - containers - text - ]; - description = "Template and widgets for Bootstrap2 to use with Text.Blaze.Html5"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "layout-rules" = callPackage ( - { - mkDerivation, - alex-tools, - base, - text, - }: - mkDerivation { - pname = "layout-rules"; - version = "0.1.0.2"; - sha256 = "1ddynm3jl7c4jakxk2lxy954a9245j2664an0kyh9inn51j17p9r"; - libraryHaskellDepends = [ - alex-tools - base - text - ]; - description = "A collection of different layout implementations"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "layouting" = callPackage ( - { - mkDerivation, - base, - container, - layered-state, - prologue, - terminal-text, - text, - }: - mkDerivation { - pname = "layouting"; - version = "1.1.4"; - sha256 = "0p50zg1xydvci313dh87g0asx292vbhbz5iaywcw9rapwxlg5zld"; - libraryHaskellDepends = [ - base - container - layered-state - prologue - terminal-text - text - ]; - description = "General layouting library. Currently supports layouting 2D areas and can be used as a backend for text pretty printing or automatic windows layouting managers."; - license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "lazify" = callPackage ( { mkDerivation, @@ -410978,27 +237006,6 @@ self: { } ) { }; - "lazy" = callPackage ( - { - mkDerivation, - base, - comonad, - }: - mkDerivation { - pname = "lazy"; - version = "0.1"; - sha256 = "02a9iw0ns12hszi5rim4x6pa15y3zycmbcmcwmsr6m31rzgz8ryp"; - libraryHaskellDepends = [ - base - comonad - ]; - description = "Explicit laziness for Haskell"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "lazy-async" = callPackage ( { mkDerivation, @@ -411136,81 +237143,6 @@ self: { } ) { }; - "lazy-hash" = callPackage ( - { - mkDerivation, - base, - constrained-categories, - hashable, - haskell-src-meta, - tagged, - template-haskell, - vector-space, - }: - mkDerivation { - pname = "lazy-hash"; - version = "0.1.0.0"; - sha256 = "1xa2c8gxk5l4njbs58zpq2ybdvjd4y214p71nfmfrzw0arwz49pa"; - revision = "3"; - editedCabalFile = "0l348ahsic2cd27haqgsbh35w1f1y92bf2jnb8hkvbwf04b7r4qw"; - libraryHaskellDepends = [ - base - constrained-categories - hashable - haskell-src-meta - tagged - template-haskell - vector-space - ]; - description = "Identifiers for not-yet-computed values"; - license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "lazy-hash-cache" = callPackage ( - { - mkDerivation, - base, - base16-bytestring, - binary, - bytestring, - data-default-class, - directory, - filepath, - hashable, - lazy-hash, - microlens, - microlens-th, - temporary, - }: - mkDerivation { - pname = "lazy-hash-cache"; - version = "0.1.0.0"; - sha256 = "1bdq2fbxpmlva1qbxbiznnjmz7yv7qzcr8wdgds0rdzwhjn97mp4"; - revision = "2"; - editedCabalFile = "1w1g6h01pjvrqk3r0qknn0v0xidfdnbwm6kqvxax89r83i29pkv5"; - libraryHaskellDepends = [ - base - base16-bytestring - binary - bytestring - data-default-class - directory - filepath - hashable - lazy-hash - microlens - microlens-th - temporary - ]; - description = "Storing computed values for re-use when the same program runs again"; - license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "lazy-io" = callPackage ( { mkDerivation, base }: mkDerivation { @@ -411350,65 +237282,6 @@ self: { } ) { }; - "lazyarray" = callPackage ( - { - mkDerivation, - array, - base, - }: - mkDerivation { - pname = "lazyarray"; - version = "0.1.3"; - sha256 = "0bc2n7x8fydmzc84yb5zbdaca1r4qwpk7zlvbgcycycr87fk7p7n"; - libraryHaskellDepends = [ - array - base - ]; - description = "Efficient implementation of lazy monolithic arrays (lazy in indexes)"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "lazyboy" = callPackage ( - { - mkDerivation, - aeson, - base, - hspec, - microstache, - text, - transformers, - }: - mkDerivation { - pname = "lazyboy"; - version = "0.2.2.0"; - sha256 = "1kmiilikq4z003ngy3sk8j3973g0wh1jx7mvla68q12pii34p9gp"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - aeson - base - hspec - microstache - text - transformers - ]; - testHaskellDepends = [ - aeson - base - hspec - microstache - text - transformers - ]; - description = "An EDSL for programming the Game Boy"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "lazyio" = callPackage ( { mkDerivation, @@ -411480,45 +237353,6 @@ self: { } ) { }; - "lazyset" = callPackage ( - { - mkDerivation, - base, - containers, - data-ordlist, - HUnit, - time, - timeit, - }: - mkDerivation { - pname = "lazyset"; - version = "0.1.0.0"; - sha256 = "1babbz2p5cj5l0map58mw4ck3ll5sfwdzf1077388x0ih78wqqly"; - libraryHaskellDepends = [ - base - containers - data-ordlist - ]; - testHaskellDepends = [ - base - containers - data-ordlist - HUnit - ]; - benchmarkHaskellDepends = [ - base - containers - data-ordlist - time - timeit - ]; - description = "Set and Map from lazy/infinite lists"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "lazysmallcheck" = callPackage ( { mkDerivation, base }: mkDerivation { @@ -411543,29 +237377,6 @@ self: { } ) { }; - "lbfgs" = callPackage ( - { - mkDerivation, - array, - base, - vector, - }: - mkDerivation { - pname = "lbfgs"; - version = "0.1"; - sha256 = "0f2kcy1npq2i1m9gxfhhkkn145v1gwph7ks321jx163h9kfjw0jx"; - libraryHaskellDepends = [ - array - base - vector - ]; - description = "L-BFGS optimization"; - license = "unknown"; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "lca" = callPackage ( { mkDerivation, base }: mkDerivation { @@ -411578,73 +237389,6 @@ self: { } ) { }; - "lcs" = callPackage ( - { - mkDerivation, - array, - base, - }: - mkDerivation { - pname = "lcs"; - version = "0.2"; - sha256 = "1w8z80vqb86zl6ap4nd87kpl91qms8310k1d8r6qrxg2skm6gnxl"; - libraryHaskellDepends = [ - array - base - ]; - description = "Find longest common sublist of two lists"; - license = "unknown"; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "ld-intervals" = callPackage ( - { mkDerivation, base }: - mkDerivation { - pname = "ld-intervals"; - version = "0.1.0.0"; - sha256 = "1mi94kdc61d4vhzvcr4gvzy3zl2wrd4i353gpmmaxp652rm9xm99"; - libraryHaskellDepends = [ base ]; - description = "Data structures for representing arbitrary intervals"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "lda" = callPackage ( - { - mkDerivation, - base, - containers, - ghc-prim, - mtl, - random-fu, - random-source, - rvar, - vector, - }: - mkDerivation { - pname = "lda"; - version = "0.0.2"; - sha256 = "125y7syfpwg6356h4rq34k45h115ywbz9yisvd741jf6aij23is2"; - libraryHaskellDepends = [ - base - containers - ghc-prim - mtl - random-fu - random-source - rvar - vector - ]; - description = "Online Latent Dirichlet Allocation"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "ldap-client" = callPackage ( { mkDerivation, @@ -411834,91 +237578,10 @@ self: { ]; description = "See README for synopsis"; license = lib.licenses.agpl3Plus; - hydraPlatforms = lib.platforms.none; mainProgram = "ldap-scim-bridge"; } ) { }; - "ldapply" = callPackage ( - { - mkDerivation, - base, - bytestring, - docopt, - interpolatedstring-perl6, - LDAP, - ldif, - unordered-containers, - }: - mkDerivation { - pname = "ldapply"; - version = "0.2.0"; - sha256 = "0qgpb22k9krdhwjydzyfhjf85crxc49ss7x74mrqj8ivkzg5hl28"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - bytestring - docopt - interpolatedstring-perl6 - LDAP - ldif - unordered-containers - ]; - description = "LDIF idempotent apply tool"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - mainProgram = "ldapply"; - } - ) { }; - - "ldif" = callPackage ( - { - mkDerivation, - base, - bytestring, - cmdargs, - containers, - directory, - filepath, - HUnit, - parsec, - rosezipper, - }: - mkDerivation { - pname = "ldif"; - version = "0.0.13"; - sha256 = "0mf0cvjzgimrqf80g6hg75azv18930g5mrvjjxw70116mdpp718a"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - bytestring - cmdargs - containers - directory - filepath - parsec - rosezipper - ]; - executableHaskellDepends = [ - base - bytestring - cmdargs - containers - filepath - ]; - testHaskellDepends = [ - base - HUnit - ]; - description = "The LDAP Data Interchange Format (LDIF) tools"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "ldtk-types" = callPackage ( { mkDerivation, @@ -411945,100 +237608,6 @@ self: { } ) { }; - "leaf" = callPackage ( - { - mkDerivation, - base, - blaze-html, - directory, - filepath, - pandoc, - split, - }: - mkDerivation { - pname = "leaf"; - version = "1.0.1.1"; - sha256 = "1czk4d2xa2g7djdz669h1q6ciflzwxm4n05m9jv3d3z7r6fcch6z"; - isLibrary = false; - isExecutable = true; - enableSeparateDataOutput = true; - executableHaskellDepends = [ - base - blaze-html - directory - filepath - pandoc - split - ]; - description = "A simple portfolio generator"; - license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - mainProgram = "leaf"; - broken = true; - } - ) { }; - - "leaky" = callPackage ( - { - mkDerivation, - base, - cpphs, - deepseq-bounded, - deepseq-generics, - generics-sop, - random, - seqaid, - template-haskell, - }: - mkDerivation { - pname = "leaky"; - version = "0.4.0.0"; - sha256 = "17cs1mszcfibfkcbwxdcn4pi3n6b84a23szv548vqxwypyrzlbf0"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - cpphs - deepseq-bounded - deepseq-generics - generics-sop - random - seqaid - template-haskell - ]; - description = "Robust space leak, and its strictification"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "leaky"; - } - ) { }; - - "lean" = callPackage ( - { - mkDerivation, - base, - base-unicode-symbols, - text-utf8, - transformers, - util, - }: - mkDerivation { - pname = "lean"; - version = "0.0.0.1"; - sha256 = "1i1xkaipjaczp32hn5g5g4x9a3ml98hamb4qaycy7rlcfbildiga"; - libraryHaskellDepends = [ - base - base-unicode-symbols - text-utf8 - transformers - util - ]; - description = "Bonds to Lean theorem prover"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "lean-peano" = callPackage ( { mkDerivation, @@ -412251,36 +237820,6 @@ self: { } ) { }; - "leapseconds" = callPackage ( - { - mkDerivation, - base, - tasty, - tasty-hunit, - time, - }: - mkDerivation { - pname = "leapseconds"; - version = "1.0"; - sha256 = "07nivyl6p0xn409852fw8w2r46qnjqgmrr38pk30lq8byv55m6y6"; - revision = "1"; - editedCabalFile = "1n3r1c58626nzqmjb068kz3ckb3xsn9v62i70yvzk2g6j29fpz2g"; - libraryHaskellDepends = [ - base - time - ]; - testHaskellDepends = [ - base - tasty - tasty-hunit - time - ]; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "leapseconds-announced" = callPackage ( { mkDerivation, @@ -412290,40 +237829,19 @@ self: { }: mkDerivation { pname = "leapseconds-announced"; - version = "2017.1.0.1"; - sha256 = "1mm8j994106gyx9p3widkydczn8wcj79m2kiymg9fjkhmxyb4fyd"; - libraryHaskellDepends = [ - base - time - ]; - testHaskellDepends = [ - base - QuickCheck - time - ]; - description = "Leap seconds announced at library release time"; - license = lib.licenses.bsd3; - } - ) { }; - - "learn" = callPackage ( - { - mkDerivation, - base, - containers, - }: - mkDerivation { - pname = "learn"; - version = "0.1.1"; - sha256 = "1i2rn4pmgbqxj0xsjqp5rh50lv6zgnblbjgwmqh5cxb3dsillvpj"; + version = "2017.1.0.1"; + sha256 = "1mm8j994106gyx9p3widkydczn8wcj79m2kiymg9fjkhmxyb4fyd"; libraryHaskellDepends = [ base - containers + time + ]; + testHaskellDepends = [ + base + QuickCheck + time ]; - description = "Learning Algorithms"; + description = "Leap seconds announced at library release time"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; } ) { }; @@ -412366,67 +237884,6 @@ self: { } ) { }; - "learn-physics-examples" = callPackage ( - { - mkDerivation, - base, - gloss, - gnuplot, - learn-physics, - not-gloss, - spatial-math, - }: - mkDerivation { - pname = "learn-physics-examples"; - version = "0.5.0.1"; - sha256 = "0fwmc7q59srasciijd7ws1bqay4cc7jhi1469my67kchg0n45q3k"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - gloss - gnuplot - learn-physics - not-gloss - spatial-math - ]; - description = "examples for learn-physics"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "learning-hmm" = callPackage ( - { - mkDerivation, - base, - containers, - deepseq, - hmatrix, - random-fu, - random-source, - vector, - }: - mkDerivation { - pname = "learning-hmm"; - version = "0.3.2.2"; - sha256 = "1a2a97cflnlalcqr54ssbmy047i6y1xgswssy64hsr36g2lhywrs"; - libraryHaskellDepends = [ - base - containers - deepseq - hmatrix - random-fu - random-source - vector - ]; - description = "Yet another library for hidden Markov models"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "leb128" = callPackage ( { mkDerivation, @@ -412562,31 +238019,6 @@ self: { } ) { }; - "leetify" = callPackage ( - { - mkDerivation, - base, - containers, - }: - mkDerivation { - pname = "leetify"; - version = "0.1.0.1"; - sha256 = "106pr7rlma67dqqyfhknh9fb6r37lsj00qjx1dq3xx7yxp368nvr"; - isLibrary = false; - isExecutable = true; - enableSeparateDataOutput = true; - executableHaskellDepends = [ - base - containers - ]; - description = "Leetify text"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "leetify"; - broken = true; - } - ) { }; - "left4deadrl" = callPackage ( { mkDerivation, @@ -412613,249 +238045,6 @@ self: { } ) { }; - "legion" = callPackage ( - { - mkDerivation, - aeson, - base, - binary, - binary-conduit, - bytestring, - canteven-http, - conduit, - conduit-extra, - containers, - data-default-class, - data-dword, - exceptions, - http-types, - monad-logger, - network, - Ranged-sets, - scotty, - scotty-resource, - stm, - text, - time, - transformers, - unix, - uuid, - wai, - wai-extra, - warp, - }: - mkDerivation { - pname = "legion"; - version = "0.10.0.0"; - sha256 = "1pykk4bs5q3mgsj7d5x3lfb0agcrqc3ax745x1vnj9av9wrf2jbg"; - libraryHaskellDepends = [ - aeson - base - binary - binary-conduit - bytestring - canteven-http - conduit - conduit-extra - containers - data-default-class - data-dword - exceptions - http-types - monad-logger - network - Ranged-sets - scotty - scotty-resource - stm - text - time - transformers - unix - uuid - wai - wai-extra - warp - ]; - description = "Distributed, stateful, homogeneous microservice framework"; - license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "legion-discovery" = callPackage ( - { - mkDerivation, - aeson, - attoparsec, - base, - binary, - bytestring, - Cabal, - canteven-http, - canteven-log, - conduit, - containers, - data-default-class, - ekg, - graphviz, - http-api-data, - http-grammar, - legion, - legion-extra, - monad-logger, - mtl, - servant-server, - SHA, - text, - time, - wai, - wai-extra, - warp, - }: - mkDerivation { - pname = "legion-discovery"; - version = "1.0.0.1"; - sha256 = "1s87m65c891jp78rzx14bx4fk3qz3iafqc8phxjv839kih2gpsgb"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson - attoparsec - base - binary - bytestring - Cabal - canteven-http - canteven-log - conduit - containers - data-default-class - ekg - graphviz - http-api-data - http-grammar - legion - legion-extra - monad-logger - mtl - servant-server - SHA - text - time - wai - wai-extra - warp - ]; - executableHaskellDepends = [ base ]; - testHaskellDepends = [ base ]; - description = "A discovery service based on Legion"; - license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; - mainProgram = "legion-discovery"; - } - ) { }; - - "legion-discovery-client" = callPackage ( - { - mkDerivation, - aeson, - base, - bytestring, - Cabal, - containers, - http-client, - http-types, - load-balancing, - monad-logger, - resourcet, - safe-exceptions, - text, - text-show, - transformers, - }: - mkDerivation { - pname = "legion-discovery-client"; - version = "0.2.0.1"; - sha256 = "0wvm0y5gpriq17jvvczij83sh8cwkijv7w3ayx6yqkyjhwwlljdi"; - libraryHaskellDepends = [ - aeson - base - bytestring - Cabal - containers - http-client - http-types - load-balancing - monad-logger - resourcet - safe-exceptions - text - text-show - transformers - ]; - testHaskellDepends = [ base ]; - description = "Client library for communicating with legion-discovery"; - license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "legion-extra" = callPackage ( - { - mkDerivation, - aeson, - attoparsec, - base, - binary, - bytestring, - canteven-log, - conduit, - containers, - data-default-class, - data-dword, - directory, - legion, - network, - safe, - split, - stm, - transformers, - yaml, - }: - mkDerivation { - pname = "legion-extra"; - version = "0.1.2.2"; - sha256 = "1p6wyggfi6dihw2lq53kyz8x4shriwnxm6avl77f5lmskr0grmig"; - revision = "1"; - editedCabalFile = "1pzqm1n2rnnv5i5fj5s6n79hyzp8sd2xid1h1i4jpwy6chnj060v"; - libraryHaskellDepends = [ - aeson - attoparsec - base - binary - bytestring - canteven-log - conduit - containers - data-default-class - data-dword - directory - legion - network - safe - split - stm - transformers - yaml - ]; - testHaskellDepends = [ base ]; - description = "Extra non-essential utilities for building legion applications"; - license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "leksah" = callPackage ( { mkDerivation, @@ -413003,180 +238192,6 @@ self: { } ) { inherit (pkgs) gtk3; }; - "leksah-server" = callPackage ( - { - mkDerivation, - aeson, - attoparsec, - base, - base-compat, - binary, - binary-shared, - bytestring, - Cabal, - conduit, - conduit-extra, - containers, - deepseq, - directory, - doctest, - executable-path, - filepath, - ghc, - ghc-boot, - haddock-api, - haddock-library, - hslogger, - HTTP, - HUnit, - ltk, - network, - network-uri, - parsec, - pretty, - process, - resourcet, - strict, - text, - time, - transformers, - unix, - }: - mkDerivation { - pname = "leksah-server"; - version = "0.16.3.0"; - sha256 = "0cjg4r6yjwfzr2xn90gvrw2x93mlpz6z2i1i4djbnilknl9s53vp"; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - aeson - attoparsec - base - base-compat - binary - binary-shared - bytestring - Cabal - conduit - conduit-extra - containers - deepseq - directory - executable-path - filepath - ghc - ghc-boot - haddock-api - haddock-library - hslogger - HTTP - ltk - network - network-uri - parsec - pretty - process - resourcet - strict - text - time - transformers - unix - ]; - executableHaskellDepends = [ - attoparsec - base - base-compat - binary - binary-shared - bytestring - Cabal - conduit - conduit-extra - containers - deepseq - directory - executable-path - filepath - ghc - ghc-boot - haddock-api - haddock-library - hslogger - HTTP - ltk - network - network-uri - parsec - pretty - process - resourcet - strict - text - time - transformers - unix - ]; - testHaskellDepends = [ - base - conduit - conduit-extra - directory - doctest - filepath - hslogger - HUnit - process - resourcet - text - transformers - ]; - description = "Metadata collection for leksah"; - license = "GPL"; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "lendingclub" = callPackage ( - { - mkDerivation, - aeson, - base, - blaze-builder, - bytestring, - HsOpenSSL, - http-streams, - io-streams, - mtl, - scientific, - text, - vector, - }: - mkDerivation { - pname = "lendingclub"; - version = "0.1.1"; - sha256 = "1r40qm7f45vgzdxnzlhpqhsi81rbwa2nss3gf1d5mqz32dscjwfx"; - libraryHaskellDepends = [ - aeson - base - blaze-builder - bytestring - HsOpenSSL - http-streams - io-streams - mtl - scientific - text - vector - ]; - description = "Bindings for the LendingClub marketplace API"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "lens" = callPackage ( { mkDerivation, @@ -413294,29 +238309,6 @@ self: { } ) { }; - "lens-accelerate" = callPackage ( - { - mkDerivation, - accelerate, - base, - lens, - }: - mkDerivation { - pname = "lens-accelerate"; - version = "0.3.0.0"; - sha256 = "1sk3iy5qv24mifx0gwd5z714lf3y3s4zpbff09mqk42whk2sdd0y"; - libraryHaskellDepends = [ - accelerate - base - lens - ]; - description = "Instances to mix lens with Accelerate"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "lens-action" = callPackage ( { mkDerivation, @@ -413425,29 +238417,6 @@ self: { } ) { }; - "lens-datetime" = callPackage ( - { - mkDerivation, - base, - lens, - time, - }: - mkDerivation { - pname = "lens-datetime"; - version = "0.3"; - sha256 = "1m6cns38xggw8kcc9h0mf4q024cvc8njm7n33f8gi7hwyxxqs7xv"; - libraryHaskellDepends = [ - base - lens - time - ]; - description = "Lenses for Data.Time.* types"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "lens-errors" = callPackage ( { mkDerivation, @@ -413608,31 +238577,6 @@ self: { } ) { }; - "lens-labels" = callPackage ( - { - mkDerivation, - base, - ghc-prim, - profunctors, - tagged, - }: - mkDerivation { - pname = "lens-labels"; - version = "0.3.0.1"; - sha256 = "0zz2w01knsj1zn9vj8g3dbhvh0sgnibr5wm9dn91qv0bmps745z7"; - libraryHaskellDepends = [ - base - ghc-prim - profunctors - tagged - ]; - description = "Integration of lenses with OverloadedLabels"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "lens-misc" = callPackage ( { mkDerivation, @@ -413677,51 +238621,6 @@ self: { } ) { }; - "lens-prelude" = callPackage ( - { - mkDerivation, - array, - base, - bytestring, - containers, - contravariant, - either, - hashable, - lens, - mtl, - text, - time, - transformers, - unordered-containers, - vector, - }: - mkDerivation { - pname = "lens-prelude"; - version = "0.2"; - sha256 = "0a8z8yqr0cmiwjf1q5zcrnkdi407cwxr58ip6h5xqd3gjimv74dp"; - libraryHaskellDepends = [ - array - base - bytestring - containers - contravariant - either - hashable - lens - mtl - text - time - transformers - unordered-containers - vector - ]; - description = "Alternate prelude that exports lens combinators"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "lens-process" = callPackage ( { mkDerivation, @@ -413865,35 +238764,6 @@ self: { } ) { }; - "lens-simple" = callPackage ( - { - mkDerivation, - base, - lens-family, - lens-family-core, - lens-family-th, - mtl, - transformers, - }: - mkDerivation { - pname = "lens-simple"; - version = "0.1.0.9"; - sha256 = "0al3bfhrq6lq43s6k0c03vcf126i1naajhd64shgi5s10yw9jgb1"; - libraryHaskellDepends = [ - base - lens-family - lens-family-core - lens-family-th - mtl - transformers - ]; - description = "simplified import of elementary lens-family combinators"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "lens-sop" = callPackage ( { mkDerivation, @@ -413943,86 +238813,6 @@ self: { } ) { }; - "lens-text-encoding" = callPackage ( - { - mkDerivation, - base, - bytestring, - lens, - text, - }: - mkDerivation { - pname = "lens-text-encoding"; - version = "0.1.0.0"; - sha256 = "1yxab87ci6gl0c5gsdd8pb780ai8lmxxa3fxkpl1shv1pw124fsv"; - libraryHaskellDepends = [ - base - bytestring - lens - text - ]; - description = "Isomorphisms and prisms for text <=> bytestring conversions"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "lens-th-rewrite" = callPackage ( - { - mkDerivation, - base, - ghc, - ghc-exactprint, - lens, - }: - mkDerivation { - pname = "lens-th-rewrite"; - version = "0.3.0.0"; - sha256 = "077lwxn3a2i2y1586dbyipxq8z5a6w1gzv66wvjlxamjv4xwl0kg"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - ghc - lens - ]; - executableHaskellDepends = [ - base - ghc - ghc-exactprint - lens - ]; - description = "Rewrites Template Haskell splices using the API"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "lens-time" = callPackage ( - { - mkDerivation, - base, - lens, - time, - }: - mkDerivation { - pname = "lens-time"; - version = "0.1.0.0"; - sha256 = "1hrp9d6qja7yc3zj68w3hylgflyfsvh79m8daw9030yjdxm525za"; - libraryHaskellDepends = [ - base - lens - time - ]; - description = "lens for Data.Time"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "lens-toml-parser" = callPackage ( { mkDerivation, @@ -414086,59 +238876,6 @@ self: { } ) { }; - "lens-typelevel" = callPackage ( - { - mkDerivation, - base, - singletons, - }: - mkDerivation { - pname = "lens-typelevel"; - version = "0.1.1.0"; - sha256 = "0lsdp6rgacsa13fppa2dfn2nz8cdrvj5clmlshzrv1h0423hfgbp"; - libraryHaskellDepends = [ - base - singletons - ]; - description = "Type-level lenses using singletons"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "lens-utils" = callPackage ( - { - mkDerivation, - aeson, - base, - containers, - data-default, - lens, - monoid, - split, - template-haskell, - }: - mkDerivation { - pname = "lens-utils"; - version = "1.4.6"; - sha256 = "1gz2mf33lszk33yszzcsbjhch1jxszg1h9cin49wwbgrb0imz7ds"; - libraryHaskellDepends = [ - aeson - base - containers - data-default - lens - monoid - split - template-haskell - ]; - description = "Collection of missing lens utilities"; - license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "lens-witherable" = callPackage ( { mkDerivation, @@ -414168,36 +238905,6 @@ self: { } ) { }; - "lens-xml" = callPackage ( - { - mkDerivation, - base, - lens, - xml, - }: - mkDerivation { - pname = "lens-xml"; - version = "0.1.0.0"; - sha256 = "1a0vg84s4lyibwx31k3xyx624mq2wna9bajqs67m4mlsayk75vr1"; - revision = "1"; - editedCabalFile = "07dj8g29p5pg57pn9l2l1960vs1ikqr6z6hc47kgw8hf4y78i6sy"; - libraryHaskellDepends = [ - base - lens - xml - ]; - testHaskellDepends = [ - base - lens - xml - ]; - description = "Lenses for the xml package"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "lenses" = callPackage ( { mkDerivation, @@ -414223,32 +238930,6 @@ self: { } ) { }; - "lensref" = callPackage ( - { - mkDerivation, - base, - monad-control, - mtl, - transformers, - }: - mkDerivation { - pname = "lensref"; - version = "0.2"; - sha256 = "0dj43hqrv198dgfnngq4l8kwnksqcm6nydcr1z1a5gqz5s99m4bn"; - libraryHaskellDepends = [ - base - monad-control - mtl - transformers - ]; - testHaskellDepends = [ base ]; - description = "References which can be joined and on which lenses can be applied"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "lentil" = callPackage ( { mkDerivation, @@ -414330,89 +239011,6 @@ self: { } ) { }; - "lenz" = callPackage ( - { - mkDerivation, - base, - base-unicode-symbols, - hs-functors, - transformers, - }: - mkDerivation { - pname = "lenz"; - version = "0.4.2.0"; - sha256 = "13yz9lxxll928knxjgvdxdbnv911pxkd9d5jly1hdnhyymahv6lf"; - revision = "1"; - editedCabalFile = "0mzvvddl7wwa4z3rxwdwlaazv0wbg7lfynsab7lya6dzkw4nl7m4"; - libraryHaskellDepends = [ - base - base-unicode-symbols - hs-functors - transformers - ]; - description = "Van Laarhoven lenses"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "lenz-mtl" = callPackage ( - { - mkDerivation, - base, - base-unicode-symbols, - lenz, - mtl, - transformers, - }: - mkDerivation { - pname = "lenz-mtl"; - version = "0.1"; - sha256 = "0ysl87ym7n5pgdrj5ff7840rgjv8yvybnir2xbmzb4vigqs2kp74"; - revision = "1"; - editedCabalFile = "0jrr8b3awcn1ly1ny7lbwvxi205cm23zd6q4fd6bvbxi9danc0nr"; - libraryHaskellDepends = [ - base - base-unicode-symbols - lenz - mtl - transformers - ]; - description = "mtl operations with Van Laarhoven lenses"; - license = "unknown"; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "lenz-template" = callPackage ( - { - mkDerivation, - base, - base-unicode-symbols, - containers, - lenz, - template-haskell, - }: - mkDerivation { - pname = "lenz-template"; - version = "0.2.0.0"; - sha256 = "0g073wfh8522hvmy80dp8an5jr6qjnkfj3119ms3sir7dkfzljqn"; - revision = "6"; - editedCabalFile = "12n7y1b47rgi942d1hnsiib4smgxd84qp4mbsb1z4rfxlf4wd3lh"; - libraryHaskellDepends = [ - base - base-unicode-symbols - containers - lenz - template-haskell - ]; - description = "Van Laarhoven lens templates"; - license = "unknown"; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "less-arbitrary" = callPackage ( { mkDerivation, @@ -414494,27 +239092,6 @@ self: { } ) { }; - "level-monad" = callPackage ( - { - mkDerivation, - base, - fmlist, - }: - mkDerivation { - pname = "level-monad"; - version = "0.4.1"; - sha256 = "1l5jyhpvbcj4fmyggp8bjy4gx9igcydply3yb1s23fxdcz0b638a"; - libraryHaskellDepends = [ - base - fmlist - ]; - description = "Non-Determinism Monad for Level-Wise Search"; - license = lib.licenses.publicDomain; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "leveldb-haskell" = callPackage ( { mkDerivation, @@ -414656,103 +239233,6 @@ self: { } ) { }; - "levmar" = callPackage ( - { - mkDerivation, - base, - bindings-levmar, - hmatrix, - vector, - }: - mkDerivation { - pname = "levmar"; - version = "1.2.1.8"; - sha256 = "0v2mfqw4irzpfq100i1rm5djfqzvxilq9i7pcslsb92jkcv2zgbc"; - libraryHaskellDepends = [ - base - bindings-levmar - hmatrix - vector - ]; - description = "An implementation of the Levenberg-Marquardt algorithm"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "levmar-chart" = callPackage ( - { - mkDerivation, - base, - Chart, - colour, - data-accessor, - levmar, - }: - mkDerivation { - pname = "levmar-chart"; - version = "0.2"; - sha256 = "0ws9d2ipk67ir4b31rd7vakyglhrr290k400zpb24ny3vvdgcwaj"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - Chart - colour - data-accessor - levmar - ]; - description = "Plots the results of the Levenberg-Marquardt algorithm in a chart"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "lex-applicative" = callPackage ( - { - mkDerivation, - base, - dlist, - gauge, - hs-functors, - parser-combinators, - regex-applicative, - text, - ucd, - unicode-transforms, - util, - }: - mkDerivation { - pname = "lex-applicative"; - version = "0.0.0.1"; - sha256 = "0dc48xgvky480a1rl9zfyz3ychjlxnyssdmpbzkb795kdkmny2nz"; - libraryHaskellDepends = [ - base - dlist - hs-functors - parser-combinators - regex-applicative - text - ucd - unicode-transforms - util - ]; - testHaskellDepends = [ - base - util - ]; - benchmarkHaskellDepends = [ - base - gauge - util - ]; - description = "See README for more info"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "lexer-applicative" = callPackage ( { mkDerivation, @@ -414785,243 +239265,6 @@ self: { } ) { }; - "lfst" = callPackage ( - { - mkDerivation, - base, - containers, - doctest, - lattices, - QuickCheck, - }: - mkDerivation { - pname = "lfst"; - version = "1.0.2"; - sha256 = "1x7in410k930fc3qc8ng1i04ggxy75xw30r710wlk0rra9xidxfs"; - libraryHaskellDepends = [ - base - containers - doctest - lattices - ]; - testHaskellDepends = [ - base - doctest - QuickCheck - ]; - description = "L-Fuzzy Set Theory implementation in Haskell"; - license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "lgtk" = callPackage ( - { - mkDerivation, - array, - base, - cairo, - colour, - containers, - diagrams-cairo, - diagrams-lib, - directory, - filepath, - fsnotify, - GLFW-b, - groups, - lens, - lensref, - monad-control, - mtl, - OpenGLRaw, - operational, - random, - random-shuffle, - semigroups, - system-filepath, - transformers, - vector, - }: - mkDerivation { - pname = "lgtk"; - version = "0.8.0.4"; - sha256 = "1bph09i8znzv3c8sqbg2xbrdlpvlnx52psgyybwn0imqip81lmv5"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - cairo - colour - containers - diagrams-cairo - diagrams-lib - directory - filepath - fsnotify - GLFW-b - groups - lens - lensref - monad-control - mtl - OpenGLRaw - operational - semigroups - system-filepath - transformers - vector - ]; - executableHaskellDepends = [ - array - base - containers - diagrams-lib - lens - mtl - random - random-shuffle - vector - ]; - description = "Lens GUI Toolkit"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "lgtkdemo"; - } - ) { }; - - "lha" = callPackage ( - { mkDerivation, haskell2010 }: - mkDerivation { - pname = "lha"; - version = "0.1.2"; - sha256 = "0a5h1d0sdnpy209k4zkmcrrxl4b000226hif098bqs9pngpbgki1"; - libraryHaskellDepends = [ haskell2010 ]; - description = "Data structures for the Les Houches Accord"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "lhae" = callPackage ( - { - mkDerivation, - array, - base, - containers, - directory, - filepath, - hgettext, - mtl, - parsec, - process, - setlocale, - utf8-string, - wx, - wxcore, - }: - mkDerivation { - pname = "lhae"; - version = "0.0.3"; - sha256 = "120g8x0wbd5va2gqvkr5mx643g8r4hrfyqa68nm3apvfc9z7f8g3"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - array - base - containers - directory - filepath - hgettext - mtl - parsec - process - setlocale - utf8-string - wx - wxcore - ]; - description = "Simple spreadsheet program"; - license = "GPL"; - hydraPlatforms = lib.platforms.none; - mainProgram = "lhae"; - } - ) { }; - - "lhc" = callPackage ( - { mkDerivation }: - mkDerivation { - pname = "lhc"; - version = "0.10"; - sha256 = "1x50k6lx9p36qxl0qn9zfyqlkgsq3wdzvcv7l6sn920hg5scvcr3"; - isLibrary = false; - isExecutable = true; - enableSeparateDataOutput = true; - description = "LHC Haskell Compiler"; - license = lib.licenses.publicDomain; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "lhe" = callPackage ( - { - mkDerivation, - bytestring, - haskell2010, - HaXml, - lha, - }: - mkDerivation { - pname = "lhe"; - version = "0.5"; - sha256 = "08725r5i71ni9ip4qbc5fr111j256rsii936yvxbd7kbbw4ap2a9"; - libraryHaskellDepends = [ - bytestring - haskell2010 - HaXml - lha - ]; - description = "Parser and writer for Les-Houches event files"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "lhs2TeX-hl" = callPackage ( - { - mkDerivation, - base, - cmdargs, - filepath, - haskell-src-exts, - syb, - uu-parsinglib, - }: - mkDerivation { - pname = "lhs2TeX-hl"; - version = "0.1.4.5"; - sha256 = "1mm6ikiv6zj025yh5abq3f8mqkw9302mfzd01xcihbh74bsdpi9l"; - isLibrary = false; - isExecutable = true; - enableSeparateDataOutput = true; - executableHaskellDepends = [ - base - cmdargs - filepath - haskell-src-exts - syb - uu-parsinglib - ]; - description = "Literate highlighter preprocessor for lhs2tex"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - mainProgram = "lhs2TeX-hl"; - broken = true; - } - ) { }; - "lhs2html" = callPackage ( { mkDerivation, @@ -415088,36 +239331,6 @@ self: { } ) { }; - "lhslatex" = callPackage ( - { - mkDerivation, - base, - directory, - filepath, - process, - regex-posix, - }: - mkDerivation { - pname = "lhslatex"; - version = "0.1.0.0"; - sha256 = "0kgmx160i1rylgzh23qlg8ds0sq64yk1i3rah8kmgwabpnvds7f7"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - directory - filepath - process - regex-posix - ]; - description = "Tool for using pdflatex with .lhs files"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "lhslatex"; - broken = true; - } - ) { }; - "libBF" = callPackage ( { mkDerivation, @@ -415146,40 +239359,6 @@ self: { } ) { }; - "libGenI" = callPackage ( - { - mkDerivation, - base, - binary, - containers, - HUnit, - mtl, - parsec, - process, - QuickCheck, - }: - mkDerivation { - pname = "libGenI"; - version = "0.16.1"; - sha256 = "1n37pccmx0466425zcbdfpgivsrnqzwsm0nwcjv8lkg8jxjxrwmz"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base - binary - containers - HUnit - mtl - parsec - process - QuickCheck - ]; - description = "A natural language generator (specifically, an FB-LTAG surface realiser)"; - license = "GPL"; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "libarchive" = callPackage ( { mkDerivation, @@ -415283,142 +239462,6 @@ self: { } ) { archive = null; }; - "libconfig" = callPackage ( - { - mkDerivation, - base, - binary, - c2hs, - cereal, - cereal-text, - deepseq, - doctest, - doctest-prop, - hashable, - lens, - libconfig, - profunctors, - text, - text-binary, - transformers, - transformers-compat, - }: - mkDerivation { - pname = "libconfig"; - version = "0.3.0.0"; - sha256 = "152rvfyc6y9waxic9fw4hfb7w5qfcrr23hdv9jlvksg9yw8mnq12"; - libraryHaskellDepends = [ - base - binary - cereal - cereal-text - deepseq - hashable - profunctors - text - text-binary - transformers - transformers-compat - ]; - librarySystemDepends = [ libconfig ]; - libraryToolDepends = [ c2hs ]; - testHaskellDepends = [ - base - doctest - doctest-prop - lens - ]; - description = "Haskell bindings to libconfig"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { inherit (pkgs) libconfig; }; - - "libcspm" = callPackage ( - { - mkDerivation, - array, - base, - bytestring, - containers, - deepseq, - directory, - filepath, - graph-wrapper, - hashable, - hashtables, - mtl, - pretty, - test-framework, - text, - value-supply, - }: - mkDerivation { - pname = "libcspm"; - version = "1.0.0"; - sha256 = "1v8w8i871a0fjyjqb8hr4yk9wli5v7djfpyjgg14rjb26v6yq79v"; - libraryHaskellDepends = [ - array - base - bytestring - containers - deepseq - directory - filepath - graph-wrapper - hashable - hashtables - mtl - pretty - text - value-supply - ]; - testHaskellDepends = [ - base - directory - filepath - mtl - test-framework - ]; - description = "A library providing a parser, type checker and evaluator for CSPM"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "libexpect" = - callPackage - ( - { - mkDerivation, - base, - expect, - tcl, - unix, - }: - mkDerivation { - pname = "libexpect"; - version = "0.3.2"; - sha256 = "0xpsc9a16biqg4z9b9wk9wqz6ypshw99xrksnxi8nlh3qn98lrsc"; - libraryHaskellDepends = [ - base - unix - ]; - librarySystemDepends = [ - expect - tcl - ]; - description = "Library for interacting with console applications via pseudoterminals"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) - { - inherit (pkgs) expect; - inherit (pkgs) tcl; - }; - "libffi" = callPackage ( { mkDerivation, @@ -415517,159 +239560,6 @@ self: { } ) { inherit (pkgs) fuse3; }; - "libgit" = callPackage ( - { - mkDerivation, - base, - mtl, - process, - }: - mkDerivation { - pname = "libgit"; - version = "0.3.1"; - sha256 = "08km9y2wqz426c5c6r49ar5snl8ss1w7d55yqivksdkwk3fn0k0x"; - libraryHaskellDepends = [ - base - mtl - process - ]; - description = "Simple Git Wrapper"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "libgraph" = callPackage ( - { - mkDerivation, - array, - base, - containers, - monads-tf, - process, - union-find, - }: - mkDerivation { - pname = "libgraph"; - version = "1.14"; - sha256 = "0grzimgy946mnwggmlc3sja567v2s21ymcwzlwf110k11pjqp5xp"; - revision = "1"; - editedCabalFile = "12xyrvvyh73b93k74lj55zwaygsvd93p4bm51kcd54m0pv0lclbq"; - libraryHaskellDepends = [ - array - base - containers - monads-tf - process - union-find - ]; - description = "Store and manipulate data in a graph"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "libhbb" = callPackage ( - { - mkDerivation, - aeson, - base, - bytestring, - directory, - filepath, - ghc, - ghc-paths, - hspec, - mtl, - process, - syb, - text, - time, - unordered-containers, - }: - mkDerivation { - pname = "libhbb"; - version = "0.4.1.0"; - sha256 = "17wycfnp1f288fxq3vd9c206gcard3n59s0a0myy0hkl6xy281s8"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson - base - bytestring - directory - filepath - ghc - ghc-paths - mtl - process - syb - text - time - unordered-containers - ]; - executableHaskellDepends = [ - base - bytestring - directory - ]; - testHaskellDepends = [ - base - bytestring - ghc - ghc-paths - hspec - mtl - syb - ]; - description = "Backend for text editors to provide better Haskell editing support"; - license = lib.licenses.lgpl21Only; - hydraPlatforms = lib.platforms.none; - mainProgram = "libhbb-cli"; - broken = true; - } - ) { }; - - "libinfluxdb" = callPackage ( - { - mkDerivation, - base, - bytestring, - clock, - containers, - http-client, - http-client-tls, - http-types, - resource-pool, - stm, - text, - }: - mkDerivation { - pname = "libinfluxdb"; - version = "0.0.4"; - sha256 = "0gzgcczw1jz0cns9x9na8rnyrapwml2ih9x0dv28pqf9fk1bpd95"; - revision = "1"; - editedCabalFile = "17ddlql04hgah7pr0zi8zvpza17ig7a0m27wr2c47gdzy7k0nr2v"; - libraryHaskellDepends = [ - base - bytestring - clock - containers - http-client - http-client-tls - http-types - resource-pool - stm - text - ]; - description = "libinfluxdb"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "libiserv" = callPackage ( { mkDerivation, @@ -415891,232 +239781,6 @@ self: { } ) { }; - "liblastfm" = callPackage ( - { - mkDerivation, - aeson, - base, - bytestring, - cereal, - containers, - cryptonite, - hspec, - hspec-expectations-lens, - http-client, - http-client-tls, - lens, - lens-aeson, - network-uri, - profunctors, - semigroups, - text, - transformers, - xml-conduit, - xml-html-conduit-lens, - }: - mkDerivation { - pname = "liblastfm"; - version = "0.7.0"; - sha256 = "1ls7zvg14mllih9aj8by739mkvlv80i0aa3z224ij4d7hp3dyd0g"; - libraryHaskellDepends = [ - aeson - base - bytestring - cereal - containers - cryptonite - http-client - http-client-tls - network-uri - profunctors - semigroups - text - transformers - xml-conduit - ]; - testHaskellDepends = [ - aeson - base - bytestring - cereal - containers - cryptonite - hspec - hspec-expectations-lens - http-client - http-client-tls - lens - lens-aeson - network-uri - profunctors - text - transformers - xml-conduit - xml-html-conduit-lens - ]; - description = "Lastfm API interface"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "liblawless" = callPackage ( - { - mkDerivation, - aeson, - base, - base-unicode-symbols, - binary, - boomerang, - bytestring, - containers, - containers-unicode-symbols, - contravariant, - data-textual, - dns, - exceptions, - filepath, - hjsonschema, - lawless-concurrent-machines, - lens, - lifted-async, - lifted-base, - machines, - managed, - monad-control, - mtl, - network, - network-ip, - parsers, - pathtype, - protolude, - QuickCheck, - random, - semigroups, - stm, - stm-chans, - stm-containers, - temporary, - test-framework, - test-framework-quickcheck2, - test-framework-th, - text, - text-printer, - time, - transformers, - transformers-base, - zippers, - }: - mkDerivation { - pname = "liblawless"; - version = "0.26.0"; - sha256 = "0izkk1rfiny4fnjazbpq04wzhcjgfwsr9fs10lpn9ifp4ckahynj"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - aeson - base - base-unicode-symbols - binary - boomerang - bytestring - containers - containers-unicode-symbols - contravariant - data-textual - dns - exceptions - hjsonschema - lawless-concurrent-machines - lens - lifted-async - lifted-base - machines - managed - monad-control - mtl - network - network-ip - parsers - pathtype - protolude - QuickCheck - random - semigroups - stm - stm-chans - stm-containers - temporary - text - text-printer - time - transformers - transformers-base - zippers - ]; - testHaskellDepends = [ - aeson - base - binary - bytestring - exceptions - filepath - QuickCheck - temporary - test-framework - test-framework-quickcheck2 - test-framework-th - text - time - transformers - ]; - description = "Prelude based on protolude for GHC 8 and beyond"; - license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "liblinear-enumerator" = callPackage ( - { - mkDerivation, - base, - bindings-DSL, - enumerator, - mtl, - vector, - }: - mkDerivation { - pname = "liblinear-enumerator"; - version = "0.1.2"; - sha256 = "19x0y70fn2pr06qsz4z6s67sym7dw5x3qa3z6jf3nmwncsy64qi2"; - libraryHaskellDepends = [ - base - bindings-DSL - enumerator - mtl - vector - ]; - description = "liblinear iteratee"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "libltdl" = callPackage ( - { mkDerivation, base }: - mkDerivation { - pname = "libltdl"; - version = "0.1.1.2"; - sha256 = "1csb0yd8miiqviaba6h67b8mlalj86kkrlm2yqicgwqwkmfd9jfv"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base ]; - description = "FFI interface to libltdl"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "libmdbx" = callPackage ( { mkDerivation, @@ -416211,110 +239875,6 @@ self: { } ) { modbus = null; }; - "libmolude" = callPackage ( - { - mkDerivation, - aeson, - base, - base-unicode-symbols, - binary, - bytestring, - concurrent-machines, - containers, - containers-unicode-symbols, - contravariant, - data-textual, - directory, - exceptions, - filepath, - hjsonschema, - lens, - machines, - mtl, - parsers, - path, - path-io, - protolude, - QuickCheck, - random, - semigroups, - stm, - stm-containers, - temporary, - test-framework, - test-framework-quickcheck2, - test-framework-th, - text, - text-icu, - text-icu-normalized, - text-printer, - time, - transformers, - yaml, - zippers, - }: - mkDerivation { - pname = "libmolude"; - version = "0.12.3"; - sha256 = "1cjm5xdj21abazifanybbqw22fzfjv8591j90fmxa25zvg3wc529"; - libraryHaskellDepends = [ - aeson - base - base-unicode-symbols - binary - bytestring - concurrent-machines - containers - containers-unicode-symbols - contravariant - data-textual - directory - exceptions - filepath - hjsonschema - lens - machines - mtl - parsers - path - path-io - protolude - random - semigroups - stm - stm-containers - temporary - text - text-icu - text-icu-normalized - text-printer - time - transformers - yaml - zippers - ]; - testHaskellDepends = [ - base - binary - bytestring - exceptions - filepath - QuickCheck - semigroups - temporary - test-framework - test-framework-quickcheck2 - test-framework-th - text - time - transformers - ]; - description = "Prelude based on protolude for GHC 8 and beyond"; - license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "libmpd" = callPackage ( { mkDerivation, @@ -416401,489 +239961,189 @@ self: { base bytestring deepseq - errors - filepath - mtl - process - text - ]; - testHaskellDepends = [ - base - directory - errors - tasty - tasty-hunit - text - ]; - description = "Bindings to the nix package manager"; - license = lib.licenses.gpl3Only; - } - ) { }; - - "libnotify" = callPackage ( - { - mkDerivation, - base, - bytestring, - glib, - gtk, - libnotify, - }: - mkDerivation { - pname = "libnotify"; - version = "0.2.1"; - sha256 = "0a55lmalnn840zbryva19k3z4y79fq2q2qjl88wii3im53x0mzmy"; - libraryHaskellDepends = [ - base - bytestring - glib - gtk - ]; - librarySystemDepends = [ libnotify ]; - description = "Bindings to libnotify library"; - license = lib.licenses.mit; - } - ) { inherit (pkgs) libnotify; }; - - "libnvvm" = callPackage ( - { - mkDerivation, - base, - bytestring, - c2hs, - Cabal, - cuda, - HUnit, - nvvm, - test-framework, - test-framework-hunit, - }: - mkDerivation { - pname = "libnvvm"; - version = "1.0.0"; - sha256 = "00vblp869zyk8gr33b846rnvn9axlsbldhx1gkj14xgrlyambdmx"; - libraryHaskellDepends = [ - base - bytestring - cuda - ]; - librarySystemDepends = [ nvvm ]; - libraryToolDepends = [ c2hs ]; - testHaskellDepends = [ - base - bytestring - Cabal - HUnit - test-framework - test-framework-hunit - ]; - description = "FFI binding to libNVVM, a compiler SDK component from NVIDIA"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - } - ) { nvvm = null; }; - - "liboath-hs" = - callPackage - ( - { - mkDerivation, - base, - bytestring, - inline-c, - liboath, - oath, - safe-exceptions, - time, - }: - mkDerivation { - pname = "liboath-hs"; - version = "0.0.1.2"; - sha256 = "08wnzsk82ahyb3fy2sd1ci6aw0h3wiiad2j4kxs1j90wbrwkd3ri"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - bytestring - inline-c - safe-exceptions - time - ]; - librarySystemDepends = [ oath ]; - libraryPkgconfigDepends = [ liboath ]; - executableHaskellDepends = [ - base - bytestring - time - ]; - testHaskellDepends = [ base ]; - description = "Bindings to liboath"; - license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - mainProgram = "oathtool-hs"; - broken = true; - } - ) - { - liboath = null; - oath = null; - }; - - "liboleg" = callPackage ( - { - mkDerivation, - base, - CC-delcont, - containers, - mtl, - template-haskell, - unix, - }: - mkDerivation { - pname = "liboleg"; - version = "2010.1.10.0"; - sha256 = "1lv0il1psy8bfdxc76ivc5nlwga4m475gys1g0ia3wacdksgs7a6"; - libraryHaskellDepends = [ - base - CC-delcont - containers - mtl - template-haskell - unix - ]; - description = "An evolving collection of Oleg Kiselyov's Haskell modules"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "libpafe" = callPackage ( - { - mkDerivation, - base, - bytestring, - iconv, - pafe, - transformers, - }: - mkDerivation { - pname = "libpafe"; - version = "0.1.1.0"; - sha256 = "1l2s98y805mgxnwy2jvrab65gz1aq5zf48rqk88nclb97w04lnws"; - libraryHaskellDepends = [ - base - transformers - ]; - librarySystemDepends = [ pafe ]; - testHaskellDepends = [ - base - bytestring - iconv - transformers - ]; - description = "Wrapper for libpafe"; - license = lib.licenses.gpl2Only; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { pafe = null; }; - - "libphonenumber" = - callPackage - ( - { - mkDerivation, - base, - bytestring, - c2hs, - containers, - deepseq, - hspec, - phonenumber, - process, - protobuf, - QuickCheck, - system-cxx-std-lib, - transformers, - }: - mkDerivation { - pname = "libphonenumber"; - version = "0.1.3.0"; - sha256 = "1yhkkik6471gvx36i04hhbc9aq5fywgc6yrkii81rc4m6g3xnkig"; - revision = "1"; - editedCabalFile = "141bvakcs79ggxwfwqmpv8dm18zb8chfwd5g4l4wzj1835wr9aab"; - libraryHaskellDepends = [ - base - bytestring - containers - deepseq - system-cxx-std-lib - transformers - ]; - librarySystemDepends = [ - phonenumber - protobuf - ]; - libraryToolDepends = [ c2hs ]; - testHaskellDepends = [ - base - bytestring - containers - hspec - process - QuickCheck - ]; - description = "Parsing, formatting, and validating international phone numbers"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) - { - phonenumber = null; - inherit (pkgs) protobuf; - }; - - "libpq" = callPackage ( - { - mkDerivation, - base, - bytestring, - libpq, - unix, - }: - mkDerivation { - pname = "libpq"; - version = "0.4.1"; - sha256 = "11s8zaxq7qwzqdgyfd3v7sk6vf5cq3wzv2j02g0gnri9w45wf2i7"; - libraryHaskellDepends = [ - base - bytestring - unix - ]; - librarySystemDepends = [ libpq ]; - description = "libpq binding for Haskell"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { inherit (pkgs) libpq; }; - - "libraft" = callPackage ( - { - mkDerivation, - async, - atomic-write, - attoparsec, - base, - base16-bytestring, - bytestring, - cereal, - concurrency, - containers, - cryptohash-sha256, - dejafu, - directory, - ekg, - ekg-core, - exceptions, - file-embed, - filepath, - haskeline, - lifted-base, - monad-control, - monad-metrics, - mtl, - network, - network-simple, - optparse-applicative, - parsec, - postgresql-simple, - postgresql-simple-url, - process, - protolude, - QuickCheck, - quickcheck-state-machine, - random, - repline, - stm, - tasty, - tasty-dejafu, - tasty-discover, - tasty-expected-failure, - tasty-hunit, - tasty-quickcheck, - text, - time, - transformers, - transformers-base, - tree-diff, - unordered-containers, - word8, - }: - mkDerivation { - pname = "libraft"; - version = "0.5.0.0"; - sha256 = "13wk2dk0hs3ds5sa301v35i4g7frq1d7nj6c2957cbd9xwwyrksc"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - async - atomic-write - attoparsec - base - base16-bytestring - bytestring - cereal - concurrency - containers - cryptohash-sha256 - dejafu - directory - ekg - ekg-core - exceptions - file-embed - filepath - haskeline - lifted-base - monad-control - monad-metrics - mtl - network - network-simple - parsec - postgresql-simple - protolude - random - repline - stm - text - time - transformers - transformers-base - unordered-containers - word8 - ]; - executableHaskellDepends = [ - async - atomic-write - attoparsec - base - base16-bytestring - bytestring - cereal - concurrency - containers - cryptohash-sha256 - dejafu - directory - ekg - ekg-core - exceptions - file-embed + errors filepath - haskeline - lifted-base - monad-control - monad-metrics mtl - network - network-simple - optparse-applicative - parsec - postgresql-simple - postgresql-simple-url - protolude - random - repline - stm + process text - time - transformers - transformers-base - unordered-containers - word8 ]; testHaskellDepends = [ - async - atomic-write - attoparsec base - base16-bytestring - bytestring - cereal - concurrency - containers - cryptohash-sha256 - dejafu directory - ekg - ekg-core - exceptions - file-embed - filepath - haskeline - lifted-base - monad-control - monad-metrics - mtl - network - network-simple - parsec - postgresql-simple - process - protolude - QuickCheck - quickcheck-state-machine - random - repline - stm + errors tasty - tasty-dejafu - tasty-discover - tasty-expected-failure tasty-hunit - tasty-quickcheck text - time - transformers - transformers-base - tree-diff - unordered-containers - word8 ]; - testToolDepends = [ tasty-discover ]; - description = "Raft consensus algorithm"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "raft-example"; + description = "Bindings to the nix package manager"; + license = lib.licenses.gpl3Only; } ) { }; - "librandomorg" = callPackage ( + "libnotify" = callPackage ( { mkDerivation, base, bytestring, - curl, + glib, + gtk, + libnotify, }: mkDerivation { - pname = "librandomorg"; - version = "0.0.1.0"; - sha256 = "07xg59f48jw78mjbx83bz1rc2fxvdnlb08cdfd7hwkj43a127kxn"; + pname = "libnotify"; + version = "0.2.1"; + sha256 = "0a55lmalnn840zbryva19k3z4y79fq2q2qjl88wii3im53x0mzmy"; libraryHaskellDepends = [ base bytestring - curl + glib + gtk + ]; + librarySystemDepends = [ libnotify ]; + description = "Bindings to libnotify library"; + license = lib.licenses.mit; + } + ) { inherit (pkgs) libnotify; }; + + "libnvvm" = callPackage ( + { + mkDerivation, + base, + bytestring, + c2hs, + Cabal, + cuda, + HUnit, + nvvm, + test-framework, + test-framework-hunit, + }: + mkDerivation { + pname = "libnvvm"; + version = "1.0.0"; + sha256 = "00vblp869zyk8gr33b846rnvn9axlsbldhx1gkj14xgrlyambdmx"; + libraryHaskellDepends = [ + base + bytestring + cuda + ]; + librarySystemDepends = [ nvvm ]; + libraryToolDepends = [ c2hs ]; + testHaskellDepends = [ + base + bytestring + Cabal + HUnit + test-framework + test-framework-hunit ]; - description = "Wrapper to Random.org API"; + description = "FFI binding to libNVVM, a compiler SDK component from NVIDIA"; license = lib.licenses.mit; hydraPlatforms = lib.platforms.none; - broken = true; } - ) { }; + ) { nvvm = null; }; + + "liboath-hs" = + callPackage + ( + { + mkDerivation, + base, + bytestring, + inline-c, + liboath, + oath, + safe-exceptions, + time, + }: + mkDerivation { + pname = "liboath-hs"; + version = "0.0.1.2"; + sha256 = "08wnzsk82ahyb3fy2sd1ci6aw0h3wiiad2j4kxs1j90wbrwkd3ri"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + base + bytestring + inline-c + safe-exceptions + time + ]; + librarySystemDepends = [ oath ]; + libraryPkgconfigDepends = [ liboath ]; + executableHaskellDepends = [ + base + bytestring + time + ]; + testHaskellDepends = [ base ]; + description = "Bindings to liboath"; + license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; + mainProgram = "oathtool-hs"; + broken = true; + } + ) + { + liboath = null; + oath = null; + }; + + "libphonenumber" = + callPackage + ( + { + mkDerivation, + base, + bytestring, + c2hs, + containers, + deepseq, + hspec, + phonenumber, + process, + protobuf, + QuickCheck, + system-cxx-std-lib, + transformers, + }: + mkDerivation { + pname = "libphonenumber"; + version = "0.1.3.0"; + sha256 = "1yhkkik6471gvx36i04hhbc9aq5fywgc6yrkii81rc4m6g3xnkig"; + revision = "1"; + editedCabalFile = "141bvakcs79ggxwfwqmpv8dm18zb8chfwd5g4l4wzj1835wr9aab"; + libraryHaskellDepends = [ + base + bytestring + containers + deepseq + system-cxx-std-lib + transformers + ]; + librarySystemDepends = [ + phonenumber + protobuf + ]; + libraryToolDepends = [ c2hs ]; + testHaskellDepends = [ + base + bytestring + containers + hspec + process + QuickCheck + ]; + description = "Parsing, formatting, and validating international phone numbers"; + license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; + } + ) + { + phonenumber = null; + inherit (pkgs) protobuf; + }; "librarian" = callPackage ( { @@ -416947,52 +240207,7 @@ self: { license = lib.licenses.isc; hydraPlatforms = lib.platforms.none; mainProgram = "librarian-exe"; - } - ) { }; - - "librato" = callPackage ( - { - mkDerivation, - aeson, - attoparsec, - base, - bytestring, - either, - http-client, - http-conduit, - http-types, - mtl, - resourcet, - text, - unordered-containers, - uri-templater, - vector, - }: - mkDerivation { - pname = "librato"; - version = "0.2.0.1"; - sha256 = "1l0q8kx0v563glplz5blg5scnvwf1aak04w08abxkrbfdjq6a8z4"; - revision = "1"; - editedCabalFile = "06md1545pfywdd3ggm6ss9lk8fzph1psl9jip3gp0qsxmv3diyix"; - libraryHaskellDepends = [ - aeson - attoparsec - base - bytestring - either - http-client - http-conduit - http-types - mtl - resourcet - text - unordered-containers - uri-templater - vector - ]; - description = "Bindings to the Librato API"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; + broken = true; } ) { }; @@ -417452,88 +240667,6 @@ self: { } ) { }; - "libstackexchange" = callPackage ( - { - mkDerivation, - aeson, - attoparsec, - base, - bytestring, - containers, - data-default, - http-conduit, - profunctors, - text, - }: - mkDerivation { - pname = "libstackexchange"; - version = "0.3.1"; - sha256 = "1fj5pf1hjl749pbx54p1sja8m7k99bd0ijyyzxh3dygxx06inc6i"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson - attoparsec - base - bytestring - containers - data-default - http-conduit - profunctors - text - ]; - description = "StackExchange API interface"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "libsystemd-daemon" = - callPackage - ( - { - mkDerivation, - base, - bytestring, - HUnit, - libsystemd-daemon, - network, - systemd-daemon, - test-framework, - test-framework-hunit, - utf8-string, - }: - mkDerivation { - pname = "libsystemd-daemon"; - version = "0.1.0.1"; - sha256 = "1rmzyca7ry30d6wvhv3k30jaksa3iw8kzk1rwp6gwclxizsvwgf0"; - libraryHaskellDepends = [ - base - bytestring - network - utf8-string - ]; - librarySystemDepends = [ systemd-daemon ]; - libraryPkgconfigDepends = [ libsystemd-daemon ]; - testHaskellDepends = [ - base - HUnit - network - test-framework - test-framework-hunit - ]; - description = "Haskell bindings for libsystemd-daemon"; - license = lib.licenses.lgpl21Only; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) - { - libsystemd-daemon = null; - systemd-daemon = null; - }; - "libsystemd-journal" = callPackage ( { mkDerivation, @@ -417582,33 +240715,6 @@ self: { } ) { inherit (pkgs) systemd; }; - "libtagc" = callPackage ( - { - mkDerivation, - base, - bytestring, - glib, - taglib, - }: - mkDerivation { - pname = "libtagc"; - version = "0.12.0"; - sha256 = "1f7r82cfrkxrqcrxk92y6zhk79qwpack2g67crww5q8hs7438vja"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base - bytestring - glib - ]; - librarySystemDepends = [ taglib ]; - libraryPkgconfigDepends = [ taglib ]; - description = "Binding to TagLib C library"; - license = lib.licenses.lgpl21Only; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { inherit (pkgs) taglib; }; - "libtelnet" = callPackage ( { mkDerivation, @@ -417804,27 +240910,6 @@ self: { } ) { }; - "libxls" = callPackage ( - { - mkDerivation, - base, - bindings-DSL, - }: - mkDerivation { - pname = "libxls"; - version = "0.2"; - sha256 = "03klm9s27v06s65ypy6bsshnif20mprhynvqrmcw90brzmgiihf6"; - libraryHaskellDepends = [ - base - bindings-DSL - ]; - description = "Bindings to libxls"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "libxlsxwriter-hs" = callPackage ( { mkDerivation, @@ -417874,36 +240959,6 @@ self: { } ) { inherit (pkgs) libxml2; }; - "libxml-enumerator" = callPackage ( - { - mkDerivation, - base, - bytestring, - enumerator, - libxml-sax, - text, - transformers, - xml-types, - }: - mkDerivation { - pname = "libxml-enumerator"; - version = "0.5"; - sha256 = "0mqh454w1f3k75kcshdn848ynva938q6xm3a5yzcyf7nflzw75pg"; - libraryHaskellDepends = [ - base - bytestring - enumerator - libxml-sax - text - transformers - xml-types - ]; - description = "Enumerator-based API for libXML's SAX interface"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "libxml-sax" = callPackage ( { mkDerivation, @@ -417944,31 +240999,6 @@ self: { } ) { inherit (pkgs) libxml2; }; - "libxslt" = callPackage ( - { - mkDerivation, - base, - bytestring, - libxml, - xslt, - }: - mkDerivation { - pname = "libxslt"; - version = "0.1"; - sha256 = "1szz8zkm1w8dbfgix3ii896sc4vljgivcgx8j7vpny4ci9sfmn5a"; - libraryHaskellDepends = [ - base - bytestring - libxml - ]; - librarySystemDepends = [ xslt ]; - description = "Binding to libxslt"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { xslt = null; }; - "libyaml" = callPackage ( { mkDerivation, @@ -418033,56 +241063,6 @@ self: { } ) { inherit (pkgs) libyaml; }; - "libzfs" = - callPackage - ( - { - mkDerivation, - base, - mtl, - nvpair, - transformers, - zfs, - }: - mkDerivation { - pname = "libzfs"; - version = "0.2.0.0"; - sha256 = "1g3bn3dmkzalzpm645ag4vk9736in0xcszj28girpyphyiyfkk45"; - revision = "1"; - editedCabalFile = "0rvk7mbqz5yr5qx52ais53x1sknbf9r87q7rypk63jznjj1jcbmp"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - mtl - transformers - ]; - librarySystemDepends = [ - nvpair - zfs - ]; - executableHaskellDepends = [ - base - mtl - transformers - ]; - executableSystemDepends = [ - nvpair - zfs - ]; - description = "Bindings to libzfs, for dealing with the Z File System and Zpools"; - license = lib.licenses.mit; - badPlatforms = lib.platforms.darwin; - hydraPlatforms = lib.platforms.none; - mainProgram = "example"; - broken = true; - } - ) - { - nvpair = null; - inherit (pkgs) zfs; - }; - "licensor" = callPackage ( { mkDerivation, @@ -418131,24 +241111,6 @@ self: { } ) { }; - "lie" = callPackage ( - { mkDerivation, base }: - mkDerivation { - pname = "lie"; - version = "0.1.0.0"; - sha256 = "1kvy0zsgwq2kgdbiz7z88q9d3ldhb9z9fb057x7mnhli7b3hd8fh"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base ]; - executableHaskellDepends = [ base ]; - description = "Lie Algebras"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "Lie"; - broken = true; - } - ) { }; - "life" = callPackage ( { mkDerivation, @@ -418178,72 +241140,6 @@ self: { } ) { }; - "life-sync" = callPackage ( - { - mkDerivation, - base, - bytestring, - colourista, - containers, - exceptions, - filepath, - hedgehog, - hspec, - hspec-hedgehog, - optparse-applicative, - path, - path-io, - relude, - shellmet, - text, - tomland, - validation-selective, - }: - mkDerivation { - pname = "life-sync"; - version = "1.1.1.0"; - sha256 = "051r1m2rrhgg4r34z9n5picnr5k9bdk08chibazndzhmqcxkh8fq"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - bytestring - colourista - containers - exceptions - optparse-applicative - path - path-io - relude - shellmet - text - tomland - validation-selective - ]; - executableHaskellDepends = [ - base - relude - ]; - testHaskellDepends = [ - base - containers - filepath - hedgehog - hspec - hspec-hedgehog - path - relude - text - tomland - ]; - description = "Synchronize personal configs across multiple machines"; - license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; - mainProgram = "life"; - broken = true; - } - ) { }; - "lifetimes" = callPackage ( { mkDerivation, @@ -418513,103 +241409,6 @@ self: { } ) { }; - "lifted-base-tf" = callPackage ( - { - mkDerivation, - base, - basic, - control, - criterion, - HUnit, - lifted-base, - monad-control, - monad-peel, - test-framework, - test-framework-hunit, - transformers, - transformers-compat, - }: - mkDerivation { - pname = "lifted-base-tf"; - version = "0.1.0.0"; - sha256 = "1g3h86b6qrwq9sb5ppnpp4vygnfq4c77mhvzkk87yi56vvd6acix"; - revision = "3"; - editedCabalFile = "1z56yldhppy56bj8g25a7l0g7ihqwymjr3ds0clc5iva3mlvvw39"; - libraryHaskellDepends = [ - base - basic - control - ]; - testHaskellDepends = [ - base - basic - control - HUnit - lifted-base - test-framework - test-framework-hunit - transformers - transformers-compat - ]; - benchmarkHaskellDepends = [ - base - criterion - lifted-base - monad-control - monad-peel - transformers - ]; - description = "lifted IO operations from the base library"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "lifted-protolude" = callPackage ( - { - mkDerivation, - async, - base, - bytestring, - containers, - deepseq, - exceptions, - ghc-prim, - lifted-async, - lifted-base, - mtl, - safe, - stm, - text, - transformers, - }: - mkDerivation { - pname = "lifted-protolude"; - version = "0.1.6"; - sha256 = "1srivxydkix33lnbjyxi4nlrcj9d8z16lmnbf7y2pn875scvnp5d"; - libraryHaskellDepends = [ - async - base - bytestring - containers - deepseq - exceptions - ghc-prim - lifted-async - lifted-base - mtl - safe - stm - text - transformers - ]; - description = "A sensible set of defaults for writing lifted custom Preludes"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "lifted-stm" = callPackage ( { mkDerivation, @@ -418666,45 +241465,6 @@ self: { } ) { }; - "lifter" = callPackage ( - { - mkDerivation, - array, - base, - bitmap, - bytestring, - directory, - filepath, - gloss, - mtl, - stb-image, - }: - mkDerivation { - pname = "lifter"; - version = "0.1"; - sha256 = "11c0j2mdrp4rvinl4iym9mfsqzh101yb5sf710vm8n7qih1fzcpc"; - isLibrary = false; - isExecutable = true; - enableSeparateDataOutput = true; - executableHaskellDepends = [ - array - base - bitmap - bytestring - directory - filepath - gloss - mtl - stb-image - ]; - description = "A boulderdash-like game and solution validator"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "lifter"; - broken = true; - } - ) { }; - "lifx-lan" = callPackage ( { mkDerivation, @@ -418754,27 +241514,6 @@ self: { } ) { }; - "ligature" = callPackage ( - { - mkDerivation, - base, - text, - }: - mkDerivation { - pname = "ligature"; - version = "0.1.0.0"; - sha256 = "03h30lbhppi9hmpsc8fhsrsad6w9sjs9n53lz76czz3iqaknkcrb"; - libraryHaskellDepends = [ - base - text - ]; - description = "Expand ligatures in unicode text"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "ligd" = callPackage ( { mkDerivation, base }: mkDerivation { @@ -418787,97 +241526,6 @@ self: { } ) { }; - "light" = callPackage ( - { - mkDerivation, - base, - containers, - gjk2d, - lens, - linear, - mtl, - QuickCheck, - }: - mkDerivation { - pname = "light"; - version = "0.2.0.1"; - sha256 = "1lhwir14di3chnj6xn28cwkzmim5d4cq39da82ils6mhghjgzjbg"; - libraryHaskellDepends = [ - base - containers - gjk2d - lens - linear - mtl - ]; - testHaskellDepends = [ - base - containers - lens - linear - QuickCheck - ]; - description = "a simple physics engine"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "lightning-haskell" = callPackage ( - { - mkDerivation, - aeson, - api-builder, - base, - blaze-html, - bytestring, - data-default-class, - free, - hspec, - http-client, - http-client-tls, - http-types, - mtl, - network, - text, - transformers, - }: - mkDerivation { - pname = "lightning-haskell"; - version = "0.1.0.3"; - sha256 = "1h3msbm9gsfazcpq72bxrc2whg5sr6wyx2rs5z3xbsjj9ngmcc0r"; - libraryHaskellDepends = [ - aeson - api-builder - base - blaze-html - bytestring - data-default-class - free - http-client - http-client-tls - http-types - mtl - network - text - transformers - ]; - testHaskellDepends = [ - aeson - api-builder - base - bytestring - hspec - text - transformers - ]; - description = "Haskell client for lightning-viz REST API"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "lightstep-haskell" = callPackage ( { mkDerivation, @@ -418963,100 +241611,6 @@ self: { license = lib.licenses.asl20; hydraPlatforms = lib.platforms.none; mainProgram = "lightstep-haskell-stress-test"; - } - ) { }; - - "lighttpd-conf" = callPackage ( - { - mkDerivation, - alex, - array, - base, - bytestring, - happy, - packedstring, - pretty, - template-haskell, - }: - mkDerivation { - pname = "lighttpd-conf"; - version = "0.4"; - sha256 = "085msb62wpqyc1sp4zbwbyn70k48p9k9cky9rxn93xm0gjsaydf8"; - libraryHaskellDepends = [ - array - base - bytestring - packedstring - pretty - template-haskell - ]; - libraryToolDepends = [ - alex - happy - ]; - description = "Lighttpd configuration file tools"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "lighttpd-conf-qq" = callPackage ( - { - mkDerivation, - array, - base, - bytestring, - haskell-src-exts, - lighttpd-conf, - template-haskell, - }: - mkDerivation { - pname = "lighttpd-conf-qq"; - version = "0.5"; - sha256 = "1nd30inhh6wzq34rg76lq6m3wp0x3sc0l7jv37gw6dk3dnkwqh6q"; - libraryHaskellDepends = [ - array - base - bytestring - haskell-src-exts - lighttpd-conf - template-haskell - ]; - description = "A QuasiQuoter for lighttpd configuration files"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "lilypond" = callPackage ( - { - mkDerivation, - base, - data-default, - music-dynamics-literal, - music-pitch-literal, - prettify, - process, - semigroups, - vector-space, - }: - mkDerivation { - pname = "lilypond"; - version = "1.9.0"; - sha256 = "1nb6kkp5gbsbkjbbicyd49ckg2j9dm4a1l9ya4vp38br5j7dn4gw"; - libraryHaskellDepends = [ - base - data-default - music-dynamics-literal - music-pitch-literal - prettify - process - semigroups - vector-space - ]; - description = "Bindings to Lilypond"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; broken = true; } ) { }; @@ -419141,43 +241695,6 @@ self: { } ) { }; - "limp-cbc" = callPackage ( - { - mkDerivation, - base, - c2hs, - containers, - limp, - QuickCheck, - tasty, - tasty-quickcheck, - vector, - }: - mkDerivation { - pname = "limp-cbc"; - version = "0.3.2.3"; - sha256 = "1fdjhifnx2yhfbzjs5lsaa8vn5ps4li5j3id8sjj7fwj4yn4m453"; - libraryHaskellDepends = [ - base - containers - limp - vector - ]; - libraryToolDepends = [ c2hs ]; - testHaskellDepends = [ - base - limp - QuickCheck - tasty - tasty-quickcheck - ]; - description = "bindings for integer linear programming solver Coin/CBC"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "lin-alg" = callPackage ( { mkDerivation, @@ -419199,118 +241716,6 @@ self: { } ) { }; - "linda" = callPackage ( - { - mkDerivation, - base, - hmatrix, - HUnit, - }: - mkDerivation { - pname = "linda"; - version = "0.1.2"; - sha256 = "0d58i69hvry9vzr4i7f1yhhm99808vqw238hfjc3sr51plc1is45"; - libraryHaskellDepends = [ - base - hmatrix - HUnit - ]; - description = "LINear Discriminant Analysis"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "linden" = callPackage ( - { - mkDerivation, - aeson, - base, - bifunctors, - bytestring, - containers, - deepseq, - delay, - exceptions, - filepath, - hashable, - hedis, - http-types, - lens, - monad-supply, - mtl, - random-fu, - rosezipper, - SHA, - text, - time, - unordered-containers, - uuid, - wai, - wai-app-static, - wai-cors, - wai-extra, - warp, - zlib, - }: - mkDerivation { - pname = "linden"; - version = "0"; - sha256 = "05x9xbmk4irlk26rq84m761ahldxx6zwigf9s3zj133x7c7nq6ka"; - revision = "1"; - editedCabalFile = "0bvcyh2mryg78kd2yrxz0g67ry4bb23xvrg7pnl0jla49wzg8pjf"; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - aeson - base - bifunctors - bytestring - containers - deepseq - delay - exceptions - filepath - hashable - hedis - http-types - lens - monad-supply - mtl - random-fu - rosezipper - SHA - text - time - unordered-containers - uuid - wai - wai-app-static - wai-cors - wai-extra - zlib - ]; - executableHaskellDepends = [ - base - containers - hashable - mtl - random-fu - rosezipper - text - uuid - warp - ]; - description = "Zen gardening, based on l-systems"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "linden-example"; - broken = true; - } - ) { }; - "lindenmayer" = callPackage ( { mkDerivation, base }: mkDerivation { @@ -419323,68 +241728,6 @@ self: { } ) { }; - "line" = callPackage ( - { - mkDerivation, - aeson, - base, - base64-bytestring, - bytestring, - cryptohash-sha256, - hspec, - hspec-wai, - http-conduit, - http-types, - QuickCheck, - quickcheck-instances, - raw-strings-qq, - scotty, - text, - time, - transformers, - wai, - }: - mkDerivation { - pname = "line"; - version = "4.0.1"; - sha256 = "0z36847iamf18b38nz6mcps599cnn17046n61y94g1q7rmfsppx1"; - libraryHaskellDepends = [ - aeson - base - base64-bytestring - bytestring - cryptohash-sha256 - http-conduit - http-types - scotty - text - time - transformers - wai - ]; - testHaskellDepends = [ - aeson - base - base64-bytestring - bytestring - cryptohash-sha256 - hspec - hspec-wai - QuickCheck - quickcheck-instances - raw-strings-qq - scotty - text - time - transformers - ]; - description = "Haskell SDK for the LINE API"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "line-bot-sdk" = callPackage ( { mkDerivation, @@ -419674,82 +242017,6 @@ self: { } ) { }; - "linear-accelerate" = callPackage ( - { - mkDerivation, - accelerate, - base, - Cabal, - cabal-doctest, - distributive, - doctest, - lens, - linear, - }: - mkDerivation { - pname = "linear-accelerate"; - version = "0.7.0.0"; - sha256 = "1rdbmchbvrg5g0ndfppswydn15qbp2k9dvx7wapfpy8971qqf2df"; - setupHaskellDepends = [ - base - Cabal - cabal-doctest - ]; - libraryHaskellDepends = [ - accelerate - base - distributive - lens - linear - ]; - testHaskellDepends = [ - base - doctest - ]; - description = "Lifting linear vector spaces into Accelerate"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "linear-algebra-cblas" = callPackage ( - { - mkDerivation, - base, - ieee754, - QuickCheck, - storable-complex, - test-framework, - test-framework-quickcheck2, - vector, - }: - mkDerivation { - pname = "linear-algebra-cblas"; - version = "0.1"; - sha256 = "1wsan17zrlg4kr9dwk23ggfvylignnmg4sa62krri45s925kvh3i"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - ieee754 - QuickCheck - storable-complex - vector - ]; - executableHaskellDepends = [ - QuickCheck - test-framework - test-framework-quickcheck2 - ]; - description = "A linear algebra library with bindings to BLAS and LAPACK"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "test-hs-linear-algebra"; - broken = true; - } - ) { }; - "linear-base" = callPackage ( { mkDerivation, @@ -419871,63 +242138,6 @@ self: { } ) { }; - "linear-code" = callPackage ( - { - mkDerivation, - base, - containers, - data-default, - ghc-typelits-knownnat, - ghc-typelits-natnormalise, - HaskellForMaths, - matrix-static, - QuickCheck, - random, - random-shuffle, - smallcheck, - tasty, - tasty-hunit, - tasty-quickcheck, - tasty-smallcheck, - }: - mkDerivation { - pname = "linear-code"; - version = "0.2.0"; - sha256 = "14d4gmpqx9x9acaldml7hf64fbpdrncn5akgid1scnqv1jzc9197"; - libraryHaskellDepends = [ - base - containers - data-default - ghc-typelits-knownnat - ghc-typelits-natnormalise - HaskellForMaths - matrix-static - random - random-shuffle - ]; - testHaskellDepends = [ - base - containers - data-default - ghc-typelits-knownnat - ghc-typelits-natnormalise - HaskellForMaths - matrix-static - QuickCheck - random - random-shuffle - smallcheck - tasty - tasty-hunit - tasty-quickcheck - tasty-smallcheck - ]; - description = "A simple library for linear codes (coding theory, error correction)"; - license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "linear-free" = callPackage ( { mkDerivation, @@ -420053,32 +242263,6 @@ self: { } ) { }; - "linear-maps" = callPackage ( - { - mkDerivation, - base, - containers, - HUnit, - }: - mkDerivation { - pname = "linear-maps"; - version = "0.6.1"; - sha256 = "0671px94wvqg2yyc8qhjcwrv5k2ifwp5mrj7fkcwlwvg8w1bp19k"; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base - containers - HUnit - ]; - description = "Finite maps for linear use"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "linear-opengl" = callPackage ( { mkDerivation, @@ -420168,37 +242352,6 @@ self: { } ) { }; - "linear-socket" = callPackage ( - { - mkDerivation, - base, - bytestring, - hspec, - network, - tasty-hspec, - }: - mkDerivation { - pname = "linear-socket"; - version = "0.3.3.3"; - sha256 = "0bi2idqny1y5d63xhryxl085plc7w3ybk6fgj9xsp6scyxdx8p82"; - libraryHaskellDepends = [ - base - bytestring - network - ]; - testHaskellDepends = [ - base - hspec - network - tasty-hspec - ]; - description = "Typed sockets"; - license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "linear-tests" = callPackage ( { mkDerivation, @@ -420232,27 +242385,6 @@ self: { } ) { }; - "linear-vect" = callPackage ( - { - mkDerivation, - base, - random, - }: - mkDerivation { - pname = "linear-vect"; - version = "0.1.1.0"; - sha256 = "0i6z10pgqcykkygl6kq63phx5hvwi2d84j2f5vw4nrnic59sm9jy"; - libraryHaskellDepends = [ - base - random - ]; - description = "A low-dimensional linear algebra library, operating on the Num typeclass"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "linearEqSolver" = callPackage ( { mkDerivation, @@ -420381,52 +242513,6 @@ self: { } ) { }; - "linearscan-hoopl" = callPackage ( - { - mkDerivation, - base, - containers, - deepseq, - free, - hoopl, - hspec, - hspec-expectations, - lens-family-core, - linearscan, - QuickCheck, - transformers, - }: - mkDerivation { - pname = "linearscan-hoopl"; - version = "1.0.0"; - sha256 = "0w43dqxk4f94zzr8fv6s4sqnp7mzw0830j2fjn5v1vnp3sdnwyg5"; - libraryHaskellDepends = [ - base - containers - free - hoopl - linearscan - QuickCheck - transformers - ]; - testHaskellDepends = [ - base - containers - deepseq - hoopl - hspec - hspec-expectations - lens-family-core - linearscan - QuickCheck - transformers - ]; - description = "Makes it easy to use the linearscan register allocator with Hoopl"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "linebreak" = callPackage ( { mkDerivation, @@ -420490,31 +242576,6 @@ self: { } ) { }; - "lines-of-action" = callPackage ( - { - mkDerivation, - base, - containers, - mtl, - safe, - }: - mkDerivation { - pname = "lines-of-action"; - version = "0.0.1"; - sha256 = "1sikhdahhxqi9i285zphbpnz60vyxjdhvz2qd70hmy7x3ckymb42"; - libraryHaskellDepends = [ - base - containers - mtl - safe - ]; - description = "Lines of Action, 2-player strategy board game"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "lingo" = callPackage ( { mkDerivation, @@ -420565,27 +242626,6 @@ self: { } ) { }; - "linguistic-ordinals" = callPackage ( - { - mkDerivation, - base, - text, - }: - mkDerivation { - pname = "linguistic-ordinals"; - version = "0.1.0.2"; - sha256 = "11f01j9qak8rhaj84gkx27qhfc334cj9pchi7qcb6brpqbwgdsik"; - libraryHaskellDepends = [ - base - text - ]; - description = "Express Integral types as linguistic ordinals (1st, 2nd, 3rd, etc)"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "link-relations" = callPackage ( { mkDerivation, @@ -420671,483 +242711,6 @@ self: { } ) { }; - "linkchk" = callPackage ( - { - mkDerivation, - base, - gtk, - haskell98, - popenhs, - regex-compat, - unix, - }: - mkDerivation { - pname = "linkchk"; - version = "0.0.2"; - sha256 = "0fzszn8nb5kglg4s5hk9k51vdkarlc08bdp67rbrj0cwfxpkn6wd"; - isLibrary = false; - isExecutable = true; - enableSeparateDataOutput = true; - executableHaskellDepends = [ - base - gtk - haskell98 - popenhs - regex-compat - unix - ]; - description = "linkchk is a network interface link ping monitor"; - license = "GPL"; - hydraPlatforms = lib.platforms.none; - mainProgram = "linkchk"; - } - ) { }; - - "linkcore" = callPackage ( - { - mkDerivation, - base, - containers, - extcore, - filepath, - process, - }: - mkDerivation { - pname = "linkcore"; - version = "0.4.1"; - sha256 = "0m1jwqa3vbiyzcdrn1h63dm0709j5xijm00j2x7dpwgn8k92iq81"; - isLibrary = false; - isExecutable = true; - enableSeparateDataOutput = true; - executableHaskellDepends = [ - base - containers - extcore - filepath - process - ]; - description = "Combines multiple GHC Core modules into a single module"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "linkcore"; - } - ) { }; - - "linked-list-with-iterator" = callPackage ( - { - mkDerivation, - base, - containers, - }: - mkDerivation { - pname = "linked-list-with-iterator"; - version = "0.1.1.0"; - sha256 = "128vy6rhnhmgr4xggxxxi4s73lz6vb2zkzi85ywzqfhjkp63gbn6"; - libraryHaskellDepends = [ - base - containers - ]; - testHaskellDepends = [ base ]; - description = "A pure linked list which is mutable through iterators"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "linkedhashmap" = callPackage ( - { - mkDerivation, - base, - containers, - criterion, - deepseq, - hashable, - mtl, - tasty, - tasty-hunit, - unordered-containers, - }: - mkDerivation { - pname = "linkedhashmap"; - version = "0.4.0.0"; - sha256 = "1bv39g9vivr3j8arnpla39dhnwaja5l9da2yw580pzmw5bqi0wyq"; - libraryHaskellDepends = [ - base - containers - deepseq - hashable - unordered-containers - ]; - testHaskellDepends = [ - base - containers - deepseq - hashable - mtl - tasty - tasty-hunit - unordered-containers - ]; - benchmarkHaskellDepends = [ - base - containers - criterion - deepseq - hashable - unordered-containers - ]; - description = "Persistent LinkedHashMap data structure"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "linklater" = callPackage ( - { - mkDerivation, - aeson, - base, - base-prelude, - bytestring, - containers, - exceptions, - http-types, - lens, - lens-aeson, - mtl, - safe-exceptions, - tasty, - tasty-hunit, - text, - uri-bytestring, - wai, - wreq, - }: - mkDerivation { - pname = "linklater"; - version = "4.0.0.2"; - sha256 = "0kykg2s2czhapq0s17rwr195mjhh6qkbkbia75i3sr2mq9ypal8z"; - libraryHaskellDepends = [ - aeson - base - base-prelude - bytestring - containers - exceptions - http-types - lens - lens-aeson - mtl - safe-exceptions - text - uri-bytestring - wai - wreq - ]; - testHaskellDepends = [ - aeson - base - base-prelude - bytestring - containers - exceptions - http-types - lens - lens-aeson - mtl - safe-exceptions - tasty - tasty-hunit - text - uri-bytestring - wai - wreq - ]; - description = "A Haskell library for the Slack API"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "linnet" = callPackage ( - { - mkDerivation, - base, - bytestring, - bytestring-conversion, - case-insensitive, - either, - exceptions, - hspec, - http-media, - http-types, - mtl, - QuickCheck, - quickcheck-classes, - quickcheck-instances, - text, - time, - transformers, - uri-encode, - wai, - warp, - }: - mkDerivation { - pname = "linnet"; - version = "0.4.0.1"; - sha256 = "0bzss6a8fx8zw5q27m50nhqp8rb23v1cdxlck0hjr17h0fmxvwsm"; - libraryHaskellDepends = [ - base - bytestring - bytestring-conversion - case-insensitive - either - exceptions - http-media - http-types - mtl - text - time - transformers - uri-encode - wai - warp - ]; - testHaskellDepends = [ - base - bytestring - bytestring-conversion - case-insensitive - either - exceptions - hspec - http-media - http-types - mtl - QuickCheck - quickcheck-classes - quickcheck-instances - text - time - transformers - uri-encode - wai - warp - ]; - description = "Lightweight library for building HTTP API"; - license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "linnet-aeson" = callPackage ( - { - mkDerivation, - aeson, - base, - bytestring, - hspec, - linnet, - QuickCheck, - quickcheck-classes, - quickcheck-instances, - text, - }: - mkDerivation { - pname = "linnet-aeson"; - version = "0.4.0.1"; - sha256 = "0lsrn9sxcr038vz7j112hmf5mc2027x808ndqxm4dx4m6ncji0a4"; - libraryHaskellDepends = [ - aeson - base - bytestring - linnet - ]; - testHaskellDepends = [ - aeson - base - bytestring - hspec - linnet - QuickCheck - quickcheck-classes - quickcheck-instances - text - ]; - description = "Aeson JSON support for Linnet"; - license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "linnet-conduit" = callPackage ( - { - mkDerivation, - base, - bytestring, - conduit, - hspec, - http-types, - linnet, - QuickCheck, - quickcheck-classes, - quickcheck-instances, - wai, - warp, - }: - mkDerivation { - pname = "linnet-conduit"; - version = "0.4.0.1"; - sha256 = "02ixcf0b1p2c7cyiaghx564lkyy2m48m8p1y6dxim9ygjgamhhl9"; - libraryHaskellDepends = [ - base - bytestring - conduit - http-types - linnet - wai - warp - ]; - testHaskellDepends = [ - base - bytestring - conduit - hspec - http-types - linnet - QuickCheck - quickcheck-classes - quickcheck-instances - wai - warp - ]; - description = "Conduit-backed support for streaming in Linnet"; - license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "linode" = callPackage ( - { - mkDerivation, - aeson, - async, - base, - binary, - bytestring, - containers, - errors, - lens, - process, - retry, - safe, - tasty, - tasty-hunit, - tasty-quickcheck, - text, - transformers, - wreq, - }: - mkDerivation { - pname = "linode"; - version = "0.3.0.0"; - sha256 = "17hk0k9d91wi28h5k90dng0b64bhl9scbj20pmvqbk8rin9kap3w"; - libraryHaskellDepends = [ - aeson - async - base - binary - bytestring - containers - errors - lens - process - retry - safe - text - transformers - wreq - ]; - testHaskellDepends = [ - aeson - base - bytestring - containers - tasty - tasty-hunit - tasty-quickcheck - text - ]; - description = "Bindings to the Linode API"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "linode-v4" = callPackage ( - { - mkDerivation, - aeson, - base, - bytestring, - hspec, - http-conduit, - unordered-containers, - }: - mkDerivation { - pname = "linode-v4"; - version = "0.1.0.4"; - sha256 = "1qc6nm9845m9vgzdm0fbsrw4924cpcvcgzqxzbikml0lc1284g7r"; - libraryHaskellDepends = [ - aeson - base - bytestring - http-conduit - unordered-containers - ]; - testHaskellDepends = [ - base - hspec - ]; - description = "Haskell wrapper for the Linode v4 API"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "linux-blkid" = callPackage ( - { - mkDerivation, - base, - blkid, - monad-control, - transformers, - transformers-base, - }: - mkDerivation { - pname = "linux-blkid"; - version = "0.2.0.0"; - sha256 = "06f7zwb40zgps6503cyp65c68181gj3s9q1s6vh43y6najiimzqx"; - libraryHaskellDepends = [ - base - monad-control - transformers - transformers-base - ]; - libraryPkgconfigDepends = [ blkid ]; - description = "Linux libblkid"; - license = lib.licenses.lgpl21Only; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { blkid = null; }; - "linux-capabilities" = callPackage ( { mkDerivation, base }: mkDerivation { @@ -421160,55 +242723,6 @@ self: { } ) { }; - "linux-cgroup" = callPackage ( - { - mkDerivation, - base, - filepath, - }: - mkDerivation { - pname = "linux-cgroup"; - version = "0.1.1.2"; - sha256 = "0dd1ii1n6y9frilnkxikzahp9xrh3i334i7syvd8fyxp51dpzgy1"; - libraryHaskellDepends = [ - base - filepath - ]; - description = "Very basic interface to the Linux CGroup Virtual Filesystem"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "linux-evdev" = callPackage ( - { - mkDerivation, - base, - bytestring, - time, - unix, - }: - mkDerivation { - pname = "linux-evdev"; - version = "0.3.2"; - sha256 = "04ajbcvn8i2xa678f3sgbbrn00rxm1k86wrj9n6w2r8h2yda9s9r"; - revision = "2"; - editedCabalFile = "1gnjyc8q7xq60pm362hwibwh97jw8pv66xvqv88cm9nbh0ccf6q2"; - libraryHaskellDepends = [ - base - bytestring - time - unix - ]; - description = "Bindings to Linux evdev input device interface"; - license = lib.licenses.bsd3; - platforms = lib.platforms.linux; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "linux-file-extents" = callPackage ( { mkDerivation, @@ -421231,29 +242745,6 @@ self: { } ) { }; - "linux-framebuffer" = callPackage ( - { - mkDerivation, - base, - bindings-DSL, - unix, - }: - mkDerivation { - pname = "linux-framebuffer"; - version = "0"; - sha256 = "0p469lmb6z9l2km607va95hqlhq48kx4p6q2dwgx16pw8w9rhmfg"; - libraryHaskellDepends = [ - base - bindings-DSL - unix - ]; - description = "Linux fbdev (framebuffer device, /dev/fbX) utility functions"; - license = "unknown"; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "linux-inotify" = callPackage ( { mkDerivation, @@ -421278,29 +242769,6 @@ self: { } ) { }; - "linux-kmod" = callPackage ( - { - mkDerivation, - base, - directory, - libkmod, - }: - mkDerivation { - pname = "linux-kmod"; - version = "0.1.0.1"; - sha256 = "1vqbibp93fw6r03v5q2cisya6m12xb12rad11myxrkbn29rjmhws"; - libraryHaskellDepends = [ - base - directory - ]; - libraryPkgconfigDepends = [ libkmod ]; - description = "Linux kernel modules support"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { libkmod = null; }; - "linux-mount" = callPackage ( { mkDerivation, @@ -421344,153 +242812,6 @@ self: { } ) { }; - "linux-perf" = callPackage ( - { - mkDerivation, - base, - binary, - bytestring, - containers, - directory, - filepath, - ghc-events, - mtl, - pretty, - process, - unix, - }: - mkDerivation { - pname = "linux-perf"; - version = "0.3"; - sha256 = "18akjagbqw2fswrnp4ifzivwdwsbny28kvnm0hfc1ysyy9id8511"; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base - binary - bytestring - containers - mtl - pretty - ]; - executableHaskellDepends = [ - base - bytestring - containers - directory - filepath - ghc-events - process - unix - ]; - description = "Read files generated by perf on Linux"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "linux-ptrace" = callPackage ( - { - mkDerivation, - base, - bytestring, - mmap, - posix-waitpid, - process, - template-haskell, - unix, - }: - mkDerivation { - pname = "linux-ptrace"; - version = "0.1.2"; - sha256 = "0hzniy9vlycbsqkrr9xxdgnx070h5v6jz4gqx7rc60a3q0hqn43m"; - revision = "1"; - editedCabalFile = "0ai4g5d1bjjzkrmxpkcg4r6s9nivm4bqlh389y36cvf5s8iaqkqh"; - libraryHaskellDepends = [ - base - bytestring - mmap - posix-waitpid - process - template-haskell - unix - ]; - description = "Wrapping of Linux' ptrace(2)"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "linux-xattr" = callPackage ( - { - mkDerivation, - base, - bytestring, - }: - mkDerivation { - pname = "linux-xattr"; - version = "0.1.1.0"; - sha256 = "0rpq5sm557gm227id2rfsffgr47lrj4d4kpzh194d74dx2qkg5g6"; - libraryHaskellDepends = [ - base - bytestring - ]; - description = "Read, set and list extended attributes"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "linx-gateway" = callPackage ( - { - mkDerivation, - base, - binary, - bytestring, - network, - QuickCheck, - test-framework, - test-framework-quickcheck2, - time, - }: - mkDerivation { - pname = "linx-gateway"; - version = "0.1.0.2"; - sha256 = "0diacwvxpq2iyfzlcmdqrbfndhmlmgzq9hvxlyp12idlzwa9p1cq"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - binary - bytestring - network - ]; - executableHaskellDepends = [ - base - binary - bytestring - network - time - ]; - testHaskellDepends = [ - base - binary - bytestring - QuickCheck - test-framework - test-framework-quickcheck2 - ]; - description = "Implementation of the Enea LINX gateway protocol"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - mainProgram = "Ping"; - broken = true; - } - ) { }; - "lio" = callPackage ( { mkDerivation, @@ -421514,46 +242835,6 @@ self: { } ) { }; - "lio-eci11" = callPackage ( - { - mkDerivation, - array, - base, - bytestring, - containers, - dclabel-eci11, - directory, - filepath, - mtl, - old-time, - SHA, - time, - unix, - }: - mkDerivation { - pname = "lio-eci11"; - version = "0.2"; - sha256 = "11vl27kn0wdxndkwn3yvxd6kg9jv0lilxpvx2hkax37lq3x15rc8"; - libraryHaskellDepends = [ - array - base - bytestring - containers - dclabel-eci11 - directory - filepath - mtl - old-time - SHA - time - unix - ]; - description = "Labeled IO library"; - license = "GPL"; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "lio-fs" = callPackage ( { mkDerivation, @@ -421592,68 +242873,6 @@ self: { } ) { }; - "lio-simple" = callPackage ( - { - mkDerivation, - aeson, - attoparsec, - base, - base64-bytestring, - bytestring, - cmdargs, - conduit, - directory, - filepath, - http-types, - lio, - simple, - simple-templates, - text, - wai, - wai-extra, - warp, - }: - mkDerivation { - pname = "lio-simple"; - version = "0.0.2.2"; - sha256 = "1nddiakk6b9biay6ijnc48dxcfgpi9vx4g6a8r9vz6cjh6mh0154"; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base - base64-bytestring - bytestring - conduit - filepath - http-types - lio - simple - simple-templates - text - wai - wai-extra - warp - ]; - executableHaskellDepends = [ - aeson - attoparsec - base - bytestring - cmdargs - directory - filepath - simple-templates - text - ]; - description = "LIO support for the Simple web framework"; - license = lib.licenses.lgpl3Only; - hydraPlatforms = lib.platforms.none; - mainProgram = "lio-simple"; - broken = true; - } - ) { }; - "lion" = callPackage ( { mkDerivation, @@ -421687,102 +242906,6 @@ self: { } ) { }; - "lipsum-gen" = callPackage ( - { - mkDerivation, - base, - QuickCheck, - }: - mkDerivation { - pname = "lipsum-gen"; - version = "0.1.0.2"; - sha256 = "07bkxv6cmjf75jy31gbzs4nkjlynhkg8qv2idl71xilgzpnalk3c"; - libraryHaskellDepends = [ - base - QuickCheck - ]; - description = "Generators for random sequences of English-like nonsense text"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "liquid" = callPackage ( - { - mkDerivation, - aeson, - attoparsec, - base, - criterion, - hashable, - lens, - lens-aeson, - mtl, - QuickCheck, - scientific, - semigroups, - tasty, - tasty-hunit, - tasty-quickcheck, - tasty-th, - text, - unordered-containers, - validation, - vector, - }: - mkDerivation { - pname = "liquid"; - version = "0.1.0.3"; - sha256 = "02z9rrmzh89ipwr03b47vvlp58gk55yzc94s6s94ig5bzcyinkf1"; - libraryHaskellDepends = [ - aeson - attoparsec - base - hashable - lens - lens-aeson - mtl - scientific - semigroups - text - unordered-containers - validation - vector - ]; - testHaskellDepends = [ - aeson - attoparsec - base - lens - lens-aeson - mtl - QuickCheck - scientific - semigroups - tasty - tasty-hunit - tasty-quickcheck - tasty-th - text - unordered-containers - validation - vector - ]; - benchmarkHaskellDepends = [ - aeson - attoparsec - base - criterion - text - ]; - description = "Liquid template language library"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "liquid-base" = callPackage ( { mkDerivation, @@ -422575,66 +243698,6 @@ self: { } ) { }; - "liquidhaskell-cabal" = callPackage ( - { - mkDerivation, - base, - Cabal, - directory, - filepath, - }: - mkDerivation { - pname = "liquidhaskell-cabal"; - version = "0.2.1.0"; - sha256 = "1150y4dqdg735jysyak4nfrc0lbmk94mwf6dw5s9lsp73pq6gy9n"; - revision = "1"; - editedCabalFile = "0c76lchw32dzfn8q4qckxqjzcnw909x7niiwlzadas8mv9p93ybl"; - libraryHaskellDepends = [ - base - Cabal - directory - filepath - ]; - description = "Liquid Haskell integration for Cabal and Stack"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "liquidhaskell-cabal-demo" = callPackage ( - { - mkDerivation, - base, - Cabal, - liquidhaskell-cabal, - }: - mkDerivation { - pname = "liquidhaskell-cabal-demo"; - version = "0.2.1.1"; - sha256 = "11k2j13gclnmj0ky8pd7cgzps8ip8gygkj25gnbrg7kqj5jbvj5x"; - isLibrary = true; - isExecutable = true; - setupHaskellDepends = [ - base - Cabal - liquidhaskell-cabal - ]; - libraryHaskellDepends = [ - base - liquidhaskell-cabal - ]; - executableHaskellDepends = [ - base - liquidhaskell-cabal - ]; - description = "Demo of Liquid Haskell integration for Cabal and Stack"; - license = "unknown"; - hydraPlatforms = lib.platforms.none; - mainProgram = "ffi"; - } - ) { }; - "lispparser" = callPackage ( { mkDerivation, @@ -422744,20 +243807,6 @@ self: { } ) { }; - "list-mux" = callPackage ( - { mkDerivation, base }: - mkDerivation { - pname = "list-mux"; - version = "1.0"; - sha256 = "147zb156g79a5p1w0b9vcvjy5x7nsrhng5rgjqq3cy3xpbam4nys"; - libraryHaskellDepends = [ base ]; - description = "List Multiplexing"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "list-predicate" = callPackage ( { mkDerivation, @@ -422780,47 +243829,6 @@ self: { } ) { }; - "list-prompt" = callPackage ( - { - mkDerivation, - ansi-terminal, - base, - data-default, - hspec, - stm, - terminal-size, - vty, - }: - mkDerivation { - pname = "list-prompt"; - version = "0.1.1.0"; - sha256 = "1vjdr8q1fzk07a90hpsd2x4ga0cczmjn5r3v3axdwh19h1x3qcn7"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - ansi-terminal - base - data-default - stm - terminal-size - vty - ]; - testHaskellDepends = [ - ansi-terminal - base - data-default - hspec - stm - terminal-size - vty - ]; - description = "A simple list prompt UI for the terminal"; - license = lib.licenses.gpl2Only; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "list-remote-forwards" = callPackage ( { mkDerivation, base }: mkDerivation { @@ -422927,203 +243935,6 @@ self: { } ) { }; - "list-t-attoparsec" = callPackage ( - { - mkDerivation, - attoparsec, - base-prelude, - either, - hspec, - list-t, - list-t-text, - text, - transformers, - }: - mkDerivation { - pname = "list-t-attoparsec"; - version = "0.4.1"; - sha256 = "0i7x1dxkw4yyhaqimxiz3kcjx6njz5pw5n1ic9b4d4mxi9glmms9"; - libraryHaskellDepends = [ - attoparsec - base-prelude - either - list-t - text - transformers - ]; - testHaskellDepends = [ - attoparsec - base-prelude - either - hspec - list-t - list-t-text - text - ]; - description = "An \"attoparsec\" adapter for \"list-t\""; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "list-t-html-parser" = callPackage ( - { - mkDerivation, - base-prelude, - case-insensitive, - conversion, - conversion-case-insensitive, - conversion-text, - either, - hspec, - html-entities, - html-tokenizer, - list-t, - list-t-attoparsec, - list-t-text, - mtl-prelude, - text, - xml-types, - }: - mkDerivation { - pname = "list-t-html-parser"; - version = "0.4.2"; - sha256 = "0djqmmh1fnn0mkahmx6wxj94622388b4girl96pb9bh6sa55mga2"; - libraryHaskellDepends = [ - base-prelude - case-insensitive - conversion - conversion-case-insensitive - conversion-text - either - html-entities - html-tokenizer - list-t - mtl-prelude - text - xml-types - ]; - testHaskellDepends = [ - base-prelude - conversion - conversion-text - either - hspec - html-tokenizer - list-t-attoparsec - list-t-text - text - xml-types - ]; - description = "Streaming HTML parser"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "list-t-http-client" = callPackage ( - { - mkDerivation, - base-prelude, - bytestring, - http-client, - list-t, - mtl-prelude, - }: - mkDerivation { - pname = "list-t-http-client"; - version = "0.1.0.1"; - sha256 = "02wxqsfixzv7ccznydp3vij7maqvxhsbailakij2fcfrf2acw3g2"; - libraryHaskellDepends = [ - base-prelude - bytestring - http-client - list-t - mtl-prelude - ]; - description = "A streaming HTTP client"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "list-t-libcurl" = callPackage ( - { - mkDerivation, - base, - base-prelude, - bytestring, - curlhs, - list-t, - mtl-prelude, - resource-pool, - stm, - }: - mkDerivation { - pname = "list-t-libcurl"; - version = "0.3.3"; - sha256 = "0sm1aflzh5ahnpyp0rbrx6c7pl53agd1170hffn3y9w45zp3dpq2"; - libraryHaskellDepends = [ - base - base-prelude - bytestring - curlhs - list-t - mtl-prelude - resource-pool - stm - ]; - description = "A \"libcurl\"-based streaming HTTP client"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "list-t-text" = callPackage ( - { - mkDerivation, - base, - base-prelude, - bytestring, - hspec, - list-t, - mtl-prelude, - QuickCheck, - quickcheck-instances, - text, - transformers, - }: - mkDerivation { - pname = "list-t-text"; - version = "0.2.1"; - sha256 = "1c127lxs2fzxfjy1wkr49pda2pb48zk3fxz65sh5nqjym5ldqzv9"; - libraryHaskellDepends = [ - base-prelude - bytestring - list-t - mtl-prelude - text - ]; - testHaskellDepends = [ - base - base-prelude - bytestring - hspec - list-t - QuickCheck - quickcheck-instances - text - transformers - ]; - description = "A streaming text codec"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "list-transformer" = callPackage ( { mkDerivation, @@ -423270,20 +244081,6 @@ self: { } ) { }; - "list-zip-def" = callPackage ( - { mkDerivation, base }: - mkDerivation { - pname = "list-zip-def"; - version = "0.1.0.3"; - sha256 = "0sklydccvdbxnj0c79lj7pcvw5v0bkycs9zp566gdcfy08qcjq79"; - libraryHaskellDepends = [ base ]; - description = "Provides zips with default values"; - license = lib.licenses.publicDomain; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "list-zipper" = callPackage ( { mkDerivation, @@ -423355,73 +244152,6 @@ self: { } ) { }; - "listenbrainz-client" = callPackage ( - { - mkDerivation, - aeson, - base, - free, - freer-effects, - http-client, - kan-extensions, - mtl, - servant, - servant-client, - text, - time, - transformers, - }: - mkDerivation { - pname = "listenbrainz-client"; - version = "1.1.1"; - sha256 = "0lp72jg1ndahc4jxzg2wk1amb3mbbbgs1w7sirangw864j477q4m"; - libraryHaskellDepends = [ - aeson - base - free - freer-effects - http-client - kan-extensions - mtl - servant - servant-client - text - time - transformers - ]; - description = "A client library to the ListenBrainz project"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "listlike-instances" = callPackage ( - { - mkDerivation, - base, - bytestring, - ListLike, - text, - vector, - }: - mkDerivation { - pname = "listlike-instances"; - version = "0.2.3.1"; - sha256 = "0mkhnqn7wxspzxvivhaksxmxp7d6x9bazhl28nl9gck56bpa90sm"; - libraryHaskellDepends = [ - base - bytestring - ListLike - text - vector - ]; - description = "Extra instances of the ListLike class"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "lists" = callPackage ( { mkDerivation, @@ -423476,163 +244206,6 @@ self: { } ) { }; - "liszt" = callPackage ( - { - mkDerivation, - base, - binary, - bytestring, - cereal, - containers, - cpu, - deepseq, - directory, - exceptions, - filepath, - fsnotify, - gauge, - network, - reflection, - scientific, - sendfile, - stm, - stm-delay, - text, - transformers, - unordered-containers, - vector, - vector-th-unbox, - winery, - }: - mkDerivation { - pname = "liszt"; - version = "0.2"; - sha256 = "1dy7c1l64ylgyxsi5ivxdc4kikaja4yhakx2z5i1sdk7kc7gkr51"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - binary - bytestring - cereal - containers - cpu - deepseq - directory - exceptions - filepath - fsnotify - network - reflection - scientific - sendfile - stm - stm-delay - text - transformers - unordered-containers - vector - vector-th-unbox - winery - ]; - executableHaskellDepends = [ - base - binary - bytestring - cereal - containers - cpu - deepseq - directory - exceptions - filepath - fsnotify - network - reflection - scientific - sendfile - stm - stm-delay - text - transformers - unordered-containers - vector - vector-th-unbox - winery - ]; - benchmarkHaskellDepends = [ - base - binary - bytestring - cereal - containers - cpu - deepseq - directory - exceptions - filepath - fsnotify - gauge - network - reflection - scientific - sendfile - stm - stm-delay - text - transformers - unordered-containers - vector - vector-th-unbox - winery - ]; - description = "Append only key-list database"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "lit" = callPackage ( - { - mkDerivation, - base, - blaze-html, - blaze-markup, - cheapskate, - directory, - filepath, - highlighting-kate, - parsec, - text, - time, - unordered-containers, - }: - mkDerivation { - pname = "lit"; - version = "0.1.10.0"; - sha256 = "0din9zh9llnrny1anmlhmpsi0nps5qr4jknpwjxc853wm78km7sl"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - blaze-html - blaze-markup - cheapskate - directory - filepath - highlighting-kate - parsec - text - time - unordered-containers - ]; - description = "A simple tool for literate programming"; - license = "GPL"; - hydraPlatforms = lib.platforms.none; - mainProgram = "lit"; - } - ) { }; - "literally" = callPackage ( { mkDerivation, base }: mkDerivation { @@ -423645,20 +244218,6 @@ self: { } ) { }; - "literals" = callPackage ( - { mkDerivation, base }: - mkDerivation { - pname = "literals"; - version = "1.0"; - sha256 = "06n4svp0qss78l8827qmppmd63877wq01d6w9xagd10vn3c4hs2j"; - libraryHaskellDepends = [ base ]; - description = "Non-overloaded functions for concrete literals"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "literatex" = callPackage ( { mkDerivation, @@ -423908,6 +244467,7 @@ self: { description = "Live coding of MIDI music"; license = "GPL"; hydraPlatforms = lib.platforms.none; + broken = true; } ) { }; @@ -423938,430 +244498,145 @@ self: { vinyl-gl, }: mkDerivation { - pname = "liveplot"; - version = "0.1.0.0"; - sha256 = "1nlh22ygssvzrnw72ixwkkzcnp2q6qg0yz1nv6h9x6fr7zv3dhs1"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - andromeda - base - bytestring - containers - directory - filepath - GLFW-b - GLUtil - lens - linear - mvc - OpenGL - pipes - pipes-extras - pipes-misc - stm - time - transformers - Vec - vector - vinyl - vinyl-gl - ]; - executableHaskellDepends = [ - base - mvc - pipes - ]; - description = "Liveplotting"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { andromeda = null; }; - - "ll-picosat" = callPackage ( - { - mkDerivation, - base, - picosat, - }: - mkDerivation { - pname = "ll-picosat"; - version = "0.1.0.0"; - sha256 = "0393ccnlink30492aw1gyv4jzd7rsckd8ymkm1wgbpma13vkf67h"; - libraryHaskellDepends = [ base ]; - librarySystemDepends = [ picosat ]; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { inherit (pkgs) picosat; }; - - "llama-cpp-haskell" = callPackage ( - { - mkDerivation, - aeson, - attoparsec, - base, - bytestring, - conduit, - conduit-extra, - exceptions, - http-client, - http-conduit, - http-types, - optparse-generic, - text, - }: - mkDerivation { - pname = "llama-cpp-haskell"; - version = "0.2.1"; - sha256 = "0a20i46j2hmk3nv0jq9gpp4mf0fcpqb3dzv5cygas0lhq6r862kh"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson - attoparsec - base - bytestring - conduit - conduit-extra - exceptions - http-client - http-conduit - http-types - text - ]; - executableHaskellDepends = [ - aeson - attoparsec - base - bytestring - conduit - conduit-extra - exceptions - http-client - http-conduit - http-types - optparse-generic - text - ]; - description = "Haskell bindings for the llama.cpp llama-server and a simple CLI"; - license = lib.licenses.agpl3Only; - mainProgram = "llamacall"; - } - ) { }; - - "llama-cpp-hs" = callPackage ( - { - mkDerivation, - base, - bytestring, - derive-storable, - llama-cpp, - tasty, - tasty-hunit, - }: - mkDerivation { - pname = "llama-cpp-hs"; - version = "0.1.0.0"; - sha256 = "1zm3zkjx1n58dzjac3iln63a1x0kz5k7b5sxa1x6ahndvzy142qj"; - libraryHaskellDepends = [ - base - bytestring - derive-storable - ]; - librarySystemDepends = [ llama-cpp ]; - testHaskellDepends = [ - base - bytestring - derive-storable - tasty - tasty-hunit - ]; - description = "Haskell FFI bindings to the llama.cpp LLM inference library"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { inherit (pkgs) llama-cpp; }; - - "llrbtree" = callPackage ( - { mkDerivation, base }: - mkDerivation { - pname = "llrbtree"; - version = "0.1.1"; - sha256 = "057bp1f1mpzlgg408b02x1bdzsixrrkcl1536nyvhp43rvxmgj61"; - libraryHaskellDepends = [ base ]; - description = "Purely functional sets and heaps"; - license = lib.licenses.bsd3; - } - ) { }; - - "llsd" = callPackage ( - { - mkDerivation, - base, - binary, - bytestring, - cereal, - containers, - dataenc, - ghc-prim, - hexpat, - mtl, - network, - old-locale, - parsec, - pretty, - random, - template-haskell, - text, - time, - utf8-string, - uuid, - }: - mkDerivation { - pname = "llsd"; - version = "0.2.0.0"; - sha256 = "1v1yaaj02qk6z58kiz3g7dr9cik8141vv409cyxlzqv1k79rpzrg"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - binary - bytestring - cereal - containers - dataenc - ghc-prim - hexpat - mtl - network - old-locale - parsec - pretty - random - template-haskell - text - time - utf8-string - uuid - ]; - description = "An implementation of the LLSD data system"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - mainProgram = "llsdutil"; - broken = true; - } - ) { }; - - "llvm" = callPackage ( - { - mkDerivation, - base, - bytestring, - containers, - directory, - llvm-base, - mtl, - process, - type-level, - }: - mkDerivation { - pname = "llvm"; - version = "3.2.0.2"; - sha256 = "11k1m80vg9x6fgiyh9gxzl1i2i0l0jw9hbn3gs1d1dd7avzl9mrr"; - libraryHaskellDepends = [ - base - bytestring - containers - directory - llvm-base - mtl - process - type-level - ]; - description = "Bindings to the LLVM compiler toolkit"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "llvm-analysis" = callPackage ( - { - mkDerivation, - array, - base, - boomerang, - bytestring, - containers, - deepseq, - directory, - failure, - fgl, - filemanip, - filepath, - GenericPretty, - graphviz, - hashable, - hoopl, - HUnit, - ifscs, - itanium-abi, - lens, - llvm-base-types, - llvm-data-interop, - monad-par, - process, - temporary, - test-framework, - test-framework-hunit, - text, - transformers, - uniplate, - unordered-containers, - vector, - }: - mkDerivation { - pname = "llvm-analysis"; - version = "0.3.0"; - sha256 = "0jck1c9wy11wjss6aji64jw927mrncwd2nmnq65zq85r5hha3m8k"; + pname = "liveplot"; + version = "0.1.0.0"; + sha256 = "1nlh22ygssvzrnw72ixwkkzcnp2q6qg0yz1nv6h9x6fr7zv3dhs1"; + isLibrary = true; + isExecutable = true; libraryHaskellDepends = [ - array + andromeda base - boomerang bytestring containers - deepseq directory - failure - fgl - filemanip filepath - GenericPretty - graphviz - hashable - hoopl - HUnit - ifscs - itanium-abi + GLFW-b + GLUtil lens - llvm-base-types - monad-par - process - temporary - test-framework - test-framework-hunit - text + linear + mvc + OpenGL + pipes + pipes-extras + pipes-misc + stm + time transformers - uniplate - unordered-containers + Vec vector + vinyl + vinyl-gl ]; - testHaskellDepends = [ + executableHaskellDepends = [ base - bytestring - containers - filepath - HUnit - itanium-abi - llvm-data-interop - transformers - uniplate - unordered-containers + mvc + pipes ]; - description = "A Haskell library for analyzing LLVM bitcode"; + description = "Liveplotting"; license = lib.licenses.bsd3; hydraPlatforms = lib.platforms.none; + broken = true; } - ) { }; + ) { andromeda = null; }; - "llvm-base" = callPackage ( + "llama-cpp-haskell" = callPackage ( { mkDerivation, + aeson, + attoparsec, base, - mtl, + bytestring, + conduit, + conduit-extra, + exceptions, + http-client, + http-conduit, + http-types, + optparse-generic, + text, }: mkDerivation { - pname = "llvm-base"; - version = "3.2.0.2"; - sha256 = "1f76nb85hnidp06v6lbl4aasac4h7ff9r8i054m8cnby2vc59r4n"; + pname = "llama-cpp-haskell"; + version = "0.2.1"; + sha256 = "0a20i46j2hmk3nv0jq9gpp4mf0fcpqb3dzv5cygas0lhq6r862kh"; + isLibrary = true; + isExecutable = true; libraryHaskellDepends = [ + aeson + attoparsec base - mtl + bytestring + conduit + conduit-extra + exceptions + http-client + http-conduit + http-types + text ]; - description = "FFI bindings to the LLVM compiler toolkit"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; + executableHaskellDepends = [ + aeson + attoparsec + base + bytestring + conduit + conduit-extra + exceptions + http-client + http-conduit + http-types + optparse-generic + text + ]; + description = "Haskell bindings for the llama.cpp llama-server and a simple CLI"; + license = lib.licenses.agpl3Only; + mainProgram = "llamacall"; } ) { }; - "llvm-base-types" = callPackage ( + "llama-cpp-hs" = callPackage ( { mkDerivation, base, - c2hs, - containers, - deepseq, - dwarf, - failure, - GenericPretty, - graphviz, - hashable, - pretty, - regex-tdfa, - text, - transformers, - unordered-containers, - vector, + bytestring, + derive-storable, + llama-cpp, + tasty, + tasty-hunit, }: mkDerivation { - pname = "llvm-base-types"; - version = "0.3.0"; - sha256 = "142xc7w250y0nx60qnm4gc5hrqjm1bxk0nhgsp669g5kvxqcd3bn"; - enableSeparateDataOutput = true; + pname = "llama-cpp-hs"; + version = "0.1.0.0"; + sha256 = "1zm3zkjx1n58dzjac3iln63a1x0kz5k7b5sxa1x6ahndvzy142qj"; libraryHaskellDepends = [ base - containers - deepseq - dwarf - failure - GenericPretty - graphviz - hashable - pretty - regex-tdfa - text - transformers - unordered-containers - vector + bytestring + derive-storable ]; - libraryToolDepends = [ c2hs ]; - description = "The base types for a mostly pure Haskell LLVM analysis library"; - license = lib.licenses.bsd3; + librarySystemDepends = [ llama-cpp ]; + testHaskellDepends = [ + base + bytestring + derive-storable + tasty + tasty-hunit + ]; + description = "Haskell FFI bindings to the llama.cpp LLM inference library"; + license = lib.licenses.mit; hydraPlatforms = lib.platforms.none; + broken = true; } - ) { }; + ) { inherit (pkgs) llama-cpp; }; - "llvm-base-util" = callPackage ( - { - mkDerivation, - base, - llvm-base, - }: + "llrbtree" = callPackage ( + { mkDerivation, base }: mkDerivation { - pname = "llvm-base-util"; - version = "3.0.1.0"; - sha256 = "07q6dvwkg7h6qkwq0a7719g82anipj2pk0xid5p24pvzssa9z22w"; - libraryHaskellDepends = [ - base - llvm-base - ]; - description = "Utilities for bindings to the LLVM compiler toolkit"; + pname = "llrbtree"; + version = "0.1.1"; + sha256 = "057bp1f1mpzlgg408b02x1bdzsixrrkcl1536nyvhp43rvxmgj61"; + libraryHaskellDepends = [ base ]; + description = "Purely functional sets and heaps"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; } ) { }; @@ -424423,58 +244698,6 @@ self: { } ) { }; - "llvm-data-interop" = callPackage ( - { - mkDerivation, - array, - base, - bytestring, - c2hs, - containers, - data-default, - deepseq, - dwarf, - hashable, - hashtables, - llvm-base-types, - loch-th, - mtl, - text, - transformers, - unification-fd, - unordered-containers, - vector, - }: - mkDerivation { - pname = "llvm-data-interop"; - version = "0.3.0"; - sha256 = "08kflxb0qannp6nb2sizz0bhl850dl1sszl1hk9l28m21r2akdy1"; - libraryHaskellDepends = [ - array - base - bytestring - containers - data-default - deepseq - dwarf - hashable - hashtables - llvm-base-types - loch-th - mtl - text - transformers - unification-fd - unordered-containers - vector - ]; - libraryToolDepends = [ c2hs ]; - description = "A low-level data interoperability binding for LLVM"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "llvm-dsl" = callPackage ( { mkDerivation, @@ -424528,47 +244751,6 @@ self: { } ) { }; - "llvm-extension" = callPackage ( - { - mkDerivation, - base, - containers, - cpuid, - llvm-extra, - llvm-tf, - non-empty, - prelude-compat, - tfp, - transformers, - unsafe, - utility-ht, - }: - mkDerivation { - pname = "llvm-extension"; - version = "0.0"; - sha256 = "1j07sg35izlnasc1mx66qy20hq82yyavpl300f4794px1l4p8dha"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - containers - cpuid - llvm-extra - llvm-tf - non-empty - prelude-compat - tfp - transformers - unsafe - utility-ht - ]; - description = "Processor specific intrinsics for the llvm interface"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "llvm-extra" = callPackage ( { mkDerivation, @@ -424682,293 +244864,6 @@ self: { } ) { }; - "llvm-general" = callPackage ( - { - mkDerivation, - array, - base, - bytestring, - containers, - HUnit, - llvm-config, - llvm-general-pure, - mtl, - parsec, - QuickCheck, - setenv, - template-haskell, - test-framework, - test-framework-hunit, - test-framework-quickcheck2, - transformers, - transformers-compat, - utf8-string, - }: - mkDerivation { - pname = "llvm-general"; - version = "3.5.1.2"; - sha256 = "15yjdf495f496fr9kq2pl6lirwxrsyadsjhnwwiqcnj7q56b8x90"; - libraryHaskellDepends = [ - array - base - bytestring - containers - llvm-general-pure - mtl - parsec - setenv - template-haskell - transformers - transformers-compat - utf8-string - ]; - libraryToolDepends = [ llvm-config ]; - testHaskellDepends = [ - base - containers - HUnit - llvm-general-pure - mtl - QuickCheck - test-framework - test-framework-hunit - test-framework-quickcheck2 - transformers - transformers-compat - ]; - description = "General purpose LLVM bindings"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { llvm-config = null; }; - - "llvm-general-pure" = callPackage ( - { - mkDerivation, - base, - containers, - HUnit, - mtl, - parsec, - QuickCheck, - setenv, - template-haskell, - test-framework, - test-framework-hunit, - test-framework-quickcheck2, - transformers, - }: - mkDerivation { - pname = "llvm-general-pure"; - version = "3.5.1.0"; - sha256 = "15w09dwz8170mnrqj09l26irzw1kns1abqphshypj0y2n64r2d75"; - libraryHaskellDepends = [ - base - containers - mtl - parsec - setenv - template-haskell - transformers - ]; - testHaskellDepends = [ - base - containers - HUnit - mtl - QuickCheck - test-framework - test-framework-hunit - test-framework-quickcheck2 - ]; - description = "Pure Haskell LLVM functionality (no FFI)"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "llvm-general-quote" = callPackage ( - { - mkDerivation, - alex, - array, - base, - bytestring, - containers, - happy, - haskell-src-meta, - HUnit, - llvm-general-pure, - mainland-pretty, - mtl, - split, - srcloc, - syb, - symbol, - tasty, - tasty-hunit, - template-haskell, - th-lift, - }: - mkDerivation { - pname = "llvm-general-quote"; - version = "0.2.0.0"; - sha256 = "02j3npamy5s6ircfd9njg0y25asbpxl6fpsxjpxy7k4v1y6c3b75"; - libraryHaskellDepends = [ - array - base - bytestring - containers - haskell-src-meta - llvm-general-pure - mainland-pretty - mtl - split - srcloc - syb - symbol - template-haskell - th-lift - ]; - libraryToolDepends = [ - alex - happy - ]; - testHaskellDepends = [ - base - containers - HUnit - llvm-general-pure - tasty - tasty-hunit - ]; - description = "QuasiQuoting llvm code for llvm-general"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "llvm-hs" = callPackage ( - { - mkDerivation, - array, - attoparsec, - base, - bytestring, - Cabal, - containers, - exceptions, - llvm-config, - llvm-hs-pure, - mtl, - pretty-show, - process, - QuickCheck, - tasty, - tasty-hunit, - tasty-quickcheck, - template-haskell, - temporary, - transformers, - utf8-string, - }: - mkDerivation { - pname = "llvm-hs"; - version = "9.0.1"; - sha256 = "0723xgh45h9cyxmmjsvxnsp8bpn1ljy4qgh7a7vqq3sj9d6wzq00"; - setupHaskellDepends = [ - base - Cabal - containers - ]; - libraryHaskellDepends = [ - array - attoparsec - base - bytestring - containers - exceptions - llvm-hs-pure - mtl - template-haskell - transformers - utf8-string - ]; - libraryToolDepends = [ llvm-config ]; - testHaskellDepends = [ - base - bytestring - containers - llvm-hs-pure - mtl - pretty-show - process - QuickCheck - tasty - tasty-hunit - tasty-quickcheck - temporary - transformers - ]; - description = "General purpose LLVM bindings"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { llvm-config = null; }; - - "llvm-hs-pretty" = callPackage ( - { - mkDerivation, - array, - base, - bytestring, - directory, - filepath, - llvm-hs, - llvm-hs-pure, - mtl, - prettyprinter, - tasty, - tasty-golden, - tasty-hspec, - tasty-hunit, - text, - transformers, - }: - mkDerivation { - pname = "llvm-hs-pretty"; - version = "0.9.0.0"; - sha256 = "17kj713j38lg6743dwv1gd0wcls888zazzhlw3xvxzw2n8bjahyj"; - libraryHaskellDepends = [ - array - base - bytestring - llvm-hs-pure - prettyprinter - text - ]; - testHaskellDepends = [ - base - directory - filepath - llvm-hs - llvm-hs-pure - mtl - tasty - tasty-golden - tasty-hspec - tasty-hunit - text - transformers - ]; - description = "A pretty printer for LLVM IR"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "llvm-hs-pure" = callPackage ( { mkDerivation, @@ -425018,35 +244913,6 @@ self: { } ) { }; - "llvm-ht" = callPackage ( - { - mkDerivation, - base, - bytestring, - directory, - mtl, - process, - type-level, - }: - mkDerivation { - pname = "llvm-ht"; - version = "0.7.0.0"; - sha256 = "1yn8wyp2jjjdggvf1jz7iras4f7fg2dq57ramr5prvcapc6r5yn6"; - libraryHaskellDepends = [ - base - bytestring - directory - mtl - process - type-level - ]; - description = "Bindings to the LLVM compiler toolkit with some custom extensions"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "llvm-party" = callPackage ( { mkDerivation, @@ -425347,70 +245213,6 @@ self: { } ) { }; - "llvm-tools" = callPackage ( - { - mkDerivation, - attoparsec, - attoparsec-conduit, - base, - blaze-html, - blaze-markup, - bytestring, - conduit, - containers, - directory, - filemanip, - filepath, - graphviz, - llvm-analysis, - llvm-data-interop, - optparse-applicative, - parallel-io, - process-conduit, - unordered-containers, - xml, - }: - mkDerivation { - pname = "llvm-tools"; - version = "0.2.0.1"; - sha256 = "1nyp0sgdqsaa2f2v7xgmm3s8mf2a170mzz2h3wwsi163ggvxwvhd"; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base - blaze-html - blaze-markup - bytestring - directory - filemanip - filepath - graphviz - llvm-analysis - llvm-data-interop - parallel-io - xml - ]; - executableHaskellDepends = [ - attoparsec - attoparsec-conduit - base - bytestring - conduit - containers - graphviz - llvm-analysis - llvm-data-interop - optparse-applicative - process-conduit - unordered-containers - ]; - description = "Useful tools built on llvm-analysis"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "lmdb" = callPackage ( { mkDerivation, @@ -425432,191 +245234,6 @@ self: { } ) { inherit (pkgs) lmdb; }; - "lmdb-high-level" = callPackage ( - { - mkDerivation, - base, - bytestring, - containers, - directory, - ghc-prim, - HUnit, - lmdb, - pipes, - primitive, - QuickCheck, - random, - test-framework, - test-framework-hunit, - test-framework-quickcheck2, - text, - transformers, - vector, - }: - mkDerivation { - pname = "lmdb-high-level"; - version = "0.1"; - sha256 = "03d1hh02naildlxckangva3wskf7i31cfn1dcibd0g49nh6nl1ng"; - libraryHaskellDepends = [ - base - bytestring - ghc-prim - lmdb - pipes - primitive - text - transformers - vector - ]; - testHaskellDepends = [ - base - bytestring - containers - directory - HUnit - pipes - QuickCheck - random - test-framework - test-framework-hunit - test-framework-quickcheck2 - text - ]; - description = "Higher level API for working with LMDB"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "lmdb-simple" = callPackage ( - { - mkDerivation, - base, - bytestring, - criterion, - hspec, - lmdb, - QuickCheck, - serialise, - }: - mkDerivation { - pname = "lmdb-simple"; - version = "0.4.0.0"; - sha256 = "1bq8zdym2x1yyzafyyw2syn9pg4w33y107qyrid67492zmck10zi"; - libraryHaskellDepends = [ - base - bytestring - lmdb - serialise - ]; - testHaskellDepends = [ - base - hspec - QuickCheck - ]; - benchmarkHaskellDepends = [ - base - criterion - ]; - description = "Simple API for LMDB"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "lmonad" = callPackage ( - { - mkDerivation, - base, - containers, - exceptions, - HUnit, - monad-control, - transformers, - transformers-base, - }: - mkDerivation { - pname = "lmonad"; - version = "0.1.0.0"; - sha256 = "0h4244adwf7v8hx8rcpdag5yysws3sd5s7gknw71mqi8a0rh6131"; - libraryHaskellDepends = [ - base - containers - exceptions - monad-control - transformers - transformers-base - ]; - testHaskellDepends = [ - base - containers - exceptions - HUnit - monad-control - transformers - transformers-base - ]; - description = "LMonad is an Information Flow Control (IFC) framework for Haskell applications"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "lmonad-yesod" = callPackage ( - { - mkDerivation, - attoparsec, - base, - blaze-html, - blaze-markup, - containers, - esqueleto, - haskell-src-meta, - lifted-base, - lmonad, - mtl, - persistent, - shakespeare, - tagged, - template-haskell, - text, - transformers, - yesod-core, - yesod-persistent, - }: - mkDerivation { - pname = "lmonad-yesod"; - version = "1.0.0.0"; - sha256 = "1ffcs89lq8gmc97qy1pk48v2qqjlwgzpspbxb3960d3n8g0zzgdm"; - libraryHaskellDepends = [ - attoparsec - base - blaze-html - blaze-markup - containers - esqueleto - haskell-src-meta - lifted-base - lmonad - mtl - persistent - shakespeare - tagged - template-haskell - text - transformers - yesod-core - yesod-persistent - ]; - description = "LMonad for Yesod integrates LMonad's IFC with Yesod web applications"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "lnd-client" = callPackage ( { mkDerivation, @@ -425724,7 +245341,6 @@ self: { doHaddock = false; description = "Lightning Network Daemon (LND) client library for Haskell"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "lnd-client-prof"; } ) { }; @@ -425830,33 +245446,6 @@ self: { } ) { }; - "load-balancing" = callPackage ( - { - mkDerivation, - base, - containers, - hslogger, - PSQueue, - stm, - }: - mkDerivation { - pname = "load-balancing"; - version = "1.0.1.1"; - sha256 = "1vszir1b79fdn545k3k86mgqhivyg8s5vv5v24y4cp4cc47aiwmi"; - libraryHaskellDepends = [ - base - containers - hslogger - PSQueue - stm - ]; - description = "Client-side load balancing utilities"; - license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "load-env" = callPackage ( { mkDerivation, @@ -425891,33 +245480,6 @@ self: { } ) { }; - "load-font" = callPackage ( - { - mkDerivation, - base, - c2hs, - Cabal, - }: - mkDerivation { - pname = "load-font"; - version = "0.1.0.3"; - sha256 = "1qndsbbm4fwzgkjp2y413blassyj0hxdbd99a4bpwxah95s951gw"; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; - setupHaskellDepends = [ - base - Cabal - ]; - libraryHaskellDepends = [ base ]; - libraryToolDepends = [ c2hs ]; - description = "A cross platform library for loading bundled fonts into your application"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "loadavg" = callPackage ( { mkDerivation, base }: mkDerivation { @@ -425988,54 +245550,6 @@ self: { } ) { }; - "local-address" = callPackage ( - { - mkDerivation, - base, - network, - }: - mkDerivation { - pname = "local-address"; - version = "0.0.1"; - sha256 = "1846lhs0jc8finxcp1hfgifzs7hwzzxvmmv03laxzl63p5h2k8x9"; - libraryHaskellDepends = [ - base - network - ]; - description = "Functions to get local interface address"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "local-search" = callPackage ( - { - mkDerivation, - base, - combinatorial-problems, - containers, - erf, - random, - }: - mkDerivation { - pname = "local-search"; - version = "0.0.7"; - sha256 = "0xrp34m2qfbz458g7bxdkp2lvsm0hskwxfcrm1d8n8g150ddn2xf"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base - combinatorial-problems - containers - erf - random - ]; - description = "Generalised local search within Haskell, for applications in combinatorial optimisation"; - license = "GPL"; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "localization" = callPackage ( { mkDerivation, @@ -426102,26 +245616,6 @@ self: { description = "GNU Gettext-based messages localization library"; license = lib.licenses.bsd3; hydraPlatforms = lib.platforms.none; - } - ) { }; - - "located" = callPackage ( - { - mkDerivation, - base, - text, - }: - mkDerivation { - pname = "located"; - version = "0.1.1.0"; - sha256 = "15mkhpp2r9l94qkqdxfc0llw9nbxcj8n3a70qs5lmv416a1i4qk2"; - libraryHaskellDepends = [ - base - text - ]; - description = "Source location helpers"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; broken = true; } ) { }; @@ -426147,29 +245641,6 @@ self: { } ) { }; - "located-monad-logger" = callPackage ( - { - mkDerivation, - base, - monad-logger, - text, - }: - mkDerivation { - pname = "located-monad-logger"; - version = "0.1.1.0"; - sha256 = "1xkckg3qgqrqmkli9d6cbzqf5aanqpbxchy650yflpjygwapn4xn"; - libraryHaskellDepends = [ - base - monad-logger - text - ]; - description = "Location-aware logging without Template Haskell"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "locators" = callPackage ( { mkDerivation, @@ -426207,24 +245678,6 @@ self: { } ) { }; - "loch" = callPackage ( - { mkDerivation, base }: - mkDerivation { - pname = "loch"; - version = "0.2"; - sha256 = "1dwv4v76i1fd60rrr0bla3wjz62x9dcgpd48p8z11lsjgpqarld3"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base ]; - executableHaskellDepends = [ base ]; - description = "Support for precise error locations in source files"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "loch"; - broken = true; - } - ) { }; - "loch-th" = callPackage ( { mkDerivation, @@ -426287,63 +245740,6 @@ self: { } ) { }; - "locked-poll" = callPackage ( - { - mkDerivation, - attoparsec, - base, - bytestring, - clock, - containers, - lens, - QuickCheck, - random, - regex-genex, - tasty, - tasty-golden, - tasty-hunit, - tasty-quickcheck, - time, - }: - mkDerivation { - pname = "locked-poll"; - version = "0.1.0"; - sha256 = "0r51069fw03s13ss1vmbfdpdkifdmm3yyzmrcgk5z5yfjjqrqdka"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - clock - containers - ]; - executableHaskellDepends = [ - base - clock - containers - ]; - testHaskellDepends = [ - attoparsec - base - bytestring - clock - containers - lens - QuickCheck - random - regex-genex - tasty - tasty-golden - tasty-hunit - tasty-quickcheck - time - ]; - description = "Very simple poll lock"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "locked-poll"; - } - ) { }; - "lockfree-queue" = callPackage ( { mkDerivation, @@ -426404,73 +245800,6 @@ self: { } ) { }; - "log" = callPackage ( - { - mkDerivation, - aeson, - base, - bloodhound, - bytestring, - ekg, - exceptions, - hpqtypes, - http-client, - http-types, - log-base, - log-elasticsearch, - log-postgres, - process, - random, - tasty, - tasty-hunit, - text, - text-show, - time, - transformers, - transformers-base, - }: - mkDerivation { - pname = "log"; - version = "0.9.0.1"; - sha256 = "1gjh3i0j2q72hc1gnn4knc5qhb2zc7d4pi5a22jd0dqgpkmdaay3"; - libraryHaskellDepends = [ - base - log-base - log-elasticsearch - log-postgres - ]; - testHaskellDepends = [ - aeson - base - bloodhound - bytestring - exceptions - http-client - http-types - process - random - tasty - tasty-hunit - text - time - transformers - ]; - benchmarkHaskellDepends = [ - base - ekg - hpqtypes - random - text - text-show - transformers - transformers-base - ]; - description = "Structured logging solution with multiple backends"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "log-base" = callPackage ( { mkDerivation, @@ -426557,76 +245886,6 @@ self: { } ) { }; - "log-effect" = callPackage ( - { - mkDerivation, - base, - bytestring, - extensible-effects, - monad-control, - text, - transformers-base, - }: - mkDerivation { - pname = "log-effect"; - version = "1.2.0"; - sha256 = "0d9vwwvbf9dkwppv5hz5g2lp96807adn5kjifmx3pqm0kf59bzfn"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - bytestring - extensible-effects - monad-control - text - transformers-base - ]; - executableHaskellDepends = [ - base - bytestring - extensible-effects - monad-control - text - transformers-base - ]; - description = "An extensible log effect using extensible-effects"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - mainProgram = "log-example"; - broken = true; - } - ) { }; - - "log-effect-syslog" = callPackage ( - { - mkDerivation, - base, - bytestring, - extensible-effects, - hsyslog, - log-effect, - monad-control, - transformers-base, - }: - mkDerivation { - pname = "log-effect-syslog"; - version = "0.2.0"; - sha256 = "04r96hpngw4p0k3g3fcm7dpc69ncsmi9varm7rp3agg4d4zcxkhm"; - libraryHaskellDepends = [ - base - bytestring - extensible-effects - hsyslog - log-effect - monad-control - transformers-base - ]; - description = "Syslog functions for log-effect"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "log-effectful" = callPackage ( { mkDerivation, @@ -426768,342 +246027,6 @@ self: { } ) { }; - "log-utils" = callPackage ( - { - mkDerivation, - aeson, - base, - bytestring, - cmdargs, - data-default, - exceptions, - hpqtypes, - http-types, - invariant, - kontra-config, - lifted-base, - log-base, - monad-control, - random, - text, - time, - transformers, - transformers-base, - unjson, - vector, - wai, - warp, - }: - mkDerivation { - pname = "log-utils"; - version = "0.2.2.1"; - sha256 = "151dgpkcc0hmsjw3vw13zzgqlww1mzh61k87hksfcd7dqvgcvmkj"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - aeson - base - bytestring - cmdargs - data-default - exceptions - hpqtypes - http-types - invariant - kontra-config - lifted-base - log-base - monad-control - random - text - time - transformers - transformers-base - unjson - vector - wai - warp - ]; - description = "Utils for working with logs"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "log-warper" = callPackage ( - { - mkDerivation, - aeson, - ansi-terminal, - async, - base, - containers, - data-default, - deepseq, - directory, - filepath, - fmt, - hspec, - hspec-discover, - HUnit, - lifted-async, - markdown-unlit, - microlens, - microlens-mtl, - microlens-platform, - mmorph, - monad-control, - monad-loops, - mtl, - o-clock, - QuickCheck, - text, - time, - transformers, - transformers-base, - universum, - unix, - unordered-containers, - vector, - yaml, - }: - mkDerivation { - pname = "log-warper"; - version = "1.9.0"; - sha256 = "13hjbb1kqxilgqslc0c1fh5459278a71ihly24x9v6hhp1y5if91"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson - ansi-terminal - base - containers - deepseq - directory - filepath - fmt - lifted-async - microlens-platform - mmorph - monad-control - monad-loops - mtl - o-clock - text - time - transformers - transformers-base - universum - unix - unordered-containers - vector - yaml - ]; - executableHaskellDepends = [ - base - markdown-unlit - microlens - monad-control - mtl - o-clock - text - universum - yaml - ]; - executableToolDepends = [ markdown-unlit ]; - testHaskellDepends = [ - async - base - data-default - directory - filepath - hspec - HUnit - microlens-mtl - QuickCheck - universum - unordered-containers - ]; - testToolDepends = [ hspec-discover ]; - description = "Flexible, configurable, monadic and pretty logging"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "log2json" = callPackage ( - { - mkDerivation, - base, - containers, - json, - parsec, - }: - mkDerivation { - pname = "log2json"; - version = "0.1"; - sha256 = "0cidi9zkvqvdqpibr0jpnlk33kprmxwh016w0f86zg9cm3dfb5zf"; - isLibrary = true; - isExecutable = true; - executableHaskellDepends = [ - base - containers - json - parsec - ]; - description = "Turn log file records into JSON"; - license = "GPL"; - hydraPlatforms = lib.platforms.none; - mainProgram = "log2json"; - broken = true; - } - ) { }; - - "log4hs" = callPackage ( - { - mkDerivation, - aeson, - aeson-default, - aeson-qq, - base, - bytestring, - containers, - criterion, - directory, - filepath, - generic-lens, - hspec, - hspec-core, - microlens, - mtl, - process, - QuickCheck, - template-haskell, - text, - time, - vformat, - vformat-aeson, - vformat-time, - yaml, - }: - mkDerivation { - pname = "log4hs"; - version = "0.9.0.0"; - sha256 = "0hr6qm721jlpz6f45rb1d6wh4y5gk0n94a0l9wflwz6vnr77147x"; - libraryHaskellDepends = [ - aeson - aeson-default - base - bytestring - containers - directory - filepath - generic-lens - microlens - mtl - template-haskell - text - time - vformat - vformat-aeson - vformat-time - yaml - ]; - testHaskellDepends = [ - aeson - aeson-default - aeson-qq - base - bytestring - containers - directory - filepath - generic-lens - hspec - hspec-core - microlens - mtl - process - QuickCheck - template-haskell - text - time - vformat - vformat-aeson - vformat-time - yaml - ]; - benchmarkHaskellDepends = [ - aeson - aeson-default - aeson-qq - base - bytestring - containers - criterion - directory - filepath - generic-lens - microlens - mtl - template-haskell - text - time - vformat - vformat-aeson - vformat-time - yaml - ]; - description = "A python logging style log library"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "logentries" = callPackage ( - { - mkDerivation, - base, - bytestring, - data-default, - fast-logger, - hspec, - network, - stm, - uuid-types, - wai, - wai-extra, - }: - mkDerivation { - pname = "logentries"; - version = "0.1.0.1"; - sha256 = "0wjmq6yqs438y5kgzgk1yzsl35nm1kvwqqw5ljz439z4a2klg7r2"; - libraryHaskellDepends = [ - base - bytestring - data-default - fast-logger - network - stm - uuid-types - wai - wai-extra - ]; - testHaskellDepends = [ - base - bytestring - fast-logger - hspec - uuid-types - ]; - description = "Request logger middleware for Logentries"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "logfloat" = callPackage ( { mkDerivation, @@ -427150,45 +246073,6 @@ self: { } ) { }; - "logger" = callPackage ( - { - mkDerivation, - ansi-wl-pprint, - base, - containers, - lens, - mtl, - template-haskell, - time, - time-locale-compat, - transformers, - transformers-compat, - unagi-chan, - }: - mkDerivation { - pname = "logger"; - version = "0.1.0.2"; - sha256 = "0wk45wfngkmvs6sapn023z9lvfq82g19hvs4iy9ajqdjvylxb27d"; - libraryHaskellDepends = [ - ansi-wl-pprint - base - containers - lens - mtl - template-haskell - time - time-locale-compat - transformers - transformers-compat - unagi-chan - ]; - description = "Fast & extensible logging framework"; - license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "logger-thread" = callPackage ( { mkDerivation, @@ -427360,102 +246244,6 @@ self: { } ) { }; - "logging-effect-extra" = callPackage ( - { - mkDerivation, - base, - logging-effect, - logging-effect-extra-file, - logging-effect-extra-handler, - prettyprinter, - }: - mkDerivation { - pname = "logging-effect-extra"; - version = "2.0.0"; - sha256 = "1zf7dilp9k9h1nwf2brbzn6759ig75f43lzi63pkncd88xawp8qc"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - logging-effect - logging-effect-extra-file - logging-effect-extra-handler - prettyprinter - ]; - executableHaskellDepends = [ base ]; - description = "Supplemental packages for `logging-effect`"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - mainProgram = "log-extra"; - } - ) { }; - - "logging-effect-extra-file" = callPackage ( - { - mkDerivation, - base, - logging-effect, - prettyprinter, - template-haskell, - }: - mkDerivation { - pname = "logging-effect-extra-file"; - version = "2.0.1"; - sha256 = "0nhpfy5i8cqb5r8xm0xd1iha20rnsk3mpxv1aaw132f0ha3z9a8k"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - logging-effect - prettyprinter - template-haskell - ]; - executableHaskellDepends = [ - base - logging-effect - prettyprinter - ]; - description = "TH splices to augment log messages with file info"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "logging-effect-extra-handler" = callPackage ( - { - mkDerivation, - base, - exceptions, - logging-effect, - prettyprinter, - time, - }: - mkDerivation { - pname = "logging-effect-extra-handler"; - version = "2.0.1"; - sha256 = "0mkk11x4n3hrq7rp30pqv3pjaijfivbpl9p8jafhwx2gr5gq06dp"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - exceptions - logging-effect - prettyprinter - time - ]; - executableHaskellDepends = [ - base - logging-effect - prettyprinter - ]; - description = "Handy logging handler combinators"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "logging-effect-syslog" = callPackage ( { mkDerivation, @@ -427623,64 +246411,6 @@ self: { } ) { }; - "logic-classes" = callPackage ( - { - mkDerivation, - applicative-extras, - atp-haskell, - base, - containers, - HUnit, - mtl, - parsec, - pretty, - PropLogic, - safe, - safecopy, - set-extra, - syb, - template-haskell, - }: - mkDerivation { - pname = "logic-classes"; - version = "1.7.1"; - sha256 = "0l35iq0194bza267xfw7qr7zy7k6la13kbbn7j2d9mw7hj5kwh2c"; - libraryHaskellDepends = [ - applicative-extras - atp-haskell - base - containers - HUnit - mtl - parsec - pretty - PropLogic - safe - safecopy - set-extra - syb - template-haskell - ]; - testHaskellDepends = [ - applicative-extras - atp-haskell - base - containers - HUnit - mtl - pretty - PropLogic - safe - set-extra - syb - ]; - description = "Framework for propositional and first order logic, theorem proving"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "logical-constraints" = callPackage ( { mkDerivation, base }: mkDerivation { @@ -427693,29 +246423,6 @@ self: { } ) { }; - "logicst" = callPackage ( - { - mkDerivation, - base, - logict, - transformers, - }: - mkDerivation { - pname = "logicst"; - version = "0.1.0.0"; - sha256 = "061x6g92334m2776xclh8mcbjind3l595pggc0g7yi4qzs31zbdc"; - libraryHaskellDepends = [ - base - logict - transformers - ]; - description = "Backtracking mutable references in the ST and IO monads"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "logict" = callPackage ( { mkDerivation, @@ -427856,39 +246563,6 @@ self: { } ) { }; - "logplex-parse" = callPackage ( - { - mkDerivation, - base, - hspec, - iso8601-time, - parsec, - text, - time, - }: - mkDerivation { - pname = "logplex-parse"; - version = "0.1.0.2"; - sha256 = "011n824n9s5jrif1cgrl2fjr82s5jayvgq7blbggjwqclhd2a0p8"; - libraryHaskellDepends = [ - base - iso8601-time - parsec - text - time - ]; - testHaskellDepends = [ - base - hspec - time - ]; - description = "Parse Heroku application/logplex documents"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "logsink" = callPackage ( { mkDerivation, @@ -427915,631 +246589,59 @@ self: { logging-facade time ]; - description = "A logging framework for Haskell"; - license = lib.licenses.mit; - } - ) { }; - - "logstash" = callPackage ( - { - mkDerivation, - aeson, - async, - base, - bytestring, - data-default-class, - exceptions, - monad-control, - mtl, - network, - resource-pool, - resourcet, - retry, - stm, - stm-chans, - time, - tls, - unbounded-delays, - unliftio, - }: - mkDerivation { - pname = "logstash"; - version = "0.1.0.4"; - sha256 = "1x736zc8r8vbrb4n82sqskgs0k5avbdscviwy0rcj7gpsr2qd89g"; - libraryHaskellDepends = [ - aeson - async - base - bytestring - data-default-class - exceptions - monad-control - mtl - network - resource-pool - resourcet - retry - stm - stm-chans - time - tls - unbounded-delays - unliftio - ]; - description = "Logstash client library for Haskell"; - license = lib.licenses.mit; - } - ) { }; - - "lojban" = callPackage ( - { - mkDerivation, - base, - containers, - curl, - directory, - haskell98, - HTTP, - markov-chain, - mtl, - parsec, - process, - random, - regex-compat, - strict, - tagsoup, - xml, - }: - mkDerivation { - pname = "lojban"; - version = "0.3"; - sha256 = "0pd31g21db8yh1mrnmy7r60lr0dbpwlxpwc0hli3y1wcr4fisnx6"; - revision = "1"; - editedCabalFile = "1z0wdcylh38mn5jhwnp1rl7azadkw57df1m69jiax05ay74cjc4x"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - containers - curl - directory - HTTP - markov-chain - mtl - parsec - process - random - regex-compat - strict - tagsoup - xml - ]; - executableHaskellDepends = [ haskell98 ]; - description = "Useful utilities for the Lojban language"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "jbovlastegendb"; - } - ) { }; - - "lojbanParser" = callPackage ( - { mkDerivation, base }: - mkDerivation { - pname = "lojbanParser"; - version = "0.1.9.2"; - sha256 = "0axi63dvls9k87samaa0jihisfqyl92jbhmx1j9q73yjrn5wsk8j"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base ]; - executableHaskellDepends = [ base ]; - description = "lojban parser"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "testParser"; - broken = true; - } - ) { }; - - "lojbanXiragan" = callPackage ( - { mkDerivation, base }: - mkDerivation { - pname = "lojbanXiragan"; - version = "0.3"; - sha256 = "1h7jmhs38v6mfas4nj22shm2dwphx46247sv3mia28xlzim3xdsp"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base ]; - executableHaskellDepends = [ base ]; - description = "lojban to xiragan"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "xiragan"; - broken = true; - } - ) { }; - - "lojysamban" = callPackage ( - { - mkDerivation, - base, - lojbanParser, - yjtools, - }: - mkDerivation { - pname = "lojysamban"; - version = "0.0.8.1"; - sha256 = "0c571fk7kz4szpba85d7bf5awak5bc25r59kyx3xvyvk011y9hhd"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - lojbanParser - yjtools - ]; - description = "Prolog with lojban"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "lojysamban"; - } - ) { }; - - "lol" = callPackage ( - { - mkDerivation, - ansi-terminal, - arithmoi, - base, - bytestring, - constraints, - containers, - criterion, - criterion-measurement, - crypto-api, - data-default, - deepseq, - directory, - monadcryptorandom, - MonadRandom, - mtl, - numeric-prelude, - protocol-buffers, - protocol-buffers-descriptor, - QuickCheck, - random, - reflection, - singletons, - statistics, - tagged-transformer, - template-haskell, - test-framework, - test-framework-quickcheck2, - vector, - vector-th-unbox, - }: - mkDerivation { - pname = "lol"; - version = "0.7.0.0"; - sha256 = "016l3qr8cvbfqv158l66fsfbbvy1sc9wh2378wbbg7is4v5zq757"; - libraryHaskellDepends = [ - ansi-terminal - arithmoi - base - bytestring - constraints - containers - criterion - criterion-measurement - crypto-api - data-default - deepseq - directory - monadcryptorandom - MonadRandom - mtl - numeric-prelude - protocol-buffers - protocol-buffers-descriptor - QuickCheck - random - reflection - singletons - statistics - tagged-transformer - template-haskell - test-framework - test-framework-quickcheck2 - vector - vector-th-unbox - ]; - testHaskellDepends = [ - base - test-framework - ]; - description = "A library for lattice cryptography"; - license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "lol-apps" = callPackage ( - { - mkDerivation, - base, - constraints, - containers, - crypto-api, - deepseq, - DRBG, - filepath, - lol, - MonadRandom, - mtl, - numeric-prelude, - options, - protocol-buffers, - protocol-buffers-descriptor, - QuickCheck, - singletons, - split, - test-framework, - time, - }: - mkDerivation { - pname = "lol-apps"; - version = "0.3.0.0"; - sha256 = "15yhr5z5i0p8kzic0g09n54k7hclzjhdywz2mqa9i5lisksq285g"; - libraryHaskellDepends = [ - base - constraints - containers - crypto-api - deepseq - DRBG - filepath - lol - MonadRandom - mtl - numeric-prelude - options - protocol-buffers - protocol-buffers-descriptor - QuickCheck - singletons - split - test-framework - time - ]; - description = "Lattice-based cryptographic applications using ."; - license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "lol-benches" = callPackage ( - { - mkDerivation, - ansi-terminal, - base, - containers, - criterion, - crypto-api, - deepseq, - DRBG, - lol, - MonadRandom, - split, - statistics, - }: - mkDerivation { - pname = "lol-benches"; - version = "0.0.0.5"; - sha256 = "0n0qcz05ykxxjb621gaj6ss7w25d8gz9i51dfjkhxgix9kqqyw3d"; - libraryHaskellDepends = [ - ansi-terminal - base - containers - criterion - crypto-api - deepseq - DRBG - lol - MonadRandom - split - statistics - ]; - description = "A library for benchmarking ."; - license = lib.licenses.gpl2Only; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "lol-calculus" = callPackage ( - { - mkDerivation, - base, - containers, - directory, - filepath, - haskeline, - mtl, - parsec, - text, - text-format, - transformers, - }: - mkDerivation { - pname = "lol-calculus"; - version = "1.20160822"; - sha256 = "1bv0vxyl93xbnh6nqg4h6mbqsy6j0dczw80vdmwd4x2ji66sbg86"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - containers - parsec - text - text-format - transformers - ]; - executableHaskellDepends = [ - base - containers - directory - filepath - haskeline - mtl - parsec - text - text-format - transformers - ]; - description = "Calculus for LOL (λω language)"; - license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - mainProgram = "lol-calculus"; - broken = true; - } - ) { }; - - "lol-cpp" = callPackage ( - { - mkDerivation, - base, - constraints, - deepseq, - DRBG, - lol, - lol-apps, - MonadRandom, - mtl, - numeric-prelude, - reflection, - test-framework, - vector, - }: - mkDerivation { - pname = "lol-cpp"; - version = "0.2.0.0"; - sha256 = "05nx6lf9jcw3m29j733rs0blxkg75ciam29fybgz94r2f4i928f3"; - libraryHaskellDepends = [ - base - constraints - deepseq - lol - MonadRandom - mtl - numeric-prelude - reflection - vector - ]; - testHaskellDepends = [ - base - lol - lol-apps - test-framework - ]; - benchmarkHaskellDepends = [ - base - DRBG - lol - lol-apps - MonadRandom - ]; - description = "A fast C++ backend for ."; - license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "lol-repa" = callPackage ( - { - mkDerivation, - base, - constraints, - data-default, - deepseq, - DRBG, - lol, - lol-benches, - lol-tests, - MonadRandom, - mtl, - numeric-prelude, - reflection, - repa, - singletons, - vector, - vector-th-unbox, - }: - mkDerivation { - pname = "lol-repa"; - version = "0.0.0.2"; - sha256 = "194i7syrj4wbdqxrc1axa80hra7n310z43nsls5r4gfm2fcchicm"; - libraryHaskellDepends = [ - base - constraints - data-default - deepseq - lol - MonadRandom - mtl - numeric-prelude - reflection - repa - singletons - vector - vector-th-unbox - ]; - testHaskellDepends = [ - base - lol-tests - ]; - benchmarkHaskellDepends = [ - base - DRBG - lol - lol-benches - ]; - description = "A repa backend for ."; - license = lib.licenses.gpl2Only; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "lol-tests" = callPackage ( - { - mkDerivation, - base, - lol, - MonadRandom, - QuickCheck, - test-framework, - test-framework-quickcheck2, - }: - mkDerivation { - pname = "lol-tests"; - version = "0.0.0.1"; - sha256 = "1v9pi9i67wzz5a3nsqq9adq187kk5c7iv9kisbzlra6fgcdbwv35"; - revision = "1"; - editedCabalFile = "1lm9kky9dpqckiwyanb2wc537ph7kj3kb49yxn51634k8jc8q19r"; - libraryHaskellDepends = [ - base - lol - MonadRandom - QuickCheck - test-framework - test-framework-quickcheck2 - ]; - testHaskellDepends = [ - base - lol - test-framework - ]; - description = "A library for testing ."; - license = lib.licenses.gpl2Only; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "lol-typing" = callPackage ( - { - mkDerivation, - base, - Cabal, - containers, - directory, - filepath, - ghc-prim, - lol-calculus, - monad-classes, - parsec, - tasty, - tasty-hunit, - text, - text-format, - transformers, - uuagc, - uuagc-cabal, - }: - mkDerivation { - pname = "lol-typing"; - version = "1.20160822"; - sha256 = "12skw4svpkbpy0lwk2l6zjd9svml320vdd1mqfijsx4srjkl7p13"; - revision = "1"; - editedCabalFile = "1fpkd3vxv02817bf0rhyd4as8pp5wv06x6wfh390mmb4ldyqdz36"; - setupHaskellDepends = [ - base - Cabal - uuagc - uuagc-cabal - ]; - libraryHaskellDepends = [ - base - containers - ghc-prim - lol-calculus - monad-classes - parsec - text - text-format - transformers - uuagc - uuagc-cabal - ]; - testHaskellDepends = [ - base - containers - directory - filepath - ghc-prim - lol-calculus - monad-classes - tasty - tasty-hunit - text - text-format - transformers - ]; - description = "Type inferencer for LOL (λω language)"; - license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; + description = "A logging framework for Haskell"; + license = lib.licenses.mit; } ) { }; - "loli" = callPackage ( + "logstash" = callPackage ( { mkDerivation, + aeson, + async, base, bytestring, - containers, - data-default, - hack, - hack-contrib, - mps, + data-default-class, + exceptions, + monad-control, mtl, - template, - utf8-string, + network, + resource-pool, + resourcet, + retry, + stm, + stm-chans, + time, + tls, + unbounded-delays, + unliftio, }: mkDerivation { - pname = "loli"; - version = "2011.6.24"; - sha256 = "1m23dkxh2vah7d47arpqx5zdpwczm8k4jixzslmqbdizm9h933ja"; - enableSeparateDataOutput = true; + pname = "logstash"; + version = "0.1.0.4"; + sha256 = "1x736zc8r8vbrb4n82sqskgs0k5avbdscviwy0rcj7gpsr2qd89g"; libraryHaskellDepends = [ + aeson + async base bytestring - containers - data-default - hack - hack-contrib - mps + data-default-class + exceptions + monad-control mtl - template - utf8-string + network + resource-pool + resourcet + retry + stm + stm-chans + time + tls + unbounded-delays + unliftio ]; - description = "A minimum web dev DSL in Haskell"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; + description = "Logstash client library for Haskell"; + license = lib.licenses.mit; } ) { }; @@ -428742,36 +246844,6 @@ self: { } ) { }; - "lookup-tables" = callPackage ( - { - mkDerivation, - base, - primitive, - tasty, - tasty-hunit, - template-haskell, - }: - mkDerivation { - pname = "lookup-tables"; - version = "0.1.1.1"; - sha256 = "13j7gjbpzdjvxfklvfjy44r219piqqk6nk4023aldq97m37f57mv"; - libraryHaskellDepends = [ - base - primitive - template-haskell - ]; - testHaskellDepends = [ - base - tasty - tasty-hunit - ]; - description = "Statically generate lookup tables using Template Haskell"; - license = lib.licenses.isc; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "loop" = callPackage ( { mkDerivation, @@ -428838,84 +246910,6 @@ self: { } ) { }; - "loop-effin" = callPackage ( - { - mkDerivation, - base, - effin, - }: - mkDerivation { - pname = "loop-effin"; - version = "0.1.1.0"; - sha256 = "02x02m98ka1y8f1jjqwfwmsyx29g583gnr4jdm5syqxfr0dz6c52"; - libraryHaskellDepends = [ - base - effin - ]; - description = "control-monad-loop port for effin"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "loop-while" = callPackage ( - { - mkDerivation, - base, - mtl, - }: - mkDerivation { - pname = "loop-while"; - version = "1.0.0"; - sha256 = "1yvw91gn1iyw72rbq455zzrbb3pq8ph9cv1c6800qzjyxx0694bd"; - libraryHaskellDepends = [ - base - mtl - ]; - description = "A monad transformer supporting various styles of while loop"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "loopbreaker" = callPackage ( - { - mkDerivation, - base, - containers, - ghc, - hspec, - hspec-discover, - inspection-testing, - syb, - }: - mkDerivation { - pname = "loopbreaker"; - version = "0.1.1.1"; - sha256 = "0ixy3l0vw4sn5vyqn05mc68sdfab51vxjwvas8ismmg9j6w1mn0q"; - libraryHaskellDepends = [ - base - containers - ghc - syb - ]; - testHaskellDepends = [ - base - containers - ghc - hspec - inspection-testing - syb - ]; - testToolDepends = [ hspec-discover ]; - description = "inline self-recursive definitions"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "looper" = callPackage ( { mkDerivation, @@ -428953,240 +246947,6 @@ self: { } ) { }; - "loops" = callPackage ( - { - mkDerivation, - base, - criterion, - primitive, - tasty, - tasty-quickcheck, - transformers, - vector, - }: - mkDerivation { - pname = "loops"; - version = "0.2.0.2"; - sha256 = "1syx22gp2zra2dhwvmm2np6c1lvqk622a62k4xxjd8y1fs2ckks7"; - revision = "1"; - editedCabalFile = "1kiljmx17jvn1m31jllrakkkwva96d1w9fd0fnbx6h41qagdk7pg"; - libraryHaskellDepends = [ - base - primitive - transformers - vector - ]; - testHaskellDepends = [ - base - tasty - tasty-quickcheck - ]; - benchmarkHaskellDepends = [ - base - criterion - transformers - vector - ]; - description = "Fast imperative-style loops"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "loopy" = callPackage ( - { - mkDerivation, - base, - cmdargs, - containers, - directory, - filepath, - GoogleChart, - hmatrix, - process, - random, - }: - mkDerivation { - pname = "loopy"; - version = "0.0.1"; - sha256 = "0gyd7l4i3vzv7swyqfywzwhsdxq3j5869c2id6hz6nm7db47wyy6"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - cmdargs - containers - directory - filepath - GoogleChart - hmatrix - process - random - ]; - description = "Find all biological feedback loops within an ecosystem graph"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "loopy"; - broken = true; - } - ) { }; - - "lord" = callPackage ( - { - mkDerivation, - aeson, - ansi-terminal, - attoparsec-conduit, - base, - bytestring, - case-insensitive, - conduit, - conduit-extra, - daemons, - data-default, - directory, - fast-logger, - hspec, - html-conduit, - HTTP, - http-conduit, - http-types, - HUnit, - libmpd, - optparse-applicative, - process, - resourcet, - text, - transformers, - unix, - unordered-containers, - utf8-string, - wai-logger, - xml-conduit, - yaml, - }: - mkDerivation { - pname = "lord"; - version = "2.20150122"; - sha256 = "0kzvi4310mbz51zkgmm84qyxxpi4m5ww2bsrfkj73a45bn7z198j"; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - aeson - ansi-terminal - attoparsec-conduit - base - bytestring - case-insensitive - conduit - conduit-extra - data-default - directory - fast-logger - html-conduit - HTTP - http-conduit - http-types - libmpd - process - resourcet - text - transformers - unix - unordered-containers - utf8-string - wai-logger - xml-conduit - yaml - ]; - executableHaskellDepends = [ - aeson - ansi-terminal - attoparsec-conduit - base - bytestring - case-insensitive - conduit - conduit-extra - daemons - data-default - directory - fast-logger - html-conduit - HTTP - http-conduit - http-types - libmpd - optparse-applicative - process - resourcet - text - transformers - unix - unordered-containers - utf8-string - wai-logger - xml-conduit - yaml - ]; - testHaskellDepends = [ - aeson - ansi-terminal - attoparsec-conduit - base - bytestring - case-insensitive - conduit - daemons - data-default - directory - fast-logger - hspec - html-conduit - HTTP - http-conduit - http-types - HUnit - libmpd - optparse-applicative - process - text - transformers - unix - unordered-containers - utf8-string - wai-logger - xml-conduit - yaml - ]; - description = "A command line interface to online radios"; - license = lib.licenses.publicDomain; - hydraPlatforms = lib.platforms.none; - mainProgram = "lord"; - broken = true; - } - ) { }; - - "lorem" = callPackage ( - { mkDerivation, base }: - mkDerivation { - pname = "lorem"; - version = "0.0.0.0"; - sha256 = "1fx7z90k9y12rii0yxk58159paiix1qi8y4j0za4k4szylr8f5ni"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base ]; - executableHaskellDepends = [ base ]; - description = "Library for generating filler text"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "lorem"; - broken = true; - } - ) { }; - "lorentz" = callPackage ( { mkDerivation, @@ -429247,210 +247007,6 @@ self: { ]; description = "EDSL for the Michelson Language"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "loris" = callPackage ( - { - mkDerivation, - base, - c2hs, - loris, - vector, - }: - mkDerivation { - pname = "loris"; - version = "0.3.1"; - sha256 = "19w1c3gsmy03y4a238yp844wgqcv9s53cwrcapv2yvn9xpchm2gq"; - libraryHaskellDepends = [ - base - vector - ]; - librarySystemDepends = [ loris ]; - libraryToolDepends = [ c2hs ]; - description = "interface to Loris API"; - license = lib.licenses.gpl2Only; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { loris = null; }; - - "loshadka" = callPackage ( - { - mkDerivation, - aeson, - base, - binary, - bytestring, - cryptohash, - directory, - hex, - network, - process, - split, - }: - mkDerivation { - pname = "loshadka"; - version = "0.2"; - sha256 = "01jjbcgzpkh3mp729xahy2437hrg6wc2l1qnwcm069zrs3c1bdny"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - aeson - base - binary - bytestring - cryptohash - directory - hex - network - process - split - ]; - description = "Minecraft 1.7 server proxy that answers to queries when the server is offline"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - mainProgram = "loshadka"; - broken = true; - } - ) { }; - - "lostcities" = callPackage ( - { - mkDerivation, - array, - base, - containers, - haskell98, - mtl, - wx, - wxcore, - }: - mkDerivation { - pname = "lostcities"; - version = "0.2"; - sha256 = "1avlq28k0jcfbnd0pfww80ixz5lvpp4jkf20dybjl7pfqyhj3s9p"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - array - base - containers - haskell98 - mtl - wx - wxcore - ]; - description = "An implementation of an adictive two-player card game"; - license = "GPL"; - hydraPlatforms = lib.platforms.none; - mainProgram = "lostcities"; - } - ) { }; - - "louis" = callPackage ( - { - mkDerivation, - base, - bytestring, - JuicyPixels, - text, - vector, - }: - mkDerivation { - pname = "louis"; - version = "0.1.0.2"; - sha256 = "0bw07idhhnyxfsry5qq8hs5fdbp810j7i2syd1vfqdsbm2krq816"; - libraryHaskellDepends = [ - base - bytestring - JuicyPixels - text - vector - ]; - description = "Turning images into text using Braille font"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "loup" = callPackage ( - { - mkDerivation, - aeson, - amazonka, - amazonka-swf, - base, - bytestring, - conduit, - lifted-async, - lifted-base, - optparse-generic, - preamble, - shakers, - time, - turtle, - unordered-containers, - uuid, - yaml, - }: - mkDerivation { - pname = "loup"; - version = "0.0.16"; - sha256 = "1psv29w1zjl1fk7khgm6m08k3yq802gfnm2swdsp8apsyq1ha0mn"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson - amazonka - amazonka-swf - base - bytestring - conduit - lifted-async - lifted-base - preamble - time - turtle - unordered-containers - uuid - yaml - ]; - executableHaskellDepends = [ - base - optparse-generic - shakers - ]; - description = "Amazon Simple Workflow Service Wrapper for Work Pools"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "lowgl" = callPackage ( - { - mkDerivation, - base, - gl, - linear, - vector, - }: - mkDerivation { - pname = "lowgl"; - version = "0.4.0.1"; - sha256 = "1xwxsg4bz83xg4sjm69vz7zaxi7wjnn2xlqs8gha78ylpq105szw"; - libraryHaskellDepends = [ - base - gl - linear - vector - ]; - description = "Basic gl wrapper and reference"; - license = lib.licenses.bsd2; - hydraPlatforms = lib.platforms.none; - broken = true; } ) { }; @@ -429512,53 +247068,6 @@ self: { } ) { }; - "lp-diagrams-svg" = callPackage ( - { - mkDerivation, - base, - containers, - FontyFruity, - gasp, - JuicyPixels, - lens, - linear, - lp-diagrams, - lucid-svg, - mtl, - optparse-applicative, - svg-tree, - text, - vector, - }: - mkDerivation { - pname = "lp-diagrams-svg"; - version = "1.1"; - sha256 = "1ck36i2p6r4li6qybbnraq6na6z84x1hqk6589zcdyqlz65kmikc"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - containers - FontyFruity - gasp - JuicyPixels - lens - linear - lp-diagrams - lucid-svg - mtl - optparse-applicative - svg-tree - text - vector - ]; - description = "SVG Backend for lp-diagrams"; - license = "GPL"; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "lpeg" = callPackage ( { mkDerivation, @@ -429686,103 +247195,6 @@ self: { } ) { }; - "lrucaching-haxl" = callPackage ( - { - mkDerivation, - base, - hashable, - haxl, - lrucaching, - psqueues, - }: - mkDerivation { - pname = "lrucaching-haxl"; - version = "0.1.0.0"; - sha256 = "0pn2f671ak1grzjigyvan5wagh9vyqhsz86jfy1z281rd2pw4gk2"; - libraryHaskellDepends = [ - base - hashable - haxl - lrucaching - psqueues - ]; - description = "Combine lrucaching and haxl"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "ls-usb" = callPackage ( - { - mkDerivation, - ansi-wl-pprint, - base, - base-unicode-symbols, - cmdtheline, - text, - usb, - usb-id-database, - vector, - }: - mkDerivation { - pname = "ls-usb"; - version = "0.1.1"; - sha256 = "08xaf27iirdxax7gjjjzvw4nv0qya6vz46826bzmp7f0i0rn88qk"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - ansi-wl-pprint - base - base-unicode-symbols - cmdtheline - text - usb - usb-id-database - vector - ]; - description = "List USB devices"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "ls-usb"; - } - ) { }; - - "lscabal" = callPackage ( - { - mkDerivation, - base, - bytestring, - Cabal, - containers, - directory, - filepath, - pretty, - process, - }: - mkDerivation { - pname = "lscabal"; - version = "0.1.1"; - sha256 = "14j19jcmx20nhvb9a7im81j3wwkkx6lkb6b1kfizv8qkgnp0jd5j"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - bytestring - Cabal - containers - directory - filepath - pretty - process - ]; - description = "List exported modules from a set of .cabal files"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "lscabal"; - broken = true; - } - ) { }; - "lsfrom" = callPackage ( { mkDerivation, @@ -430779,35 +248191,6 @@ self: { } ) { language-css-attoparsec = null; }; - "lsystem" = callPackage ( - { - mkDerivation, - base, - haskell98, - uu-parsinglib, - wx, - wxcore, - }: - mkDerivation { - pname = "lsystem"; - version = "1.2"; - sha256 = "1wk41hsr7pp9azac3449xp0xv8kd31bwif3yw6cfw9jfg3g498xg"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - haskell98 - uu-parsinglib - wx - wxcore - ]; - description = "Paint an L-System Grammar"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "lsystem"; - } - ) { }; - "ltext" = callPackage ( { mkDerivation, @@ -430943,114 +248326,6 @@ self: { } ) { }; - "ltiv1p1" = callPackage ( - { - mkDerivation, - authenticate-oauth, - base, - blaze-builder, - bytestring, - containers, - data-default, - http-client, - http-types, - random, - text, - time, - transformers, - wai, - wai-extra, - xml-conduit, - xml-hamlet, - yesod-core, - }: - mkDerivation { - pname = "ltiv1p1"; - version = "1.0.0.3"; - sha256 = "1rvv17v31kqyg6iwgxwn1nplc6xjzfnjagnfhabhi3ayh3ya54v3"; - libraryHaskellDepends = [ - authenticate-oauth - base - blaze-builder - bytestring - containers - data-default - http-client - http-types - random - text - time - transformers - wai - wai-extra - xml-conduit - xml-hamlet - yesod-core - ]; - description = "Partial implementation of a service provider for LTI 1.1."; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "ltk" = callPackage ( - { - mkDerivation, - base, - base-compat, - Cabal, - containers, - filepath, - ghc, - gi-cairo, - gi-gdk, - gi-glib, - gi-gobject, - gi-gtk, - gi-gtk-hs, - gtk3, - haskell-gi-base, - haskell-gi-overloading, - mtl, - parsec, - pretty, - text, - transformers, - }: - mkDerivation { - pname = "ltk"; - version = "0.16.2.0"; - sha256 = "1x8abgss6j46wp0cz7vfr704j38f00pcgkhyxn8ismqf3k7sdzxc"; - libraryHaskellDepends = [ - base - base-compat - Cabal - containers - filepath - ghc - gi-cairo - gi-gdk - gi-glib - gi-gobject - gi-gtk - gi-gtk-hs - haskell-gi-base - haskell-gi-overloading - mtl - parsec - pretty - text - transformers - ]; - libraryPkgconfigDepends = [ gtk3 ]; - description = "Leksah tool kit"; - license = "GPL"; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { inherit (pkgs) gtk3; }; - "ltl" = callPackage ( { mkDerivation, @@ -431119,41 +248394,6 @@ self: { } ) { }; - "lua-bc" = callPackage ( - { - mkDerivation, - base, - binary, - bytestring, - containers, - data-binary-ieee754, - pretty, - text, - vector, - }: - mkDerivation { - pname = "lua-bc"; - version = "0.1.1"; - sha256 = "0bp0j181j2zr2xw6mpj4f17998bmh6qs0y7xbimxz4nh7bf8chba"; - revision = "1"; - editedCabalFile = "1bp54qza0pncf4r8dwavxqls2zfvcxavpsvj7sxr52yiz8nisink"; - libraryHaskellDepends = [ - base - binary - bytestring - containers - data-binary-ieee754 - pretty - text - vector - ]; - description = "Lua bytecode parser"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "lua-bytecode" = callPackage ( { mkDerivation, @@ -431185,88 +248425,6 @@ self: { } ) { }; - "luachunk" = callPackage ( - { - mkDerivation, - attoparsec, - base, - binary, - bytestring, - custom-prelude, - ghc-prim, - pretty, - text, - }: - mkDerivation { - pname = "luachunk"; - version = "0.1.0.0"; - sha256 = "03a8adaz3m93wnfmrvsqbmc57h1d8h0a90spfj1cb7yrpz0pr3ck"; - libraryHaskellDepends = [ - attoparsec - base - binary - bytestring - custom-prelude - ghc-prim - pretty - text - ]; - description = "Library functions for reading and writing Lua chunks"; - license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "luautils" = callPackage ( - { - mkDerivation, - base, - binary, - bytestring, - containers, - hslua, - monad-loops, - QuickCheck, - quickcheck-instances, - test-framework, - test-framework-quickcheck2, - test-framework-th, - text, - text-binary, - }: - mkDerivation { - pname = "luautils"; - version = "0.1.4"; - sha256 = "176szfrz1ydnin1zi50235j4f4l87j516yjddmqbmd834dzvk20d"; - libraryHaskellDepends = [ - base - binary - bytestring - containers - hslua - monad-loops - text - ]; - testHaskellDepends = [ - base - binary - containers - hslua - QuickCheck - quickcheck-instances - test-framework - test-framework-quickcheck2 - test-framework-th - text - text-binary - ]; - description = "Helpers for Haskell integration with Lua"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "lub" = callPackage ( { mkDerivation, @@ -431730,169 +248888,6 @@ self: { } ) { }; - "lucienne" = callPackage ( - { - mkDerivation, - base, - base64-bytestring, - blaze-html, - bson, - bytestring, - compact-string-fix, - feed, - happstack, - happstack-server, - HTTP, - mongoDB, - mtl, - network, - SHA, - text, - time, - }: - mkDerivation { - pname = "lucienne"; - version = "0.0.2"; - sha256 = "1dcvax756cqpqg6rrrjrd4sfr3ggvqdiwp42rb8fdrsi3v2skwrj"; - isLibrary = false; - isExecutable = true; - enableSeparateDataOutput = true; - executableHaskellDepends = [ - base - base64-bytestring - blaze-html - bson - bytestring - compact-string-fix - feed - happstack - happstack-server - HTTP - mongoDB - mtl - network - SHA - text - time - ]; - description = "Server side feed aggregator/reader"; - license = "GPL"; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "luhn" = callPackage ( - { - mkDerivation, - base, - digits, - QuickCheck, - }: - mkDerivation { - pname = "luhn"; - version = "0.2"; - sha256 = "0ix7x28kmd3iarydl709vqd041h0qx6kv582c8ca54z8ag7lzynz"; - libraryHaskellDepends = [ - base - digits - QuickCheck - ]; - description = "An implementation of Luhn's check digit algorithm"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "lui" = callPackage ( - { - mkDerivation, - base, - containers, - haskell98, - haskgame, - MaybeT, - mtl, - SDL, - }: - mkDerivation { - pname = "lui"; - version = "0.0.6"; - sha256 = "081451gpm20z8zl3y1mjy9015a461g7q99w7sjnr8alvd3pbhd6v"; - libraryHaskellDepends = [ - base - containers - haskell98 - haskgame - MaybeT - mtl - SDL - ]; - description = "Purely FunctionaL User Interface"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "luis-client" = callPackage ( - { - mkDerivation, - aeson, - base, - http-client, - lens, - text, - vector, - wreq, - }: - mkDerivation { - pname = "luis-client"; - version = "0.0.2"; - sha256 = "1i83kzvjxbgbi91pv2mcw6lm6x5zc8mns9ggmnjzcdp6ysnhcklv"; - libraryHaskellDepends = [ - aeson - base - http-client - lens - text - vector - wreq - ]; - description = "An unofficial client for the LUIS NLP service"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "luka" = callPackage ( - { - mkDerivation, - air, - base, - bytestring, - libffi, - objc, - }: - mkDerivation { - pname = "luka"; - version = "2012.8.29"; - sha256 = "00g7a80nlw1bgw6x2pqg1qn4786ra3bwbwbfm9b7iyhb101b7s9s"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - air - base - bytestring - libffi - ]; - librarySystemDepends = [ objc ]; - description = "Simple ObjectiveC runtime binding"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { objc = null; }; - "lukko" = callPackage ( { mkDerivation, @@ -431972,141 +248967,6 @@ self: { } ) { }; - "luminance" = callPackage ( - { - mkDerivation, - base, - containers, - contravariant, - dlist, - gl, - linear, - mtl, - resourcet, - semigroups, - transformers, - vector, - void, - }: - mkDerivation { - pname = "luminance"; - version = "0.11.0.4"; - sha256 = "1r7r6y5y2p478ycblm415cac6936iwr90w7w19qpcjj20161qk7k"; - libraryHaskellDepends = [ - base - containers - contravariant - dlist - gl - linear - mtl - resourcet - semigroups - transformers - vector - void - ]; - description = "Type-safe, type-level and stateless graphics framework"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "luminance-samples" = callPackage ( - { - mkDerivation, - base, - contravariant, - GLFW-b, - JuicyPixels, - linear, - luminance, - mtl, - resourcet, - transformers, - }: - mkDerivation { - pname = "luminance-samples"; - version = "0.11"; - sha256 = "1ybq5s7pzdzn98vbjfpvdhk9hdgyi0gcplv6ibywnd8vv1xzzyvq"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - contravariant - GLFW-b - JuicyPixels - linear - luminance - mtl - resourcet - transformers - ]; - description = "Luminance samples"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "lushtags" = callPackage ( - { - mkDerivation, - base, - haskell-src-exts, - text, - vector, - }: - mkDerivation { - pname = "lushtags"; - version = "0.0.1"; - sha256 = "0325c064nsczypapvwdchx7x5n69jxjbyjs90ah7q5ydxbjl6w9c"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - haskell-src-exts - text - vector - ]; - description = "Create ctags compatible tags files for Haskell programs"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - mainProgram = "lushtags"; - broken = true; - } - ) { }; - - "luthor" = callPackage ( - { - mkDerivation, - base, - mtl, - parsec, - transformers, - }: - mkDerivation { - pname = "luthor"; - version = "0.0.2"; - sha256 = "1qnd5p9nv4rqp024pf7bbivj7w4glr0pyc0sq6cifzdii6b1ybya"; - libraryHaskellDepends = [ - base - mtl - parsec - transformers - ]; - testHaskellDepends = [ - base - mtl - parsec - ]; - description = "Tools for lexing and utilizing lexemes that integrate with Parsec"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "lvar" = callPackage ( { mkDerivation, @@ -432126,78 +248986,6 @@ self: { } ) { }; - "lvish" = callPackage ( - { - mkDerivation, - async, - atomic-primops, - base, - bits-atomic, - containers, - deepseq, - ghc-prim, - HUnit, - lattices, - missing-foreign, - QuickCheck, - random, - test-framework, - test-framework-hunit, - test-framework-quickcheck2, - test-framework-th, - text, - time, - transformers, - vector, - }: - mkDerivation { - pname = "lvish"; - version = "1.1.4"; - sha256 = "1s7i1jxb6m7ivk4nd60dy8hn4wgfhv1gcamvv6hgjvcw6rxn4k44"; - revision = "2"; - editedCabalFile = "0ziym98386dp5s8q23v1psas6j96rqm4m0i2h8y652jrq1x6wdxv"; - libraryHaskellDepends = [ - async - atomic-primops - base - bits-atomic - containers - deepseq - ghc-prim - lattices - missing-foreign - random - transformers - vector - ]; - testHaskellDepends = [ - async - atomic-primops - base - bits-atomic - containers - deepseq - ghc-prim - HUnit - lattices - missing-foreign - QuickCheck - random - test-framework - test-framework-hunit - test-framework-quickcheck2 - test-framework-th - text - time - transformers - vector - ]; - description = "Parallel scheduler, LVar data structures, and infrastructure to build more"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "lvmlib" = callPackage ( { mkDerivation, @@ -432243,22 +249031,6 @@ self: { } ) { }; - "lvmrun" = callPackage ( - { mkDerivation }: - mkDerivation { - pname = "lvmrun"; - version = "1.0"; - sha256 = "0wcf9brcvf4b7qcs51mngca3qxilk0x50h3dml28zg6lg93wwbfa"; - isLibrary = false; - isExecutable = true; - description = "The Lazy Virtual Machine (LVM) Runtime System"; - license = "LGPL"; - hydraPlatforms = lib.platforms.none; - mainProgram = "lvmrun"; - broken = true; - } - ) { }; - "lxc" = callPackage ( { mkDerivation, @@ -432283,185 +249055,6 @@ self: { } ) { }; - "lxd-client" = callPackage ( - { - mkDerivation, - aeson, - async, - base, - bimap, - bytestring, - connection, - containers, - data-default, - directory, - either, - exceptions, - filepath, - hspec, - hspec-core, - http-api-data, - http-client, - http-client-tls, - http-media, - http-types, - mtl, - network, - random, - semigroups, - servant, - servant-client, - text, - tls, - transformers, - turtle, - unix, - uuid, - websockets, - x509, - x509-store, - x509-validation, - }: - mkDerivation { - pname = "lxd-client"; - version = "0.1.0.6"; - sha256 = "06w0m9h2xzkd6ynbb6kjvsaq8xj4zzfd64d31s83xb8al5pvnl4b"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson - async - base - bimap - bytestring - connection - containers - data-default - directory - either - exceptions - filepath - http-api-data - http-client - http-client-tls - http-media - http-types - mtl - network - semigroups - servant - servant-client - text - tls - transformers - unix - websockets - x509 - x509-store - x509-validation - ]; - executableHaskellDepends = [ base ]; - testHaskellDepends = [ - base - exceptions - hspec - hspec-core - random - text - turtle - uuid - ]; - description = "LXD client written in Haskell"; - license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - mainProgram = "lxd-client-example"; - broken = true; - } - ) { }; - - "lxd-client-config" = callPackage ( - { - mkDerivation, - aeson, - base, - containers, - directory, - filepath, - HUnit, - QuickCheck, - test-framework, - test-framework-hunit, - test-framework-quickcheck2, - text, - yaml, - }: - mkDerivation { - pname = "lxd-client-config"; - version = "0.1.0.1"; - sha256 = "1kxg42hrgq5w38v1zsq8v9x0ky83c02k8rx2qcyazh7bkg4m4f4h"; - libraryHaskellDepends = [ - aeson - base - containers - directory - filepath - text - yaml - ]; - testHaskellDepends = [ - base - containers - HUnit - QuickCheck - test-framework - test-framework-hunit - test-framework-quickcheck2 - text - yaml - ]; - description = "Read the configuration file of the standard LXD client"; - license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "lye" = callPackage ( - { - mkDerivation, - base, - containers, - free, - HCodecs, - lens, - parsers, - transformers, - trifecta, - }: - mkDerivation { - pname = "lye"; - version = "0.1.0.0"; - sha256 = "1pmlxvnlwdsb51pjrkak1sakfh3nyk5lia5pqmr7larlm1n3dx9m"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - containers - free - HCodecs - lens - parsers - transformers - trifecta - ]; - description = "A Lilypond-compiling music box"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - mainProgram = "lye"; - broken = true; - } - ) { }; - "lz4" = callPackage ( { mkDerivation, @@ -432541,54 +249134,6 @@ self: { } ) { }; - "lz4-conduit" = callPackage ( - { - mkDerivation, - base, - binary, - bytestring, - bytestring-arbitrary, - conduit, - conduit-extra, - mtl, - QuickCheck, - resourcet, - }: - mkDerivation { - pname = "lz4-conduit"; - version = "0.3"; - sha256 = "18yjrf9iw4bwq25x7fd95lf99qcqj9nm3hdq6lkgxc5plgy94nyf"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - binary - bytestring - conduit - mtl - resourcet - ]; - executableHaskellDepends = [ - base - conduit - conduit-extra - resourcet - ]; - testHaskellDepends = [ - base - bytestring - bytestring-arbitrary - conduit - QuickCheck - resourcet - ]; - description = "LZ4 compression for conduits"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "LZ4"; - } - ) { }; - "lz4-frame-conduit" = callPackage ( { mkDerivation, @@ -432691,27 +249236,6 @@ self: { } ) { }; - "lzip" = callPackage ( - { - mkDerivation, - base, - bytestring, - }: - mkDerivation { - pname = "lzip"; - version = "0.0.0.0"; - sha256 = "0ccwckq0gkrnahf224s59gsdd9baay1dfc8fh1kz2r87rbygzsk7"; - libraryHaskellDepends = [ - base - bytestring - ]; - description = "Lzip compression / Lzlib bindings"; - license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "lzlib" = callPackage ( { mkDerivation, @@ -432846,49 +249370,6 @@ self: { } ) { }; - "lzma-enumerator" = callPackage ( - { - mkDerivation, - base, - bindings-DSL, - bytestring, - enumerator, - HUnit, - mtl, - QuickCheck, - test-framework, - test-framework-hunit, - test-framework-quickcheck2, - xz, - }: - mkDerivation { - pname = "lzma-enumerator"; - version = "0.1.3"; - sha256 = "0pzz8bf6310p23pmsa013i8vib0xsfvlkj7zp0w9xs2xsi4j7jk1"; - libraryHaskellDepends = [ - base - bindings-DSL - bytestring - enumerator - mtl - ]; - librarySystemDepends = [ xz ]; - testHaskellDepends = [ - base - bytestring - enumerator - HUnit - QuickCheck - test-framework - test-framework-hunit - test-framework-quickcheck2 - ]; - description = "Enumerator interface for lzma/xz compression"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { inherit (pkgs) xz; }; - "lzma-static" = callPackage ( { mkDerivation, @@ -432924,48 +249405,6 @@ self: { } ) { }; - "lzma-streams" = callPackage ( - { - mkDerivation, - base, - bytestring, - HUnit, - io-streams, - lzma, - QuickCheck, - test-framework, - test-framework-hunit, - test-framework-quickcheck2, - }: - mkDerivation { - pname = "lzma-streams"; - version = "0.1.0.0"; - sha256 = "1w8s0xvcz8c3s171gizjkc9iadccjznw7rnfq5wpydkc7x4hxjdn"; - revision = "4"; - editedCabalFile = "02ipx7mf8mfc937wkdid6qkxxkb2qp7sx9g8bkk8wbvma77kkysg"; - libraryHaskellDepends = [ - base - bytestring - io-streams - lzma - ]; - testHaskellDepends = [ - base - bytestring - HUnit - io-streams - QuickCheck - test-framework - test-framework-hunit - test-framework-quickcheck2 - ]; - description = "IO-Streams interface for lzma/xz compression"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "lzo" = callPackage ( { mkDerivation, @@ -433007,72 +249446,6 @@ self: { } ) { }; - "mDNSResponder-client" = callPackage ( - { - mkDerivation, - base, - bytestring, - Cabal, - ctrie, - data-endian, - network, - network-msg, - transformers, - }: - mkDerivation { - pname = "mDNSResponder-client"; - version = "1.0.3"; - sha256 = "0kr6kcc9byc8xfvcvx1nvim0j2xglk0haxihka09akklb5jp48p2"; - libraryHaskellDepends = [ - base - bytestring - ctrie - data-endian - network - network-msg - transformers - ]; - testHaskellDepends = [ - base - bytestring - Cabal - ]; - description = "Library for talking to the mDNSResponder daemon"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "maam" = callPackage ( - { - mkDerivation, - base, - containers, - template-haskell, - text, - vector, - }: - mkDerivation { - pname = "maam"; - version = "0.3.0.0"; - sha256 = "1kwri4kzgi2fnb97q6afakl9dcc09r9iixn792w85ii9vy360aaf"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - containers - template-haskell - text - vector - ]; - description = "Monadic Abstracting Abstract Machines (MAAM) built on Galois Transformers"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "maam_examples"; - broken = true; - } - ) { }; - "mac" = callPackage ( { mkDerivation, @@ -433142,88 +249515,6 @@ self: { } ) { }; - "macbeth-lib" = callPackage ( - { - mkDerivation, - attoparsec, - base, - bytestring, - conduit, - conduit-extra, - containers, - directory, - either-unwrap, - filepath, - FindBin, - hspec, - MissingH, - mtl, - network, - old-locale, - resourcet, - safe, - sodium, - split, - stm, - text, - time, - transformers, - wx, - wxcore, - yaml, - }: - mkDerivation { - pname = "macbeth-lib"; - version = "0.0.12"; - sha256 = "1rjx0nipfr6417iv64c4skibs0cglakm532jf70q5wzni3j7sw86"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - attoparsec - base - bytestring - conduit - conduit-extra - containers - directory - either-unwrap - filepath - FindBin - MissingH - mtl - network - old-locale - resourcet - safe - sodium - split - stm - text - time - transformers - wx - wxcore - yaml - ]; - executableHaskellDepends = [ - base - stm - wx - wxcore - ]; - testHaskellDepends = [ - attoparsec - base - bytestring - hspec - ]; - description = "Macbeth - A beautiful and minimalistic FICS client"; - license = "GPL"; - hydraPlatforms = lib.platforms.none; - mainProgram = "Macbeth"; - } - ) { }; - "maccatcher" = callPackage ( { mkDerivation, @@ -433269,47 +249560,6 @@ self: { } ) { }; - "machinecell" = callPackage ( - { - mkDerivation, - base, - doctest, - free, - hspec, - mtl, - profunctors, - QuickCheck, - semigroups, - transformers, - }: - mkDerivation { - pname = "machinecell"; - version = "4.0.1"; - sha256 = "1j2gzs7icvffga3b71dmik5ryb2mivmx5dvzii453nivgcxwyw22"; - libraryHaskellDepends = [ - base - free - mtl - profunctors - semigroups - transformers - ]; - testHaskellDepends = [ - base - doctest - hspec - mtl - profunctors - QuickCheck - semigroups - ]; - description = "Arrow based stream transducers"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "machines" = callPackage ( { mkDerivation, @@ -433363,68 +249613,6 @@ self: { } ) { }; - "machines-amazonka" = callPackage ( - { - mkDerivation, - amazonka, - amazonka-autoscaling, - amazonka-core, - amazonka-ec2, - amazonka-s3, - amazonka-sts, - base, - concurrent-machines, - containers, - exceptions, - focus, - free, - hashable, - liblawless, - lifted-async, - list-t, - monad-control, - mtl, - resourcet, - stm, - stm-containers, - time, - transformers, - }: - mkDerivation { - pname = "machines-amazonka"; - version = "0.7.1"; - sha256 = "02gqv35ld86gncjryi756zv5991qq7x9f535azs010b8y6mngvgk"; - libraryHaskellDepends = [ - amazonka - amazonka-autoscaling - amazonka-core - amazonka-ec2 - amazonka-s3 - amazonka-sts - base - concurrent-machines - containers - exceptions - focus - free - hashable - liblawless - lifted-async - list-t - monad-control - mtl - resourcet - stm - stm-containers - time - transformers - ]; - description = "Machine transducers for Amazonka calls"; - license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "machines-attoparsec" = callPackage ( { mkDerivation, @@ -433490,29 +249678,6 @@ self: { } ) { }; - "machines-bytestring" = callPackage ( - { - mkDerivation, - base, - bytestring, - machines, - }: - mkDerivation { - pname = "machines-bytestring"; - version = "0.1.0.0"; - sha256 = "1rlc5pr70z899zjs2q5p7qy5pm9gjpnm9pww934cxmlwrp1sck9b"; - libraryHaskellDepends = [ - base - bytestring - machines - ]; - description = "ByteString support for machines"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "machines-directory" = callPackage ( { mkDerivation, @@ -433541,31 +249706,6 @@ self: { } ) { }; - "machines-encoding" = callPackage ( - { - mkDerivation, - base, - bytestring, - machines, - text, - }: - mkDerivation { - pname = "machines-encoding"; - version = "0"; - sha256 = "1n8skhf48q7dissrq7hpgsccjgh1hspjqh331m58z8id9xry133g"; - libraryHaskellDepends = [ - base - bytestring - machines - text - ]; - description = "Transcode encodings with machines"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "machines-io" = callPackage ( { mkDerivation, @@ -433619,234 +249759,6 @@ self: { } ) { }; - "machines-zlib" = callPackage ( - { - mkDerivation, - base, - basic-prelude, - machines, - streaming-commons, - }: - mkDerivation { - pname = "machines-zlib"; - version = "0.1.0"; - sha256 = "0ajdc7878vzam5zphdaw8zn8knzk8kq80y3yf84jwlakb6ihrv6d"; - libraryHaskellDepends = [ - base - basic-prelude - machines - streaming-commons - ]; - description = "Decompression support for machines"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "macho" = callPackage ( - { - mkDerivation, - base, - binary, - bytestring, - }: - mkDerivation { - pname = "macho"; - version = "0.22"; - sha256 = "13i8bap38ha8j0259kw4gfx18jxc4860awp3s9rz16i4q2vik0v2"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base - binary - bytestring - ]; - description = "Parser for Mach-O object format"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "mackerel-client" = callPackage ( - { - mkDerivation, - aeson, - aeson-qq, - base, - bytestring, - data-default, - directory, - filepath, - hspec, - htoml, - http-client, - http-client-tls, - http-types, - parsec, - raw-strings-qq, - split, - text, - unordered-containers, - }: - mkDerivation { - pname = "mackerel-client"; - version = "0.3.0"; - sha256 = "1gzrj2nf3v7d55ddfmjvxijcg78l671b18av25hzsr9ymbbljafb"; - libraryHaskellDepends = [ - aeson - base - bytestring - data-default - directory - filepath - htoml - http-client - http-client-tls - http-types - parsec - split - text - unordered-containers - ]; - testHaskellDepends = [ - aeson - aeson-qq - base - data-default - hspec - raw-strings-qq - unordered-containers - ]; - description = "An API client library for Mackerel"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "maclight" = callPackage ( - { - mkDerivation, - base, - filemanip, - filepath, - HUnit, - optparse-applicative, - parsec, - strict, - test-framework, - test-framework-hunit, - }: - mkDerivation { - pname = "maclight"; - version = "0.1.0.0"; - sha256 = "0qf44jza8avq2yfsx2f0bdxbnda4lm3xq9qaivmslfbdfjy3mxv3"; - revision = "1"; - editedCabalFile = "0v10y2x6c2cyh1qc0yki1mn69bcps0bdbq1mipf35mjmd0zs5iyj"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - filemanip - filepath - parsec - strict - ]; - executableHaskellDepends = [ - base - filemanip - filepath - optparse-applicative - strict - ]; - testHaskellDepends = [ - base - HUnit - test-framework - test-framework-hunit - ]; - description = "Control screen and keyboard backlights on MACs under Linux"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - mainProgram = "maclight"; - broken = true; - } - ) { }; - - "macos-corelibs" = callPackage ( - { - mkDerivation, - base, - containers, - managed, - mtl, - profunctors, - tagged, - transformers, - }: - mkDerivation { - pname = "macos-corelibs"; - version = "0.0.1.0"; - sha256 = "1ma5dc8j1s3fpqkqwlqnb32vwchdyabxp001qa7r7balima5xfjs"; - libraryHaskellDepends = [ - base - containers - managed - mtl - profunctors - tagged - transformers - ]; - description = "Haskell bindings to C-based Mac OS SDK frameworks"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "macosx-make-standalone" = callPackage ( - { - mkDerivation, - base, - containers, - data-lens, - data-lens-template, - deepseq, - directory, - filepath, - graph-visit, - mtl, - process, - transformers, - unix, - }: - mkDerivation { - pname = "macosx-make-standalone"; - version = "0.1.0.1"; - sha256 = "04j5fpj4758bl8ksaqn4zz6dl8pg24ih65k1b0pg8qrar4275r14"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - containers - data-lens - data-lens-template - deepseq - directory - filepath - graph-visit - mtl - process - transformers - unix - ]; - description = "Make a macosx app standalone deployable"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "macosx-make-standalone"; - } - ) { }; - "macrm" = callPackage ( { mkDerivation, @@ -433952,143 +249864,15 @@ self: { mtl psqueues random - random-shuffle - raw-strings-qq - transformers - ]; - description = "Monadic DSL for building constraint solvers using basic propagators"; - license = lib.licenses.bsd3; - mainProgram = "sudoku-exe"; - } - ) { }; - - "madlang" = callPackage ( - { - mkDerivation, - ansi-wl-pprint, - base, - binary, - Cabal, - cli-setup, - composition-prelude, - containers, - criterion, - directory, - file-embed, - filepath, - hspec, - hspec-megaparsec, - http-client, - http-client-tls, - megaparsec, - MonadRandom, - mtl, - optparse-applicative, - random-shuffle, - recursion, - tar, - template-haskell, - text, - th-lift-instances, - titlecase, - zip-archive, - zlib, - }: - mkDerivation { - pname = "madlang"; - version = "4.0.2.16"; - sha256 = "0n4y2s5m854akdy482wmhh3m5s77mgq1q91619lc2lsfg21xr80w"; - isLibrary = true; - isExecutable = true; - setupHaskellDepends = [ - base - Cabal - cli-setup - ]; - libraryHaskellDepends = [ - ansi-wl-pprint - base - binary - composition-prelude - containers - directory - file-embed - filepath - megaparsec - MonadRandom - mtl - random-shuffle - recursion - template-haskell - text - th-lift-instances - titlecase - ]; - executableHaskellDepends = [ - base - directory - filepath - http-client - http-client-tls - megaparsec - optparse-applicative - tar - text - zip-archive - zlib - ]; - testHaskellDepends = [ - base - hspec - hspec-megaparsec - text - ]; - benchmarkHaskellDepends = [ - base - criterion - megaparsec - text - ]; - description = "Randomized templating language DSL"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "madlang"; - broken = true; - } - ) { }; - - "mage" = callPackage ( - { - mkDerivation, - array, - base, - containers, - mtl, - ncurses, - random, - }: - mkDerivation { - pname = "mage"; - version = "1.1.0"; - sha256 = "0fknvy48sanvq7vg5pxwbjsahpiby1hba5wf8w6rq2g3d0a1cjwz"; - isLibrary = false; - isExecutable = true; - enableSeparateDataOutput = true; - executableHaskellDepends = [ - array - base - containers - mtl - random + random-shuffle + raw-strings-qq + transformers ]; - executableSystemDepends = [ ncurses ]; - description = "Rogue-like"; + description = "Monadic DSL for building constraint solvers using basic propagators"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "mage"; - broken = true; + mainProgram = "sudoku-exe"; } - ) { inherit (pkgs) ncurses; }; + ) { }; "magic" = callPackage ( { @@ -434107,31 +249891,6 @@ self: { } ) { inherit (pkgs) file; }; - "magic-tyfams" = callPackage ( - { - mkDerivation, - base, - ghc, - ghc-tcplugins-extra, - syb, - }: - mkDerivation { - pname = "magic-tyfams"; - version = "0.1.1.0"; - sha256 = "1vgbbmv2807cyi6hh2137nw6dldn84qall828d64lg2ja6zj6xii"; - libraryHaskellDepends = [ - base - ghc - ghc-tcplugins-extra - syb - ]; - description = "Write plugins for magic type families with ease"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "magic-wormhole" = callPackage ( { mkDerivation, @@ -434390,102 +250149,6 @@ self: { } ) { }; - "mahoro" = callPackage ( - { - mkDerivation, - base, - ConfigFile, - containers, - curl, - directory, - happstack-state, - MissingH, - mtl, - network, - old-time, - regex-posix, - tagsoup, - utf8-string, - XMPP, - }: - mkDerivation { - pname = "mahoro"; - version = "0.1.2"; - sha256 = "0fmhms0415wawd539ipdj47gf27h2jjq2gpzhb0s21r6z63ayp7f"; - isLibrary = false; - isExecutable = true; - enableSeparateDataOutput = true; - executableHaskellDepends = [ - base - ConfigFile - containers - curl - directory - happstack-state - MissingH - mtl - network - old-time - regex-posix - tagsoup - utf8-string - XMPP - ]; - description = "ImageBoards to XMPP gate"; - license = "GPL"; - hydraPlatforms = lib.platforms.none; - mainProgram = "mahoro"; - } - ) { }; - - "maid" = callPackage ( - { - mkDerivation, - air, - air-th, - base, - bytestring, - containers, - data-default, - directory, - filepath, - hack2, - hack2-contrib, - hack2-handler-snap-server, - moe, - process, - text, - }: - mkDerivation { - pname = "maid"; - version = "2014.10.14"; - sha256 = "1gss86263pzwvm14yx5lqzskrwc3z6521z9yp0mg8780qgr8h9sr"; - isLibrary = false; - isExecutable = true; - enableSeparateDataOutput = true; - executableHaskellDepends = [ - air - air-th - base - bytestring - containers - data-default - directory - filepath - hack2 - hack2-contrib - hack2-handler-snap-server - moe - process - text - ]; - description = "A simple static web server"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "maid"; - } - ) { }; - "mail-pool" = callPackage ( { mkDerivation, @@ -434575,148 +250238,6 @@ self: { } ) { }; - "mailchimp" = callPackage ( - { - mkDerivation, - aeson, - attoparsec, - base, - bytestring, - generics-sop, - hspec, - http-client, - http-client-tls, - servant, - servant-client, - text, - transformers, - }: - mkDerivation { - pname = "mailchimp"; - version = "0.3.0"; - sha256 = "0s5v75mcvhbki7kl60cpwlxfzcjbc65lxdasm7zwb6agywyx5080"; - libraryHaskellDepends = [ - aeson - attoparsec - base - bytestring - generics-sop - http-client - http-client-tls - servant - servant-client - text - transformers - ]; - testHaskellDepends = [ - base - hspec - ]; - description = "Bindings for the MailChimp API"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "mailchimp-subscribe" = callPackage ( - { - mkDerivation, - aeson, - base, - http-client, - http-client-tls, - http-types, - reflection, - scotty, - text, - transformers, - wai-extra, - }: - mkDerivation { - pname = "mailchimp-subscribe"; - version = "1.0"; - sha256 = "0c6sn7bpzw82iarpw40l88f58xrjl9gzdqx1xnbafzdyfhbrnzbi"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - aeson - base - http-client - http-client-tls - http-types - reflection - scotty - text - transformers - wai-extra - ]; - description = "MailChimp subscription request handler"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - mainProgram = "mailchimp-subscribe"; - broken = true; - } - ) { }; - - "mailgun" = callPackage ( - { - mkDerivation, - aeson, - aeson-filthy, - ascii, - base, - bytestring, - containers, - exceptions, - filepath, - ini, - lens, - lens-aeson, - machines, - mime-mail, - mime-types, - mtl, - text, - these, - time, - transformers, - unordered-containers, - wreq, - }: - mkDerivation { - pname = "mailgun"; - version = "0.2"; - sha256 = "10gmic7hks35wanzy16ivrnc9zqx586yjxiqmcmhvmkiwrpha3yi"; - libraryHaskellDepends = [ - aeson - aeson-filthy - ascii - base - bytestring - containers - exceptions - filepath - ini - lens - lens-aeson - machines - mime-mail - mime-types - mtl - text - these - time - transformers - unordered-containers - wreq - ]; - description = "API binding for Mailgun"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "mailtrap" = callPackage ( { mkDerivation, @@ -434816,306 +250337,6 @@ self: { } ) { }; - "majordomo" = callPackage ( - { - mkDerivation, - base, - bytestring, - cmdargs, - monad-loops, - old-locale, - threads, - time, - unix, - zeromq-haskell, - }: - mkDerivation { - pname = "majordomo"; - version = "0.1.6"; - sha256 = "1rjarfwjqlrq9cdgjv93v6jwg58984c0dwjk506svsr29ll0p1b1"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - bytestring - monad-loops - old-locale - time - zeromq-haskell - ]; - executableHaskellDepends = [ - base - bytestring - cmdargs - threads - unix - ]; - description = "Majordomo protocol for ZeroMQ"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "majority" = callPackage ( - { mkDerivation, haskell2010 }: - mkDerivation { - pname = "majority"; - version = "1.1"; - sha256 = "1442xw8i9jgk3hqavqikks98qs9l3i37lk63xyzpdgnlkfqapzka"; - libraryHaskellDepends = [ haskell2010 ]; - description = "Boyer-Moore Majority Vote Algorithm"; - license = lib.licenses.publicDomain; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "make-hard-links" = callPackage ( - { - mkDerivation, - base, - bytestring, - containers, - directory, - filepath, - unix, - }: - mkDerivation { - pname = "make-hard-links"; - version = "0.2"; - sha256 = "0bynbrn7fnnw7s6wafaji5yf21zjsrdmdfyb7m97bk77ss0gprq2"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - bytestring - containers - directory - filepath - unix - ]; - description = "Change duplicated files into hard-links"; - license = "GPL"; - hydraPlatforms = lib.platforms.none; - mainProgram = "make-hard-links"; - broken = true; - } - ) { }; - - "make-monofoldable-foldable" = callPackage ( - { - mkDerivation, - base, - mono-traversable, - }: - mkDerivation { - pname = "make-monofoldable-foldable"; - version = "0.1.0.0"; - sha256 = "1bls9gfdlwvaq90g2dllc4vb2rrp6zplx12g35byx6xvwj26lxra"; - libraryHaskellDepends = [ - base - mono-traversable - ]; - description = "Make a MonoFoldable type into an ordinary Foldable type"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "make-package" = callPackage ( - { - mkDerivation, - async, - base, - bytestring, - configurator, - containers, - directory, - filepath, - github, - haskeline, - lens, - lens-datetime, - mtl, - process, - text, - time, - }: - mkDerivation { - pname = "make-package"; - version = "1.2.0"; - sha256 = "1502pggc0gcmsj6fhzkjcrbqydaxz4qivsmv57jm6cxpbypkyin3"; - isLibrary = false; - isExecutable = true; - enableSeparateDataOutput = true; - executableHaskellDepends = [ - async - base - bytestring - configurator - containers - directory - filepath - github - haskeline - lens - lens-datetime - mtl - process - text - time - ]; - description = "Make a cabalized package"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "make-package"; - } - ) { }; - - "makedo" = callPackage ( - { - mkDerivation, - base, - directory, - filepath, - HSH, - process, - }: - mkDerivation { - pname = "makedo"; - version = "0.1"; - sha256 = "0sc2fa45a046lw5x5z839gb1zk0d5nj663ghxajiclm6iw65kl2n"; - libraryHaskellDepends = [ - base - directory - filepath - HSH - process - ]; - description = "Helper for writing redo scripts in Haskell"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "makefile" = callPackage ( - { - mkDerivation, - attoparsec, - base, - doctest, - Glob, - QuickCheck, - tasty, - tasty-hunit, - tasty-quickcheck, - text, - }: - mkDerivation { - pname = "makefile"; - version = "1.1.0.0"; - sha256 = "01swnw8fp2cx5z5xim9apia3yw48six61mhf6p3g0gp99w4i4ypd"; - libraryHaskellDepends = [ - attoparsec - base - text - ]; - testHaskellDepends = [ - attoparsec - base - doctest - Glob - QuickCheck - tasty - tasty-hunit - tasty-quickcheck - text - ]; - description = "Simple Makefile parser and generator"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "mallard" = callPackage ( - { - mkDerivation, - base, - byteable, - bytestring, - cryptohash, - exceptions, - fgl, - file-embed, - hashable, - hasql, - hasql-optparse-applicative, - hasql-pool, - hasql-transaction, - Interpolation, - lens, - megaparsec, - mtl, - optparse-applicative, - optparse-text, - path, - path-io, - text, - unordered-containers, - }: - mkDerivation { - pname = "mallard"; - version = "0.6.1.1"; - sha256 = "02miq5kv3348316h8sxggwk8f8ijr51s8yws1cnliy2wqxfsg50m"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - byteable - bytestring - cryptohash - exceptions - fgl - file-embed - hashable - hasql - hasql-pool - hasql-transaction - Interpolation - lens - megaparsec - mtl - path - path-io - text - unordered-containers - ]; - executableHaskellDepends = [ - base - exceptions - fgl - hasql - hasql-optparse-applicative - hasql-pool - lens - mtl - optparse-applicative - optparse-text - path - path-io - text - unordered-containers - ]; - description = "Database migration and testing as a library"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - mainProgram = "mallard"; - broken = true; - } - ) { }; - "mameya" = callPackage ( { mkDerivation, base }: mkDerivation { @@ -435234,930 +250455,6 @@ self: { } ) { }; - "manatee" = callPackage ( - { - mkDerivation, - base, - binary, - cairo, - containers, - dbus-client, - dbus-core, - derive, - directory, - filepath, - gtk, - gtk-serialized-event, - manatee-core, - mtl, - stm, - template-haskell, - text, - unix, - utf8-string, - }: - mkDerivation { - pname = "manatee"; - version = "0.2.2"; - sha256 = "1v44kml92i426hbinjmx00znyp7dwxa8qj0bmhb3hz0fwmgck1c3"; - isLibrary = true; - isExecutable = true; - executableHaskellDepends = [ - base - binary - cairo - containers - dbus-client - dbus-core - derive - directory - filepath - gtk - gtk-serialized-event - manatee-core - mtl - stm - template-haskell - text - unix - utf8-string - ]; - description = "The Haskell/Gtk+ Integrated Live Environment"; - license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - mainProgram = "manatee"; - } - ) { }; - - "manatee-all" = callPackage ( - { - mkDerivation, - base, - manatee, - manatee-browser, - manatee-core, - manatee-curl, - manatee-editor, - manatee-filemanager, - manatee-imageviewer, - manatee-ircclient, - manatee-mplayer, - manatee-pdfviewer, - manatee-processmanager, - manatee-reader, - manatee-terminal, - manatee-welcome, - }: - mkDerivation { - pname = "manatee-all"; - version = "0.2.2"; - sha256 = "1l3s22svds27q8hyh9nsawpc11crcll3vrcbfy6dvk64s04mwr21"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - manatee - manatee-browser - manatee-core - manatee-curl - manatee-editor - manatee-filemanager - manatee-imageviewer - manatee-ircclient - manatee-mplayer - manatee-pdfviewer - manatee-processmanager - manatee-reader - manatee-terminal - manatee-welcome - ]; - doHaddock = false; - description = "Virtual package to install all Manatee packages"; - license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - mainProgram = "manatee-all"; - } - ) { }; - - "manatee-anything" = callPackage ( - { - mkDerivation, - base, - bytestring, - containers, - dataenc, - dbus-client, - dbus-core, - filepath, - gio, - GoogleSuggest, - gtk, - manatee-core, - mtl, - network, - proc, - regex-tdfa, - split, - stm, - text, - unix, - utf8-string, - }: - mkDerivation { - pname = "manatee-anything"; - version = "0.0.8"; - sha256 = "1ag0272cv700yi7y539hz3r04hqfqq9mx3cacp4hix4wag25f0n8"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - bytestring - containers - dataenc - dbus-client - dbus-core - filepath - gio - GoogleSuggest - gtk - manatee-core - mtl - network - proc - regex-tdfa - split - stm - text - unix - utf8-string - ]; - description = "Multithread interactive input/search framework for Manatee"; - license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - mainProgram = "manatee-anything"; - } - ) { }; - - "manatee-browser" = callPackage ( - { - mkDerivation, - base, - binary, - containers, - dbus-client, - derive, - filepath, - gtk, - manatee-core, - mtl, - stm, - text, - utf8-string, - webkit, - }: - mkDerivation { - pname = "manatee-browser"; - version = "0.1.1"; - sha256 = "01blfcfynfbshznrz4arn89j7s063s7xhlkqnzbv42wqk04i083h"; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base - binary - containers - dbus-client - derive - filepath - gtk - manatee-core - mtl - stm - text - utf8-string - webkit - ]; - description = "Browser extension for Manatee"; - license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - mainProgram = "manatee-browser"; - } - ) { }; - - "manatee-core" = callPackage ( - { - mkDerivation, - array, - base, - binary, - bytestring, - Cabal, - cairo, - containers, - dataenc, - dbus-client, - dbus-core, - derive, - directory, - filepath, - gconf, - ghc, - ghc-paths, - gio, - glib, - gtk, - gtk-serialized-event, - gtksourceview2, - haskell-src-exts, - mtl, - network, - old-locale, - old-time, - process, - regex-tdfa, - split, - stm, - template-haskell, - text, - time, - unix, - utf8-string, - }: - mkDerivation { - pname = "manatee-core"; - version = "0.1.1"; - sha256 = "05s5cd43a395jgyh4i01wzzzwha9rx9vrflwyr6lpz5nqnfp755v"; - libraryHaskellDepends = [ - array - base - binary - bytestring - Cabal - cairo - containers - dataenc - dbus-client - dbus-core - derive - directory - filepath - gconf - ghc - ghc-paths - gio - glib - gtk - gtk-serialized-event - gtksourceview2 - haskell-src-exts - mtl - network - old-locale - old-time - process - regex-tdfa - split - stm - template-haskell - text - time - unix - utf8-string - ]; - description = "The core of Manatee"; - license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "manatee-curl" = callPackage ( - { - mkDerivation, - base, - binary, - bytestring, - containers, - curl, - dbus-client, - dbus-core, - derive, - directory, - filepath, - gio, - glib, - gtk, - manatee-core, - mtl, - network, - old-locale, - old-time, - regex-tdfa, - stm, - template-haskell, - text, - utf8-string, - }: - mkDerivation { - pname = "manatee-curl"; - version = "0.1.1"; - sha256 = "0v525dcg6cs8mfrcbaxk9vx86gnd37c2z8gp9q8fck11616vckvn"; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base - binary - bytestring - containers - curl - dbus-client - dbus-core - derive - directory - filepath - gio - glib - gtk - manatee-core - mtl - network - old-locale - old-time - regex-tdfa - stm - template-haskell - text - utf8-string - ]; - description = "Download Manager extension for Manatee"; - license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - mainProgram = "manatee-curl"; - } - ) { }; - - "manatee-editor" = callPackage ( - { - mkDerivation, - base, - binary, - bytestring, - containers, - dbus-client, - dbus-core, - derive, - filepath, - gtk, - gtksourceview2, - manatee-core, - regex-tdfa, - stm, - text, - }: - mkDerivation { - pname = "manatee-editor"; - version = "0.1.1"; - sha256 = "0rd6xjc1hmvfchwjh32ij4sa36z0v6b1k81gnx7278qqsscmgl9y"; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base - binary - bytestring - containers - dbus-client - dbus-core - derive - filepath - gtk - gtksourceview2 - manatee-core - regex-tdfa - stm - text - ]; - description = "Editor extension for Manatee"; - license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - mainProgram = "manatee-editor"; - } - ) { }; - - "manatee-filemanager" = callPackage ( - { - mkDerivation, - base, - binary, - containers, - dbus-client, - derive, - filepath, - gio, - glib, - gtk, - manatee-core, - mtl, - old-locale, - old-time, - stm, - text, - utf8-string, - }: - mkDerivation { - pname = "manatee-filemanager"; - version = "0.1.1"; - sha256 = "06zrhycpsnfi8r3a071p6qlrqidddv004h10zcglb9ryhw0sh2p1"; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base - binary - containers - dbus-client - derive - filepath - gio - glib - gtk - manatee-core - mtl - old-locale - old-time - stm - text - utf8-string - ]; - description = "File manager extension for Manatee"; - license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - mainProgram = "manatee-filemanager"; - } - ) { }; - - "manatee-imageviewer" = callPackage ( - { - mkDerivation, - base, - binary, - containers, - dbus-client, - derive, - filepath, - gio, - glib, - gtk, - gtkimageview, - manatee-core, - regex-tdfa, - stm, - text, - utf8-string, - }: - mkDerivation { - pname = "manatee-imageviewer"; - version = "0.1.1"; - sha256 = "0yn32xsckvw96kxskfhgcqg98rffl07hkwfjzyd7cm221hwd9s0g"; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base - binary - containers - dbus-client - derive - filepath - gio - glib - gtk - gtkimageview - manatee-core - regex-tdfa - stm - text - utf8-string - ]; - description = "Image viewer extension for Manatee"; - license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - mainProgram = "manatee-imageviewer"; - } - ) { }; - - "manatee-ircclient" = callPackage ( - { - mkDerivation, - array, - base, - binary, - bytestring, - Cabal, - containers, - curl, - dbus-client, - dbus-core, - derive, - fastirc, - filepath, - ghc, - GoogleTranslate, - groom, - gtk, - gtksourceview2, - manatee-core, - MorseCode, - mtl, - nano-md5, - network, - regex-posix, - split, - stm, - template-haskell, - text, - unix, - utf8-string, - }: - mkDerivation { - pname = "manatee-ircclient"; - version = "0.1.1"; - sha256 = "0l14r4mw5bwyjzs5m49sp3vdi2lzfgyjwhsb0q94l3937wb4abgy"; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - array - base - binary - bytestring - Cabal - containers - curl - dbus-client - dbus-core - derive - fastirc - filepath - ghc - GoogleTranslate - groom - gtk - gtksourceview2 - manatee-core - MorseCode - mtl - nano-md5 - network - regex-posix - split - stm - template-haskell - text - unix - utf8-string - ]; - description = "IRC client extension for Manatee"; - license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "manatee-mplayer" = callPackage ( - { - mkDerivation, - base, - binary, - bytestring, - containers, - dbus-client, - dbus-core, - derive, - filepath, - gio, - gtk, - libtagc, - manatee-core, - process, - random, - regex-tdfa, - stm, - text, - time, - unix, - utf8-string, - }: - mkDerivation { - pname = "manatee-mplayer"; - version = "0.1.1"; - sha256 = "1jg9ikshscpjyq73g125acqndd049ry8zw7h0gglsi63xbqpldz4"; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base - binary - bytestring - containers - dbus-client - dbus-core - derive - filepath - gio - gtk - libtagc - manatee-core - process - random - regex-tdfa - stm - text - time - unix - utf8-string - ]; - description = "Mplayer client extension for Manatee"; - license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "manatee-pdfviewer" = callPackage ( - { - mkDerivation, - base, - binary, - cairo, - containers, - dbus-client, - derive, - filepath, - gtk, - manatee-core, - mtl, - poppler, - stm, - text, - utf8-string, - }: - mkDerivation { - pname = "manatee-pdfviewer"; - version = "0.1.1"; - sha256 = "0k00drrk7mpbc8ak5cwzx245xf968186dkc12cxp7n2h2mccb456"; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base - binary - cairo - containers - dbus-client - derive - filepath - gtk - manatee-core - mtl - poppler - stm - text - utf8-string - ]; - description = "PDF viewer extension for Manatee"; - license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - mainProgram = "manatee-pdfviewer"; - } - ) { }; - - "manatee-processmanager" = callPackage ( - { - mkDerivation, - base, - binary, - containers, - dbus-client, - derive, - filepath, - gtk, - manatee-core, - proc, - stm, - text, - }: - mkDerivation { - pname = "manatee-processmanager"; - version = "0.1.1"; - sha256 = "1zxkfil6anh2v692ky9l6gf40784y2czbx8853xmypnhnvgr95ll"; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base - binary - containers - dbus-client - derive - filepath - gtk - manatee-core - proc - stm - text - ]; - description = "Process manager extension for Manatee"; - license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - mainProgram = "manatee-processmanager"; - } - ) { }; - - "manatee-reader" = callPackage ( - { - mkDerivation, - base, - binary, - containers, - curl, - dbus-client, - derive, - download-curl, - feed, - filepath, - gtk, - manatee-core, - stm, - text, - utf8-string, - webkit, - }: - mkDerivation { - pname = "manatee-reader"; - version = "0.1.1"; - sha256 = "07zkjg1q3gdqiw1pp0325pyvh84740mxvlf8k6sc6l1l258zpk90"; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base - binary - containers - curl - dbus-client - derive - download-curl - feed - filepath - gtk - manatee-core - stm - text - utf8-string - webkit - ]; - description = "Feed reader extension for Manatee"; - license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - mainProgram = "manatee-reader"; - } - ) { }; - - "manatee-template" = callPackage ( - { - mkDerivation, - base, - binary, - bytestring, - containers, - dbus-client, - dbus-core, - derive, - filepath, - gtk, - gtksourceview2, - manatee-core, - regex-tdfa, - stm, - text, - }: - mkDerivation { - pname = "manatee-template"; - version = "0.1.1"; - sha256 = "0lcd3g7gp3fl4xpc51wgk0q9q1lijgnfdla521h7nqz84wcdfbcy"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - binary - bytestring - containers - dbus-client - dbus-core - derive - filepath - gtk - gtksourceview2 - manatee-core - regex-tdfa - stm - text - ]; - description = "Template code to create Manatee application"; - license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - mainProgram = "manatee-template"; - } - ) { }; - - "manatee-terminal" = callPackage ( - { - mkDerivation, - base, - binary, - containers, - dbus-client, - derive, - filepath, - gtk, - manatee-core, - stm, - text, - unix, - vte, - }: - mkDerivation { - pname = "manatee-terminal"; - version = "0.1.1"; - sha256 = "1aj1pghad0jdm3biy9f4caahvpyby0ia3clrl8lg2rmp2j703wkd"; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base - binary - containers - dbus-client - derive - filepath - gtk - manatee-core - stm - text - unix - vte - ]; - description = "Terminal Emulator extension for Manatee"; - license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - mainProgram = "manatee-terminal"; - } - ) { }; - - "manatee-welcome" = callPackage ( - { - mkDerivation, - base, - binary, - bytestring, - containers, - dbus-client, - dbus-core, - derive, - filepath, - gtk, - manatee-core, - regex-tdfa, - stm, - text, - }: - mkDerivation { - pname = "manatee-welcome"; - version = "0.1.1"; - sha256 = "1vwj91i05rwgqmral4v2mmcmlrqy54h816j8vi6d0ivs1693p308"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - binary - bytestring - containers - dbus-client - dbus-core - derive - filepath - gtk - manatee-core - regex-tdfa - stm - text - ]; - description = "Welcome module to help user play Manatee quickly"; - license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - mainProgram = "manatee-welcome"; - } - ) { }; - "mancala" = callPackage ( { mkDerivation, base }: mkDerivation { @@ -436319,137 +250616,6 @@ self: { } ) { }; - "mangopay" = callPackage ( - { - mkDerivation, - aeson, - async, - attoparsec, - base, - base16-bytestring, - base64-bytestring, - blaze-builder, - bytestring, - case-insensitive, - conduit, - conduit-extra, - connection, - country-codes, - data-default, - HTF, - http-conduit, - http-types, - HUnit, - lifted-base, - monad-control, - monad-logger, - resourcet, - template-haskell, - text, - time, - tls, - transformers, - transformers-base, - unordered-containers, - utf8-string, - vector, - wai, - warp, - x509-system, - }: - mkDerivation { - pname = "mangopay"; - version = "1.12"; - sha256 = "0wvzyjpphvi1qni9sfzxik2lrqy0ax6nj7bvhmk5cl3ga1ssd7l5"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson - async - attoparsec - base - base16-bytestring - base64-bytestring - blaze-builder - bytestring - case-insensitive - conduit - conduit-extra - connection - country-codes - data-default - http-conduit - http-types - HUnit - lifted-base - monad-control - monad-logger - resourcet - template-haskell - text - time - tls - transformers - transformers-base - unordered-containers - utf8-string - vector - wai - warp - x509-system - ]; - executableHaskellDepends = [ - aeson - base - bytestring - http-conduit - monad-logger - text - transformers - ]; - testHaskellDepends = [ - aeson - async - attoparsec - base - base16-bytestring - base64-bytestring - blaze-builder - bytestring - case-insensitive - conduit - conduit-extra - connection - country-codes - data-default - HTF - http-conduit - http-types - HUnit - lifted-base - monad-control - monad-logger - resourcet - template-haskell - text - time - tls - transformers - transformers-base - unordered-containers - utf8-string - vector - wai - warp - x509-system - ]; - description = "Bindings to the MangoPay API"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "mangopay-passphrase"; - } - ) { }; - "mangrove" = callPackage ( { mkDerivation, @@ -436678,37 +250844,6 @@ self: { } ) { }; - "map-exts" = callPackage ( - { - mkDerivation, - base, - bytestring, - cassava, - containers, - }: - mkDerivation { - pname = "map-exts"; - version = "0.2.0.0"; - sha256 = "038k2d5vir65n2xi4gv5jvd3ya877iazjkinyg20wn4aj317b8bq"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - containers - ]; - executableHaskellDepends = [ - base - bytestring - cassava - containers - ]; - description = "Extensions to Data.Map"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "map-reduce-folds" = callPackage ( { mkDerivation, @@ -436819,56 +250954,6 @@ self: { } ) { }; - "mapalgebra" = callPackage ( - { - mkDerivation, - base, - bytestring, - containers, - deepseq, - hmatrix, - HUnit-approx, - massiv, - massiv-io, - QuickCheck, - tasty, - tasty-hunit, - tasty-quickcheck, - vector, - }: - mkDerivation { - pname = "mapalgebra"; - version = "0.2.1"; - sha256 = "0ymcbq3mb46qx61zl0yfvbk65lx1cqhshnpwsf8cnwysv3b38vhl"; - libraryHaskellDepends = [ - base - bytestring - containers - deepseq - hmatrix - massiv - massiv-io - vector - ]; - testHaskellDepends = [ - base - containers - hmatrix - HUnit-approx - massiv - QuickCheck - tasty - tasty-hunit - tasty-quickcheck - vector - ]; - description = "Efficient, polymorphic Map Algebra"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "mappings" = callPackage ( { mkDerivation, @@ -436919,55 +251004,6 @@ self: { } ) { }; - "mappy" = callPackage ( - { - mkDerivation, - ansi-terminal, - base, - containers, - directory, - haskeline, - hspec, - parsec, - QuickCheck, - }: - mkDerivation { - pname = "mappy"; - version = "0.1.3.1"; - sha256 = "0ic6jcdsx71qnclv1xvpk812n1fvwm1mvwlj7b2jx5qwvbibvpci"; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - ansi-terminal - base - containers - directory - haskeline - parsec - ]; - executableHaskellDepends = [ - ansi-terminal - base - directory - haskeline - parsec - ]; - testHaskellDepends = [ - base - containers - hspec - parsec - QuickCheck - ]; - description = "A functional programming language focused around maps"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "mappy"; - broken = true; - } - ) { }; - "mapquest-api" = callPackage ( { mkDerivation, @@ -437117,39 +251153,6 @@ self: { } ) { }; - "marionetta" = callPackage ( - { - mkDerivation, - base, - containers, - gloss, - mtl, - splines, - vector, - vector-space, - }: - mkDerivation { - pname = "marionetta"; - version = "0.1.0.3"; - sha256 = "0k25m5q8p592xrg2qa0mvm3749gllrj4cmmx2h1k5hssan68bk9g"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - containers - gloss - mtl - splines - vector - vector-space - ]; - description = "A study of marionetta movements"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "marionetta"; - } - ) { }; - "markdown" = callPackage ( { mkDerivation, @@ -437211,83 +251214,6 @@ self: { } ) { }; - "markdown-kate" = callPackage ( - { - mkDerivation, - attoparsec, - attoparsec-conduit, - base, - blaze-html, - conduit, - containers, - data-default, - highlighting-kate, - hspec, - markdown, - system-fileio, - system-filepath, - text, - transformers, - xss-sanitize, - }: - mkDerivation { - pname = "markdown-kate"; - version = "0.1.2.1"; - sha256 = "0zjqy163rxpjy0w3bn21j193qp04f7sdc8mfskaddqfks402h4i0"; - libraryHaskellDepends = [ - attoparsec - attoparsec-conduit - base - blaze-html - conduit - containers - data-default - highlighting-kate - text - transformers - xss-sanitize - ]; - testHaskellDepends = [ - base - blaze-html - conduit - containers - hspec - markdown - system-fileio - system-filepath - text - transformers - ]; - description = "Convert Markdown to HTML, with XSS protection"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "markdown-pap" = callPackage ( - { - mkDerivation, - base, - monads-tf, - papillon, - }: - mkDerivation { - pname = "markdown-pap"; - version = "0.0.1.10"; - sha256 = "0cq0s9yixkg98vhsgiv1xjia2cn0b4q6gjl1wv0q7yrm26anaqcq"; - libraryHaskellDepends = [ - base - monads-tf - papillon - ]; - description = "markdown parser with papillon"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "markdown-unlit" = callPackage ( { mkDerivation, @@ -437332,69 +251258,6 @@ self: { } ) { }; - "markdown2svg" = callPackage ( - { - mkDerivation, - base, - binary-file, - Cabal, - directory, - filepath, - markdown-pap, - monads-tf, - papillon, - png-file, - yjsvg, - }: - mkDerivation { - pname = "markdown2svg"; - version = "0.0.1.27"; - sha256 = "0sman1849sfr0d56kifpyb0ba9pqghvmyhr3gchcd13qimp80395"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - binary-file - Cabal - directory - filepath - markdown-pap - monads-tf - papillon - png-file - yjsvg - ]; - description = "markdown to svg converter"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "markdown2svg"; - } - ) { }; - - "marked-pretty" = callPackage ( - { - mkDerivation, - base, - deepseq, - ghc-prim, - }: - mkDerivation { - pname = "marked-pretty"; - version = "1.1.2.1"; - sha256 = "01dsqdckrm93ydc5frsxj55vgj238213qr31n1iybjdmw5x2r0dl"; - libraryHaskellDepends = [ - base - deepseq - ghc-prim - ]; - testHaskellDepends = [ base ]; - description = "Pretty-printing library, with scoping, based on pretty"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "markov" = callPackage ( { mkDerivation, base }: mkDerivation { @@ -437502,87 +251365,6 @@ self: { ]; description = "Hidden Markov processes"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "markov-realization" = callPackage ( - { - mkDerivation, - base, - comonad, - HTF, - MonadRandom, - }: - mkDerivation { - pname = "markov-realization"; - version = "0.4"; - sha256 = "1kkydk71yhzf2q82vzal6npfs022a5x2ynj95l835kn1lh2n3vhm"; - libraryHaskellDepends = [ - base - comonad - MonadRandom - ]; - testHaskellDepends = [ - base - HTF - MonadRandom - ]; - description = "Realizations of Markov chains"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "markup" = callPackage ( - { - mkDerivation, - attoparsec-uri, - base, - blaze-html, - blaze-markup, - clay, - comonad, - lucid, - mmorph, - monad-control, - monad-logger, - mtl, - path, - path-extra, - resourcet, - text, - transformers-base, - urlpath, - }: - mkDerivation { - pname = "markup"; - version = "4.2.0"; - sha256 = "065pq5m12hk9k6c8lzrgr5mzgz2rzpafhlaql6bvv422j3pbkfgs"; - libraryHaskellDepends = [ - attoparsec-uri - base - blaze-html - blaze-markup - clay - comonad - lucid - mmorph - monad-control - monad-logger - mtl - path - path-extra - resourcet - text - transformers-base - urlpath - ]; - description = "Abstraction for HTML-embedded content"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; } ) { }; @@ -437673,221 +251455,6 @@ self: { } ) { }; - "marmalade-upload" = callPackage ( - { - mkDerivation, - aeson, - base, - bytestring, - data-default, - directory, - exceptions, - filepath, - http-client, - http-client-tls, - http-types, - keyring, - mtl, - network, - optparse-applicative, - tasty, - tasty-hunit, - text, - transformers, - }: - mkDerivation { - pname = "marmalade-upload"; - version = "0.10"; - sha256 = "0643l0xnm4rq6zfbbd01ps3z7qnw7crvpblg7n5rwigi0m1zl4n9"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson - base - bytestring - exceptions - http-client - http-client-tls - http-types - mtl - network - text - transformers - ]; - executableHaskellDepends = [ - aeson - base - bytestring - data-default - directory - filepath - keyring - optparse-applicative - text - transformers - ]; - testHaskellDepends = [ - aeson - base - exceptions - tasty - tasty-hunit - text - transformers - ]; - description = "Upload packages to Marmalade"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - mainProgram = "marmalade-upload"; - } - ) { }; - - "marquise" = callPackage ( - { - mkDerivation, - async, - attoparsec, - base, - binary, - bytestring, - containers, - cryptohash, - data-binary-ieee754, - directory, - either, - errors, - fast-logger, - filepath, - hashable, - hslogger, - hspec, - lifted-async, - mmorph, - monad-control, - monad-logger, - mtl, - old-locale, - optparse-applicative, - packer, - pipes, - pipes-attoparsec, - pipes-bytestring, - pipes-group, - semigroups, - siphash, - text, - time, - transformers, - transformers-base, - unix, - unordered-containers, - vaultaire-common, - zeromq4-haskell, - }: - mkDerivation { - pname = "marquise"; - version = "4.0.0"; - sha256 = "1w2lvns840hdzyismdwv70s70qd2af2ms14y58nhp24yf6h58j7b"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - async - attoparsec - base - binary - bytestring - containers - cryptohash - directory - either - errors - fast-logger - filepath - hashable - hslogger - lifted-async - mmorph - monad-control - monad-logger - mtl - packer - pipes - pipes-attoparsec - pipes-bytestring - pipes-group - semigroups - siphash - text - time - transformers - transformers-base - unix - unordered-containers - vaultaire-common - zeromq4-haskell - ]; - executableHaskellDepends = [ - async - attoparsec - base - bytestring - containers - data-binary-ieee754 - hslogger - old-locale - optparse-applicative - packer - pipes - text - time - unix - unordered-containers - vaultaire-common - ]; - testHaskellDepends = [ - base - bytestring - hspec - ]; - description = "Client library for Vaultaire"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "mars" = callPackage ( - { - mkDerivation, - array, - base, - bytestring, - colour, - gloss, - MonadRandom, - mtl, - random, - }: - mkDerivation { - pname = "mars"; - version = "0.2.1.0"; - sha256 = "1zfm6sxfy6aq5wvv6zs2mnmi311h28ncnbcf77js2pamd5151hyz"; - libraryHaskellDepends = [ - array - base - bytestring - colour - gloss - MonadRandom - mtl - random - ]; - description = "Generates mountainous terrain using a random walk algorithm"; - license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "marshal-contt" = callPackage ( { mkDerivation, @@ -437917,257 +251484,6 @@ self: { } ) { }; - "marvin" = callPackage ( - { - mkDerivation, - aeson, - base, - bytestring, - conduit, - configurator, - deepseq, - directory, - filepath, - hashable, - haskeline, - hspec, - http-client, - http-client-tls, - http-types, - irc-conduit, - lens, - lifted-async, - lifted-base, - marvin-interpolate, - monad-control, - monad-logger, - monad-loops, - mtl, - mustache, - network-uri, - optparse-applicative, - random, - stm, - text, - text-icu, - time, - transformers, - transformers-base, - unordered-containers, - vector, - wai, - warp, - warp-tls, - websockets, - wreq, - wuss, - }: - mkDerivation { - pname = "marvin"; - version = "0.2.5"; - sha256 = "0lgmw8gs7alahv9n36fkxzc6fk0485f566vyyjshqfnh019vpgah"; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - aeson - base - bytestring - conduit - configurator - deepseq - hashable - haskeline - http-client - http-client-tls - http-types - irc-conduit - lens - lifted-async - lifted-base - marvin-interpolate - monad-control - monad-logger - monad-loops - mtl - network-uri - optparse-applicative - random - stm - text - text-icu - time - transformers - transformers-base - unordered-containers - vector - wai - warp - warp-tls - websockets - wreq - wuss - ]; - executableHaskellDepends = [ - aeson - base - bytestring - configurator - directory - filepath - mustache - optparse-applicative - text - ]; - testHaskellDepends = [ - base - hspec - ]; - description = "A framework for modular, portable chat bots"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "marvin-interpolate" = callPackage ( - { - mkDerivation, - base, - haskell-src-meta, - hspec, - mtl, - parsec, - template-haskell, - text, - }: - mkDerivation { - pname = "marvin-interpolate"; - version = "1.1.2"; - sha256 = "1kzc83ly479cwm95qpfsixb747xi34ylm49wn8gpvqbh5yyc6h6n"; - libraryHaskellDepends = [ - base - haskell-src-meta - mtl - parsec - template-haskell - text - ]; - testHaskellDepends = [ - base - hspec - text - ]; - description = "Compile time string interpolation a la Scala and CoffeeScript"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "marxup" = callPackage ( - { - mkDerivation, - base, - configurator, - containers, - directory, - dlist, - filepath, - haskell-src-exts, - labeled-tree, - lens, - lp-diagrams, - mtl, - parsek, - pretty, - process, - text, - }: - mkDerivation { - pname = "marxup"; - version = "3.1.2.0"; - sha256 = "0a6lfjh5brkjm66y4yizzskra4007shqnsb5bjljxwg0vwphp112"; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base - containers - directory - filepath - haskell-src-exts - labeled-tree - lens - lp-diagrams - mtl - process - text - ]; - executableHaskellDepends = [ - base - configurator - dlist - parsek - pretty - ]; - description = "Markup language preprocessor for Haskell"; - license = lib.licenses.gpl2Only; - hydraPlatforms = lib.platforms.none; - mainProgram = "marxup"; - } - ) { }; - - "masakazu-bot" = callPackage ( - { - mkDerivation, - authenticate-oauth, - base, - bytestring, - conduit, - datetime, - lens, - monad-logger, - parsers, - persistent, - persistent-sqlite, - persistent-template, - regex-posix, - text, - transformers, - twitter-conduit, - twitter-types, - }: - mkDerivation { - pname = "masakazu-bot"; - version = "0.4.0.0"; - sha256 = "1p9d2vy3c7yh1w1aczh3f4886q0hldrpisnkk40w62cqvjg7sig7"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - authenticate-oauth - base - bytestring - conduit - datetime - lens - monad-logger - parsers - persistent - persistent-sqlite - persistent-template - regex-posix - text - transformers - twitter-conduit - twitter-types - ]; - description = "@minamiyama1994_bot on haskell"; - license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - mainProgram = "masakazu-bot"; - } - ) { }; - "mason" = callPackage ( { mkDerivation, @@ -438347,54 +251663,6 @@ self: { } ) { }; - "massiv-scheduler" = callPackage ( - { - mkDerivation, - atomic-primops, - base, - Cabal, - cabal-doctest, - deepseq, - doctest, - exceptions, - hspec, - QuickCheck, - template-haskell, - unliftio, - unliftio-core, - }: - mkDerivation { - pname = "massiv-scheduler"; - version = "0.1.1.0"; - sha256 = "1i2j1gapkpx4n7x2s3nnsmns55hl4nrk4csgxak05gnj66p938v3"; - setupHaskellDepends = [ - base - Cabal - cabal-doctest - ]; - libraryHaskellDepends = [ - atomic-primops - base - deepseq - exceptions - unliftio-core - ]; - testHaskellDepends = [ - base - deepseq - doctest - hspec - QuickCheck - template-haskell - unliftio - ]; - description = "Work stealing scheduler for Massiv (Массив) and other parallel applications"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "massiv-serialise" = callPackage ( { mkDerivation, @@ -438499,63 +251767,6 @@ self: { } ) { }; - "master-plan" = callPackage ( - { - mkDerivation, - base, - diagrams, - diagrams-lib, - diagrams-rasterific, - hspec, - megaparsec, - mtl, - optparse-applicative, - QuickCheck, - quickcheck-instances, - random, - random-shuffle, - syb, - text, - }: - mkDerivation { - pname = "master-plan"; - version = "0.3.1"; - sha256 = "1gkbvs4jl5y4pl699ncwfdl3syhyss51adkjm8mszr18w9jlhs34"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - diagrams - diagrams-lib - diagrams-rasterific - megaparsec - mtl - syb - text - ]; - executableHaskellDepends = [ - base - optparse-applicative - text - ]; - testHaskellDepends = [ - base - hspec - mtl - QuickCheck - quickcheck-instances - random - random-shuffle - text - ]; - description = "The project management tool for hackers"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - mainProgram = "master-plan"; - broken = true; - } - ) { }; - "mastermind" = callPackage ( { mkDerivation, @@ -438681,61 +251892,6 @@ self: { } ) { }; - "matcher" = callPackage ( - { - mkDerivation, - base, - base-prelude, - profunctors, - success, - text, - transformers, - }: - mkDerivation { - pname = "matcher"; - version = "0.1.1.3"; - sha256 = "1dqawmlwv26r6zv9qlq9c5wcng6dib9f5070inmgjbhl5ldf374w"; - libraryHaskellDepends = [ - base - base-prelude - profunctors - success - text - transformers - ]; - description = "A composable abstraction for checking or converting a context value"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "matchers" = callPackage ( - { - mkDerivation, - base, - bytestring, - pcre, - prednote, - text, - }: - mkDerivation { - pname = "matchers"; - version = "0.24.0.0"; - sha256 = "171ncbch38nzy46lb6p9navaar1b492hgf4b9kbd3g6fsldvny64"; - libraryHaskellDepends = [ - base - bytestring - prednote - text - ]; - librarySystemDepends = [ pcre ]; - description = "Text matchers"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { inherit (pkgs) pcre; }; - "math-extras" = callPackage ( { mkDerivation, @@ -438809,83 +251965,6 @@ self: { } ) { }; - "math-grads" = callPackage ( - { - mkDerivation, - aeson, - array, - base, - bimap, - containers, - hspec, - ilist, - lens, - linear, - matrix, - mtl, - random, - vector, - }: - mkDerivation { - pname = "math-grads"; - version = "0.1.6.7"; - sha256 = "15dxw679hxkkqdj3yzv49r32a8jll9xj8s8fqmvnyqwzw4lx50qy"; - libraryHaskellDepends = [ - aeson - array - base - bimap - containers - ilist - lens - linear - matrix - mtl - random - vector - ]; - testHaskellDepends = [ - array - base - containers - hspec - random - ]; - description = "Library containing graph data structures and graph algorithms"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "math-interpolate" = callPackage ( - { mkDerivation, base }: - mkDerivation { - pname = "math-interpolate"; - version = "0.1.0.1"; - sha256 = "0l8jv0zm1mar6848n5jyd6dzy02q0cvkgvgnry9db382i1r4g9bq"; - libraryHaskellDepends = [ base ]; - description = "Class for interpolation of values"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "math-metric" = callPackage ( - { mkDerivation, base }: - mkDerivation { - pname = "math-metric"; - version = "0.1.0.1"; - sha256 = "092qbl1x0l6hcm9vn3nx3gyxnqcfx3z2kkfkqw5zmmmyn9zkjsgx"; - libraryHaskellDepends = [ base ]; - description = "Typeclass for metric spaces"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "math-programming" = callPackage ( { mkDerivation, @@ -439001,83 +252080,6 @@ self: { } ) { }; - "mathblog" = callPackage ( - { - mkDerivation, - base, - bytestring, - ConfigFile, - containers, - data-default, - deepseq, - directory, - either, - filepath, - fsnotify, - HStringTemplate, - HTTP, - http-server, - HUnit, - JuicyPixels, - mtl, - network, - old-locale, - pandoc, - pandoc-types, - process, - SHA, - system-filepath, - temporary, - test-framework, - test-framework-hunit, - time, - unix, - url, - }: - mkDerivation { - pname = "mathblog"; - version = "0.6"; - sha256 = "1mbbf0fljaiakw0hw72wsyc1isvylrr7q7wjcyac250lflbkg9dv"; - isLibrary = false; - isExecutable = true; - enableSeparateDataOutput = true; - executableHaskellDepends = [ - base - bytestring - ConfigFile - containers - data-default - deepseq - directory - either - filepath - fsnotify - HStringTemplate - HTTP - http-server - HUnit - JuicyPixels - mtl - network - old-locale - pandoc - pandoc-types - process - SHA - system-filepath - temporary - test-framework - test-framework-hunit - time - unix - url - ]; - description = "A program for creating and managing a static weblog with LaTeX math and diagrams"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "mathexpr" = callPackage ( { mkDerivation, @@ -439097,48 +252099,6 @@ self: { } ) { }; - "mathflow" = callPackage ( - { - mkDerivation, - base, - doctest, - hspec, - hspec-server, - process, - QuickCheck, - shakespeare, - singletons, - template-haskell, - text, - }: - mkDerivation { - pname = "mathflow"; - version = "0.1.0.0"; - sha256 = "175r5h1g5dxh1xaxnmy0l0m91433prvd6d32r6pqn9alf6jlm4fd"; - libraryHaskellDepends = [ - base - process - singletons - template-haskell - ]; - testHaskellDepends = [ - base - doctest - hspec - hspec-server - QuickCheck - shakespeare - singletons - template-haskell - text - ]; - description = "Dependently typed tensorflow modeler"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "mathgenealogy" = callPackage ( { mkDerivation, @@ -439230,36 +252190,6 @@ self: { } ) { }; - "mathlink" = callPackage ( - { - mkDerivation, - array, - base, - c2hs, - containers, - haskell98, - ix-shapable, - mtl, - }: - mkDerivation { - pname = "mathlink"; - version = "2.0.1.1"; - sha256 = "1agqbhl6r40swsvsllyx9vf9hc9a709wvg546rh6fn315waifqqk"; - libraryHaskellDepends = [ - array - base - containers - haskell98 - ix-shapable - mtl - ]; - libraryToolDepends = [ c2hs ]; - description = "Write Mathematica packages in Haskell"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "mathlist" = callPackage ( { mkDerivation, base }: mkDerivation { @@ -439583,69 +252513,6 @@ self: { } ) { }; - "matrix-lens" = callPackage ( - { - mkDerivation, - base, - hedgehog, - lens, - matrix, - tasty, - tasty-discover, - tasty-hedgehog, - tasty-hspec, - vector, - }: - mkDerivation { - pname = "matrix-lens"; - version = "0.1.0.0"; - sha256 = "077dwgvm73qlh12ss725ipbry8gqzl3y1xmg6r34r97vcah5a0fy"; - libraryHaskellDepends = [ - base - lens - matrix - vector - ]; - testHaskellDepends = [ - base - hedgehog - lens - matrix - tasty - tasty-discover - tasty-hedgehog - tasty-hspec - vector - ]; - testToolDepends = [ tasty-discover ]; - description = "Optics for the \"matrix\" package"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "matrix-market" = callPackage ( - { - mkDerivation, - base, - bytestring, - }: - mkDerivation { - pname = "matrix-market"; - version = "1.2"; - sha256 = "1hzpjkmwr24073mf9i13rx3n23ri0b5vmvwx8k9lxbrg1821hy28"; - libraryHaskellDepends = [ - base - bytestring - ]; - description = "Read and write NIST Matrix Market files"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "matrix-market-attoparsec" = callPackage ( { mkDerivation, @@ -439703,56 +252570,6 @@ self: { } ) { }; - "matrix-sized" = callPackage ( - { - mkDerivation, - base, - bytestring, - bytestring-lexing, - conduit, - data-ordlist, - double-conversion, - ieee754, - primitive, - singletons, - store, - tasty, - tasty-quickcheck, - vector, - }: - mkDerivation { - pname = "matrix-sized"; - version = "0.1.1"; - sha256 = "00s08dnyr45c04k4qxydf3sfpyigrg1g8i0671z40m23wpcmzlyd"; - libraryHaskellDepends = [ - base - bytestring - bytestring-lexing - conduit - double-conversion - primitive - singletons - store - vector - ]; - testHaskellDepends = [ - base - conduit - data-ordlist - ieee754 - singletons - store - tasty - tasty-quickcheck - vector - ]; - description = "Haskell matrix library with interface to C++ linear algebra libraries"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "matrix-static" = callPackage ( { mkDerivation, @@ -439820,52 +252637,6 @@ self: { } ) { }; - "matsuri" = callPackage ( - { - mkDerivation, - base, - ConfigFile, - containers, - directory, - MissingH, - mtl, - network, - old-locale, - split, - time, - vty, - vty-ui, - XMPP, - }: - mkDerivation { - pname = "matsuri"; - version = "0.0.4"; - sha256 = "15pjqyy9qs9bn2vfayl73h5maf01snv7rvq1acb3ly8pain36lh4"; - isLibrary = false; - isExecutable = true; - enableSeparateDataOutput = true; - executableHaskellDepends = [ - base - ConfigFile - containers - directory - MissingH - mtl - network - old-locale - split - time - vty - vty-ui - XMPP - ]; - description = "ncurses XMPP client"; - license = "GPL"; - hydraPlatforms = lib.platforms.none; - mainProgram = "matsuri"; - } - ) { }; - "matterhorn" = callPackage ( { mkDerivation, @@ -440125,203 +252896,6 @@ self: { } ) { }; - "maude" = callPackage ( - { - mkDerivation, - base, - directory, - filepath, - process, - process-extras, - temporary, - text, - xml, - }: - mkDerivation { - pname = "maude"; - version = "0.6.1"; - sha256 = "0qadqpj5vzg84mqh29p6vr2ffih7y69ds0jdpxmr17am5bh3mhql"; - libraryHaskellDepends = [ - base - directory - filepath - process - process-extras - temporary - text - xml - ]; - description = "An interface to the Maude rewriting system"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "maxent" = callPackage ( - { - mkDerivation, - ad, - base, - hmatrix, - lagrangian, - nonlinear-optimization, - QuickCheck, - test-framework, - test-framework-hunit, - test-framework-quickcheck2, - vector, - }: - mkDerivation { - pname = "maxent"; - version = "0.7"; - sha256 = "0vxfxlvcrmqcxplw6f2r7nljcam9iv92jy2nxa7x67ldyj7yxk28"; - libraryHaskellDepends = [ - ad - base - lagrangian - nonlinear-optimization - vector - ]; - testHaskellDepends = [ - ad - base - hmatrix - lagrangian - nonlinear-optimization - QuickCheck - test-framework - test-framework-hunit - test-framework-quickcheck2 - vector - ]; - description = "Compute Maximum Entropy Distributions"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "maxent-learner-hw" = callPackage ( - { - mkDerivation, - array, - base, - bytestring, - containers, - deepseq, - file-embed, - mtl, - optparse-applicative, - parallel, - random, - random-shuffle, - readcsv, - text, - vector, - }: - mkDerivation { - pname = "maxent-learner-hw"; - version = "0.2.1"; - sha256 = "008i3lhdf8d3za3hvs4j1pxxwihfg69j1f67bw3d6vn6yvryxk44"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - array - base - containers - deepseq - mtl - parallel - random - readcsv - text - vector - ]; - executableHaskellDepends = [ - array - base - bytestring - containers - deepseq - file-embed - mtl - optparse-applicative - parallel - random - random-shuffle - text - ]; - description = "Hayes and Wilson's maxent learning algorithm for phonotactic grammars"; - license = "GPL"; - hydraPlatforms = lib.platforms.none; - mainProgram = "phono-learner-hw"; - broken = true; - } - ) { }; - - "maxent-learner-hw-gui" = callPackage ( - { - mkDerivation, - array, - async, - base, - bytestring, - cairo, - Chart, - Chart-cairo, - containers, - deepseq, - file-embed, - frpnow, - frpnow-gtk3, - glib, - gtk3, - maxent-learner-hw, - mtl, - parallel, - random, - raw-strings-qq, - text, - transformers, - tuple, - }: - mkDerivation { - pname = "maxent-learner-hw-gui"; - version = "0.2.1"; - sha256 = "0j64dyaxpy37kibbm4m9j6wap9w2m510y3p62q29g40kbs1ib278"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - array - async - base - bytestring - cairo - Chart - Chart-cairo - containers - deepseq - file-embed - frpnow - frpnow-gtk3 - glib - gtk3 - maxent-learner-hw - mtl - parallel - random - raw-strings-qq - text - transformers - tuple - ]; - description = "GUI for maxent-learner-hw"; - license = "GPL"; - hydraPlatforms = lib.platforms.none; - mainProgram = "phono-learner-hw-gui"; - } - ) { }; - "maximal-cliques" = callPackage ( { mkDerivation, @@ -440329,63 +252903,17 @@ self: { containers, vector, }: - mkDerivation { - pname = "maximal-cliques"; - version = "0.1.1"; - sha256 = "1sbmykgb5lrd32rih09d8d0r5isz4nh5slfyd93dgln7ag3hb7bh"; - libraryHaskellDepends = [ - base - containers - vector - ]; - description = "Enumerate all maximal cliques of a graph"; - license = lib.licenses.bsd3; - } - ) { }; - - "maxsharing" = callPackage ( - { - mkDerivation, - base, - base-unicode-symbols, - boxes, - containers, - containers-unicode-symbols, - fgl, - HaLeX, - indentparser, - mtl, - parsec, - process, - uuagc, - uuagc-cabal, - }: - mkDerivation { - pname = "maxsharing"; - version = "1.1"; - sha256 = "0vv4y1a0z2vsg7jakqphn9z4agyir8m3l90a680bm549zkw7blhw"; - isLibrary = false; - isExecutable = true; - enableSeparateDataOutput = true; - executableHaskellDepends = [ - base - base-unicode-symbols - boxes - containers - containers-unicode-symbols - fgl - HaLeX - indentparser - mtl - parsec - process - uuagc - uuagc-cabal + mkDerivation { + pname = "maximal-cliques"; + version = "0.1.1"; + sha256 = "1sbmykgb5lrd32rih09d8d0r5isz4nh5slfyd93dgln7ag3hb7bh"; + libraryHaskellDepends = [ + base + containers + vector ]; - description = "Maximal sharing of terms in the lambda calculus with letrec"; + description = "Enumerate all maximal cliques of a graph"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "maxsharing"; } ) { }; @@ -440411,48 +252939,6 @@ self: { } ) { }; - "maybench" = callPackage ( - { - mkDerivation, - base, - benchpress, - Cabal, - directory, - filepath, - mtl, - old-time, - process, - time, - }: - mkDerivation { - pname = "maybench"; - version = "0.2.4.1"; - sha256 = "1iqfmvj9maa0f4gk66g0j1dv1prhac3vb0b225d9sw9bliwnb1br"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - benchpress - old-time - process - ]; - executableHaskellDepends = [ - base - benchpress - Cabal - directory - filepath - mtl - process - time - ]; - description = "Automated benchmarking tool"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "mbox" = callPackage ( { mkDerivation, @@ -440480,45 +252966,6 @@ self: { } ) { }; - "mbox-tools" = callPackage ( - { - mkDerivation, - base, - bytestring, - codec-mbox, - containers, - fclabels, - hsemail, - mtl, - parsec, - process, - pureMD5, - }: - mkDerivation { - pname = "mbox-tools"; - version = "0.2.0.4"; - sha256 = "1j0dl97skgbxq2gcd3w6jzsdd2yv1mw6z4fz61akcimzyn8c2lvh"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - bytestring - codec-mbox - containers - fclabels - hsemail - mtl - parsec - process - pureMD5 - ]; - description = "A collection of tools to process mbox files"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "mbox-utility" = callPackage ( { mkDerivation, @@ -440556,115 +253003,6 @@ self: { } ) { }; - "mbtiles" = callPackage ( - { - mkDerivation, - base, - bytestring, - directory, - HUnit, - monad-control, - mtl, - resource-pool, - sqlite-simple, - text, - transformers, - unordered-containers, - }: - mkDerivation { - pname = "mbtiles"; - version = "0.6.0.0"; - sha256 = "0bynkbwq33fqyyv4bkl2y3sx57b73w1pyn292jb5j6jm3h52za5q"; - libraryHaskellDepends = [ - base - bytestring - directory - monad-control - mtl - resource-pool - sqlite-simple - text - transformers - unordered-containers - ]; - testHaskellDepends = [ - base - HUnit - ]; - description = "Haskell MBTiles client"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "mbug" = callPackage ( - { - mkDerivation, - base, - bytestring, - directory, - extra, - formatting, - http-client, - http-client-tls, - mtl, - optparse-applicative, - process, - scalpel-core, - tagsoup, - text, - time, - xdg-basedir, - }: - mkDerivation { - pname = "mbug"; - version = "1.3.2"; - sha256 = "05cyznwvwjc1ajjkr28h8dawlk10nx60ybx30g6vs5h68zlq43nd"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - bytestring - directory - extra - formatting - http-client - http-client-tls - mtl - optparse-applicative - process - scalpel-core - tagsoup - text - time - xdg-basedir - ]; - executableHaskellDepends = [ - base - bytestring - directory - extra - formatting - http-client - http-client-tls - mtl - optparse-applicative - process - scalpel-core - tagsoup - text - time - xdg-basedir - ]; - description = "download bugs mailboxes"; - license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - mainProgram = "mbug"; - broken = true; - } - ) { }; - "mcaeson" = callPackage ( { mkDerivation, base }: mkDerivation { @@ -440682,144 +253020,6 @@ self: { } ) { }; - "mcl" = - callPackage - ( - { - mkDerivation, - base, - binary, - bytestring, - Cabal, - criterion, - deepseq, - ghc-prim, - gmpxx, - groups, - integer-gmp, - mcl, - openssl, - primitive, - QuickCheck, - test-framework, - test-framework-quickcheck2, - }: - mkDerivation { - pname = "mcl"; - version = "1.0.1"; - sha256 = "0my9xc3pdnwn33f1kpph85mr5cy94hk173qih482m3b2n36indak"; - setupHaskellDepends = [ - base - Cabal - ]; - libraryHaskellDepends = [ - base - binary - bytestring - deepseq - ghc-prim - groups - integer-gmp - primitive - ]; - librarySystemDepends = [ - gmpxx - mcl - openssl - ]; - testHaskellDepends = [ - base - binary - groups - QuickCheck - test-framework - test-framework-quickcheck2 - ]; - benchmarkHaskellDepends = [ - base - binary - bytestring - criterion - deepseq - groups - ]; - description = "Bindings to mcl, a generic and fast pairing-based cryptography library"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) - { - inherit (pkgs) gmpxx; - mcl = null; - inherit (pkgs) openssl; - }; - - "mcm" = callPackage ( - { - mkDerivation, - base, - blaze-html, - bytestring, - containers, - directory, - filepath, - hostname, - MissingH, - polyparse, - process, - text, - unix, - }: - mkDerivation { - pname = "mcm"; - version = "0.6.8.1"; - sha256 = "1nn6s15c6wwi7b0afzqfczdmc0ivrc8ncychmjym93lw967vjm67"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - blaze-html - bytestring - containers - directory - filepath - hostname - MissingH - polyparse - process - text - unix - ]; - description = "Machine Configuration Manager"; - license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "mcmaster-gloss-examples" = callPackage ( - { - mkDerivation, - base, - gloss, - }: - mkDerivation { - pname = "mcmaster-gloss-examples"; - version = "2013"; - sha256 = "178f2n2r7m4jznkzhnqqslqf0czvz9h7cifhbdmvr1nihhgb532q"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - gloss - ]; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "mcmc" = callPackage ( { mkDerivation, @@ -440902,57 +253102,6 @@ self: { } ) { }; - "mcmc-samplers" = callPackage ( - { - mkDerivation, - base, - containers, - hakaru, - hmatrix, - mwc-random, - primitive, - statistics, - }: - mkDerivation { - pname = "mcmc-samplers"; - version = "0.1.1.1"; - sha256 = "0pqc6i86b5vdhfw93x220k0x7dcfs77s7az6avaw7fn2q6xl1qli"; - libraryHaskellDepends = [ - base - containers - hakaru - hmatrix - mwc-random - primitive - statistics - ]; - description = "Combinators for MCMC sampling"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "mcmc-synthesis" = callPackage ( - { - mkDerivation, - base, - MonadRandom, - }: - mkDerivation { - pname = "mcmc-synthesis"; - version = "0.1.2.2"; - sha256 = "14z1x9dqnjj391nrlngs9s887yqh3arc7kfgk0m3d89vrkc185vq"; - libraryHaskellDepends = [ - base - MonadRandom - ]; - description = "MCMC applied to probabilistic program synthesis"; - license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "mcmc-types" = callPackage ( { mkDerivation, @@ -441119,37 +253268,6 @@ self: { } ) { }; - "mcpi" = callPackage ( - { - mkDerivation, - base, - network, - split, - transformers, - }: - mkDerivation { - pname = "mcpi"; - version = "0.0.1.2"; - sha256 = "15ab4fl49nq398q49wz5fgphfb7xzbrf4j51rnd80qb30rm6xfl6"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - network - split - transformers - ]; - executableHaskellDepends = [ - base - transformers - ]; - description = "Connect to MineCraft running on a Raspberry PI"; - license = lib.licenses.publicDomain; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "md5" = callPackage ( { mkDerivation, @@ -441181,80 +253299,6 @@ self: { } ) { }; - "mdapi" = callPackage ( - { - mkDerivation, - aeson, - base, - bytestring, - data-default, - lens, - lens-aeson, - text, - transformers, - wreq, - }: - mkDerivation { - pname = "mdapi"; - version = "1"; - sha256 = "08b7n7b0m4yzvzizhfak9jwmi0s70qz048fphv71k5a31fsr030g"; - revision = "1"; - editedCabalFile = "0f9ifldcicyavxb2ldj602f1xhy7c9mx7l75i7fmcv6m82xhpd93"; - libraryHaskellDepends = [ - aeson - base - bytestring - data-default - lens - lens-aeson - text - transformers - wreq - ]; - description = "Haskell interface to Fedora's mdapi"; - license = lib.licenses.bsd2; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "mdcat" = callPackage ( - { - mkDerivation, - ansi-terminal, - base, - directory, - pandoc, - terminfo, - }: - mkDerivation { - pname = "mdcat"; - version = "0.1.0.4"; - sha256 = "0jynmcawrxwv6xfbwvz3915rsp2ssx9s8h7i3pgd5adlzqpws19l"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - ansi-terminal - base - directory - pandoc - terminfo - ]; - executableHaskellDepends = [ - ansi-terminal - base - directory - pandoc - terminfo - ]; - description = "Markdown viewer in your terminal"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - mainProgram = "mdcat"; - broken = true; - } - ) { }; - "mdo" = callPackage ( { mkDerivation, @@ -441277,45 +253321,6 @@ self: { } ) { }; - "mdp" = callPackage ( - { - mkDerivation, - base, - containers, - HTF, - HUnit, - QuickCheck, - vector, - }: - mkDerivation { - pname = "mdp"; - version = "0.1.1.0"; - sha256 = "0hs1m998l3611n12cilr83x3h33akr8zdvd6zmdrv5nxabv543kf"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - containers - vector - ]; - executableHaskellDepends = [ - base - vector - ]; - testHaskellDepends = [ - base - HTF - HUnit - QuickCheck - vector - ]; - description = "Tools for solving Markov Decision Processes"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "mealstrom" = callPackage ( { mkDerivation, @@ -441472,52 +253477,6 @@ self: { } ) { }; - "mecab" = callPackage ( - { - mkDerivation, - base, - bytestring, - mecab, - text, - }: - mkDerivation { - pname = "mecab"; - version = "0.4.0"; - sha256 = "0z650y4fnxr4mk0i5s8axjbq14dcpgnrzkafbpg17vfhl2v5a3z3"; - libraryHaskellDepends = [ - base - bytestring - text - ]; - librarySystemDepends = [ mecab ]; - description = "A Haskell binding to MeCab"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { inherit (pkgs) mecab; }; - - "mech" = callPackage ( - { - mkDerivation, - base, - machines, - }: - mkDerivation { - pname = "mech"; - version = "0.0.0.0"; - sha256 = "0r9n04r6rv9dn38l469h40mk7fbmjwq0m72jvq69qahjw11y5lns"; - libraryHaskellDepends = [ - base - machines - ]; - description = "mecha are the most complex composite machines known to humanity, lets build them well!"; - license = lib.licenses.bsd2; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "mecha" = callPackage ( { mkDerivation, base }: mkDerivation { @@ -441533,27 +253492,6 @@ self: { } ) { }; - "mechs" = callPackage ( - { - mkDerivation, - base, - machines, - }: - mkDerivation { - pname = "mechs"; - version = "0.0.0.0"; - sha256 = "04z4qsjmls6h1ndczirldprn42pngm9v8g7kbmwilp7gk1zl0wyx"; - libraryHaskellDepends = [ - base - machines - ]; - description = "mecha are the most complex composite machines known to humanity, lets build them well!"; - license = lib.licenses.bsd2; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "med-module" = callPackage ( { mkDerivation, @@ -441661,336 +253599,6 @@ self: { } ) { }; - "mediabus" = callPackage ( - { - mkDerivation, - array, - async, - base, - binary, - bytestring, - cereal, - conduit, - conduit-combinators, - conduit-extra, - containers, - data-default, - deepseq, - hspec, - lens, - lifted-async, - monad-control, - monad-logger, - mtl, - network, - parallel, - primitive, - process, - QuickCheck, - random, - resourcet, - singletons, - spool, - stm, - streaming-commons, - tagged, - template-haskell, - text, - time, - transformers, - type-spec, - vector, - }: - mkDerivation { - pname = "mediabus"; - version = "0.4.0.1"; - sha256 = "0f0ip2l87a7divqp580iziskx3fkvv6f6vny42vz7v4p77i05p20"; - libraryHaskellDepends = [ - array - async - base - bytestring - cereal - conduit - conduit-combinators - conduit-extra - containers - data-default - deepseq - lens - lifted-async - monad-control - monad-logger - mtl - network - parallel - primitive - process - QuickCheck - random - resourcet - spool - stm - streaming-commons - tagged - text - time - transformers - vector - ]; - testHaskellDepends = [ - array - async - base - binary - bytestring - conduit - conduit-combinators - conduit-extra - containers - data-default - deepseq - hspec - lens - monad-control - mtl - QuickCheck - singletons - spool - stm - tagged - template-haskell - text - time - transformers - type-spec - vector - ]; - description = "Multimedia streaming on top of Conduit"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "mediabus-fdk-aac" = callPackage ( - { - mkDerivation, - base, - bytestring, - conduit, - conduit-combinators, - containers, - criterion, - deepseq, - fdk-aac, - ghc-prim, - inline-c, - lens, - mediabus, - monad-logger, - random, - resourcet, - spool, - tagged, - text, - time, - transformers, - vector, - }: - mkDerivation { - pname = "mediabus-fdk-aac"; - version = "0.4.0.0"; - sha256 = "0lixkyqd8di6k133w4gpv9jb01j96mjdmqcz576gsn4mg11wsb69"; - libraryHaskellDepends = [ - base - bytestring - conduit - conduit-combinators - containers - deepseq - inline-c - lens - mediabus - monad-logger - random - resourcet - spool - tagged - text - time - transformers - vector - ]; - libraryPkgconfigDepends = [ fdk-aac ]; - testHaskellDepends = [ - base - conduit - deepseq - ghc-prim - lens - mediabus - monad-logger - vector - ]; - benchmarkHaskellDepends = [ - base - conduit - criterion - deepseq - ghc-prim - lens - mediabus - monad-logger - time - vector - ]; - description = "Mediabus plugin for the Frauenhofer ISO-14496-3 AAC FDK"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { fdk-aac = null; }; - - "mediabus-rtp" = callPackage ( - { - mkDerivation, - array, - async, - base, - binary, - bytestring, - cereal, - conduit, - conduit-combinators, - conduit-extra, - containers, - data-default, - deepseq, - hspec, - lens, - lifted-async, - mediabus, - monad-control, - monad-logger, - mtl, - network, - parallel, - primitive, - process, - QuickCheck, - random, - resourcet, - singletons, - spool, - stm, - streaming-commons, - tagged, - template-haskell, - text, - time, - transformers, - type-spec, - vector, - }: - mkDerivation { - pname = "mediabus-rtp"; - version = "0.4.0.1"; - sha256 = "1yfy8aak1z9bbwy676qyfxa7hmk1n94f3dn1x070hvpbvgpgmijb"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - array - async - base - bytestring - cereal - conduit - conduit-combinators - conduit-extra - containers - data-default - deepseq - lens - lifted-async - mediabus - monad-control - monad-logger - mtl - network - parallel - primitive - process - QuickCheck - random - resourcet - spool - stm - streaming-commons - tagged - text - time - transformers - vector - ]; - executableHaskellDepends = [ - async - base - conduit - conduit-combinators - conduit-extra - data-default - lens - lifted-async - mediabus - monad-control - monad-logger - mtl - parallel - QuickCheck - random - stm - streaming-commons - tagged - time - vector - ]; - testHaskellDepends = [ - array - async - base - binary - bytestring - conduit - conduit-combinators - conduit-extra - containers - data-default - deepseq - hspec - lens - mediabus - monad-control - monad-logger - mtl - QuickCheck - singletons - spool - stm - tagged - template-haskell - text - time - transformers - type-spec - vector - ]; - description = "Receive and Send RTP Packets"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "mediabus-demo-rtp-alaw-player"; - } - ) { }; - "median-stream" = callPackage ( { mkDerivation, @@ -442015,215 +253623,6 @@ self: { } ) { }; - "mediawiki" = callPackage ( - { - mkDerivation, - base, - HTTP, - mime, - network, - pretty, - utf8-string, - xml, - }: - mkDerivation { - pname = "mediawiki"; - version = "0.2.6"; - sha256 = "1wfrhii7zqrw6rmskab40h9zliidi34kd4n07rdkvf8f8nypwg1r"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - HTTP - mime - network - utf8-string - xml - ]; - executableHaskellDepends = [ - base - HTTP - mime - network - pretty - utf8-string - xml - ]; - description = "Interfacing with the MediaWiki API"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "mediawiki2latex" = callPackage ( - { - mkDerivation, - array, - base, - blaze-html, - blaze-markup, - bytestring, - containers, - deepseq, - directory, - directory-tree, - file-embed, - filepath, - happstack-server, - hashable, - highlighting-kate, - HTTP, - http-client, - http-conduit, - http-types, - hxt, - hxt-http, - mtl, - network, - network-uri, - parsec, - process, - split, - strict, - temporary, - text, - time, - transformers, - url, - utf8-string, - utility-ht, - zip-archive, - }: - mkDerivation { - pname = "mediawiki2latex"; - version = "7.33"; - sha256 = "1a8k0yh8j9si4aj8xpwlssmp31qgc7g53pds1hdi2mfi8clxmah7"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - array - base - blaze-html - blaze-markup - bytestring - containers - deepseq - directory - directory-tree - file-embed - filepath - happstack-server - hashable - highlighting-kate - HTTP - http-client - http-conduit - http-types - hxt - hxt-http - mtl - network - network-uri - parsec - process - split - strict - temporary - text - time - transformers - url - utf8-string - utility-ht - zip-archive - ]; - description = "Convert MediaWiki text to LaTeX"; - license = "GPL"; - hydraPlatforms = lib.platforms.none; - mainProgram = "mediawiki2latex"; - } - ) { }; - - "medium-sdk-haskell" = callPackage ( - { - mkDerivation, - aeson, - base, - bytestring, - data-default-class, - either, - http-client, - servant-client, - servant-server, - text, - time, - }: - mkDerivation { - pname = "medium-sdk-haskell"; - version = "0.1.0.0"; - sha256 = "02p0p4ghzshxi08a1qc52jh93iyyh7w8zbxkgg6s6a87sak2pgjd"; - libraryHaskellDepends = [ - aeson - base - bytestring - data-default-class - either - http-client - servant-client - servant-server - text - time - ]; - description = "Haskell SDK for communicating with the Medium API"; - license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "meep" = callPackage ( - { - mkDerivation, - base, - bifunctors, - doctest, - hspec, - hspec-expectations-lens, - lens, - QuickCheck, - semigroupoids, - semigroups, - }: - mkDerivation { - pname = "meep"; - version = "0.1.2.2"; - sha256 = "184s75xjbab9i2i54zj2zxgvpmafw5lw66j0lp0l3338s70baifm"; - libraryHaskellDepends = [ - base - bifunctors - lens - semigroupoids - semigroups - ]; - testHaskellDepends = [ - base - bifunctors - doctest - hspec - hspec-expectations-lens - lens - QuickCheck - semigroupoids - semigroups - ]; - description = "A silly container"; - license = lib.licenses.bsd2; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "mega-sdist" = callPackage ( { mkDerivation, @@ -442262,31 +253661,6 @@ self: { } ) { }; - "megalisp" = callPackage ( - { - mkDerivation, - base, - megaparsec, - mtl, - text, - }: - mkDerivation { - pname = "megalisp"; - version = "0.0.1"; - sha256 = "158j4wc9j8vpi3k095nfsimjavfmrxgzil3d4a3yqphpk96fz9ci"; - libraryHaskellDepends = [ - base - megaparsec - mtl - text - ]; - description = "lisp parser using mega-parsec"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "megaparsec" = callPackage ( { mkDerivation, @@ -442671,254 +254045,6 @@ self: { } ) { }; - "mellon-core" = callPackage ( - { - mkDerivation, - async, - base, - doctest, - hspec, - mtl, - protolude, - QuickCheck, - quickcheck-instances, - time, - transformers, - }: - mkDerivation { - pname = "mellon-core"; - version = "0.8.0.7"; - sha256 = "1nlqqkmm4163260zgl9cqxrd47iy3fpdyhd52y79c2cr1mqjw39q"; - libraryHaskellDepends = [ - async - base - mtl - protolude - time - transformers - ]; - testHaskellDepends = [ - async - base - doctest - hspec - mtl - protolude - QuickCheck - quickcheck-instances - time - transformers - ]; - description = "Control physical access devices"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "mellon-gpio" = callPackage ( - { - mkDerivation, - base, - hpio, - mellon-core, - protolude, - }: - mkDerivation { - pname = "mellon-gpio"; - version = "0.8.0.7"; - sha256 = "0hg878il0d31lfqwkb3rsd7gxbhs5cb1sxgc3rwdv70fdg63iirp"; - libraryHaskellDepends = [ - base - hpio - mellon-core - protolude - ]; - description = "GPIO support for mellon"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "mellon-web" = callPackage ( - { - mkDerivation, - aeson, - aeson-pretty, - base, - bytestring, - doctest, - exceptions, - hpio, - hspec, - hspec-wai, - http-client, - http-client-tls, - http-types, - lens, - lucid, - mellon-core, - mellon-gpio, - mtl, - network, - optparse-applicative, - protolude, - QuickCheck, - quickcheck-instances, - servant, - servant-client, - servant-client-core, - servant-docs, - servant-lucid, - servant-server, - servant-swagger, - servant-swagger-ui, - swagger2, - text, - time, - transformers, - wai, - wai-extra, - warp, - }: - mkDerivation { - pname = "mellon-web"; - version = "0.8.0.7"; - sha256 = "1m3ch98i8wzhi7g2c2l9klp0a3xcqfwfbq6ad6grl43v8fh1q737"; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - aeson - aeson-pretty - base - bytestring - http-client - http-types - lens - lucid - mellon-core - protolude - servant - servant-client - servant-client-core - servant-docs - servant-lucid - servant-server - servant-swagger - servant-swagger-ui - swagger2 - text - time - transformers - wai - warp - ]; - executableHaskellDepends = [ - base - bytestring - exceptions - hpio - http-client - http-client-tls - http-types - mellon-core - mellon-gpio - mtl - network - optparse-applicative - protolude - servant-client - servant-client-core - time - transformers - warp - ]; - testHaskellDepends = [ - aeson - aeson-pretty - base - bytestring - doctest - hspec - hspec-wai - http-client - http-types - lens - lucid - mellon-core - network - protolude - QuickCheck - quickcheck-instances - servant - servant-client - servant-client-core - servant-docs - servant-lucid - servant-server - servant-swagger - servant-swagger-ui - swagger2 - text - time - transformers - wai - wai-extra - warp - ]; - description = "A REST web service for Mellon controllers"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "melody" = callPackage ( - { - mkDerivation, - base, - containers, - either, - HUnit, - lens, - mtl, - parsec, - ParsecTools, - test-framework, - test-framework-hunit, - }: - mkDerivation { - pname = "melody"; - version = "0.2"; - sha256 = "1sbwd1xmgh94ll3xm7ancjsaalk2mphnr1l331zix5s3kqvy6g6p"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - containers - either - lens - mtl - parsec - ParsecTools - ]; - executableHaskellDepends = [ base ]; - testHaskellDepends = [ - base - containers - HUnit - mtl - test-framework - test-framework-hunit - ]; - description = "A functional scripting language"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - mainProgram = "imelody"; - broken = true; - } - ) { }; - "mem-info" = callPackage ( { mkDerivation, @@ -443016,38 +254142,6 @@ self: { } ) { }; - "membrain" = callPackage ( - { - mkDerivation, - base, - doctest, - Glob, - hedgehog, - hspec, - type-spec, - }: - mkDerivation { - pname = "membrain"; - version = "0.0.0.2"; - sha256 = "1nizjkiggm2ws8kkjw6v96a611kim4yjg4kdrk0rd83fa1zcf7cc"; - revision = "1"; - editedCabalFile = "02yayszbb6g7q7cz9gkjbxzn28v4zm1i9svzydzlrzfds9z603r6"; - libraryHaskellDepends = [ base ]; - testHaskellDepends = [ - base - doctest - Glob - hedgehog - hspec - type-spec - ]; - description = "Type-safe memory units"; - license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "memcache" = callPackage ( { mkDerivation, @@ -443096,169 +254190,6 @@ self: { } ) { }; - "memcache-conduit" = callPackage ( - { - mkDerivation, - attoparsec, - attoparsec-binary, - base, - bytestring, - conduit, - conduit-extra, - memcache-haskell, - mtl, - network, - resourcet, - split, - }: - mkDerivation { - pname = "memcache-conduit"; - version = "0.0.3"; - sha256 = "1y1jysshvwddr3rymbzr9s6bq4pg7rd0bkk7ip4xwa8kpzf8k3pj"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - attoparsec - attoparsec-binary - base - bytestring - conduit - conduit-extra - memcache-haskell - mtl - network - resourcet - split - ]; - description = "Conduit library for memcache procotol"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "memcache-haskell" = callPackage ( - { - mkDerivation, - attoparsec, - base, - bytestring, - hashable, - HUnit, - network, - QuickCheck, - split, - test-framework, - test-framework-hunit, - test-framework-quickcheck2, - test-framework-th, - transformers, - }: - mkDerivation { - pname = "memcache-haskell"; - version = "0.0.10.1"; - sha256 = "0j3fn59nz4iynlmhv3hxbfqip0rjj94fkb3kx8jax90jbnf7s6sc"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - attoparsec - base - bytestring - hashable - network - split - transformers - ]; - testHaskellDepends = [ - base - bytestring - HUnit - network - QuickCheck - split - test-framework - test-framework-hunit - test-framework-quickcheck2 - test-framework-th - ]; - description = "Memcache procotol library"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "memcached" = callPackage ( - { - mkDerivation, - base, - bytestring, - network, - utf8-light, - }: - mkDerivation { - pname = "memcached"; - version = "0.2.1"; - sha256 = "1a6wzznhpz06c0y3wrjf5bskdd8myild8v0p0x1h0swhmy6di2yd"; - libraryHaskellDepends = [ - base - bytestring - network - utf8-light - ]; - description = "haskell bindings for memcached"; - license = "unknown"; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "memcached-binary" = callPackage ( - { - mkDerivation, - base, - bytestring, - data-default-class, - hspec, - HUnit, - network, - process, - resource-pool, - storable-endian, - time, - unordered-containers, - }: - mkDerivation { - pname = "memcached-binary"; - version = "0.2.0"; - sha256 = "137vb065f744jq3avpraqryzspch78vc5krp0fw2zzcbk5cm92ad"; - revision = "3"; - editedCabalFile = "1cx6xs9v7dcr4jv4757zsggic78qph4mirbp4n35ky8hxxjvf51k"; - libraryHaskellDepends = [ - base - bytestring - data-default-class - network - resource-pool - storable-endian - time - unordered-containers - ]; - testHaskellDepends = [ - base - bytestring - data-default-class - hspec - HUnit - network - process - ]; - description = "memcached client using binary protocol"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "memdb" = callPackage ( { mkDerivation, @@ -443358,80 +254289,6 @@ self: { } ) { }; - "memis" = callPackage ( - { - mkDerivation, - aeson, - base, - blaze-html, - blaze-markup, - bytestring, - containers, - directory, - filemanip, - filepath, - http-types, - mime-types, - process, - process-extras, - regex-compat, - regex-pcre-builtin, - regex-tdfa, - safe, - simple, - split, - text, - transformers, - unordered-containers, - utf8-string, - wai, - wai-extra, - wai-middleware-static, - warp, - }: - mkDerivation { - pname = "memis"; - version = "0.1.1"; - sha256 = "00k60lrgcr1m6gx4g9gkbhwzr8a40ygl86hhwz4cqd6xxan4r7n9"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - aeson - base - blaze-html - blaze-markup - bytestring - containers - directory - filemanip - filepath - http-types - mime-types - process - process-extras - regex-compat - regex-pcre-builtin - regex-tdfa - safe - simple - split - text - transformers - unordered-containers - utf8-string - wai - wai-extra - wai-middleware-static - warp - ]; - description = "Memis Efficient Manual Image Sorting"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - mainProgram = "memis"; - broken = true; - } - ) { }; - "memo-map" = callPackage ( { mkDerivation, @@ -443459,84 +254316,6 @@ self: { } ) { }; - "memo-ptr" = callPackage ( - { - mkDerivation, - base, - containers, - }: - mkDerivation { - pname = "memo-ptr"; - version = "0.1.0.0"; - sha256 = "1vy3673dvf0crs384vhi56i7bir9k8yk3cjcrcc7bn15qyclif19"; - libraryHaskellDepends = [ - base - containers - ]; - description = "Pointer equality memoization"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "memo-sqlite" = callPackage ( - { - mkDerivation, - base, - direct-sqlite, - text, - }: - mkDerivation { - pname = "memo-sqlite"; - version = "0.2"; - sha256 = "0x6vpf5kcr4icli0hjdqzphbpsakh0yn2ih2jyh65hnk1nh4j8n7"; - libraryHaskellDepends = [ - base - direct-sqlite - text - ]; - description = "memoize functions using SQLite3 database"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "memoization-utils" = callPackage ( - { - mkDerivation, - base, - containers, - hspec, - lrucache, - time, - time-units, - }: - mkDerivation { - pname = "memoization-utils"; - version = "0.1.0.1"; - sha256 = "1diaqy6wi7f7wh3yx65klj1kd1yf6cfq4grr0g9lx8m1gkgrb91j"; - libraryHaskellDepends = [ - base - containers - lrucache - time - time-units - ]; - testHaskellDepends = [ - base - hspec - time - time-units - ]; - description = "Utilities for memoizing functions"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "memoize" = callPackage ( { mkDerivation, @@ -443559,81 +254338,6 @@ self: { } ) { }; - "memorable-bits" = callPackage ( - { - mkDerivation, - base, - binary, - bits, - bytes, - bytestring, - criterion, - cryptonite, - data-dword, - doctest, - hashable, - HUnit, - memory, - mtl, - network-ip, - optparse-applicative, - random, - split, - tasty, - tasty-hunit, - tasty-quickcheck, - tasty-smallcheck, - }: - mkDerivation { - pname = "memorable-bits"; - version = "0.1.0.1"; - sha256 = "13czmdwg3006xwpac1sngyy8qm5qcm6jbfglqbyy9w85i7qacpf9"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - binary - bits - bytes - bytestring - cryptonite - data-dword - hashable - memory - mtl - network-ip - random - split - ]; - executableHaskellDepends = [ - base - bytestring - cryptonite - optparse-applicative - ]; - testHaskellDepends = [ - base - doctest - HUnit - tasty - tasty-hunit - tasty-quickcheck - tasty-smallcheck - ]; - benchmarkHaskellDepends = [ - base - bytestring - criterion - random - ]; - description = "Generate human memorable strings from binary data"; - license = lib.licenses.bsd2; - hydraPlatforms = lib.platforms.none; - mainProgram = "membits"; - broken = true; - } - ) { }; - "memory" = callPackage ( { mkDerivation, @@ -443784,35 +254488,6 @@ self: { } ) { }; - "memorypool" = callPackage ( - { - mkDerivation, - base, - containers, - transformers, - unsafe, - vector, - }: - mkDerivation { - pname = "memorypool"; - version = "0.1.0.0"; - sha256 = "0w3ssdffsnaxgs8a22sbclsyss4bvmzhb6bww252dcrgpcmn1dkh"; - revision = "1"; - editedCabalFile = "1jv5zba8jldkic64dmrafq45dwaa0ayc2ihvbg0ff87n5i3sh5z0"; - libraryHaskellDepends = [ - base - containers - transformers - unsafe - vector - ]; - description = "basic memory pool outside of haskell heap/GC"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "mempack" = callPackage ( { mkDerivation, @@ -443921,106 +254596,6 @@ self: { } ) { }; - "menoh" = callPackage ( - { - mkDerivation, - aeson, - async, - base, - bytestring, - containers, - filepath, - JuicyPixels, - menoh, - monad-control, - optparse-applicative, - tasty, - tasty-hunit, - tasty-th, - transformers, - vector, - }: - mkDerivation { - pname = "menoh"; - version = "0.3.0"; - sha256 = "0w2p2g5zk4n3k84yrk7hs7kgk82w6avd2i0zk6iczjhhkihh1c6m"; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - aeson - base - bytestring - containers - monad-control - transformers - vector - ]; - libraryPkgconfigDepends = [ menoh ]; - executableHaskellDepends = [ - base - filepath - JuicyPixels - optparse-applicative - vector - ]; - testHaskellDepends = [ - async - base - bytestring - filepath - JuicyPixels - tasty - tasty-hunit - tasty-th - vector - ]; - description = "Haskell binding for Menoh DNN inference library"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { menoh = null; }; - - "menshen" = callPackage ( - { - mkDerivation, - aeson, - base, - hspec, - QuickCheck, - regex-tdfa, - scientific, - text, - }: - mkDerivation { - pname = "menshen"; - version = "0.0.3"; - sha256 = "0zx530ksb0zmczbl6k70xg6pxgr2wfga2pg0ghgmpgd9f307xrwb"; - revision = "1"; - editedCabalFile = "0hxj40q50pbl57dribvnk8ak907p15jnk3zycv6n9vj91la9js48"; - libraryHaskellDepends = [ - base - regex-tdfa - scientific - text - ]; - testHaskellDepends = [ - aeson - base - hspec - QuickCheck - regex-tdfa - scientific - text - ]; - description = "Data Validation"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "mercury-api" = callPackage ( { mkDerivation, @@ -444383,81 +254958,6 @@ self: { } ) { }; - "merkle-patricia-db" = callPackage ( - { - mkDerivation, - aeson, - ansi-wl-pprint, - base, - base16-bytestring, - binary, - bytestring, - containers, - cryptonite, - data-default, - ethereum-rlp, - hspec, - hspec-contrib, - HUnit, - leveldb-haskell, - memory, - mtl, - nibblestring, - resourcet, - test-framework, - test-framework-hunit, - text, - transformers, - }: - mkDerivation { - pname = "merkle-patricia-db"; - version = "0.1.0"; - sha256 = "19m5d2l0yfxak9q4nh55ccvb6imb1k63h1qicq44zs8r43mnv3qw"; - libraryHaskellDepends = [ - ansi-wl-pprint - base - base16-bytestring - binary - bytestring - containers - cryptonite - data-default - ethereum-rlp - leveldb-haskell - memory - mtl - nibblestring - resourcet - text - transformers - ]; - testHaskellDepends = [ - aeson - ansi-wl-pprint - base - base16-bytestring - binary - bytestring - containers - data-default - ethereum-rlp - hspec - hspec-contrib - HUnit - leveldb-haskell - mtl - nibblestring - resourcet - test-framework - test-framework-hunit - transformers - ]; - description = "A modified Merkle Patricia DB"; - license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "merkle-tree" = callPackage ( { mkDerivation, @@ -444487,490 +254987,144 @@ self: { ]; testHaskellDepends = [ base - bytestring - cereal - cryptonite - memory - protolude - QuickCheck - random - tasty - tasty-quickcheck - ]; - description = "An implementation of a Merkle tree and merkle tree proofs of inclusion"; - license = lib.licenses.asl20; - } - ) { }; - - "mersenne-random" = callPackage ( - { - mkDerivation, - base, - old-time, - }: - mkDerivation { - pname = "mersenne-random"; - version = "1.0.0.1"; - sha256 = "193qz3wn7lz18aywddr9qyn8v08ifv2yxwr68c67p5mn8vr8mvmw"; - libraryHaskellDepends = [ - base - old-time - ]; - description = "Generate high quality pseudorandom numbers using a SIMD Fast Mersenne Twister"; - license = lib.licenses.bsd3; - } - ) { }; - - "mersenne-random-pure64" = callPackage ( - { - mkDerivation, - base, - random, - time, - }: - mkDerivation { - pname = "mersenne-random-pure64"; - version = "0.2.2.0"; - sha256 = "1lbmdnlk21qqbzw1g7jph6d21dg3vf5saca3inwv1byxq7fh057g"; - revision = "1"; - editedCabalFile = "0pxq0xz42x60993rl4pr4pia80jv1xcqh6njvjzfvn75018j4gw5"; - libraryHaskellDepends = [ - base - random - time - ]; - description = "Generate high quality pseudorandom numbers purely using a Mersenne Twister"; - license = lib.licenses.bsd3; - } - ) { }; - - "message-db-temp" = callPackage ( - { - mkDerivation, - base, - bytestring, - containers, - exceptions, - postgres-options, - postgresql-simple, - retry, - safe-exceptions, - text, - tmp-postgres, - typed-process, - }: - mkDerivation { - pname = "message-db-temp"; - version = "0.0.1.0"; - sha256 = "1cfc199lyv55hz8xiqgz4pzlrwx9ipdm8qz67r57ifyqn4hsdl89"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base - bytestring - containers - exceptions - postgres-options - postgresql-simple - retry - safe-exceptions - text - tmp-postgres - typed-process - ]; - description = "Temporary message-db for integration testing"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "messagepack" = callPackage ( - { - mkDerivation, - base, - bytestring, - cereal, - containers, - deepseq, - QuickCheck, - }: - mkDerivation { - pname = "messagepack"; - version = "0.5.5"; - sha256 = "1naa6lrvy56z6r41r800v4bqa3467j5d6rvgq9npaz6nm2nvrvmk"; - libraryHaskellDepends = [ - base - bytestring - cereal - containers - deepseq - ]; - testHaskellDepends = [ - base - bytestring - cereal - containers - QuickCheck - ]; - description = "Serialize instance for Message Pack Object"; - license = lib.licenses.mit; - } - ) { }; - - "messagepack-rpc" = callPackage ( - { - mkDerivation, - base, - bytestring, - cereal, - containers, - messagepack, - network-simple, - }: - mkDerivation { - pname = "messagepack-rpc"; - version = "0.5.1"; - sha256 = "1g5096h595ajcb6kyb4s1azkwv9cmw2w7r9nvmm4wa388rj60yda"; - revision = "1"; - editedCabalFile = "05p6naaxswmsc3w7k67ydzzwyn60ymp0jbrc0f66p2sajvlnviax"; - libraryHaskellDepends = [ - base - bytestring - cereal - containers - messagepack - network-simple - ]; - description = "Message Pack RPC over TCP"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "messente" = callPackage ( - { - mkDerivation, - base, - bytestring, - HTTP, - http-conduit, - network, - }: - mkDerivation { - pname = "messente"; - version = "0.1.0.1"; - sha256 = "1yv2dspkn34yf61z8c09aijngjr96w30s2sjmhyv9c2c48ys6jc5"; - libraryHaskellDepends = [ - base - bytestring - HTTP - http-conduit - network - ]; - description = "Messente SMS Gateway"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "meta-misc" = callPackage ( - { - mkDerivation, - base, - loch-th, - template-haskell, - }: - mkDerivation { - pname = "meta-misc"; - version = "0.1.0.3"; - sha256 = "0pxsg67r2z0f9zxr8m98sndlii0bixyxwgjkc31z5743ciw9ch0c"; - libraryHaskellDepends = [ - base - loch-th - template-haskell - ]; - description = "Utility library providing miscellaneous meta-programming utilities"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "meta-par" = callPackage ( - { - mkDerivation, - abstract-deque, - abstract-par, - base, - bytestring, - containers, - deepseq, - mtl, - mwc-random, - transformers, - vector, - }: - mkDerivation { - pname = "meta-par"; - version = "0.3"; - sha256 = "012blwbwxac2wikiydvjsa4b7f866wws3g33bczv8dzcx3123ljn"; - libraryHaskellDepends = [ - abstract-deque - abstract-par - base - bytestring - containers - deepseq - mtl - mwc-random - transformers - vector - ]; - description = "Provides the monad-par interface, but based on modular scheduler \"mix-ins\""; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "meta-par-accelerate" = callPackage ( - { - mkDerivation, - abstract-deque, - abstract-par, - abstract-par-accelerate, - accelerate, - array, - base, - meta-par, - QuickCheck, - transformers, - vector, - }: - mkDerivation { - pname = "meta-par-accelerate"; - version = "0.3.5"; - sha256 = "0gl6bh2jqf697vl4cg88z39g6180bbha01h67qz46f1vcyvi0lwq"; - libraryHaskellDepends = [ - abstract-deque - abstract-par - abstract-par-accelerate - accelerate - array - base - meta-par + bytestring + cereal + cryptonite + memory + protolude QuickCheck - transformers - vector + random + tasty + tasty-quickcheck ]; - description = "Support for integrated Accelerate computations within Meta-par"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; + description = "An implementation of a Merkle tree and merkle tree proofs of inclusion"; + license = lib.licenses.asl20; } ) { }; - "metadata" = callPackage ( + "mersenne-random" = callPackage ( { mkDerivation, base, - text, - time, + old-time, }: mkDerivation { - pname = "metadata"; - version = "0.4.3.0"; - sha256 = "0860ggpksvaagrb1gqvnpp8gx6xd6h05dqg2ciis6i2my9gxmcmz"; + pname = "mersenne-random"; + version = "1.0.0.1"; + sha256 = "193qz3wn7lz18aywddr9qyn8v08ifv2yxwr68c67p5mn8vr8mvmw"; libraryHaskellDepends = [ base - text - time + old-time ]; - description = "metadata library for semantic web"; + description = "Generate high quality pseudorandom numbers using a SIMD Fast Mersenne Twister"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; } ) { }; - "metaheuristics" = callPackage ( + "mersenne-random-pure64" = callPackage ( { mkDerivation, - arrows, base, random, - Stream, + time, }: mkDerivation { - pname = "metaheuristics"; - version = "0.0.8"; - sha256 = "0rdw0laqx9kypfwzqb4ir18r07sjxgm4pwfs82bjpwq0gf58nzas"; + pname = "mersenne-random-pure64"; + version = "0.2.2.0"; + sha256 = "1lbmdnlk21qqbzw1g7jph6d21dg3vf5saca3inwv1byxq7fh057g"; + revision = "1"; + editedCabalFile = "0pxq0xz42x60993rl4pr4pia80jv1xcqh6njvjzfvn75018j4gw5"; libraryHaskellDepends = [ - arrows base random - Stream + time ]; - description = "Generalised local search within Haskell, for applications in combinatorial optimisation"; - license = "GPL"; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "metamorphic" = callPackage ( - { mkDerivation, base }: - mkDerivation { - pname = "metamorphic"; - version = "0.1.2.3"; - sha256 = "0pazw2kdsl8g4dax6bg0hfg7vp2nna6lrsnzdkixpins7ac95078"; - libraryHaskellDepends = [ base ]; - description = "metamorphisms: ana . cata or understanding folds and unfolds"; - license = "unknown"; + description = "Generate high quality pseudorandom numbers purely using a Mersenne Twister"; + license = lib.licenses.bsd3; } ) { }; - "metaplug" = callPackage ( + "message-db-temp" = callPackage ( { mkDerivation, base, - Cabal, - filepath, - ghc, - haskell98, + bytestring, + containers, + exceptions, + postgres-options, + postgresql-simple, + retry, + safe-exceptions, + text, + tmp-postgres, + typed-process, }: mkDerivation { - pname = "metaplug"; - version = "0.1.1"; - sha256 = "086n9kqyi2jqki31jgylm0r63ahgvw3pf7mi5hln2m86a5x4ij4n"; + pname = "message-db-temp"; + version = "0.0.1.0"; + sha256 = "1cfc199lyv55hz8xiqgz4pzlrwx9ipdm8qz67r57ifyqn4hsdl89"; + enableSeparateDataOutput = true; libraryHaskellDepends = [ base - Cabal - filepath - ghc - haskell98 + bytestring + containers + exceptions + postgres-options + postgresql-simple + retry + safe-exceptions + text + tmp-postgres + typed-process ]; - description = "a tiny ghc api wrapper"; - license = lib.licenses.bsd3; + description = "Temporary message-db for integration testing"; + license = lib.licenses.mit; hydraPlatforms = lib.platforms.none; } ) { }; - "metar" = callPackage ( + "messagepack" = callPackage ( { mkDerivation, base, bytestring, - checkers, - deriving-compat, - HTTP, - http-client, - lens, - network-uri, + cereal, + containers, + deepseq, QuickCheck, - semigroupoids, - semigroups, - tagsoup, - tagsoup-selection, - tasty, - tasty-hunit, - tasty-quickcheck, - transformers, - wreq, }: mkDerivation { - pname = "metar"; - version = "0.0.3"; - sha256 = "15irfjx9knfy977b0ka2hiwl6gh7cl3x39by4zkbc0njnqk68vvh"; - isLibrary = true; - isExecutable = true; + pname = "messagepack"; + version = "0.5.5"; + sha256 = "1naa6lrvy56z6r41r800v4bqa3467j5d6rvgq9npaz6nm2nvrvmk"; libraryHaskellDepends = [ base bytestring - deriving-compat - HTTP - http-client - lens - network-uri - semigroupoids - semigroups - tagsoup - tagsoup-selection - transformers - wreq + cereal + containers + deepseq ]; - executableHaskellDepends = [ base ]; testHaskellDepends = [ base - checkers - lens + bytestring + cereal + containers QuickCheck - tasty - tasty-hunit - tasty-quickcheck ]; - description = "Australian METAR"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "metar"; + description = "Serialize instance for Message Pack Object"; + license = lib.licenses.mit; } ) { }; - "metar-http" = callPackage ( - { - mkDerivation, - base, - checkers, - http-types, - lens, - metar, - network-uri, - QuickCheck, - semigroupoids, - semigroups, - tasty, - tasty-hunit, - tasty-quickcheck, - text, - transformers, - utf8-string, - wai, - warp, - }: + "metamorphic" = callPackage ( + { mkDerivation, base }: mkDerivation { - pname = "metar-http"; - version = "0.0.3"; - sha256 = "04skay08n5z0ibqw53yrxaxx5ysmbphbanmbai3znnrn7mf7q1xh"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - http-types - lens - metar - network-uri - semigroupoids - semigroups - text - transformers - utf8-string - wai - warp - ]; - executableHaskellDepends = [ base ]; - testHaskellDepends = [ - base - checkers - lens - QuickCheck - tasty - tasty-hunit - tasty-quickcheck - ]; - description = "HTTP for METAR"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "metar-http"; + pname = "metamorphic"; + version = "0.1.2.3"; + sha256 = "0pazw2kdsl8g4dax6bg0hfg7vp2nna6lrsnzdkixpins7ac95078"; + libraryHaskellDepends = [ base ]; + description = "metamorphisms: ana . cata or understanding folds and unfolds"; + license = "unknown"; } ) { }; @@ -445015,43 +255169,6 @@ self: { } ) { }; - "metric" = callPackage ( - { - mkDerivation, - base, - data-default, - edit-distance, - hmatrix, - QuickCheck, - test-framework, - test-framework-quickcheck2, - vector, - }: - mkDerivation { - pname = "metric"; - version = "0.2.0"; - sha256 = "172drfn8p5yqyvka2jphhi1lfj5msv2xssa271lfb3w757br452d"; - libraryHaskellDepends = [ - base - data-default - edit-distance - hmatrix - vector - ]; - testHaskellDepends = [ - base - QuickCheck - test-framework - test-framework-quickcheck2 - vector - ]; - description = "Metric spaces"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "metrics" = callPackage ( { mkDerivation, @@ -445109,27 +255226,6 @@ self: { } ) { }; - "metricsd-client" = callPackage ( - { - mkDerivation, - base, - network, - }: - mkDerivation { - pname = "metricsd-client"; - version = "0.1"; - sha256 = "1q807wvmj1q605257jj60h0j2wal6ypjiad9wkjmv836p3mis5q9"; - libraryHaskellDepends = [ - base - network - ]; - description = "Client for the metrics aggregator Metricsd"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "metro" = callPackage ( { mkDerivation, @@ -445241,41 +255337,6 @@ self: { } ) { }; - "metro-transport-tls" = callPackage ( - { - mkDerivation, - base, - bytestring, - data-default-class, - metro, - pem, - tls, - x509, - x509-store, - x509-validation, - }: - mkDerivation { - pname = "metro-transport-tls"; - version = "0.1.0.0"; - sha256 = "1lsw4s7h4s1m2hm5bwhq2nx0acnaw1377ifdf0xphb1rzgbdacvb"; - libraryHaskellDepends = [ - base - bytestring - data-default-class - metro - pem - tls - x509 - x509-store - x509-validation - ]; - description = "TLS transport for metro"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "metro-transport-websockets" = callPackage ( { mkDerivation, @@ -445322,101 +255383,6 @@ self: { } ) { }; - "metronome" = callPackage ( - { - mkDerivation, - base, - data-lens, - data-lens-template, - hosc, - stm, - }: - mkDerivation { - pname = "metronome"; - version = "0.1.1"; - sha256 = "1w3g8c44g13yp57ik4l1p1a4gb58bpan3qlwjzszpm15b37wfj7f"; - libraryHaskellDepends = [ - base - data-lens - data-lens-template - hosc - stm - ]; - description = "Time Synchronized execution"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "mezzo" = callPackage ( - { - mkDerivation, - base, - boxes, - deepseq, - Euterpea, - ghc-prim, - ghc-typelits-natnormalise, - HCodecs, - hspec, - HUnit, - QuickCheck, - should-not-typecheck, - template-haskell, - }: - mkDerivation { - pname = "mezzo"; - version = "0.3.1.0"; - sha256 = "1hpsv1k9gnlwwzwg10infipw4dnlcaw86jiismwpynlxrgdrcd36"; - libraryHaskellDepends = [ - base - boxes - Euterpea - ghc-prim - ghc-typelits-natnormalise - HCodecs - template-haskell - ]; - testHaskellDepends = [ - base - deepseq - hspec - HUnit - QuickCheck - should-not-typecheck - ]; - description = "Typesafe music composition"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "mezzolens" = callPackage ( - { - mkDerivation, - base, - containers, - mtl, - transformers, - }: - mkDerivation { - pname = "mezzolens"; - version = "0.0.0"; - sha256 = "0ayz8sdxakrwb0arnbq9rv876f5jbkmycj3jr00p82vhfdyvwll2"; - libraryHaskellDepends = [ - base - containers - mtl - transformers - ]; - description = "Pure Profunctor Functional Lenses"; - license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "mfsolve" = callPackage ( { mkDerivation, @@ -445449,79 +255415,6 @@ self: { } ) { }; - "mgeneric" = callPackage ( - { - mkDerivation, - base, - containers, - lens, - mtl, - template-haskell, - }: - mkDerivation { - pname = "mgeneric"; - version = "0.0.0.2"; - sha256 = "1pgmgssysl0nv9z4vvlmxjijl6y7jvy1b7ph30jnj3fmcrwdf6w3"; - libraryHaskellDepends = [ - base - containers - lens - mtl - template-haskell - ]; - description = "Generics with multiple parameters"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "mi" = callPackage ( - { - mkDerivation, - base, - haskell-src-meta, - parsec, - split, - template-haskell, - }: - mkDerivation { - pname = "mi"; - version = "0.0.1"; - sha256 = "03virg707xxy330xq4g60fy1rvs1rq9w5p08yc5khzh64v1g3i2b"; - libraryHaskellDepends = [ - base - haskell-src-meta - parsec - split - template-haskell - ]; - description = "Multiple Instance for Haskell"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "miconix-test" = callPackage ( - { mkDerivation, base }: - mkDerivation { - pname = "miconix-test"; - version = "0.2"; - sha256 = "02p2m11chfva4i6293if0yf8rvdbxjf8wz38ckmksiicmzhss10y"; - revision = "3"; - editedCabalFile = "1rkx448wrvq08qi84g5vqxk3fc27xb4jgwf9vi6hqj5a9gwnjfcg"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ base ]; - description = "spam"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "test1"; - broken = true; - } - ) { }; - "micro-gateway" = callPackage ( { mkDerivation, @@ -445601,38 +255494,6 @@ self: { license = lib.licenses.bsd3; hydraPlatforms = lib.platforms.none; mainProgram = "simple-gateway"; - } - ) { }; - - "micro-recursion-schemes" = callPackage ( - { - mkDerivation, - base, - cpphs, - HUnit, - template-haskell, - th-abstraction, - }: - mkDerivation { - pname = "micro-recursion-schemes"; - version = "5.0.2.2"; - sha256 = "17jybjra4s1hapjz6i8bwlv8y6rm70g72vl7cd2y7xrq4vrd3p9v"; - revision = "1"; - editedCabalFile = "0zdyg5w4fhdps5cirp21wpd6056v09381lmdf9mizfxilhx4wziy"; - libraryHaskellDepends = [ - base - template-haskell - th-abstraction - ]; - libraryToolDepends = [ cpphs ]; - testHaskellDepends = [ - base - HUnit - template-haskell - ]; - description = "Simple recursion schemes"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; broken = true; } ) { }; @@ -445924,28 +255785,6 @@ self: { description = "Microformats 2 types (with Aeson instances)"; license = lib.licenses.publicDomain; hydraPlatforms = lib.platforms.none; - } - ) { }; - - "microgroove" = callPackage ( - { - mkDerivation, - base, - primitive, - vector, - }: - mkDerivation { - pname = "microgroove"; - version = "0.2.1.0"; - sha256 = "1dfkiiiksb4wnf6kgxmla37w1xmmxpzim4ribjckvn58pd2hn2a0"; - libraryHaskellDepends = [ - base - primitive - vector - ]; - description = "Array-backed extensible records"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; broken = true; } ) { }; @@ -446029,27 +255868,6 @@ self: { } ) { }; - "microlens-each" = callPackage ( - { - mkDerivation, - base, - microlens, - }: - mkDerivation { - pname = "microlens-each"; - version = "0.1.0.0"; - sha256 = "00bk2vriwh8aj2c6n5g2w84pfq0nssfa62iw97dm9c3zkp558wxj"; - libraryHaskellDepends = [ - base - microlens - ]; - description = "'each' for microlens"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "microlens-ghc" = callPackage ( { mkDerivation, @@ -446252,91 +256070,6 @@ self: { } ) { }; - "micrologger" = callPackage ( - { - mkDerivation, - aeson, - base, - bytestring, - containers, - hspec, - lens, - text, - text-format, - time, - transformers, - }: - mkDerivation { - pname = "micrologger"; - version = "0.5.0.0"; - sha256 = "0n3jqavza0fkhngikbpjnn8x268qrnhrg1g08yp3p58jvbvwbr6p"; - libraryHaskellDepends = [ - aeson - base - bytestring - containers - lens - text - text-format - time - transformers - ]; - testHaskellDepends = [ - aeson - base - hspec - text - ]; - description = "A super simple logging module"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "microsoft-translator" = callPackage ( - { - mkDerivation, - base, - bytestring, - http-api-data, - http-client, - http-client-tls, - http-media, - mtl, - safe, - servant, - servant-client, - text, - time, - xml, - }: - mkDerivation { - pname = "microsoft-translator"; - version = "0.1.2"; - sha256 = "0qvf07a0nshbrzgqx5236b5bzc7z7jh49acsx7x7hyj5xsrcp7cw"; - libraryHaskellDepends = [ - base - bytestring - http-api-data - http-client - http-client-tls - http-media - mtl - safe - servant - servant-client - text - time - xml - ]; - description = "Bindings to the Microsoft Translator API"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "microspec" = callPackage ( { mkDerivation, @@ -446431,99 +256164,6 @@ self: { } ) { }; - "mida" = callPackage ( - { - mkDerivation, - aeson, - base, - containers, - data-default, - exceptions, - file-embed, - filepath, - formatting, - haskeline, - HCodecs, - hspec, - megaparsec, - mtl, - optparse-applicative, - path, - path-io, - process, - QuickCheck, - random, - text, - tf-random, - transformers, - yaml, - }: - mkDerivation { - pname = "mida"; - version = "1.0.2"; - sha256 = "1xvmyjv72v2cd9h4qkq5vxa6ylzdnkf4pk7afs316mzvx68fab4h"; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base - containers - exceptions - haskeline - HCodecs - megaparsec - mtl - QuickCheck - random - text - tf-random - transformers - ]; - executableHaskellDepends = [ - aeson - base - containers - data-default - exceptions - file-embed - filepath - formatting - haskeline - HCodecs - megaparsec - mtl - optparse-applicative - path - path-io - process - QuickCheck - random - text - tf-random - transformers - yaml - ]; - testHaskellDepends = [ - base - containers - HCodecs - hspec - megaparsec - mtl - QuickCheck - random - text - tf-random - transformers - ]; - description = "Language for algorithmic generation of MIDI files"; - license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - mainProgram = "mida"; - broken = true; - } - ) { }; - "midair" = callPackage ( { mkDerivation, @@ -446663,56 +256303,6 @@ self: { } ) { }; - "midi-simple" = callPackage ( - { - mkDerivation, - attoparsec, - base, - bytestring, - criterion, - generic-random, - hspec, - hspec-attoparsec, - QuickCheck, - tasty, - tasty-hspec, - tasty-quickcheck, - }: - mkDerivation { - pname = "midi-simple"; - version = "0.1.0.0"; - sha256 = "16l446b1296blnilhmlkmav8yz4svpvvk53ph40kwqpk0v9fx07n"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - attoparsec - base - bytestring - ]; - testHaskellDepends = [ - attoparsec - base - bytestring - generic-random - hspec - hspec-attoparsec - QuickCheck - tasty - tasty-hspec - tasty-quickcheck - ]; - benchmarkHaskellDepends = [ - base - bytestring - criterion - ]; - description = "A simple and fast library for working with MIDI messages"; - license = lib.licenses.lgpl3Only; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "midi-util" = callPackage ( { mkDerivation, @@ -446738,38 +256328,6 @@ self: { } ) { }; - "midi-utils" = callPackage ( - { - mkDerivation, - base, - bytestring, - directory, - event-list, - midi, - parsec, - process, - }: - mkDerivation { - pname = "midi-utils"; - version = "0.1.0.0"; - sha256 = "1dlxihyjx1s1vj57j0fnalav8kq5yxlwlaz0ixmx4aj6glgzp8iz"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base - bytestring - directory - event-list - midi - parsec - process - ]; - description = "Utilities for working with MIDI data"; - license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "midimory" = callPackage ( { mkDerivation, @@ -446812,40 +256370,6 @@ self: { license = lib.licenses.bsd3; hydraPlatforms = lib.platforms.none; mainProgram = "midimory"; - } - ) { }; - - "midisurface" = callPackage ( - { - mkDerivation, - alsa-core, - alsa-seq, - base, - containers, - gtk, - mtl, - stm, - }: - mkDerivation { - pname = "midisurface"; - version = "0.1.0.0"; - sha256 = "0i1g1hqr1jjjnrrkfgp0i9zm5cm6aza1kzqy2z8hmbqjdvyv21fz"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - alsa-core - alsa-seq - base - containers - gtk - mtl - stm - ]; - description = "A control midi surface"; - license = lib.licenses.bsd3; - platforms = lib.platforms.linux; - hydraPlatforms = lib.platforms.none; - mainProgram = "midisurface"; broken = true; } ) { }; @@ -447128,51 +256652,6 @@ self: { } ) { }; - "mighttpd" = callPackage ( - { - mkDerivation, - base, - bytestring, - c10k, - directory, - filepath, - haskell98, - hdaemonize, - hslogger, - network, - parsec, - time, - unix, - webserver, - }: - mkDerivation { - pname = "mighttpd"; - version = "0.4.3"; - sha256 = "0xl6x4755x8sz2igqfp3mr5n29q7hb4v5b1mycah9vffk1bhi0yf"; - isLibrary = false; - isExecutable = true; - enableSeparateDataOutput = true; - executableHaskellDepends = [ - base - bytestring - c10k - directory - filepath - haskell98 - hdaemonize - hslogger - network - parsec - time - unix - webserver - ]; - description = "Simple Web Server in Haskell"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "mighttpd2" = callPackage ( { mkDerivation, @@ -447483,197 +256962,6 @@ self: { } ) { }; - "mikmod" = callPackage ( - { - mkDerivation, - base, - bytestring, - }: - mkDerivation { - pname = "mikmod"; - version = "0.2.0.1"; - sha256 = "1v93w03kh94hbaf5w2hdjcgccyv6dxkl6q1jmm58gxc84amb1lmp"; - revision = "1"; - editedCabalFile = "0anjsdm2xvsaqczfip1a9bwahdlxdn1zamg3lb7qg4l3k4cdp6vb"; - libraryHaskellDepends = [ - base - bytestring - ]; - description = "MikMod bindings"; - license = "LGPL"; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "mikrokosmos" = callPackage ( - { - mkDerivation, - ansi-terminal, - base, - containers, - directory, - haskeline, - HUnit, - mtl, - multimap, - options, - parsec, - process, - tasty, - tasty-golden, - tasty-hunit, - tasty-quickcheck, - }: - mkDerivation { - pname = "mikrokosmos"; - version = "0.8.0"; - sha256 = "0v3md44bz5cx6h4hvd2mif0pmmi85zzm93gdk28j8z50m7v9m48z"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - ansi-terminal - base - containers - directory - haskeline - HUnit - mtl - multimap - options - parsec - tasty - tasty-golden - tasty-hunit - tasty-quickcheck - ]; - testHaskellDepends = [ - ansi-terminal - base - containers - directory - haskeline - HUnit - mtl - multimap - options - parsec - process - tasty - tasty-golden - tasty-hunit - tasty-quickcheck - ]; - description = "Lambda calculus interpreter"; - license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - mainProgram = "mikrokosmos"; - broken = true; - } - ) { }; - - "miku" = callPackage ( - { - mkDerivation, - base, - blaze-builder, - bytestring, - case-insensitive, - containers, - filepath, - http-types, - mtl, - wai, - wai-extra, - }: - mkDerivation { - pname = "miku"; - version = "2016.3.17"; - sha256 = "176cnk7dj2bfmfics2wbhq8zvabvckq2423f84f323hkz997sj46"; - libraryHaskellDepends = [ - base - blaze-builder - bytestring - case-insensitive - containers - filepath - http-types - mtl - wai - wai-extra - ]; - description = "A minimum web dev DSL"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "milena" = callPackage ( - { - mkDerivation, - base, - bytestring, - cereal, - containers, - digest, - lens, - lifted-base, - monad-control, - mtl, - murmur-hash, - network, - QuickCheck, - random, - resource-pool, - semigroups, - tasty, - tasty-hspec, - tasty-quickcheck, - transformers, - zlib, - }: - mkDerivation { - pname = "milena"; - version = "0.5.4.0"; - sha256 = "1ldjm2m1rbm74j7kygli6g6rcl5hqk0agh5xpah1i02n2f01i078"; - libraryHaskellDepends = [ - base - bytestring - cereal - containers - digest - lens - lifted-base - monad-control - mtl - murmur-hash - network - random - resource-pool - semigroups - transformers - zlib - ]; - testHaskellDepends = [ - base - bytestring - lens - mtl - network - QuickCheck - semigroups - tasty - tasty-hspec - tasty-quickcheck - ]; - description = "A Kafka client for Haskell"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "mime" = callPackage ( { mkDerivation, @@ -447695,37 +256983,6 @@ self: { } ) { }; - "mime-directory" = callPackage ( - { - mkDerivation, - base, - base64-string, - bytestring, - containers, - old-locale, - regex-pcre, - time, - }: - mkDerivation { - pname = "mime-directory"; - version = "0.5.2"; - sha256 = "0yh760wvb2arsjyf7lv74f1pjv6dcpxbk9nfj9zv5jykpki3gwx3"; - libraryHaskellDepends = [ - base - base64-string - bytestring - containers - old-locale - regex-pcre - time - ]; - description = "A library for parsing/printing the text/directory mime type"; - license = "LGPL"; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "mime-mail" = callPackage ( { mkDerivation, @@ -447939,131 +257196,6 @@ self: { } ) { }; - "minecraft-data" = callPackage ( - { - mkDerivation, - array, - base, - bytestring, - cereal, - containers, - lens, - mtl, - nbt, - pipes, - pipes-bytestring, - pipes-cereal, - pipes-parse, - pipes-zlib, - text, - text-show, - time, - vector, - zlib, - }: - mkDerivation { - pname = "minecraft-data"; - version = "0.1.0.1"; - sha256 = "02ispnzvxjazjy76bqpils6jmy37l4v61l1wcklvvsvkb72yc39n"; - libraryHaskellDepends = [ - array - base - bytestring - cereal - containers - lens - mtl - nbt - pipes - pipes-bytestring - pipes-cereal - pipes-parse - pipes-zlib - text - text-show - time - vector - zlib - ]; - description = "a DSL for generating minecraft commands and levels"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "mines" = callPackage ( - { - mkDerivation, - base, - directory, - mtl, - random, - }: - mkDerivation { - pname = "mines"; - version = "0.1"; - sha256 = "16s98hwskycl2bqv1n2bnivh8w8q3xhhj687hk8flcg9s9ny4s8k"; - isLibrary = false; - isExecutable = true; - enableSeparateDataOutput = true; - executableHaskellDepends = [ - base - directory - mtl - random - ]; - description = "Minesweeper simulation using neural networks"; - license = "unknown"; - hydraPlatforms = lib.platforms.none; - mainProgram = "mines"; - broken = true; - } - ) { }; - - "minesweeper" = callPackage ( - { - mkDerivation, - base, - binary, - binary-generic, - bytestring, - cairo, - containers, - directory, - filepath, - glade, - gtk, - random, - time, - }: - mkDerivation { - pname = "minesweeper"; - version = "0.9.2.1"; - sha256 = "1cbw136wl9rdcl4vbbz9i5w1mw33qhr0gzbww0qf63zfz2lg4gs2"; - isLibrary = false; - isExecutable = true; - enableSeparateDataOutput = true; - executableHaskellDepends = [ - base - binary - binary-generic - bytestring - cairo - containers - directory - filepath - glade - gtk - random - time - ]; - description = "Minesweeper game which is always solvable without guessing"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "minesweeper"; - } - ) { }; - "mini" = callPackage ( { mkDerivation, base }: mkDerivation { @@ -448076,54 +257208,6 @@ self: { } ) { }; - "mini-egison" = callPackage ( - { - mkDerivation, - base, - egison-pattern-src, - egison-pattern-src-th-mode, - haskell-src-exts, - haskell-src-meta, - hspec, - mtl, - primes, - recursion-schemes, - sort, - template-haskell, - }: - mkDerivation { - pname = "mini-egison"; - version = "1.0.0"; - sha256 = "1x78p2s706kb6w4ci6w0av19zhw4i64bbl6xmvwrjs66xjgxrai6"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - egison-pattern-src - egison-pattern-src-th-mode - haskell-src-exts - haskell-src-meta - mtl - recursion-schemes - template-haskell - ]; - executableHaskellDepends = [ - base - sort - ]; - testHaskellDepends = [ - base - hspec - primes - ]; - description = "Template Haskell Implementation of Egison Pattern Matching"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - mainProgram = "cdcl"; - broken = true; - } - ) { }; - "miniball" = callPackage ( { mkDerivation, @@ -448230,232 +257314,6 @@ self: { } ) { inherit (pkgs) curl; }; - "miniforth" = callPackage ( - { - mkDerivation, - base, - containers, - lens, - MonadRandom, - mtl, - mtl-compat, - parsec, - parsec3-numbers, - readline, - }: - mkDerivation { - pname = "miniforth"; - version = "0.1.0.1"; - sha256 = "1f2scxg7j6zifqj6q2khxb8s49ilnk4r9qms72vysp1s5p76zk0g"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - containers - lens - MonadRandom - mtl - mtl-compat - parsec - parsec3-numbers - ]; - executableHaskellDepends = [ - base - containers - lens - mtl - parsec - readline - ]; - description = "Miniature FORTH-like interpreter"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - mainProgram = "miniforth"; - broken = true; - } - ) { }; - - "minilens" = callPackage ( - { - mkDerivation, - array, - base, - bytestring, - containers, - mtl, - semigroups, - text, - transformers, - }: - mkDerivation { - pname = "minilens"; - version = "1.0.0.2"; - sha256 = "1vvh0yz6sb9x3xlbdf53llqfvgi96adn8v1s9ryygrc138jlwqd7"; - libraryHaskellDepends = [ - array - base - bytestring - containers - mtl - semigroups - text - transformers - ]; - description = "A minimalistic lens library, providing only the simplest, most basic lens functionality"; - license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "minilight" = callPackage ( - { - mkDerivation, - aeson, - aeson-diff, - base, - caster, - containers, - exceptions, - FontyFruity, - fsnotify, - hashable, - hashtables, - lens, - linear, - microlens, - mtl, - mwc-random, - scientific, - sdl2, - sdl2-gfx, - sdl2-image, - sdl2-ttf, - tasty, - tasty-discover, - tasty-hspec, - template-haskell, - text, - transformers, - trifecta, - unordered-containers, - uuid, - vector, - yaml, - }: - mkDerivation { - pname = "minilight"; - version = "0.5.0"; - sha256 = "1qxyl7n2pwfr8ixkak118sr0n3c7l3bj0r48hk51qpwm5x227g9y"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson - aeson-diff - base - caster - containers - exceptions - FontyFruity - fsnotify - hashable - hashtables - lens - linear - mtl - mwc-random - scientific - sdl2 - sdl2-gfx - sdl2-image - sdl2-ttf - template-haskell - text - transformers - trifecta - unordered-containers - uuid - vector - yaml - ]; - executableHaskellDepends = [ - base - linear - microlens - mtl - mwc-random - sdl2 - sdl2-ttf - text - vector - ]; - testHaskellDepends = [ - aeson - base - tasty - tasty-hspec - trifecta - vector - yaml - ]; - testToolDepends = [ tasty-discover ]; - description = "A SDL2-based graphics library, batteries-included"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "minilight-lua" = callPackage ( - { - mkDerivation, - base, - bytestring, - containers, - exceptions, - hslua, - lens, - linear, - minilight, - mtl, - sdl2, - sdl2-ttf, - text, - unix-time, - }: - mkDerivation { - pname = "minilight-lua"; - version = "0.2.1.0"; - sha256 = "0sxaj947qwbrlgph7byf8nxln0cmcg9sjyyp9pfn2lh7nkh8p75n"; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base - bytestring - containers - exceptions - hslua - linear - minilight - mtl - sdl2 - sdl2-ttf - text - unix-time - ]; - executableHaskellDepends = [ - base - lens - minilight - mtl - ]; - description = "A binding library of minilight for Lua langauge"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - mainProgram = "example"; - } - ) { }; - "minimal-configuration" = callPackage ( { mkDerivation, @@ -448508,33 +257366,6 @@ self: { } ) { }; - "minimung" = callPackage ( - { - mkDerivation, - base, - GLUT, - haskell98, - unix, - }: - mkDerivation { - pname = "minimung"; - version = "0.1"; - sha256 = "0i825bd751adfj22lkgc929jlgxjj16i81k8qqkhqh7ib131kqlf"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - GLUT - haskell98 - unix - ]; - description = "Shows how to run grabber on Mac OS X"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "minimung"; - } - ) { }; - "minio-hs" = callPackage ( { mkDerivation, @@ -448921,142 +257752,6 @@ self: { } ) { }; - "minions" = callPackage ( - { - mkDerivation, - ansi-terminal, - base, - MissingH, - process, - time, - }: - mkDerivation { - pname = "minions"; - version = "0.2.0.0"; - sha256 = "1r7c07pa9lr7h32y1mgxrlrj6a4sf8kfwc7vvvrr6bjfwr3m54vl"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - ansi-terminal - base - MissingH - process - time - ]; - description = "A fast parallel ssh tool"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "minions"; - broken = true; - } - ) { }; - - "minioperational" = callPackage ( - { - mkDerivation, - base, - containers, - elevator, - extensible, - mtl, - template-haskell, - transformers, - }: - mkDerivation { - pname = "minioperational"; - version = "0.4.9"; - sha256 = "0kbfk3gpgzxi84kyjf7awdc2x579339zd7c42khlflhk6y88j95m"; - libraryHaskellDepends = [ - base - containers - elevator - extensible - mtl - template-haskell - transformers - ]; - description = "fast and simple operational monad"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "miniplex" = callPackage ( - { - mkDerivation, - base, - colock, - directory, - mtl, - network, - stm, - unix, - }: - mkDerivation { - pname = "miniplex"; - version = "0.3.4"; - sha256 = "15rsg617wmh8cb0f2pkd5hyzrj96qjvar4p6nx21vlxr3b2plcg4"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - colock - directory - mtl - network - stm - unix - ]; - description = "simple 1-to-N interprocess communication"; - license = "LGPL"; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "minirotate" = callPackage ( - { - mkDerivation, - base, - data-accessor, - data-accessor-template, - directory, - filepath, - mtl, - old-locale, - old-time, - process, - safe, - split, - template-haskell, - }: - mkDerivation { - pname = "minirotate"; - version = "0.1.2.2"; - sha256 = "15hgag1r0w6smilab7059z7bsn9i1czhdknma53rmj1ma2pd148y"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - data-accessor - data-accessor-template - directory - filepath - mtl - old-locale - old-time - process - safe - split - template-haskell - ]; - description = "Minimalistic file rotation utility"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "minirotate"; - } - ) { }; - "minisat" = callPackage ( { mkDerivation, @@ -449105,44 +257800,6 @@ self: { } ) { }; - "ministg" = callPackage ( - { - mkDerivation, - base, - containers, - directory, - filepath, - monads-tf, - parsec, - pretty, - transformers, - xhtml, - }: - mkDerivation { - pname = "ministg"; - version = "0.3"; - sha256 = "05ddhr50pbqy0yjgcw0wgfjxlkgapg0zppqqyxfy5apr68zd02mm"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - containers - directory - filepath - monads-tf - parsec - pretty - transformers - xhtml - ]; - description = "an interpreter for an operational semantics for the STG machine"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "ministg"; - broken = true; - } - ) { }; - "miniterion" = callPackage ( { mkDerivation, @@ -449323,40 +257980,6 @@ self: { } ) { }; - "minst-idx" = callPackage ( - { - mkDerivation, - base, - binary, - bytestring, - directory, - hspec, - vector, - }: - mkDerivation { - pname = "minst-idx"; - version = "0.1.2.2"; - sha256 = "06ixg6bm55h1mjym3qp667gddy7f32inaxgyfbrh918zl283briv"; - libraryHaskellDepends = [ - base - binary - bytestring - vector - ]; - testHaskellDepends = [ - base - binary - directory - hspec - vector - ]; - description = "Read and write IDX data that is used in e.g. the MINST database."; - license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "mintty" = callPackage ( { mkDerivation, base }: mkDerivation { @@ -449369,92 +257992,6 @@ self: { } ) { }; - "mios" = callPackage ( - { - mkDerivation, - base, - bytestring, - ghc-prim, - gitrev, - hspec, - primitive, - vector, - }: - mkDerivation { - pname = "mios"; - version = "1.6.2"; - sha256 = "1q2lz5sir6pcxiqxb3vr1xp6zsld0nfwjymg0zbhszd5w0iprxdh"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - bytestring - ghc-prim - primitive - vector - ]; - executableHaskellDepends = [ - base - bytestring - ghc-prim - gitrev - primitive - vector - ]; - testHaskellDepends = [ - base - bytestring - ghc-prim - hspec - primitive - vector - ]; - description = "A Minisat-based CDCL SAT solver in Haskell"; - license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - mainProgram = "mios162"; - broken = true; - } - ) { }; - - "mirror-tweet" = callPackage ( - { - mkDerivation, - authenticate-oauth, - base, - bytestring, - conduit, - lens, - monad-logger, - text, - transformers, - twitter-conduit, - }: - mkDerivation { - pname = "mirror-tweet"; - version = "0.1.0.0"; - sha256 = "07dz0c65xkb7kgr2rby7m3g5893rqsbyl2nmjhf4q2wqsypmiipa"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - authenticate-oauth - base - bytestring - conduit - lens - monad-logger - text - transformers - twitter-conduit - ]; - description = "Tweet mirror"; - license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - mainProgram = "mirror-tweet"; - broken = true; - } - ) { }; - "misfortune" = callPackage ( { mkDerivation, @@ -449575,58 +258112,6 @@ self: { } ) { mismi-core-test = null; }; - "mismi-kernel" = callPackage ( - { - mkDerivation, - base, - hedgehog, - mismi-p, - text, - }: - mkDerivation { - pname = "mismi-kernel"; - version = "0.0.3"; - sha256 = "15by5x8lvnfsr7ajayy6jz7mcwnrjcavhmgm9mb9v11dyg101lq9"; - libraryHaskellDepends = [ - base - mismi-p - text - ]; - testHaskellDepends = [ - base - hedgehog - mismi-p - text - ]; - description = "AWS Library"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "mismi-p" = callPackage ( - { - mkDerivation, - base, - text, - }: - mkDerivation { - pname = "mismi-p"; - version = "0.0.3"; - sha256 = "115wc7gmy76a99p4rcp6fdz0w6c1z5kjn98ffxkkzx760nj5xvy9"; - revision = "1"; - editedCabalFile = "1nhb8lz21qn4rmgwn0b8vr771fcpykg13zvp7qsrsz5jvd3ylifg"; - libraryHaskellDepends = [ - base - text - ]; - description = "A commmon prelude for the mismi project"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "mismi-s3" = callPackage ( @@ -449788,37 +258273,6 @@ self: { mismi-s3-core-test = null; }; - "mismi-s3-core" = callPackage ( - { - mkDerivation, - attoparsec, - base, - hedgehog, - mismi-p, - text, - }: - mkDerivation { - pname = "mismi-s3-core"; - version = "0.0.3"; - sha256 = "1cigfvspxxxzpw52xn7nb7sqyvxb64fm5w7m2nxakff85jj8skpq"; - libraryHaskellDepends = [ - attoparsec - base - mismi-p - text - ]; - testHaskellDepends = [ - base - hedgehog - mismi-p - text - ]; - description = "AWS Library"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "miso" = callPackage ( { mkDerivation, @@ -449934,128 +258388,6 @@ self: { } ) { }; - "miss" = callPackage ( - { - mkDerivation, - attoparsec, - base, - base16-bytestring, - bytestring, - ChasingBottoms, - containers, - cryptohash-sha1, - deepseq, - digest, - directory, - exceptions, - filesystem-abstractions, - list-tries, - mtl, - posix-paths, - process, - QuickCheck, - semigroups, - tasty, - tasty-hunit, - tasty-quickcheck, - tasty-test-vector, - temporary, - text, - time, - transformers, - unix, - vector, - zlib, - }: - mkDerivation { - pname = "miss"; - version = "0"; - sha256 = "1xcbjmv2fyjffn1j2xhn0glvxdb2cqd8frvc9yr1pgz6874sv60w"; - revision = "1"; - editedCabalFile = "0m4dvn39917fxmgd2ahigz70qqy4ccfsi4n0885v82kiqwgmvxxq"; - libraryHaskellDepends = [ - attoparsec - base - base16-bytestring - bytestring - containers - cryptohash-sha1 - deepseq - digest - exceptions - filesystem-abstractions - list-tries - mtl - posix-paths - semigroups - text - time - transformers - unix - vector - zlib - ]; - testHaskellDepends = [ - attoparsec - base - base16-bytestring - bytestring - ChasingBottoms - containers - directory - exceptions - mtl - posix-paths - process - QuickCheck - tasty - tasty-hunit - tasty-quickcheck - tasty-test-vector - temporary - text - unix - ]; - description = "A Haskell git implimentation"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "miss-porcelain" = callPackage ( - { - mkDerivation, - base, - bytestring, - containers, - filesystem-abstractions, - list-tries, - miss, - mtl, - posix-paths, - }: - mkDerivation { - pname = "miss-porcelain"; - version = "0"; - sha256 = "192hxmq5j5wl6njvay0192r5gqlbjahgqd8v6ndhb53yrg7ckjmc"; - revision = "1"; - editedCabalFile = "11n8hllv5xgrqw1j4wbpfyld4mpmi11axfwq5nfc2lkdfdaznyql"; - libraryHaskellDepends = [ - base - bytestring - containers - filesystem-abstractions - list-tries - miss - mtl - posix-paths - ]; - description = "Useability extras built on top of miss"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "missing-foreign" = callPackage ( { mkDerivation, base }: mkDerivation { @@ -450068,39 +258400,6 @@ self: { } ) { }; - "missing-py2" = callPackage ( - { - mkDerivation, - anydbm, - base, - Cabal, - directory, - HUnit, - MissingH, - }: - mkDerivation { - pname = "missing-py2"; - version = "1.0.1"; - sha256 = "0daa310acml90r4f4qdjf3qns70gvx08mpjzw2h3v46vrwlacrmj"; - libraryHaskellDepends = [ - anydbm - base - MissingH - ]; - testHaskellDepends = [ - anydbm - base - Cabal - directory - HUnit - MissingH - ]; - description = "Haskell interface to Python"; - license = lib.licenses.gpl2Only; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "mit-3qvpPyAi6mH" = callPackage ( { mkDerivation, @@ -450215,53 +258514,6 @@ self: { } ) { }; - "mix-arrows" = callPackage ( - { mkDerivation, base }: - mkDerivation { - pname = "mix-arrows"; - version = "1.2"; - sha256 = "0m70l09bmr8b95d87rpz4vdircdar2rsvnamr2g07542wx024931"; - libraryHaskellDepends = [ base ]; - description = "Mixing effects of one arrow into another one"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "mixed-strategies" = callPackage ( - { - mkDerivation, - array, - base, - containers, - simple-tabular, - }: - mkDerivation { - pname = "mixed-strategies"; - version = "0.1.0.0"; - sha256 = "0vsldq2j2avj98fcz2lbydf4y23iwydr4jsvpbcvwlvqavgz1rkc"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - array - base - containers - simple-tabular - ]; - executableHaskellDepends = [ - array - base - containers - simple-tabular - ]; - description = "Find optimal mixed strategies for two-player games"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - mainProgram = "oms"; - } - ) { }; - "mixed-types-num" = callPackage ( { mkDerivation, @@ -450294,259 +258546,67 @@ self: { QuickCheck smallcheck ]; - description = "Alternative Prelude with numeric and logic expressions typed bottom-up"; - license = lib.licenses.bsd3; - } - ) { }; - - "mixpanel-client" = callPackage ( - { - mkDerivation, - aeson, - base, - base64-bytestring, - bytestring, - hspec, - hspec-discover, - http-client, - http-client-tls, - markdown-unlit, - servant, - servant-client, - string-conv, - text, - time, - }: - mkDerivation { - pname = "mixpanel-client"; - version = "0.3.0"; - sha256 = "1yk4p1cyw0gz9q9j7sw4mnfp2597a0k84l8ygpp2f0fndj6jmw4m"; - libraryHaskellDepends = [ - aeson - base - base64-bytestring - bytestring - http-client - http-client-tls - servant - servant-client - string-conv - text - time - ]; - testHaskellDepends = [ - aeson - base - base64-bytestring - bytestring - hspec - http-client - http-client-tls - markdown-unlit - servant - servant-client - string-conv - text - time - ]; - testToolDepends = [ - hspec-discover - markdown-unlit - ]; - description = "Mixpanel client"; - license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "mkbndl" = callPackage ( - { - mkDerivation, - base, - directory, - filepath, - haskell98, - }: - mkDerivation { - pname = "mkbndl"; - version = "0.2.1"; - sha256 = "1qzfmf92sx5vq5jxrqhln1a6y8kayrip36izf5m8hryymxd4dard"; - isLibrary = false; - isExecutable = true; - enableSeparateDataOutput = true; - executableHaskellDepends = [ - base - directory - filepath - haskell98 - ]; - description = "Makes an OS X .app bundle from a binary."; - license = "GPL"; - hydraPlatforms = lib.platforms.none; - mainProgram = "mkbndl"; - } - ) { }; - - "mkcabal" = callPackage ( - { - mkDerivation, - base, - directory, - extensible-exceptions, - mtl, - old-locale, - old-time, - pcre-light, - pretty, - readline, - }: - mkDerivation { - pname = "mkcabal"; - version = "1.0.0"; - sha256 = "1cmawm49i01xxvzgf67cin6s9hihfc3ihr6s5hn2makasfxbnryc"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - directory - extensible-exceptions - mtl - old-locale - old-time - pcre-light - pretty - readline - ]; - description = "Generate cabal files for a Haskell project"; - license = "GPL"; - hydraPlatforms = lib.platforms.none; - mainProgram = "mkcabal"; - broken = true; - } - ) { }; - - "ml-w" = callPackage ( - { - mkDerivation, - base, - mtl, - parsec, - pretty, - }: - mkDerivation { - pname = "ml-w"; - version = "0.1.1"; - sha256 = "04d0drqyaz075y6fs3rj6c2sp8ns1x4rfxqf1dbm2b31q09ycnl1"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - mtl - parsec - pretty - ]; - executableHaskellDepends = [ - base - mtl - parsec - pretty - ]; - description = "Minimal ML language to to demonstrate the W type infererence algorithm"; - license = lib.licenses.publicDomain; - hydraPlatforms = lib.platforms.none; - mainProgram = "ML"; - broken = true; - } - ) { }; - - "mlist" = callPackage ( - { - mkDerivation, - base, - haskell98, - }: - mkDerivation { - pname = "mlist"; - version = "0.0.2"; - sha256 = "06mwmahyp781wigjva12kz7w75vjkkprl8k1yiqd1yd0162vp31k"; - libraryHaskellDepends = [ - base - haskell98 - ]; - description = "Monadic List alternative to lazy I/O"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "mltool" = callPackage ( - { - mkDerivation, - ascii-progress, - base, - deepseq, - hmatrix, - hmatrix-gsl, - hmatrix-morpheus, - HUnit, - MonadRandom, - random, - test-framework, - test-framework-hunit, - test-framework-quickcheck2, - vector, - }: - mkDerivation { - pname = "mltool"; - version = "0.2.0.1"; - sha256 = "1zz06c0xv718faygnsgzmhg17xc5hrjsj9xkdaf3qmzbr1gwfvki"; - libraryHaskellDepends = [ - ascii-progress - base - deepseq - hmatrix - hmatrix-gsl - hmatrix-morpheus - MonadRandom - random - vector - ]; - testHaskellDepends = [ - base - hmatrix - hmatrix-morpheus - HUnit - MonadRandom - random - test-framework - test-framework-hunit - test-framework-quickcheck2 - vector - ]; - description = "Machine Learning Toolbox"; + description = "Alternative Prelude with numeric and logic expressions typed bottom-up"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; } ) { }; - "mm2" = callPackage ( + "mixpanel-client" = callPackage ( { mkDerivation, + aeson, base, - vector, + base64-bytestring, + bytestring, + hspec, + hspec-discover, + http-client, + http-client-tls, + markdown-unlit, + servant, + servant-client, + string-conv, + text, + time, }: mkDerivation { - pname = "mm2"; - version = "0.1.1.0"; - sha256 = "0zn629lm41z6b59snnjkqdk41ryimjhd5yapiwykl5fg0f7wmap3"; + pname = "mixpanel-client"; + version = "0.3.0"; + sha256 = "1yk4p1cyw0gz9q9j7sw4mnfp2597a0k84l8ygpp2f0fndj6jmw4m"; libraryHaskellDepends = [ + aeson base - vector + base64-bytestring + bytestring + http-client + http-client-tls + servant + servant-client + string-conv + text + time ]; - description = "The library that can be used for optimization of multiple (Ord a) => a -> b transformations"; - license = lib.licenses.mit; + testHaskellDepends = [ + aeson + base + base64-bytestring + bytestring + hspec + http-client + http-client-tls + markdown-unlit + servant + servant-client + string-conv + text + time + ]; + testToolDepends = [ + hspec-discover + markdown-unlit + ]; + description = "Mixpanel client"; + license = lib.licenses.asl20; hydraPlatforms = lib.platforms.none; broken = true; } @@ -451048,7 +259108,6 @@ self: { ]; description = "Produces a sound recording specified by the Ukrainian text"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "mmsyn7h"; } ) { }; @@ -451127,52 +259186,6 @@ self: { } ) { }; - "mmsyn7ukr" = callPackage ( - { - mkDerivation, - base, - bytestring, - directory, - mmsyn2, - mmsyn3, - mmsyn6ukr, - process, - vector, - }: - mkDerivation { - pname = "mmsyn7ukr"; - version = "0.17.0.0"; - sha256 = "069pyv8g9gdzzvnmdqmcrqnxf5zglrqbmcn2v6frfxj7ibd4awif"; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base - bytestring - directory - mmsyn2 - mmsyn3 - mmsyn6ukr - process - vector - ]; - executableHaskellDepends = [ - base - bytestring - directory - mmsyn2 - mmsyn3 - mmsyn6ukr - process - vector - ]; - description = "A simple basic interface to some SoX functionality or to produce a voice that can be used by mmsyn7h"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - mainProgram = "mmsyn7ukr"; - } - ) { }; - "mmsyn7ukr-array" = callPackage ( { mkDerivation, @@ -451224,92 +259237,6 @@ self: { } ) { }; - "mmtf" = callPackage ( - { - mkDerivation, - array, - base, - binary, - bytestring, - containers, - data-msgpack, - deepseq, - hspec, - http-conduit, - QuickCheck, - text, - }: - mkDerivation { - pname = "mmtf"; - version = "0.1.3.1"; - sha256 = "1xkgj8x8ql5a51r6dfnfw9538hrr6ylp6nvgqbpcwf3xdzln0hic"; - libraryHaskellDepends = [ - array - base - binary - bytestring - containers - data-msgpack - deepseq - http-conduit - text - ]; - testHaskellDepends = [ - array - base - binary - bytestring - containers - data-msgpack - deepseq - hspec - http-conduit - QuickCheck - text - ]; - description = "Macromolecular Transmission Format implementation"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "mmtl" = callPackage ( - { mkDerivation, base }: - mkDerivation { - pname = "mmtl"; - version = "0.1"; - sha256 = "0bb19l52s56y2dwyskvjwdal7387ii2dg9cc1l6f341y3695nj7l"; - libraryHaskellDepends = [ base ]; - description = "Modular Monad transformer library"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "mmtl-base" = callPackage ( - { - mkDerivation, - base, - mmtl, - }: - mkDerivation { - pname = "mmtl-base"; - version = "15321.1"; - sha256 = "13hdaxpb9zds3yc2l3pl60h26541yvswprdc43swn05hzf6p01nq"; - revision = "1"; - editedCabalFile = "1iby6x0pkqz4447nr5aqpzch2msqb76bdypcprpi5y8djr51x248"; - libraryHaskellDepends = [ - base - mmtl - ]; - description = "MonadBase type-class for mmtl"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "mmzk-env" = callPackage ( { mkDerivation, @@ -451473,42 +259400,6 @@ self: { } ) { }; - "moan" = callPackage ( - { - mkDerivation, - base, - binary, - bytestring, - containers, - dawg, - regex-tdfa, - regex-tdfa-text, - tagset-positional, - text, - zlib, - }: - mkDerivation { - pname = "moan"; - version = "0.2.0.2"; - sha256 = "0fb0z3v4a8kblwx4xjs7xdkczpvcyz9la7071kz7q6cjl6w49i30"; - libraryHaskellDepends = [ - base - binary - bytestring - containers - dawg - regex-tdfa - regex-tdfa-text - tagset-positional - text - zlib - ]; - description = "Language-agnostic analyzer for positional morphosyntactic tags"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "mock-httpd" = callPackage ( { mkDerivation, @@ -451612,42 +259503,6 @@ self: { } ) { }; - "mockazo" = callPackage ( - { - mkDerivation, - base, - constraints, - hspec, - multistate, - relude, - template-haskell, - }: - mkDerivation { - pname = "mockazo"; - version = "0.1.1"; - sha256 = "113z5mmka7wkih0gm7x7d3l75ayql9217168b5pbyq7yvyh5f10m"; - libraryHaskellDepends = [ - base - constraints - multistate - relude - template-haskell - ]; - testHaskellDepends = [ - base - constraints - hspec - multistate - relude - template-haskell - ]; - description = "Mock records of functions easily"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "mockcat" = callPackage ( { mkDerivation, @@ -451772,113 +259627,6 @@ self: { } ) { }; - "modbus-tcp" = callPackage ( - { - mkDerivation, - base, - bytestring, - cereal, - mtl, - transformers, - }: - mkDerivation { - pname = "modbus-tcp"; - version = "0.5"; - sha256 = "0mp8ndqp7nypxvipfplhkvz4gb0r0lcfw59z9dd1vn0fr67v69xy"; - libraryHaskellDepends = [ - base - bytestring - cereal - mtl - transformers - ]; - description = "Communicate with Modbus devices over TCP"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "model" = callPackage ( - { - mkDerivation, - base, - containers, - convertible, - deepseq, - doctest, - either, - filemanip, - ghc-prim, - pretty, - tasty, - tasty-hunit, - transformers, - }: - mkDerivation { - pname = "model"; - version = "0.5"; - sha256 = "0yynva6zk986yl04ilkr171m2m8k649fihc2z1lkvfn6vl8qpw0d"; - libraryHaskellDepends = [ - base - containers - convertible - deepseq - either - pretty - transformers - ]; - testHaskellDepends = [ - base - containers - doctest - filemanip - ghc-prim - pretty - tasty - tasty-hunit - ]; - description = "Derive a model of a data type using Generics"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "modelicaparser" = callPackage ( - { - mkDerivation, - ansi-terminal, - base, - containers, - filepath, - parsec, - QuickCheck, - }: - mkDerivation { - pname = "modelicaparser"; - version = "0.1.0.0"; - sha256 = "0ifsgdqi3376z7xspjlx62hh3dah3dskqrar3s63pmw1cf9b6qfl"; - libraryHaskellDepends = [ - base - containers - parsec - ]; - testHaskellDepends = [ - ansi-terminal - base - containers - filepath - parsec - QuickCheck - ]; - description = "A parser for the modelica language"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "modern-uri" = callPackage ( { mkDerivation, @@ -451947,99 +259695,6 @@ self: { } ) { }; - "modify-fasta" = callPackage ( - { - mkDerivation, - base, - containers, - fasta, - mtl, - optparse-applicative, - pipes, - pipes-text, - regex-tdfa, - regex-tdfa-text, - semigroups, - split, - text, - text-show, - transformers, - }: - mkDerivation { - pname = "modify-fasta"; - version = "0.8.3.0"; - sha256 = "1hvn55c0cg4h2980ia28b2n2r9p7p0rqyfr5wvkkqyhz4si7dp9r"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - containers - fasta - regex-tdfa - regex-tdfa-text - split - text - text-show - ]; - executableHaskellDepends = [ - base - containers - fasta - mtl - optparse-applicative - pipes - pipes-text - semigroups - split - text - transformers - ]; - description = "Modify fasta (and CLIP) files in several optional ways"; - license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - mainProgram = "modify-fasta"; - } - ) { }; - - "modsplit" = callPackage ( - { - mkDerivation, - base, - directory, - filepath, - haskell98, - mtl, - utf8-string, - }: - mkDerivation { - pname = "modsplit"; - version = "0.2.1"; - sha256 = "0xm9vj78clawys9ascgm2fl8kqg5zmdfbkkb42d1d1h5z72cc55p"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - directory - filepath - haskell98 - mtl - utf8-string - ]; - executableHaskellDepends = [ - base - directory - filepath - haskell98 - mtl - utf8-string - ]; - description = "Haskell source splitter driven by special comments"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "modsplit"; - } - ) { }; - "modular" = callPackage ( { mkDerivation, @@ -452079,183 +259734,6 @@ self: { } ) { }; - "modular-prelude" = callPackage ( - { - mkDerivation, - base, - basic-prelude, - bytestring, - containers, - data-default, - hashable, - system-filepath, - text, - transformers, - unordered-containers, - vector, - }: - mkDerivation { - pname = "modular-prelude"; - version = "0.3.0.0"; - sha256 = "0hlmxm9xfnf55qz1nrljm0s4bhpa6x973h3qi2b7bl8pil423rkf"; - libraryHaskellDepends = [ - base - basic-prelude - bytestring - containers - data-default - hashable - system-filepath - text - transformers - unordered-containers - vector - ]; - description = "A new Prelude featuring first class modules"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "modular-prelude-classy" = callPackage ( - { - mkDerivation, - base, - classy-prelude, - modular-prelude, - }: - mkDerivation { - pname = "modular-prelude-classy"; - version = "0.1.0.0"; - sha256 = "1izinrgd9a6sm57isg8jgs4wjidczwqcxl6vg5h4gy5zz9dg8xnx"; - libraryHaskellDepends = [ - base - classy-prelude - modular-prelude - ]; - description = "Reifying ClassyPrelude a la ModularPrelude"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "modularity" = callPackage ( - { - mkDerivation, - base, - hmatrix, - sparse-linear-algebra, - spectral-clustering, - vector, - }: - mkDerivation { - pname = "modularity"; - version = "0.2.1.1"; - sha256 = "0s7n6z48wi2cc51i9aj8c35p02jsj2g1z1lbrsa0gpk684wzg8nq"; - libraryHaskellDepends = [ - base - hmatrix - sparse-linear-algebra - spectral-clustering - vector - ]; - description = "Find the modularity of a network"; - license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "module-management" = callPackage ( - { - mkDerivation, - applicative-extras, - base, - bytestring, - Cabal, - cmdargs, - containers, - data-default, - directory, - filepath, - haskeline, - haskell-src-exts, - HUnit, - lens, - lifted-base, - monad-control, - mtl, - pretty, - process, - pureMD5, - regex-compat, - set-extra, - syb, - system-fileio, - template-haskell, - temporary, - transformers-base, - }: - mkDerivation { - pname = "module-management"; - version = "0.21"; - sha256 = "13p2ldii0nrz8pjk2207maq4xgblv9y391y79g8l7rrgg57fs615"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - applicative-extras - base - bytestring - Cabal - containers - data-default - directory - filepath - haskell-src-exts - HUnit - lifted-base - monad-control - mtl - pretty - process - pureMD5 - set-extra - syb - system-fileio - temporary - ]; - executableHaskellDepends = [ - base - Cabal - cmdargs - containers - directory - haskeline - haskell-src-exts - lens - monad-control - mtl - regex-compat - set-extra - template-haskell - transformers-base - ]; - testHaskellDepends = [ - base - containers - filepath - haskell-src-exts - HUnit - process - ]; - description = "Clean up module imports, split and merge modules"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "hmm"; - broken = true; - } - ) { }; - "module-munging" = callPackage ( { mkDerivation, @@ -452282,183 +259760,6 @@ self: { } ) { }; - "modulespection" = callPackage ( - { - mkDerivation, - base, - exceptions, - filepath, - ghc, - ghc-paths, - template-haskell, - temporary, - transformers, - }: - mkDerivation { - pname = "modulespection"; - version = "0.1.2.2"; - sha256 = "00172s9v4823q4f8mvln2v3m7zcri8vp2b7b8j1ank0sb9lbyjlf"; - libraryHaskellDepends = [ - base - exceptions - filepath - ghc - ghc-paths - template-haskell - temporary - transformers - ]; - description = "Template Haskell for introspecting a module's declarations"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "modulo" = callPackage ( - { - mkDerivation, - atto-lisp, - base, - data-default, - directory, - haskell-src, - language-c, - mtl, - nats, - pandoc-types, - parsec, - prettify, - process, - semigroups, - text, - }: - mkDerivation { - pname = "modulo"; - version = "1.9.1"; - sha256 = "1dxvfd8f7zx43zm9h5dd71ci768khhmh8660h3abazqhm7ws367c"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - atto-lisp - base - data-default - directory - haskell-src - language-c - mtl - nats - pandoc-types - parsec - prettify - process - semigroups - text - ]; - description = "Modular C code generator"; - license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - mainProgram = "modulo"; - } - ) { }; - - "moe" = callPackage ( - { - mkDerivation, - air, - base, - bytestring, - data-default, - dlist, - mtl, - text, - }: - mkDerivation { - pname = "moe"; - version = "2015.5.4"; - sha256 = "0yiyr8n0bw5wcc8jyrah2kf9jnj3x4h5kl3qprysx8ffhc6dx3r9"; - libraryHaskellDepends = [ - air - base - bytestring - data-default - dlist - mtl - text - ]; - description = "html with style"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "moesocks" = callPackage ( - { - mkDerivation, - aeson, - async, - attoparsec, - base, - binary, - bytestring, - containers, - cryptohash, - hslogger, - HsOpenSSL, - iproute, - lens, - lens-aeson, - mtl, - network, - optparse-applicative, - random, - stm, - strict, - text, - time, - transformers, - unordered-containers, - }: - mkDerivation { - pname = "moesocks"; - version = "1.0.1.0"; - sha256 = "0g4dih837liigd4v2yj0wnqic2hqgc6zy6yqwpy0v22aa47abcqj"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - aeson - async - attoparsec - base - binary - bytestring - containers - cryptohash - hslogger - HsOpenSSL - iproute - lens - lens-aeson - mtl - network - optparse-applicative - random - stm - strict - text - time - transformers - unordered-containers - ]; - description = "A functional firewall killer"; - license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; - mainProgram = "moesocks"; - broken = true; - } - ) { }; - "moffy" = callPackage ( { mkDerivation, @@ -452881,160 +260182,6 @@ self: { } ) { }; - "mole" = callPackage ( - { - mkDerivation, - attoparsec, - base, - base64-bytestring, - bytestring, - containers, - cryptohash, - css-syntax, - directory, - filemanip, - filepath, - fsnotify, - hspec, - hspec-smallcheck, - kraken, - mtl, - network-uri, - optparse-applicative, - process, - smallcheck, - snap-core, - snap-server, - stm, - tagsoup, - text, - time, - transformers, - unix, - unordered-containers, - vector, - }: - mkDerivation { - pname = "mole"; - version = "0.0.7"; - sha256 = "03qlvvwciw0mwcki7kk90pvx5qy15fkx5zdalwxk2pldpv5diyza"; - revision = "1"; - editedCabalFile = "116a00rm6jf3s0kyk3kny650jcimcwgvk2w4s7lvwpb678s635y9"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - attoparsec - base - base64-bytestring - bytestring - containers - cryptohash - css-syntax - directory - filemanip - filepath - fsnotify - kraken - mtl - network-uri - optparse-applicative - process - snap-core - snap-server - stm - tagsoup - text - time - transformers - unix - ]; - testHaskellDepends = [ - attoparsec - base - bytestring - containers - hspec - hspec-smallcheck - kraken - smallcheck - stm - text - time - unordered-containers - vector - ]; - description = "A glorified string replacement tool"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - mainProgram = "mole"; - } - ) { }; - - "mollie-api-haskell" = callPackage ( - { - mkDerivation, - aeson, - base, - bytestring, - currency-codes, - data-default, - http-client, - http-client-tls, - http-media, - http-types, - lens, - mtl, - servant, - servant-client, - servant-client-core, - tasty, - tasty-hunit, - text, - time, - unordered-containers, - }: - mkDerivation { - pname = "mollie-api-haskell"; - version = "2.0.0.0"; - sha256 = "196xk0qca5aghmx509m2cgqcpgiw8xlg8qk35ca2irx8jdq6rwch"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - aeson - base - bytestring - currency-codes - data-default - http-client - http-client-tls - http-media - http-types - lens - mtl - servant - servant-client - servant-client-core - text - time - unordered-containers - ]; - testHaskellDepends = [ - aeson - base - bytestring - currency-codes - data-default - lens - tasty - tasty-hunit - time - ]; - description = "Mollie API client for Haskell http://www.mollie.com"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "monad-abort-fd" = callPackage ( { mkDerivation, @@ -453064,56 +260211,6 @@ self: { } ) { }; - "monad-atom" = callPackage ( - { - mkDerivation, - base, - containers, - ghc-prim, - mtl, - }: - mkDerivation { - pname = "monad-atom"; - version = "0.4.1"; - sha256 = "16dnp6wz0s56gm58k6m5cv5c47hb2vz1m4a3pqvrg3j97y344c3q"; - libraryHaskellDepends = [ - base - containers - ghc-prim - mtl - ]; - description = "Monadically convert object to unique integers and back"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "monad-atom-simple" = callPackage ( - { - mkDerivation, - base, - containers, - ghc-prim, - mtl, - }: - mkDerivation { - pname = "monad-atom-simple"; - version = "0.0.2"; - sha256 = "1k4rcrdjjs52p9mnsbwp0gmb2inivhcqw044l56dbc080yxrk32j"; - libraryHaskellDepends = [ - base - containers - ghc-prim - mtl - ]; - description = "Monadically map objects to unique ints"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "monad-batcher" = callPackage ( { mkDerivation, @@ -453353,60 +260450,6 @@ self: { } ) { }; - "monad-branch" = callPackage ( - { - mkDerivation, - base, - mtl, - transformers, - }: - mkDerivation { - pname = "monad-branch"; - version = "1.0.4"; - sha256 = "0g82ccql6pmj319ji3zpmxab78qwdlrjsl7cdfhjvv4m1i4kmzdf"; - libraryHaskellDepends = [ - base - mtl - transformers - ]; - description = "Monadic abstraction for computations that can be branched and run independently"; - license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "monad-choice" = callPackage ( - { - mkDerivation, - base, - contravariant, - invariant, - MonadRandom, - mtl, - primitive, - transformers, - }: - mkDerivation { - pname = "monad-choice"; - version = "0.2.0.0"; - sha256 = "1ryakbs6ydgdfvz067jw6a2aqg566pynwyibxl6qi77ywwahqlvk"; - libraryHaskellDepends = [ - base - contravariant - invariant - MonadRandom - mtl - primitive - transformers - ]; - description = "Monad, monad transformer, and typeclass representing choices"; - license = lib.licenses.agpl3Only; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "monad-chronicle" = callPackage ( { mkDerivation, @@ -453541,32 +260584,6 @@ self: { } ) { }; - "monad-connect" = callPackage ( - { - mkDerivation, - base, - bytestring, - connection, - exceptions, - transformers, - }: - mkDerivation { - pname = "monad-connect"; - version = "0.1"; - sha256 = "1wb5dijlzyry7pxm7rcrx07xa770q4x4lbqmhh2y39gyas401br1"; - libraryHaskellDepends = [ - base - bytestring - connection - exceptions - transformers - ]; - description = "Transformer for TCP connection with TLS and SOCKS support"; - license = lib.licenses.publicDomain; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "monad-control" = callPackage ( { mkDerivation, @@ -453703,32 +260720,6 @@ self: { } ) { }; - "monad-exception" = callPackage ( - { - mkDerivation, - base, - monad-control, - mtl-evil-instances, - transformers, - transformers-base, - }: - mkDerivation { - pname = "monad-exception"; - version = "0.1"; - sha256 = "1mh19mxi6mlkvd083vjjdmdimdnk6n5yaj7v7xxgqycl5sazqkh8"; - libraryHaskellDepends = [ - base - monad-control - mtl-evil-instances - transformers - transformers-base - ]; - description = "Exstensible monadic exceptions"; - license = lib.licenses.publicDomain; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "monad-extras" = callPackage ( { mkDerivation, @@ -453785,50 +260776,6 @@ self: { } ) { }; - "monad-fork" = callPackage ( - { - mkDerivation, - base, - monad-control, - }: - mkDerivation { - pname = "monad-fork"; - version = "0.1"; - sha256 = "15xwavq4yc3xfif4isjh9m0q9h1bh7pmv2i3rh99sndmd34cdpwc"; - libraryHaskellDepends = [ - base - monad-control - ]; - description = "Type class for monads which support a fork operation"; - license = lib.licenses.publicDomain; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "monad-gen" = callPackage ( - { - mkDerivation, - base, - mtl, - transformers, - }: - mkDerivation { - pname = "monad-gen"; - version = "0.3.0.1"; - sha256 = "0rc4r6sg29sjgh9xsk7q80h0lixhyxs60bszj5dnn8yf7w18b15y"; - libraryHaskellDepends = [ - base - mtl - transformers - ]; - description = "A simple monad for generating fresh integers"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "monad-hash" = callPackage ( { mkDerivation, @@ -453861,52 +260808,6 @@ self: { } ) { }; - "monad-http" = callPackage ( - { - mkDerivation, - base, - base-compat, - bytestring, - exceptions, - http-client, - http-client-tls, - http-types, - monad-logger, - monadcryptorandom, - MonadRandom, - mtl, - text, - transformers, - transformers-compat, - }: - mkDerivation { - pname = "monad-http"; - version = "0.1.0.0"; - sha256 = "14ki66l60la1mmm544vvzn930liaygj6zrql10nr192shf3v0cx3"; - revision = "7"; - editedCabalFile = "19qsjwcdg39is6ipwl6hgr42c7gyc7p1cs5f8isxy90hb4xjghrh"; - libraryHaskellDepends = [ - base - base-compat - bytestring - exceptions - http-client - http-client-tls - http-types - monad-logger - monadcryptorandom - MonadRandom - mtl - text - transformers - transformers-compat - ]; - description = "A class of monads which can do http requests"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "monad-ideals" = callPackage ( { mkDerivation, @@ -453948,33 +260849,6 @@ self: { } ) { }; - "monad-introspect" = callPackage ( - { - mkDerivation, - base, - coercion-extras, - mmorph, - mtl, - transformers, - }: - mkDerivation { - pname = "monad-introspect"; - version = "0.1.0.0"; - sha256 = "15c5ind2ddmj7xqps5fvlwl9awvsrpqcwaszlikf697aqjqra1nb"; - libraryHaskellDepends = [ - base - coercion-extras - mmorph - mtl - transformers - ]; - description = "A reader monad that gives the environment access to the entire transformer stack"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "monad-io-adapter" = callPackage ( { mkDerivation, @@ -454010,139 +260884,6 @@ self: { } ) { }; - "monad-journal" = callPackage ( - { - mkDerivation, - base, - monad-control, - mtl, - transformers, - transformers-base, - }: - mkDerivation { - pname = "monad-journal"; - version = "0.8.1"; - sha256 = "1b05l40832ck44m52izj2lxw0ghi0ip4isb4377vb0b010hc42p2"; - libraryHaskellDepends = [ - base - monad-control - mtl - transformers - transformers-base - ]; - description = "Pure logger typeclass and monad transformer"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "monad-levels" = callPackage ( - { - mkDerivation, - base, - constraints, - transformers, - transformers-compat, - }: - mkDerivation { - pname = "monad-levels"; - version = "0.1.0.1"; - sha256 = "1v3i12h4c788yz93a2c9nxcczrhz8nwpq0057q7b1nad74g70lan"; - libraryHaskellDepends = [ - base - constraints - transformers - transformers-compat - ]; - description = "Specific levels of monad transformers"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "monad-lgbt" = callPackage ( - { - mkDerivation, - base, - containers, - deepseq, - hspec, - logict, - mtl, - QuickCheck, - }: - mkDerivation { - pname = "monad-lgbt"; - version = "0.0.2"; - sha256 = "1y5b2fsaqbwd0aj2mnvb7bv1sj7q6xfa617pk0a7n5p970amisll"; - libraryHaskellDepends = [ - base - containers - deepseq - hspec - logict - mtl - QuickCheck - ]; - testHaskellDepends = [ - base - containers - deepseq - hspec - logict - mtl - QuickCheck - ]; - description = "Monad transformers for combining local and global state"; - license = lib.licenses.bsd2; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "monad-log" = callPackage ( - { - mkDerivation, - aeson, - base, - bytestring, - exceptions, - fast-logger, - lifted-base, - monad-control, - template-haskell, - text, - text-show, - transformers, - }: - mkDerivation { - pname = "monad-log"; - version = "0.1.1.0"; - sha256 = "1hcbgqp7rxvcs4scz94pxhzwwwx510b76ylakb2k4jry11i0q01l"; - revision = "1"; - editedCabalFile = "1qmc3qdkw8cgch93hmm74hga0ajxrgjn5zwiwaw8711c7vn7na9m"; - libraryHaskellDepends = [ - aeson - base - bytestring - exceptions - fast-logger - lifted-base - monad-control - template-haskell - text - text-show - transformers - ]; - description = "A simple and fast logging monad"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "monad-logger" = callPackage ( { mkDerivation, @@ -454464,39 +261205,6 @@ self: { } ) { }; - "monad-lrs" = callPackage ( - { - mkDerivation, - base, - containers, - QuickCheck, - test-framework, - test-framework-quickcheck2, - }: - mkDerivation { - pname = "monad-lrs"; - version = "0.0.2.1"; - sha256 = "01i8hz50r3lf8r3rasl96blr6br3p1x6hvckhbi8aw61x507jmcg"; - revision = "1"; - editedCabalFile = "1hcmwss7ifz2gd8h0559ksxai6gs61sk0674l1jfa4b9hablfwfx"; - libraryHaskellDepends = [ - base - containers - ]; - testHaskellDepends = [ - base - containers - QuickCheck - test-framework - test-framework-quickcheck2 - ]; - description = "a monad to calculate linear recursive sequence"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "monad-markov" = callPackage ( { mkDerivation, @@ -454577,29 +261285,6 @@ self: { } ) { }; - "monad-mersenne-random" = callPackage ( - { - mkDerivation, - base, - mersenne-random-pure64, - }: - mkDerivation { - pname = "monad-mersenne-random"; - version = "0.1"; - sha256 = "03kbqbgv4npzfzn90jk4p17y8kb62sslby6q36819qkif1j76lq6"; - revision = "1"; - editedCabalFile = "1kyfaridmi15wcib9gxns6v252pdhgsbyi303sqrvwhwpx9n3rl4"; - libraryHaskellDepends = [ - base - mersenne-random-pure64 - ]; - description = "An efficient random generator monad, based on the Mersenne Twister"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "monad-metrics" = callPackage ( { mkDerivation, @@ -454685,74 +261370,6 @@ self: { } ) { }; - "monad-mock" = callPackage ( - { - mkDerivation, - base, - constraints, - exceptions, - haskell-src-exts, - haskell-src-meta, - hspec, - monad-control, - mtl, - template-haskell, - th-orphans, - transformers-base, - }: - mkDerivation { - pname = "monad-mock"; - version = "0.2.0.0"; - sha256 = "0yrak2wlgh09pzfs8zqbaysjm8fds62pjsflqwdkxn3i4q6fbbvv"; - libraryHaskellDepends = [ - base - constraints - exceptions - haskell-src-exts - haskell-src-meta - monad-control - mtl - template-haskell - th-orphans - transformers-base - ]; - testHaskellDepends = [ - base - hspec - mtl - ]; - description = "A monad transformer for mocking mtl-style typeclasses"; - license = lib.licenses.isc; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "monad-open" = callPackage ( - { - mkDerivation, - base, - exceptions, - mtl, - transformers, - }: - mkDerivation { - pname = "monad-open"; - version = "0.1.0.0"; - sha256 = "18h24zdvbffnwr2xh4qahakr80z8ly65pmksmk3ngjykxrvif2vx"; - libraryHaskellDepends = [ - base - exceptions - mtl - transformers - ]; - description = "Open recursion for when you need it"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "monad-ox" = callPackage ( { mkDerivation, @@ -454892,54 +261509,6 @@ self: { } ) { }; - "monad-parallel-progressbar" = callPackage ( - { - mkDerivation, - base, - monad-parallel, - monadIO, - terminal-progress-bar, - }: - mkDerivation { - pname = "monad-parallel-progressbar"; - version = "0.1.0.1"; - sha256 = "1pqi2alyvsflwy5ygp4cl5g90jg50ix61plqxvsldpdkzncmmk84"; - libraryHaskellDepends = [ - base - monad-parallel - monadIO - terminal-progress-bar - ]; - description = "Parallel execution of monadic computations with a progress bar"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "monad-param" = callPackage ( - { - mkDerivation, - base, - mtl, - stm, - }: - mkDerivation { - pname = "monad-param"; - version = "0.0.4"; - sha256 = "08rm902kclapqh1iafjrsqspf0szhbx5jaqv6hh9p5zbg8ipdkhc"; - libraryHaskellDepends = [ - base - mtl - stm - ]; - description = "Parameterized monads"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "monad-peel" = callPackage ( { mkDerivation, @@ -454974,156 +261543,6 @@ self: { } ) { }; - "monad-persist" = callPackage ( - { - mkDerivation, - base, - exceptions, - hspec, - monad-control, - monad-logger, - mtl, - persistent, - persistent-sqlite, - persistent-template, - text, - transformers, - transformers-base, - }: - mkDerivation { - pname = "monad-persist"; - version = "0.0.3.0"; - sha256 = "1d97lx9frzwydc82b7srw4r6dr3865wrnvyz27xmcvzxfzbyymi8"; - libraryHaskellDepends = [ - base - exceptions - monad-control - monad-logger - mtl - persistent - text - transformers - transformers-base - ]; - testHaskellDepends = [ - base - hspec - monad-control - monad-logger - persistent - persistent-sqlite - persistent-template - text - transformers - ]; - description = "An mtl-style typeclass and transformer for persistent"; - license = lib.licenses.isc; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "monad-primitive" = callPackage ( - { - mkDerivation, - base, - primitive, - transformers, - }: - mkDerivation { - pname = "monad-primitive"; - version = "0.1"; - sha256 = "1vi6g65hdyq5vq78mfag0qljxgzb6vq83m82x3cpgjl7dr9k5h1x"; - libraryHaskellDepends = [ - base - primitive - transformers - ]; - description = "Type class for monad transformers stack with pirimitive base monad"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "monad-products" = callPackage ( - { - mkDerivation, - base, - semigroupoids, - }: - mkDerivation { - pname = "monad-products"; - version = "4.0.1"; - sha256 = "1skcjjkn14fh92l4rx3akxjg1c85jqhnlwvkkzqwz9g15bdy3gq2"; - libraryHaskellDepends = [ - base - semigroupoids - ]; - description = "Monad products"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "monad-ran" = callPackage ( - { - mkDerivation, - base, - ghc-prim, - mtl, - }: - mkDerivation { - pname = "monad-ran"; - version = "0.1.0"; - sha256 = "04y9s2b4hz2f8khr0q62xy0f6l2v896s7x03i3s18i14bwscqlax"; - libraryHaskellDepends = [ - base - ghc-prim - mtl - ]; - description = "Fast monads and monad transformers"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "monad-recorder" = callPackage ( - { - mkDerivation, - base, - exceptions, - hspec, - monad-control, - mtl, - transformers, - transformers-base, - }: - mkDerivation { - pname = "monad-recorder"; - version = "0.1.1"; - sha256 = "05d27h3lx7p4qzby8jrxf6wj5z69s11pgpbkdacxrag0v8vynqq8"; - libraryHaskellDepends = [ - base - exceptions - monad-control - mtl - transformers - transformers-base - ]; - testHaskellDepends = [ - base - hspec - ]; - description = "Record and replay the results of monadic actions"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "monad-resumption" = callPackage ( { mkDerivation, @@ -455259,33 +261678,6 @@ self: { ]; description = "Utility library for monads, particularly those involving state"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "monad-statevar" = callPackage ( - { - mkDerivation, - base, - stm, - transformers, - }: - mkDerivation { - pname = "monad-statevar"; - version = "0.1"; - sha256 = "08sr29qr02kfqja51ciqcpsf95wp3bypx64f4cwgpwh23xapr1fx"; - libraryHaskellDepends = [ - base - transformers - ]; - testHaskellDepends = [ - base - stm - ]; - description = "Concise, overloaded accessors for IORef, STRef, TVar"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; } ) { }; @@ -455323,55 +261715,6 @@ self: { } ) { }; - "monad-stlike-io" = callPackage ( - { - mkDerivation, - base, - bytestring, - containers, - deepseq, - monads-tf, - }: - mkDerivation { - pname = "monad-stlike-io"; - version = "0.2.2"; - sha256 = "1lizwf31d8ha0xq644cfcn91l8sz8i4ldy12ig4ajfghxj2x4ad5"; - libraryHaskellDepends = [ - base - bytestring - containers - deepseq - monads-tf - ]; - description = "ST-like monad capturing variables to regions and supporting IO"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "monad-stlike-stm" = callPackage ( - { - mkDerivation, - base, - monad-stlike-io, - stm, - }: - mkDerivation { - pname = "monad-stlike-stm"; - version = "0.1.1"; - sha256 = "007rsq9x0dq8xmiimgqb0v8k15xizx63qmc76b1b8a66nfsd9w56"; - libraryHaskellDepends = [ - base - monad-stlike-io - stm - ]; - description = "ST-like monad capturing variables to regions and supporting STM"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "monad-stm" = callPackage ( { mkDerivation, @@ -455416,29 +261759,6 @@ self: { } ) { }; - "monad-task" = callPackage ( - { - mkDerivation, - base, - mtl, - transformers, - }: - mkDerivation { - pname = "monad-task"; - version = "0.2.0"; - sha256 = "02qp31w0zgms07b13km3aiina4iqbzxkiajab3b0czmc17xv4kx4"; - libraryHaskellDepends = [ - base - mtl - transformers - ]; - description = "A monad transformer that turns event processing into co-routine programming"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "monad-throw-exit" = callPackage ( { mkDerivation, @@ -455520,48 +261840,6 @@ self: { } ) { }; - "monad-timing" = callPackage ( - { - mkDerivation, - base, - containers, - exceptions, - hlint, - hspec, - monad-control, - mtl, - time, - transformers, - transformers-base, - }: - mkDerivation { - pname = "monad-timing"; - version = "0.1.0.1"; - sha256 = "02dxykrsfs7z0cr383ync2zxsrgsgk3vp97c5i70rzbmg7dmmw6n"; - libraryHaskellDepends = [ - base - containers - exceptions - monad-control - mtl - time - transformers - transformers-base - ]; - testHaskellDepends = [ - base - containers - hlint - hspec - transformers - ]; - description = "Monad transformer for recording timing events"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "monad-tree" = callPackage ( { mkDerivation, @@ -455585,45 +261863,6 @@ self: { } ) { }; - "monad-tx" = callPackage ( - { mkDerivation, base }: - mkDerivation { - pname = "monad-tx"; - version = "0.0.1"; - sha256 = "0jv3pcmbm3bph42hhr4i0l3dchapixf5j5gd7ybs9j3bbk3yydk9"; - libraryHaskellDepends = [ base ]; - description = "A transactional state monad"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "monad-unify" = callPackage ( - { - mkDerivation, - base, - mtl, - unordered-containers, - }: - mkDerivation { - pname = "monad-unify"; - version = "0.2.2"; - sha256 = "1icl4jaa4vc4lb75m6wv4vjvf8b2xx7aziqhsg2pshizdkfxmgwp"; - revision = "1"; - editedCabalFile = "1qkccw4xd4i112d6mkw8dgsnwfrnqcg1shk9s5cwyn55pwlmnn3x"; - libraryHaskellDepends = [ - base - mtl - unordered-containers - ]; - description = "Generic first-order unification"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "monad-unlift" = callPackage ( { mkDerivation, @@ -455758,27 +261997,6 @@ self: { } ) { }; - "monad-wrap" = callPackage ( - { - mkDerivation, - base, - transformers, - }: - mkDerivation { - pname = "monad-wrap"; - version = "0.1"; - sha256 = "1hmigg0cbrsdvf6s0z2wn3s81q12qg3c30jjlsrw4jdfwv1qn13f"; - libraryHaskellDepends = [ - base - transformers - ]; - description = "Wrap functions such as catch around different monads"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "monadIO" = callPackage ( { mkDerivation, @@ -455812,48 +262030,6 @@ self: { } ) { }; - "monadLib-compose" = callPackage ( - { - mkDerivation, - base, - monadLib, - }: - mkDerivation { - pname = "monadLib-compose"; - version = "0.2"; - sha256 = "14byhdcby094qpgmkblysnplz5r88xnfk7rnfddihzz4jgjzlvy1"; - libraryHaskellDepends = [ - base - monadLib - ]; - description = "Arrow-like monad composition for monadLib"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "monadacme" = callPackage ( - { - mkDerivation, - base, - transformers, - }: - mkDerivation { - pname = "monadacme"; - version = "0.1.0.0"; - sha256 = "1k1jqi0q2n34xd07qp3fd4jw48iq4909m1pq2dm90sg46n6003sr"; - libraryHaskellDepends = [ - base - transformers - ]; - description = "The Acme and AcmeT monads"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "monadbi" = callPackage ( { mkDerivation, @@ -455873,39 +262049,6 @@ self: { } ) { }; - "monadcryptorandom" = callPackage ( - { - mkDerivation, - base, - bytestring, - crypto-api, - exceptions, - mtl, - tagged, - transformers, - transformers-compat, - }: - mkDerivation { - pname = "monadcryptorandom"; - version = "0.7.2.1"; - sha256 = "03bn19wkshs9bjfl65p8klagydva6c543zasibv3y0w1hrpknib9"; - libraryHaskellDepends = [ - base - bytestring - crypto-api - exceptions - mtl - tagged - transformers - transformers-compat - ]; - description = "A monad for using CryptoRandomGen"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "monadfibre" = callPackage ( { mkDerivation, @@ -455925,33 +262068,6 @@ self: { } ) { }; - "monadic-arrays" = callPackage ( - { - mkDerivation, - array, - base, - stm, - transformers, - transformers-compat, - }: - mkDerivation { - pname = "monadic-arrays"; - version = "0.2.2"; - sha256 = "183nwb3ji4ak6yf2wahsa92l8ymnhhljxkvp8f6b8wh223318xv6"; - libraryHaskellDepends = [ - array - base - stm - transformers - transformers-compat - ]; - description = "Boxed and unboxed arrays for monad transformers"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "monadic-bang" = callPackage ( { mkDerivation, @@ -456018,109 +262134,6 @@ self: { } ) { }; - "monadiccp" = callPackage ( - { - mkDerivation, - base, - containers, - mtl, - parsec, - pretty, - random, - semigroups, - }: - mkDerivation { - pname = "monadiccp"; - version = "0.7.7"; - sha256 = "1l6g2gbxmw0avyr7mfjadhads6raz6cwvmg57vb7ssryd9j21vp4"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base - containers - mtl - parsec - pretty - random - semigroups - ]; - testHaskellDepends = [ base ]; - description = "Constraint Programming"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "monadiccp-gecode" = - callPackage - ( - { - mkDerivation, - base, - containers, - gecodeint, - gecodekernel, - gecodesearch, - gecodeset, - gecodesupport, - monadiccp, - mtl, - }: - mkDerivation { - pname = "monadiccp-gecode"; - version = "0.1.3"; - sha256 = "0h3a82lrsvsdkdvf1m5hl9ayvikxp5p38wj5rpgn6qh8n5im2sn8"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base - containers - monadiccp - mtl - ]; - librarySystemDepends = [ - gecodeint - gecodekernel - gecodesearch - gecodeset - gecodesupport - ]; - testHaskellDepends = [ base ]; - description = "Constraint Programming"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) - { - gecodeint = null; - gecodekernel = null; - gecodesearch = null; - gecodeset = null; - gecodesupport = null; - }; - - "monadio-unwrappable" = callPackage ( - { - mkDerivation, - base, - monads-tf, - transformers, - }: - mkDerivation { - pname = "monadio-unwrappable"; - version = "0.3"; - sha256 = "18hbi4vxj9lfcla11b17sb88ysskxavq00zmrjx62cpyzkp85yxh"; - libraryHaskellDepends = [ - base - monads-tf - transformers - ]; - description = "Reversibly allow monad transformer stacks to run in IO"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "monadlist" = callPackage ( { mkDerivation, base }: mkDerivation { @@ -456133,102 +262146,6 @@ self: { } ) { }; - "monadloc" = callPackage ( - { - mkDerivation, - base, - template-haskell, - transformers, - }: - mkDerivation { - pname = "monadloc"; - version = "0.7.1"; - sha256 = "1a773nysrsj61ka7bdacb0i7dxlgb1fjz3x5w9c1w1dv7rmhynmj"; - libraryHaskellDepends = [ - base - template-haskell - transformers - ]; - description = "A class for monads which can keep a monadic call trace"; - license = lib.licenses.publicDomain; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "monadloc-pp" = callPackage ( - { - mkDerivation, - base, - filepath, - haskell-src-exts, - monadloc, - pretty, - syb, - }: - mkDerivation { - pname = "monadloc-pp"; - version = "0.3.1"; - sha256 = "0ch25kcz63xhinwd6mjqbhm282hfh280s3z910wnvdp3krgx0mpc"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - filepath - haskell-src-exts - monadloc - pretty - syb - ]; - description = "A preprocessor for generating monadic call traces"; - license = lib.licenses.publicDomain; - hydraPlatforms = lib.platforms.none; - mainProgram = "MonadLoc"; - broken = true; - } - ) { }; - - "monadlog" = callPackage ( - { - mkDerivation, - aeson, - base, - bytestring, - exceptions, - fast-logger, - lifted-base, - monad-control, - template-haskell, - text, - text-show, - transformers, - }: - mkDerivation { - pname = "monadlog"; - version = "0.1.1.1"; - sha256 = "0vjzx3vqpwkngf483fqaaiszklnkbqhra73bk6pryvn81x1mycwn"; - revision = "1"; - editedCabalFile = "0mmmnrhyw0ak8zd6xdrnlb61nad277av94vwc7wzi2lwfm61imc5"; - libraryHaskellDepends = [ - aeson - base - bytestring - exceptions - fast-logger - lifted-base - monad-control - template-haskell - text - text-show - transformers - ]; - description = "A simple and fast logging monad"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "monadoid" = callPackage ( { mkDerivation, @@ -456302,29 +262219,6 @@ self: { } ) { }; - "monads-fd" = callPackage ( - { - mkDerivation, - base, - mtl, - transformers, - }: - mkDerivation { - pname = "monads-fd"; - version = "0.2.0.0"; - sha256 = "1iqr5p3va5sxmpvydwqz2src54j5njcyrzn9p5apc60nv7yv6x4c"; - libraryHaskellDepends = [ - base - mtl - transformers - ]; - description = "Monad classes, using functional dependencies"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "monads-tf" = callPackage ( { mkDerivation, @@ -456346,179 +262240,6 @@ self: { } ) { }; - "monadtransform" = callPackage ( - { - mkDerivation, - base, - transformers, - }: - mkDerivation { - pname = "monadtransform"; - version = "0.0.2"; - sha256 = "0i586zh6247jfmkw2x27j0aq47yz1c71irj9iwrlx1zrmvzak1yv"; - libraryHaskellDepends = [ - base - transformers - ]; - description = "A type-class for transforming monads (homomorphism) in a transformer"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "monarch" = callPackage ( - { - mkDerivation, - base, - binary, - bytestring, - containers, - doctest, - lifted-base, - monad-control, - mtl, - network, - pool-conduit, - stm, - transformers, - transformers-base, - }: - mkDerivation { - pname = "monarch"; - version = "0.10.0.0"; - sha256 = "1a47hhlmllrm3k4ssr8rr3bgq1w7i6jpx07nyf0k8k9x5sgi1siv"; - libraryHaskellDepends = [ - base - binary - bytestring - containers - lifted-base - monad-control - mtl - network - pool-conduit - stm - transformers - transformers-base - ]; - testHaskellDepends = [ - base - doctest - ]; - description = "Monadic interface for TokyoTyrant"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "mondo" = callPackage ( - { - mkDerivation, - aeson, - authenticate-oauth, - base, - bytestring, - containers, - hspec, - http-client, - http-client-tls, - mtl, - network, - servant, - servant-client, - servant-server, - text, - time, - timerep, - transformers, - unordered-containers, - wai, - warp, - }: - mkDerivation { - pname = "mondo"; - version = "0.3.0.0"; - sha256 = "0fq717j09rf2fj9p6nwybsnpxrrrdnlaphf2i2s7clwc6pyxwv76"; - libraryHaskellDepends = [ - aeson - authenticate-oauth - base - bytestring - containers - http-client - http-client-tls - mtl - servant - servant-client - text - time - timerep - transformers - unordered-containers - ]; - testHaskellDepends = [ - base - hspec - network - servant - servant-client - servant-server - time - timerep - transformers - wai - warp - ]; - description = "Haskell bindings for the Mondo API"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "monetdb-mapi" = callPackage ( - { - mkDerivation, - base, - bindings-monetdb-mapi, - }: - mkDerivation { - pname = "monetdb-mapi"; - version = "0.1.0.2"; - sha256 = "069jmlnrgia36ncl5mqaqq0iaqwrhx6ig5jjnlxr40vfdi4m4dw6"; - libraryHaskellDepends = [ - base - bindings-monetdb-mapi - ]; - description = "Mid-level bindings for the MonetDB API (mapi)"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "money" = callPackage ( - { - mkDerivation, - base, - doctest, - }: - mkDerivation { - pname = "money"; - version = "0.1.0"; - sha256 = "173z82r3z7dvz7397m069m7ppr6fqfvnyxr4spkxy092pzk7il5k"; - libraryHaskellDepends = [ base ]; - testHaskellDepends = [ - base - doctest - ]; - description = "Money"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "mongoDB" = callPackage ( { mkDerivation, @@ -456643,212 +262364,6 @@ self: { } ) { }; - "mongodb-queue" = callPackage ( - { - mkDerivation, - base, - data-default, - hspec, - lifted-base, - monad-control, - mongoDB, - network, - text, - transformers, - }: - mkDerivation { - pname = "mongodb-queue"; - version = "0.4.0.1"; - sha256 = "1y3c5ydf7595ai3h6iapc0dmls348vv1jmy4g8n5wfmwzy4li22s"; - libraryHaskellDepends = [ - base - data-default - lifted-base - monad-control - mongoDB - network - text - transformers - ]; - testHaskellDepends = [ - base - data-default - hspec - lifted-base - monad-control - mongoDB - network - text - transformers - ]; - description = "message queue using MongoDB"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "mongrel2-handler" = callPackage ( - { - mkDerivation, - attoparsec, - base, - blaze-builder, - blaze-textual, - bytestring, - case-insensitive, - containers, - http-types, - text, - zeromq-haskell, - }: - mkDerivation { - pname = "mongrel2-handler"; - version = "0.3.2"; - sha256 = "1bv9i2b0pb50r7l7l43h26ng5rcs1iyymwndcwxji8dnmbnr4jdf"; - libraryHaskellDepends = [ - attoparsec - base - blaze-builder - blaze-textual - bytestring - case-insensitive - containers - http-types - text - zeromq-haskell - ]; - description = "Mongrel2 Handler Library"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "monitor" = callPackage ( - { - mkDerivation, - base, - filepath, - hinotify, - process, - }: - mkDerivation { - pname = "monitor"; - version = "0.1.1"; - sha256 = "06p9xj5y3xl4hcl57afqz4m4yc2vaah8i6f4smmhwmkzslg7svbs"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - filepath - hinotify - process - ]; - description = "Do things when files change"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - mainProgram = "monitor"; - broken = true; - } - ) { }; - - "monky" = callPackage ( - { - mkDerivation, - base, - bytestring, - cereal, - composition, - containers, - directory, - env-locale, - formatting, - mtl, - netlink, - network, - old-time, - optparse-applicative, - process, - pulseaudio, - scientific, - statvfs, - stm, - template-haskell, - text, - time, - transformers, - unix, - }: - mkDerivation { - pname = "monky"; - version = "2.2.1.1"; - sha256 = "1w188ihy40rmz0xnrss5zc0lw5cmrj61pv3f5iq8y5q35zbimksm"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - bytestring - cereal - composition - containers - directory - env-locale - formatting - mtl - netlink - network - old-time - pulseaudio - scientific - statvfs - stm - template-haskell - text - time - transformers - unix - ]; - executableHaskellDepends = [ - base - containers - directory - mtl - optparse-applicative - process - unix - ]; - description = "A system state collecting library and application"; - license = lib.licenses.lgpl3Only; - hydraPlatforms = lib.platforms.none; - mainProgram = "monky"; - } - ) { }; - - "mono-foldable" = callPackage ( - { - mkDerivation, - base, - bytestring, - text, - vector, - }: - mkDerivation { - pname = "mono-foldable"; - version = "0.1.0.2"; - sha256 = "1qnbw9pd06czwyj2xcsjdigg7bj8d23p3ljnnkgd3d0r67qxxlxm"; - libraryHaskellDepends = [ - base - bytestring - text - vector - ]; - description = "Folds for monomorphic containers"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "mono-traversable" = callPackage ( { mkDerivation, @@ -457022,52 +262537,6 @@ self: { } ) { }; - "monoid" = callPackage ( - { - mkDerivation, - base, - containers, - lens, - mtl, - }: - mkDerivation { - pname = "monoid"; - version = "0.1.9"; - sha256 = "13k5s9y37igvrsfbw5q76zy10fm585dijx10qk32c4agih9fxyfv"; - libraryHaskellDepends = [ - base - containers - lens - mtl - ]; - description = "Monoid type classes, designed in modular way, distinguish Monoid from Mempty and Semigroup. This design allows mempty operation don't bring Semigroups related constraints until (<>) is used."; - license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "monoid-absorbing" = callPackage ( - { - mkDerivation, - base, - mtl, - }: - mkDerivation { - pname = "monoid-absorbing"; - version = "0.1.0.4"; - sha256 = "1sq2ll3ac3fxb0gdcy6gzjlv5j17pnrj8zs2bhi2s96dx2gp6zrv"; - libraryHaskellDepends = [ - base - mtl - ]; - description = "A library for (left, right) zero monoids and backtracking with cut"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "monoid-extras" = callPackage ( { mkDerivation, @@ -457136,30 +262605,6 @@ self: { } ) { }; - "monoid-owns" = callPackage ( - { - mkDerivation, - base, - bytestring, - containers, - }: - mkDerivation { - pname = "monoid-owns"; - version = "2010.5.29"; - sha256 = "1n05f95yhn6jp7rdnlx686k1lsls4iilxdxnp41ds4afsypaclfk"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base - bytestring - containers - ]; - description = "a practical monoid implementation"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "monoid-record" = callPackage ( { mkDerivation, base }: mkDerivation { @@ -457567,62 +263012,6 @@ self: { } ) { }; - "monoidplus" = callPackage ( - { - mkDerivation, - base, - contravariant, - semigroups, - transformers, - }: - mkDerivation { - pname = "monoidplus"; - version = "0.1.0.1"; - sha256 = "1klgwv3sd9zmqpj157rypln51kcwml9b1fyaxnip0a1525h6c2s9"; - libraryHaskellDepends = [ - base - contravariant - semigroups - transformers - ]; - description = "Extra classes/functions about monoids"; - license = lib.licenses.publicDomain; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "monoids" = callPackage ( - { - mkDerivation, - array, - base, - bytestring, - containers, - fingertree, - parallel, - text, - }: - mkDerivation { - pname = "monoids"; - version = "0.3.2"; - sha256 = "0yn15q0569mdm20wdbwydbb1vdzfdh1ismhwplwbvi2989h78kca"; - libraryHaskellDepends = [ - array - base - bytestring - containers - fingertree - parallel - text - ]; - description = "Deprecated: Use 'reducers'"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "monomer" = callPackage ( { mkDerivation, @@ -457869,44 +263258,6 @@ self: { } ) { }; - "monopati" = callPackage ( - { - mkDerivation, - base, - directory, - free, - hedgehog, - peano, - split, - transformers, - }: - mkDerivation { - pname = "monopati"; - version = "0.1.4"; - sha256 = "159r99x00vylxb50hyrb8xd67ag4x1mmrfddj5bq31bxiwb6j47s"; - libraryHaskellDepends = [ - base - directory - free - peano - split - ]; - testHaskellDepends = [ - base - directory - free - hedgehog - peano - split - transformers - ]; - description = "Well-typed paths"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "montage" = callPackage ( @@ -458029,49 +263380,6 @@ self: { stats-web = null; }; - "monte-carlo" = callPackage ( - { - mkDerivation, - base, - gsl-random, - ieee754, - primitive, - QuickCheck, - random, - test-framework, - test-framework-quickcheck2, - transformers, - vector, - }: - mkDerivation { - pname = "monte-carlo"; - version = "0.6.2"; - sha256 = "1cnbs78i1kbsh04wzsp3yrrs0sywn3cdswqz9b6qg2q275x18yy6"; - libraryHaskellDepends = [ - base - gsl-random - primitive - transformers - vector - ]; - testHaskellDepends = [ - base - gsl-random - ieee754 - primitive - QuickCheck - random - test-framework - test-framework-quickcheck2 - transformers - vector - ]; - description = "A monad and transformer for Monte Carlo calculations"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "months" = callPackage ( { mkDerivation, @@ -458107,39 +263415,6 @@ self: { } ) { }; - "monus" = callPackage ( - { - mkDerivation, - base, - containers, - smallcheck, - tasty, - tasty-quickcheck, - tasty-smallcheck, - }: - mkDerivation { - pname = "monus"; - version = "0.2.0.0"; - sha256 = "1iyzq3ivw6brjf45d3023n8x7hq0ihy8gvjh8hjdsmc6pnm26gw9"; - libraryHaskellDepends = [ - base - containers - ]; - testHaskellDepends = [ - base - containers - smallcheck - tasty - tasty-quickcheck - tasty-smallcheck - ]; - description = "a 'Monus' is a commutative monoid that allows a notion of substraction"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "monus-weighted-search" = callPackage ( { mkDerivation, @@ -458189,127 +263464,6 @@ self: { } ) { }; - "monzo" = callPackage ( - { - mkDerivation, - aeson, - authenticate-oauth, - base, - bytestring, - containers, - hspec, - http-client, - http-client-tls, - mtl, - network, - servant, - servant-client, - servant-server, - text, - time, - timerep, - transformers, - unordered-containers, - wai, - warp, - }: - mkDerivation { - pname = "monzo"; - version = "0.4.0.0"; - sha256 = "1ippaavrdflbvn1ifvyla7yzh430gzxzmqb6h27pjn40wv0rz2wj"; - libraryHaskellDepends = [ - aeson - authenticate-oauth - base - bytestring - containers - http-client - http-client-tls - mtl - servant - servant-client - text - time - timerep - transformers - unordered-containers - ]; - testHaskellDepends = [ - base - hspec - network - servant - servant-client - servant-server - time - timerep - transformers - wai - warp - ]; - description = "Haskell bindings for the Monzo API"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "moo" = callPackage ( - { - mkDerivation, - array, - base, - containers, - gray-code, - HUnit, - mersenne-random-pure64, - MonadRandom, - mtl, - parallel, - random, - random-shuffle, - time, - vector, - }: - mkDerivation { - pname = "moo"; - version = "1.2"; - sha256 = "1j3dg835qwjk0nji0pdfkpgqrpfd3ijlpz5b5hy03rmi05k8vlfq"; - libraryHaskellDepends = [ - array - base - containers - gray-code - mersenne-random-pure64 - MonadRandom - mtl - parallel - random - random-shuffle - time - vector - ]; - testHaskellDepends = [ - array - base - containers - gray-code - HUnit - mersenne-random-pure64 - MonadRandom - mtl - parallel - random - random-shuffle - time - vector - ]; - description = "Genetic algorithm library"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "moo-nad" = callPackage ( { mkDerivation, @@ -458423,85 +263577,6 @@ self: { } ) { }; - "morfette" = callPackage ( - { - mkDerivation, - array, - base, - binary, - bytestring, - containers, - directory, - filepath, - mtl, - pretty, - QuickCheck, - text, - utf8-string, - vector, - }: - mkDerivation { - pname = "morfette"; - version = "0.4.7"; - sha256 = "1vxqg55zsj36pi1bsydm0v4fls4blya9jjfdv56jgdfjsjzzljyh"; - isLibrary = false; - isExecutable = true; - enableSeparateDataOutput = true; - executableHaskellDepends = [ - array - base - binary - bytestring - containers - directory - filepath - mtl - pretty - QuickCheck - text - utf8-string - vector - ]; - description = "A tool for supervised learning of morphology"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "morfette"; - broken = true; - } - ) { }; - - "morfeusz" = callPackage ( - { - mkDerivation, - base, - bytestring, - containers, - directory, - morfeusz, - mtl, - text, - }: - mkDerivation { - pname = "morfeusz"; - version = "0.4.2"; - sha256 = "1lzl5ks7px1xibfa6y0wnfv2mk2w39hscrrynqn7a3gjnca00sx0"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base - bytestring - containers - directory - mtl - text - ]; - librarySystemDepends = [ morfeusz ]; - description = "Bindings to the morphological analyser Morfeusz"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { morfeusz = null; }; - "morley" = callPackage ( { mkDerivation, @@ -458631,7 +263706,6 @@ self: { ]; description = "Developer tools for the Michelson Language"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "morley"; } ) { }; @@ -458762,7 +263836,6 @@ self: { testToolDepends = [ tasty-discover ]; description = "Client to interact with the Tezos blockchain"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "morley-client"; } ) { }; @@ -458894,7 +263967,6 @@ self: { testToolDepends = [ tasty-discover ]; description = "Upgradeability infrastructure based on Morley"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "morley-ustore-reader"; } ) { }; @@ -459211,43 +264283,6 @@ self: { } ) { }; - "morpheus-graphql-cli" = callPackage ( - { - mkDerivation, - base, - bytestring, - filepath, - morpheus-graphql, - optparse-applicative, - }: - mkDerivation { - pname = "morpheus-graphql-cli"; - version = "0.1.0"; - sha256 = "0xqk1mkgbh3y9wlb90hwvjzn31670pm8zanm3bijzm56q3lg4ni6"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - bytestring - filepath - morpheus-graphql - optparse-applicative - ]; - testHaskellDepends = [ - base - bytestring - filepath - morpheus-graphql - optparse-applicative - ]; - description = "Morpheus GraphQL CLI"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "morpheus"; - broken = true; - } - ) { }; - "morpheus-graphql-client" = callPackage ( { mkDerivation, @@ -459656,54 +264691,6 @@ self: { } ) { }; - "morphisms-functors" = callPackage ( - { mkDerivation, morphisms }: - mkDerivation { - pname = "morphisms-functors"; - version = "0.1.7"; - sha256 = "1mv2sjn68n55482496icg84nbf3mn85fizf4q42781qn689np60q"; - libraryHaskellDepends = [ morphisms ]; - description = "Functors, theirs compositions and transformations"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "morphisms-functors-inventory" = callPackage ( - { - mkDerivation, - morphisms, - morphisms-functors, - }: - mkDerivation { - pname = "morphisms-functors-inventory"; - version = "0.1.0"; - sha256 = "16p5wj9yq6qsbzaqsx0p33fkginkf5mbqg4y7pak2wx1v7aqll2m"; - libraryHaskellDepends = [ - morphisms - morphisms-functors - ]; - description = "Inventory is state and store"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "morphisms-objects" = callPackage ( - { mkDerivation, morphisms }: - mkDerivation { - pname = "morphisms-objects"; - version = "0.1.3"; - sha256 = "1d5jbjp8ih1fsna8w2mkw217ybsxdhyh7acq0r7b9iwngh52jj6b"; - libraryHaskellDepends = [ morphisms ]; - description = "Algebraic structures"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "morte" = callPackage ( { mkDerivation, @@ -459884,53 +264871,6 @@ self: { } ) { }; - "mosaico-lib" = callPackage ( - { - mkDerivation, - base, - base-unicode-symbols, - colour, - diagrams-cairo, - diagrams-core, - diagrams-gtk, - diagrams-lib, - glib, - gtk, - JuicyPixels, - mtl, - split, - stm, - stm-chans, - transformers, - }: - mkDerivation { - pname = "mosaico-lib"; - version = "0.1.1.0"; - sha256 = "1qcr3l1a422fh5226443dc8p6hvrr9wbhri6mk2pcw7zyfd5xr0b"; - libraryHaskellDepends = [ - base - base-unicode-symbols - colour - diagrams-cairo - diagrams-core - diagrams-gtk - diagrams-lib - glib - gtk - JuicyPixels - mtl - split - stm - stm-chans - transformers - ]; - description = "Generación interactiva de mosaicos"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "mosquitto-hs" = callPackage ( { mkDerivation, base }: mkDerivation { @@ -460081,145 +265021,6 @@ self: { } ) { }; - "motor" = callPackage ( - { - mkDerivation, - base, - indexed, - indexed-extras, - reflection, - row-types, - template-haskell, - }: - mkDerivation { - pname = "motor"; - version = "0.4.0"; - sha256 = "1mwvq4rzfj4fl5mcbg9cfk8x0c21p9w3wbx0h0fkm6m16k94b4p6"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - indexed - indexed-extras - reflection - row-types - template-haskell - ]; - executableHaskellDepends = [ - base - indexed - indexed-extras - row-types - ]; - testHaskellDepends = [ - base - indexed - indexed-extras - row-types - ]; - description = "Type-safe effectful state machines in Haskell"; - license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; - mainProgram = "example-door"; - } - ) { }; - - "motor-diagrams" = callPackage ( - { - mkDerivation, - base, - hspec, - hspec-discover, - motor, - motor-reflection, - template-haskell, - text, - }: - mkDerivation { - pname = "motor-diagrams"; - version = "0.4.0"; - sha256 = "12niyizqd3hvi6g30fa38b8b2m2cxbdxzcpr95wbpdxzhvbqxs0h"; - libraryHaskellDepends = [ - base - motor - motor-reflection - template-haskell - text - ]; - testHaskellDepends = [ - base - hspec - hspec-discover - motor - motor-reflection - text - ]; - testToolDepends = [ hspec-discover ]; - description = "Generate state diagrams from Motor FSM typeclasses"; - license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "motor-reflection" = callPackage ( - { - mkDerivation, - base, - hspec, - hspec-discover, - indexed, - motor, - row-types, - template-haskell, - text, - }: - mkDerivation { - pname = "motor-reflection"; - version = "0.4.0"; - sha256 = "1n66pylcgfnmrbfbgljzx16siwv38y5j752m8yimnlg1kny1a0i6"; - libraryHaskellDepends = [ - base - motor - template-haskell - text - ]; - testHaskellDepends = [ - base - hspec - hspec-discover - indexed - motor - row-types - ]; - testToolDepends = [ hspec-discover ]; - description = "Reflect on Motor FSM typeclasses to obtain runtime representations"; - license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "mount" = callPackage ( - { - mkDerivation, - base, - bytestring, - }: - mkDerivation { - pname = "mount"; - version = "0.2.1"; - sha256 = "0rdlnz0xk6mil79a8ygfrwgdychsn6h1gbv6qn2nybzaw1zjf4z3"; - libraryHaskellDepends = [ - base - bytestring - ]; - description = "Mounts and umounts filesystems"; - license = "GPL"; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "mountpoints" = callPackage ( { mkDerivation, base }: mkDerivation { @@ -460232,67 +265033,6 @@ self: { } ) { }; - "movie-monad" = callPackage ( - { - mkDerivation, - base, - bytestring, - filepath, - gi-gdk, - gi-gdkpixbuf, - gi-glib, - gi-gobject, - gi-gst, - gi-gstvideo, - gi-gtk, - haskell-gi, - haskell-gi-base, - haskell-gi-overloading, - MissingH, - network-uri, - process, - system-fileio, - system-filepath, - text, - time, - }: - mkDerivation { - pname = "movie-monad"; - version = "0.0.5.0"; - sha256 = "02hqkgz3855d3lgvyq6nyqm70x5c0ycfzvw6pxndhv8ly5i61nby"; - isLibrary = false; - isExecutable = true; - enableSeparateDataOutput = true; - executableHaskellDepends = [ - base - bytestring - filepath - gi-gdk - gi-gdkpixbuf - gi-glib - gi-gobject - gi-gst - gi-gstvideo - gi-gtk - haskell-gi - haskell-gi-base - haskell-gi-overloading - MissingH - network-uri - process - system-fileio - system-filepath - text - time - ]; - description = "Plays videos using GStreamer and GTK+"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "movie-monad"; - broken = true; - } - ) { }; - "moving-averages" = callPackage ( { mkDerivation, @@ -460385,35 +265125,6 @@ self: { } ) { }; - "mp3decoder" = callPackage ( - { - mkDerivation, - base, - binary-strict, - bytestring, - haskell98, - mtl, - }: - mkDerivation { - pname = "mp3decoder"; - version = "0.0.1"; - sha256 = "0kwjnbrmlp9a5wz3mgf76nd2ar32d3n1f4jmbfpsggcm7jdp1rmv"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - binary-strict - bytestring - haskell98 - mtl - ]; - description = "MP3 decoder for teaching"; - license = "unknown"; - hydraPlatforms = lib.platforms.none; - mainProgram = "mp3driver"; - } - ) { }; - "mpd-current-json" = callPackage ( { mkDerivation, @@ -460430,53 +265141,24 @@ self: { sha256 = "0ici761fvhcl82gnsrzmab529rfwx990qv6qappk4wqvn0d1dvm2"; isLibrary = true; isExecutable = true; - libraryHaskellDepends = [ - aeson - aeson-pretty - base - bytestring - libmpd - ]; - executableHaskellDepends = [ - aeson - aeson-pretty - base - bytestring - libmpd - optparse-applicative - ]; - description = "Print current MPD song and status as JSON"; - license = lib.licenses.unlicense; - mainProgram = "mpd-current-json"; - } - ) { }; - - "mpdmate" = callPackage ( - { - mkDerivation, - base, - directory, - network, - powermate, - unix, - }: - mkDerivation { - pname = "mpdmate"; - version = "0.1"; - sha256 = "02p6g8wgmmzxl3dnrvbj1msg972c40s300rfykqsg1g5wiqbllf2"; - isLibrary = false; - isExecutable = true; + libraryHaskellDepends = [ + aeson + aeson-pretty + base + bytestring + libmpd + ]; executableHaskellDepends = [ + aeson + aeson-pretty base - directory - network - powermate - unix + bytestring + libmpd + optparse-applicative ]; - description = "MPD/PowerMate executable"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "mpdmate"; + description = "Print current MPD song and status as JSON"; + license = lib.licenses.unlicense; + mainProgram = "mpd-current-json"; } ) { }; @@ -460727,33 +265409,6 @@ self: { } ) { }; - "mpppc" = callPackage ( - { - mkDerivation, - ansi-terminal, - base, - bytestring, - split, - text, - }: - mkDerivation { - pname = "mpppc"; - version = "0.1.3"; - sha256 = "1zcilskpslpqyrbwpabwbry4p3kpcfca94wchh9dkq9g8pg8laxi"; - libraryHaskellDepends = [ - ansi-terminal - base - bytestring - split - text - ]; - description = "Multi-dimensional parametric pretty-printer with color"; - license = "GPL"; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "mprelude" = callPackage ( { mkDerivation, @@ -460786,147 +265441,6 @@ self: { } ) { }; - "mpretty" = callPackage ( - { - mkDerivation, - ansi-terminal, - base, - containers, - data-lens-fd, - data-lens-template, - mtl, - orders, - text, - transformers, - }: - mkDerivation { - pname = "mpretty"; - version = "0.1.0.0"; - sha256 = "0q4fi7jmdf3bvcqk6fc7194h59sjwf76ld8niwqczc30v8lyjq2n"; - libraryHaskellDepends = [ - ansi-terminal - base - containers - data-lens-fd - data-lens-template - mtl - orders - text - transformers - ]; - description = "a monadic, extensible pretty printing library"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "mpris" = callPackage ( - { - mkDerivation, - base, - containers, - dbus, - mtl, - }: - mkDerivation { - pname = "mpris"; - version = "0.1.0.0"; - sha256 = "11c62m19ngap44fv4gnv0ln8iff1b08dg2vclj16jx1fj8pqps9y"; - libraryHaskellDepends = [ - base - containers - dbus - mtl - ]; - description = "Interface for MPRIS"; - license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "mprover" = callPackage ( - { - mkDerivation, - base, - containers, - haskell98, - mtl, - parsec, - pretty, - transformers, - unbound, - }: - mkDerivation { - pname = "mprover"; - version = "0.0.0.0"; - sha256 = "1b5vzhbn5jnpxc0bzbhdak51qhzv5hif0300jsrbi5ffyvcjqkss"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - containers - haskell98 - mtl - parsec - pretty - transformers - unbound - ]; - description = "Simple equational reasoning for a Haskell-ish language"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "mp"; - } - ) { }; - - "mps" = callPackage ( - { - mkDerivation, - array, - base, - bytestring, - containers, - directory, - filepath, - monoid-owns, - old-locale, - old-time, - parallel, - parsec, - regexpr, - template-haskell, - time, - utf8-string, - }: - mkDerivation { - pname = "mps"; - version = "2010.11.28"; - sha256 = "1xhflvgwrjzj7qb69dn149lh32c7q9161zrzfs07ncs233y0w4lg"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - array - base - bytestring - containers - directory - filepath - monoid-owns - old-locale - old-time - parallel - parsec - regexpr - template-haskell - time - utf8-string - ]; - description = "simply oo"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "mptcp" = callPackage ( { mkDerivation, @@ -461257,164 +265771,6 @@ self: { } ) { }; - "mpvguihs" = callPackage ( - { - mkDerivation, - base, - directory, - filepath, - gtk, - mtl, - process, - template-haskell, - unix, - }: - mkDerivation { - pname = "mpvguihs"; - version = "0.1.1"; - sha256 = "1nmc03s8h3khmvajyhwaniczq0r4wrinq2sjjp1c6gyc2nggxzyx"; - isLibrary = false; - isExecutable = true; - enableSeparateDataOutput = true; - executableHaskellDepends = [ - base - directory - filepath - gtk - mtl - process - template-haskell - unix - ]; - description = "A minimalist mpv GUI written in I/O heavy Haskell"; - license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - mainProgram = "mpvguihs"; - broken = true; - } - ) { }; - - "mqtt" = callPackage ( - { - mkDerivation, - async, - attoparsec, - base, - binary, - bytestring, - case-insensitive, - clock, - containers, - criterion, - deepseq, - exceptions, - hslogger, - network-uri, - random, - socket, - tasty, - tasty-hunit, - tasty-quickcheck, - text, - tls, - uuid, - websockets, - x509, - x509-validation, - }: - mkDerivation { - pname = "mqtt"; - version = "0.1.1.0"; - sha256 = "0cp4m1mzy00rczlw5s1m6wx59fdzpdm0hw5jg26213vnpngbnvbv"; - libraryHaskellDepends = [ - async - attoparsec - base - binary - bytestring - case-insensitive - clock - containers - hslogger - socket - text - tls - uuid - websockets - x509 - x509-validation - ]; - testHaskellDepends = [ - async - attoparsec - base - binary - bytestring - containers - deepseq - exceptions - network-uri - random - tasty - tasty-hunit - tasty-quickcheck - text - tls - uuid - ]; - benchmarkHaskellDepends = [ - base - binary - bytestring - criterion - text - ]; - description = "An MQTT protocol implementation"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "mqtt-hs" = callPackage ( - { - mkDerivation, - async, - attoparsec, - base, - bytestring, - monad-loops, - mtl, - network, - singletons, - stm, - text, - transformers, - }: - mkDerivation { - pname = "mqtt-hs"; - version = "1.0.2"; - sha256 = "1vywh3b0anhyi8bqaqwygh1y006pp7c6zky77vykpabb5rw9v5nm"; - libraryHaskellDepends = [ - async - attoparsec - base - bytestring - monad-loops - mtl - network - singletons - stm - text - transformers - ]; - description = "A MQTT client library"; - license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "mr-env" = callPackage ( { mkDerivation, @@ -461435,92 +265791,6 @@ self: { } ) { }; - "mrifk" = callPackage ( - { - mkDerivation, - array, - base, - containers, - mtl, - }: - mkDerivation { - pname = "mrifk"; - version = "4.3"; - sha256 = "0pd9jplp29k14ippq9237476zx3973rak9kw8wjyzidsbyvrj5mx"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - array - base - containers - mtl - ]; - description = "Decompiles Glulx files"; - license = "GPL"; - hydraPlatforms = lib.platforms.none; - mainProgram = "mrifk"; - broken = true; - } - ) { }; - - "mrm" = callPackage ( - { mkDerivation, base }: - mkDerivation { - pname = "mrm"; - version = "0.1.0.0"; - sha256 = "1qmfki808284yz8l5l30s10q6idhlmp864wi6xbk14chh331xaiw"; - libraryHaskellDepends = [ base ]; - description = "Modular Refiable Matching, first-class matches"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "ms" = callPackage ( - { - mkDerivation, - base, - contravariant, - doctest, - edit-distance, - lens, - profunctors, - semigroupoids, - semigroups, - tasty, - tasty-quickcheck, - vector, - }: - mkDerivation { - pname = "ms"; - version = "0.2.1"; - sha256 = "0h70dkgzybbjm48ay9xqbvydf13a6q1zy99ln8kx4qlfdi4gsrnp"; - libraryHaskellDepends = [ - base - contravariant - edit-distance - lens - profunctors - semigroupoids - semigroups - vector - ]; - testHaskellDepends = [ - base - doctest - profunctors - tasty - tasty-quickcheck - vector - ]; - description = "metric spaces"; - license = lib.licenses.bsd2; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "ms-auth" = callPackage ( { mkDerivation, @@ -461789,50 +266059,6 @@ self: { } ) { }; - "msgpack-aeson" = callPackage ( - { - mkDerivation, - aeson, - base, - bytestring, - deepseq, - msgpack, - scientific, - tasty, - tasty-hunit, - text, - unordered-containers, - vector, - }: - mkDerivation { - pname = "msgpack-aeson"; - version = "0.1.0.0"; - sha256 = "1ygnki55cj6951y75snc4gnv4vsjp9pgwqg3jp7cy9bcss3msq3j"; - libraryHaskellDepends = [ - aeson - base - bytestring - deepseq - msgpack - scientific - text - unordered-containers - vector - ]; - testHaskellDepends = [ - aeson - base - msgpack - tasty - tasty-hunit - ]; - description = "Aeson adapter for MessagePack"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "msgpack-arbitrary" = callPackage ( { mkDerivation, @@ -461937,59 +266163,6 @@ self: { } ) { }; - "msgpack-idl" = callPackage ( - { - mkDerivation, - base, - blaze-builder, - bytestring, - cmdargs, - containers, - directory, - filepath, - hspec, - msgpack, - peggy, - shakespeare-text, - template-haskell, - text, - }: - mkDerivation { - pname = "msgpack-idl"; - version = "0.2.1"; - sha256 = "0z28qikcfvfkj9xr87g13jlm2blqfxj3rfrg7hm2hfgv3qz4gkfz"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - blaze-builder - bytestring - containers - directory - filepath - msgpack - peggy - shakespeare-text - template-haskell - text - ]; - executableHaskellDepends = [ - base - cmdargs - directory - peggy - ]; - testHaskellDepends = [ - base - hspec - ]; - description = "An IDL Compiler for MessagePack"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "mpidl"; - } - ) { }; - "msgpack-persist" = callPackage ( { mkDerivation, @@ -462054,62 +266227,6 @@ self: { } ) { }; - "msgpack-rpc" = callPackage ( - { - mkDerivation, - async, - base, - binary, - binary-conduit, - bytestring, - conduit, - conduit-extra, - exceptions, - monad-control, - msgpack, - mtl, - network, - random, - tasty, - tasty-hunit, - text, - }: - mkDerivation { - pname = "msgpack-rpc"; - version = "1.0.0"; - sha256 = "00m5hpj5cd521j3jzsaw49asbpxvka0x1zi2qs26si82wxgnpjkn"; - revision = "2"; - editedCabalFile = "10vhvch66vk12gxgvivzz7x829ml8v08qcw9phylf4icwrgirn0p"; - libraryHaskellDepends = [ - base - binary - binary-conduit - bytestring - conduit - conduit-extra - exceptions - monad-control - msgpack - mtl - network - random - text - ]; - testHaskellDepends = [ - async - base - mtl - network - tasty - tasty-hunit - ]; - description = "A MessagePack-RPC Implementation"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "msgpack-rpc-conduit" = callPackage ( { mkDerivation, @@ -462272,68 +266389,6 @@ self: { } ) { }; - "msh" = callPackage ( - { - mkDerivation, - base, - containers, - haskell-src-exts, - haskell-src-meta, - lens, - mtl, - parsec, - template-haskell, - text, - }: - mkDerivation { - pname = "msh"; - version = "0.1.0.2"; - sha256 = "1y59wd2r2amvz641pkg10bswz3bmip8fmcpyjj4cz45rgpqmj6c4"; - libraryHaskellDepends = [ - base - containers - haskell-src-exts - haskell-src-meta - lens - mtl - parsec - template-haskell - text - ]; - description = "Object-Oriented Programming in Haskell"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "msi-kb-backlit" = callPackage ( - { - mkDerivation, - base, - bytestring, - hid, - split, - }: - mkDerivation { - pname = "msi-kb-backlit"; - version = "0.1.0.1"; - sha256 = "1lq1a13h74dkhmh6mkg9mzksvzc2mjb8ynsbs9856z7079ifsdw4"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - bytestring - hid - split - ]; - description = "A command line tool to change backlit colors of your MSI keyboards"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "msi-kb-backlit"; - } - ) { }; - "mssql-simple" = callPackage ( { mkDerivation, @@ -462486,93 +266541,6 @@ self: { } ) { }; - "mtgoxapi" = callPackage ( - { - mkDerivation, - aeson, - attoparsec, - base, - base16-bytestring, - base64-bytestring, - bytestring, - curl, - either, - errors, - hashable, - HTTP, - HUnit, - ixset, - network, - QuickCheck, - SHA, - test-framework, - test-framework-hunit, - test-framework-quickcheck2, - text, - time, - transformers, - unordered-containers, - vector, - watchdog, - }: - mkDerivation { - pname = "mtgoxapi"; - version = "0.5.0.2"; - sha256 = "1iyn2mq0fql952phmbs8578awrv5l6q9iqkmsaby2jp48mnwizji"; - libraryHaskellDepends = [ - aeson - attoparsec - base - base16-bytestring - base64-bytestring - bytestring - curl - either - errors - hashable - HTTP - ixset - network - SHA - text - time - transformers - unordered-containers - vector - watchdog - ]; - testHaskellDepends = [ - aeson - attoparsec - base - base16-bytestring - base64-bytestring - bytestring - curl - errors - hashable - HTTP - HUnit - ixset - network - QuickCheck - SHA - test-framework - test-framework-hunit - test-framework-quickcheck2 - text - time - transformers - unordered-containers - vector - watchdog - ]; - description = "Library to communicate with Mt.Gox"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "mtl_2_3_1" = callPackage ( { mkDerivation, @@ -462595,29 +266563,6 @@ self: { } ) { }; - "mtl-c" = callPackage ( - { - mkDerivation, - base, - mtl, - transformers, - }: - mkDerivation { - pname = "mtl-c"; - version = "0.1.1"; - sha256 = "12zays8x0b65dc11s95f5j6gwz2kksh9md5m9cpal1yj5qydmmrd"; - libraryHaskellDepends = [ - base - mtl - transformers - ]; - description = "Very strict CPS'd transformers"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "mtl-compat" = callPackage ( { mkDerivation, @@ -462638,56 +266583,6 @@ self: { } ) { }; - "mtl-evil-instances" = callPackage ( - { - mkDerivation, - base, - monad-control, - mtl, - transformers, - transformers-base, - }: - mkDerivation { - pname = "mtl-evil-instances"; - version = "0.1"; - sha256 = "1z10p0dmvjyadjc46nkzyqicfk0097ff2ni3fiypw9z5knsxhym4"; - libraryHaskellDepends = [ - base - monad-control - mtl - transformers - transformers-base - ]; - description = "Instances for the mtl classes for all monad transformers"; - license = lib.licenses.publicDomain; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "mtl-extras" = callPackage ( - { - mkDerivation, - base, - mtl, - transformers, - }: - mkDerivation { - pname = "mtl-extras"; - version = "0.1"; - sha256 = "1v7wm6gsp3c9kad6slxwj68s3050zqkv6k4n5h827vgx7na694pz"; - libraryHaskellDepends = [ - base - mtl - transformers - ]; - description = "Higher order versions of MTL classes"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "mtl-mhs" = callPackage ( { mkDerivation, @@ -462751,71 +266646,6 @@ self: { } ) { }; - "mtl-tf" = callPackage ( - { - mkDerivation, - base, - transformers, - }: - mkDerivation { - pname = "mtl-tf"; - version = "0.2.1.0"; - sha256 = "0z9vinxhbbg4lpf8mxi0h3jbz4kv6x3ih05q44kjh4z8mpm9szzy"; - libraryHaskellDepends = [ - base - transformers - ]; - description = "Monad Transformer Library with Type Families"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "mtl-unleashed" = callPackage ( - { - mkDerivation, - base, - contravariant, - hspec, - hspec-core, - lens, - mtl, - profunctors, - tagged, - transformers, - transformers-compat, - }: - mkDerivation { - pname = "mtl-unleashed"; - version = "0.6.1"; - sha256 = "0i0az92hachh6q4pmqwn6gyn4fws5vlv5ljm3n2mprqdjj9h239k"; - libraryHaskellDepends = [ - base - contravariant - lens - mtl - profunctors - tagged - transformers - transformers-compat - ]; - testHaskellDepends = [ - base - contravariant - hspec - hspec-core - lens - mtl - profunctors - ]; - description = "MTL classes without the functional dependency"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "mtl-uplift" = callPackage ( { mkDerivation, @@ -462860,75 +266690,6 @@ self: { } ) { }; - "mtlx" = callPackage ( - { - mkDerivation, - base, - mtl, - QuickCheck, - }: - mkDerivation { - pname = "mtlx"; - version = "0.1.6"; - sha256 = "0s0cniqn1fb7rq14w3wjh7mkzkxpndj1h1wrgssxds6cs3vkk4dn"; - libraryHaskellDepends = [ - base - mtl - QuickCheck - ]; - description = "Monad transformer library with type indexes, providing 'free' copies"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "mtp" = callPackage ( - { - mkDerivation, - base, - filepath, - mtp, - unix, - }: - mkDerivation { - pname = "mtp"; - version = "0.1.1.1"; - sha256 = "164q7p81c5an4w3pqpfk94rgn0banfs2yp7fhbbckdyb2qymsbww"; - libraryHaskellDepends = [ - base - filepath - unix - ]; - librarySystemDepends = [ mtp ]; - description = "Bindings to libmtp"; - license = "LGPL"; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { mtp = null; }; - - "mtree" = callPackage ( - { - mkDerivation, - base, - bifunctors, - }: - mkDerivation { - pname = "mtree"; - version = "0.1"; - sha256 = "1l4kjrmr5v8pkhf48w0ym6dlrsvaf21p3x5sykq1rxwp821cqglv"; - libraryHaskellDepends = [ - base - bifunctors - ]; - description = "Tree with Meta and Content parameters"; - license = lib.licenses.publicDomain; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "mtsl" = callPackage ( { mkDerivation, @@ -463162,7 +266923,6 @@ self: { ]; description = "gRPC clients from Mu definitions"; license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; } ) { }; @@ -463200,7 +266960,6 @@ self: { ]; description = "gRPC for Mu, common modules for client and server"; license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; } ) { }; @@ -463277,45 +267036,10 @@ self: { ]; description = "gRPC servers for Mu definitions"; license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; mainProgram = "grpc-example-server"; } ) { }; - "mu-kafka" = callPackage ( - { - mkDerivation, - avro, - base, - bytestring, - conduit, - hw-kafka-client, - hw-kafka-conduit, - mu-avro, - mu-schema, - resourcet, - }: - mkDerivation { - pname = "mu-kafka"; - version = "0.3.0.0"; - sha256 = "0flz0567rgky7ckl0nzinfd93bb7x0w1dz031y7hk3wcpp98y5i3"; - libraryHaskellDepends = [ - avro - base - bytestring - conduit - hw-kafka-client - hw-kafka-conduit - mu-avro - mu-schema - resourcet - ]; - description = "Utilities for interoperation between Mu and Kafka"; - license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "mu-lens" = callPackage ( { mkDerivation, @@ -463491,7 +267215,6 @@ self: { ]; description = "Protocol Buffers serialization and gRPC schema import for Mu microservices"; license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; mainProgram = "test-protobuf"; } ) { }; @@ -463656,7 +267379,6 @@ self: { ]; description = "Tracing support for Mu"; license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; } ) { }; @@ -463672,114 +267394,6 @@ self: { } ) { }; - "mud" = callPackage ( - { - mkDerivation, - base, - directory, - filepath, - free, - hspec, - mtl, - optparse-applicative, - parsec, - process, - QuickCheck, - time, - unix, - }: - mkDerivation { - pname = "mud"; - version = "0.1.0.0"; - sha256 = "0irz08chiylx8r5bwav1p3qs7524yaapnyfnkyyzbb42chid2hs0"; - revision = "1"; - editedCabalFile = "0g90hlxpryyhy1a24swhn64wz6ln2z2vrpdxrh9v9nbwq1pxaqkd"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - directory - filepath - free - mtl - optparse-applicative - parsec - process - time - unix - ]; - executableHaskellDepends = [ - base - mtl - ]; - testHaskellDepends = [ - base - directory - free - hspec - mtl - QuickCheck - time - unix - ]; - description = "Multi-version deployer for web applications"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "mud"; - broken = true; - } - ) { }; - - "mudbath" = callPackage ( - { - mkDerivation, - aeson, - base, - bytestring, - cryptohash, - directory, - github-types, - http-conduit, - http-types, - process, - random, - snap-core, - snap-server, - stm, - text, - transformers, - }: - mkDerivation { - pname = "mudbath"; - version = "0.0.3"; - sha256 = "1bfsgsl09aajxa8ajps63zj348ccr8pswppj0dar5k8mr6nr6n3q"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - aeson - base - bytestring - cryptohash - directory - github-types - http-conduit - http-types - process - random - snap-core - snap-server - stm - text - transformers - ]; - description = "Continuous deployment server for use with GitHub"; - license = "unknown"; - hydraPlatforms = lib.platforms.none; - mainProgram = "mudbath"; - broken = true; - } - ) { }; - "muesli" = callPackage ( { mkDerivation, @@ -463893,164 +267507,6 @@ self: { } ) { }; - "mulang" = callPackage ( - { - mkDerivation, - aeson, - alex, - base, - bytestring, - containers, - happy, - hashable, - haskell-src, - hspec, - inflections, - language-java, - language-javascript, - language-python, - monad-loops, - mtl, - neat-interpolation, - parsec, - ParsecTools, - process, - scientific, - split, - text, - unordered-containers, - vector, - }: - mkDerivation { - pname = "mulang"; - version = "4.4.0"; - sha256 = "14fyiphg02f3q0li19fkya5l52xj60a1mpjryaxwx9cg47qi95hs"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson - base - bytestring - containers - hashable - haskell-src - inflections - language-java - language-javascript - language-python - monad-loops - mtl - parsec - ParsecTools - process - scientific - split - text - unordered-containers - vector - ]; - libraryToolDepends = [ - alex - happy - ]; - executableHaskellDepends = [ - aeson - base - bytestring - neat-interpolation - process - text - ]; - executableToolDepends = [ - alex - happy - ]; - testHaskellDepends = [ - aeson - base - bytestring - containers - hspec - neat-interpolation - text - ]; - testToolDepends = [ - alex - happy - ]; - description = "An intermediate language designed to perform advanced code analysis"; - license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - mainProgram = "mulang"; - broken = true; - } - ) { }; - - "multext-east-msd" = callPackage ( - { mkDerivation, base }: - mkDerivation { - pname = "multext-east-msd"; - version = "0.1.0.4"; - sha256 = "1if1ip22y7w59lkyshn4ic4p46zrfs4kcdzzjai9l8xbscavgdl6"; - libraryHaskellDepends = [ base ]; - description = "MULTEXT-East morphosyntactic descriptors"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "multi-cabal" = callPackage ( - { - mkDerivation, - AAI, - aeson, - base, - bytestring, - directory, - filepath, - HUnit, - mtl, - process, - strict, - test-framework, - test-framework-hunit, - }: - mkDerivation { - pname = "multi-cabal"; - version = "0.1.0.0"; - sha256 = "0qzphh4pmrdqanv9sjy0ipf3z775xvrvdyagd0291vv1mqkbbz3g"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson - base - filepath - mtl - ]; - executableHaskellDepends = [ - AAI - aeson - base - bytestring - directory - filepath - process - strict - ]; - testHaskellDepends = [ - base - HUnit - test-framework - test-framework-hunit - ]; - description = "A tool supporting multi cabal project builds"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - mainProgram = "multi-cabal"; - } - ) { }; - "multi-containers" = callPackage ( { mkDerivation, @@ -464153,49 +267609,6 @@ self: { } ) { }; - "multiaddr" = callPackage ( - { - mkDerivation, - attoparsec, - base, - base58-bytestring, - bytestring, - cereal, - errors, - hashable, - tasty, - tasty-hunit, - tasty-quickcheck, - text, - }: - mkDerivation { - pname = "multiaddr"; - version = "0.3.0"; - sha256 = "0k6a5k3jzwc2n6hab9y98dw1v1gm5saq2d7hf71h7z7i3hdixiha"; - libraryHaskellDepends = [ - attoparsec - base - base58-bytestring - bytestring - cereal - errors - hashable - text - ]; - testHaskellDepends = [ - base - tasty - tasty-hunit - tasty-quickcheck - text - ]; - description = "A network address format"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "multiarg" = callPackage ( { mkDerivation, @@ -464415,121 +267828,6 @@ self: { } ) { }; - "multifocal" = callPackage ( - { - mkDerivation, - array, - base, - containers, - haskell-src-exts, - HaXml, - hxt, - hxt-xpath, - mtl, - parsec, - pointless-haskell, - pointless-lenses, - pointless-rewrite, - pretty, - process, - syb, - }: - mkDerivation { - pname = "multifocal"; - version = "0.0.1"; - sha256 = "0w47ffx8f8hw2a35kxjwi16l9bfgc0k2ac7r844123anmgv2wcfm"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - array - base - containers - haskell-src-exts - HaXml - hxt - hxt-xpath - mtl - parsec - pointless-haskell - pointless-lenses - pointless-rewrite - pretty - process - syb - ]; - executableHaskellDepends = [ - array - base - containers - haskell-src-exts - HaXml - hxt - hxt-xpath - mtl - parsec - pointless-haskell - pointless-lenses - pointless-rewrite - pretty - process - syb - ]; - description = "Bidirectional Two-level Transformation of XML Schemas"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "multifocal"; - } - ) { }; - - "multihash" = callPackage ( - { - mkDerivation, - attoparsec, - base, - base58-bytestring, - base64-bytestring, - byteable, - bytestring, - cryptohash, - hex, - io-streams, - optparse-applicative, - }: - mkDerivation { - pname = "multihash"; - version = "0.1.2"; - sha256 = "0f3mqiabgm8irrrv1jy0dmkvw1zc1f5h0lf1vsa3gn00r48haayx"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - attoparsec - base - base58-bytestring - base64-bytestring - bytestring - cryptohash - hex - io-streams - ]; - executableHaskellDepends = [ - base - base58-bytestring - base64-bytestring - byteable - bytestring - cryptohash - hex - io-streams - optparse-applicative - ]; - description = "Multihash library and CLI executable"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "multihash"; - broken = true; - } - ) { }; - "multihash-cryptonite" = callPackage ( { mkDerivation, @@ -464576,43 +267874,6 @@ self: { } ) { }; - "multihash-serialise" = callPackage ( - { - mkDerivation, - base, - bytestring, - cryptonite, - hedgehog, - memory, - multibase, - multihash-cryptonite, - serialise, - }: - mkDerivation { - pname = "multihash-serialise"; - version = "0.1.0.0"; - sha256 = "1bvh0fm26nnbfykimp3j2934lxwh7kgk6jkk9v8yjpn0k9rxnkrb"; - libraryHaskellDepends = [ - base - bytestring - cryptonite - memory - multibase - multihash-cryptonite - serialise - ]; - testHaskellDepends = [ - base - cryptonite - hedgehog - serialise - ]; - description = "CBOR encoding of multihashes"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "multihashmap" = callPackage ( { mkDerivation, @@ -464634,111 +267895,6 @@ self: { } ) { }; - "multilinear" = callPackage ( - { - mkDerivation, - base, - containers, - criterion, - deepseq, - generic-random, - parallel, - QuickCheck, - quickcheck-instances, - vector, - weigh, - }: - mkDerivation { - pname = "multilinear"; - version = "0.5.0.0"; - sha256 = "03j34gcacd5va2ldd1hmchnfrymsh0l60kp2m4q39gfgzpicm62g"; - libraryHaskellDepends = [ - base - containers - deepseq - parallel - vector - ]; - testHaskellDepends = [ - base - containers - deepseq - generic-random - QuickCheck - quickcheck-instances - ]; - benchmarkHaskellDepends = [ - base - criterion - deepseq - weigh - ]; - description = "Comprehensive and efficient (multi)linear algebra implementation"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "multilinear-io" = callPackage ( - { - mkDerivation, - aeson, - base, - bytestring, - cassava, - cereal, - cereal-vector, - conduit, - criterion, - deepseq, - directory, - either, - multilinear, - transformers, - vector, - zlib, - }: - mkDerivation { - pname = "multilinear-io"; - version = "0.5.0.0"; - sha256 = "1lvizs4lbjy8ki9v5ikmc23fmxkk9w5d3nh4v0iljwyz5cgds05c"; - libraryHaskellDepends = [ - aeson - base - bytestring - cassava - cereal - cereal-vector - conduit - either - multilinear - transformers - vector - zlib - ]; - testHaskellDepends = [ - base - directory - either - multilinear - transformers - ]; - benchmarkHaskellDepends = [ - base - criterion - deepseq - directory - either - multilinear - transformers - ]; - description = "Conduit-based input/output capability for multilinear package"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "multimap" = callPackage ( { mkDerivation, @@ -464816,278 +267972,6 @@ self: { } ) { }; - "multipass" = callPackage ( - { - mkDerivation, - base, - binary, - containers, - ghc-prim, - hashable, - keys, - math-functions, - newtype, - unordered-containers, - }: - mkDerivation { - pname = "multipass"; - version = "0.1.0.2"; - sha256 = "0zs5sw9m5r8g9p29knrihqsvihwihr1ca28vb0283k5jik18aifm"; - libraryHaskellDepends = [ - base - binary - containers - ghc-prim - hashable - keys - math-functions - newtype - unordered-containers - ]; - description = "Folding data with multiple named passes"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "multipath" = callPackage ( - { - mkDerivation, - base, - parsec, - utf8-string, - }: - mkDerivation { - pname = "multipath"; - version = "0.1.0.0"; - sha256 = "0m4wmh5iib5g1qxzj23q330gznib7q80r405df10k9685aqafgn3"; - libraryHaskellDepends = [ - base - parsec - utf8-string - ]; - description = "Parser and builder for unix-path-like objects"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "multiplate" = callPackage ( - { - mkDerivation, - base, - transformers, - }: - mkDerivation { - pname = "multiplate"; - version = "0.0.3"; - sha256 = "1gsfmw7dzsxycixqqrh5wr1g3izn7rm2a4a20nh8pp6fgn21c01c"; - revision = "1"; - editedCabalFile = "0cka6nwvbiddlv2j4f7jqq4cxz5mfw7vga5p020h0m9ws98gqbsx"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base - transformers - ]; - description = "Lightweight generic library for mutually recursive data types"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "multiplate-simplified" = callPackage ( - { - mkDerivation, - base, - multiplate, - transformers, - }: - mkDerivation { - pname = "multiplate-simplified"; - version = "0.0.0.2"; - sha256 = "0xzjl3nsm6wgbqd6rjn0bf9jhiw6l6ql5gj5m8xqccv8363i5v2r"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base - multiplate - transformers - ]; - description = "Shorter, more generic functions for Multiplate"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "multiplicity" = callPackage ( - { - mkDerivation, - base, - containers, - fez-conf, - mtl, - process, - }: - mkDerivation { - pname = "multiplicity"; - version = "0.1.0"; - sha256 = "1y0v06qnpna8sa0aw24i4s29yc49m3a7d8yrl6xiv1jrgycjcafc"; - isLibrary = false; - isExecutable = true; - enableSeparateDataOutput = true; - executableHaskellDepends = [ - base - containers - fez-conf - mtl - process - ]; - description = "Wrapper program for duplicity, adding config files"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "multiplicity"; - } - ) { }; - - "multipool" = callPackage ( - { - mkDerivation, - base, - bytestring, - hashable, - monad-logger, - mtl, - persistent, - resource-pool, - text, - unordered-containers, - }: - mkDerivation { - pname = "multipool"; - version = "0.2.0.0"; - sha256 = "18yqwwys9rf65zshc7wzxzs5x3viq6a9cvdx09k40sxywj5253xx"; - libraryHaskellDepends = [ - base - bytestring - hashable - monad-logger - mtl - persistent - resource-pool - text - unordered-containers - ]; - testHaskellDepends = [ - base - bytestring - hashable - monad-logger - mtl - persistent - resource-pool - text - unordered-containers - ]; - description = "Generalized system for reading and writing to distributed systems that have primary/replica topologies"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "multipool-persistent" = callPackage ( - { - mkDerivation, - base, - mtl, - multipool, - persistent, - resource-pool, - unliftio-core, - unordered-containers, - }: - mkDerivation { - pname = "multipool-persistent"; - version = "0.2.0.0"; - sha256 = "0n5q2yhyf2w6v1abxlaqai8i62r1vxjcka1lnq50ci9b2l9q7sdm"; - libraryHaskellDepends = [ - base - mtl - multipool - persistent - resource-pool - unliftio-core - unordered-containers - ]; - testHaskellDepends = [ - base - mtl - multipool - persistent - resource-pool - unliftio-core - unordered-containers - ]; - description = "Read and write from appropriate persistent sql instances in replicated environments"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "multipool-persistent-postgresql" = callPackage ( - { - mkDerivation, - base, - monad-logger, - mtl, - multipool, - multipool-persistent, - persistent, - persistent-postgresql, - persistent-qq, - postgresql-common-persistent, - unliftio-core, - unordered-containers, - }: - mkDerivation { - pname = "multipool-persistent-postgresql"; - version = "0.2.0.0"; - sha256 = "1wc4wl471lnz0v04jzl3f8kdx59bw0ylb1hp544afxvpmp44q1gr"; - libraryHaskellDepends = [ - base - monad-logger - mtl - multipool - multipool-persistent - persistent - persistent-postgresql - persistent-qq - postgresql-common-persistent - unliftio-core - unordered-containers - ]; - testHaskellDepends = [ - base - monad-logger - mtl - multipool - multipool-persistent - persistent - persistent-postgresql - persistent-qq - postgresql-common-persistent - unliftio-core - unordered-containers - ]; - description = "Read and write appropriately from both master and replicated postgresql instances"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "multipool-postgresql-simple" = callPackage ( { mkDerivation, @@ -465126,6 +268010,7 @@ self: { ]; license = lib.licenses.bsd3; hydraPlatforms = lib.platforms.none; + broken = true; } ) { }; @@ -465141,80 +268026,6 @@ self: { } ) { }; - "multirec" = callPackage ( - { - mkDerivation, - base, - template-haskell, - }: - mkDerivation { - pname = "multirec"; - version = "0.7.9"; - sha256 = "0a6kc3kkg7hz5wigp28fhp01pryb8gaw03fjc35mm4i2jfcjrplz"; - libraryHaskellDepends = [ - base - template-haskell - ]; - testHaskellDepends = [ base ]; - description = "Generic programming for families of recursive datatypes"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "multirec-alt-deriver" = callPackage ( - { - mkDerivation, - base, - containers, - mtl, - multirec, - syb, - template-haskell, - th-expand-syns, - }: - mkDerivation { - pname = "multirec-alt-deriver"; - version = "0.1.3"; - sha256 = "0hrzrzmgj1y784dvwiz20y842m4kk9rd9vhbwz8cazafs8gindfc"; - libraryHaskellDepends = [ - base - containers - mtl - multirec - syb - template-haskell - th-expand-syns - ]; - description = "Alternative multirec instances deriver"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "multirec-binary" = callPackage ( - { - mkDerivation, - base, - binary, - multirec, - }: - mkDerivation { - pname = "multirec-binary"; - version = "0.0.1"; - sha256 = "1cj1rfjqxwc06vr5w12fqbcpjb0fjsphf8vp40sp2naizpvvnmzs"; - libraryHaskellDepends = [ - base - binary - multirec - ]; - description = "Generic Data.Binary instances using MultiRec."; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "multiset" = callPackage ( { mkDerivation, @@ -465274,29 +268085,6 @@ self: { } ) { }; - "multisetrewrite" = callPackage ( - { - mkDerivation, - base, - haskell98, - stm, - }: - mkDerivation { - pname = "multisetrewrite"; - version = "0.6"; - sha256 = "1chgdikgp70rkzw2k3wy7i276j5vb435vq26yl37lkh0im1bg5ay"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base - haskell98 - stm - ]; - description = "Multi-set rewrite rules with guards and a parallel execution scheme"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "multistate" = callPackage ( { mkDerivation, @@ -465334,86 +268122,6 @@ self: { } ) { }; - "multivariant" = callPackage ( - { - mkDerivation, - base, - containers, - free, - HUnit, - invertible, - MonadRandom, - profunctors, - QuickCheck, - semigroupoids, - tasty, - tasty-hunit, - tasty-quickcheck, - text, - transformers, - }: - mkDerivation { - pname = "multivariant"; - version = "0.1.0.1"; - sha256 = "0234w1hbllw0as1hcl5avflz8g1r0blswn2c5a79vk4fm2bqn9sp"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - containers - free - HUnit - invertible - MonadRandom - profunctors - QuickCheck - semigroupoids - tasty - tasty-hunit - tasty-quickcheck - text - transformers - ]; - executableHaskellDepends = [ - base - containers - free - HUnit - invertible - MonadRandom - profunctors - QuickCheck - semigroupoids - tasty - tasty-hunit - tasty-quickcheck - text - transformers - ]; - testHaskellDepends = [ - base - containers - free - HUnit - invertible - MonadRandom - profunctors - QuickCheck - semigroupoids - tasty - tasty-hunit - tasty-quickcheck - text - transformers - ]; - description = "Multivariant assignments generation language"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "example"; - broken = true; - } - ) { }; - "multivector" = callPackage ( { mkDerivation, @@ -465540,768 +268248,186 @@ self: { markdown, MissingH, process, - text, - }: - mkDerivation { - pname = "muon"; - version = "0.1.0.8"; - sha256 = "0s11xvhawwrcr31f0khp0q6fimwjps12n992z35ldnh0kk3dmk9z"; - isLibrary = false; - isExecutable = true; - enableSeparateDataOutput = true; - executableHaskellDepends = [ - base - blaze-html - ConfigFile - directory - Glob - happstack-server - HStringTemplate - markdown - MissingH - process - text - ]; - description = "Static blog generator"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "muon"; - broken = true; - } - ) { }; - - "murder" = callPackage ( - { - mkDerivation, - AspectAG, - base, - containers, - HList, - ListLike, - template-haskell, - TTTAS, - uu-parsinglib, - uulib, - }: - mkDerivation { - pname = "murder"; - version = "1.3.4"; - sha256 = "0pr77j3br8knk26iknsa6hy076bx2bb6jgii3v6aqhv40ykcrv15"; - libraryHaskellDepends = [ - AspectAG - base - containers - HList - ListLike - template-haskell - TTTAS - uu-parsinglib - uulib - ]; - description = "MUtually Recursive Definitions Explicitly Represented"; - license = "LGPL"; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "murmur" = callPackage ( - { - mkDerivation, - authenticate-oauth, - base, - bytestring, - conduit, - conduit-extra, - data-default, - directory, - http-conduit, - lens, - optparse-declarative, - resourcet, - text, - transformers, - twitter-conduit, - twitter-types-lens, - }: - mkDerivation { - pname = "murmur"; - version = "0.0.0.2"; - sha256 = "0cl6vqxkwvr9w5zgjfh00yvyadcsq8zs13001jhpkjkaya3xylrm"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - authenticate-oauth - base - bytestring - conduit - conduit-extra - data-default - http-conduit - lens - resourcet - text - transformers - twitter-conduit - twitter-types-lens - ]; - executableHaskellDepends = [ - base - directory - optparse-declarative - transformers - twitter-conduit - ]; - testHaskellDepends = [ base ]; - description = "Simple CUI Twitter Client"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "mur"; - broken = true; - } - ) { }; - - "murmur-hash" = callPackage ( - { - mkDerivation, - base, - bytestring, - }: - mkDerivation { - pname = "murmur-hash"; - version = "0.1.0.11"; - sha256 = "1zkd575b6rgs0js4vsr56hy7xhjmvbwxibiwcm6q2wgz5c9igaki"; - libraryHaskellDepends = [ - base - bytestring - ]; - description = "MurmurHash2 implementation for Haskell"; - license = lib.licenses.bsd3; - } - ) { }; - - "murmur3" = callPackage ( - { - mkDerivation, - base, - base16, - bytestring, - cereal, - HUnit, - QuickCheck, - test-framework, - test-framework-hunit, - test-framework-quickcheck2, - }: - mkDerivation { - pname = "murmur3"; - version = "1.0.6"; - sha256 = "1lw3h5mzi7g2mipc4czbsgn08cnvkv3p30i5x6klb7vzzy40wkhb"; - libraryHaskellDepends = [ - base - bytestring - cereal - ]; - testHaskellDepends = [ - base - base16 - bytestring - cereal - HUnit - QuickCheck - test-framework - test-framework-hunit - test-framework-quickcheck2 - ]; - description = "Pure Haskell implementation of the MurmurHash3 x86 algorithm"; - license = lib.licenses.mit; - } - ) { }; - - "murmurhash3" = callPackage ( - { mkDerivation, haskell2010 }: - mkDerivation { - pname = "murmurhash3"; - version = "1.0"; - sha256 = "1hz6rf1qrzgixx19bn9hnp07jfb61wnrjq5bgqnd3px569afwdb2"; - libraryHaskellDepends = [ haskell2010 ]; - description = "32-bit non-cryptographic hashing"; - license = lib.licenses.publicDomain; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "mushu" = callPackage ( - { - mkDerivation, - base, - brick, - bytestring, - classy-prelude, - connection, - containers, - data-default, - directory, - filepath, - fuzzy, - hscurses, - htoml, - libmpd, - list-t, - microlens, - microlens-platform, - microlens-th, - mtl, - network, - pretty, - process, - safe-exceptions, - template-haskell, - text, - text-zipper, - time, - transformers, - unordered-containers, - vector, - vty, - }: - mkDerivation { - pname = "mushu"; - version = "0.1.1"; - sha256 = "1wimid5jqsdbgylxmqai5laga14na2ig0pr9y4fi1lw17yd782lv"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - brick - bytestring - classy-prelude - connection - containers - data-default - directory - filepath - fuzzy - hscurses - htoml - libmpd - list-t - microlens - microlens-platform - microlens-th - mtl - network - pretty - process - safe-exceptions - template-haskell - text - text-zipper - time - transformers - unordered-containers - vector - vty - ]; - testHaskellDepends = [ - base - classy-prelude - ]; - description = "Minimalist MPD client"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "mushu"; - } - ) { }; - - "music-articulation" = callPackage ( - { - mkDerivation, - average, - base, - semigroups, - }: - mkDerivation { - pname = "music-articulation"; - version = "1.9.0"; - sha256 = "0cxbhk25kn3hpkmb6h0brcf03yyi6kaz3i3l3lv2rzgfxv14a2pg"; - libraryHaskellDepends = [ - average - base - semigroups - ]; - description = "Abstract representation of musical articulation"; - license = lib.licenses.bsd3; - } - ) { }; - - "music-diatonic" = callPackage ( - { mkDerivation, base }: - mkDerivation { - pname = "music-diatonic"; - version = "0.1.2"; - sha256 = "0r4ha5hv0nvfp6r142fklfnqgf0vp77fxmj7z39690l7h1ckq634"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ base ]; - description = "Implementation of basic western musical theory objects"; - license = lib.licenses.bsd3; - } - ) { }; - - "music-dynamics" = callPackage ( - { - mkDerivation, - average, - base, - music-dynamics-literal, - semigroups, - }: - mkDerivation { - pname = "music-dynamics"; - version = "1.9.0"; - sha256 = "12a11qrdy4p0bczpg2zp8yqw4wdmgfhq5z9ffajlsib2xcs6y8s4"; - libraryHaskellDepends = [ - average - base - music-dynamics-literal - semigroups - ]; - description = "Abstract representation of musical dynamics"; - license = lib.licenses.bsd3; - } - ) { }; - - "music-dynamics-literal" = callPackage ( - { - mkDerivation, - base, - semigroups, - }: - mkDerivation { - pname = "music-dynamics-literal"; - version = "1.9.0"; - sha256 = "19bql45aqjfkhvpkfbvfcsc8p1mzg93n966r1yv5rwps6s2x86d5"; - libraryHaskellDepends = [ - base - semigroups - ]; - description = "Overloaded dynamics literals"; - license = lib.licenses.bsd3; - } - ) { }; - - "music-graphics" = callPackage ( - { - mkDerivation, - aeson, - base, - blaze-svg, - bytestring, - lens, - music-pitch, - music-preludes, - music-score, - process, + text, }: mkDerivation { - pname = "music-graphics"; - version = "1.8.1"; - sha256 = "1764qmb8pafddsclr5gl5ibqpi9wvwa96idn6iqx8d3jbpqc4fam"; - libraryHaskellDepends = [ - aeson + pname = "muon"; + version = "0.1.0.8"; + sha256 = "0s11xvhawwrcr31f0khp0q6fimwjps12n992z35ldnh0kk3dmk9z"; + isLibrary = false; + isExecutable = true; + enableSeparateDataOutput = true; + executableHaskellDepends = [ base - blaze-svg - bytestring - lens - music-pitch - music-preludes - music-score + blaze-html + ConfigFile + directory + Glob + happstack-server + HStringTemplate + markdown + MissingH process + text ]; - description = "Diagrams-based visualization of musical data structures"; + description = "Static blog generator"; license = lib.licenses.bsd3; hydraPlatforms = lib.platforms.none; + mainProgram = "muon"; } ) { }; - "music-parts" = callPackage ( + "murmur-hash" = callPackage ( { mkDerivation, - adjunctions, - aeson, base, bytestring, - cassava, - containers, - data-default, - lens, - monadplus, - music-dynamics, - music-pitch, - roman-numerals, - semigroups, - vector-space, - vector-space-points, }: mkDerivation { - pname = "music-parts"; - version = "1.9.0"; - sha256 = "1kiz968kcwcyczxg5gl40c7bwgkn86l7qi0ak8p68bm4rmsw9id4"; - revision = "1"; - editedCabalFile = "03w6wqxrz00gr6wbk6id3bf0yyqvcy1jpqwjl26bxc0vn3r2jizz"; - enableSeparateDataOutput = true; + pname = "murmur-hash"; + version = "0.1.0.11"; + sha256 = "1zkd575b6rgs0js4vsr56hy7xhjmvbwxibiwcm6q2wgz5c9igaki"; libraryHaskellDepends = [ - adjunctions - aeson base bytestring - cassava - containers - data-default - lens - monadplus - music-dynamics - music-pitch - roman-numerals - semigroups - vector-space - vector-space-points ]; - description = "Musical instruments, parts and playing techniques"; + description = "MurmurHash2 implementation for Haskell"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; } ) { }; - "music-pitch" = callPackage ( + "murmur3" = callPackage ( { mkDerivation, - aeson, base, - containers, - data-interval, - lens, - music-pitch-literal, - nats, - positive, - semigroups, - type-unary, - vector-space, - vector-space-points, + base16, + bytestring, + cereal, + HUnit, + QuickCheck, + test-framework, + test-framework-hunit, + test-framework-quickcheck2, }: mkDerivation { - pname = "music-pitch"; - version = "1.9.0"; - sha256 = "1w5b62il0n8147a3sdvx9ndykfp56nf0kabwpw8khd29cmpff0bz"; + pname = "murmur3"; + version = "1.0.6"; + sha256 = "1lw3h5mzi7g2mipc4czbsgn08cnvkv3p30i5x6klb7vzzy40wkhb"; libraryHaskellDepends = [ - aeson base - containers - data-interval - lens - music-pitch-literal - nats - positive - semigroups - type-unary - vector-space - vector-space-points + bytestring + cereal ]; - description = "Musical pitch representation"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; + testHaskellDepends = [ + base + base16 + bytestring + cereal + HUnit + QuickCheck + test-framework + test-framework-hunit + test-framework-quickcheck2 + ]; + description = "Pure Haskell implementation of the MurmurHash3 x86 algorithm"; + license = lib.licenses.mit; } ) { }; - "music-pitch-literal" = callPackage ( + "music-articulation" = callPackage ( { mkDerivation, + average, base, semigroups, }: mkDerivation { - pname = "music-pitch-literal"; + pname = "music-articulation"; version = "1.9.0"; - sha256 = "0vsvw7c29qvi69z9gy2zzq9bpajmjd5vs1kll7jw0qbsh28jsqql"; - revision = "1"; - editedCabalFile = "0v86clbcjkgg7psx8jbxq4za66v8ln1vkr7ywrm0vz6vbgkg356f"; + sha256 = "0cxbhk25kn3hpkmb6h0brcf03yyi6kaz3i3l3lv2rzgfxv14a2pg"; libraryHaskellDepends = [ + average base semigroups ]; - description = "Overloaded pitch literals"; + description = "Abstract representation of musical articulation"; license = lib.licenses.bsd3; } ) { }; - "music-preludes" = callPackage ( - { - mkDerivation, - async, - average, - base, - containers, - filepath, - lens, - lilypond, - monadplus, - music-articulation, - music-dynamics, - music-dynamics-literal, - music-parts, - music-pitch, - music-pitch-literal, - music-score, - musicxml2, - optparse-applicative, - process, - semigroups, - split, - tasty, - tasty-golden, - temporary, - unix, - vector-space, - vector-space-points, - }: + "music-diatonic" = callPackage ( + { mkDerivation, base }: mkDerivation { - pname = "music-preludes"; - version = "1.9.0"; - sha256 = "1fqw3rz0zrwa5a0l639b0bd6qxiq4zmqcrf0vkrgh03n65r2901q"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - async - average - base - containers - filepath - lens - lilypond - monadplus - music-articulation - music-dynamics - music-dynamics-literal - music-parts - music-pitch - music-pitch-literal - music-score - musicxml2 - optparse-applicative - process - semigroups - split - temporary - unix - vector-space - vector-space-points - ]; - executableHaskellDepends = [ base ]; - testHaskellDepends = [ - base - process - tasty - tasty-golden - ]; - description = "Some useful preludes for the Music Suite"; + pname = "music-diatonic"; + version = "0.1.2"; + sha256 = "0r4ha5hv0nvfp6r142fklfnqgf0vp77fxmj7z39690l7h1ckq634"; + enableSeparateDataOutput = true; + libraryHaskellDepends = [ base ]; + description = "Implementation of basic western musical theory objects"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; } ) { }; - "music-score" = callPackage ( + "music-dynamics" = callPackage ( { mkDerivation, - adjunctions, - aeson, average, base, - base-orphans, - bifunctors, - colour, - comonad, - containers, - contravariant, - distributive, - HCodecs, - lens, - lilypond, - monadplus, - mtl, music-dynamics-literal, - music-pitch-literal, - musicxml2, - nats, - NumInstances, - parsec, - prettify, - process, semigroups, - transformers, - transformers-compat, - vector-space, - vector-space-points, }: mkDerivation { - pname = "music-score"; + pname = "music-dynamics"; version = "1.9.0"; - sha256 = "10cysii04njrjd0qx14fwsjn91ycvfxcs3kvwnb8j24v3svcha10"; + sha256 = "12a11qrdy4p0bczpg2zp8yqw4wdmgfhq5z9ffajlsib2xcs6y8s4"; libraryHaskellDepends = [ - adjunctions - aeson average base - base-orphans - bifunctors - colour - comonad - containers - contravariant - distributive - HCodecs - lens - lilypond - monadplus - mtl music-dynamics-literal - music-pitch-literal - musicxml2 - nats - NumInstances - parsec - prettify - process semigroups - transformers - transformers-compat - vector-space - vector-space-points ]; - description = "Musical score and part representation"; + description = "Abstract representation of musical dynamics"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; } ) { }; - "music-sibelius" = callPackage ( + "music-dynamics-literal" = callPackage ( { mkDerivation, - aeson, base, - bytestring, - lens, - monadplus, - music-articulation, - music-dynamics, - music-parts, - music-pitch, - music-pitch-literal, - music-preludes, - music-score, semigroups, - unordered-containers, }: mkDerivation { - pname = "music-sibelius"; + pname = "music-dynamics-literal"; version = "1.9.0"; - sha256 = "1yahz8z81ggcg303i2syzf6bsxq8dmzzzqs3fj89r5kq766275kz"; + sha256 = "19bql45aqjfkhvpkfbvfcsc8p1mzg93n966r1yv5rwps6s2x86d5"; libraryHaskellDepends = [ - aeson base - bytestring - lens - monadplus - music-articulation - music-dynamics - music-parts - music-pitch - music-pitch-literal - music-preludes - music-score semigroups - unordered-containers ]; - description = "Interaction with Sibelius"; + description = "Overloaded dynamics literals"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; } ) { }; - "music-suite" = callPackage ( + "music-pitch-literal" = callPackage ( { mkDerivation, - abcnotation, - lilypond, - music-articulation, - music-dynamics, - music-dynamics-literal, - music-parts, - music-pitch, - music-pitch-literal, - music-preludes, - music-score, - musicxml2, + base, + semigroups, }: mkDerivation { - pname = "music-suite"; + pname = "music-pitch-literal"; version = "1.9.0"; - sha256 = "1nss12cad2vjq2whz5kxsr1r63iwc4pnza0nnf2h2zai3gxzsnn6"; + sha256 = "0vsvw7c29qvi69z9gy2zzq9bpajmjd5vs1kll7jw0qbsh28jsqql"; + revision = "1"; + editedCabalFile = "0v86clbcjkgg7psx8jbxq4za66v8ln1vkr7ywrm0vz6vbgkg356f"; libraryHaskellDepends = [ - abcnotation - lilypond - music-articulation - music-dynamics - music-dynamics-literal - music-parts - music-pitch - music-pitch-literal - music-preludes - music-score - musicxml2 - ]; - doHaddock = false; - description = "A set of libraries for composition, analysis and manipulation of music"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "music-util" = callPackage ( - { - mkDerivation, - base, - Cabal, - containers, - directory, - fgl, - process, - shelly, - split, - text, - unix, - }: - mkDerivation { - pname = "music-util"; - version = "0.17"; - sha256 = "0pv6mwdrk2kz3lr8r3jkc368zch46w4rn5dmqbjqm0ykfw1n3bqf"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ base - Cabal - containers - directory - fgl - process - shelly - split - text - unix + semigroups ]; - description = "Utility for developing the Music Suite"; + description = "Overloaded pitch literals"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "music-util"; - broken = true; } ) { }; @@ -466372,102 +268498,6 @@ self: { } ) { inherit (pkgs) gtk3; }; - "musicbrainz-email" = callPackage ( - { - mkDerivation, - aeson, - amqp, - base, - blaze-builder, - bytestring, - configurator, - errors, - ghc-prim, - heist, - HTTP, - HUnit, - mime-mail, - mtl, - network, - network-metrics, - optparse-applicative, - postgresql-simple, - smallcheck, - stm, - test-framework, - test-framework-hunit, - test-framework-smallcheck, - text, - time, - transformers, - xmlhtml, - }: - mkDerivation { - pname = "musicbrainz-email"; - version = "1.0.0.0"; - sha256 = "10salrdl4vfdy3x26564i8kdv6lx8py697v5n8q9ywqsd05dcrv2"; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - aeson - amqp - base - ghc-prim - mime-mail - optparse-applicative - text - ]; - executableHaskellDepends = [ - aeson - amqp - base - blaze-builder - errors - heist - HTTP - mime-mail - mtl - network - network-metrics - optparse-applicative - postgresql-simple - text - time - transformers - xmlhtml - ]; - testHaskellDepends = [ - aeson - amqp - base - blaze-builder - bytestring - configurator - errors - ghc-prim - heist - HTTP - HUnit - mime-mail - mtl - postgresql-simple - smallcheck - stm - test-framework - test-framework-hunit - test-framework-smallcheck - text - time - transformers - xmlhtml - ]; - description = "Send an email to all MusicBrainz editors"; - license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "musicw" = callPackage ( { mkDerivation, @@ -466515,69 +268545,6 @@ self: { } ) { ghcjs-prim = null; }; - "musicxml" = callPackage ( - { - mkDerivation, - base, - containers, - directory, - HaXml, - old-time, - pretty, - }: - mkDerivation { - pname = "musicxml"; - version = "0.1.2"; - sha256 = "0sn8gzymf6xpdksd7v2xyb4y2iks2l09hyw0rch109lgrnsy5gp8"; - libraryHaskellDepends = [ - base - containers - directory - HaXml - old-time - pretty - ]; - description = "MusicXML format encoded as Haskell type and functions of reading and writting"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "musicxml2" = callPackage ( - { - mkDerivation, - base, - data-default, - music-dynamics-literal, - music-pitch-literal, - nats, - reverse-apply, - semigroups, - type-unary, - xml, - }: - mkDerivation { - pname = "musicxml2"; - version = "1.9.0"; - sha256 = "07axlifkqf0dcqnxfb62x829ygc2y7didsh60x081zw429853fy8"; - libraryHaskellDepends = [ - base - data-default - music-dynamics-literal - music-pitch-literal - nats - reverse-apply - semigroups - type-unary - xml - ]; - description = "A representation of the MusicXML format"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "mustache" = callPackage ( { mkDerivation, @@ -466661,152 +268628,6 @@ self: { } ) { }; - "mustache-haskell" = callPackage ( - { - mkDerivation, - aeson, - base, - bytestring, - directory, - optparse-applicative, - parsec, - pretty-show, - scientific, - text, - transformers, - unordered-containers, - vector, - }: - mkDerivation { - pname = "mustache-haskell"; - version = "0.1.0.5"; - sha256 = "0mkj5ngcblm949wkxiq2qck3zak93r5zipppwgis59yg01cp79v2"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson - base - bytestring - directory - parsec - pretty-show - scientific - text - transformers - unordered-containers - vector - ]; - executableHaskellDepends = [ - aeson - base - bytestring - directory - optparse-applicative - parsec - pretty-show - scientific - text - transformers - unordered-containers - vector - ]; - description = "Straight implementation of mustache templates"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - mainProgram = "mus"; - broken = true; - } - ) { }; - - "mustache2hs" = callPackage ( - { - mkDerivation, - base, - blaze-builder, - bytestring, - filepath, - haskell-src, - parsec, - text, - transformers, - utf8-string, - }: - mkDerivation { - pname = "mustache2hs"; - version = "0.3"; - sha256 = "1m15q6dy3hbbf5q302gw3y2znxf2mfz9pwbdyawg8bqiw81zahis"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - blaze-builder - bytestring - filepath - haskell-src - parsec - text - transformers - utf8-string - ]; - description = "Utility to generate Haskell code from Mustache templates"; - license = "unknown"; - hydraPlatforms = lib.platforms.none; - mainProgram = "mustache2hs"; - broken = true; - } - ) { }; - - "mutable" = callPackage ( - { - mkDerivation, - base, - criterion, - deepseq, - directory, - generic-lens, - generic-lens-core, - microlens, - microlens-th, - primitive, - template-haskell, - time, - transformers, - vector, - vinyl, - }: - mkDerivation { - pname = "mutable"; - version = "0.2.2.0"; - sha256 = "03ahbhnn52mc1wsja3x6cc6ykxx4vqfjb5w5lgi4qiqsc387j16q"; - libraryHaskellDepends = [ - base - generic-lens - generic-lens-core - primitive - template-haskell - transformers - vector - vinyl - ]; - benchmarkHaskellDepends = [ - base - criterion - deepseq - directory - microlens - microlens-th - time - transformers - vector - vinyl - ]; - description = "Automatic piecewise-mutable references for your types"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "mutable-containers" = callPackage ( { mkDerivation, @@ -466883,32 +268704,6 @@ self: { } ) { }; - "mutable-iter" = callPackage ( - { - mkDerivation, - base, - iteratee, - MonadCatchIO-transformers, - transformers, - vector, - }: - mkDerivation { - pname = "mutable-iter"; - version = "0.6.1"; - sha256 = "08fqfkzb6b0pzzffkfcwigcm0s4hgadh7jl4pg6smjcyfjz9572f"; - libraryHaskellDepends = [ - base - iteratee - MonadCatchIO-transformers - transformers - vector - ]; - description = "iteratees based upon mutable buffers"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "mutable-lens" = callPackage ( { mkDerivation, @@ -466954,41 +268749,6 @@ self: { } ) { }; - "mute-unmute" = callPackage ( - { - mkDerivation, - base, - directory, - filepath, - hslogger, - hslogger-template, - mtl, - network-dbus, - process, - }: - mkDerivation { - pname = "mute-unmute"; - version = "0.2.0.0"; - sha256 = "0nd1c4l2z7bflnghz7bbbahpfl2jj9mygpygxc7028axrrxj09af"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - directory - filepath - hslogger - hslogger-template - mtl - network-dbus - process - ]; - description = "Watches your screensaver and (un)mutes music when you (un)lock the screen"; - license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - mainProgram = "mute-unmute"; - } - ) { }; - "mvar-lock" = callPackage ( { mkDerivation, @@ -467070,54 +268830,6 @@ self: { } ) { }; - "mvclient" = callPackage ( - { - mkDerivation, - base, - base-unicode-symbols, - binary, - bytestring, - containers, - control-event, - Crypto, - data-binary-ieee754, - hexpat, - http-enumerator, - maccatcher, - mtl, - network, - parsec, - time, - uuid, - }: - mkDerivation { - pname = "mvclient"; - version = "0.4"; - sha256 = "12ckzfb6wwa3865isxnzw7xmwh9f43ali0ab5mal6brs33zz0z53"; - libraryHaskellDepends = [ - base - base-unicode-symbols - binary - bytestring - containers - control-event - Crypto - data-binary-ieee754 - hexpat - http-enumerator - maccatcher - mtl - network - parsec - time - uuid - ]; - description = "Client library for metaverse systems like Second Life"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "mwc-probability" = callPackage ( { mkDerivation, @@ -467265,34 +268977,6 @@ self: { } ) { }; - "mwc-random-monad" = callPackage ( - { - mkDerivation, - base, - monad-primitive, - mwc-random, - primitive, - transformers, - vector, - }: - mkDerivation { - pname = "mwc-random-monad"; - version = "0.7.3.1"; - sha256 = "0h4ljwwhqg4yy513lqk2ix0m9q2hmk276hgfrc6n3ja6wqbpkwyh"; - libraryHaskellDepends = [ - base - monad-primitive - mwc-random - primitive - transformers - vector - ]; - description = "Monadic interface for mwc-random"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "mx-state-codes" = callPackage ( { mkDerivation, @@ -467325,252 +269009,6 @@ self: { } ) { }; - "mxnet" = callPackage ( - { - mkDerivation, - base, - c2hs, - c2hs-extra, - mxnet, - pretty, - tasty, - tasty-hunit, - template-haskell, - unordered-containers, - vector, - }: - mkDerivation { - pname = "mxnet"; - version = "0.2.0.0"; - sha256 = "05zz149gzsvchllwwn659kqissj6ymdi7kdjx5d7mx7liabf04ij"; - revision = "1"; - editedCabalFile = "0z8kjn1808k5pdrgx0mncppzzv5hw01r7h8s54iv8kz57qfqhcpm"; - libraryHaskellDepends = [ - base - c2hs-extra - pretty - template-haskell - unordered-containers - vector - ]; - librarySystemDepends = [ mxnet ]; - libraryToolDepends = [ c2hs ]; - testHaskellDepends = [ - base - tasty - tasty-hunit - vector - ]; - description = "MXNet interface in Haskell"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { inherit (pkgs) mxnet; }; - - "mxnet-dataiter" = callPackage ( - { - mkDerivation, - base, - conduit, - conduit-combinators, - hspec, - mxnet, - mxnet-nn, - streaming, - template-haskell, - }: - mkDerivation { - pname = "mxnet-dataiter"; - version = "0.1.0.0"; - sha256 = "1cicxgasx0s840vvkc6n6v6rsrr8rk9jhpqh96kiy6dk0m4k02s9"; - libraryHaskellDepends = [ - base - conduit - conduit-combinators - mxnet - mxnet-nn - streaming - template-haskell - ]; - testHaskellDepends = [ - base - hspec - mxnet - streaming - ]; - description = "mxnet dataiters"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "mxnet-examples" = callPackage ( - { - mkDerivation, - base, - mxnet, - }: - mkDerivation { - pname = "mxnet-examples"; - version = "0.2.0.0"; - sha256 = "0mxwn6wcwiv0z618rffws2z59l5yh929lxwlhgyifzw3sm0h1kxw"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - mxnet - ]; - description = "Examples for MXNet in Haskell"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "mxnet-nn" = callPackage ( - { - mkDerivation, - attoparsec, - attoparsec-binary, - base, - bytestring, - exceptions, - ghc-prim, - lens, - mmorph, - mtl, - mxnet, - resourcet, - streaming, - streaming-bytestring, - streaming-utils, - transformers-base, - unordered-containers, - vector, - }: - mkDerivation { - pname = "mxnet-nn"; - version = "0.0.1.3"; - sha256 = "0693ca7rwai4s8i8vqbmmq3q50pd23svcnnnd1cxjbqxh6hgsbs1"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - lens - mtl - mxnet - resourcet - transformers-base - unordered-containers - vector - ]; - executableHaskellDepends = [ - attoparsec - attoparsec-binary - base - bytestring - exceptions - ghc-prim - mmorph - mtl - mxnet - resourcet - streaming - streaming-bytestring - streaming-utils - unordered-containers - vector - ]; - description = "Train a neural network with MXNet in Haskell"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "lenet"; - } - ) { }; - - "mxnet-nnvm" = callPackage ( - { - mkDerivation, - base, - c2hs, - c2hs-extra, - mxnet, - }: - mkDerivation { - pname = "mxnet-nnvm"; - version = "0.1.0.0"; - sha256 = "0qb53yqmwwfz4xhklih9b0cajqss6qa8f2x8xwxmb28pm540p7hy"; - libraryHaskellDepends = [ - base - c2hs-extra - ]; - librarySystemDepends = [ mxnet ]; - libraryToolDepends = [ c2hs ]; - description = "NNVM interface in Haskell"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { inherit (pkgs) mxnet; }; - - "my-package-testing" = callPackage ( - { - mkDerivation, - base, - Cabal, - cabal-doctest, - doctest, - hspec, - hspec-discover, - lens, - QuickCheck, - servant, - servant-auth, - servant-auth-docs, - servant-docs, - template-haskell, - text, - }: - mkDerivation { - pname = "my-package-testing"; - version = "1.0.6"; - sha256 = "188f5k556z8pxg67l16si99n4h4c408za8n123p3y0c95ixnvr4h"; - revision = "1"; - editedCabalFile = "03x6fh9c0d9l0klv67v3kwy5qf78cmy3qxwvmyz2pmrknc4cmkvs"; - setupHaskellDepends = [ - base - Cabal - cabal-doctest - ]; - libraryHaskellDepends = [ - base - lens - servant - servant-auth - servant-docs - text - ]; - testHaskellDepends = [ - base - doctest - hspec - lens - QuickCheck - servant - servant-auth - servant-auth-docs - servant-docs - template-haskell - text - ]; - testToolDepends = [ hspec-discover ]; - description = "spam"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "my-test-docs" = callPackage ( { mkDerivation, @@ -467629,133 +269067,6 @@ self: { } ) { }; - "myTestlll" = callPackage ( - { - mkDerivation, - ansi-terminal, - array, - arrows, - base, - bytestring, - Cabal, - CCA, - containers, - deepseq, - Euterpea, - ghc-prim, - HCodecs, - heap, - markov-chain, - monadIO, - mtl, - PortMidi, - pure-fft, - QuickCheck, - random, - stm, - syb, - template-haskell, - UISF, - }: - mkDerivation { - pname = "myTestlll"; - version = "1.0.0"; - sha256 = "1rd3pxc20xwb3j0q9ckygy59mks8p38vzmi4wfg8zp1dq92jmhy0"; - revision = "4"; - editedCabalFile = "0hqyhz1c8dn281554xnlnfc4ip1mnpil30rj53h77zcf7xybcm75"; - libraryHaskellDepends = [ - array - arrows - base - bytestring - CCA - containers - deepseq - ghc-prim - HCodecs - heap - markov-chain - monadIO - mtl - PortMidi - pure-fft - random - stm - syb - template-haskell - UISF - ]; - testHaskellDepends = [ - ansi-terminal - base - Cabal - Euterpea - QuickCheck - ]; - description = "None"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "myanimelist-export" = callPackage ( - { - mkDerivation, - aeson, - async, - base, - bytestring, - conduit, - conduit-extra, - containers, - directory, - exceptions, - http-client, - http-client-tls, - network-uri, - tagstream-conduit, - text, - yaml, - }: - mkDerivation { - pname = "myanimelist-export"; - version = "0.3.0.0"; - sha256 = "1jr0xb9ygx864b3ssbv0yk83a5lfvxmsnnyacwfzbsdg8fi1ip0k"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - async - base - bytestring - conduit - containers - exceptions - http-client - network-uri - tagstream-conduit - text - ]; - executableHaskellDepends = [ - aeson - base - bytestring - conduit - conduit-extra - directory - http-client - http-client-tls - network-uri - text - yaml - ]; - description = "Export from MyAnimeList"; - license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - mainProgram = "myanimelist-export"; - broken = true; - } - ) { }; - "mybitcoin-sci" = callPackage ( { mkDerivation, @@ -467851,141 +269162,6 @@ self: { } ) { }; - "myo" = callPackage ( - { - mkDerivation, - aeson, - base, - containers, - lens-family, - lens-family-th, - scientific, - string-conv, - tasty, - tasty-hunit, - text, - unordered-containers, - vector, - websockets, - }: - mkDerivation { - pname = "myo"; - version = "0.2.0.0"; - sha256 = "0x2czlyck4i4pvz2qpdxkjl740q67zflfr2v9w2a2kpwdffc21m6"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson - base - containers - lens-family - lens-family-th - scientific - text - unordered-containers - vector - websockets - ]; - executableHaskellDepends = [ - aeson - base - lens-family - string-conv - websockets - ]; - testHaskellDepends = [ - base - tasty - tasty-hunit - ]; - description = "Haskell binding to the Myo armband"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - mainProgram = "myo-ws-example"; - broken = true; - } - ) { }; - - "mysnapsession" = callPackage ( - { - mkDerivation, - base, - bytestring, - cereal, - clientsession, - containers, - mtl, - random, - regex-posix, - snap, - snap-core, - time, - }: - mkDerivation { - pname = "mysnapsession"; - version = "0.4.1"; - sha256 = "0871nq9nhpslni5kfldwiswhvpk1aajj7ikyiy9ikmcq16fb1z9m"; - libraryHaskellDepends = [ - base - bytestring - cereal - clientsession - containers - mtl - random - regex-posix - snap - snap-core - time - ]; - description = "Sessions and continuations for Snap web apps"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "mysnapsession-example" = callPackage ( - { - mkDerivation, - base, - bytestring, - clientsession, - heist, - mtl, - mysnapsession, - snap, - snap-core, - snap-server, - text, - time, - }: - mkDerivation { - pname = "mysnapsession-example"; - version = "0.4"; - sha256 = "0lxzn8fn97f1j3fx97f46m16y25w7m1w84l59r75xisr662gc9lz"; - isLibrary = false; - isExecutable = true; - enableSeparateDataOutput = true; - executableHaskellDepends = [ - base - bytestring - clientsession - heist - mtl - mysnapsession - snap - snap-core - snap-server - text - time - ]; - description = "Example projects using mysnapsession"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "mysql" = callPackage ( { mkDerivation, @@ -468020,35 +269196,6 @@ self: { } ) { inherit (pkgs) libmysqlclient; }; - "mysql-effect" = callPackage ( - { - mkDerivation, - base, - bytestring, - extensible-effects, - mysql, - mysql-simple, - }: - mkDerivation { - pname = "mysql-effect"; - version = "0.2.0.3"; - sha256 = "11fpsh4w2zlqdqhk5snb276pcbx4p9g1igs94fympa9asfr2rxm3"; - revision = "1"; - editedCabalFile = "062p06gx7jz8s6l9wixkmwww5r678r6q40ni4s76p04v0y8laiyl"; - libraryHaskellDepends = [ - base - bytestring - extensible-effects - mysql - mysql-simple - ]; - description = "An extensible mysql effect using extensible-effects and mysql-simple"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "mysql-haskell" = callPackage ( { mkDerivation, @@ -468217,6 +269364,7 @@ self: { description = "TLS support for mysql-haskell package using openssl"; license = lib.licenses.bsd3; hydraPlatforms = lib.platforms.none; + broken = true; } ) { }; @@ -468427,163 +269575,6 @@ self: { } ) { }; - "mysql-simple-quasi" = callPackage ( - { - mkDerivation, - base, - haskell-src-meta, - mysql-simple, - template-haskell, - }: - mkDerivation { - pname = "mysql-simple-quasi"; - version = "1.0.0.2"; - sha256 = "1ggqqjn83rx23qk7lzrcgj1arjhmhi85xfl7d2pz27rrjx2ywpn8"; - libraryHaskellDepends = [ - base - haskell-src-meta - mysql-simple - template-haskell - ]; - description = "Quasi-quoter for use with mysql-simple"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "mysql-simple-typed" = callPackage ( - { - mkDerivation, - base, - mysql, - mysql-simple, - template-haskell, - typedquery, - utf8-string, - }: - mkDerivation { - pname = "mysql-simple-typed"; - version = "0.1.2.0"; - sha256 = "160pyhcazmg3qnqsvzl05gc4xrm0cd1s622zv4z8n9z2w7xqh5qa"; - libraryHaskellDepends = [ - base - mysql - mysql-simple - template-haskell - typedquery - utf8-string - ]; - description = "Typed extension to mysql simple"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "mystem" = callPackage ( - { - mkDerivation, - attoparsec, - base, - data-default, - directory, - process, - text, - }: - mkDerivation { - pname = "mystem"; - version = "0.1.0.0"; - sha256 = "0pb4a4i5lv8sz5i2ajipy1qmzjc5xzl0q9v09lx2ms5fbmvcwhix"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - attoparsec - base - data-default - directory - process - text - ]; - executableHaskellDepends = [ - base - text - ]; - description = "Bindings for Mystem morphological analyzer executabe"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - mainProgram = "mystem-test-exe"; - broken = true; - } - ) { }; - - "mywatch" = callPackage ( - { - mkDerivation, - aeson, - base, - bytestring, - ConfigFile, - data-default-class, - docopt, - fast-logger, - filepath, - http-types, - interpolatedstring-perl6, - MissingH, - mtl, - mysql, - mysql-simple, - network, - resource-pool, - scotty, - text, - unix, - unordered-containers, - wai, - wai-extra, - wai-middleware-static, - warp, - }: - mkDerivation { - pname = "mywatch"; - version = "0.3.0"; - sha256 = "1a7fqyn0pvnbxzn9fiaib4pj7hq5p2qgnbdwryg70lkgnjm4y0h4"; - isLibrary = false; - isExecutable = true; - enableSeparateDataOutput = true; - executableHaskellDepends = [ - aeson - base - bytestring - ConfigFile - data-default-class - docopt - fast-logger - filepath - http-types - interpolatedstring-perl6 - MissingH - mtl - mysql - mysql-simple - network - resource-pool - scotty - text - unix - unordered-containers - wai - wai-extra - wai-middleware-static - warp - ]; - description = "Web application to view and kill MySQL queries"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - mainProgram = "mywatch"; - } - ) { }; - "mywork" = callPackage ( { mkDerivation, @@ -468648,96 +269639,6 @@ self: { } ) { }; - "myxine-client" = callPackage ( - { - mkDerivation, - aeson, - async, - base, - blaze-html, - blaze-markup, - bytestring, - constraints, - containers, - dependent-map, - file-embed, - hashable, - http-client, - http-types, - lens, - modern-uri, - mtl, - req, - salve, - some, - spoon, - template-haskell, - text, - transformers, - unordered-containers, - }: - mkDerivation { - pname = "myxine-client"; - version = "0.0.1.2"; - sha256 = "0399pig7nw6k1hjw16mjg7lh6z1vd0xhq625wbx76ispwk6gqifb"; - libraryHaskellDepends = [ - aeson - async - base - blaze-html - blaze-markup - bytestring - constraints - containers - dependent-map - file-embed - hashable - http-client - http-types - lens - modern-uri - mtl - req - salve - some - spoon - template-haskell - text - transformers - unordered-containers - ]; - testHaskellDepends = [ - bytestring - text - ]; - description = "A Haskell client for the Myxine GUI server"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "mzv" = callPackage ( - { - mkDerivation, - base, - transformers, - }: - mkDerivation { - pname = "mzv"; - version = "0.1.0.2"; - sha256 = "044x87jzyqsg5npp3s0mncgcl0gv26h6hzhc7bbgjja95x16ma2l"; - libraryHaskellDepends = [ - base - transformers - ]; - description = "Implementation of the \"Monads, Zippers and Views\" (Schrijvers and Oliveira, ICFP'11)"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "n-ary-functor" = callPackage ( { mkDerivation, @@ -468771,35 +269672,6 @@ self: { } ) { }; - "n-m" = callPackage ( - { - mkDerivation, - base, - HSH, - mtl, - process, - }: - mkDerivation { - pname = "n-m"; - version = "0.0.1"; - sha256 = "189ybl8fb70cf24zhnjcmgrgkshrf2ziacklg9ixgvnbdp3abb7m"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base ]; - executableHaskellDepends = [ - base - HSH - mtl - process - ]; - description = "Utility to call iwconfig"; - license = "unknown"; - hydraPlatforms = lib.platforms.none; - mainProgram = "n-m"; - broken = true; - } - ) { }; - "n-tuple" = callPackage ( { mkDerivation, @@ -468880,79 +269752,6 @@ self: { } ) { }; - "n2o-protocols" = callPackage ( - { - mkDerivation, - base, - base64-bytestring, - binary, - bytestring, - containers, - n2o, - n2o-nitro, - time, - }: - mkDerivation { - pname = "n2o-protocols"; - version = "0.11.2"; - sha256 = "1w5r99k9wvhbwvx0hzgpn1aahhnb84ib0n7xgq1ybpgy3s9cggzk"; - libraryHaskellDepends = [ - base - base64-bytestring - binary - bytestring - containers - n2o - n2o-nitro - time - ]; - description = "N2O Protocols Starter Pack"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "n2o-web" = callPackage ( - { - mkDerivation, - attoparsec, - base, - base64-bytestring, - binary, - bytestring, - case-insensitive, - containers, - n2o, - n2o-protocols, - network, - text, - websockets, - }: - mkDerivation { - pname = "n2o-web"; - version = "0.11.2"; - sha256 = "0d01lsfd2rwavzm01bkk3020r0wpfqyyqjbdf1pc8hw1im3843p6"; - libraryHaskellDepends = [ - attoparsec - base - base64-bytestring - binary - bytestring - case-insensitive - containers - n2o - n2o-protocols - network - text - websockets - ]; - description = "N2O adapter for WebSockets"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "nagios-check" = callPackage ( { mkDerivation, @@ -469041,218 +269840,6 @@ self: { } ) { }; - "nagios-plugin-ekg" = callPackage ( - { - mkDerivation, - aeson, - base, - bytestring, - containers, - hspec, - HUnit, - lens, - nagios-check, - optparse-applicative, - text, - transformers, - unordered-containers, - wreq, - }: - mkDerivation { - pname = "nagios-plugin-ekg"; - version = "0.1.1.0"; - sha256 = "1rk6sphxn93kmayjs0y386g1llhgbw8jpwhfkhlrbv9c395gxkrh"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson - base - bytestring - containers - lens - nagios-check - optparse-applicative - text - transformers - unordered-containers - wreq - ]; - executableHaskellDepends = [ - base - nagios-check - text - ]; - testHaskellDepends = [ - base - bytestring - hspec - HUnit - nagios-check - text - transformers - ]; - description = "Monitor ekg metrics via Nagios"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - mainProgram = "check_ekg"; - broken = true; - } - ) { }; - - "nakadi-client" = callPackage ( - { - mkDerivation, - aeson, - aeson-casing, - aeson-qq, - async, - async-timer, - base, - bytestring, - classy-prelude, - conduit, - conduit-extra, - containers, - exceptions, - fast-logger, - hashable, - http-client, - http-client-tls, - http-conduit, - http-types, - iso8601-time, - lens, - lens-aeson, - modern-uri, - monad-control, - monad-logger, - mtl, - random, - resourcet, - retry, - safe-exceptions, - say, - scientific, - split, - stm, - stm-chans, - stm-conduit, - tasty, - tasty-hunit, - template-haskell, - text, - time, - transformers, - transformers-base, - unliftio, - unliftio-core, - unordered-containers, - uuid, - vector, - wai, - warp, - }: - mkDerivation { - pname = "nakadi-client"; - version = "0.7.0.0"; - sha256 = "16d7ffbm3zrc8kwx1vy0xjxiiv0lxnpxvk93ixhiqyhfddych89x"; - libraryHaskellDepends = [ - aeson - aeson-casing - async - async-timer - base - bytestring - conduit - conduit-extra - containers - exceptions - hashable - http-client - http-client-tls - http-conduit - http-types - iso8601-time - lens - modern-uri - monad-control - monad-logger - mtl - resourcet - retry - safe-exceptions - scientific - split - stm - stm-chans - template-haskell - text - time - transformers - transformers-base - unliftio - unliftio-core - unordered-containers - uuid - vector - ]; - testHaskellDepends = [ - aeson - aeson-casing - aeson-qq - async - async-timer - base - bytestring - classy-prelude - conduit - conduit-extra - containers - exceptions - fast-logger - hashable - http-client - http-client-tls - http-conduit - http-types - iso8601-time - lens - lens-aeson - modern-uri - monad-control - monad-logger - mtl - random - resourcet - retry - safe-exceptions - say - scientific - split - stm - stm-chans - stm-conduit - tasty - tasty-hunit - template-haskell - text - time - transformers - transformers-base - unliftio - unliftio-core - unordered-containers - uuid - vector - wai - warp - ]; - description = "Client library for the Nakadi Event Broker"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "namecoin-update" = callPackage ( { mkDerivation, @@ -469344,37 +269931,6 @@ self: { } ) { }; - "named-formlet" = callPackage ( - { - mkDerivation, - base, - blaze-html, - bytestring, - containers, - mtl, - text, - transformers, - }: - mkDerivation { - pname = "named-formlet"; - version = "0.2"; - sha256 = "0wpjxn03cnxnn5x1706byl9d1129g9p1vkl1a1v9qw0afgzlj8y7"; - libraryHaskellDepends = [ - base - blaze-html - bytestring - containers - mtl - text - transformers - ]; - description = "A simple formlet library with named formlets"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "named-lock" = callPackage ( { mkDerivation, @@ -469496,36 +270052,6 @@ self: { } ) { }; - "named-sop" = callPackage ( - { - mkDerivation, - base, - singletons, - tasty, - tasty-hunit, - text, - }: - mkDerivation { - pname = "named-sop"; - version = "0.3.0.0"; - sha256 = "0fc55x0lx14fnynm42xp4z9n5k47wrwscq130rfffvf6w6xl6x7d"; - libraryHaskellDepends = [ - base - singletons - text - ]; - testHaskellDepends = [ - base - tasty - tasty-hunit - ]; - description = "Dependently-typed sums and products, tagged by field name"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "named-text" = callPackage ( { mkDerivation, @@ -469578,43 +270104,6 @@ self: { } ) { }; - "namelist" = callPackage ( - { - mkDerivation, - base, - case-insensitive, - data-default-class, - parsec, - QuickCheck, - tasty, - tasty-hunit, - tasty-quickcheck, - }: - mkDerivation { - pname = "namelist"; - version = "0.1.0"; - sha256 = "0sfiqd1dh3frzwnqz4fjh0wg8m55cprqw8ywvcaszrp5gq3mj74s"; - libraryHaskellDepends = [ - base - case-insensitive - data-default-class - parsec - ]; - testHaskellDepends = [ - base - case-insensitive - QuickCheck - tasty - tasty-hunit - tasty-quickcheck - ]; - description = "fortran90 namelist parser/pretty printer"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "names" = callPackage ( { mkDerivation, @@ -469677,41 +270166,6 @@ self: { } ) { }; - "nano-cryptr" = callPackage ( - { - mkDerivation, - base, - bytestring, - HUnit, - libxcrypt, - test-framework, - test-framework-hunit, - test-framework-quickcheck2, - }: - mkDerivation { - pname = "nano-cryptr"; - version = "0.2.1"; - sha256 = "00c0niyjhkcv942vhm775jml3frhj0i3svgj9xxy0hnfb3nawvjb"; - libraryHaskellDepends = [ - base - bytestring - ]; - librarySystemDepends = [ libxcrypt ]; - testHaskellDepends = [ - base - bytestring - HUnit - test-framework - test-framework-hunit - test-framework-quickcheck2 - ]; - description = "A threadsafe binding to glibc's crypt_r function"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { inherit (pkgs) libxcrypt; }; - "nano-erl" = callPackage ( { mkDerivation, @@ -469731,138 +270185,6 @@ self: { } ) { }; - "nano-hmac" = callPackage ( - { - mkDerivation, - base, - bytestring, - openssl, - }: - mkDerivation { - pname = "nano-hmac"; - version = "0.2.0"; - sha256 = "0rrwa1c3mval1jm4siqyx1vk14ibifya62hni13cimcdafj35fnq"; - libraryHaskellDepends = [ - base - bytestring - ]; - librarySystemDepends = [ openssl ]; - description = "Bindings to OpenSSL HMAC"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { inherit (pkgs) openssl; }; - - "nano-md5" = callPackage ( - { - mkDerivation, - base, - bytestring, - openssl, - }: - mkDerivation { - pname = "nano-md5"; - version = "0.1.2"; - sha256 = "18db3y76w0kv2m7h3lrqxcag4lc7519b2j80113g6hhm1wxkpabk"; - revision = "1"; - editedCabalFile = "093sf0fk6mmy8whjdxr4bh9mnw2vl73srdxjmvxg3pqji6mrpfca"; - libraryHaskellDepends = [ - base - bytestring - ]; - librarySystemDepends = [ openssl ]; - description = "Efficient, ByteString bindings to OpenSSL"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { inherit (pkgs) openssl; }; - - "nanoAgda" = callPackage ( - { - mkDerivation, - base, - BNFC-meta, - cmdargs, - containers, - mtl, - parsec, - pretty, - transformers, - }: - mkDerivation { - pname = "nanoAgda"; - version = "1.0.0"; - sha256 = "034mwssj296xn7j123sqvfl9rv1bwnj1v5sw5l34481dk5zsi9sm"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - BNFC-meta - cmdargs - containers - mtl - parsec - pretty - transformers - ]; - description = "A toy dependently-typed language"; - license = "unknown"; - hydraPlatforms = lib.platforms.none; - mainProgram = "nanoAgda"; - broken = true; - } - ) { }; - - "nanocurses" = callPackage ( - { - mkDerivation, - base, - bytestring, - ncurses, - unix, - }: - mkDerivation { - pname = "nanocurses"; - version = "1.5.2"; - sha256 = "04kgf3vvjdx6d1fmfzp0xy5x42zlg0ij59ayi1zhz8hkwsfn5g1m"; - libraryHaskellDepends = [ - base - bytestring - unix - ]; - librarySystemDepends = [ ncurses ]; - description = "Simple Curses binding"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { inherit (pkgs) ncurses; }; - - "nanomsg" = callPackage ( - { - mkDerivation, - base, - bytestring, - nanomsg, - }: - mkDerivation { - pname = "nanomsg"; - version = "0.1.1"; - sha256 = "06jb8s3jxjiz7r6dn8xx33xqd76f2r5q1mshsz41z4q0khf4wdp3"; - libraryHaskellDepends = [ - base - bytestring - ]; - librarySystemDepends = [ nanomsg ]; - description = "nanomsg - scalability protocols library"; - license = lib.licenses.publicDomain; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { inherit (pkgs) nanomsg; }; - "nanomsg-haskell" = callPackage ( { mkDerivation, @@ -469904,29 +270226,6 @@ self: { } ) { inherit (pkgs) nanomsg; }; - "nanoparsec" = callPackage ( - { - mkDerivation, - base, - bytestring, - ListLike, - }: - mkDerivation { - pname = "nanoparsec"; - version = "0.1.1"; - sha256 = "00ghdzkzshk24g7v42hq7zq0dxsq8vjpkslj41dxdnx0zizwbn3m"; - libraryHaskellDepends = [ - base - bytestring - ListLike - ]; - description = "An implementation of attoparsec-like parser around list-like"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "nanopass" = callPackage ( { mkDerivation, @@ -470020,242 +270319,98 @@ self: { } ) { }; - "nanovg" = - callPackage - ( - { - mkDerivation, - base, - bytestring, - c2hs, - containers, - freetype, - glew, - hspec, - inline-c, - libGL, - libGLU, - libX11, - QuickCheck, - text, - vector, - }: - mkDerivation { - pname = "nanovg"; - version = "0.8.1.0"; - sha256 = "1yzabd2l8z77dsgby97dzv0h38a6w554kmhp6hsfx3j24n0h0rnv"; - revision = "2"; - editedCabalFile = "02j2k8fnadp8fqkzji9xglrnahni5zkdix9l9ycf4qljsqj65q7j"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - bytestring - containers - text - vector - ]; - librarySystemDepends = [ - glew - libGL - libGLU - libX11 - ]; - libraryPkgconfigDepends = [ - freetype - glew - ]; - libraryToolDepends = [ c2hs ]; - testHaskellDepends = [ - base - containers - hspec - inline-c - QuickCheck - ]; - description = "Haskell bindings for nanovg"; - license = lib.licenses.isc; - } - ) - { - inherit (pkgs) freetype; - inherit (pkgs) glew; - inherit (pkgs) libGL; - inherit (pkgs) libGLU; - inherit (pkgs.xorg) libX11; - }; - - "nanovg-simple" = callPackage ( - { - mkDerivation, - base, - GLFW-b, - monad-loops, - nanovg, - OpenGL, - safe-exceptions, - text, - }: - mkDerivation { - pname = "nanovg-simple"; - version = "0.5.0.0"; - sha256 = "0z4gif0n56799llcm0l1p1d2qzxvfyrxvgzny58d8ymsgizldp6d"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - GLFW-b - monad-loops - nanovg - OpenGL - safe-exceptions - text - ]; - description = "Simple interface to rendering with NanoVG"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "nanq" = callPackage ( - { - mkDerivation, - aeson, - aeson-pretty, - base, - bytestring, - containers, - extensible-effects, - kanji, - microlens, - microlens-aeson, - optparse-applicative, - text, - }: - mkDerivation { - pname = "nanq"; - version = "3.0.1"; - sha256 = "1dgjcprsxn7dgnn9vzziahj0j07dr6qrxgy3c1cjvldhdkg80xid"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - aeson - aeson-pretty - base - bytestring - containers - extensible-effects - kanji - microlens - microlens-aeson - optparse-applicative - text - ]; - description = "Performs 漢字検定 (Japan Kanji Aptitude Test) level analysis on given Kanji"; - license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - mainProgram = "nanq"; - } - ) { }; - - "naperian" = callPackage ( - { - mkDerivation, - adjunctions, - base, - comonad, - distributive, - free, - streams, - transformers, - }: - mkDerivation { - pname = "naperian"; - version = "0.1.0.0"; - sha256 = "0ydlwk1m3xi12bv2rylay4lrz5j5aj1lz95ivilnh89qg4ahrnlb"; - revision = "1"; - editedCabalFile = "10bby5qlkw6yv2mh6zyscwda49hkxmxmrqfqjinlj246xi879f3m"; - libraryHaskellDepends = [ - adjunctions - base - comonad - distributive - free - streams - transformers - ]; - description = "Efficient representable functors"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "naqsha" = callPackage ( - { - mkDerivation, - base, - bytestring, - groups, - hspec, - hspec-discover, - HUnit, - QuickCheck, - vector, - }: - mkDerivation { - pname = "naqsha"; - version = "0.3.0.1"; - sha256 = "0wg2vvik0yhaqyla64m3mcrv0fkrs92dgkrq5pzq78xjycnm7q1r"; - libraryHaskellDepends = [ - base - bytestring - groups - vector - ]; - testHaskellDepends = [ - base - bytestring - groups - hspec - hspec-discover - HUnit - QuickCheck - vector - ]; - testToolDepends = [ hspec-discover ]; - doHaddock = false; - description = "A library for working with anything map related"; - license = "(Apache-2.0 OR BSD-3-Clause)"; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; + "nanovg" = + callPackage + ( + { + mkDerivation, + base, + bytestring, + c2hs, + containers, + freetype, + glew, + hspec, + inline-c, + libGL, + libGLU, + libX11, + QuickCheck, + text, + vector, + }: + mkDerivation { + pname = "nanovg"; + version = "0.8.1.0"; + sha256 = "1yzabd2l8z77dsgby97dzv0h38a6w554kmhp6hsfx3j24n0h0rnv"; + revision = "2"; + editedCabalFile = "02j2k8fnadp8fqkzji9xglrnahni5zkdix9l9ycf4qljsqj65q7j"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + base + bytestring + containers + text + vector + ]; + librarySystemDepends = [ + glew + libGL + libGLU + libX11 + ]; + libraryPkgconfigDepends = [ + freetype + glew + ]; + libraryToolDepends = [ c2hs ]; + testHaskellDepends = [ + base + containers + hspec + inline-c + QuickCheck + ]; + description = "Haskell bindings for nanovg"; + license = lib.licenses.isc; + } + ) + { + inherit (pkgs) freetype; + inherit (pkgs) glew; + inherit (pkgs) libGL; + inherit (pkgs) libGLU; + inherit (pkgs.xorg) libX11; + }; - "narc" = callPackage ( + "nanovg-simple" = callPackage ( { mkDerivation, base, - HDBC, - HUnit, - mtl, - QuickCheck, - random, + GLFW-b, + monad-loops, + nanovg, + OpenGL, + safe-exceptions, + text, }: mkDerivation { - pname = "narc"; - version = "0.1.3"; - sha256 = "1ng1rzj1lf6h9g3pk8gsz05bnck72rp5j62iwn82vlcw8pyk0fsc"; + pname = "nanovg-simple"; + version = "0.5.0.0"; + sha256 = "0z4gif0n56799llcm0l1p1d2qzxvfyrxvgzny58d8ymsgizldp6d"; + isLibrary = true; + isExecutable = true; libraryHaskellDepends = [ base - HDBC - HUnit - mtl - QuickCheck - random + GLFW-b + monad-loops + nanovg + OpenGL + safe-exceptions + text ]; - description = "Query SQL databases using Nested Relational Calculus embedded in Haskell"; + description = "Simple interface to rendering with NanoVG"; license = lib.licenses.bsd3; hydraPlatforms = lib.platforms.none; broken = true; @@ -470372,46 +270527,6 @@ self: { ]; description = "Functions for National Australia Bank transactions"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "nationstates" = callPackage ( - { - mkDerivation, - base, - bytestring, - clock, - containers, - http-client, - http-client-tls, - http-types, - multiset, - tls, - transformers, - xml, - }: - mkDerivation { - pname = "nationstates"; - version = "0.5.0.0"; - sha256 = "14jnyzbjfvs0kcpdm5nwb9s4bnwqwc10q6484k77gbhn3gfgq3h2"; - libraryHaskellDepends = [ - base - bytestring - clock - containers - http-client - http-client-tls - http-types - multiset - tls - transformers - xml - ]; - description = "NationStates API client"; - license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; - broken = true; } ) { }; @@ -470468,126 +270583,6 @@ self: { } ) { }; - "nats-client" = callPackage ( - { - mkDerivation, - aeson, - attoparsec, - base, - bytestring, - containers, - criterion, - data-default, - exceptions, - hedgehog, - hslogger, - monad-control, - mtl, - network, - random, - resource-pool, - test-framework, - text, - time, - transformers, - }: - mkDerivation { - pname = "nats-client"; - version = "0.1.0.0"; - sha256 = "0xpxsz0y3f7mgqbbhk33yd9n7q260h3lf7brynmvqwmfbbkplkrg"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson - attoparsec - base - bytestring - containers - data-default - exceptions - hslogger - monad-control - network - random - resource-pool - text - transformers - ]; - executableHaskellDepends = [ - base - bytestring - network - ]; - testHaskellDepends = [ - aeson - base - bytestring - hedgehog - mtl - test-framework - ]; - benchmarkHaskellDepends = [ - base - criterion - time - ]; - description = "Another Haskell client for NATS (https://nats.io)"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "nats-client"; - broken = true; - } - ) { }; - - "nats-queue" = callPackage ( - { - mkDerivation, - aeson, - async, - base, - bytestring, - containers, - dequeue, - hspec, - network, - network-uri, - random, - text, - }: - mkDerivation { - pname = "nats-queue"; - version = "0.1.2.2"; - sha256 = "1vgmp6h63iblhi3z6xj244hkqdaa25d7n8k358cx04pbkxw9vdgj"; - libraryHaskellDepends = [ - aeson - async - base - bytestring - containers - dequeue - network - network-uri - random - text - ]; - testHaskellDepends = [ - aeson - base - bytestring - containers - dequeue - hspec - network - network-uri - random - text - ]; - description = "Haskell API for NATS messaging system"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "natural" = callPackage ( { mkDerivation, @@ -470671,30 +270666,6 @@ self: { } ) { }; - "natural-number" = callPackage ( - { - mkDerivation, - base, - type-equality, - type-level-natural-number, - type-level-natural-number-induction, - }: - mkDerivation { - pname = "natural-number"; - version = "1.0"; - sha256 = "1n8qgjbi4c50pwynlya4bjxd6lpwj00257drqk04mlrr3nw3gp5x"; - libraryHaskellDepends = [ - base - type-equality - type-level-natural-number - type-level-natural-number-induction - ]; - description = "Natural numbers tagged with a type-level representation of the number"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "natural-numbers" = callPackage ( { mkDerivation, base }: mkDerivation { @@ -470791,41 +270762,6 @@ self: { } ) { }; - "naver-translate" = callPackage ( - { - mkDerivation, - aeson, - base, - iso639, - lens, - lens-aeson, - network-uri, - random, - text, - wreq, - }: - mkDerivation { - pname = "naver-translate"; - version = "0.1.0.2"; - sha256 = "0hkmh779z31vr67fq5v633f9rcwd4f9vhnkiv64mzvwfxgqdjjza"; - libraryHaskellDepends = [ - aeson - base - iso639 - lens - lens-aeson - network-uri - random - text - wreq - ]; - description = "Interface to Naver Translate"; - license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "nbt" = callPackage ( { mkDerivation, @@ -470915,95 +270851,6 @@ self: { } ) { }; - "ncurses" = callPackage ( - { - mkDerivation, - base, - c2hs, - containers, - ncurses, - text, - transformers, - }: - mkDerivation { - pname = "ncurses"; - version = "0.2.16"; - sha256 = "0gsyyaqyh5r9zc0rhwpj5spyd6i4w2vj61h4nihgmmh0yyqvf3z5"; - revision = "1"; - editedCabalFile = "1wfdy716s5p1sqp2gsg43x8wch2dxg0vmbbndlb2h3d8c9jzxnca"; - libraryHaskellDepends = [ - base - containers - text - transformers - ]; - librarySystemDepends = [ ncurses ]; - libraryToolDepends = [ c2hs ]; - description = "Modernised bindings to GNU ncurses"; - license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { inherit (pkgs) ncurses; }; - - "ndjson-conduit" = callPackage ( - { - mkDerivation, - aeson, - attoparsec, - base, - bytestring, - conduit, - }: - mkDerivation { - pname = "ndjson-conduit"; - version = "0.1.0.5"; - sha256 = "1ccxliyy0flpby9jix2n8jy1i4jgiap42maqhh9ny53vqkvvhdy0"; - libraryHaskellDepends = [ - aeson - attoparsec - base - bytestring - conduit - ]; - description = "Conduit-based parsing and serialization for newline delimited JSON"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "neat" = callPackage ( - { - mkDerivation, - base, - filepath, - parsec, - }: - mkDerivation { - pname = "neat"; - version = "0.1.0"; - sha256 = "0lh5clnlfkzd5d9zmm9r92wpzrp8g7x6ndml7wajr882s53dv6jk"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - filepath - parsec - ]; - executableHaskellDepends = [ - base - filepath - parsec - ]; - description = "A Fast Retargetable Template Engine"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - mainProgram = "neat"; - broken = true; - } - ) { }; - "neat-interpolation" = callPackage ( { mkDerivation, @@ -471035,179 +270882,6 @@ self: { } ) { }; - "needle" = callPackage ( - { - mkDerivation, - base, - containers, - haskell-src-meta, - mtl, - parsec, - parsec-extra, - template-haskell, - text, - vector, - }: - mkDerivation { - pname = "needle"; - version = "0.1.0.1"; - sha256 = "1p7hmja7mvdbd10jv7bzr5b9i18l9nghdcvvxpn9xvfm8ycz7yg2"; - libraryHaskellDepends = [ - base - containers - haskell-src-meta - mtl - parsec - parsec-extra - template-haskell - text - vector - ]; - description = "ASCII-fied arrow notation"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "neet" = callPackage ( - { - mkDerivation, - base, - cereal, - containers, - graphviz, - MonadRandom, - multimap, - parallel, - random, - transformers, - }: - mkDerivation { - pname = "neet"; - version = "0.4.0.1"; - sha256 = "176ghik07jcsv2g4nn6s9wxvwypd5ib81jb9v329vv0m58cmcygj"; - libraryHaskellDepends = [ - base - cereal - containers - graphviz - MonadRandom - multimap - parallel - random - transformers - ]; - description = "A NEAT library for Haskell"; - license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "nehe-tuts" = callPackage ( - { - mkDerivation, - array, - base, - bytestring, - cereal, - directory, - GLFW-b, - GLURaw, - OpenGLRaw, - random, - }: - mkDerivation { - pname = "nehe-tuts"; - version = "0.2.4"; - sha256 = "00zll88gk44l22lqxv47v4j5ipfapy5599ld8fcsvhk57nfcm2r0"; - isLibrary = false; - isExecutable = true; - enableSeparateDataOutput = true; - executableHaskellDepends = [ - array - base - bytestring - cereal - directory - GLFW-b - GLURaw - OpenGLRaw - random - ]; - description = "Port of the NeHe OpenGL tutorials to Haskell"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "neil" = callPackage ( - { - mkDerivation, - base, - cmdargs, - containers, - directory, - extra, - filepath, - GoogleChart, - json, - old-time, - process, - time, - }: - mkDerivation { - pname = "neil"; - version = "0.10"; - sha256 = "17qk7bh6j2b29sb9kylwyw1iq21zfx78h35wvf5havl30dcj3wkv"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - cmdargs - containers - directory - extra - filepath - GoogleChart - json - old-time - process - time - ]; - description = "General tools for Neil"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "neil"; - broken = true; - } - ) { }; - - "neither" = callPackage ( - { - mkDerivation, - base, - failure, - transformers, - }: - mkDerivation { - pname = "neither"; - version = "0.3.1.1"; - sha256 = "192l840yb1pprfjjq7ax5xaraagl1pbmsidkg1yibp6r4azd61yf"; - libraryHaskellDepends = [ - base - failure - transformers - ]; - description = "Provide versions of Either with good monad and applicative instances. (deprecated)"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "neither-data" = callPackage ( { mkDerivation, base }: mkDerivation { @@ -471222,109 +270896,6 @@ self: { } ) { }; - "neko-lib" = callPackage ( - { - mkDerivation, - base, - binary, - bytestring, - containers, - directory, - optparse-applicative, - process, - random, - tagged, - tasty, - tasty-hunit, - tasty-smallcheck, - temporary, - }: - mkDerivation { - pname = "neko-lib"; - version = "0.0.1.0"; - sha256 = "0ai0c5kx30wsq15bmz7a27x8s2jd0x0scdrjs15bniyc0881l2vv"; - libraryHaskellDepends = [ - base - binary - bytestring - containers - optparse-applicative - tagged - ]; - testHaskellDepends = [ - base - binary - bytestring - containers - directory - optparse-applicative - process - random - tagged - tasty - tasty-hunit - tasty-smallcheck - temporary - ]; - description = "Neko VM code generation and disassembly library"; - license = lib.licenses.bsd2; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "neko-obfs" = callPackage ( - { - mkDerivation, - async, - attoparsec, - base, - binary, - bytestring, - lens, - network, - network-simple, - optparse-generic, - pipes, - pipes-attoparsec, - pipes-network, - pipes-safe, - random, - text, - transformers, - }: - mkDerivation { - pname = "neko-obfs"; - version = "0.1.0.4"; - sha256 = "1vffkpxxvxykrjy9awx0vqda6gbpmzz2ybr5ijmb47dl7mr7sl88"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - async - attoparsec - base - binary - bytestring - lens - network - network-simple - optparse-generic - pipes - pipes-attoparsec - pipes-network - pipes-safe - random - text - transformers - ]; - description = "a TCP tunnel with packet length obfuscation"; - license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; - mainProgram = "neko-obfs"; - broken = true; - } - ) { }; - "nekos-best" = callPackage ( { mkDerivation, @@ -471396,45 +270967,6 @@ self: { } ) { }; - "nemesis-titan" = callPackage ( - { - mkDerivation, - air, - air-th, - base, - bytestring, - directory, - filepath, - hspec, - HStringTemplate, - nemesis, - random, - uuid, - }: - mkDerivation { - pname = "nemesis-titan"; - version = "2014.5.19"; - sha256 = "183m6wz52lrf5kfwxz11ad7v5zazv4gcf1c2rcylh2ys6zda4xmd"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - air - air-th - base - bytestring - directory - filepath - hspec - HStringTemplate - nemesis - random - uuid - ]; - description = "A collection of Nemesis tasks to bootstrap a Haskell project with a focus on continuous integration"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "neolua" = callPackage ( { mkDerivation, @@ -471619,228 +271151,6 @@ self: { } ) { }; - "nerf" = callPackage ( - { - mkDerivation, - base, - binary, - bytestring, - cmdargs, - containers, - crf-chain1, - data-named, - dawg, - directory, - filepath, - IntervalMap, - monad-ox, - mtl, - network, - polimorf, - polysoup, - sgd, - tagsoup, - temporary, - text, - text-binary, - tokenize, - vector, - }: - mkDerivation { - pname = "nerf"; - version = "0.5.4.1"; - sha256 = "1dwfm00r64vi6by92ggi184747v2mq94fbyl18r46icvgq0h1dl2"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - binary - bytestring - cmdargs - containers - crf-chain1 - data-named - dawg - IntervalMap - monad-ox - mtl - network - polimorf - polysoup - sgd - tagsoup - text - text-binary - tokenize - vector - ]; - executableHaskellDepends = [ - base - binary - bytestring - cmdargs - containers - crf-chain1 - data-named - dawg - directory - filepath - IntervalMap - monad-ox - mtl - network - polimorf - polysoup - sgd - tagsoup - temporary - text - text-binary - tokenize - vector - ]; - description = "Nerf, a named entity recognition tool based on linear-chain CRFs"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "nerf"; - } - ) { }; - - "nero" = callPackage ( - { - mkDerivation, - base, - bifunctors, - bytestring, - containers, - doctest, - Glob, - lens, - tasty, - tasty-hunit, - text, - }: - mkDerivation { - pname = "nero"; - version = "0.3.1"; - sha256 = "1nmikqdxih91xhppn72a4xsrszj4050xl9winjsm62k5wdm9ld50"; - libraryHaskellDepends = [ - base - bifunctors - bytestring - containers - lens - text - ]; - testHaskellDepends = [ - base - bytestring - doctest - Glob - lens - tasty - tasty-hunit - text - ]; - description = "Lens-based HTTP toolkit"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "nero-wai" = callPackage ( - { - mkDerivation, - base, - bytestring, - http-types, - lens, - nero, - text, - wai, - wai-extra, - }: - mkDerivation { - pname = "nero-wai"; - version = "0.3"; - sha256 = "1jz2was51lfqiq1krrjljy7yl2z49nlj72x9dspc748dznizb8aw"; - libraryHaskellDepends = [ - base - bytestring - http-types - lens - nero - text - wai - wai-extra - ]; - description = "WAI adapter for Nero server applications"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "nero-warp" = callPackage ( - { - mkDerivation, - base, - nero, - nero-wai, - warp, - }: - mkDerivation { - pname = "nero-warp"; - version = "0.3"; - sha256 = "1ddr0hs9x7r74f5bb00fbi0z87cfkxp21m5ikp5qgyblqb09940s"; - libraryHaskellDepends = [ - base - nero - nero-wai - warp - ]; - description = "Run Nero server applications with Warp"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "nest" = callPackage ( - { - mkDerivation, - base, - bytestring, - containers, - hedgehog, - text, - transformers, - unix, - }: - mkDerivation { - pname = "nest"; - version = "0.0.2"; - sha256 = "15q7c2ppw1ajnhglfawlc2a65k7d2cvcpav88y8kjqmp68hvgpic"; - libraryHaskellDepends = [ - base - bytestring - containers - text - transformers - unix - ]; - testHaskellDepends = [ - base - bytestring - containers - hedgehog - text - ]; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "nested-routes" = callPackage ( { mkDerivation, @@ -471919,33 +271229,6 @@ self: { ]; description = "Declarative, compositional Wai responses"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "nested-sequence" = callPackage ( - { - mkDerivation, - base, - QuickCheck, - test-framework, - test-framework-quickcheck2, - }: - mkDerivation { - pname = "nested-sequence"; - version = "0.2"; - sha256 = "0lsygdx62qgg74dq2mp9pklj9x9b8yjma4lbim6ncsjxy7381nbc"; - libraryHaskellDepends = [ base ]; - testHaskellDepends = [ - base - QuickCheck - test-framework - test-framework-quickcheck2 - ]; - description = "List-like data structures with O(log(n)) random access"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; } ) { }; @@ -471974,40 +271257,6 @@ self: { } ) { }; - "nestedmap" = callPackage ( - { - mkDerivation, - base, - base-unicode-symbols, - containers, - data-ordlist, - hspec, - QuickCheck, - }: - mkDerivation { - pname = "nestedmap"; - version = "0.1.0.3"; - sha256 = "1his95sqzyr5xb7iihz62vp9y32smf5wy4ck81yrxdvkn6zvhajl"; - libraryHaskellDepends = [ - base - base-unicode-symbols - containers - ]; - testHaskellDepends = [ - base - base-unicode-symbols - containers - data-ordlist - hspec - QuickCheck - ]; - description = "A library for nested maps"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "nestedtext" = callPackage ( { mkDerivation, @@ -472465,7 +271714,6 @@ self: { ]; description = "Conversion between net-spider and pangraph"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; } ) { }; @@ -472644,187 +271892,6 @@ self: { } ) { inherit (pkgs) libsodium; }; - "netcore" = callPackage ( - { - mkDerivation, - ansi-wl-pprint, - base, - bimap, - binary, - binary-strict, - bytestring, - containers, - fgl, - HList, - hslogger, - HUnit, - mtl, - multiset, - network, - parsec, - process, - QuickCheck, - random, - syb, - test-framework, - test-framework-hunit, - test-framework-quickcheck2, - test-framework-th, - }: - mkDerivation { - pname = "netcore"; - version = "1.0.0"; - sha256 = "0biqhmfvszwmmnpgja6qk3k2s5ynx4l659zq9awrxr0637dc19a5"; - libraryHaskellDepends = [ - ansi-wl-pprint - base - bimap - binary - binary-strict - bytestring - containers - fgl - HList - hslogger - mtl - multiset - network - parsec - process - random - syb - ]; - testHaskellDepends = [ - ansi-wl-pprint - base - bimap - binary - binary-strict - bytestring - containers - fgl - HList - hslogger - HUnit - mtl - multiset - network - parsec - process - QuickCheck - random - syb - test-framework - test-framework-hunit - test-framework-quickcheck2 - test-framework-th - ]; - benchmarkHaskellDepends = [ - ansi-wl-pprint - base - bimap - binary - binary-strict - bytestring - containers - fgl - HList - hslogger - mtl - multiset - network - parsec - process - random - syb - ]; - description = "The NetCore compiler and runtime system for OpenFlow networks"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "netease-fm" = callPackage ( - { - mkDerivation, - aeson, - async, - base, - base64-bytestring, - brick, - bytestring, - containers, - cryptonite, - data-default-class, - directory, - exceptions, - http-client, - http-client-tls, - http-types, - memory, - mtl, - parsec, - process, - random, - stm, - text, - time, - transformers, - vector, - vty, - }: - mkDerivation { - pname = "netease-fm"; - version = "1.2.2"; - sha256 = "1dmaac0b22nycq4mar0grb2dzfff08rh9qk075h73r0an1vjh1d9"; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - aeson - async - base - base64-bytestring - bytestring - cryptonite - data-default-class - directory - exceptions - http-client - http-client-tls - http-types - memory - mtl - parsec - process - random - stm - text - time - transformers - vector - ]; - executableHaskellDepends = [ - base - brick - containers - data-default-class - directory - mtl - process - random - stm - transformers - vty - ]; - description = "NetEase Cloud Music FM client in Haskell"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "netease-fm"; - broken = true; - } - ) { }; - "netlib-carray" = callPackage ( { mkDerivation, @@ -472905,44 +271972,6 @@ self: { } ) { }; - "netlines" = callPackage ( - { - mkDerivation, - base, - bytestring, - contstuff, - enumerator, - HTF, - random, - text, - time, - }: - mkDerivation { - pname = "netlines"; - version = "1.0.0"; - sha256 = "006ca49rhh09lz8did0sil2f0xp1ggk69d4dqb2kx12drijp1jgj"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - bytestring - contstuff - enumerator - text - time - ]; - executableHaskellDepends = [ - base - HTF - random - ]; - description = "Enumerator tools for text-based network protocols"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "netlines-test"; - } - ) { }; - "netlink" = callPackage ( { mkDerivation, @@ -473099,107 +272128,6 @@ self: { } ) { }; - "netrium" = callPackage ( - { - mkDerivation, - base, - containers, - directory, - filepath, - HaXml, - pretty, - process, - time, - }: - mkDerivation { - pname = "netrium"; - version = "0.6.0"; - sha256 = "1cs6fxg0cpd2d1vhkzaazpzxya6n6cxlsnnwy3lnvqbaz68sipc0"; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base - containers - HaXml - process - time - ]; - executableHaskellDepends = [ - base - containers - directory - filepath - HaXml - pretty - process - ]; - description = "Contract normaliser and simulator"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "netspec" = callPackage ( - { - mkDerivation, - aeson, - base, - binary, - bytestring, - mtl, - network, - template-haskell, - text, - transformers, - }: - mkDerivation { - pname = "netspec"; - version = "0.2.0.0"; - sha256 = "0qmca5pf6r0zam86a8wghs3ylsmvd4cxk9g3nlv2gc3vl3fb8caq"; - libraryHaskellDepends = [ - aeson - base - binary - bytestring - mtl - network - template-haskell - text - transformers - ]; - description = "Simplify static Networking tasks"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "netstring-enumerator" = callPackage ( - { - mkDerivation, - base, - bytestring, - enumerator, - transformers, - }: - mkDerivation { - pname = "netstring-enumerator"; - version = "0.1.1"; - sha256 = "1n1g8d8507i0k4i93wb4i6yh7j7l3r0d9dfgxwl02hsk1svk5hkm"; - libraryHaskellDepends = [ - base - bytestring - enumerator - transformers - ]; - description = "Enumerator-based netstring parsing"; - license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "nettle" = callPackage ( { mkDerivation, @@ -473249,114 +272177,6 @@ self: { } ) { inherit (pkgs) nettle; }; - "nettle-frp" = callPackage ( - { - mkDerivation, - base, - bimap, - binary, - bytestring, - containers, - mtl, - nettle-openflow, - network, - network-data, - random, - time, - }: - mkDerivation { - pname = "nettle-frp"; - version = "0.1.1"; - sha256 = "0jkb9a3vci91gx1rj81jbanhf0xw7n4xk69a5nhy7b55vclv8lcr"; - libraryHaskellDepends = [ - base - bimap - binary - bytestring - containers - mtl - nettle-openflow - network - network-data - random - time - ]; - description = "FRP for controlling networks of OpenFlow switches"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "nettle-netkit" = callPackage ( - { - mkDerivation, - base, - containers, - directory, - filepath, - mtl, - nettle-openflow, - unix, - }: - mkDerivation { - pname = "nettle-netkit"; - version = "0.2.0"; - sha256 = "152i4mdmqfrbvzq4nfzl8vy2n3jczbn18wd2mjxng1130l86cylp"; - libraryHaskellDepends = [ - base - containers - directory - filepath - mtl - nettle-openflow - unix - ]; - description = "DSL for describing OpenFlow networks, and a compiler generating NetKit labs"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "nettle-openflow" = callPackage ( - { - mkDerivation, - array, - base, - bimap, - binary, - binary-strict, - bytestring, - containers, - HList, - mtl, - network, - parsec, - syb, - }: - mkDerivation { - pname = "nettle-openflow"; - version = "0.2.0"; - sha256 = "1jc9dpsz8s6ivmkmddxy7i8kyiqf93x8rhnxly357nxlgmsn5dgk"; - libraryHaskellDepends = [ - array - base - bimap - binary - binary-strict - bytestring - containers - HList - mtl - network - parsec - syb - ]; - description = "OpenFlow protocol messages, binary formats, and servers"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "netw" = callPackage ( { mkDerivation, @@ -473474,91 +272294,6 @@ self: { } ) { }; - "netwire-input-javascript" = callPackage ( - { - mkDerivation, - base, - containers, - ghcjs-base, - netwire, - netwire-input, - transformers, - }: - mkDerivation { - pname = "netwire-input-javascript"; - version = "0.0.2"; - sha256 = "1gvjnr745d13lk1vscqxwns2285kjslwmyl5zlw4wl6w0xf7x5ps"; - libraryHaskellDepends = [ - base - containers - ghcjs-base - netwire - netwire-input - transformers - ]; - description = "JavaScript instance of netwire-input"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "netwire-vinylglfw-examples" = callPackage ( - { - mkDerivation, - array, - base, - bytestring, - containers, - directory, - filepath, - GLFW-b, - GLUtil, - lens, - linear, - mtl, - netwire, - netwire-input, - netwire-input-glfw, - OpenGL, - transformers, - vinyl, - vinyl-gl, - }: - mkDerivation { - pname = "netwire-vinylglfw-examples"; - version = "1.0.0"; - sha256 = "16n03lpmvf715yi9kpf3nypllvipm58jq63lya619h45b2r8i5n9"; - isLibrary = false; - isExecutable = true; - enableSeparateDataOutput = true; - executableHaskellDepends = [ - array - base - bytestring - containers - directory - filepath - GLFW-b - GLUtil - lens - linear - mtl - netwire - netwire-input - netwire-input-glfw - OpenGL - transformers - vinyl - vinyl-gl - ]; - description = "Netwire/GLFW/VinylGL input handling demo"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "network" = callPackage ( { mkDerivation, @@ -473599,204 +272334,6 @@ self: { } ) { }; - "network-address" = callPackage ( - { - mkDerivation, - base, - Cabal, - QuickCheck, - test-framework, - test-framework-quickcheck2, - }: - mkDerivation { - pname = "network-address"; - version = "0.2.0"; - sha256 = "0pz6x11naxzby14jxrm31j2jdd6gwqspbrx1hv5204rbf7lifib1"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - Cabal - ]; - testHaskellDepends = [ - base - Cabal - QuickCheck - test-framework - test-framework-quickcheck2 - ]; - description = "IP data structures and textual representation"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "network-anonymous-i2p" = callPackage ( - { - mkDerivation, - attoparsec, - base, - bytestring, - exceptions, - hspec, - hspec-attoparsec, - hspec-expectations, - mtl, - network, - network-attoparsec, - network-simple, - text, - transformers, - uuid, - }: - mkDerivation { - pname = "network-anonymous-i2p"; - version = "0.10.0"; - sha256 = "0b7z7w105l1yd3xpnnl2z779m5zknf756cslksbbpsy16rn7kxfg"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - attoparsec - base - bytestring - exceptions - mtl - network - network-attoparsec - network-simple - text - transformers - uuid - ]; - testHaskellDepends = [ - attoparsec - base - bytestring - exceptions - hspec - hspec-attoparsec - hspec-expectations - mtl - network - network-simple - transformers - uuid - ]; - description = "Haskell API for I2P anonymous networking"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "network-anonymous-tor" = callPackage ( - { - mkDerivation, - attoparsec, - base, - base32string, - bytestring, - exceptions, - hexstring, - hspec, - hspec-attoparsec, - hspec-expectations, - network, - network-attoparsec, - network-simple, - socks, - splice, - text, - transformers, - }: - mkDerivation { - pname = "network-anonymous-tor"; - version = "0.11.0"; - sha256 = "0jbm29795dznmrdkvl95v9xhj8pcmwgsdk2ngaj6zv5a9arybbj1"; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - attoparsec - base - base32string - bytestring - exceptions - hexstring - network - network-attoparsec - network-simple - socks - text - transformers - ]; - executableHaskellDepends = [ - base - exceptions - network - network-simple - splice - ]; - testHaskellDepends = [ - attoparsec - base - base32string - bytestring - exceptions - hspec - hspec-attoparsec - hspec-expectations - network - network-simple - socks - text - transformers - ]; - description = "Haskell API for Tor anonymous networking"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - mainProgram = "tor-relay"; - } - ) { }; - - "network-api-support" = callPackage ( - { - mkDerivation, - aeson, - attoparsec, - base, - bytestring, - case-insensitive, - http-client, - http-client-tls, - http-types, - text, - time, - tls, - }: - mkDerivation { - pname = "network-api-support"; - version = "0.3.5"; - sha256 = "0d7s7v5df9w1cflprighaqfj6p6nd565fbbklypnh8226pfivf0k"; - libraryHaskellDepends = [ - aeson - attoparsec - base - bytestring - case-insensitive - http-client - http-client-tls - http-types - text - time - tls - ]; - description = "Toolkit for building http client libraries over Network.Http.Conduit"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "network-arbitrary" = callPackage ( { mkDerivation, @@ -473840,124 +272377,6 @@ self: { } ) { }; - "network-attoparsec" = callPackage ( - { - mkDerivation, - attoparsec, - base, - bytestring, - enclosed-exceptions, - exceptions, - hspec, - lifted-base, - monad-control, - mtl, - network, - network-simple, - transformers, - }: - mkDerivation { - pname = "network-attoparsec"; - version = "0.12.2"; - sha256 = "1w08py367mmwfg5lff6y9s6hdpg1nbjf7v6vv9s19aw6saxak44p"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - attoparsec - base - bytestring - enclosed-exceptions - exceptions - lifted-base - monad-control - mtl - network - transformers - ]; - testHaskellDepends = [ - attoparsec - base - bytestring - exceptions - hspec - mtl - network - network-simple - transformers - ]; - doCheck = false; - description = "Utility functions for running a parser against a socket"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "network-bitcoin" = callPackage ( - { - mkDerivation, - aeson, - attoparsec, - base, - bytestring, - cookie, - HTTP, - http-client, - http-types, - network, - network-uri, - QuickCheck, - tasty, - tasty-quickcheck, - text, - time, - unordered-containers, - vector, - }: - mkDerivation { - pname = "network-bitcoin"; - version = "1.9.1"; - sha256 = "12ywzix3fpvlrd43v0q03lbm877pi2dz2x9w421sxvb6gvd2q7s0"; - libraryHaskellDepends = [ - aeson - attoparsec - base - bytestring - cookie - HTTP - http-client - http-types - network - network-uri - text - time - unordered-containers - vector - ]; - testHaskellDepends = [ - aeson - attoparsec - base - bytestring - cookie - HTTP - http-client - http-types - network - QuickCheck - tasty - tasty-quickcheck - text - time - unordered-containers - vector - ]; - description = "An interface to bitcoind"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "network-bsd" = callPackage ( { mkDerivation, @@ -473981,59 +272400,6 @@ self: { } ) { }; - "network-builder" = callPackage ( - { - mkDerivation, - aeson, - base, - bytestring, - cabal-test-bin, - hspec, - hspec-server, - optparse-applicative, - process, - shelly, - text, - yaml, - }: - mkDerivation { - pname = "network-builder"; - version = "0.1.0"; - sha256 = "0faa3clz80158m9cy4mblnszla6k9hbf8bdwp5cam05dwmvsdcyw"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson - base - bytestring - shelly - text - yaml - ]; - executableHaskellDepends = [ - aeson - base - bytestring - optparse-applicative - shelly - text - yaml - ]; - testHaskellDepends = [ - base - cabal-test-bin - hspec - hspec-server - process - ]; - description = "Linux NetworkNameSpace Builder"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "network-builder"; - broken = true; - } - ) { }; - "network-byte-order" = callPackage ( { mkDerivation, @@ -474053,33 +272419,6 @@ self: { } ) { }; - "network-bytestring" = callPackage ( - { - mkDerivation, - base, - bytestring, - network, - unix, - }: - mkDerivation { - pname = "network-bytestring"; - version = "0.1.3.4"; - sha256 = "19m10mj9nqsa7s0syv9dyhqkhvmf2h7yna8n7bq0xkdp8m9l0g96"; - revision = "1"; - editedCabalFile = "0znp4qkad1sd650kjqhbbrr2ap7bb772g3db92k7r2rrydr19cdl"; - libraryHaskellDepends = [ - base - bytestring - network - unix - ]; - description = "Fast, memory-efficient, low-level networking"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "network-can" = callPackage ( { mkDerivation, @@ -474222,34 +272561,6 @@ self: { } ) { }; - "network-connection" = callPackage ( - { - mkDerivation, - base, - bytestring, - containers, - network, - network-bytestring, - stm, - }: - mkDerivation { - pname = "network-connection"; - version = "0.1.1"; - sha256 = "0v3dwq5vxmgknsiq2nddfj3gvvvaxdlfsnk0bxrqw9zzzdkpi0q1"; - libraryHaskellDepends = [ - base - bytestring - containers - network - network-bytestring - stm - ]; - description = "A wrapper around a generic stream-like connection"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "network-control" = callPackage ( { mkDerivation, @@ -474307,41 +272618,6 @@ self: { } ) { }; - "network-dbus" = callPackage ( - { - mkDerivation, - base, - binary, - bytestring, - containers, - mtl, - network, - parsec, - unix, - utf8-string, - }: - mkDerivation { - pname = "network-dbus"; - version = "0.0"; - sha256 = "024h0gfgn7hmfh90y74nf03kpvj5mg74a54lgb6clvxxfp8j64w9"; - libraryHaskellDepends = [ - base - binary - bytestring - containers - mtl - network - parsec - unix - utf8-string - ]; - description = "D-Bus"; - license = "unknown"; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "network-dns" = callPackage ( { mkDerivation, @@ -474413,32 +272689,6 @@ self: { } ) { }; - "network-enumerator" = callPackage ( - { - mkDerivation, - base, - bytestring, - enumerator, - network, - transformers, - }: - mkDerivation { - pname = "network-enumerator"; - version = "0.1.5"; - sha256 = "11hwgdw03a39k3akjy5qlg9zsb7z8qiikvdmcqr2dhj6ykmfwsvk"; - libraryHaskellDepends = [ - base - bytestring - enumerator - network - transformers - ]; - description = "Enumerators for network sockets"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "network-fancy" = callPackage ( { mkDerivation, @@ -474458,30 +272708,6 @@ self: { } ) { }; - "network-hans" = callPackage ( - { - mkDerivation, - base, - bytestring, - hans, - parsec, - }: - mkDerivation { - pname = "network-hans"; - version = "2.6.3.1"; - sha256 = "1gv1y0iz90r30rmp8g40ksf39fvgznjihy68sspahpf8r24srlwq"; - libraryHaskellDepends = [ - base - bytestring - hans - parsec - ]; - description = "HaNS to Network shims for easier HaNS integration"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "network-house" = callPackage ( { mkDerivation, @@ -474517,30 +272743,6 @@ self: { } ) { }; - "network-interfacerequest" = callPackage ( - { - mkDerivation, - base, - bytestring, - ioctl, - network, - }: - mkDerivation { - pname = "network-interfacerequest"; - version = "0.0.1"; - sha256 = "0qa5rbbcw9axg7mj4kjj027hfsclnw85cj8nmi6jvrzq2yhhk56c"; - libraryHaskellDepends = [ - base - bytestring - ioctl - network - ]; - description = "Haskell bindings for the ifreq structure"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "network-ip" = callPackage ( { mkDerivation, @@ -474587,61 +272789,6 @@ self: { } ) { }; - "network-manager-tui" = callPackage ( - { - mkDerivation, - base, - brick, - hspec, - microlens, - process, - split, - vector, - vty, - }: - mkDerivation { - pname = "network-manager-tui"; - version = "1.0.0.0"; - sha256 = "15xm6nsinf1a33h9wd06s7z8fvydn0jck6rzc5v69g51fdy8mjbg"; - isLibrary = false; - isExecutable = true; - libraryHaskellDepends = [ - base - brick - microlens - process - split - vector - vty - ]; - executableHaskellDepends = [ - base - brick - microlens - process - split - vector - vty - ]; - testHaskellDepends = [ - base - brick - hspec - microlens - process - split - vector - vty - ]; - doHaddock = false; - description = "network-manager tui"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "nmt"; - broken = true; - } - ) { }; - "network-messagepack-rpc" = callPackage ( { mkDerivation, @@ -474669,222 +272816,6 @@ self: { } ) { }; - "network-messagepack-rpc-websocket" = callPackage ( - { - mkDerivation, - async, - base, - bytestring, - data-msgpack, - envy, - hspec, - network-messagepack-rpc, - QuickCheck, - skews, - text, - websockets, - wss-client, - }: - mkDerivation { - pname = "network-messagepack-rpc-websocket"; - version = "0.1.1.1"; - sha256 = "0adkav3nl7ghbx2r7dx83ki6m397clxaw37s54ivnkxydqscjv06"; - libraryHaskellDepends = [ - base - network-messagepack-rpc - text - websockets - wss-client - ]; - testHaskellDepends = [ - async - base - bytestring - data-msgpack - envy - hspec - network-messagepack-rpc - QuickCheck - skews - text - wss-client - ]; - description = "WebSocket backend for MessagePack RPC"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "network-metrics" = callPackage ( - { - mkDerivation, - base, - binary, - bytestring, - data-default, - network, - random, - time, - }: - mkDerivation { - pname = "network-metrics"; - version = "0.4"; - sha256 = "0dvrjf84pdm42pxwc7fm4gvswc5nzmdsq7cr7ab8jyzvjqb8684c"; - libraryHaskellDepends = [ - base - binary - bytestring - data-default - network - random - time - ]; - description = "Send metrics to Ganglia, Graphite, and statsd"; - license = "unknown"; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "network-minihttp" = callPackage ( - { - mkDerivation, - base, - binary, - binary-strict, - bytestring, - containers, - filepath, - HsOpenSSL, - mtl, - network, - network-bytestring, - network-connection, - network-dns, - old-locale, - stm, - tagsoup, - time, - unix, - }: - mkDerivation { - pname = "network-minihttp"; - version = "0.2"; - sha256 = "104jfksb0xagd8am3h390avqqr3k7qgxcd0znppz4hr0p9d681f5"; - libraryHaskellDepends = [ - base - binary - binary-strict - bytestring - containers - filepath - HsOpenSSL - mtl - network - network-bytestring - network-connection - network-dns - old-locale - stm - tagsoup - time - unix - ]; - description = "A ByteString based library for writing HTTP(S) servers and clients"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "network-msg" = callPackage ( - { - mkDerivation, - base, - binary, - bytestring, - network, - unix, - }: - mkDerivation { - pname = "network-msg"; - version = "0.8"; - sha256 = "1bgad1z1syc8cripvfxa8xs2s14k39sm2mcvkpwll8gf3qdkh792"; - libraryHaskellDepends = [ - base - binary - bytestring - network - unix - ]; - description = "Recvmsg and sendmsg bindings"; - license = "unknown"; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "network-msgpack-rpc" = callPackage ( - { - mkDerivation, - async, - base, - binary, - binary-conduit, - bytestring, - conduit, - conduit-extra, - data-default-class, - data-default-instances-base, - data-msgpack, - data-msgpack-types, - exceptions, - hspec, - monad-control, - mtl, - network, - tagged, - text, - unliftio-core, - }: - mkDerivation { - pname = "network-msgpack-rpc"; - version = "0.0.6"; - sha256 = "1rris7vsls5cxagx3gx8aa3np7fld4dqyhcqczc7dwxcnkzj3c78"; - libraryHaskellDepends = [ - base - binary - binary-conduit - bytestring - conduit - conduit-extra - data-default-class - data-default-instances-base - data-msgpack - data-msgpack-types - exceptions - monad-control - mtl - network - tagged - text - unliftio-core - ]; - testHaskellDepends = [ - async - base - bytestring - hspec - mtl - network - ]; - description = "A MessagePack-RPC Implementation"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "network-multicast" = callPackage ( { mkDerivation, @@ -474906,34 +272837,6 @@ self: { } ) { }; - "network-netpacket" = callPackage ( - { - mkDerivation, - base, - bytestring, - foreign-storable-asymmetric, - ioctl, - network, - network-interfacerequest, - }: - mkDerivation { - pname = "network-netpacket"; - version = "0.0.1"; - sha256 = "12q3bqy57lj46m3l44zdk3sqkhbnqfd5cjp3qy1m5m5wxfdnmx56"; - libraryHaskellDepends = [ - base - bytestring - foreign-storable-asymmetric - ioctl - network - network-interfacerequest - ]; - description = "Haskell bindings for low-level packet sockets (AF_PACKET)"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "network-packet-linux" = callPackage ( { mkDerivation, @@ -474971,34 +272874,6 @@ self: { } ) { }; - "network-pgi" = callPackage ( - { - mkDerivation, - attoparsec, - attoparsec-enumerator, - base, - bytestring, - enumerator, - tnet, - }: - mkDerivation { - pname = "network-pgi"; - version = "0.0.1"; - sha256 = "0s0rk3q1nlic2ibcpr0px0kb8gwp2hbnra5109l71q3dr713n2yw"; - libraryHaskellDepends = [ - attoparsec - attoparsec-enumerator - base - bytestring - enumerator - tnet - ]; - description = "Library for writing PGI applications"; - license = "unknown"; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "network-protocol-xmpp" = callPackage ( { mkDerivation, @@ -475037,44 +272912,6 @@ self: { } ) { }; - "network-rpca" = callPackage ( - { - mkDerivation, - array, - base, - binary, - binary-strict, - bytestring, - codec-libevent, - containers, - control-timeout, - network, - network-bytestring, - stm, - }: - mkDerivation { - pname = "network-rpca"; - version = "0.0.1"; - sha256 = "1dhy4n0502rx66pansmgmjv8avwwbhvf23afhb98zqksqlkavdir"; - libraryHaskellDepends = [ - array - base - binary - binary-strict - bytestring - codec-libevent - containers - control-timeout - network - network-bytestring - stm - ]; - description = "A cross-platform RPC library"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "network-run_0_4_0" = callPackage ( { mkDerivation, @@ -475122,64 +272959,6 @@ self: { } ) { }; - "network-server" = callPackage ( - { - mkDerivation, - base, - network, - unix, - }: - mkDerivation { - pname = "network-server"; - version = "0.2.0"; - sha256 = "0iijgw07b5g3rcd4va98pb4hdkk912c67y2d1lkz03bfyq75b6xk"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - network - unix - ]; - executableHaskellDepends = [ - base - network - unix - ]; - description = "A light abstraction over sockets & co. for servers"; - license = "GPL"; - hydraPlatforms = lib.platforms.none; - mainProgram = "example"; - broken = true; - } - ) { }; - - "network-service" = callPackage ( - { - mkDerivation, - base, - base64-bytestring, - bytestring, - network, - }: - mkDerivation { - pname = "network-service"; - version = "0.1.0.0"; - sha256 = "1js0p0i27fj8rjnq54pcq97bgvhdx7jpwj1ghqmdwpvhn8ds07p4"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - base64-bytestring - bytestring - network - ]; - description = "Provide a service at the data type level"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "network-simple" = callPackage ( { mkDerivation, @@ -475209,35 +272988,6 @@ self: { } ) { }; - "network-simple-sockaddr" = callPackage ( - { - mkDerivation, - base, - bytestring, - directory, - exceptions, - network, - transformers, - }: - mkDerivation { - pname = "network-simple-sockaddr"; - version = "0.2"; - sha256 = "0c7jjdpzvbpg29njr1w0kn26m3pxa8q1z3sh7bfh933spnvqm52x"; - libraryHaskellDepends = [ - base - bytestring - directory - exceptions - network - transformers - ]; - description = "network-simple for resolved addresses"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "network-simple-tls" = callPackage ( { mkDerivation, @@ -475337,115 +273087,6 @@ self: { } ) { }; - "network-socket-options" = callPackage ( - { - mkDerivation, - base, - network, - }: - mkDerivation { - pname = "network-socket-options"; - version = "0.2.0.1"; - sha256 = "00qf22nwzsv8229gb7yqaaafiz573xl4v78mn1zf9ajvwzvwb63r"; - libraryHaskellDepends = [ - base - network - ]; - description = "Type-safe, portable alternative to getSocketOption/setSocketOption"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "network-stream" = callPackage ( - { - mkDerivation, - base, - binary, - bytestring, - cereal, - enumerator, - network, - stm, - text, - transformers, - }: - mkDerivation { - pname = "network-stream"; - version = "0.1.0"; - sha256 = "1y7c2m8yrkb67iqqv6sjbxxmhlnv0s6k82lv9f6wk4mhckcsc5n1"; - libraryHaskellDepends = [ - base - binary - bytestring - cereal - enumerator - network - stm - text - transformers - ]; - description = "ByteString and Text streams for networking"; - license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "network-topic-models" = callPackage ( - { - mkDerivation, - base, - bayes-stack, - bimap, - bytestring, - cereal, - containers, - deepseq, - directory, - filepath, - logfloat, - mwc-random, - optparse-applicative, - random-fu, - statistics, - stm, - text, - transformers, - vector, - }: - mkDerivation { - pname = "network-topic-models"; - version = "0.2.0.1"; - sha256 = "1l5m9f08aizrxxkv2dspv8swf558cch6vx4gyzs6qs6826v9q32b"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - bayes-stack - bimap - bytestring - cereal - containers - deepseq - directory - filepath - logfloat - mwc-random - optparse-applicative - random-fu - statistics - stm - text - transformers - vector - ]; - description = "A few network topic model implementations for bayes-stack"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "network-transport" = callPackage ( { mkDerivation, @@ -475473,66 +273114,6 @@ self: { } ) { }; - "network-transport-amqp" = callPackage ( - { - mkDerivation, - amqp, - async, - base, - bytestring, - cereal, - containers, - exceptions, - lens-family, - lens-family-th, - network-transport, - network-transport-tests, - stm, - stm-chans, - string-conv, - tasty, - tasty-hunit, - text, - uuid, - }: - mkDerivation { - pname = "network-transport-amqp"; - version = "0.1.0.0"; - sha256 = "1165xl5g8m423y4nvzwpihzrv6nc9y2dyr6dm4sqp6n1bw4dqqdq"; - revision = "2"; - editedCabalFile = "1m0jn7p8pmm8s9p0bz7mz8356rrs0a6q620925qd2max0fsi0i3j"; - libraryHaskellDepends = [ - amqp - async - base - bytestring - cereal - containers - exceptions - lens-family - lens-family-th - network-transport - stm - stm-chans - string-conv - text - uuid - ]; - testHaskellDepends = [ - amqp - base - network-transport - network-transport-tests - tasty - tasty-hunit - ]; - description = "AMQP-based transport layer for distributed-process (aka Cloud Haskell)"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "network-transport-composed" = callPackage ( { mkDerivation, @@ -475850,53 +273431,14 @@ self: { version = "0.1"; sha256 = "0qmn1dj2frz1f8k9pnyqrsr8rn3gfy1ywhw6gcnyzgvfp36k7a25"; revision = "2"; - editedCabalFile = "1va2q0j8nlmpg1x31ivgxaihzrj3lck153nkxp8q75p2zx0xyp5k"; - libraryHaskellDepends = [ - network - network-uri - ]; - doHaddock = false; - description = "Pseudo-package encapsulating flag(network-uri) Cabal boilerplate"; - license = lib.licenses.bsd3; - } - ) { }; - - "network-uri-json" = callPackage ( - { - mkDerivation, - aeson, - base, - hspec, - hspec-discover, - network-arbitrary, - network-uri, - test-invariant, - text, - }: - mkDerivation { - pname = "network-uri-json"; - version = "0.4.0.0"; - sha256 = "1hnsk8xsa89p4ywvyb4xfdk3l16mlhmb73sy1vbgckc7mlv3mmb4"; + editedCabalFile = "1va2q0j8nlmpg1x31ivgxaihzrj3lck153nkxp8q75p2zx0xyp5k"; libraryHaskellDepends = [ - aeson - base - network-uri - text - ]; - testHaskellDepends = [ - aeson - base - hspec - network-arbitrary + network network-uri - test-invariant - text ]; - testToolDepends = [ hspec-discover ]; - description = "FromJSON and ToJSON Instances for Network.URI"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; + doHaddock = false; + description = "Pseudo-package encapsulating flag(network-uri) Cabal boilerplate"; + license = lib.licenses.bsd3; } ) { }; @@ -475945,62 +273487,6 @@ self: { } ) { }; - "network-voicetext" = callPackage ( - { - mkDerivation, - base, - bytestring, - exceptions, - http-client-tls, - http-conduit, - http-types, - resourcet, - transformers, - utf8-string, - }: - mkDerivation { - pname = "network-voicetext"; - version = "0.0.0.1"; - sha256 = "0fhmrif3liw61f17kl6208m4bhvdy57h9cpzdnv0af0rjnxgr7ki"; - libraryHaskellDepends = [ - base - bytestring - exceptions - http-client-tls - http-conduit - http-types - resourcet - transformers - utf8-string - ]; - description = "VoiceText Web API wrapper"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "network-wai-router" = callPackage ( - { - mkDerivation, - base, - wai, - }: - mkDerivation { - pname = "network-wai-router"; - version = "0.3.0.1"; - sha256 = "1fnqc1vbahy6zy632s9kam8bv7108bhmynyh2iwkqb7ybkkj37i9"; - libraryHaskellDepends = [ - base - wai - ]; - description = "A routing library for wai"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "network-wait" = callPackage ( { mkDerivation, @@ -476075,171 +273561,6 @@ self: { } ) { }; - "network-websocket" = callPackage ( - { - mkDerivation, - base, - haskell98, - network, - webserver, - }: - mkDerivation { - pname = "network-websocket"; - version = "0.3"; - sha256 = "053qrlm2bd14mlcvlh64awsqsgn355nkr13k9h4dnfabafymkkbm"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - haskell98 - network - webserver - ]; - description = "WebSocket library"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "networked-game" = callPackage ( - { - mkDerivation, - base, - binary, - bytestring, - containers, - network, - time, - transformers, - }: - mkDerivation { - pname = "networked-game"; - version = "0.1.0.1"; - sha256 = "12sy97cgqrsmqywh0cznp8wbsw8z2yahlfalsjy32qarcz44banz"; - revision = "4"; - editedCabalFile = "1rcqsw6f6b1a7sfk38hvil0278cxsq071jwwvfcsi6qhy6kb4jh0"; - libraryHaskellDepends = [ - base - binary - bytestring - containers - network - time - transformers - ]; - description = "Networked-game support library"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "neural" = callPackage ( - { - mkDerivation, - ad, - ansi-terminal, - array, - attoparsec, - base, - bytestring, - containers, - criterion, - deepseq, - directory, - doctest, - filepath, - ghc-typelits-natnormalise, - Glob, - hspec, - JuicyPixels, - kan-extensions, - lens, - monad-par, - monad-par-extras, - MonadRandom, - mtl, - parallel, - pipes, - pipes-bytestring, - pipes-safe, - pipes-zlib, - profunctors, - random, - reflection, - STMonadTrans, - text, - transformers, - typelits-witnesses, - vector, - vector-sized, - }: - mkDerivation { - pname = "neural"; - version = "0.3.0.1"; - sha256 = "0smv57gd2k24hmh7qj1kdd7x76mgc6bjbjl7cmrncxwibz98j41v"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - ad - array - base - bytestring - containers - deepseq - directory - filepath - ghc-typelits-natnormalise - hspec - kan-extensions - lens - monad-par - monad-par-extras - MonadRandom - mtl - parallel - pipes - pipes-bytestring - pipes-safe - profunctors - random - reflection - STMonadTrans - text - transformers - typelits-witnesses - vector - vector-sized - ]; - executableHaskellDepends = [ - ansi-terminal - array - attoparsec - base - JuicyPixels - MonadRandom - pipes - pipes-zlib - text - ]; - testHaskellDepends = [ - base - doctest - Glob - hspec - MonadRandom - ]; - benchmarkHaskellDepends = [ - base - criterion - ]; - description = "Neural Networks in native Haskell"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "neural-network-base" = callPackage ( { mkDerivation, @@ -476259,88 +273580,6 @@ self: { } ) { }; - "neural-network-blashs" = callPackage ( - { - mkDerivation, - base, - blas-hs, - constraints, - ghc-prim, - hmatrix, - hspec, - mtl, - mwc-random, - neural-network-base, - QuickCheck, - vector, - }: - mkDerivation { - pname = "neural-network-blashs"; - version = "0.1.0.0"; - sha256 = "02nlj4v34hmjjw390ww9dm68q40mnnc0vnjl26z8yh5frf9cx5x5"; - libraryHaskellDepends = [ - base - blas-hs - constraints - ghc-prim - mtl - mwc-random - neural-network-base - vector - ]; - testHaskellDepends = [ - base - blas-hs - hmatrix - hspec - neural-network-base - QuickCheck - vector - ]; - description = "Yet Another High Performance and Extendable Neural Network in Haskell"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "neural-network-hmatrix" = callPackage ( - { - mkDerivation, - base, - blas, - deepseq, - hmatrix, - hmatrix-gsl, - mtl, - mwc-random, - neural-network-base, - parallel, - vector, - }: - mkDerivation { - pname = "neural-network-hmatrix"; - version = "0.1.0.0"; - sha256 = "0qa8jha85nzqs4xrnrn8aq4azcigd1x8p0nlvfk8mgfa3mi8znxl"; - libraryHaskellDepends = [ - base - deepseq - hmatrix - hmatrix-gsl - mtl - mwc-random - neural-network-base - parallel - vector - ]; - librarySystemDepends = [ blas ]; - description = "Yet Another High Performance and Extendable Neural Network in Haskell"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { inherit (pkgs) blas; }; - "neuron" = callPackage ( { mkDerivation, @@ -476589,91 +273828,6 @@ self: { } ) { }; - "newhope" = callPackage ( - { - mkDerivation, - AES, - base, - bytestring, - containers, - deepseq, - hspec, - HUnit, - mtl, - parallel, - QuickCheck, - raw-strings-qq, - statistics, - system-fileio, - system-filepath, - tasty, - tasty-expected-failure, - tasty-hunit, - tasty-quickcheck, - text, - trifecta, - vector, - }: - mkDerivation { - pname = "newhope"; - version = "0.1.0.0"; - sha256 = "1yqxdir74mdi2dkccl1wcr2xzxrvg6y8ssskdq0laxb3q8xyzpwa"; - revision = "1"; - editedCabalFile = "18508knx0m46k9wpcxdvb1kahg5vrqc734ifwam9q5kljpm9l0sy"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - AES - base - bytestring - containers - deepseq - mtl - vector - ]; - executableHaskellDepends = [ - AES - base - bytestring - containers - deepseq - mtl - system-fileio - system-filepath - tasty-quickcheck - text - vector - ]; - testHaskellDepends = [ - AES - base - bytestring - containers - deepseq - hspec - HUnit - mtl - parallel - QuickCheck - raw-strings-qq - statistics - system-fileio - system-filepath - tasty - tasty-expected-failure - tasty-hunit - tasty-quickcheck - text - trifecta - vector - ]; - description = "Library implementing the NewHope cryptographic key-exchange protocol"; - license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "newline" = callPackage ( { mkDerivation, @@ -476697,153 +273851,6 @@ self: { } ) { }; - "newports" = callPackage ( - { - mkDerivation, - base, - directory, - old-time, - }: - mkDerivation { - pname = "newports"; - version = "1.1"; - sha256 = "1paxqr8rm8lbp0896qsd7v76c0kahkk6fngpcdzswbrqpyqhwjwc"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - directory - old-time - ]; - description = "List ports newer than N days on a FreeBSD system"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "newports"; - broken = true; - } - ) { }; - - "newsletter" = callPackage ( - { - mkDerivation, - aeson, - base, - blaze-html, - bytestring, - clientsession, - email-validate, - http-api-data, - lens, - machines, - mime-mail, - mtl, - network-uri, - psqueues, - random, - servant, - servant-blaze, - servant-server, - stm, - text, - time, - unordered-containers, - warp, - }: - mkDerivation { - pname = "newsletter"; - version = "0"; - sha256 = "1cpc0g8bzx7dzvvs3pn76q8y7fkcz2jbh26jfss8bpfy5rwnfmd1"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson - base - blaze-html - bytestring - clientsession - email-validate - http-api-data - lens - machines - mime-mail - mtl - network-uri - psqueues - random - servant - servant-blaze - servant-server - stm - text - time - unordered-containers - ]; - executableHaskellDepends = [ - aeson - base - blaze-html - bytestring - clientsession - email-validate - http-api-data - lens - machines - mime-mail - mtl - network-uri - psqueues - random - servant - servant-blaze - servant-server - stm - text - time - unordered-containers - warp - ]; - description = "A basic newsletter implimentation, using various backends"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "newsletter-server"; - broken = true; - } - ) { }; - - "newsletter-mailgun" = callPackage ( - { - mkDerivation, - base, - exceptions, - lens, - machines, - mailgun, - mime-mail, - mtl, - newsletter, - text, - }: - mkDerivation { - pname = "newsletter-mailgun"; - version = "0"; - sha256 = "1xzi6kb1mvvj0541l3dvyxwhlhwhw7iyrxqw585lhhinqzkp6zy0"; - libraryHaskellDepends = [ - base - exceptions - lens - machines - mailgun - mime-mail - mtl - newsletter - text - ]; - description = "A mailgun backend for the newsletter package"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "newsynth" = callPackage ( { mkDerivation, @@ -476881,57 +273888,6 @@ self: { license = lib.licenses.gpl3Only; hydraPlatforms = lib.platforms.none; mainProgram = "gridsynth"; - } - ) { }; - - "newt" = callPackage ( - { - mkDerivation, - array, - base, - bytestring, - cmdargs, - containers, - directory, - filemanip, - filepath, - mtl, - process, - safe, - text, - Unixutils, - }: - mkDerivation { - pname = "newt"; - version = "0.0.3.1"; - sha256 = "0amhpvqqy8pan3vihjvpkd25jz3m4syavw4l15cvqny8mhrxbvpj"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - array - base - bytestring - cmdargs - containers - directory - filemanip - filepath - mtl - process - safe - text - Unixutils - ]; - executableHaskellDepends = [ - base - cmdargs - containers - mtl - ]; - description = "A trivially simple app to create things from simple templates"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "newt"; broken = true; } ) { }; @@ -476950,35 +273906,6 @@ self: { } ) { }; - "newtype-deriving" = callPackage ( - { - mkDerivation, - base, - base-prelude, - monad-control, - template-haskell, - transformers, - transformers-base, - }: - mkDerivation { - pname = "newtype-deriving"; - version = "0.1.4"; - sha256 = "1qlpavsjbicldinrkbg3rnn784zxqgxc4dn344qslnbwmlrj1xhl"; - libraryHaskellDepends = [ - base - base-prelude - monad-control - template-haskell - transformers - transformers-base - ]; - description = "Instance derivers for newtype wrappers"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "newtype-generics" = callPackage ( { mkDerivation, @@ -477010,34 +273937,6 @@ self: { } ) { }; - "newtype-th" = callPackage ( - { - mkDerivation, - base, - haskell-src-meta, - newtype, - syb, - template-haskell, - }: - mkDerivation { - pname = "newtype-th"; - version = "0.3.3"; - sha256 = "1slgphymjxzbxxgsilfijkhiwapfy2gkhkby2dxqj107v4s0788k"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base - haskell-src-meta - newtype - syb - template-haskell - ]; - description = "A template haskell deriver to create Control.Newtype instances."; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "newtype-zoo" = callPackage ( { mkDerivation, @@ -477090,57 +273989,6 @@ self: { } ) { }; - "next-ref" = callPackage ( - { - mkDerivation, - base, - hspec, - stm, - }: - mkDerivation { - pname = "next-ref"; - version = "0.1.0.2"; - sha256 = "17vq4hn6m9wjd06h6px770zjkzfb1mk047a18zb3vmfm2xfg31m5"; - libraryHaskellDepends = [ - base - stm - ]; - testHaskellDepends = [ - base - hspec - ]; - description = "A concurrency primitive for a slow consumer"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "nextstep-plist" = callPackage ( - { - mkDerivation, - base, - parsec, - pretty, - QuickCheck, - }: - mkDerivation { - pname = "nextstep-plist"; - version = "0.0.1"; - sha256 = "0wld4nc6hcv642km60vvjyclsfwnpfavq59mqm8fm3a73al4csyw"; - libraryHaskellDepends = [ - base - parsec - pretty - QuickCheck - ]; - description = "NextStep style plist parser and printer"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "nf" = callPackage ( { mkDerivation, @@ -477227,45 +274075,6 @@ self: { } ) { }; - "ngrams-loader" = callPackage ( - { - mkDerivation, - attoparsec, - base, - machines, - mtl, - parseargs, - resourcet, - sqlite-simple, - text, - }: - mkDerivation { - pname = "ngrams-loader"; - version = "0.1.0.1"; - sha256 = "0z26mpk1q7hnx4vkcyfwy6pbm7nm76ydm04z3vk598q2ifq5vmpd"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - attoparsec - base - machines - mtl - resourcet - sqlite-simple - text - ]; - executableHaskellDepends = [ - base - parseargs - ]; - description = "Ngrams loader based on http://www.ngrams.info format"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - mainProgram = "ngrams-loader"; - broken = true; - } - ) { }; - "ngx-export" = callPackage ( { mkDerivation, @@ -477538,146 +274347,6 @@ self: { } ) { }; - "niagra" = callPackage ( - { - mkDerivation, - base, - ghc-prim, - HUnit, - mtl, - primitive, - QuickCheck, - text, - transformers, - }: - mkDerivation { - pname = "niagra"; - version = "0.2.5"; - sha256 = "0zmnwqqk03355s0mjlabsfyai10fhhjlynb502bzgzk2g94zkgr3"; - libraryHaskellDepends = [ - base - ghc-prim - mtl - primitive - text - transformers - ]; - testHaskellDepends = [ - base - HUnit - QuickCheck - ]; - description = "High performance CSS EDSL"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "nibblestring" = callPackage ( - { - mkDerivation, - ansi-wl-pprint, - base, - base16-bytestring, - bytestring, - containers, - HUnit, - test-framework, - test-framework-hunit, - }: - mkDerivation { - pname = "nibblestring"; - version = "0.0.3"; - sha256 = "0ijcv7ph09mmllly09jgigwiq64m05c7qkq2riki3mbza2skxbrr"; - libraryHaskellDepends = [ - ansi-wl-pprint - base - base16-bytestring - bytestring - ]; - testHaskellDepends = [ - base - base16-bytestring - bytestring - containers - HUnit - test-framework - test-framework-hunit - ]; - description = "Packed, strict nibble arrays with a list interface (ByteString for nibbles)"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "nice-html" = callPackage ( - { - mkDerivation, - base, - bifunctors, - blaze-html, - blaze-markup, - bytestring, - containers, - criterion, - data-default-class, - deepseq, - free, - lens, - lucid, - pretty-show, - recursion-schemes, - shakespeare, - template-haskell, - text, - transformers, - type-of-html, - vector, - weigh, - }: - mkDerivation { - pname = "nice-html"; - version = "0.4.1"; - sha256 = "117wrpg4fgh69bqgdr9jmj68izd4jk28lx91pvsj2425ajhdfsma"; - libraryHaskellDepends = [ - base - bifunctors - blaze-markup - bytestring - containers - data-default-class - deepseq - free - lens - recursion-schemes - template-haskell - text - transformers - vector - ]; - benchmarkHaskellDepends = [ - base - blaze-html - blaze-markup - bytestring - criterion - lucid - pretty-show - shakespeare - text - transformers - type-of-html - weigh - ]; - description = "A fast and nice HTML templating library with distinct compilation/rendering phases"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "nicify" = callPackage ( { mkDerivation, @@ -477721,124 +274390,6 @@ self: { } ) { }; - "nicovideo-translator" = callPackage ( - { - mkDerivation, - aeson, - async, - base, - bytestring, - case-insensitive, - cmdargs, - containers, - dns, - http-client, - http-types, - iso639, - lens, - lens-aeson, - setlocale, - text, - text-format, - unordered-containers, - wai, - warp, - wreq, - xml-conduit, - }: - mkDerivation { - pname = "nicovideo-translator"; - version = "0.3.0.0"; - sha256 = "1qhsm39d20s38pxs0ckkcqfmdd57h6zg2z85mlj8prgjxzx1zq0z"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson - async - base - bytestring - case-insensitive - cmdargs - containers - dns - http-client - http-types - iso639 - lens - lens-aeson - setlocale - text - text-format - unordered-containers - wai - warp - wreq - xml-conduit - ]; - executableHaskellDepends = [ base ]; - description = "Nico Nico Douga (ニコニコ動画) Comment Translator"; - license = lib.licenses.agpl3Only; - hydraPlatforms = lib.platforms.none; - mainProgram = "nicovideo-translator"; - broken = true; - } - ) { }; - - "nikepub" = callPackage ( - { - mkDerivation, - base, - containers, - filepath, - GoogleChart, - haskell98, - haxr, - hs-twitter, - HStringTemplate, - HTTP, - hxt, - json, - network, - old-locale, - old-time, - regex-compat, - regex-posix, - syb, - time, - }: - mkDerivation { - pname = "nikepub"; - version = "1.1.2"; - sha256 = "1w7cvkh36p7i9n62rvfh6nlr8z16hds06fbr1lpvbc84ymci75v0"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - containers - filepath - GoogleChart - haskell98 - haxr - hs-twitter - HStringTemplate - HTTP - hxt - json - network - old-locale - old-time - regex-compat - regex-posix - syb - time - ]; - description = "Command line utility publishes Nike+ runs on blogs and Twitter"; - license = "LGPL"; - hydraPlatforms = lib.platforms.none; - mainProgram = "nikepub"; - } - ) { }; - "nimber" = callPackage ( { mkDerivation, @@ -477858,179 +274409,6 @@ self: { } ) { }; - "nirum" = callPackage ( - { - mkDerivation, - base, - blaze-html, - blaze-markup, - bytestring, - cmark-gfm, - containers, - directory, - email-validate, - filepath, - fsnotify, - heterocephalus, - hlint, - hspec, - hspec-core, - hspec-meta, - htoml, - hxt, - interpolatedstring-perl6, - megaparsec, - mtl, - optparse-applicative, - parsec, - pretty, - process, - semigroups, - semver, - shakespeare, - stm, - string-qq, - template-haskell, - temporary, - text, - turtle, - unordered-containers, - uri, - }: - mkDerivation { - pname = "nirum"; - version = "0.5.0"; - sha256 = "1d754gn0ndfns4490ffiygiwqym8i8ikfabd5mf6yg86arimmvjc"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - blaze-html - blaze-markup - bytestring - cmark-gfm - containers - directory - email-validate - filepath - fsnotify - heterocephalus - htoml - interpolatedstring-perl6 - megaparsec - mtl - optparse-applicative - parsec - pretty - semver - shakespeare - stm - template-haskell - text - unordered-containers - uri - ]; - executableHaskellDepends = [ - base - blaze-html - bytestring - containers - directory - email-validate - filepath - htoml - interpolatedstring-perl6 - megaparsec - mtl - parsec - pretty - semver - text - unordered-containers - ]; - testHaskellDepends = [ - base - blaze-html - bytestring - containers - directory - email-validate - filepath - hlint - hspec - hspec-core - hspec-meta - htoml - hxt - interpolatedstring-perl6 - megaparsec - mtl - parsec - pretty - process - semigroups - semver - string-qq - temporary - text - turtle - unordered-containers - ]; - description = "IDL compiler and RPC/distributed object framework for microservices"; - license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - mainProgram = "nirum"; - } - ) { }; - - "nist-beacon" = callPackage ( - { - mkDerivation, - base, - bytestring, - http-conduit, - xml, - }: - mkDerivation { - pname = "nist-beacon"; - version = "0.2.0.0"; - sha256 = "0b3jv6axmfmi2pgk9xv0ay8my3kb2qwbw47x1jp9lax95n4pz5py"; - revision = "1"; - editedCabalFile = "08hgvqbb13n2scs4shqjdyzm7kblgllndk0429pdiwdx21k5391q"; - libraryHaskellDepends = [ - base - bytestring - http-conduit - xml - ]; - description = "Haskell interface to the nist random beacon"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "nitro" = callPackage ( - { - mkDerivation, - base, - bytestring, - }: - mkDerivation { - pname = "nitro"; - version = "0.2.2.5"; - sha256 = "17aqzk1kq670fwawia0qjmd8ld1b0h8zh0w8j8x4y48hlzyb75xb"; - libraryHaskellDepends = [ - base - bytestring - ]; - description = "Haskell bindings for Nitro"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "niv" = callPackage ( { mkDerivation, @@ -478135,43 +274513,6 @@ self: { } ) { }; - "nix-delegate" = callPackage ( - { - mkDerivation, - base, - bytestring, - foldl, - managed, - neat-interpolation, - optparse-applicative, - text, - turtle, - }: - mkDerivation { - pname = "nix-delegate"; - version = "1.0.1"; - sha256 = "00wyzj4xck0kjn3151q9crsycgh26nvg56567c0ifdr0s5h5f00w"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - bytestring - foldl - managed - neat-interpolation - optparse-applicative - text - turtle - ]; - executableHaskellDepends = [ base ]; - description = "Convenient utility for distributed Nix builds"; - license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; - mainProgram = "nix-delegate"; - broken = true; - } - ) { }; - "nix-deploy" = callPackage ( { mkDerivation, @@ -478353,41 +274694,6 @@ self: { } ) { }; - "nix-eval" = callPackage ( - { - mkDerivation, - base, - hindent, - process, - QuickCheck, - strict, - tasty, - tasty-quickcheck, - }: - mkDerivation { - pname = "nix-eval"; - version = "0.4.1.0"; - sha256 = "12krdqvkfxk587nnnddwmch5v0gpyfhmhjiwyjbf60aby0yj0xb4"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base - hindent - process - strict - ]; - testHaskellDepends = [ - base - QuickCheck - tasty - tasty-quickcheck - ]; - description = "Evaluate Haskell expressions using Nix to get packages"; - license = "GPL"; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "nix-freeze-tree" = callPackage ( { mkDerivation, @@ -478724,103 +275030,6 @@ self: { } ) { }; - "nix-tools" = callPackage ( - { - mkDerivation, - aeson, - base, - base16-bytestring, - bytestring, - Cabal, - containers, - cryptohash-sha256, - data-fix, - deepseq, - directory, - extra, - filepath, - hackage-db, - hnix, - hpack, - http-client, - http-client-tls, - http-types, - microlens, - microlens-aeson, - optparse-applicative, - prettyprinter, - process, - tar, - text, - time, - transformers, - unordered-containers, - vector, - yaml, - zlib, - }: - mkDerivation { - pname = "nix-tools"; - version = "0.1.0.0"; - sha256 = "09cwqxqj8hqf72d0ix9qim9b5gbzgqjkq7lvwg3w59zik8j7r7qk"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson - base - base16-bytestring - bytestring - Cabal - cryptohash-sha256 - data-fix - deepseq - directory - filepath - hnix - hpack - process - text - transformers - unordered-containers - ]; - executableHaskellDepends = [ - aeson - base - base16-bytestring - bytestring - Cabal - containers - cryptohash-sha256 - data-fix - directory - extra - filepath - hackage-db - hnix - hpack - http-client - http-client-tls - http-types - microlens - microlens-aeson - optparse-applicative - prettyprinter - tar - text - time - transformers - unordered-containers - vector - yaml - zlib - ]; - description = "cabal/stack to nix translation tools"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "nix-tree" = callPackage ( { mkDerivation, @@ -478899,62 +275108,6 @@ self: { } ) { }; - "nixdu" = callPackage ( - { - mkDerivation, - aeson, - async, - base, - brick, - containers, - deepseq, - directory, - filepath, - hashable, - hrfsize, - lens, - parallel, - protolude, - text, - transformers, - typed-process, - unordered-containers, - vty, - }: - mkDerivation { - pname = "nixdu"; - version = "0.1.0.0"; - sha256 = "1a9ng3xaiddnmfjzd1dsmxf87114n6ga43w8hsij06p0la84mqq5"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - aeson - async - base - brick - containers - deepseq - directory - filepath - hashable - hrfsize - lens - parallel - protolude - text - transformers - typed-process - unordered-containers - vty - ]; - description = "Interactively browse a Nix store paths dependencies"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "nixdu"; - broken = true; - } - ) { }; - "nixfmt" = callPackage ( { mkDerivation, @@ -478999,83 +275152,6 @@ self: { } ) { }; - "nixfromnpm" = callPackage ( - { - mkDerivation, - aeson, - ansi-terminal, - base, - bytestring, - classy-prelude, - containers, - curl, - data-default, - data-fix, - directory, - hnix, - lifted-base, - MissingH, - monad-control, - mtl, - network-uri, - optparse-applicative, - parsec, - semver-range, - SHA, - shelly, - system-filepath, - temporary, - text, - text-render, - transformers, - unix, - unordered-containers, - }: - mkDerivation { - pname = "nixfromnpm"; - version = "0.10.1"; - sha256 = "1zjak2py3q59mafh68ds5b9yai425hylc7p0x9ccrhid0y3rpl5y"; - isLibrary = false; - isExecutable = true; - enableSeparateDataOutput = true; - executableHaskellDepends = [ - aeson - ansi-terminal - base - bytestring - classy-prelude - containers - curl - data-default - data-fix - directory - hnix - lifted-base - MissingH - monad-control - mtl - network-uri - optparse-applicative - parsec - semver-range - SHA - shelly - system-filepath - temporary - text - text-render - transformers - unix - unordered-containers - ]; - description = "Generate nix expressions from npm packages"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - mainProgram = "nixfromnpm"; - broken = true; - } - ) { }; - "nixos-types" = callPackage ( { mkDerivation }: mkDerivation { @@ -479326,42 +275402,6 @@ self: { } ) { }; - "nkjp" = callPackage ( - { - mkDerivation, - base, - bytestring, - containers, - data-named, - filepath, - polysoup, - tar, - text, - zlib, - }: - mkDerivation { - pname = "nkjp"; - version = "0.4.0"; - sha256 = "1i9q0xyfqi3cv29k8yflrg34hgblxfyj2dqr1zjg20jpymsfi06l"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - bytestring - containers - data-named - filepath - polysoup - tar - text - zlib - ]; - description = "Manipulating the National Corpus of Polish (NKJP)"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "nlopt-haskell" = callPackage ( { mkDerivation, @@ -479387,125 +275427,6 @@ self: { } ) { inherit (pkgs) nlopt; }; - "nlp-scores" = callPackage ( - { - mkDerivation, - base, - containers, - strict, - }: - mkDerivation { - pname = "nlp-scores"; - version = "0.7.0"; - sha256 = "0cxa6f4y3416hlal4wnqf0qpq82zj9x58nprnaw3s2kdxxav0d9m"; - libraryHaskellDepends = [ - base - containers - strict - ]; - description = "Scoring functions commonly used for evaluation in NLP and IR"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "nlp-scores-scripts" = callPackage ( - { - mkDerivation, - base, - containers, - nlp-scores, - split, - text, - }: - mkDerivation { - pname = "nlp-scores-scripts"; - version = "0.2.0.0"; - sha256 = "02jisx8slzzljv77d931b169hxq6i6ajg5ly9a37g13q9h75gd2c"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - containers - nlp-scores - split - text - ]; - description = "NLP scoring command-line programs"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "nm" = - callPackage - ( - { - mkDerivation, - base, - g, - glib, - libnm-glib, - nm-glib, - vector, - }: - mkDerivation { - pname = "nm"; - version = "1.0.1"; - sha256 = "028p25pb2cqlvrydy87y26rinvypbq0lnphd59k3zaxvxxikqwf1"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - vector - ]; - librarySystemDepends = [ - g - nm-glib - ]; - libraryPkgconfigDepends = [ - glib - libnm-glib - ]; - executableHaskellDepends = [ base ]; - description = "Network Manager, binding to libnm-glib"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "nm-demo"; - broken = true; - } - ) - { - g = null; - inherit (pkgs) glib; - libnm-glib = null; - nm-glib = null; - }; - - "nme" = callPackage ( - { - mkDerivation, - base, - bytestring, - utf8-string, - }: - mkDerivation { - pname = "nme"; - version = "0.2"; - sha256 = "14qzc4af1pm1myjdfs7z4b1jxxj0gz9c4cl9qgpm06hjzvjjf8wm"; - libraryHaskellDepends = [ - base - bytestring - utf8-string - ]; - description = "Bindings to the Nyctergatis Markup Engine"; - license = "unknown"; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "nmis-parser" = callPackage ( { mkDerivation, @@ -479534,755 +275455,106 @@ self: { } ) { Nmis = null; }; - "nn" = callPackage ( - { - mkDerivation, - base, - random, - split, - tasty, - tasty-hspec, - tasty-quickcheck, - }: - mkDerivation { - pname = "nn"; - version = "0.2.0"; - sha256 = "1jl267495x7rc34x35dzrwb05z57w1w97vzgj774ld6z2w1yri7l"; - libraryHaskellDepends = [ - base - random - split - ]; - testHaskellDepends = [ - base - tasty - tasty-hspec - tasty-quickcheck - ]; - description = "A tiny neural network"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "nntp" = callPackage ( - { - mkDerivation, - base, - bytestring, - monad-loops, - mtl, - network, - old-locale, - parsec, - time, - }: - mkDerivation { - pname = "nntp"; - version = "0.0.4"; - sha256 = "1yg91zai4krxx7yqzskss19jjgh4nvc2vqzddvpwsdm07lri8g35"; - libraryHaskellDepends = [ - base - bytestring - monad-loops - mtl - network - old-locale - parsec - time - ]; - description = "Library to connect to an NNTP Server"; - license = "LGPL"; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "no-buffering-workaround" = callPackage ( { mkDerivation, base }: - mkDerivation { - pname = "no-buffering-workaround"; - version = "0.1.0.0"; - sha256 = "19yswbnwwfp7n33irdk12vggczhxp198cjd68jdbaz1wcd00ryld"; - libraryHaskellDepends = [ base ]; - description = "Workaround for GHC bug #2189"; - license = lib.licenses.asl20; - } - ) { }; - - "no-recursion" = callPackage ( - { - mkDerivation, - base, - Cabal, - cabal-doctest, - doctest, - ghc, - }: - mkDerivation { - pname = "no-recursion"; - version = "0.1.2.3"; - sha256 = "1zds0fz29k5iypksqkizhggsxw1ndc5y8ilf4j9hsm084kqidfhz"; - setupHaskellDepends = [ - base - Cabal - cabal-doctest - ]; - libraryHaskellDepends = [ - base - ghc - ]; - testHaskellDepends = [ - base - doctest - ]; - description = "A GHC plugin to remove support for recursion"; - license = lib.licenses.agpl3Plus; - maintainers = [ lib.maintainers.sellout ]; - } - ) { }; - - "no-role-annots" = callPackage ( - { - mkDerivation, - base, - template-haskell, - }: - mkDerivation { - pname = "no-role-annots"; - version = "1.1"; - sha256 = "1kk9ii5w40di3azlqzbz4vkvwdz8apca0lh4jn94nvr3hns6l5s7"; - libraryHaskellDepends = [ - base - template-haskell - ]; - testHaskellDepends = [ - base - template-haskell - ]; - description = "Role annotations without -XRoleAnnotations"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "no-value" = callPackage ( - { mkDerivation, base }: - mkDerivation { - pname = "no-value"; - version = "1.0.0.0"; - sha256 = "1jczx8d4ah74wiishdcv335hlr0330wwq0vfb5rv4gmrvbpkgllf"; - libraryHaskellDepends = [ base ]; - description = "A type class for choosing sentinel-like values"; - license = lib.licenses.bsd3; - } - ) { }; - - "noether" = callPackage ( - { - mkDerivation, - array, - async, - base, - bytestring, - containers, - criterion, - deepseq, - ghc-prim, - hashable, - hedgehog, - mtl, - mtl-compat, - pretty-show, - safe, - stm, - text, - transformers, - vector, - }: - mkDerivation { - pname = "noether"; - version = "0.0.1"; - sha256 = "1dc05qkbakw4gkqh3yh76lxdk0ab1k8milwjwgkibp4bs61f8rc8"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - array - async - base - bytestring - containers - deepseq - ghc-prim - hashable - mtl - mtl-compat - pretty-show - safe - stm - text - transformers - vector - ]; - executableHaskellDepends = [ base ]; - testHaskellDepends = [ - base - hedgehog - ]; - benchmarkHaskellDepends = [ - base - criterion - ]; - description = "Math in Haskell"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - mainProgram = "noether"; - broken = true; - } - ) { }; - - "nofib-analyse" = callPackage ( - { - mkDerivation, - array, - base, - containers, - regex-compat, - }: - mkDerivation { - pname = "nofib-analyse"; - version = "9.4.4"; - sha256 = "005a66adpsmlaj91qyf9x1f2xpnb311lqcdngnfb3rpryhjwvdzb"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - array - base - containers - regex-compat - ]; - description = "Parse and compare nofib runs"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "nofib-analyse"; - broken = true; - } - ) { }; - - "nofib-analyze" = callPackage ( - { - mkDerivation, - array, - base, - containers, - regex-compat, - }: - mkDerivation { - pname = "nofib-analyze"; - version = "7.10.1"; - sha256 = "04n056gsxv61igdvdysqkxbsz1a5bvkzfnsbrz03ixjgaqg2whfl"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - array - base - containers - regex-compat - ]; - description = "Parse and compare nofib runs"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "nofib-analyze"; - broken = true; - } - ) { }; - - "noise" = callPackage ( - { - mkDerivation, - base, - blaze-markup, - blaze-svg, - bytestring, - containers, - cryptohash, - HTF, - HUnit, - network, - parsec, - QuickCheck, - string-qq, - }: - mkDerivation { - pname = "noise"; - version = "0.0.1"; - sha256 = "0h9aq4f8n1acmzhdq185y0adl35cf7avms6zvgsyf9lkx2msja0q"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - blaze-markup - blaze-svg - bytestring - containers - cryptohash - network - parsec - ]; - executableHaskellDepends = [ base ]; - testHaskellDepends = [ - base - HTF - HUnit - parsec - QuickCheck - string-qq - ]; - description = "A friendly language for graphic design"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - mainProgram = "noise"; - broken = true; - } - ) { }; - - "noli" = callPackage ( - { - mkDerivation, - aeson, - base, - bytestring, - cmark, - directory, - frontmatter, - lucid, - regex-compat, - text, - yaml, - }: - mkDerivation { - pname = "noli"; - version = "0.1.1.0"; - sha256 = "043rjr7p8jj33bkrl3mz7qbzl1az0v8acmbbzv8a6j6cpdd8vcxr"; - libraryHaskellDepends = [ - aeson - base - bytestring - cmark - directory - frontmatter - lucid - regex-compat - text - yaml - ]; - description = "A static site generator"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "nom" = callPackage ( - { - mkDerivation, - algebra, - base, - base-compat, - Cabal, - cabal-doctest, - containers, - data-default, - doctest, - extra, - finite-typelits, - flow, - hspec, - hspec-discover, - QuickCheck, - syb, - template-haskell, - TypeCompose, - Unique, - }: - mkDerivation { - pname = "nom"; - version = "0.1.0.2"; - sha256 = "18vgasg9szc88pa61gw6qpasx6l9jx0z9lm36xa96j4ml4vr3ddf"; - setupHaskellDepends = [ - base - Cabal - cabal-doctest - ]; - libraryHaskellDepends = [ - algebra - base - containers - data-default - extra - finite-typelits - flow - QuickCheck - syb - TypeCompose - Unique - ]; - testHaskellDepends = [ - base - base-compat - data-default - doctest - hspec - QuickCheck - template-haskell - ]; - testToolDepends = [ hspec-discover ]; - description = "Name-binding & alpha-equivalence"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "nominal" = callPackage ( - { - mkDerivation, - base, - containers, - }: - mkDerivation { - pname = "nominal"; - version = "0.3.0.0"; - sha256 = "12kryz3z7kds1cca4s414233pd160gkzidf0d1b89zj926zhd766"; - libraryHaskellDepends = [ - base - containers - ]; - description = "Binders and alpha-equivalence made easy"; - license = lib.licenses.gpl3Only; - } - ) { }; - - "nomyx-api" = callPackage ( - { - mkDerivation, - aeson, - base, - bytestring, - containers, - either, - hslogger, - lens, - mtl, - network-uri, - nomyx-core, - nomyx-language, - QuickCheck, - resourcet, - safe, - servant, - servant-client, - servant-server, - servant-swagger, - split, - stm, - swagger2, - text, - transformers, - wai, - wai-cors, - wai-extra, - warp, - yaml, - }: - mkDerivation { - pname = "nomyx-api"; - version = "0.1.0"; - sha256 = "1f53c82br9hpnaisxz562wi1124a8nm433g9jac4pk0fpyqn3mrf"; - libraryHaskellDepends = [ - aeson - base - bytestring - containers - either - hslogger - lens - mtl - network-uri - nomyx-core - nomyx-language - QuickCheck - resourcet - safe - servant - servant-client - servant-server - servant-swagger - split - stm - swagger2 - text - transformers - wai - wai-cors - wai-extra - warp - yaml - ]; - description = "REST API for Nomyx"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "nomyx-core" = callPackage ( - { - mkDerivation, - acid-state, - aeson, - base, - blaze-html, - blaze-markup, - bytestring, - Cabal, - DebugTraceHelpers, - deepseq, - directory, - either-unwrap, - exceptions, - filepath, - HaskellNet, - HaskellNet-SSL, - hint, - hint-server, - hscolour, - hslogger, - imprevu, - ixset, - lens, - mime-mail, - MissingH, - mtl, - network, - nomyx-language, - nomyx-library, - NoTrace, - old-locale, - random, - safe, - safecopy, - shortcut, - stm, - tar, - template-haskell, - temporary, - text, - time, - unix, - yaml, - }: - mkDerivation { - pname = "nomyx-core"; - version = "1.0.0"; - sha256 = "0cdr4k2919a8bjmqm4agpiqp9jiijldwya28ql8bg345ypfh91d2"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - acid-state - aeson - base - blaze-html - blaze-markup - bytestring - DebugTraceHelpers - deepseq - directory - either-unwrap - exceptions - filepath - HaskellNet - HaskellNet-SSL - hint - hint-server - hscolour - hslogger - imprevu - ixset - lens - mime-mail - MissingH - mtl - network - nomyx-language - nomyx-library - NoTrace - old-locale - random - safe - safecopy - shortcut - stm - tar - template-haskell - temporary - text - time - unix - yaml - ]; - testHaskellDepends = [ - base - Cabal - ]; - description = "A Nomic game in haskell"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "nomyx-language" = callPackage ( - { - mkDerivation, - base, - Boolean, - containers, - DebugTraceHelpers, - ghc, - imprevu, - lens, - monad-loops, - mtl, - old-locale, - random, - safe, - shortcut, - text, - time, - time-recurrence, - }: - mkDerivation { - pname = "nomyx-language"; - version = "1.0.0"; - sha256 = "1g9rg0h2nfyc4i1hvlmmnfchz3hhh0pax5x654yqkcdhqbsh04hk"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base - Boolean - containers - DebugTraceHelpers - ghc - imprevu - lens - monad-loops - mtl - old-locale - random - safe - shortcut - text - time - time-recurrence - ]; - description = "Language to express rules for Nomic"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; + mkDerivation { + pname = "no-buffering-workaround"; + version = "0.1.0.0"; + sha256 = "19yswbnwwfp7n33irdk12vggczhxp198cjd68jdbaz1wcd00ryld"; + libraryHaskellDepends = [ base ]; + description = "Workaround for GHC bug #2189"; + license = lib.licenses.asl20; } ) { }; - "nomyx-library" = callPackage ( + "no-recursion" = callPackage ( { mkDerivation, base, - containers, + Cabal, + cabal-doctest, + doctest, ghc, - lens, - mtl, - nomyx-language, - old-locale, - safe, - shortcut, - time, - time-recurrence, }: mkDerivation { - pname = "nomyx-library"; - version = "1.0.0"; - sha256 = "1sb47asxrqg510kgh9mxpkcmczwzcbzd90bm7nmbaas9cn1wxmql"; - enableSeparateDataOutput = true; + pname = "no-recursion"; + version = "0.1.2.3"; + sha256 = "1zds0fz29k5iypksqkizhggsxw1ndc5y8ilf4j9hsm084kqidfhz"; + setupHaskellDepends = [ + base + Cabal + cabal-doctest + ]; libraryHaskellDepends = [ base - containers ghc - lens - mtl - nomyx-language - old-locale - safe - shortcut - time - time-recurrence ]; - description = "Library of rules for Nomyx"; + testHaskellDepends = [ + base + doctest + ]; + description = "A GHC plugin to remove support for recursion"; + license = lib.licenses.agpl3Plus; + maintainers = [ lib.maintainers.sellout ]; + } + ) { }; + + "no-value" = callPackage ( + { mkDerivation, base }: + mkDerivation { + pname = "no-value"; + version = "1.0.0.0"; + sha256 = "1jczx8d4ah74wiishdcv335hlr0330wwq0vfb5rv4gmrvbpkgllf"; + libraryHaskellDepends = [ base ]; + description = "A type class for choosing sentinel-like values"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; } ) { }; - "nomyx-server" = callPackage ( + "nofib-analyse" = callPackage ( { mkDerivation, + array, base, - Cabal, - directory, - exceptions, - filepath, - hslogger, - imprevu, - lens, - mtl, - network, - nomyx-api, - nomyx-core, - nomyx-language, - nomyx-library, - nomyx-web, - safe, - stm, - time, + containers, + regex-compat, }: mkDerivation { - pname = "nomyx-server"; - version = "1.0.0"; - sha256 = "062jm5b752q90aw8v5r79ix836np1zrcvrskmpyy9a22i2i5a6k0"; + pname = "nofib-analyse"; + version = "9.4.4"; + sha256 = "005a66adpsmlaj91qyf9x1f2xpnb311lqcdngnfb3rpryhjwvdzb"; isLibrary = false; isExecutable = true; executableHaskellDepends = [ + array base - directory - exceptions - filepath - hslogger - imprevu - lens - mtl - network - nomyx-api - nomyx-core - nomyx-language - nomyx-library - nomyx-web - safe - stm - time - ]; - testHaskellDepends = [ - base - Cabal + containers + regex-compat ]; - description = "A Nomic game in haskell"; + description = "Parse and compare nofib runs"; license = lib.licenses.bsd3; hydraPlatforms = lib.platforms.none; - mainProgram = "nomyx-server"; + mainProgram = "nofib-analyse"; + broken = true; + } + ) { }; + + "nominal" = callPackage ( + { + mkDerivation, + base, + containers, + }: + mkDerivation { + pname = "nominal"; + version = "0.3.0.0"; + sha256 = "12kryz3z7kds1cca4s414233pd160gkzidf0d1b89zj926zhd766"; + libraryHaskellDepends = [ + base + containers + ]; + description = "Binders and alpha-equivalence made easy"; + license = lib.licenses.gpl3Only; } ) { }; @@ -480402,28 +275674,6 @@ self: { } ) { }; - "non-empty-containers" = callPackage ( - { - mkDerivation, - base, - containers, - semigroupoids, - }: - mkDerivation { - pname = "non-empty-containers"; - version = "0.1.4.0"; - sha256 = "1frjpvx3nzymkwyxz0zc4p11pvxdihx3d3hi31w3d9qanwncbc96"; - libraryHaskellDepends = [ - base - containers - semigroupoids - ]; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "non-empty-sequence" = callPackage ( { mkDerivation, @@ -480479,30 +275729,6 @@ self: { } ) { }; - "non-empty-zipper" = callPackage ( - { - mkDerivation, - base, - checkers, - QuickCheck, - }: - mkDerivation { - pname = "non-empty-zipper"; - version = "0.1.0.9"; - sha256 = "1y1r6058y47g7xy2yknz7fhgx2qbmmxj50zwvyvrrikmrkljr5ba"; - libraryHaskellDepends = [ base ]; - testHaskellDepends = [ - base - checkers - QuickCheck - ]; - description = "The Zipper for NonEmpty"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "non-negative" = callPackage ( { mkDerivation, @@ -480670,36 +275896,6 @@ self: { } ) { }; - "nonempty-lift" = callPackage ( - { - mkDerivation, - base, - comonad, - hedgehog, - hedgehog-classes, - semigroupoids, - }: - mkDerivation { - pname = "nonempty-lift"; - version = "0.1"; - sha256 = "0zz6kh0ihbpjsigs2ssqcif6i85y9ykpx739yzpqz0drqn4013g8"; - libraryHaskellDepends = [ - base - comonad - semigroupoids - ]; - testHaskellDepends = [ - base - hedgehog - hedgehog-classes - ]; - description = "nonempty structure"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "nonempty-vector" = callPackage ( { mkDerivation, @@ -480874,29 +276070,6 @@ self: { } ) { }; - "nonemptymap" = callPackage ( - { - mkDerivation, - base, - containers, - semigroupoids, - }: - mkDerivation { - pname = "nonemptymap"; - version = "0.0.6.0"; - sha256 = "1pzs51kmsyarv62qqbskhw2xlkjp74bwcgs9a8ri1jk96m64rg94"; - libraryHaskellDepends = [ - base - containers - semigroupoids - ]; - description = "A NonEmptyMap Implementation"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "nonfree" = callPackage ( { mkDerivation, base }: mkDerivation { @@ -480933,29 +276106,6 @@ self: { } ) { }; - "nonlinear-optimization" = callPackage ( - { - mkDerivation, - base, - primitive, - vector, - }: - mkDerivation { - pname = "nonlinear-optimization"; - version = "0.3.12.1"; - sha256 = "1hva2djjgdk9gjng4zqx9h9m0k3jgjhgjypx2yc3ddhfbs9x2wn0"; - libraryHaskellDepends = [ - base - primitive - vector - ]; - description = "Various iterative algorithms for optimization of nonlinear functions"; - license = "GPL"; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "nonlinear-optimization-ad" = callPackage ( { mkDerivation, @@ -480985,6 +276135,7 @@ self: { description = "Wrapper of nonlinear-optimization package for using with AD package"; license = lib.licenses.gpl3Only; hydraPlatforms = lib.platforms.none; + broken = true; } ) { }; @@ -481021,6 +276172,7 @@ self: { description = "Wrapper of nonlinear-optimization package for using with backprop package"; license = lib.licenses.gpl3Only; hydraPlatforms = lib.platforms.none; + broken = true; } ) { }; @@ -481045,36 +276197,6 @@ self: { } ) { }; - "noodle" = callPackage ( - { - mkDerivation, - base, - directory, - filepath, - }: - mkDerivation { - pname = "noodle"; - version = "0.0.19"; - sha256 = "08v5rz5skmaqxqj85l76kjxqmlhnf3vapgfdqd042cmh41zwznx0"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - directory - filepath - ]; - executableHaskellDepends = [ - base - directory - filepath - ]; - description = "the noodle programming language"; - license = "unknown"; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "normaldistribution" = callPackage ( { mkDerivation, @@ -481212,76 +276334,6 @@ self: { } ) { }; - "not-gloss" = callPackage ( - { - mkDerivation, - base, - binary, - bmp, - bytestring, - GLUT, - OpenGL, - OpenGLRaw, - spatial-math, - time, - vector, - vector-binary-instances, - }: - mkDerivation { - pname = "not-gloss"; - version = "0.7.7.0"; - sha256 = "0pw3igxp71v7yrhsvbkkhk81nv9j2hac2wig16cclnq10kpd2h27"; - libraryHaskellDepends = [ - base - binary - bmp - bytestring - GLUT - OpenGL - OpenGLRaw - spatial-math - time - vector - vector-binary-instances - ]; - description = "Painless 3D graphics, no affiliation with gloss"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "not-gloss-examples" = callPackage ( - { - mkDerivation, - base, - containers, - GLUT, - linear, - not-gloss, - spatial-math, - X11, - }: - mkDerivation { - pname = "not-gloss-examples"; - version = "0.5.1.1"; - sha256 = "08gxhgq5kyhmnh7qhnmva58hx8kngi74433ilkv2hp8z9zc6aqar"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - containers - GLUT - linear - not-gloss - spatial-math - X11 - ]; - description = "examples for not-gloss"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "not-in-base" = callPackage ( { mkDerivation, base }: mkDerivation { @@ -481325,31 +276377,6 @@ self: { } ) { }; - "notcpp" = callPackage ( - { - mkDerivation, - base, - template-haskell, - }: - mkDerivation { - pname = "notcpp"; - version = "0.2.0.3"; - sha256 = "15aa96zdz60x9wc9k8ad5qkc4bs5rbgm9xvsykf3ppyys2z449ca"; - libraryHaskellDepends = [ - base - template-haskell - ]; - testHaskellDepends = [ - base - template-haskell - ]; - description = "Avoiding the C preprocessor via cunning use of Template Haskell"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "nothunks" = callPackage ( { mkDerivation, @@ -481521,324 +276548,6 @@ self: { inherit (pkgs) talloc; }; - "notmuch-haskell" = callPackage ( - { - mkDerivation, - base, - containers, - filepath, - notmuch, - old-locale, - parseargs, - time, - }: - mkDerivation { - pname = "notmuch-haskell"; - version = "1.0.0.3"; - sha256 = "0znbsvbjj3995mn04zaxgv0q90qplwjkwhwjkmz1k5jxajxgwwzj"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - containers - filepath - time - ]; - librarySystemDepends = [ notmuch ]; - executableHaskellDepends = [ - base - old-locale - parseargs - ]; - executableSystemDepends = [ notmuch ]; - description = "Binding for notmuch MUA library"; - license = "LGPL"; - hydraPlatforms = lib.platforms.none; - mainProgram = "notmuch-test"; - broken = true; - } - ) { inherit (pkgs) notmuch; }; - - "notmuch-web" = callPackage ( - { - mkDerivation, - aeson, - attoparsec, - attoparsec-conduit, - base, - blaze-builder, - blaze-html, - blaze-markup, - bytestring, - case-insensitive, - conduit, - containers, - data-default, - directory, - email-validate, - filepath, - hamlet, - hashable, - hjsmin, - hspec, - http-conduit, - http-types, - HUnit, - lifted-base, - markdown, - mime-mail, - network, - old-locale, - process, - process-conduit, - pwstore-fast, - random, - tagsoup, - template-haskell, - text, - text-icu, - time, - transformers, - unordered-containers, - vector, - wai, - wai-extra, - warp, - xss-sanitize, - yaml, - yesod, - yesod-auth, - yesod-core, - yesod-static, - yesod-test, - }: - mkDerivation { - pname = "notmuch-web"; - version = "0.2.0"; - sha256 = "1jjk3fhzhpf9wrgk980rgp55kji5zjzdl0xyi4wgz3xvn1k8hrhs"; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - aeson - attoparsec - attoparsec-conduit - base - blaze-builder - blaze-html - blaze-markup - bytestring - case-insensitive - conduit - containers - data-default - directory - email-validate - filepath - hamlet - hashable - hjsmin - http-conduit - http-types - lifted-base - markdown - mime-mail - network - old-locale - process - process-conduit - pwstore-fast - random - tagsoup - template-haskell - text - text-icu - time - transformers - unordered-containers - vector - wai - wai-extra - warp - xss-sanitize - yaml - yesod - yesod-auth - yesod-static - ]; - executableHaskellDepends = [ - base - pwstore-fast - text - yesod - ]; - testHaskellDepends = [ - base - hspec - HUnit - mime-mail - text - yesod - yesod-core - yesod-test - ]; - description = "A web interface to the notmuch email indexer"; - license = "GPL"; - hydraPlatforms = lib.platforms.none; - mainProgram = "notmuch-web"; - } - ) { }; - - "notzero" = callPackage ( - { - mkDerivation, - base, - bifunctors, - lens, - mtl, - semigroupoids, - semigroups, - transformers, - }: - mkDerivation { - pname = "notzero"; - version = "0.1"; - sha256 = "0l9z10njx18vp7xxcb0gys9dyq2g7i8i5mczymfknwdv9x3v2jk5"; - revision = "1"; - editedCabalFile = "12bvyx4cbqxv6qpqmhkx429c7zl67fnjf3xxjlx74na3xixh2jsw"; - libraryHaskellDepends = [ - base - bifunctors - lens - mtl - semigroupoids - semigroups - transformers - ]; - description = "A data type for representing numeric values, except zero"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "now-haskell" = callPackage ( - { - mkDerivation, - aeson, - aeson-pretty, - aws-lambda-runtime, - base, - base64-bytestring, - bytestring, - Cabal, - case-insensitive, - containers, - deepseq, - directory, - exceptions, - filepath, - fused-effects, - ghc-lib-parser, - hspec, - http-api-data, - http-client, - http-client-tls, - http-media, - http-types, - iso8601-time, - katip, - memory, - microlens, - mtl, - network, - QuickCheck, - random, - safe-exceptions, - semigroups, - stack, - text, - time, - transformers, - unordered-containers, - vector, - wai, - yaml, - }: - mkDerivation { - pname = "now-haskell"; - version = "0.1.0.0"; - sha256 = "1246jc17bcsm5jmpcbn9w5l5mnq2vvkya1q7jrw7ip5wwi6vaw7m"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson - base - base64-bytestring - bytestring - case-insensitive - containers - deepseq - exceptions - http-api-data - http-client - http-client-tls - http-media - http-types - iso8601-time - katip - memory - microlens - mtl - network - random - safe-exceptions - text - time - transformers - unordered-containers - vector - wai - ]; - executableHaskellDepends = [ - aeson - aeson-pretty - base - bytestring - Cabal - containers - directory - filepath - fused-effects - ghc-lib-parser - stack - text - yaml - ]; - testHaskellDepends = [ - aeson - aws-lambda-runtime - base - bytestring - containers - hspec - iso8601-time - mtl - QuickCheck - semigroups - text - time - transformers - unordered-containers - vector - ]; - description = "Zeit Now haskell-side integration and introspection tools"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - mainProgram = "module-scanner"; - } - ) { }; - "nowdoc" = callPackage ( { mkDerivation, @@ -481892,78 +276601,6 @@ self: { } ) { }; - "np-linear" = callPackage ( - { - mkDerivation, - base, - binary, - containers, - numeric-prelude, - reflection, - tagged, - }: - mkDerivation { - pname = "np-linear"; - version = "0.3.0.2"; - sha256 = "00rmm36is8i6k1a0xyri61v09asc54fanlp5nai7k7vhp0wyfzz1"; - libraryHaskellDepends = [ - base - binary - containers - numeric-prelude - reflection - tagged - ]; - description = "Linear algebra for the numeric-prelude framework"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "nptools" = callPackage ( - { - mkDerivation, - ansi-terminal, - array, - base, - bytestring, - colour, - containers, - HSH, - old-locale, - process, - split, - time, - unix, - }: - mkDerivation { - pname = "nptools"; - version = "0.6.0"; - sha256 = "1zipawfk8l98bszi1yviv7ph96x1z715d3nlzs3w2mzahir57h3d"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - ansi-terminal - array - base - bytestring - colour - containers - HSH - old-locale - process - split - time - unix - ]; - description = "A collection of random tools"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "nqe" = callPackage ( { mkDerivation, @@ -482620,63 +277257,6 @@ self: { } ) { }; - "ntha" = callPackage ( - { - mkDerivation, - alex, - array, - base, - containers, - happy, - haskeline, - hspec, - lens, - monad-loops, - mtl, - pretty, - z3, - }: - mkDerivation { - pname = "ntha"; - version = "0.1.3"; - sha256 = "0gp7032dgchm3mwlzj66cpcdgndi0mj2l4xxq4k4ayflfpcwrg3a"; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - array - base - containers - monad-loops - mtl - pretty - z3 - ]; - libraryToolDepends = [ - alex - happy - ]; - executableHaskellDepends = [ - base - containers - haskeline - lens - mtl - ]; - testHaskellDepends = [ - base - containers - hspec - pretty - ]; - description = "A tiny statically typed functional programming language"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "ntha"; - broken = true; - } - ) { }; - "nthable" = callPackage ( { mkDerivation, @@ -482695,102 +277275,6 @@ self: { } ) { }; - "ntp-control" = callPackage ( - { - mkDerivation, - base, - bytestring, - bytestring-lexing, - cereal, - network, - old-locale, - time, - }: - mkDerivation { - pname = "ntp-control"; - version = "0.1"; - sha256 = "14ns5lbvbdn0yrmfjp9rb4id19fxfd6dp68pgzm4lkh0xk0qnc4y"; - libraryHaskellDepends = [ - base - bytestring - bytestring-lexing - cereal - network - old-locale - time - ]; - testHaskellDepends = [ - base - bytestring - bytestring-lexing - cereal - network - old-locale - time - ]; - description = "Client library for NTP control messaging"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "ntrip-client" = callPackage ( - { - mkDerivation, - attoparsec, - base, - base64-bytestring, - basic-prelude, - bytestring, - case-insensitive, - conduit, - conduit-extra, - exceptions, - http-types, - lens, - lifted-async, - monad-control, - optparse-generic, - uri-bytestring, - }: - mkDerivation { - pname = "ntrip-client"; - version = "0.1.6"; - sha256 = "1b3dwjiycciy6blzymn3qyp6djzlfz8q70xm0srpx6w5m7kv8265"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - attoparsec - base - base64-bytestring - basic-prelude - bytestring - case-insensitive - conduit - conduit-extra - exceptions - http-types - lens - lifted-async - monad-control - uri-bytestring - ]; - executableHaskellDepends = [ - base - basic-prelude - bytestring - conduit - optparse-generic - ]; - description = "NTRIP client"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "ntrip-client"; - broken = true; - } - ) { }; - "ntype" = callPackage ( { mkDerivation, base }: mkDerivation { @@ -482828,89 +277312,6 @@ self: { } ) { }; - "null-canvas" = callPackage ( - { - mkDerivation, - aeson, - base, - containers, - filepath, - scotty, - split, - stm, - text, - transformers, - wai-extra, - warp, - }: - mkDerivation { - pname = "null-canvas"; - version = "0.2.7"; - sha256 = "1i6krgxlbdmv5md1p3n5mcw3sk24f5sk6y7yiznx8glxncxmfdll"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - aeson - base - containers - filepath - scotty - split - stm - text - transformers - wai-extra - warp - ]; - description = "HTML5 Canvas Graphics Library - forked Blank Canvas"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "nullary" = callPackage ( - { mkDerivation, base }: - mkDerivation { - pname = "nullary"; - version = "0.1.0.0"; - sha256 = "19vwgyscil4rmgfnla8msmhgamn6j3wfy7wqghb539byca0gim0c"; - libraryHaskellDepends = [ base ]; - description = "A package for working with nullary type classes"; - license = lib.licenses.bsd2; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "nullpipe" = callPackage ( - { - mkDerivation, - base, - bytestring, - hspec, - pipes, - }: - mkDerivation { - pname = "nullpipe"; - version = "0.1.0.0"; - sha256 = "14yg2422hljn7zy1k1w3cvh4vff5njpgm2wpxhay0knrkr2vz6r8"; - libraryHaskellDepends = [ - base - bytestring - pipes - ]; - testHaskellDepends = [ - base - hspec - pipes - ]; - description = "Initial project template from stack"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "num-non-negative" = callPackage ( { mkDerivation, @@ -483277,88 +277678,6 @@ self: { } ) { }; - "numeric-ode" = callPackage ( - { - mkDerivation, - ad, - base, - Chart, - Chart-cairo, - colour, - data-accessor, - data-default-class, - diagrams-cairo, - diagrams-lib, - diagrams-rasterific, - foldl, - JuicyPixels, - lens, - linear, - mtl, - mwc-probability, - mwc-random, - numhask, - parallel, - parsec, - plots, - primitive, - protolude, - reflection, - tdigest, - template-haskell, - text, - vector, - vector-space, - }: - mkDerivation { - pname = "numeric-ode"; - version = "0.0.0.0"; - sha256 = "04296pcakc7nb2ydc84cq2vy1x7frqfdxc17slda1p325n8b4map"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - ad - base - foldl - lens - linear - mwc-probability - mwc-random - numhask - parallel - parsec - primitive - protolude - reflection - tdigest - template-haskell - text - vector - ]; - executableHaskellDepends = [ - base - Chart - Chart-cairo - colour - data-accessor - data-default-class - diagrams-cairo - diagrams-lib - diagrams-rasterific - JuicyPixels - linear - mtl - plots - vector - vector-space - ]; - description = "Ode solvers"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "Kepler"; - } - ) { }; - "numeric-optimization" = callPackage ( { mkDerivation, @@ -483402,6 +277721,7 @@ self: { description = "Unified interface to various numerical optimization algorithms"; license = lib.licenses.bsd3; hydraPlatforms = lib.platforms.none; + broken = true; } ) { }; @@ -483447,6 +277767,7 @@ self: { description = "Wrapper of numeric-optimization package for using with AD package"; license = lib.licenses.bsd3; hydraPlatforms = lib.platforms.none; + broken = true; } ) { }; @@ -483611,34 +277932,6 @@ self: { } ) { }; - "numeric-ranges" = callPackage ( - { - mkDerivation, - base, - hspec, - HUnit, - QuickCheck, - }: - mkDerivation { - pname = "numeric-ranges"; - version = "0.1.0.0"; - sha256 = "10irnlcw3a31kldq8bd9pyr76vzm2jh5ylm5dky76rnw092jk180"; - revision = "1"; - editedCabalFile = "01za4j4bnds4kwsmfg2a3msf1n7wzaqg5x77qcygwjxqcx6aick8"; - libraryHaskellDepends = [ base ]; - testHaskellDepends = [ - base - hspec - HUnit - QuickCheck - ]; - description = "A framework for numeric ranges"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "numeric-tools" = callPackage ( { mkDerivation, @@ -483667,54 +277960,6 @@ self: { } ) { }; - "numerical" = callPackage ( - { - mkDerivation, - base, - ghc-prim, - hspec, - hspec-expectations, - HUnit, - monad-ste, - primitive, - tagged, - transformers, - transformers-compat, - vector, - vector-algorithms, - }: - mkDerivation { - pname = "numerical"; - version = "0.0.0.0"; - sha256 = "018d1hpyv384fbaa5cz8r5qhl2x6gblhj1jxgf9by8g8kyx11x63"; - libraryHaskellDepends = [ - base - ghc-prim - monad-ste - primitive - tagged - transformers - transformers-compat - vector - vector-algorithms - ]; - testHaskellDepends = [ - base - ghc-prim - hspec - hspec-expectations - HUnit - primitive - tagged - transformers - vector - ]; - description = "core package for Numerical Haskell project"; - license = lib.licenses.bsd2; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "numerical-integration" = callPackage ( { mkDerivation, @@ -483828,135 +278073,6 @@ self: { } ) { }; - "numhask-hedgehog" = callPackage ( - { - mkDerivation, - base, - hedgehog, - numhask, - numhask-prelude, - numhask-space, - }: - mkDerivation { - pname = "numhask-hedgehog"; - version = "0.4.0"; - sha256 = "1h09mnabmvknlj568hhsnwdlqg7rwvwsc1vnmw2y500266x6gvg3"; - libraryHaskellDepends = [ - base - hedgehog - numhask - numhask-prelude - numhask-space - ]; - testHaskellDepends = [ - base - hedgehog - numhask - numhask-prelude - ]; - description = "Laws and tests for numhask"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "numhask-histogram" = callPackage ( - { - mkDerivation, - base, - containers, - doctest, - foldl, - numhask-space, - tdigest, - }: - mkDerivation { - pname = "numhask-histogram"; - version = "0.2.0"; - sha256 = "0bkqn7h2cs5m318zira6idf2jmslgacci4mr2948dki1hbnj59xi"; - libraryHaskellDepends = [ - base - containers - foldl - numhask-space - tdigest - ]; - testHaskellDepends = [ - base - doctest - ]; - description = "See readme.md"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "numhask-prelude" = callPackage ( - { - mkDerivation, - base, - doctest, - numhask, - protolude, - }: - mkDerivation { - pname = "numhask-prelude"; - version = "0.5.0"; - sha256 = "19g4jlnif6pz8giyygin8p1s5i0qzwjlr43qy6y8dv4j5dp5qri2"; - libraryHaskellDepends = [ - base - numhask - protolude - ]; - testHaskellDepends = [ doctest ]; - description = "A numeric prelude"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "numhask-range" = callPackage ( - { - mkDerivation, - adjunctions, - base, - distributive, - doctest, - numhask-prelude, - numhask-test, - protolude, - QuickCheck, - semigroupoids, - tasty, - }: - mkDerivation { - pname = "numhask-range"; - version = "0.2.3.1"; - sha256 = "1zfw49cgjwbx6v6ljqbl46d1nkiah0p79pjargjsfpfks9ra2qkc"; - libraryHaskellDepends = [ - adjunctions - base - distributive - numhask-prelude - protolude - QuickCheck - semigroupoids - ]; - testHaskellDepends = [ - base - doctest - numhask-prelude - numhask-test - tasty - ]; - description = "Numbers that are range representations"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "numhask-space" = callPackage ( { mkDerivation, @@ -483997,38 +278113,6 @@ self: { } ) { }; - "numhask-test" = callPackage ( - { - mkDerivation, - base, - numhask-prelude, - QuickCheck, - tasty, - tasty-quickcheck, - }: - mkDerivation { - pname = "numhask-test"; - version = "0.1.0.0"; - sha256 = "1czcgnqxxm835q9m2iw3xyd8qwjpgdpjs1n9zzpd5sk6rklcjx6y"; - libraryHaskellDepends = [ - base - numhask-prelude - QuickCheck - tasty - tasty-quickcheck - ]; - testHaskellDepends = [ - base - numhask-prelude - QuickCheck - tasty - ]; - description = "Laws and tests for numhask"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "nums" = callPackage ( { mkDerivation }: mkDerivation { @@ -484067,57 +278151,6 @@ self: { } ) { }; - "numtype-tf" = callPackage ( - { mkDerivation, base }: - mkDerivation { - pname = "numtype-tf"; - version = "0.1.2"; - sha256 = "00bnz9k4nq21z4vax37qjv6ra2jvlshk0jlici1w8y9rx39zrjyx"; - libraryHaskellDepends = [ base ]; - description = "Type-level (low cardinality) integers, implemented using type families"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "nurbs" = callPackage ( - { - mkDerivation, - base, - base-unicode-symbols, - hspec, - lens, - linear, - mtl, - }: - mkDerivation { - pname = "nurbs"; - version = "0.1.1.0"; - sha256 = "0m1hyf65c2w19ps6cmkfmg2n3nzkcls6knh26hs1ki5iw9srfia2"; - revision = "1"; - editedCabalFile = "1g7x999rf6ssj9sk3fbh07sb6fnbwn77iprxrj6gmd9kkwrnivhp"; - libraryHaskellDepends = [ - base - base-unicode-symbols - lens - linear - mtl - ]; - testHaskellDepends = [ - base - base-unicode-symbols - hspec - lens - linear - ]; - description = "NURBS"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "nuxeo" = callPackage ( { mkDerivation, @@ -484515,35 +278548,6 @@ self: { } ) { }; - "nyan" = callPackage ( - { - mkDerivation, - base, - bytestring, - mtl, - ncurses, - text, - }: - mkDerivation { - pname = "nyan"; - version = "0.2"; - sha256 = "02bcyb6ibb6m84d2r6pp05vbv9jv09v1lp35n18mn2vkrgwls649"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - bytestring - mtl - ncurses - text - ]; - description = "Bored? Nyan cat!"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "nyan"; - } - ) { }; - "nyan-interpolation" = callPackage ( { mkDerivation, @@ -484664,160 +278668,6 @@ self: { } ) { }; - "nylas" = callPackage ( - { - mkDerivation, - aeson, - base, - bytestring, - lens, - lens-aeson, - pipes, - pipes-aeson, - pipes-bytestring, - pipes-http, - pipes-parse, - text, - time, - wreq, - }: - mkDerivation { - pname = "nylas"; - version = "0.1.1"; - sha256 = "1c6n56gd5xd8ahdpj6ashi6pdbx04anz038igd29y12191nlx3d7"; - libraryHaskellDepends = [ - aeson - base - bytestring - lens - lens-aeson - pipes - pipes-aeson - pipes-bytestring - pipes-http - pipes-parse - text - time - wreq - ]; - description = "Client for the Nylas API"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "nymphaea" = callPackage ( - { - mkDerivation, - base, - cairo, - containers, - glade, - glib, - gtk, - mtl, - parsec, - random, - }: - mkDerivation { - pname = "nymphaea"; - version = "0.3"; - sha256 = "1nlnz7mvdkhcqp4v1fyfb6r6v18xpxi0ddqqp84dsqg6ahdypc13"; - isLibrary = false; - isExecutable = true; - enableSeparateDataOutput = true; - executableHaskellDepends = [ - base - cairo - containers - glade - glib - gtk - mtl - parsec - random - ]; - description = "An interactive GUI for manipulating L-systems"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "nymphaea"; - } - ) { }; - - "nyx-game" = callPackage ( - { - mkDerivation, - async, - base, - bytestring, - containers, - deepseq, - dlist, - lens, - mtl, - optparse-generic, - random, - sdl2, - sdl2-image, - sdl2-mixer, - sdl2-ttf, - stm, - text, - vector, - }: - mkDerivation { - pname = "nyx-game"; - version = "1.0.1.0"; - sha256 = "14zxg7znqjglzqlsfvgksknz5ry369x0smjja8dx6h2ih0xf3i06"; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - async - base - bytestring - containers - deepseq - dlist - lens - mtl - optparse-generic - random - sdl2 - sdl2-image - sdl2-mixer - sdl2-ttf - stm - text - vector - ]; - executableHaskellDepends = [ - async - base - bytestring - containers - deepseq - dlist - lens - mtl - optparse-generic - random - sdl2 - sdl2-image - sdl2-mixer - sdl2-ttf - stm - text - vector - ]; - description = "A bullet-hell game made with SDL2"; - license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; - mainProgram = "app"; - } - ) { }; - "o-clock" = callPackage ( { mkDerivation, @@ -484920,129 +278770,6 @@ self: { } ) { }; - "oanda-rest-api" = callPackage ( - { - mkDerivation, - aeson, - base, - bytestring, - conduit, - containers, - Decimal, - hlint, - hspec, - http-client, - http-conduit, - HUnit, - lens, - old-locale, - resourcet, - scientific, - text, - thyme, - transformers, - vector, - }: - mkDerivation { - pname = "oanda-rest-api"; - version = "0.4.1"; - sha256 = "1r20vn0hbx1xca5jaq9djfhgrxgdyhj1m4i9708wd972h2h7q2vr"; - libraryHaskellDepends = [ - aeson - base - bytestring - conduit - containers - Decimal - http-client - http-conduit - lens - old-locale - resourcet - scientific - text - thyme - transformers - vector - ]; - testHaskellDepends = [ - aeson - base - bytestring - conduit - containers - Decimal - hlint - hspec - http-client - http-conduit - HUnit - lens - old-locale - resourcet - scientific - text - thyme - transformers - vector - ]; - description = "Client to the OANDA REST API"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "oasis-xrd" = callPackage ( - { - mkDerivation, - aeson, - aeson-pretty, - base, - bytestring, - containers, - text, - time, - uri-bytestring, - xml-conduit, - xml-conduit-writer, - }: - mkDerivation { - pname = "oasis-xrd"; - version = "1.0"; - sha256 = "105m258yqfdmp1n7gd824gsry07xqlhfnpla2kb7sn36nckqr3a0"; - revision = "1"; - editedCabalFile = "1jwvncyyn8njzhjdgqwakqfddp34h26abnhypzbdsgn4nyxad1qs"; - libraryHaskellDepends = [ - aeson - base - bytestring - containers - text - time - uri-bytestring - xml-conduit - xml-conduit-writer - ]; - testHaskellDepends = [ - aeson - aeson-pretty - base - bytestring - containers - text - time - uri-bytestring - xml-conduit - xml-conduit-writer - ]; - description = "Extensible Resource Descriptor"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "oath" = callPackage ( { mkDerivation, @@ -485082,6 +278809,7 @@ self: { description = "Composable concurrent computation done right"; license = lib.licenses.bsd3; hydraPlatforms = lib.platforms.none; + broken = true; } ) { }; @@ -485124,78 +278852,6 @@ self: { } ) { }; - "oauth2-jwt-bearer" = callPackage ( - { - mkDerivation, - aeson, - async, - base, - bytestring, - cryptonite, - hedgehog, - http-client, - http-client-tls, - http-types, - jose, - lens, - mmorph, - network, - Spock-core, - streaming-commons, - text, - time, - transformers, - transformers-bifunctors, - unordered-containers, - warp, - x509, - x509-store, - }: - mkDerivation { - pname = "oauth2-jwt-bearer"; - version = "0.0.1"; - sha256 = "0fcq0ggzhjpr8v2s0k6izjs1pp0lcbf7kb12vmclyy5bzby8vkcn"; - libraryHaskellDepends = [ - aeson - base - bytestring - http-client - http-client-tls - http-types - jose - lens - text - time - transformers - transformers-bifunctors - unordered-containers - ]; - testHaskellDepends = [ - aeson - async - base - bytestring - cryptonite - hedgehog - http-client - http-client-tls - http-types - jose - mmorph - network - Spock-core - streaming-commons - text - warp - x509 - x509-store - ]; - description = "OAuth2 jwt-bearer client flow as per rfc7523"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "oauthenticated" = callPackage ( { mkDerivation, @@ -485318,61 +278974,6 @@ self: { } ) { }; - "obd" = callPackage ( - { - mkDerivation, - base, - bytestring, - dimensional, - either, - haskeline, - io-streams, - lens, - mtl, - optparse-applicative, - serialport, - split, - stm, - stm-chans, - transformers, - }: - mkDerivation { - pname = "obd"; - version = "0.2.1.1"; - sha256 = "0ggcclf74lz7h90zk50xz42x25yz00xp74rz081rd8wsslw8sirq"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - bytestring - dimensional - either - io-streams - lens - mtl - serialport - split - stm - stm-chans - transformers - ]; - executableHaskellDepends = [ - base - bytestring - haskeline - lens - mtl - optparse-applicative - transformers - ]; - testHaskellDepends = [ base ]; - description = "Communicate to OBD interfaces over ELM327"; - license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "obdd" = callPackage ( { mkDerivation, @@ -485411,134 +279012,6 @@ self: { } ) { }; - "oberon0" = callPackage ( - { - mkDerivation, - array, - AspectAG, - base, - containers, - ghc-prim, - HList, - mtl, - murder, - template-haskell, - transformers, - uu-parsinglib, - uulib, - }: - mkDerivation { - pname = "oberon0"; - version = "0.0.2"; - sha256 = "0w8ygppqr1mjklc0545z2n503ap5xzxmjw2xsmb0i85nmh6f95hv"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - array - AspectAG - base - containers - ghc-prim - HList - mtl - murder - template-haskell - transformers - uu-parsinglib - uulib - ]; - doHaddock = false; - description = "Oberon0 Compiler"; - license = "LGPL"; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "obj" = callPackage ( - { - mkDerivation, - array, - base, - binary, - bytestring, - checkers, - Codec-Image-DevIL, - containers, - directory, - filepath, - graphicsFormats, - haskell98, - InfixApplicative, - OpenGL, - OpenGLCheck, - QuickCheck, - }: - mkDerivation { - pname = "obj"; - version = "0.1.2"; - sha256 = "0w9yyyd2i88lkhqlghnf7zkrx0sql5w8vwx67j9j1jr7d5zrad4z"; - libraryHaskellDepends = [ - array - base - binary - bytestring - checkers - Codec-Image-DevIL - containers - directory - filepath - graphicsFormats - haskell98 - InfixApplicative - OpenGL - OpenGLCheck - QuickCheck - ]; - description = "Reads and writes obj models"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "objectid" = callPackage ( - { - mkDerivation, - base, - blaze-builder, - bytestring, - bytestring-arbitrary, - cereal, - cryptohash, - QuickCheck, - tasty, - tasty-quickcheck, - }: - mkDerivation { - pname = "objectid"; - version = "0.1.0.2"; - sha256 = "1cr9hzrkj8a6ggym8d6gyy0rmric93x8xwdjqfal10bg5s6d6vgs"; - libraryHaskellDepends = [ - base - blaze-builder - bytestring - cereal - cryptohash - ]; - testHaskellDepends = [ - base - bytestring - bytestring-arbitrary - cereal - QuickCheck - tasty - tasty-quickcheck - ]; - description = "Rather unique identifier for things that need to be stored"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "objective" = callPackage ( { mkDerivation, @@ -485651,91 +279124,6 @@ self: { } ) { }; - "ocaml-export" = callPackage ( - { - mkDerivation, - aeson, - base, - bytestring, - containers, - directory, - file-embed, - filepath, - formatting, - hspec, - hspec-golden-aeson, - mtl, - process, - QuickCheck, - quickcheck-arbitrary-adt, - servant, - servant-server, - singletons, - split, - template-haskell, - text, - time, - wai, - wai-extra, - warp, - wl-pprint-text, - }: - mkDerivation { - pname = "ocaml-export"; - version = "0.13.0"; - sha256 = "1pfy648qrx7s0qmli9cjs0c0bnnvirilicaydy08zj3w4rvjfdb4"; - libraryHaskellDepends = [ - aeson - base - bytestring - containers - directory - file-embed - filepath - formatting - hspec - hspec-golden-aeson - mtl - QuickCheck - quickcheck-arbitrary-adt - servant - servant-server - singletons - split - template-haskell - text - time - wl-pprint-text - ]; - testHaskellDepends = [ - aeson - base - bytestring - containers - directory - filepath - hspec - hspec-golden-aeson - process - QuickCheck - quickcheck-arbitrary-adt - servant - servant-server - singletons - template-haskell - text - time - wai - wai-extra - warp - ]; - description = "Convert Haskell types in OCaml types"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "ocap-io" = callPackage ( { mkDerivation, base }: mkDerivation { @@ -485749,317 +279137,6 @@ self: { } ) { }; - "ochan" = callPackage ( - { - mkDerivation, - async, - base, - bytestring, - mtl, - oref, - text, - transformers, - }: - mkDerivation { - pname = "ochan"; - version = "0.1.0"; - sha256 = "0hzk5y7qnx3mv6x913k98qgnnq7niq6gvic2qjz3vdxpi2rx303d"; - libraryHaskellDepends = [ - async - base - bytestring - mtl - oref - text - transformers - ]; - testHaskellDepends = [ - async - base - bytestring - mtl - oref - text - transformers - ]; - description = "Owned channels in the Ownership Monad"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "ochintin-daicho" = callPackage ( - { - mkDerivation, - base, - bookkeeping, - doctest, - Glob, - mono-traversable, - text, - transaction, - }: - mkDerivation { - pname = "ochintin-daicho"; - version = "0.3.4.2"; - sha256 = "0k7k4rj3356n9d8waw5sjiq97w9wbrhq3bwqr0hr3zh2h5imy5sy"; - libraryHaskellDepends = [ - base - bookkeeping - mono-traversable - text - transaction - ]; - testHaskellDepends = [ - base - doctest - Glob - ]; - description = "A module to manage payroll books for Japanese companies"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "octane" = callPackage ( - { - mkDerivation, - aeson, - base, - bimap, - binary, - bytestring, - containers, - data-default-class, - file-embed, - http-client, - http-client-tls, - overloaded-records, - rattletrap, - text, - }: - mkDerivation { - pname = "octane"; - version = "0.20.3"; - sha256 = "0rjvl7f3sa8i7a1svhh4phc2r2zjjwi1p3cajnwzms7kasmcqfjp"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson - base - bimap - binary - bytestring - containers - data-default-class - file-embed - overloaded-records - rattletrap - text - ]; - executableHaskellDepends = [ - aeson - base - bimap - binary - bytestring - containers - data-default-class - file-embed - http-client - http-client-tls - overloaded-records - rattletrap - text - ]; - description = "Parse Rocket League replays"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - mainProgram = "octane"; - } - ) { }; - - "octohat" = callPackage ( - { - mkDerivation, - aeson, - base, - base-compat, - base16-bytestring, - base64-bytestring, - bytestring, - containers, - cryptohash, - dotenv, - either, - errors, - ghc-prim, - hspec, - hspec-expectations, - http-client, - http-types, - lens, - mtl, - optparse-applicative, - text, - time, - transformers, - unordered-containers, - utf8-string, - wreq-sb, - xmlhtml, - yaml, - }: - mkDerivation { - pname = "octohat"; - version = "0.1.5.0"; - sha256 = "17b3fhka0xpah9j9y79gj2xv2xvc0c9vrhfcafvfcwj2vwpz6r50"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson - base - base-compat - base16-bytestring - base64-bytestring - bytestring - containers - cryptohash - dotenv - either - errors - ghc-prim - http-client - http-types - lens - mtl - text - time - transformers - unordered-containers - wreq-sb - xmlhtml - ]; - executableHaskellDepends = [ - aeson - base - optparse-applicative - text - utf8-string - yaml - ]; - testHaskellDepends = [ - base - base-compat - dotenv - hspec - hspec-expectations - text - transformers - ]; - description = "A tested, minimal wrapper around GitHub's API"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - mainProgram = "abc"; - } - ) { }; - - "octopus" = callPackage ( - { - mkDerivation, - array, - base, - bytestring, - containers, - hexpr, - mtl, - parsec, - symbol, - text, - }: - mkDerivation { - pname = "octopus"; - version = "0.0.2.1"; - sha256 = "1p1sf694a5zryvb2i38ygd7fby54pqi0v5r3b24wcpwj43dy57ca"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - array - base - bytestring - containers - hexpr - mtl - parsec - symbol - text - ]; - executableHaskellDepends = [ - array - base - bytestring - containers - hexpr - mtl - parsec - symbol - text - ]; - description = "Lisp with more dynamism, more power, more simplicity"; - license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - mainProgram = "octi"; - } - ) { }; - - "oculus" = - callPackage - ( - { - mkDerivation, - base, - either, - libGL, - libX11, - libXinerama, - monads-tf, - ovr, - systemd, - transformers, - vect-floating, - }: - mkDerivation { - pname = "oculus"; - version = "0.1.0.2"; - sha256 = "04015wbh5j36gd66k7fn12nl92lq68d0c9dia8fz0pr8y3b7ims4"; - libraryHaskellDepends = [ - base - either - monads-tf - transformers - vect-floating - ]; - librarySystemDepends = [ - libGL - libX11 - libXinerama - ovr - systemd - ]; - description = "Oculus Rift ffi providing head tracking data"; - license = lib.licenses.bsd3; - badPlatforms = lib.platforms.darwin; - hydraPlatforms = lib.platforms.none; - } - ) - { - inherit (pkgs) libGL; - inherit (pkgs.xorg) libX11; - inherit (pkgs.xorg) libXinerama; - ovr = null; - inherit (pkgs) systemd; - }; - "odbc" = callPackage ( { mkDerivation, @@ -486136,216 +279213,6 @@ self: { } ) { inherit (pkgs) unixODBC; }; - "odd-jobs" = callPackage ( - { - mkDerivation, - aeson, - base, - bytestring, - containers, - direct-daemonize, - directory, - either, - fast-logger, - filepath, - foreign-store, - friendly-time, - generic-deriving, - hedgehog, - hostname, - lifted-async, - lifted-base, - lucid, - mmorph, - monad-control, - monad-logger, - mtl, - optparse-applicative, - postgresql-simple, - random, - resource-pool, - safe, - servant, - servant-lucid, - servant-server, - servant-static-th, - string-conv, - tasty, - tasty-discover, - tasty-hedgehog, - tasty-hunit, - text, - text-conversions, - time, - timing-convenience, - unix, - unliftio, - unliftio-core, - unordered-containers, - wai, - warp, - }: - mkDerivation { - pname = "odd-jobs"; - version = "0.2.2"; - sha256 = "1l6nyyn27yjn2gkd6yvdxi5iai5af96srkxia24npl5rna2cngfp"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson - base - bytestring - direct-daemonize - directory - either - fast-logger - filepath - friendly-time - generic-deriving - hostname - lucid - monad-control - monad-logger - mtl - optparse-applicative - postgresql-simple - resource-pool - safe - servant - servant-lucid - servant-server - servant-static-th - string-conv - text - text-conversions - time - timing-convenience - unix - unliftio - unliftio-core - unordered-containers - wai - warp - ]; - executableHaskellDepends = [ - aeson - base - bytestring - direct-daemonize - directory - either - fast-logger - filepath - foreign-store - friendly-time - generic-deriving - hostname - lucid - monad-control - monad-logger - mtl - optparse-applicative - postgresql-simple - resource-pool - safe - servant - servant-lucid - servant-server - servant-static-th - string-conv - text - text-conversions - time - timing-convenience - unix - unliftio - unliftio-core - unordered-containers - wai - warp - ]; - testHaskellDepends = [ - aeson - base - bytestring - containers - direct-daemonize - directory - either - fast-logger - filepath - friendly-time - generic-deriving - hedgehog - hostname - lifted-async - lifted-base - lucid - mmorph - monad-control - monad-logger - mtl - optparse-applicative - postgresql-simple - random - resource-pool - safe - servant - servant-lucid - servant-server - servant-static-th - string-conv - tasty - tasty-discover - tasty-hedgehog - tasty-hunit - text - text-conversions - time - timing-convenience - unix - unliftio - unliftio-core - unordered-containers - wai - warp - ]; - testToolDepends = [ tasty-discover ]; - description = "A full-featured PostgreSQL-backed job queue (with an admin UI)"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "oden-go-packages" = callPackage ( - { - mkDerivation, - aeson, - base, - bytestring, - containers, - text, - unordered-containers, - }: - mkDerivation { - pname = "oden-go-packages"; - version = "0.1.0.3"; - sha256 = "128rdvimgr54ghc11fka2flpfl3hjd5dm0s9fnfjx0hq2r2pgmw8"; - libraryHaskellDepends = [ - aeson - base - bytestring - containers - text - unordered-containers - ]; - description = "Provides Go package metadata"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "odpic-raw" = callPackage ( { mkDerivation, @@ -486515,28 +279382,6 @@ self: { } ) { }; - "off-simple" = callPackage ( - { - mkDerivation, - base, - parsec3, - vector, - }: - mkDerivation { - pname = "off-simple"; - version = "0.1"; - sha256 = "03sb2bmjw8v01908zkzmw8njsmqy5k2hcnv6ajbia7n8qawyhivj"; - libraryHaskellDepends = [ - base - parsec3 - vector - ]; - description = "A parser for simplified-syntax OFF files"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "ofx" = callPackage ( { mkDerivation, @@ -487531,41 +280376,6 @@ self: { } ) { }; - "ogmarkup" = callPackage ( - { - mkDerivation, - base, - hspec, - hspec-megaparsec, - megaparsec, - mtl, - shakespeare, - text, - }: - mkDerivation { - pname = "ogmarkup"; - version = "5.0"; - sha256 = "19lgfgsfkfk51dbjimc45yclxfh7ncmh21gnc6f7dihsyhkdfsx7"; - libraryHaskellDepends = [ - base - megaparsec - mtl - ]; - testHaskellDepends = [ - base - hspec - hspec-megaparsec - megaparsec - shakespeare - text - ]; - description = "A lightweight markup language for story writers"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "ohhecs" = callPackage ( { mkDerivation, @@ -487619,93 +280429,6 @@ self: { } ) { }; - "ohloh-hs" = callPackage ( - { - mkDerivation, - base, - cmdargs, - data-lens, - hxt, - hxt-curl, - pretty-show, - QuickCheck, - test-framework, - test-framework-quickcheck2, - text-format-simple, - }: - mkDerivation { - pname = "ohloh-hs"; - version = "0.0.2"; - sha256 = "0nbk24ymkkjrapxa83qzhzl1m7zi3bxdc9jsjkbqvb7r9nz3jhyj"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - data-lens - hxt - text-format-simple - ]; - executableHaskellDepends = [ - base - cmdargs - data-lens - hxt - hxt-curl - pretty-show - text-format-simple - ]; - testHaskellDepends = [ - base - data-lens - hxt - QuickCheck - test-framework - test-framework-quickcheck2 - text-format-simple - ]; - description = "Interface to the Ohloh API"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "cmdoh"; - broken = true; - } - ) { }; - - "oi" = callPackage ( - { - mkDerivation, - base, - comonad, - directory, - filepath, - parallel, - }: - mkDerivation { - pname = "oi"; - version = "0.4.0.2"; - sha256 = "18ypxx6avfj8s7f2svh8p7x19v730zc35msg2vg3b88d8fafv58m"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - comonad - directory - filepath - parallel - ]; - executableHaskellDepends = [ - base - directory - filepath - parallel - ]; - description = "Library for purely functional lazy interactions with the outer world"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "oidc-client" = callPackage ( { mkDerivation, @@ -487773,28 +280496,6 @@ self: { } ) { }; - "ois-input-manager" = callPackage ( - { - mkDerivation, - base, - hogre, - OIS, - }: - mkDerivation { - pname = "ois-input-manager"; - version = "0.1.0.1"; - sha256 = "1p34xybkf5079pq5hkildaz6skx06f6s3qg0k2i73jhh93q3ckiq"; - libraryHaskellDepends = [ - base - hogre - ]; - librarySystemDepends = [ OIS ]; - description = "wrapper for OIS input manager for use with hogre"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { OIS = null; }; - "okapi" = callPackage ( { mkDerivation, @@ -487907,20 +280608,6 @@ self: { } ) { }; - "old-version" = callPackage ( - { mkDerivation, base }: - mkDerivation { - pname = "old-version"; - version = "1.4.2"; - sha256 = "1sqga2fmrc702k2grv2kw32wg0yy8qy94cs1jl6112xk6lb79qb3"; - libraryHaskellDepends = [ base ]; - description = "Basic versioning library"; - license = "unknown"; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "ollama-haskell" = callPackage ( { mkDerivation, @@ -488022,84 +280709,6 @@ self: { } ) { }; - "olwrapper" = callPackage ( - { - mkDerivation, - base, - bytestring, - fay, - fay-jquery, - fay-text, - lens, - mtl, - snap, - snap-core, - snap-loader-dynamic, - snap-loader-static, - snap-server, - snaplet-fay, - text, - }: - mkDerivation { - pname = "olwrapper"; - version = "0.4.1"; - sha256 = "0cnkanaxsrsshk2y37sbvyyzc40k61r57zb0c3jarz583h3yzlai"; - revision = "2"; - editedCabalFile = "0i5scsyswfv0v1icjxp4vq3s7cgyh6n384jr7xa7spb0ymf3hrhi"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - bytestring - fay - fay-jquery - fay-text - lens - mtl - snap - snap-core - snap-loader-dynamic - snap-loader-static - snap-server - snaplet-fay - text - ]; - executableHaskellDepends = [ - base - bytestring - fay - fay-jquery - fay-text - lens - mtl - snap - snap-core - snap-loader-static - snap-server - snaplet-fay - text - ]; - description = "An OpenLayers JavaScript Wrapper and Webframework with snaplet-fay"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "olwrapper"; - } - ) { }; - - "om-actor" = callPackage ( - { mkDerivation, base }: - mkDerivation { - pname = "om-actor"; - version = "0.1.0.0"; - sha256 = "1wiasb3f22g47n54jhxv1c74a0ghxsknrakjdgj3fqlw878g3aan"; - libraryHaskellDepends = [ base ]; - description = "Actor pattern utilities"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "om-doh" = callPackage ( { mkDerivation, @@ -488360,35 +280969,6 @@ self: { } ) { }; - "om-http-logging" = callPackage ( - { - mkDerivation, - base, - http-types, - monad-logger, - safe-exceptions, - uuid, - wai, - }: - mkDerivation { - pname = "om-http-logging"; - version = "0.1.0.0"; - sha256 = "16swgkk6w7sxnbfdz07vz3pkqjcpq27g1hswqvdxfq5gfq5kgp67"; - libraryHaskellDepends = [ - base - http-types - monad-logger - safe-exceptions - uuid - wai - ]; - description = "om-http-logging"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "om-kubernetes" = callPackage ( { mkDerivation, @@ -488678,112 +281258,6 @@ self: { } ) { }; - "omaketex" = callPackage ( - { - mkDerivation, - base, - optparse-applicative, - shakespeare-text, - shelly, - text, - }: - mkDerivation { - pname = "omaketex"; - version = "0.1.1.0"; - sha256 = "0kq2j8pndzn3fjdklyh22vcg8am48i29gx4jq2i74p4gmdryavn9"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - optparse-applicative - shakespeare-text - shelly - text - ]; - description = "A simple tool to generate OMakefile for latex files"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "omaketex"; - broken = true; - } - ) { }; - - "ombra" = callPackage ( - { - mkDerivation, - base, - Boolean, - gl, - hashable, - hashtables, - MemoTrie, - monad-control, - transformers, - transformers-base, - unordered-containers, - vector-space, - }: - mkDerivation { - pname = "ombra"; - version = "1.1.0.0"; - sha256 = "00cki27h3wpgpmcc3rv8fip1dmh9zsg5n0m5gfgdy0xs36xlyn4m"; - revision = "1"; - editedCabalFile = "0747v6b50lpwpbmmm5zyyq98dp40rkg0i88g5mp9w8wdwcsws0d8"; - libraryHaskellDepends = [ - base - Boolean - gl - hashable - hashtables - MemoTrie - monad-control - transformers - transformers-base - unordered-containers - vector-space - ]; - description = "Render engine"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "omega" = callPackage ( - { - mkDerivation, - array, - base, - containers, - directory, - filepath, - pretty, - time, - }: - mkDerivation { - pname = "omega"; - version = "1.5.2"; - sha256 = "0v11j2gz98g5ng9dsfbr7k3a2xhw2xqa1qi1q8ad53sx2yhjv0ly"; - isLibrary = false; - isExecutable = true; - enableSeparateDataOutput = true; - executableHaskellDepends = [ - array - base - containers - directory - filepath - pretty - time - ]; - description = "A purely functional programming language and a proof system"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "omega"; - broken = true; - } - ) { }; - "omnicodec" = callPackage ( { mkDerivation, @@ -488813,125 +281287,6 @@ self: { } ) { }; - "omnifmt" = callPackage ( - { - mkDerivation, - aeson, - base, - exceptions, - extra, - fast-logger, - filepath, - monad-logger, - monad-parallel, - mtl, - optparse-applicative, - pipes, - pipes-concurrency, - temporary, - text, - time, - unordered-containers, - yaml, - }: - mkDerivation { - pname = "omnifmt"; - version = "0.2.1.1"; - sha256 = "0c8p6j434ik6g3n2gxc6mhnkk1crp7m7nfgsfapa4ki3h28phr0r"; - revision = "1"; - editedCabalFile = "1yj2pbdyhj2qavx5aarcj6ncj1pkf7rs3cqm7k163rqyna811xji"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson - base - exceptions - extra - filepath - monad-logger - mtl - pipes - text - unordered-containers - yaml - ]; - executableHaskellDepends = [ - base - exceptions - extra - fast-logger - filepath - monad-logger - monad-parallel - mtl - optparse-applicative - pipes - pipes-concurrency - temporary - text - time - ]; - description = "A pretty-printer wrapper to faciliate ease of formatting during development"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "omnifmt"; - broken = true; - } - ) { }; - - "on-a-horse" = callPackage ( - { - mkDerivation, - arrows, - base, - bytestring, - case-insensitive, - containers, - cookie, - http-types, - mtl, - random, - safe, - split, - text, - time, - transformers, - utf8-string, - wai, - wai-extra, - warp, - }: - mkDerivation { - pname = "on-a-horse"; - version = "0.3"; - sha256 = "18nbvdbdg05fmymbvvhig6invr6ald0gdadl666m4axc8m9n6pvg"; - libraryHaskellDepends = [ - arrows - base - bytestring - case-insensitive - containers - cookie - http-types - mtl - random - safe - split - text - time - transformers - utf8-string - wai - wai-extra - warp - ]; - description = "\"Haskell on a Horse\" - A combinatorial web framework"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "on-demand-ssh-tunnel" = callPackage ( { mkDerivation, @@ -489204,123 +281559,6 @@ self: { } ) { }; - "oneormore" = callPackage ( - { mkDerivation, base }: - mkDerivation { - pname = "oneormore"; - version = "0.1.0.3"; - sha256 = "1lz429abk7qqwfya3wa1m5pcyyldagcmmc0ghjfbl8byhkaax63p"; - libraryHaskellDepends = [ base ]; - description = "A never-empty list type"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "online" = callPackage ( - { - mkDerivation, - adjunctions, - backprop, - base, - containers, - doctest, - foldl, - folds, - generic-lens, - hmatrix, - lens, - mwc-probability, - mwc-random, - numhask, - numhask-array, - primitive, - profunctors, - tdigest, - text, - vector, - vector-algorithms, - }: - mkDerivation { - pname = "online"; - version = "0.6.0"; - sha256 = "1yr3jq4gpjmgfd9q95n3b0g9ib2xjccc56m8mxlzsjxhnqc149jy"; - libraryHaskellDepends = [ - adjunctions - backprop - base - containers - foldl - folds - generic-lens - hmatrix - lens - mwc-probability - mwc-random - numhask - numhask-array - primitive - profunctors - tdigest - text - vector - vector-algorithms - ]; - testHaskellDepends = [ - base - doctest - numhask - ]; - description = "See readme.md"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "online-csv" = callPackage ( - { - mkDerivation, - attoparsec, - base, - box, - doctest, - foldl, - generic-lens, - lens, - numhask-prelude, - scientific, - text, - text-format, - }: - mkDerivation { - pname = "online-csv"; - version = "0.0.1"; - sha256 = "0fibv9k9py6mszjnj501cak4jhdz6iyy6qp56cp1vvsbkv44m8ll"; - libraryHaskellDepends = [ - attoparsec - base - box - foldl - generic-lens - lens - numhask-prelude - scientific - text - text-format - ]; - testHaskellDepends = [ - base - doctest - numhask-prelude - ]; - description = "See readme.md"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "only" = callPackage ( { mkDerivation, @@ -489345,41 +281583,6 @@ self: { } ) { }; - "onpartitions" = callPackage ( - { mkDerivation, base }: - mkDerivation { - pname = "onpartitions"; - version = "0.1.0.0"; - sha256 = "0iy4hpibiz6v93kz8jv5phb96sh6ygcdakf9vqss5d5622s5pgf1"; - libraryHaskellDepends = [ base ]; - description = "partition lenses"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "onu-course" = callPackage ( - { - mkDerivation, - base, - smallcheck, - }: - mkDerivation { - pname = "onu-course"; - version = "1"; - sha256 = "1d0yn5bj04ircxbi12rx80kds54zssmq4j9kqyk05nmv506x76k0"; - libraryHaskellDepends = [ - base - smallcheck - ]; - description = "Code for the Haskell course taught at the Odessa National University in 2012"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "oo-prototypes" = callPackage ( { mkDerivation, base }: mkDerivation { @@ -489479,30 +281682,6 @@ self: { } ) { }; - "op" = callPackage ( - { - mkDerivation, - base, - containers, - doctest, - }: - mkDerivation { - pname = "op"; - version = "0.4.0.0"; - sha256 = "17wng5pl4d92nkrmbzwi1c8l3cdh9ms50p6m7vvc4z1x4gnp9lf9"; - libraryHaskellDepends = [ base ]; - testHaskellDepends = [ - base - containers - doctest - ]; - description = "Common operators encouraging large-scale easy reading"; - license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "op2" = callPackage ( { mkDerivation, @@ -489613,41 +281792,6 @@ self: { } ) { }; - "opaleye-classy" = callPackage ( - { - mkDerivation, - base, - bytestring, - lens, - mtl, - opaleye, - postgresql-simple, - product-profunctors, - transformers, - }: - mkDerivation { - pname = "opaleye-classy"; - version = "0.3.1.1"; - sha256 = "16yaa0sjskm8i95p3dfcd0az7ajddgc7vrl4xglykddxhiij2gic"; - revision = "1"; - editedCabalFile = "09xw9x0pwc7mma8lqr5iw2wbdnxlmnapiy8rm6gz38jbj9c8rc3r"; - libraryHaskellDepends = [ - base - bytestring - lens - mtl - opaleye - postgresql-simple - product-profunctors - transformers - ]; - description = "Opaleye wrapped up in classy MTL attire"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "opaleye-sqlite" = callPackage ( { mkDerivation, @@ -489874,67 +282018,6 @@ self: { } ) { }; - "open-adt" = callPackage ( - { - mkDerivation, - base, - constraints, - recursion-schemes, - row-types, - template-haskell, - }: - mkDerivation { - pname = "open-adt"; - version = "1.0"; - sha256 = "1v9gb06cifykapx2kjbi8kmkbvs625ydciv7g77ngnmaijzfsm4a"; - libraryHaskellDepends = [ - base - constraints - recursion-schemes - row-types - template-haskell - ]; - description = "Open algebraic data types"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "open-adt-tutorial" = callPackage ( - { - mkDerivation, - base, - constraints, - deriving-compat, - open-adt, - recursion-schemes, - row-types, - template-haskell, - }: - mkDerivation { - pname = "open-adt-tutorial"; - version = "1.0"; - sha256 = "19sgj0k0axlv15jlr945hh4j6wq8aqhafmj5m7njd5qp7yrbw66w"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - constraints - deriving-compat - open-adt - recursion-schemes - row-types - template-haskell - ]; - executableHaskellDepends = [ base ]; - description = "Open algebraic data type examples"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "open-adt-tutorial"; - } - ) { }; - "open-browser" = callPackage ( { mkDerivation, @@ -489956,118 +282039,6 @@ self: { } ) { }; - "open-haddock" = callPackage ( - { - mkDerivation, - base, - basic-prelude, - text, - turtle, - }: - mkDerivation { - pname = "open-haddock"; - version = "0.1.0.0"; - sha256 = "1p7g3wl05pcdgvzxng9lxx4vv4p2dxj5p7vwww3lp2pgzryln2ri"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - basic-prelude - text - turtle - ]; - description = "Open haddock HTML documentation"; - license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - mainProgram = "open-haddock"; - broken = true; - } - ) { }; - - "open-pandoc" = callPackage ( - { - mkDerivation, - base, - bytestring, - containers, - directory, - extensible-exceptions, - filepath, - HTTP, - mtl, - network, - old-time, - parsec, - pretty, - process, - syb, - texmath, - utf8-string, - xhtml, - xml, - zip-archive, - }: - mkDerivation { - pname = "open-pandoc"; - version = "1.5.1.1"; - sha256 = "1k9d1r1z7q6lm8fha630rg2qfmwwnr9dv2ajvqwvrki2m6i9sczn"; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base - bytestring - containers - directory - extensible-exceptions - filepath - HTTP - mtl - network - old-time - parsec - pretty - process - syb - texmath - utf8-string - xhtml - xml - zip-archive - ]; - description = "Conversion between markup formats"; - license = "GPL"; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "open-signals" = callPackage ( - { - mkDerivation, - base, - either, - mtl, - transformers, - }: - mkDerivation { - pname = "open-signals"; - version = "0.1.0.3"; - sha256 = "0cyiazx2sxlj30qpa92rqr8nyygqn27imzck2nl6vamc0fmzc4d3"; - libraryHaskellDepends = [ - base - either - mtl - transformers - ]; - testHaskellDepends = [ base ]; - description = "A mechanism similar to checked exceptions that integrates with MTL and transformer stacks"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "open-symbology" = callPackage ( { mkDerivation, @@ -490092,43 +282063,6 @@ self: { } ) { }; - "open-typerep" = callPackage ( - { - mkDerivation, - base, - constraints, - criterion, - mtl, - syntactic, - tagged, - template-haskell, - }: - mkDerivation { - pname = "open-typerep"; - version = "0.6.1"; - sha256 = "04h8lpkh937s3nml47m8q3dn1nk60pxw7d3yv9ppvihqcz79qs53"; - libraryHaskellDepends = [ - base - constraints - mtl - syntactic - tagged - template-haskell - ]; - testHaskellDepends = [ - base - syntactic - ]; - benchmarkHaskellDepends = [ - base - criterion - ]; - description = "Open type representations and dynamic types"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "open-union" = callPackage ( { mkDerivation, @@ -490479,133 +282413,6 @@ self: { } ) { inherit (pkgs) openal; }; - "openapi-petstore" = callPackage ( - { - mkDerivation, - aeson, - base, - base64-bytestring, - bytestring, - case-insensitive, - containers, - deepseq, - exceptions, - hspec, - http-api-data, - http-client, - http-client-tls, - http-media, - http-types, - iso8601-time, - katip, - microlens, - mtl, - network, - QuickCheck, - random, - safe-exceptions, - semigroups, - text, - time, - transformers, - unordered-containers, - vector, - }: - mkDerivation { - pname = "openapi-petstore"; - version = "0.0.4.0"; - sha256 = "0ihrzkbkq03six73ir30hy1dbi53wrl6bns27m5dphl9qdlcc1mi"; - libraryHaskellDepends = [ - aeson - base - base64-bytestring - bytestring - case-insensitive - containers - deepseq - exceptions - http-api-data - http-client - http-client-tls - http-media - http-types - iso8601-time - katip - microlens - mtl - network - random - safe-exceptions - text - time - transformers - unordered-containers - vector - ]; - testHaskellDepends = [ - aeson - base - bytestring - containers - hspec - iso8601-time - mtl - QuickCheck - semigroups - text - time - transformers - unordered-containers - vector - ]; - description = "Auto-generated openapi-petstore API Client"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "openapi-typed" = callPackage ( - { - mkDerivation, - aeson, - base, - hspec, - optics-core, - optics-extra, - text, - unordered-containers, - vector, - yaml, - }: - mkDerivation { - pname = "openapi-typed"; - version = "0.0.0.1"; - sha256 = "06wbcd5cr2dfdj1hbzi01byfr2lvvv0sncjsbx9n6vq2anh54wkm"; - libraryHaskellDepends = [ - aeson - base - text - unordered-containers - vector - ]; - testHaskellDepends = [ - aeson - base - hspec - optics-core - optics-extra - text - unordered-containers - yaml - ]; - description = "Types for OpenAPI"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "openapi3" = callPackage ( { mkDerivation, @@ -490911,274 +282718,6 @@ self: { } ) { inherit (pkgs) opencc; }; - "opench-meteo" = callPackage ( - { - mkDerivation, - aeson, - base, - data-default, - text, - time, - }: - mkDerivation { - pname = "opench-meteo"; - version = "0.2.0.3"; - sha256 = "1cvcqv6fx9jszrlv46xn7b3rfxk4bymzc42ndzzvnpwj592yd55i"; - libraryHaskellDepends = [ - aeson - base - data-default - text - time - ]; - description = "A Haskell implementation of the Swiss Meteo Net data API"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "opencog-atomspace" = callPackage ( - { - mkDerivation, - atomspace-cwrapper, - base, - transformers, - }: - mkDerivation { - pname = "opencog-atomspace"; - version = "0.1.0.8"; - sha256 = "1h5k849fw0w4wny05gby12n4i6yw4wh3vccnlmh2kp6lh7bdd98b"; - libraryHaskellDepends = [ - base - transformers - ]; - librarySystemDepends = [ atomspace-cwrapper ]; - description = "Haskell Bindings for the AtomSpace"; - license = "unknown"; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { atomspace-cwrapper = null; }; - - "opencv" = callPackage ( - { - mkDerivation, - aeson, - base, - base64-bytestring, - bindings-DSL, - bytestring, - Cabal, - containers, - criterion, - data-default, - deepseq, - directory, - Glob, - haskell-src-exts, - inline-c, - inline-c-cpp, - JuicyPixels, - lens, - linear, - opencv, - primitive, - QuickCheck, - repa, - tasty, - tasty-hunit, - tasty-quickcheck, - template-haskell, - text, - transformers, - vector, - }: - mkDerivation { - pname = "opencv"; - version = "0.0.2.1"; - sha256 = "1bwl3csl2bsgz32i7s59hb25hxj05vn9g3fa8xix9klz8kyrzam1"; - setupHaskellDepends = [ - base - Cabal - ]; - libraryHaskellDepends = [ - aeson - base - base64-bytestring - bindings-DSL - bytestring - containers - data-default - deepseq - inline-c - inline-c-cpp - JuicyPixels - linear - primitive - repa - template-haskell - text - transformers - vector - ]; - libraryPkgconfigDepends = [ opencv ]; - testHaskellDepends = [ - base - bytestring - containers - data-default - directory - Glob - haskell-src-exts - JuicyPixels - lens - linear - primitive - QuickCheck - repa - tasty - tasty-hunit - tasty-quickcheck - template-haskell - text - transformers - vector - ]; - benchmarkHaskellDepends = [ - base - bytestring - criterion - repa - ]; - description = "Haskell binding to OpenCV-3.x"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { inherit (pkgs) opencv; }; - - "opencv-extra" = callPackage ( - { - mkDerivation, - base, - bindings-DSL, - bytestring, - Cabal, - containers, - data-default, - directory, - Glob, - haskell-src-exts, - inline-c, - inline-c-cpp, - JuicyPixels, - linear, - opencv, - primitive, - template-haskell, - text, - transformers, - vector, - }: - mkDerivation { - pname = "opencv-extra"; - version = "0.2.0.1"; - sha256 = "0l4bphpsc9nv6kjvbyjqx0345mq4ryigi93ak64vv0bwp84xk5xz"; - setupHaskellDepends = [ - base - Cabal - ]; - libraryHaskellDepends = [ - base - bindings-DSL - bytestring - containers - inline-c - inline-c-cpp - linear - opencv - primitive - template-haskell - transformers - vector - ]; - testHaskellDepends = [ - base - bytestring - containers - data-default - directory - Glob - haskell-src-exts - JuicyPixels - linear - opencv - primitive - template-haskell - text - transformers - vector - ]; - description = "Haskell binding to OpenCV-3.x extra modules"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "opencv-raw" = callPackage ( - { - mkDerivation, - base, - bindings-DSL, - Cabal, - opencv, - vector, - }: - mkDerivation { - pname = "opencv-raw"; - version = "0.1.0.0"; - sha256 = "040hjkqd2zqkd8zbnfv8wmyzkfgckiv4njryilx1gpyp7c6qxpwn"; - libraryHaskellDepends = [ - base - bindings-DSL - Cabal - vector - ]; - libraryPkgconfigDepends = [ opencv ]; - description = "Raw Haskell bindings to OpenCV >= 2.0"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { inherit (pkgs) opencv; }; - - "opendatatable" = callPackage ( - { - mkDerivation, - base, - hxt, - template-haskell, - th-lift, - }: - mkDerivation { - pname = "opendatatable"; - version = "0.0.0"; - sha256 = "1bv729ljw07arz9fzg0nqj6fkpwkxkjds073cz3zr9in0a5b1531"; - libraryHaskellDepends = [ - base - hxt - template-haskell - th-lift - ]; - description = "A library for working with Open Data Tables"; - license = lib.licenses.bsd2; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "opendht-hs" = callPackage ( { mkDerivation, @@ -491293,43 +282832,6 @@ self: { } ) { }; - "openflow" = callPackage ( - { - mkDerivation, - aeson, - base, - bimap, - binary, - bytestring, - containers, - deepseq, - deepseq-generics, - hashable, - network, - }: - mkDerivation { - pname = "openflow"; - version = "0.3.1"; - sha256 = "0gyld73v5jjfd0ddkp62kxx05f5nr7rnald5ci7r4idp0lwndk22"; - libraryHaskellDepends = [ - aeson - base - bimap - binary - bytestring - containers - deepseq - deepseq-generics - hashable - network - ]; - description = "OpenFlow"; - license = "unknown"; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "opengl-dlp-stereo" = callPackage ( { mkDerivation, @@ -491400,114 +282902,6 @@ self: { } ) { }; - "opengles" = - callPackage - ( - { - mkDerivation, - base, - bytestring, - distributive, - EGL, - fixed, - future-resource, - ghc-prim, - GLESv2, - GLFW-b, - half, - lens, - linear, - packer, - random, - time, - transformers, - vector, - }: - mkDerivation { - pname = "opengles"; - version = "0.8.3"; - sha256 = "00z3wvcf0palyp8zh7hzjyjy83yjmxnj9z264mm59sxpcvnzzkf5"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - bytestring - distributive - fixed - future-resource - ghc-prim - half - lens - linear - packer - transformers - vector - ]; - librarySystemDepends = [ - EGL - GLESv2 - ]; - executableHaskellDepends = [ - base - bytestring - future-resource - GLFW-b - random - time - ]; - testHaskellDepends = [ base ]; - description = "Functional interface for OpenGL 4.1+ and OpenGL ES 2.0+"; - license = lib.licenses.lgpl3Only; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) - { - EGL = null; - GLESv2 = null; - }; - - "openid" = callPackage ( - { - mkDerivation, - base, - base-compat, - bytestring, - containers, - HsOpenSSL, - HTTP, - monadLib, - network, - network-uri, - time, - xml, - }: - mkDerivation { - pname = "openid"; - version = "0.2.1.0"; - sha256 = "1vwwwwcw03srgyr612gsnpv0gq8gvbykbwg6myrsn1k8c89f673d"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - base-compat - bytestring - containers - HsOpenSSL - HTTP - monadLib - network - network-uri - time - xml - ]; - description = "An implementation of the OpenID-2.0 spec."; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "openid-connect" = callPackage ( { mkDerivation, @@ -491635,52 +283029,6 @@ self: { } ) { }; - "openpgp-Crypto" = callPackage ( - { - mkDerivation, - base, - binary, - bytestring, - Crypto, - HUnit, - openpgp, - QuickCheck, - test-framework, - test-framework-hunit, - test-framework-quickcheck2, - utf8-string, - }: - mkDerivation { - pname = "openpgp-Crypto"; - version = "0.6"; - sha256 = "0143ln5pr3d0kg28838ipir3j6x6r6j9rc4f5dmvsb2ffl464zxm"; - libraryHaskellDepends = [ - base - binary - bytestring - Crypto - openpgp - utf8-string - ]; - testHaskellDepends = [ - base - binary - bytestring - Crypto - HUnit - openpgp - QuickCheck - test-framework - test-framework-hunit - test-framework-quickcheck2 - utf8-string - ]; - description = "Implementation of cryptography for use with OpenPGP using the Crypto library"; - license = "unknown"; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "openpgp-asciiarmor" = callPackage ( { mkDerivation, @@ -491725,101 +283073,6 @@ self: { } ) { }; - "openpgp-crypto-api" = callPackage ( - { - mkDerivation, - base, - binary, - bytestring, - cereal, - crypto-api, - cryptocipher, - cryptohash, - HUnit, - openpgp, - QuickCheck, - quickcheck-instances, - tagged, - test-framework, - test-framework-hunit, - test-framework-quickcheck2, - transformers, - utf8-string, - }: - mkDerivation { - pname = "openpgp-crypto-api"; - version = "0.6.3"; - sha256 = "18grb5jzf7n4670xww3ca2l05ck3lj2msynl57y5fjia8gfr8ijm"; - libraryHaskellDepends = [ - base - binary - bytestring - cereal - crypto-api - cryptocipher - cryptohash - openpgp - tagged - transformers - ]; - testHaskellDepends = [ - base - binary - bytestring - cereal - crypto-api - cryptocipher - cryptohash - HUnit - openpgp - QuickCheck - quickcheck-instances - tagged - test-framework - test-framework-hunit - test-framework-quickcheck2 - transformers - utf8-string - ]; - description = "Implement cryptography for OpenPGP using crypto-api compatible libraries"; - license = "unknown"; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "opensoundcontrol-ht" = callPackage ( - { - mkDerivation, - base, - binary, - bytestring, - hosc, - process, - random, - transformers, - utility-ht, - }: - mkDerivation { - pname = "opensoundcontrol-ht"; - version = "0.3"; - sha256 = "154bviaqkh9a02li6f2351764wgy0b0lh4a4s0wg8ql7ml0fykza"; - libraryHaskellDepends = [ - base - binary - bytestring - hosc - process - random - transformers - utility-ht - ]; - description = "Haskell OpenSoundControl utilities"; - license = "GPL"; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "opensource" = callPackage ( { mkDerivation, @@ -491861,98 +283114,6 @@ self: { } ) { }; - "openssh-github-keys" = callPackage ( - { - mkDerivation, - base, - directory, - dotenv, - filepath, - hspec, - keyword-args, - octohat, - optparse-applicative, - parsec, - text, - unix, - }: - mkDerivation { - pname = "openssh-github-keys"; - version = "0.1.1.0"; - sha256 = "0a7vfbw84p3iyggq92yhw2dcsmk1cycxaq3v1104i7ipr2kdm36a"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - octohat - text - ]; - executableHaskellDepends = [ - base - directory - dotenv - filepath - keyword-args - octohat - optparse-applicative - parsec - text - unix - ]; - testHaskellDepends = [ - base - hspec - keyword-args - octohat - optparse-applicative - parsec - text - ]; - description = "Fetch OpenSSH keys from a GitHub team"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - mainProgram = "openssh-github-keys"; - } - ) { }; - - "openssh-protocol" = callPackage ( - { - mkDerivation, - base, - bytestring, - cereal, - hedgehog, - integer-logarithms, - text, - time, - vector, - }: - mkDerivation { - pname = "openssh-protocol"; - version = "0.0.1"; - sha256 = "1rjr6a098zbshmsdm2c58i02h6r7xx38whz5lnb3zbmii09ljirc"; - libraryHaskellDepends = [ - base - bytestring - cereal - integer-logarithms - text - time - vector - ]; - testHaskellDepends = [ - base - cereal - hedgehog - time - ]; - description = "Haskell implementation of openssh protocol primitives"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "openssl-createkey" = callPackage ( { mkDerivation, @@ -492160,32 +283321,6 @@ self: { } ) { }; - "opentelemetry-http-client" = callPackage ( - { - mkDerivation, - base, - http-client, - http-types, - opentelemetry, - text, - }: - mkDerivation { - pname = "opentelemetry-http-client"; - version = "0.2.0"; - sha256 = "1z2fdlfc1hqzd9aypvrvyrc5547fvmfigh1wnsnbb9gswbckf6iy"; - libraryHaskellDepends = [ - base - http-client - http-types - opentelemetry - text - ]; - license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "opentelemetry-lightstep" = callPackage ( { mkDerivation, @@ -492401,46 +283536,6 @@ self: { } ) { }; - "opentheory-char" = callPackage ( - { - mkDerivation, - base, - opentheory, - opentheory-parser, - opentheory-primitive, - QuickCheck, - random, - }: - mkDerivation { - pname = "opentheory-char"; - version = "1.41"; - sha256 = "0z0dg3bgck8yjn45a7i5ymx2gm9i5m9skmg0n1cg7p6hgdka9j9i"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - opentheory - opentheory-parser - opentheory-primitive - QuickCheck - random - ]; - executableHaskellDepends = [ - base - opentheory - opentheory-parser - opentheory-primitive - QuickCheck - random - ]; - description = "Unicode characters"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - mainProgram = "opentheory-char-test"; - broken = true; - } - ) { }; - "opentheory-divides" = callPackage ( { mkDerivation, @@ -492679,118 +283774,6 @@ self: { } ) { }; - "opentok" = callPackage ( - { - mkDerivation, - aeson, - aeson-casing, - aeson-compat, - base, - base-compat, - base64-string, - bytestring, - containers, - convertible, - either, - hscolour, - hspec, - http-client, - http-client-tls, - http-conduit, - http-types, - iproute, - jose, - lens, - monad-time, - QuickCheck, - quickcheck-instances, - SHA, - split, - strings, - tasty, - tasty-hspec, - tasty-quickcheck, - text, - time, - transformers, - unordered-containers, - utf8-string, - uuid, - }: - mkDerivation { - pname = "opentok"; - version = "0.0.5"; - sha256 = "1jcqsa9p1794hgf5ywq605i4rb85dm5qpvznn4n3s4y8d409k6wq"; - libraryHaskellDepends = [ - aeson - aeson-casing - aeson-compat - base - base-compat - base64-string - bytestring - containers - convertible - either - hscolour - http-client - http-client-tls - http-conduit - http-types - iproute - jose - lens - monad-time - SHA - strings - text - time - transformers - unordered-containers - utf8-string - uuid - ]; - testHaskellDepends = [ - aeson - aeson-casing - aeson-compat - base - base-compat - base64-string - bytestring - containers - convertible - either - hspec - http-client - http-client-tls - http-conduit - http-types - iproute - jose - lens - monad-time - QuickCheck - quickcheck-instances - SHA - split - strings - tasty - tasty-hspec - tasty-quickcheck - text - time - transformers - unordered-containers - utf8-string - uuid - ]; - description = "An OpenTok SDK for Haskell"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "opentracing" = callPackage ( { mkDerivation, @@ -493062,47 +284045,6 @@ self: { } ) { }; - "opentype" = callPackage ( - { - mkDerivation, - base, - binary, - bytestring, - containers, - ghc, - microlens, - microlens-th, - mtl, - pretty-hex, - time, - unordered-containers, - vector, - }: - mkDerivation { - pname = "opentype"; - version = "0.1.1"; - sha256 = "03aba0y06dgqxa5d9d35bn2rq370vc53dr7z4vqnc4i04jsb8x60"; - libraryHaskellDepends = [ - base - binary - bytestring - containers - ghc - microlens - microlens-th - mtl - pretty-hex - time - unordered-containers - vector - ]; - description = "Opentype loading and writing"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "openweathermap" = callPackage ( { mkDerivation, @@ -493150,42 +284092,6 @@ self: { } ) { }; - "operate-do" = callPackage ( - { - mkDerivation, - base, - charset, - doctest, - filemanip, - haskell-src-meta, - hspec, - QuickCheck, - template-haskell, - }: - mkDerivation { - pname = "operate-do"; - version = "0.1.0"; - sha256 = "0r0pj2vqdskg6z4v7vhg76ai7vciyl0q43r0pbn6wcwprm0aknn1"; - libraryHaskellDepends = [ - base - charset - haskell-src-meta - template-haskell - ]; - testHaskellDepends = [ - base - doctest - filemanip - hspec - QuickCheck - ]; - description = "Simple project template from stack"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "operational" = callPackage ( { mkDerivation, @@ -493240,58 +284146,6 @@ self: { } ) { }; - "operational-class" = callPackage ( - { - mkDerivation, - base, - operational, - transformers, - }: - mkDerivation { - pname = "operational-class"; - version = "0.3.0.0"; - sha256 = "02z766b5a6fa7dgmw3qa1xryijf2im9n79gnjq0m5pd2hv5vja4b"; - libraryHaskellDepends = [ - base - operational - transformers - ]; - description = "MonadProgram typeclass for the operational package"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "operational-extra" = callPackage ( - { - mkDerivation, - base, - bytestring, - operational, - text, - time, - transformers, - }: - mkDerivation { - pname = "operational-extra"; - version = "0.4"; - sha256 = "0zgc8m49j88r7xlm77yzby7bvn01w3r4z8w28kk4xy0rm7gvs68s"; - libraryHaskellDepends = [ - base - bytestring - operational - text - time - transformers - ]; - description = "Interpretation functions and simple instruction sets for operational"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "oplang" = callPackage ( { mkDerivation, @@ -493440,44 +284294,6 @@ self: { } ) { }; - "opn" = callPackage ( - { - mkDerivation, - base, - directory, - filepath, - ini, - network-uri, - optparse-applicative, - process, - text, - unordered-containers, - }: - mkDerivation { - pname = "opn"; - version = "0.1.3"; - sha256 = "17ysp1xzqbcr58ibzwf88bim58yyc309kf71jw66gn0brp0b0w1h"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - directory - filepath - ini - network-uri - optparse-applicative - process - text - unordered-containers - ]; - description = "Open files or URLs using associated programs"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "opn"; - broken = true; - } - ) { }; - "opt-env-conf" = callPackage ( { mkDerivation, @@ -493896,131 +284712,6 @@ self: { } ) { }; - "optimal-blocks" = callPackage ( - { - mkDerivation, - base, - bytestring, - bytestring-arbitrary, - criterion, - cryptohash, - deepseq, - hex, - QuickCheck, - vector, - }: - mkDerivation { - pname = "optimal-blocks"; - version = "0.1.0"; - sha256 = "1863sh22yfy7i5ibqjsp3bzbaxjd7vwhy2j3r523qrcci0xs8n9b"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - bytestring - deepseq - vector - ]; - executableHaskellDepends = [ - base - bytestring - cryptohash - deepseq - hex - vector - ]; - testHaskellDepends = [ - base - bytestring - bytestring-arbitrary - deepseq - QuickCheck - vector - ]; - benchmarkHaskellDepends = [ - base - bytestring - criterion - deepseq - vector - ]; - description = "Optimal Block boundary determination for rsync-like behaviours"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "chunk"; - } - ) { }; - - "optimization" = callPackage ( - { - mkDerivation, - ad, - base, - distributive, - linear, - semigroupoids, - vector, - }: - mkDerivation { - pname = "optimization"; - version = "0.1.9"; - sha256 = "0v1bi97jvdnn4jfknsnayaqdawckh7xxcnkr5nwvxqnpckg89yyf"; - libraryHaskellDepends = [ - ad - base - distributive - linear - semigroupoids - vector - ]; - description = "Numerical optimization"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "optimusprime" = callPackage ( - { - mkDerivation, - base, - cmdargs, - containers, - fgl, - flite, - graphviz, - haskell98, - mtl, - parsec, - uniplate, - wl-pprint, - }: - mkDerivation { - pname = "optimusprime"; - version = "0.0.1.20091117"; - sha256 = "0642f9vv08qyqk3pjgin5k2sfv2ffhah9h9rc2xw6ahnygqbpbmf"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - cmdargs - containers - fgl - flite - graphviz - haskell98 - mtl - parsec - uniplate - wl-pprint - ]; - description = "A supercompiler for f-lite"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "optimusprime"; - } - ) { }; - "option" = callPackage ( { mkDerivation, base }: mkDerivation { @@ -494033,34 +284724,6 @@ self: { } ) { }; - "optional" = callPackage ( - { - mkDerivation, - base, - directory, - doctest, - filepath, - QuickCheck, - }: - mkDerivation { - pname = "optional"; - version = "0.0.1"; - sha256 = "1i1nl81gg5fndf3vafirpmklikn4xpy791is6ff8j7pzys0qfj8g"; - libraryHaskellDepends = [ base ]; - testHaskellDepends = [ - base - directory - doctest - filepath - QuickCheck - ]; - description = "Using type-classes for optional function arguments"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "optional-args" = callPackage ( { mkDerivation, base }: mkDerivation { @@ -494109,36 +284772,6 @@ self: { } ) { }; - "options-time" = callPackage ( - { - mkDerivation, - base, - chell, - options, - time, - }: - mkDerivation { - pname = "options-time"; - version = "1.0.1"; - sha256 = "0rsmwalmnry71w23k6sg0a307xgb2s71j9s12zqqq380fw6c1bhm"; - libraryHaskellDepends = [ - base - options - time - ]; - testHaskellDepends = [ - base - chell - options - time - ]; - description = "Command-line option types for dates and times"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "optparse-applicative" = callPackage ( { mkDerivation, @@ -494255,38 +284888,6 @@ self: { } ) { }; - "optparse-applicative-simple" = callPackage ( - { - mkDerivation, - attoparsec, - attoparsec-data, - base-prelude, - optparse-applicative, - rerebase, - text, - }: - mkDerivation { - pname = "optparse-applicative-simple"; - version = "1.1.0.2"; - sha256 = "0vpb2y9niy00msxbz11r6v3qc399lr2rl3x0ih6hpxrm8iihypv7"; - libraryHaskellDepends = [ - attoparsec - attoparsec-data - base-prelude - optparse-applicative - text - ]; - testHaskellDepends = [ - attoparsec-data - rerebase - ]; - description = "Simple command line interface arguments parser"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "optparse-declarative" = callPackage ( { mkDerivation, @@ -494377,29 +284978,6 @@ self: { } ) { }; - "optparse-helper" = callPackage ( - { - mkDerivation, - base, - optparse-applicative, - }: - mkDerivation { - pname = "optparse-helper"; - version = "0.2.1.1"; - sha256 = "043mdm25lpzbfghmda0iayv7lnff1gni9g29pd5h2ssgscyvs2qa"; - revision = "1"; - editedCabalFile = "13zhsnpdw3kckjrc3sz2i5cqgxwd6sisvik02q0j43d940jmmdk0"; - libraryHaskellDepends = [ - base - optparse-applicative - ]; - description = "Helper functions for optparse-applicative"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "optparse-simple" = callPackage ( { mkDerivation, @@ -494668,203 +285246,6 @@ self: { } ) { }; - "orc" = callPackage ( - { - mkDerivation, - base, - deepseq, - monadIO, - mtl, - process, - random, - stm, - }: - mkDerivation { - pname = "orc"; - version = "1.2.1.4"; - sha256 = "0zl456v2mwa68k2lq7fx3ds6xr9vbrijq8q8ma5mm1kk9p9znr0x"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - deepseq - monadIO - mtl - process - stm - ]; - executableHaskellDepends = [ - base - deepseq - monadIO - mtl - process - random - stm - ]; - description = "Orchestration-style co-ordination EDSL"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "orc"; - broken = true; - } - ) { }; - - "orchestrate" = callPackage ( - { - mkDerivation, - aeson, - base, - bytestring, - case-insensitive, - data-default, - either, - errors, - hspec, - http-client, - http-types, - lens, - mtl, - QuickCheck, - smallcheck, - text, - transformers, - unordered-containers, - wreq, - }: - mkDerivation { - pname = "orchestrate"; - version = "0.2.0.3"; - sha256 = "1mxh1rsa8xsh5vz7yc59vhl2dkaklyh84fas9690lnfhjgc0minc"; - libraryHaskellDepends = [ - aeson - base - bytestring - case-insensitive - data-default - either - errors - http-client - http-types - lens - mtl - text - transformers - unordered-containers - wreq - ]; - testHaskellDepends = [ - aeson - base - bytestring - errors - hspec - lens - QuickCheck - smallcheck - text - wreq - ]; - description = "An API client for http://orchestrate.io/."; - license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "orchid" = callPackage ( - { - mkDerivation, - base, - bytestring, - containers, - encoding, - extensible-exceptions, - fclabels, - filestore, - hscolour, - mtl, - nano-md5, - parsec, - process, - QuickCheck, - salvia, - salvia-extras, - stm, - time, - unix, - xml, - }: - mkDerivation { - pname = "orchid"; - version = "0.0.8"; - sha256 = "1d3cfhhsv1qpiiin4cs9wxx2a6vwcj0iad746z7l1qzyxrhg4dkm"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base - bytestring - containers - encoding - extensible-exceptions - fclabels - filestore - hscolour - mtl - nano-md5 - parsec - process - QuickCheck - salvia - salvia-extras - stm - time - unix - xml - ]; - description = "Haskell Wiki Library"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "orchid-demo" = callPackage ( - { - mkDerivation, - base, - extensible-exceptions, - mtl, - network, - orchid, - Pipe, - salvia, - salvia-extras, - stm, - }: - mkDerivation { - pname = "orchid-demo"; - version = "0.0.6"; - sha256 = "1gfjmakfx8244q1yqbgp2ji9bh45ll8ixvxbdd961my30j7gh29z"; - isLibrary = false; - isExecutable = true; - enableSeparateDataOutput = true; - executableHaskellDepends = [ - base - extensible-exceptions - mtl - network - orchid - Pipe - salvia - salvia-extras - stm - ]; - description = "Haskell Wiki Demo"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "orchid-demo"; - } - ) { }; - "ord-adhoc" = callPackage ( { mkDerivation, @@ -494896,39 +285277,6 @@ self: { } ) { }; - "order-maintenance" = callPackage ( - { - mkDerivation, - base, - Cabal, - cabal-test-quickcheck, - containers, - QuickCheck, - transformers, - }: - mkDerivation { - pname = "order-maintenance"; - version = "0.2.1.0"; - sha256 = "0fabgakn9gpb90h5wj2iykp0snaghsx51rnzbbhlgkzicymdhnf9"; - libraryHaskellDepends = [ - base - containers - transformers - ]; - testHaskellDepends = [ - base - Cabal - cabal-test-quickcheck - containers - QuickCheck - transformers - ]; - description = "Algorithms for the order maintenance problem with a safe interface"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "order-statistic-tree" = callPackage ( { mkDerivation, @@ -494964,35 +285312,6 @@ self: { } ) { }; - "order-statistics" = callPackage ( - { - mkDerivation, - base, - containers, - math-functions, - statistics, - vector, - vector-space, - }: - mkDerivation { - pname = "order-statistics"; - version = "0.1.1"; - sha256 = "1df9b0q4rmgnd74q7pckcppyiygzba6f39vajkwb2pmxlfafcy7a"; - libraryHaskellDepends = [ - base - containers - math-functions - statistics - vector - vector-space - ]; - description = "L-Estimators for robust statistics"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "ordered" = callPackage ( { mkDerivation, base }: mkDerivation { @@ -495164,74 +285483,6 @@ self: { } ) { }; - "ordrea" = callPackage ( - { - mkDerivation, - base, - containers, - directory, - process, - split, - transformers, - vector, - }: - mkDerivation { - pname = "ordrea"; - version = "0.3.0.0"; - sha256 = "067nf69diqi00vswd7xarl55ps9v5cwqmph1w6nzjylnl0pjh811"; - libraryHaskellDepends = [ - base - containers - transformers - vector - ]; - testHaskellDepends = [ - base - directory - process - split - ]; - description = "Push-pull implementation of discrete-time FRP"; - license = lib.licenses.publicDomain; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "oref" = callPackage ( - { - mkDerivation, - base, - containers, - either, - mtl, - transformers, - }: - mkDerivation { - pname = "oref"; - version = "0.0.3"; - sha256 = "0cfs0nhxbi580gffba9lz0j36cggwqafxkz821xrd4j4i36a7k5v"; - libraryHaskellDepends = [ - base - containers - either - mtl - transformers - ]; - testHaskellDepends = [ - base - containers - either - mtl - transformers - ]; - description = "Owned references in the Ownership Monad"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "org-mode" = callPackage ( { mkDerivation, @@ -495385,145 +285636,6 @@ self: { } ) { }; - "organize-imports" = callPackage ( - { - mkDerivation, - attoparsec, - base, - text, - }: - mkDerivation { - pname = "organize-imports"; - version = "0.4.0.0"; - sha256 = "15bqb76z53zssqvqckg4q1ij573y3zjz3ax3rgvz7wf9ql7nfsjl"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - attoparsec - base - text - ]; - description = "Organize scala imports"; - license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - mainProgram = "organize-imports"; - broken = true; - } - ) { }; - - "orgmode" = callPackage ( - { - mkDerivation, - base, - containers, - hspec, - HStringTemplate, - network, - network-uri, - parsec, - QuickCheck, - random, - regex-posix, - syb, - text, - }: - mkDerivation { - pname = "orgmode"; - version = "0.1.0.1"; - sha256 = "1zpapyjnk3q5rm85lvhdg1k5av3q2bbbz9m4rhn83pnpr1an50h6"; - libraryHaskellDepends = [ - base - containers - HStringTemplate - parsec - regex-posix - syb - text - ]; - testHaskellDepends = [ - base - containers - hspec - HStringTemplate - network - network-uri - parsec - QuickCheck - random - regex-posix - syb - text - ]; - description = "Org Mode library for haskell"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "orgmode-parse" = callPackage ( - { - mkDerivation, - aeson, - attoparsec, - base, - bytestring, - containers, - free, - hashable, - HUnit, - neat-interpolation, - old-locale, - semigroups, - tasty, - tasty-hunit, - text, - thyme, - unordered-containers, - }: - mkDerivation { - pname = "orgmode-parse"; - version = "0.2.3"; - sha256 = "0vwmxgxvyr44qx2zvc796i7jid3c5nrfa82pf696vvjnxgb805sa"; - libraryHaskellDepends = [ - aeson - attoparsec - base - bytestring - containers - free - hashable - old-locale - semigroups - text - thyme - unordered-containers - ]; - testHaskellDepends = [ - aeson - attoparsec - base - bytestring - containers - free - hashable - HUnit - neat-interpolation - old-locale - semigroups - tasty - tasty-hunit - text - thyme - unordered-containers - ]; - description = "A collection of Attoparsec combinators for parsing org-mode flavored documents"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "orgstat" = callPackage ( { mkDerivation, @@ -495628,162 +285740,6 @@ self: { description = "Statistics visualizer for org-mode"; license = lib.licenses.gpl3Only; hydraPlatforms = lib.platforms.none; - } - ) { }; - - "origami" = callPackage ( - { - mkDerivation, - base, - bifunctors, - containers, - HUnit, - lens, - mtl, - pretty, - template-haskell, - test-framework, - test-framework-hunit, - }: - mkDerivation { - pname = "origami"; - version = "0.0.6"; - sha256 = "03hdwl8wgln8ymf695a0srf7ggf0vb3a2fing4xji4ssrkynqn1l"; - libraryHaskellDepends = [ - base - bifunctors - containers - lens - mtl - pretty - template-haskell - ]; - testHaskellDepends = [ - base - HUnit - test-framework - test-framework-hunit - ]; - description = "An un-SYB framework for transforming heterogenous data through folds"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "orion-hs" = callPackage ( - { - mkDerivation, - aeson, - aeson-better-errors, - aeson-casing, - base, - base64-bytestring, - bytestring, - containers, - exceptions, - hslogger, - http-api-data, - http-client, - http-types, - iso8601-time, - lens, - mtl, - string-conversions, - text, - time, - unordered-containers, - word8, - wreq, - }: - mkDerivation { - pname = "orion-hs"; - version = "0.1.3"; - sha256 = "1q99s1yd4qk51lxv6ahbcw9wmy1asd9aymw2yw2802c3yvzyypx4"; - libraryHaskellDepends = [ - aeson - aeson-better-errors - aeson-casing - base - base64-bytestring - bytestring - containers - exceptions - hslogger - http-api-data - http-client - http-types - iso8601-time - lens - mtl - string-conversions - text - time - unordered-containers - word8 - wreq - ]; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "orizentic" = callPackage ( - { - mkDerivation, - aeson, - base, - bytestring, - containers, - hspec, - jwt, - mtl, - optparse-applicative, - random, - text, - time, - uuid, - }: - mkDerivation { - pname = "orizentic"; - version = "0.1.0.0"; - sha256 = "0dyq7n1zxhz23l3jxbryrsvpqrb6yjnc30zph6ik1r0k6nfm2931"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson - base - bytestring - containers - jwt - mtl - random - text - time - uuid - ]; - executableHaskellDepends = [ - aeson - base - bytestring - jwt - mtl - optparse-applicative - text - time - ]; - testHaskellDepends = [ - base - hspec - jwt - mtl - time - ]; - description = "Token-based authentication and authorization"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "orizentic"; broken = true; } ) { }; @@ -496438,60 +286394,6 @@ self: { } ) { }; - "osc" = callPackage ( - { - mkDerivation, - attoparsec, - base, - binary, - bytestring, - data-binary-ieee754, - network, - }: - mkDerivation { - pname = "osc"; - version = "1.0.0.2"; - sha256 = "0f7diw6nna7mq5rsn63jk9n230pnrr5ppi5dp8rcpniqry2gs1q3"; - libraryHaskellDepends = [ - attoparsec - base - binary - bytestring - data-binary-ieee754 - network - ]; - description = "A library to handle messages in the OSC protocol"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "oscpacking" = callPackage ( - { - mkDerivation, - base, - colour, - gloss, - random, - }: - mkDerivation { - pname = "oscpacking"; - version = "0.3.0.0"; - sha256 = "1452a2y085xbj5q83g6y8f9vrxmlq804i8kyx6rfwyzfvzq5s3ic"; - libraryHaskellDepends = [ - base - colour - gloss - random - ]; - description = "Implements an osculatory packing (kissing circles) algorithm and display"; - license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "osdkeys" = callPackage ( { mkDerivation, @@ -496533,183 +286435,6 @@ self: { } ) { }; - "oset" = callPackage ( - { - mkDerivation, - base, - containers, - hspec, - hspec-discover, - }: - mkDerivation { - pname = "oset"; - version = "0.4.0.1"; - sha256 = "0b6i52472367b47bqflh5jhpi4i052826jmsg4vkdn0cpbv455sv"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - containers - ]; - executableHaskellDepends = [ - base - containers - ]; - testHaskellDepends = [ - base - containers - hspec - ]; - testToolDepends = [ hspec-discover ]; - description = "An insertion-order-preserving set"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - mainProgram = "oset-app"; - broken = true; - } - ) { }; - - "osm-conduit" = callPackage ( - { - mkDerivation, - base, - conduit, - exceptions, - hspec, - resourcet, - text, - transformers, - xml-conduit, - xml-types, - }: - mkDerivation { - pname = "osm-conduit"; - version = "0.1.0.0"; - sha256 = "1wjifhfj3rscvy2776vrnzr0j1wpk9v711i4fkrc59gybiaflrfz"; - libraryHaskellDepends = [ - base - conduit - exceptions - resourcet - text - transformers - xml-conduit - xml-types - ]; - testHaskellDepends = [ - base - conduit - exceptions - hspec - resourcet - text - xml-conduit - xml-types - ]; - description = "Parse and operate on OSM data in efficient way"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "osm-download" = callPackage ( - { - mkDerivation, - base, - bytestring, - conduit, - containers, - data-default, - directory, - gps, - http-conduit, - http-types, - monad-control, - monadIO, - mtl, - persistent, - persistent-sqlite, - persistent-template, - pool-conduit, - stm, - stm-chans, - text, - time, - transformers, - transformers-base, - }: - mkDerivation { - pname = "osm-download"; - version = "0.4"; - sha256 = "056ggv31nycgz59gkmibzmx0k5x8klb5bwlnbhdih8d71larbsb3"; - libraryHaskellDepends = [ - base - bytestring - conduit - containers - data-default - directory - gps - http-conduit - http-types - monad-control - monadIO - mtl - persistent - persistent-sqlite - persistent-template - pool-conduit - stm - stm-chans - text - time - transformers - transformers-base - ]; - description = "Download Open Street Map tiles"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "oso2pdf" = callPackage ( - { - mkDerivation, - base, - directory, - filepath, - lens, - mtl, - optparse-applicative, - pandoc-types, - process, - temporary, - }: - mkDerivation { - pname = "oso2pdf"; - version = "0.1.0"; - sha256 = "1vkxjwz6xvsbyqfm962gb8k0fgdciya3vslljhhl2cmkc0rhrs20"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - directory - filepath - lens - mtl - optparse-applicative - pandoc-types - process - temporary - ]; - description = "Better conversion of Oxford Scholarship Online material to PDF"; - license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "ostree-pin" = callPackage ( { mkDerivation, @@ -496773,82 +286498,6 @@ self: { } ) { }; - "osx-ar" = callPackage ( - { - mkDerivation, - base, - binary, - bytestring, - containers, - }: - mkDerivation { - pname = "osx-ar"; - version = "0.11"; - sha256 = "1d2lna7gvygiq062p2y1zy182wv3vkr0lda49y502ad6jf483xdn"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base - binary - bytestring - containers - ]; - description = "Parser for OS X static archive format"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "ot" = callPackage ( - { - mkDerivation, - aeson, - attoparsec, - base, - binary, - either, - ghc, - HUnit, - mtl, - QuickCheck, - test-framework, - test-framework-hunit, - test-framework-quickcheck2, - text, - }: - mkDerivation { - pname = "ot"; - version = "0.2.1.0"; - sha256 = "015aikqbj7mxix6z46h4jg7vg9936iz3mwn14l89ns9w224ciwan"; - libraryHaskellDepends = [ - aeson - attoparsec - base - binary - either - ghc - mtl - QuickCheck - text - ]; - testHaskellDepends = [ - aeson - base - binary - HUnit - QuickCheck - test-framework - test-framework-hunit - test-framework-quickcheck2 - text - ]; - description = "Real-time collaborative editing with Operational Transformation"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "otp-authenticator" = callPackage ( { mkDerivation, @@ -496921,38 +286570,6 @@ self: { } ) { }; - "ottparse-pretty" = callPackage ( - { - mkDerivation, - base, - containers, - parsec, - split, - uniplate, - }: - mkDerivation { - pname = "ottparse-pretty"; - version = "0.1.2.6"; - sha256 = "1q52zc214bjiksrrrr5pcr30yimjzgga4ciw943za169kw3xpas5"; - revision = "3"; - editedCabalFile = "0g17l53dp1vcn2yzv37yvph9r4jsw4lgwip4l3h038r9g940lwjc"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - containers - parsec - split - uniplate - ]; - description = "Pretty-printer for Ott parse trees"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "ottparse-pretty"; - broken = true; - } - ) { }; - "oughta" = callPackage ( { mkDerivation, @@ -497135,30 +286752,6 @@ self: { } ) { }; - "overload" = callPackage ( - { - mkDerivation, - base, - simple-effects, - template-haskell, - th-expand-syns, - }: - mkDerivation { - pname = "overload"; - version = "0.1.0.5"; - sha256 = "046lxmcrk072l08rxbbzb883gd7cffxx76l3x29h78d10aai6cac"; - libraryHaskellDepends = [ - base - simple-effects - template-haskell - th-expand-syns - ]; - description = "Finite overloading"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "overloaded" = callPackage ( { mkDerivation, @@ -497259,69 +286852,6 @@ self: { } ) { }; - "overloaded-records" = callPackage ( - { - mkDerivation, - base, - data-default-class, - HUnit, - template-haskell, - test-framework, - test-framework-hunit, - }: - mkDerivation { - pname = "overloaded-records"; - version = "0.4.2.0"; - sha256 = "15ijx0mbgxlwardr39dsya21hidfwwgsd374s6kasg2imhzv9cc6"; - revision = "1"; - editedCabalFile = "01bn5jqfkffcl4xdvw7hbarv0pvwgdrjcfvm4gqaz7ia7cwcpynr"; - libraryHaskellDepends = [ - base - data-default-class - template-haskell - ]; - testHaskellDepends = [ - base - data-default-class - HUnit - template-haskell - test-framework - test-framework-hunit - ]; - description = "Overloaded Records based on current GHC proposal"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "overture" = callPackage ( - { - mkDerivation, - base, - criterion, - doctest, - }: - mkDerivation { - pname = "overture"; - version = "0.0.5"; - sha256 = "0mv9iakq1yjawf7f0zckmxbzlcv2rlqngsllfsrcydi6lxazznzw"; - libraryHaskellDepends = [ base ]; - testHaskellDepends = [ - base - doctest - ]; - benchmarkHaskellDepends = [ - base - criterion - ]; - description = "An alternative to some of the Prelude"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "owoify-hs" = callPackage ( { mkDerivation, @@ -497647,35 +287177,6 @@ self: { } ) { }; - "pack" = callPackage ( - { - mkDerivation, - array, - base, - bytestring, - lens, - transformers, - vector, - }: - mkDerivation { - pname = "pack"; - version = "0.4.0"; - sha256 = "19ps1dk855br5h9x72f26sjx8xnh4gmqb0cf5mi65jpp5zvp0zj9"; - libraryHaskellDepends = [ - array - base - bytestring - lens - transformers - vector - ]; - description = "Bidirectional fast ByteString packer/unpacker"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "package-description-remote" = callPackage ( { mkDerivation, @@ -497708,45 +287209,6 @@ self: { } ) { }; - "package-o-tron" = callPackage ( - { - mkDerivation, - base, - Cabal, - filemanip, - filepath, - groom, - packdeps, - process, - }: - mkDerivation { - pname = "package-o-tron"; - version = "0.1.0.0"; - sha256 = "0r4zksyszbhywyyayjs1cn8d69cnm0p4y9xqir9nw1g4gkl23df8"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - filemanip - filepath - groom - process - ]; - executableHaskellDepends = [ - base - Cabal - filemanip - filepath - groom - packdeps - process - ]; - description = "Utilities for working with cabal packages and your package database"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "package-version" = callPackage ( { mkDerivation, @@ -497784,36 +287246,6 @@ self: { } ) { }; - "package-vt" = callPackage ( - { - mkDerivation, - base, - Cabal, - Diff, - filepath, - haskell-src-exts, - }: - mkDerivation { - pname = "package-vt"; - version = "0.1.3.3"; - sha256 = "0rsv60n6fd9kkjihdjzi7hadxj8yd6bd640w92y2wx1y9qxl8lhm"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - Cabal - Diff - filepath - haskell-src-exts - ]; - description = "Haskell Package Versioning Tool"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "package-vt"; - broken = true; - } - ) { }; - "packcheck" = callPackage ( { mkDerivation, base }: mkDerivation { @@ -497828,101 +287260,6 @@ self: { } ) { }; - "packdeps" = callPackage ( - { - mkDerivation, - base, - bytestring, - Cabal, - containers, - directory, - filepath, - optparse-applicative, - process, - semigroups, - split, - tar, - text, - time, - }: - mkDerivation { - pname = "packdeps"; - version = "0.6.0.0"; - sha256 = "10hrsshzljs6yjzgpw6kpdc4fx4xrbafwicpapcmmj1y66rj00dz"; - revision = "1"; - editedCabalFile = "02akm54nkfw8jzc8b1b49pkbn4h73s5f968gyafmnq9jla0rcsjg"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - bytestring - Cabal - containers - directory - filepath - split - tar - text - time - ]; - executableHaskellDepends = [ - base - Cabal - containers - optparse-applicative - process - semigroups - text - ]; - description = "Check your cabal packages for lagging dependencies"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "packdeps"; - broken = true; - } - ) { }; - - "packed" = callPackage ( - { - mkDerivation, - base, - containers, - gauge, - ghc-prim, - hedgehog, - primitive, - tasty, - tasty-hedgehog, - tasty-hunit, - }: - mkDerivation { - pname = "packed"; - version = "0.1.0"; - sha256 = "1isacbh8w24awsh3nn7djcnmy8am4s4i5npsidnqm5qgcqikpfh8"; - libraryHaskellDepends = [ - base - ghc-prim - primitive - ]; - testHaskellDepends = [ - base - containers - ghc-prim - hedgehog - tasty - tasty-hedgehog - tasty-hunit - ]; - benchmarkHaskellDepends = [ - base - gauge - ]; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "packed-data" = callPackage ( { mkDerivation, @@ -497993,131 +287330,6 @@ self: { } ) { }; - "packed-dawg" = callPackage ( - { - mkDerivation, - base, - binary, - criterion, - deepseq, - HUnit, - mtl, - QuickCheck, - tasty, - tasty-hunit, - tasty-quickcheck, - unordered-containers, - vector, - vector-binary-instances, - }: - mkDerivation { - pname = "packed-dawg"; - version = "0.2.0.8"; - sha256 = "1z6a75i0ma7cs8hsiqz9pqwycrw61ph4rvc1w6iczbjmmjgns13r"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base - binary - deepseq - mtl - unordered-containers - vector - vector-binary-instances - ]; - testHaskellDepends = [ - base - binary - deepseq - HUnit - mtl - QuickCheck - tasty - tasty-hunit - tasty-quickcheck - unordered-containers - vector - vector-binary-instances - ]; - benchmarkHaskellDepends = [ - base - binary - criterion - deepseq - mtl - unordered-containers - vector - vector-binary-instances - ]; - description = "Generation and traversal of highly compressed directed acyclic word graphs"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "packed-multikey-map" = callPackage ( - { - mkDerivation, - base, - constraints, - containers, - QuickCheck, - tasty, - tasty-hunit, - tasty-quickcheck, - transformers, - vector, - }: - mkDerivation { - pname = "packed-multikey-map"; - version = "0.1.0.0"; - sha256 = "19bh697xazsi22krwjgy83hv1pscnaqx544d5pk0q71wnync5m89"; - revision = "1"; - editedCabalFile = "1z6bx1qga02f33l194k2m45gs9cddq9q7q52b2vhv408n09jixrn"; - libraryHaskellDepends = [ - base - constraints - containers - QuickCheck - transformers - vector - ]; - testHaskellDepends = [ - base - tasty - tasty-hunit - tasty-quickcheck - ]; - description = "Efficient “spreadsheet table” like maps with multiple marginals"; - license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "packedstring" = callPackage ( - { - mkDerivation, - array, - base, - }: - mkDerivation { - pname = "packedstring"; - version = "0.1.0.1"; - sha256 = "1x78pzzdlnpcmh9p37rlf8m5cxf3yqm2alf3whl4zpr9w25r0qj8"; - revision = "1"; - editedCabalFile = "1kqbbvvpb0zn19dp4lx598iwgpbswz1qvclrcy5v27vjivzk9hyb"; - libraryHaskellDepends = [ - array - base - ]; - description = "(Deprecated) Packed Strings"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "packer" = callPackage ( { mkDerivation, @@ -498151,90 +287363,6 @@ self: { } ) { }; - "packer-messagepack" = callPackage ( - { - mkDerivation, - base, - bytestring, - containers, - hedgehog, - packer, - safe-exceptions, - text, - unliftio, - }: - mkDerivation { - pname = "packer-messagepack"; - version = "0.2.0.0"; - sha256 = "1alilaj2gk7pwdl7cpds7s0b35w9dnrbrff55sqdx2n1dyrxn62h"; - libraryHaskellDepends = [ - base - bytestring - containers - packer - safe-exceptions - text - unliftio - ]; - testHaskellDepends = [ - base - bytestring - containers - hedgehog - packer - safe-exceptions - text - ]; - description = "MessagePack Serialization an Deserialization for Packer"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "packman" = callPackage ( - { - mkDerivation, - array, - base, - binary, - bytestring, - Cabal, - directory, - ghc-prim, - primitive, - QuickCheck, - }: - mkDerivation { - pname = "packman"; - version = "0.5.0"; - sha256 = "1xnh1jl33a84pi0cyz62wxwrgfx3amdwc3f906a1wa9bwy7xkcih"; - libraryHaskellDepends = [ - array - base - binary - bytestring - ghc-prim - primitive - ]; - testHaskellDepends = [ - array - base - binary - bytestring - Cabal - directory - ghc-prim - primitive - QuickCheck - ]; - description = "Serialization library for GHC"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "packstream" = callPackage ( { mkDerivation, @@ -498277,70 +287405,6 @@ self: { } ) { }; - "packunused" = callPackage ( - { - mkDerivation, - base, - Cabal, - directory, - filepath, - haskell-src-exts, - optparse-applicative, - process, - split, - }: - mkDerivation { - pname = "packunused"; - version = "0.1.2"; - sha256 = "0ijlpdmsjb4rh94rcamxdg69xrza0s5clv3ipf2h3rgnidbgznfk"; - revision = "1"; - editedCabalFile = "1mzjb3bkxxfy19zwcpdh96n8c28vb1ml19zjpgvyirf0qi6rz6m7"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - Cabal - directory - filepath - haskell-src-exts - optparse-applicative - process - split - ]; - description = "Tool for detecting redundant Cabal package dependencies"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "packunused"; - broken = true; - } - ) { }; - - "pacman-memcache" = callPackage ( - { - mkDerivation, - base, - deepseq, - directory-tree, - }: - mkDerivation { - pname = "pacman-memcache"; - version = "0.1.0.3"; - sha256 = "04jlfinds38kjy0qrk00a7ik5x7mkdwkb0cwmlzlif45x4zrhwfv"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - deepseq - directory-tree - ]; - description = "Read whole Pacman database which pushes it into the memory cache"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "pacman-memcache"; - broken = true; - } - ) { }; - "pact-time" = callPackage ( { mkDerivation, @@ -498390,32 +287454,6 @@ self: { } ) { }; - "padKONTROL" = callPackage ( - { - mkDerivation, - base, - containers, - hmidi, - minioperational, - transformers, - }: - mkDerivation { - pname = "padKONTROL"; - version = "0.1"; - sha256 = "1sv7124ms2msqb2wb361xshykmh8cr4i85qayjak8y8q7bpzkdfd"; - libraryHaskellDepends = [ - base - containers - hmidi - minioperational - transformers - ]; - description = "Controlling padKONTROL native mode"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "paddle" = callPackage ( { mkDerivation, @@ -498508,126 +287546,6 @@ self: { } ) { }; - "pads-haskell" = callPackage ( - { - mkDerivation, - base, - byteorder, - bytestring, - containers, - ghc-prim, - haskell-src-meta, - HUnit, - mainland-pretty, - mtl, - mwc-random, - parsec, - QuickCheck, - random, - regex-posix, - syb, - template-haskell, - test-framework, - test-framework-hunit, - test-framework-quickcheck2, - th-lift, - time, - transformers, - }: - mkDerivation { - pname = "pads-haskell"; - version = "0.1.0.0"; - sha256 = "0c4by0amwp5kki7h46pygd6p6f5yx0zzlbzcfhd68h5ka0alkfdf"; - libraryHaskellDepends = [ - base - byteorder - bytestring - containers - ghc-prim - haskell-src-meta - HUnit - mainland-pretty - mtl - mwc-random - parsec - random - regex-posix - syb - template-haskell - th-lift - time - transformers - ]; - testHaskellDepends = [ - base - byteorder - bytestring - containers - ghc-prim - haskell-src-meta - HUnit - mainland-pretty - mtl - mwc-random - parsec - QuickCheck - random - regex-posix - syb - template-haskell - test-framework - test-framework-hunit - test-framework-quickcheck2 - th-lift - time - transformers - ]; - description = "PADS data description language for Haskell"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "pagarme" = callPackage ( - { - mkDerivation, - aeson, - base, - bytestring, - containers, - lens, - text, - wreq, - }: - mkDerivation { - pname = "pagarme"; - version = "0.1.0.0"; - sha256 = "1zkh8cx4bdgsyra7x9kzzdcckg65y1hacwq90w36gdl6i4hs7nj0"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson - base - bytestring - containers - lens - text - wreq - ]; - executableHaskellDepends = [ - base - text - wreq - ]; - description = "Pagarme API wrapper"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - mainProgram = "testbin"; - broken = true; - } - ) { }; - "pager" = callPackage ( { mkDerivation, @@ -498677,71 +287595,6 @@ self: { } ) { }; - "pagerduty" = callPackage ( - { - mkDerivation, - aeson, - base, - bifunctors, - bytestring, - bytestring-conversion, - conduit, - data-default-class, - exceptions, - generics-sop, - http-client, - http-types, - lens, - lens-aeson, - mmorph, - monad-control, - mtl, - template-haskell, - text, - time, - time-locale-compat, - transformers, - transformers-base, - transformers-compat, - unordered-containers, - }: - mkDerivation { - pname = "pagerduty"; - version = "0.0.8"; - sha256 = "0qq44zm5dxwdv6pg8dvn2dpvv34dp3cqf7pb1cbdjbb71bvrx3rg"; - libraryHaskellDepends = [ - aeson - base - bifunctors - bytestring - bytestring-conversion - conduit - data-default-class - exceptions - generics-sop - http-client - http-types - lens - lens-aeson - mmorph - monad-control - mtl - template-haskell - text - time - time-locale-compat - transformers - transformers-base - transformers-compat - unordered-containers - ]; - description = "Client library for PagerDuty Integration and REST APIs"; - license = "unknown"; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "pagerduty-hs" = callPackage ( { mkDerivation, @@ -498883,37 +287736,6 @@ self: { } ) { }; - "pagure-hook-receiver" = callPackage ( - { - mkDerivation, - base, - containers, - scotty, - shelly, - text, - transformers, - unix, - }: - mkDerivation { - pname = "pagure-hook-receiver"; - version = "0.1.0.0"; - sha256 = "0qnnkxcad4843v6c1fqqkiip6cv82q5fckpn5v40sw2p9xk3lkcl"; - libraryHaskellDepends = [ - base - containers - scotty - shelly - text - transformers - unix - ]; - description = "Receive hooks from pagure and do things with them"; - license = lib.licenses.bsd2; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "paint" = callPackage ( { mkDerivation, base }: mkDerivation { @@ -498929,72 +287751,6 @@ self: { } ) { }; - "pairing" = callPackage ( - { - mkDerivation, - base, - bytestring, - criterion, - elliptic-curve, - errors, - galois-field, - groups, - MonadRandom, - protolude, - QuickCheck, - quickcheck-instances, - tasty, - tasty-hunit, - tasty-quickcheck, - }: - mkDerivation { - pname = "pairing"; - version = "1.1.0"; - sha256 = "1k19bmdnc9dlm62b6hvjnc4k7j3yi5hsc0m8yvw33qb63ci36mmk"; - libraryHaskellDepends = [ - base - bytestring - elliptic-curve - errors - galois-field - groups - MonadRandom - protolude - tasty-quickcheck - ]; - testHaskellDepends = [ - base - bytestring - elliptic-curve - errors - galois-field - groups - MonadRandom - protolude - QuickCheck - quickcheck-instances - tasty - tasty-hunit - tasty-quickcheck - ]; - benchmarkHaskellDepends = [ - base - bytestring - criterion - elliptic-curve - errors - galois-field - groups - MonadRandom - protolude - tasty-quickcheck - ]; - description = "Bilinear pairings"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "palette" = callPackage ( { mkDerivation, @@ -499180,67 +287936,6 @@ self: { } ) { }; - "panda" = callPackage ( - { - mkDerivation, - base, - cgi, - containers, - data-default, - directory, - filepath, - gravatar, - haskell98, - hcheat, - kibro, - MissingH, - mps, - network, - old-locale, - old-time, - pandoc, - parsec, - parsedate, - process, - rss, - utf8-string, - xhtml, - }: - mkDerivation { - pname = "panda"; - version = "2009.4.1"; - sha256 = "0yn6ia1pql5fvj784a57ym74n5sd08n1g9djgapllw9lkf6r7hv7"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base - cgi - containers - data-default - directory - filepath - gravatar - haskell98 - hcheat - kibro - MissingH - mps - network - old-locale - old-time - pandoc - parsec - parsedate - process - rss - utf8-string - xhtml - ]; - description = "A simple static blog engine"; - license = "GPL"; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "pandoc" = callPackage ( { mkDerivation, @@ -499677,122 +288372,6 @@ self: { } ) { }; - "pandoc-citeproc" = callPackage ( - { - mkDerivation, - aeson, - aeson-pretty, - attoparsec, - base, - bytestring, - Cabal, - containers, - data-default, - directory, - filepath, - hs-bibutils, - HsYAML, - HsYAML-aeson, - libyaml, - mtl, - network, - old-locale, - pandoc, - pandoc-types, - parsec, - process, - rfc5051, - safe, - setenv, - split, - syb, - tagsoup, - temporary, - text, - time, - unordered-containers, - vector, - xml-conduit, - yaml, - }: - mkDerivation { - pname = "pandoc-citeproc"; - version = "0.17.0.2"; - sha256 = "1wp16zz740klyn5jr8qxn21zf1waym3pzzv5l6k08w2l6z54d20b"; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; - setupHaskellDepends = [ - base - Cabal - ]; - libraryHaskellDepends = [ - aeson - base - bytestring - containers - data-default - directory - filepath - hs-bibutils - HsYAML - HsYAML-aeson - mtl - network - old-locale - pandoc - pandoc-types - parsec - rfc5051 - setenv - split - syb - tagsoup - text - time - unordered-containers - vector - xml-conduit - yaml - ]; - executableHaskellDepends = [ - aeson - aeson-pretty - attoparsec - base - bytestring - filepath - libyaml - pandoc - pandoc-types - safe - syb - text - yaml - ]; - testHaskellDepends = [ - aeson - base - bytestring - containers - directory - filepath - mtl - pandoc - pandoc-types - process - temporary - text - yaml - ]; - description = "Supports using pandoc with citeproc"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "pandoc-citeproc"; - broken = true; - } - ) { }; - "pandoc-citeproc-preamble" = callPackage ( { mkDerivation, @@ -500087,109 +288666,6 @@ self: { } ) { }; - "pandoc-emphasize-code" = callPackage ( - { - mkDerivation, - base, - filepath, - hashable, - lucid, - mtl, - pandoc-types, - process, - semigroups, - tasty, - tasty-discover, - tasty-hspec, - tasty-hunit, - text, - unordered-containers, - }: - mkDerivation { - pname = "pandoc-emphasize-code"; - version = "0.3.0"; - sha256 = "02bg6aippqbjzx1dqzq63qh4ggm6pyw6p8p5iay9ldxdgx4jicnc"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - filepath - hashable - lucid - mtl - pandoc-types - process - semigroups - text - unordered-containers - ]; - executableHaskellDepends = [ - base - pandoc-types - ]; - testHaskellDepends = [ - base - pandoc-types - tasty - tasty-discover - tasty-hspec - tasty-hunit - text - unordered-containers - ]; - testToolDepends = [ tasty-discover ]; - description = "A Pandoc filter for emphasizing code in fenced blocks"; - license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; - mainProgram = "pandoc-emphasize-code"; - broken = true; - } - ) { }; - - "pandoc-filter-graphviz" = callPackage ( - { - mkDerivation, - base, - base16-bytestring, - byteable, - bytestring, - containers, - cryptonite, - directory, - filepath, - pandoc, - pandoc-types, - process, - text, - }: - mkDerivation { - pname = "pandoc-filter-graphviz"; - version = "0.1.0.0"; - sha256 = "0i4sczbbq5bhhi43dv1z2p06d5wvg8fs17njzdgkvv2l9hd6nxi4"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - base16-bytestring - byteable - bytestring - containers - cryptonite - directory - filepath - pandoc - pandoc-types - process - text - ]; - description = "A Pandoc filter to use graphviz"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "pandoc-filter-graphviz"; - broken = true; - } - ) { }; - "pandoc-filter-indent" = callPackage ( { mkDerivation, @@ -500262,129 +288738,6 @@ self: { } ) { }; - "pandoc-highlighting-extensions" = callPackage ( - { - mkDerivation, - base, - data-default-class, - pandoc, - skylighting-core, - skylighting-extensions, - skylighting-modding, - text, - }: - mkDerivation { - pname = "pandoc-highlighting-extensions"; - version = "1.0.0.0"; - sha256 = "0y01jhxx9qyirpzdx32212ls434xck6a8wfq9qqynz8a0xwcbprf"; - libraryHaskellDepends = [ - base - data-default-class - pandoc - skylighting-core - skylighting-extensions - skylighting-modding - text - ]; - description = "Syntax highlighting customization for Pandoc"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "pandoc-include" = callPackage ( - { - mkDerivation, - base, - directory, - pandoc, - pandoc-types, - text, - }: - mkDerivation { - pname = "pandoc-include"; - version = "0.0.1"; - sha256 = "1hv8jw6aymlx6hvm1xq9ccsh2vi1y340xnhrysglpggvarim3dnd"; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base - directory - pandoc - pandoc-types - text - ]; - executableHaskellDepends = [ - base - directory - pandoc - pandoc-types - text - ]; - doHaddock = false; - description = "Include other Markdown files"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - mainProgram = "pandoc-include"; - broken = true; - } - ) { }; - - "pandoc-include-code" = callPackage ( - { - mkDerivation, - base, - filepath, - hspec, - hspec-expectations, - mtl, - pandoc-types, - process, - tasty, - tasty-hspec, - tasty-hunit, - text, - unordered-containers, - }: - mkDerivation { - pname = "pandoc-include-code"; - version = "1.5.0.0"; - sha256 = "07ah6f28sb68wdp3514jmxgh2bdvwqdn60ym8j0qbk98i9gsj0ax"; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base - filepath - mtl - pandoc-types - process - text - unordered-containers - ]; - executableHaskellDepends = [ - base - pandoc-types - ]; - testHaskellDepends = [ - base - hspec - hspec-expectations - pandoc-types - tasty - tasty-hspec - tasty-hunit - text - ]; - description = "A Pandoc filter for including code from source files"; - license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; - mainProgram = "pandoc-include-code"; - broken = true; - } - ) { }; - "pandoc-include-plus" = callPackage ( { mkDerivation, @@ -500405,67 +288758,23 @@ self: { isExecutable = true; libraryHaskellDepends = [ base - bytestring - filepath - network-uri - pandoc - pandoc-types - text - ]; - executableHaskellDepends = [ - base - directory - pandoc-types - ]; - description = "Pandoc filter to include files, with image path and heading level adjustment"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "pandoc-include-plus"; - broken = true; - } - ) { }; - - "pandoc-japanese-filters" = callPackage ( - { - mkDerivation, - base, - containers, - data-default, - effin, - HaTeX, - HaTeX-qq, - hxt, - pandoc, - pandoc-types, - shelly, - system-fileio, - system-filepath, - text, - }: - mkDerivation { - pname = "pandoc-japanese-filters"; - version = "0.1.0.1"; - sha256 = "008kskhgsbb48l8agiadgkyh9k835r1frwyd1yjgbddpcmrdb5yw"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - containers - data-default - effin - HaTeX - HaTeX-qq - hxt + bytestring + filepath + network-uri pandoc pandoc-types - shelly - system-fileio - system-filepath text ]; - description = "Japanese-specific markup filters for pandoc"; - license = lib.licenses.gpl2Only; + executableHaskellDepends = [ + base + directory + pandoc-types + ]; + description = "Pandoc filter to include files, with image path and heading level adjustment"; + license = lib.licenses.bsd3; hydraPlatforms = lib.platforms.none; + mainProgram = "pandoc-include-plus"; + broken = true; } ) { }; @@ -500822,108 +289131,6 @@ self: { } ) { }; - "pandoc-markdown-ghci-filter" = callPackage ( - { - mkDerivation, - aeson, - base, - containers, - ghcid, - pandoc, - pandoc-types, - QuickCheck, - tasty, - tasty-hunit, - tasty-quickcheck, - text, - }: - mkDerivation { - pname = "pandoc-markdown-ghci-filter"; - version = "0.1.0.0"; - sha256 = "1m5hiqwkn1a0y3awrk8s7b9wwasspjaa3gdnck6w9xf7vgb5bgza"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson - base - containers - ghcid - pandoc - pandoc-types - text - ]; - executableHaskellDepends = [ - aeson - base - containers - ghcid - pandoc - pandoc-types - text - ]; - testHaskellDepends = [ - aeson - base - containers - ghcid - pandoc - pandoc-types - QuickCheck - tasty - tasty-hunit - tasty-quickcheck - text - ]; - description = "Pandoc-filter to evaluate `code` section in markdown and auto-embed output"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - mainProgram = "pandoc-markdown-ghci-filter-exe"; - broken = true; - } - ) { }; - - "pandoc-placetable" = callPackage ( - { - mkDerivation, - aeson, - base, - bytestring, - explicit-exception, - http-conduit, - pandoc, - pandoc-types, - spreadsheet, - text, - utf8-string, - }: - mkDerivation { - pname = "pandoc-placetable"; - version = "0.6"; - sha256 = "0jcnf4lv4sszkbnsbvj21zi0xf9vplbpk9yavhz1b62m61xp76pg"; - configureFlags = [ "-finlinemarkdown" ]; - isLibrary = false; - isExecutable = true; - enableSeparateDataOutput = true; - executableHaskellDepends = [ - aeson - base - bytestring - explicit-exception - http-conduit - pandoc - pandoc-types - spreadsheet - text - utf8-string - ]; - description = "Pandoc filter to include CSV files"; - license = "GPL"; - hydraPlatforms = lib.platforms.none; - mainProgram = "pandoc-placetable"; - broken = true; - } - ) { }; - "pandoc-plantuml-diagrams" = callPackage ( { mkDerivation, @@ -501069,92 +289276,6 @@ self: { } ) { }; - "pandoc-pyplot" = callPackage ( - { - mkDerivation, - base, - containers, - data-default-class, - deepseq, - directory, - filepath, - hashable, - hspec, - hspec-expectations, - mtl, - open-browser, - optparse-applicative, - pandoc, - pandoc-types, - shakespeare, - tasty, - tasty-hspec, - tasty-hunit, - template-haskell, - temporary, - text, - typed-process, - yaml, - }: - mkDerivation { - pname = "pandoc-pyplot"; - version = "2.3.0.1"; - sha256 = "0jpf1fvn3qqaw7094sa79k12v7a7nbqcr6cambl6jr0mk307zm0a"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - containers - data-default-class - directory - filepath - hashable - mtl - pandoc - pandoc-types - shakespeare - temporary - text - typed-process - yaml - ]; - executableHaskellDepends = [ - base - data-default-class - deepseq - directory - filepath - open-browser - optparse-applicative - pandoc - pandoc-types - template-haskell - temporary - text - ]; - testHaskellDepends = [ - base - data-default-class - directory - filepath - hspec - hspec-expectations - mtl - pandoc-types - tasty - tasty-hspec - tasty-hunit - temporary - text - ]; - description = "A Pandoc filter to include figures generated from Python code blocks"; - license = lib.licenses.gpl2Only; - hydraPlatforms = lib.platforms.none; - mainProgram = "pandoc-pyplot"; - broken = true; - } - ) { }; - "pandoc-query" = callPackage ( { mkDerivation, @@ -501510,70 +289631,6 @@ self: { } ) { }; - "pandoc-unlit" = callPackage ( - { - mkDerivation, - base, - pandoc, - }: - mkDerivation { - pname = "pandoc-unlit"; - version = "0.1.0"; - sha256 = "0jdlfqhp7h6jsp9qq2ndnm8fs96m19cmmd5rnjpqb76ilg6kn7l9"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - pandoc - ]; - description = "Literate Haskell support for GitHub's Markdown flavor"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - mainProgram = "pandoc-unlit"; - broken = true; - } - ) { }; - - "pandoc-utils" = callPackage ( - { - mkDerivation, - base, - containers, - data-default, - pandoc, - pandoc-types, - tasty, - tasty-hspec, - text, - transformers, - }: - mkDerivation { - pname = "pandoc-utils"; - version = "0.7.1"; - sha256 = "1951zgn6bgkg4xpnz76g93y3hxxx0v1jav5gr0m84gb6nadjg17m"; - libraryHaskellDepends = [ - base - pandoc-types - text - ]; - testHaskellDepends = [ - base - containers - data-default - pandoc - pandoc-types - tasty - tasty-hspec - text - transformers - ]; - description = "Utility functions to work with Pandoc in Haskell applications"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "pandoc-vimhl" = callPackage ( { mkDerivation, @@ -501722,47 +289779,6 @@ self: { } ) { }; - "pang-a-lambda" = callPackage ( - { - mkDerivation, - base, - bytestring, - containers, - IfElse, - mtl, - SDL, - SDL-gfx, - SDL-ttf, - transformers, - Yampa, - }: - mkDerivation { - pname = "pang-a-lambda"; - version = "0.2.0.0"; - sha256 = "0cnz4n2vywj4w9cnj7kh6jml6k29li9wnaifnwn69b6883043iwm"; - isLibrary = false; - isExecutable = true; - enableSeparateDataOutput = true; - executableHaskellDepends = [ - base - bytestring - containers - IfElse - mtl - SDL - SDL-gfx - SDL-ttf - transformers - Yampa - ]; - description = "A super-pang clone"; - license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - mainProgram = "pang-a-lambda"; - broken = true; - } - ) { }; - "pango" = callPackage ( { mkDerivation, @@ -501810,48 +289826,6 @@ self: { } ) { inherit (pkgs) pango; }; - "pangraph" = callPackage ( - { - mkDerivation, - algebraic-graphs, - attoparsec, - base, - bytestring, - containers, - fgl, - hexml, - html-entities, - HUnit, - text, - }: - mkDerivation { - pname = "pangraph"; - version = "0.2.1"; - sha256 = "09jyhaxl89y8arkm4xmbx3bp859viq00bdnqk3bnvdiwv3klry8l"; - libraryHaskellDepends = [ - algebraic-graphs - attoparsec - base - bytestring - containers - fgl - hexml - html-entities - text - ]; - testHaskellDepends = [ - base - bytestring - containers - HUnit - ]; - description = "A set of parsers for graph languages and conversions to graph libaries"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "panhandle" = callPackage ( { mkDerivation, @@ -501924,139 +289898,6 @@ self: { } ) { }; - "panpipe" = callPackage ( - { - mkDerivation, - base, - pandoc, - pandoc-types, - process, - QuickCheck, - tasty, - tasty-quickcheck, - temporary, - unix, - }: - mkDerivation { - pname = "panpipe"; - version = "0.2.0.0"; - sha256 = "0kdkw7y6hvdv3lz4fhq4x0f7y397753dw5mjp4gw03qnrz3nchxp"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - pandoc - pandoc-types - process - temporary - unix - ]; - executableHaskellDepends = [ base ]; - testHaskellDepends = [ - base - pandoc - QuickCheck - tasty - tasty-quickcheck - ]; - description = "Pandoc filter to execute code blocks"; - license = lib.licenses.publicDomain; - hydraPlatforms = lib.platforms.none; - mainProgram = "panpipe"; - broken = true; - } - ) { }; - - "pansite" = callPackage ( - { - mkDerivation, - aeson, - base, - blaze-html, - bytestring, - data-default, - directory, - doctest, - filepath, - Glob, - hspec, - http-types, - MissingH, - optparse-applicative, - pandoc, - pandoc-types, - QuickCheck, - shake, - split, - template-haskell, - text, - time, - unordered-containers, - vcs-revision, - vector, - wai, - wai-logger, - warp, - yaml, - }: - mkDerivation { - pname = "pansite"; - version = "0.2.0.0"; - sha256 = "0y60pk4zryxllpv1h27ja7c7a91vd00g9p29ml2l7rvdgprcy5ar"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson - base - bytestring - data-default - MissingH - shake - split - text - unordered-containers - vector - yaml - ]; - executableHaskellDepends = [ - aeson - base - blaze-html - bytestring - data-default - directory - filepath - http-types - MissingH - optparse-applicative - pandoc - pandoc-types - shake - split - template-haskell - text - time - unordered-containers - vcs-revision - wai - wai-logger - warp - ]; - testHaskellDepends = [ - base - doctest - Glob - hspec - QuickCheck - ]; - description = "Pansite: a simple web site management tool"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - mainProgram = "pansite"; - broken = true; - } - ) { }; - "pantry" = callPackage ( { mkDerivation, @@ -502416,342 +290257,6 @@ self: { } ) { }; - "pantry-tmp" = callPackage ( - { - mkDerivation, - aeson, - ansi-terminal, - array, - base, - base-orphans, - base64-bytestring, - bytestring, - Cabal, - conduit, - conduit-extra, - containers, - contravariant, - cryptonite, - cryptonite-conduit, - deepseq, - digest, - directory, - exceptions, - filelock, - filepath, - generic-deriving, - ghc-prim, - hackage-security, - hashable, - hedgehog, - hpack, - hspec, - http-client, - http-client-tls, - http-conduit, - http-download, - http-types, - integer-gmp, - memory, - mono-traversable, - mtl, - network, - network-uri, - path, - path-io, - persistent, - persistent-sqlite, - persistent-template, - primitive, - QuickCheck, - raw-strings-qq, - resourcet, - rio, - rio-orphans, - rio-prettyprint, - safe, - syb, - tar-conduit, - template-haskell, - text, - text-metrics, - th-lift, - th-lift-instances, - th-orphans, - th-reify-many, - th-utilities, - time, - transformers, - unix-compat, - unliftio, - unordered-containers, - vector, - yaml, - zip-archive, - }: - mkDerivation { - pname = "pantry-tmp"; - version = "0.1.0.0"; - sha256 = "18b2ac5kb6xzkxa2c5hhl6n37npxcxzxghi0p5wnv5rps3ahsmnn"; - revision = "4"; - editedCabalFile = "0hiashi78cak635jk74bk6m1dwdgyp8m0j5bzg18i776mb1zn09y"; - libraryHaskellDepends = [ - aeson - ansi-terminal - array - base - base-orphans - base64-bytestring - bytestring - Cabal - conduit - conduit-extra - containers - contravariant - cryptonite - cryptonite-conduit - deepseq - digest - directory - filelock - filepath - generic-deriving - ghc-prim - hackage-security - hashable - hpack - http-client - http-client-tls - http-conduit - http-download - http-types - integer-gmp - memory - mono-traversable - mtl - network - network-uri - path - path-io - persistent - persistent-sqlite - persistent-template - primitive - resourcet - rio - rio-orphans - rio-prettyprint - safe - syb - tar-conduit - template-haskell - text - text-metrics - th-lift - th-lift-instances - th-orphans - th-reify-many - th-utilities - time - transformers - unix-compat - unliftio - unordered-containers - vector - yaml - zip-archive - ]; - testHaskellDepends = [ - aeson - ansi-terminal - array - base - base-orphans - base64-bytestring - bytestring - Cabal - conduit - conduit-extra - containers - contravariant - cryptonite - cryptonite-conduit - deepseq - digest - directory - exceptions - filelock - filepath - generic-deriving - ghc-prim - hackage-security - hashable - hedgehog - hpack - hspec - http-client - http-client-tls - http-conduit - http-download - http-types - integer-gmp - memory - mono-traversable - mtl - network - network-uri - path - path-io - persistent - persistent-sqlite - persistent-template - primitive - QuickCheck - raw-strings-qq - resourcet - rio - rio-orphans - rio-prettyprint - safe - syb - tar-conduit - template-haskell - text - text-metrics - th-lift - th-lift-instances - th-orphans - th-reify-many - th-utilities - time - transformers - unix-compat - unliftio - unordered-containers - vector - yaml - zip-archive - ]; - description = "Content addressable Haskell package management"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "papa" = callPackage ( - { - mkDerivation, - base, - papa-base, - papa-base-export, - papa-base-implement, - papa-bifunctors, - papa-bifunctors-export, - papa-bifunctors-implement, - papa-lens, - papa-lens-export, - papa-lens-implement, - papa-semigroupoids, - papa-semigroupoids-export, - papa-semigroupoids-implement, - papa-x, - papa-x-export, - papa-x-implement, - }: - mkDerivation { - pname = "papa"; - version = "0.3.1"; - sha256 = "05w1sj78fvdaw8f4dqq2c8vwm9qyjipabafznlib6qylv27x361c"; - libraryHaskellDepends = [ - base - papa-base - papa-base-export - papa-base-implement - papa-bifunctors - papa-bifunctors-export - papa-bifunctors-implement - papa-lens - papa-lens-export - papa-lens-implement - papa-semigroupoids - papa-semigroupoids-export - papa-semigroupoids-implement - papa-x - papa-x-export - papa-x-implement - ]; - description = "Reasonable default import"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "papa-base" = callPackage ( - { - mkDerivation, - base, - papa-base-export, - papa-base-implement, - }: - mkDerivation { - pname = "papa-base"; - version = "0.3.1"; - sha256 = "1clilnnhaz4vf5hdi8cmqy5805l2q8g9mfi2czi3g3rr7wp8x89y"; - libraryHaskellDepends = [ - base - papa-base-export - papa-base-implement - ]; - description = "Prelude with only useful functions"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "papa-base-export" = callPackage ( - { - mkDerivation, - base, - semigroups, - }: - mkDerivation { - pname = "papa-base-export"; - version = "0.4"; - sha256 = "120b3ks9h3m9w6z365hmqrcp349kh3w8ii4kgki1zxjhh9z05mnm"; - libraryHaskellDepends = [ - base - semigroups - ]; - description = "Prelude with only useful functions"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "papa-base-implement" = callPackage ( - { - mkDerivation, - base, - papa-base-export, - semigroups, - }: - mkDerivation { - pname = "papa-base-implement"; - version = "0.3.1"; - sha256 = "07wpz625sdsjajaf3imqns92hs4h5gwjlmmfsr5mk9rbb3zph7ck"; - libraryHaskellDepends = [ - base - papa-base-export - semigroups - ]; - description = "Useful base functions reimplemented"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "papa-bifunctors" = callPackage ( { mkDerivation, @@ -502813,45 +290318,6 @@ self: { } ) { }; - "papa-export" = callPackage ( - { - mkDerivation, - base, - directory, - doctest, - filepath, - papa-base-export, - papa-bifunctors-export, - papa-lens-export, - papa-semigroupoids-export, - QuickCheck, - template-haskell, - }: - mkDerivation { - pname = "papa-export"; - version = "0.2.1"; - sha256 = "02jxvgx9xzb1w4z61syc39m3f4nv99fkpaiikrri08ziw2sb7l9i"; - libraryHaskellDepends = [ - base - papa-base-export - papa-bifunctors-export - papa-lens-export - papa-semigroupoids-export - ]; - testHaskellDepends = [ - base - directory - doctest - filepath - QuickCheck - template-haskell - ]; - description = "Reasonable default import"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "papa-implement" = callPackage ( { mkDerivation, @@ -502892,43 +290358,6 @@ self: { description = "Reasonable default import"; license = lib.licenses.bsd3; hydraPlatforms = lib.platforms.none; - } - ) { }; - - "papa-include" = callPackage ( - { - mkDerivation, - base, - directory, - doctest, - filepath, - lens, - QuickCheck, - semigroupoids, - semigroups, - template-haskell, - }: - mkDerivation { - pname = "papa-include"; - version = "0.1.0"; - sha256 = "1zqlbak1z7km5wawd8qfi8fvrdidhp4j45rzymw5h1pypp3z77yk"; - libraryHaskellDepends = [ - base - lens - semigroupoids - semigroups - ]; - testHaskellDepends = [ - base - directory - doctest - filepath - QuickCheck - template-haskell - ]; - description = "Third party libraries"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; broken = true; } ) { }; @@ -502952,275 +290381,6 @@ self: { description = "Prelude with only useful functions"; license = lib.licenses.bsd3; hydraPlatforms = lib.platforms.none; - } - ) { }; - - "papa-lens-export" = callPackage ( - { - mkDerivation, - base, - lens, - }: - mkDerivation { - pname = "papa-lens-export"; - version = "0.3.1"; - sha256 = "1sckrsfljk8r9jkjv1ccpzw6bk4fq50zwvkddhfidjrjnfvkycfb"; - libraryHaskellDepends = [ - base - lens - ]; - description = "export useful functions from `lens`"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "papa-lens-implement" = callPackage ( - { - mkDerivation, - base, - lens, - }: - mkDerivation { - pname = "papa-lens-implement"; - version = "0.3.1"; - sha256 = "1x7439f7s625mdhnphvwy4pj7llpj6qsvzgvhzjcfg9m3n2a8bn4"; - libraryHaskellDepends = [ - base - lens - ]; - description = "useful `lens` functions reimplemented"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "papa-prelude" = callPackage ( - { - mkDerivation, - base, - directory, - doctest, - filepath, - QuickCheck, - template-haskell, - }: - mkDerivation { - pname = "papa-prelude"; - version = "0.1.1"; - sha256 = "1wayix7dakvwp17z12369ammj57cmsfpmpxzs5nv6jcf19p7pxjs"; - libraryHaskellDepends = [ base ]; - testHaskellDepends = [ - base - directory - doctest - filepath - QuickCheck - template-haskell - ]; - description = "Prelude with only useful functions"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "papa-prelude-core" = callPackage ( - { - mkDerivation, - base, - directory, - doctest, - filepath, - QuickCheck, - template-haskell, - }: - mkDerivation { - pname = "papa-prelude-core"; - version = "0.0.1"; - sha256 = "0bddvndqh6jvfdrdfm896fhzs0n6fznx4jkvag1hv8w68jk7allb"; - libraryHaskellDepends = [ base ]; - testHaskellDepends = [ - base - directory - doctest - filepath - QuickCheck - template-haskell - ]; - description = "Prelude with only useful functions"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "papa-prelude-lens" = callPackage ( - { - mkDerivation, - base, - directory, - doctest, - filepath, - lens, - QuickCheck, - template-haskell, - }: - mkDerivation { - pname = "papa-prelude-lens"; - version = "0.0.1"; - sha256 = "11vpaf7fss1b7wvrs0fjwl9ihprcyvz7v7l6p8l7njgxf37gds11"; - libraryHaskellDepends = [ - base - lens - ]; - testHaskellDepends = [ - base - directory - doctest - filepath - QuickCheck - template-haskell - ]; - description = "Prelude with only useful functions"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "papa-prelude-semigroupoids" = callPackage ( - { - mkDerivation, - base, - directory, - doctest, - filepath, - QuickCheck, - semigroupoids, - template-haskell, - }: - mkDerivation { - pname = "papa-prelude-semigroupoids"; - version = "0.0.2"; - sha256 = "1b1g49i05vljb5d29asr2d3w52jdngi9zxhf7xq14m19fisprfjm"; - libraryHaskellDepends = [ - base - semigroupoids - ]; - testHaskellDepends = [ - base - directory - doctest - filepath - QuickCheck - template-haskell - ]; - description = "Prelude with only useful functions"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "papa-prelude-semigroups" = callPackage ( - { - mkDerivation, - base, - directory, - doctest, - filepath, - QuickCheck, - semigroups, - template-haskell, - }: - mkDerivation { - pname = "papa-prelude-semigroups"; - version = "0.0.2"; - sha256 = "0jlabpa4mmhw1qvvsz2qgcspqzd0y53r29xci2vy7iwwdgjvbd5s"; - libraryHaskellDepends = [ - base - semigroups - ]; - testHaskellDepends = [ - base - directory - doctest - filepath - QuickCheck - template-haskell - ]; - description = "Prelude with only useful functions"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "papa-semigroupoids" = callPackage ( - { - mkDerivation, - base, - papa-semigroupoids-export, - papa-semigroupoids-implement, - }: - mkDerivation { - pname = "papa-semigroupoids"; - version = "0.3.1"; - sha256 = "0z6ibgk0r3d27953i8n031al96djznvnbrak4dpgn05qnh9l0338"; - libraryHaskellDepends = [ - base - papa-semigroupoids-export - papa-semigroupoids-implement - ]; - description = "Prelude with only useful functions"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "papa-semigroupoids-export" = callPackage ( - { - mkDerivation, - base, - semigroupoids, - }: - mkDerivation { - pname = "papa-semigroupoids-export"; - version = "0.3.1"; - sha256 = "0arqnnavjmpk0r9rfmpkyr3cxgc3gcr01ym8p15ix0iv0svghhx3"; - libraryHaskellDepends = [ - base - semigroupoids - ]; - description = "export useful functions from `semigroupoids`"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "papa-semigroupoids-implement" = callPackage ( - { - mkDerivation, - base, - semigroupoids, - semigroups, - }: - mkDerivation { - pname = "papa-semigroupoids-implement"; - version = "0.3.1"; - sha256 = "0walc4zzm8cyjmjl577zrc01lkgf321r8law5mwhlr7n9ihiqfxg"; - libraryHaskellDepends = [ - base - semigroupoids - semigroups - ]; - description = "useful `semigroupoids` functions reimplemented"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; broken = true; } ) { }; @@ -503270,89 +290430,6 @@ self: { } ) { }; - "paphragen" = callPackage ( - { - mkDerivation, - base, - bytestring, - containers, - }: - mkDerivation { - pname = "paphragen"; - version = "0.2.0.0"; - sha256 = "0zpwb0x657dhvzv3zk9cy2crq1658sfd7pywqyw43zparglb54mq"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - bytestring - containers - ]; - description = "A passphrase generator"; - license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - mainProgram = "paphragen"; - broken = true; - } - ) { }; - - "papillon" = callPackage ( - { - mkDerivation, - base, - bytestring, - directory, - filepath, - monads-tf, - template-haskell, - transformers, - }: - mkDerivation { - pname = "papillon"; - version = "0.1.1.1"; - sha256 = "1z0136v8hhzrljql8z17jvcb3y5n7nr9fc584kj4wyscpma38a46"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - bytestring - monads-tf - template-haskell - transformers - ]; - executableHaskellDepends = [ - base - directory - filepath - monads-tf - template-haskell - transformers - ]; - description = "packrat parser"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "papillon"; - broken = true; - } - ) { }; - - "pappy" = callPackage ( - { mkDerivation, base }: - mkDerivation { - pname = "pappy"; - version = "0.1.0.2"; - sha256 = "14f4mv9xgqwmmyy3fg1miqdmi7a6bs3hixqk4z46r0pz44w6nlxd"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ base ]; - description = "Packrat parsing; linear-time parsers for grammars in TDPL"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "pappy"; - broken = true; - } - ) { }; - "paprika" = callPackage ( { mkDerivation, @@ -503411,38 +290488,6 @@ self: { } ) { }; - "par-dual" = callPackage ( - { - mkDerivation, - async, - base, - hedgehog, - refined, - template-haskell, - validators, - }: - mkDerivation { - pname = "par-dual"; - version = "0.1.0.0"; - sha256 = "0ys01vw0jyr51wwi0nccb552csc5d21np2pi7pi8jzi0k3g35i1v"; - libraryHaskellDepends = [ - async - base - validators - ]; - testHaskellDepends = [ - base - hedgehog - refined - template-haskell - validators - ]; - description = "ParDual class for Parallel <-> Sequential"; - license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "par-traverse" = callPackage ( { mkDerivation, @@ -503478,73 +290523,6 @@ self: { } ) { }; - "paragon" = callPackage ( - { - mkDerivation, - alex, - array, - base, - bytestring, - containers, - cpphs, - directory, - filepath, - haskell-src-meta, - parsec, - pretty, - syb, - template-haskell, - th-lift, - uniplate, - }: - mkDerivation { - pname = "paragon"; - version = "0.1.28"; - sha256 = "1iz7fg7ziq3ffq1wac0z2m151rn4xmvd5kig04fdw1cy0x487c9c"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - array - base - bytestring - containers - cpphs - directory - filepath - haskell-src-meta - parsec - pretty - syb - template-haskell - th-lift - uniplate - ]; - libraryToolDepends = [ alex ]; - executableHaskellDepends = [ - array - base - bytestring - containers - cpphs - directory - filepath - haskell-src-meta - parsec - pretty - syb - template-haskell - th-lift - uniplate - ]; - executableToolDepends = [ alex ]; - description = "Paragon"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "parac"; - broken = true; - } - ) { }; - "parallel" = callPackage ( { mkDerivation, @@ -503599,44 +290577,6 @@ self: { } ) { }; - "parallel-tasks" = callPackage ( - { - mkDerivation, - base, - bytestring, - cereal, - deepseq, - here, - old-locale, - stm, - time, - transformers, - vector, - vector-algorithms, - }: - mkDerivation { - pname = "parallel-tasks"; - version = "4.0.1.0"; - sha256 = "0cng14pivk0cw3xax0z4j59s0vpbkm7hjycsb3cif6pfjbypsm3x"; - libraryHaskellDepends = [ - base - bytestring - cereal - deepseq - here - old-locale - stm - time - transformers - vector - vector-algorithms - ]; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "parallel-tree-search" = callPackage ( { mkDerivation, @@ -503689,29 +290629,6 @@ self: { } ) { }; - "parameterized-data" = callPackage ( - { - mkDerivation, - base, - template-haskell, - type-level, - }: - mkDerivation { - pname = "parameterized-data"; - version = "0.1.6"; - sha256 = "0fsghadd533qzav40xi3yfb8xmfv4wqsqmb0bk93rczyzyff2900"; - libraryHaskellDepends = [ - base - template-haskell - type-level - ]; - description = "Parameterized data library implementing lightweight dependent types"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "parameterized-utils" = callPackage ( { mkDerivation, @@ -503893,108 +290810,6 @@ self: { } ) { }; - "parco" = callPackage ( - { - mkDerivation, - base, - mtl, - }: - mkDerivation { - pname = "parco"; - version = "0.1"; - sha256 = "0598hz6zqcn4lh5y3vr54z4jh4ampxnh8rq29k6p5vnmrpvn4lq4"; - libraryHaskellDepends = [ - base - mtl - ]; - description = "Generalised parser combinators"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "parco-attoparsec" = callPackage ( - { - mkDerivation, - attoparsec, - base, - mtl, - parco, - }: - mkDerivation { - pname = "parco-attoparsec"; - version = "0.1"; - sha256 = "0bc2gyvc1i3l3p702zs6hfkab7fmc7li5kh4mdzy3a91gzgsl3jh"; - libraryHaskellDepends = [ - attoparsec - base - mtl - parco - ]; - description = "Generalised parser combinators - Attoparsec interface"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "parco-parsec" = callPackage ( - { - mkDerivation, - base, - mtl, - parco, - parsec, - }: - mkDerivation { - pname = "parco-parsec"; - version = "0.1"; - sha256 = "0m3dsjay3av4y0v4j76wxybmk4mkjdhqq81w1wsfr173d4blgxf3"; - libraryHaskellDepends = [ - base - mtl - parco - parsec - ]; - description = "Generalised parser combinators - Parsec interface"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "parcom-lib" = callPackage ( - { - mkDerivation, - base, - bytestring, - containers, - mtl, - text, - transformers, - utf8-string, - word8, - }: - mkDerivation { - pname = "parcom-lib"; - version = "0.8.0.3"; - sha256 = "0xkxkqswpkqr9xcpg52v845kkxg8z20r26yih8l2vwkym5cj49ab"; - libraryHaskellDepends = [ - base - bytestring - containers - mtl - text - transformers - utf8-string - word8 - ]; - description = "A simple parser-combinator library, a bit like Parsec but without the frills"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "parconc-examples" = callPackage ( { mkDerivation, @@ -504077,20 +290892,6 @@ self: { } ) { }; - "pareto" = callPackage ( - { mkDerivation, base }: - mkDerivation { - pname = "pareto"; - version = "0.2.0.0"; - sha256 = "0b05zrc3v1hczasgg8ir83qfsz52lq02kwgn9nd39wnfliw6a4n0"; - libraryHaskellDepends = [ base ]; - description = "A library for cause-effect relationships"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "pareto-front" = callPackage ( { mkDerivation, base }: mkDerivation { @@ -504104,51 +290905,6 @@ self: { } ) { }; - "paripari" = callPackage ( - { - mkDerivation, - base, - bytestring, - parser-combinators, - random, - tasty, - tasty-hunit, - text, - }: - mkDerivation { - pname = "paripari"; - version = "0.7.0.0"; - sha256 = "0c5vgnzgmqcrcsaw1l5fy0lh20ns22ych8ydkq7yzb8wr3y4nvr5"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - bytestring - parser-combinators - text - ]; - executableHaskellDepends = [ - base - bytestring - parser-combinators - text - ]; - testHaskellDepends = [ - base - bytestring - parser-combinators - random - tasty - tasty-hunit - text - ]; - description = "Parser combinators with fast-path and slower fallback for error reporting"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "park-bench" = callPackage ( { mkDerivation, @@ -504250,84 +291006,6 @@ self: { } ) { }; - "parquet-hs" = callPackage ( - { - mkDerivation, - aeson, - base, - binary, - binary-conduit, - bytestring, - conduit, - conduit-extra, - containers, - error-util, - filepath, - generic-lens, - hspec, - http-client, - http-conduit, - http-types, - lens, - lifted-async, - monad-logger, - mtl, - pinch, - process, - QuickCheck, - safe, - serialise, - text, - unordered-containers, - }: - mkDerivation { - pname = "parquet-hs"; - version = "0.1.0.0"; - sha256 = "128fmwz2jnljrbj5zagw4wqqnv7zn0xs4cmaisp6qrxjsfjfiy2j"; - libraryHaskellDepends = [ - aeson - base - binary - binary-conduit - bytestring - conduit - conduit-extra - containers - error-util - generic-lens - http-client - http-conduit - http-types - lens - lifted-async - monad-logger - mtl - pinch - safe - serialise - text - unordered-containers - ]; - testHaskellDepends = [ - aeson - base - binary - bytestring - conduit - filepath - hspec - monad-logger - mtl - process - QuickCheck - text - ]; - description = "Streaming Parquet reader"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "parsable" = callPackage ( { mkDerivation, @@ -504437,80 +291115,6 @@ self: { } ) { }; - "parse-gcstats" = callPackage ( - { - mkDerivation, - attoparsec, - base, - conduit, - conduit-extra, - filepath, - tasty, - tasty-golden, - text, - unordered-containers, - }: - mkDerivation { - pname = "parse-gcstats"; - version = "0.1.0.0"; - sha256 = "07l2jy59grxqnn90kyj13zg7b5x8j21apcywf6m4yws41j8il0nc"; - libraryHaskellDepends = [ - attoparsec - base - text - unordered-containers - ]; - testHaskellDepends = [ - attoparsec - base - conduit - conduit-extra - filepath - tasty - tasty-golden - text - ]; - description = "Parse machine-readable GHC GC stats"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "parse-help" = callPackage ( - { - mkDerivation, - attoparsec, - base, - cmdargs, - containers, - data-default, - file-location, - template-haskell, - text, - th-lift, - }: - mkDerivation { - pname = "parse-help"; - version = "0.0"; - sha256 = "1vy7v49nh60gkb7vsig87hv11cxn19xs2jjvd0xnnhdz0zm4z7yf"; - libraryHaskellDepends = [ - attoparsec - base - containers - data-default - file-location - template-haskell - text - th-lift - ]; - testHaskellDepends = [ cmdargs ]; - description = "generate command line arguments from a --help output"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "parseargs" = callPackage ( { mkDerivation, @@ -504595,29 +291199,6 @@ self: { } ) { }; - "parsec-extra" = callPackage ( - { - mkDerivation, - base, - monads-tf, - parsec, - }: - mkDerivation { - pname = "parsec-extra"; - version = "0.2.0.0"; - sha256 = "00n7vzkkd70ndjlxhwnnl4mlh0892idc813kj4j1a14xa85sndj9"; - libraryHaskellDepends = [ - base - monads-tf - parsec - ]; - description = "Some miscellaneous basic string parsers"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "parsec-free" = callPackage ( { mkDerivation, @@ -504713,38 +291294,6 @@ self: { } ) { }; - "parsec-parsers" = callPackage ( - { - mkDerivation, - base, - directory, - doctest, - filepath, - parsec, - parsers, - }: - mkDerivation { - pname = "parsec-parsers"; - version = "0.2"; - sha256 = "1knmcciyq07vp06s3xh4hwz654n017863dh9hdp1mwm57vc43s3j"; - libraryHaskellDepends = [ - base - parsec - parsers - ]; - testHaskellDepends = [ - base - directory - doctest - filepath - ]; - description = "Parsing instances for Parsec"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "parsec-permutation" = callPackage ( { mkDerivation, @@ -504770,41 +291319,6 @@ self: { } ) { }; - "parsec-pratt" = callPackage ( - { - mkDerivation, - base, - containers, - mtl, - parsec, - pretty, - }: - mkDerivation { - pname = "parsec-pratt"; - version = "0.1.1"; - sha256 = "05krhg9y4f9idihwwwx3r1c6a2r2qnbqigwcpj5ycc1qspa30q4c"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - containers - parsec - ]; - executableHaskellDepends = [ - base - containers - mtl - parsec - pretty - ]; - description = "Pratt Parser combinator for Parsec"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - mainProgram = "parsec-pratt-example"; - broken = true; - } - ) { }; - "parsec-tagsoup" = callPackage ( { mkDerivation, @@ -504880,45 +291394,6 @@ self: { } ) { }; - "parsec2" = callPackage ( - { mkDerivation, base }: - mkDerivation { - pname = "parsec2"; - version = "1.0.1"; - sha256 = "075y56pbi02ssyb965di1b6d2047jdjwq2wp2maraqjm6gdk824y"; - libraryHaskellDepends = [ base ]; - description = "Monadic parser combinators"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "parsec3" = callPackage ( - { - mkDerivation, - base, - bytestring, - mtl, - text, - }: - mkDerivation { - pname = "parsec3"; - version = "1.0.1.8"; - sha256 = "00p3kffqmsi6lvxbpa60nql3lgm9vnxsspp8m0jz2d2hfl7hadqf"; - libraryHaskellDepends = [ - base - bytestring - mtl - text - ]; - description = "Monadic parser combinators"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "parsec3-numbers" = callPackage ( { mkDerivation, @@ -504961,33 +291436,6 @@ self: { } ) { }; - "parseerror-eq" = callPackage ( - { - mkDerivation, - base, - hspec, - parsec, - }: - mkDerivation { - pname = "parseerror-eq"; - version = "0.1.0.1"; - sha256 = "1w5hn50gwyq2qcax869nplmhrclpsxfy0ckij6ydlhmq22zh0l03"; - libraryHaskellDepends = [ - base - parsec - ]; - testHaskellDepends = [ - base - hspec - parsec - ]; - description = "Adds and Eq instance for Parsec's ParseError if needed"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "parsek" = callPackage ( { mkDerivation, base }: mkDerivation { @@ -505000,28 +291448,6 @@ self: { } ) { }; - "parsely" = callPackage ( - { - mkDerivation, - base, - mtl, - parsec, - }: - mkDerivation { - pname = "parsely"; - version = "0.1"; - sha256 = "16sg32qs1kq184wk6d83z20b9firh1kjmysqwd2aqaiyq37zjyyb"; - libraryHaskellDepends = [ - base - mtl - parsec - ]; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "parser-combinators" = callPackage ( { mkDerivation, base }: mkDerivation { @@ -505075,36 +291501,6 @@ self: { } ) { }; - "parser-helper" = callPackage ( - { - mkDerivation, - aeson, - base, - bytestring, - haskell-src-exts, - text, - }: - mkDerivation { - pname = "parser-helper"; - version = "0.1.0.0"; - sha256 = "0cvdvphxlbyv5l9q5yc4b4kb59ghar2pmqx8pk387ffgz71r7ppb"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - aeson - base - bytestring - haskell-src-exts - text - ]; - description = "Prints Haskell parse trees in JSON"; - license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; - mainProgram = "parser-helper"; - broken = true; - } - ) { }; - "parser-regex" = callPackage ( { mkDerivation, @@ -505182,85 +291578,6 @@ self: { } ) { }; - "parser241" = callPackage ( - { - mkDerivation, - base, - containers, - hspec, - mtl, - }: - mkDerivation { - pname = "parser241"; - version = "0.1.0.2"; - sha256 = "1012dngifcwasfdh1fhr84lgv9pp5qiagknvp9p4nnbh2lkn663h"; - revision = "1"; - editedCabalFile = "083i7k8lx2by3kilvp3nbzm2fi91g0panizzf2z4d7i3a3x103jk"; - libraryHaskellDepends = [ - base - containers - mtl - ]; - testHaskellDepends = [ - base - containers - hspec - mtl - ]; - description = "An interface to create production rules using augmented grammars"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "parsergen" = callPackage ( - { - mkDerivation, - base, - bytestring, - directory, - filepath, - HUnit, - parsec, - QuickCheck, - template-haskell, - test-framework, - test-framework-hunit, - test-framework-quickcheck2, - }: - mkDerivation { - pname = "parsergen"; - version = "0.2.0.7"; - sha256 = "01yx4pa5x87nqz8k999jr7bnyfkjlgk660c53xkj5ipcvl4b9mfi"; - libraryHaskellDepends = [ - base - bytestring - directory - filepath - parsec - template-haskell - ]; - testHaskellDepends = [ - base - bytestring - directory - filepath - HUnit - parsec - QuickCheck - template-haskell - test-framework - test-framework-hunit - test-framework-quickcheck2 - ]; - description = "TH parser generator for splitting bytestring into fixed-width fields"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "parsers" = callPackage ( { mkDerivation, @@ -505344,129 +291661,6 @@ self: { } ) { }; - "parsestar" = callPackage ( - { - mkDerivation, - array, - base, - binary, - bytestring, - bytestring-mmap, - bytestring-nums, - bytestring-show, - containers, - deepseq, - derive, - happy, - mtl, - zlib, - }: - mkDerivation { - pname = "parsestar"; - version = "1.5"; - sha256 = "0prbn7vi2bp66x4fs5cm8lz9qv4d1kpcd20mf24zwpa9siwyf4aq"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - array - base - binary - bytestring - bytestring-mmap - bytestring-nums - bytestring-show - containers - deepseq - derive - mtl - zlib - ]; - libraryToolDepends = [ happy ]; - executableHaskellDepends = [ - array - base - binary - bytestring - containers - deepseq - mtl - ]; - description = "NMR-STAR file format parser"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "parsimony" = callPackage ( - { - mkDerivation, - base, - bytestring, - text, - }: - mkDerivation { - pname = "parsimony"; - version = "1.3"; - sha256 = "0vbayvk989m85qfxxls74rn0v8ylb5l7lywp30sw2wybvi4r08lg"; - libraryHaskellDepends = [ - base - bytestring - text - ]; - description = "Monadic parser combinators derived from Parsec"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "parsix" = callPackage ( - { - mkDerivation, - base, - containers, - fingertree, - mtl, - parsers, - prettyprinter, - prettyprinter-ansi-terminal, - QuickCheck, - tasty, - tasty-hunit, - tasty-quickcheck, - text, - transformers, - }: - mkDerivation { - pname = "parsix"; - version = "0.2.2.1"; - sha256 = "0bkk1186qgnaxv1n5ycs04szrf55ra7jbfzlqbmlx8vaxq9g6xdf"; - libraryHaskellDepends = [ - base - containers - fingertree - mtl - parsers - prettyprinter - prettyprinter-ansi-terminal - text - transformers - ]; - testHaskellDepends = [ - base - QuickCheck - tasty - tasty-hunit - tasty-quickcheck - text - ]; - description = "Parser combinators with slicing, error recovery, and syntax highlighting"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "parsley" = callPackage ( { mkDerivation, @@ -505635,56 +291829,6 @@ self: { } ) { }; - "partage" = callPackage ( - { - mkDerivation, - base, - containers, - data-lens-light, - data-partition, - dawg-ord, - HUnit, - mmorph, - mtl, - pipes, - PSQueue, - random, - tasty, - tasty-hunit, - transformers, - vector, - }: - mkDerivation { - pname = "partage"; - version = "0.1.0.1"; - sha256 = "0xhza29hhnks3i376kvagpdxakjfzlvm52amh6i3jn5b6nvgn8gl"; - libraryHaskellDepends = [ - base - containers - data-lens-light - data-partition - dawg-ord - mmorph - mtl - pipes - PSQueue - random - transformers - vector - ]; - testHaskellDepends = [ - base - containers - HUnit - tasty - tasty-hunit - ]; - description = "Parsing factorized"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "partial" = callPackage ( { mkDerivation, base }: mkDerivation { @@ -505728,31 +291872,6 @@ self: { } ) { }; - "partial-lens" = callPackage ( - { - mkDerivation, - base, - comonad-transformers, - data-lens, - transformers, - }: - mkDerivation { - pname = "partial-lens"; - version = "0.0.1"; - sha256 = "0s7p69fl1a3q4x2n9hf4540dcxjxjsj4knf2nal3wl1djh067ja8"; - libraryHaskellDepends = [ - base - comonad-transformers - data-lens - transformers - ]; - description = "Haskell 98 Partial Lenses"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "partial-order" = callPackage ( { mkDerivation, @@ -505784,29 +291903,6 @@ self: { } ) { }; - "partial-records" = callPackage ( - { - mkDerivation, - base, - template-haskell, - transformers, - }: - mkDerivation { - pname = "partial-records"; - version = "0.2.2.1"; - sha256 = "0vp5d0jdbk451a563a4hzkycyqh41w6plb39dfn0bv6li4a5qp8h"; - libraryHaskellDepends = [ - base - template-haskell - transformers - ]; - description = "Template haskell utilities for constructing records with default values"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "partial-semigroup" = callPackage ( { mkDerivation, @@ -505854,20 +291950,6 @@ self: { } ) { }; - "partial-semigroup-test" = callPackage ( - { mkDerivation, partial-semigroup-hedgehog }: - mkDerivation { - pname = "partial-semigroup-test"; - version = "0.4.0.1"; - sha256 = "0p990b35wqy339mhlbcd0xh82rc4qyahzn4ndjyy1cv33cab7is7"; - libraryHaskellDepends = [ partial-semigroup-hedgehog ]; - doHaddock = false; - description = "Testing utilities for the partial-semigroup package"; - license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "partial-uri" = callPackage ( { mkDerivation, @@ -505912,57 +291994,6 @@ self: { } ) { }; - "partly" = callPackage ( - { - mkDerivation, - aeson, - aeson-pretty, - base, - base64-bytestring, - binary, - bytestring, - optparse-applicative, - QuickCheck, - vector, - }: - mkDerivation { - pname = "partly"; - version = "1.0.0.2"; - sha256 = "0s5cr0ysxv74dlziyf2ga29wawwlikqgb2njv8g1f1rb8i5n97gv"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - binary - bytestring - ]; - executableHaskellDepends = [ - aeson - aeson-pretty - base - base64-bytestring - binary - bytestring - optparse-applicative - vector - ]; - testHaskellDepends = [ - aeson - base - base64-bytestring - binary - bytestring - QuickCheck - vector - ]; - description = "Inspect, create, and alter MBRs"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "partly"; - broken = true; - } - ) { }; - "paseto" = callPackage ( { mkDerivation, @@ -506002,68 +292033,26 @@ self: { memory mtl parsec - text - time - transformers-except - ]; - testHaskellDepends = [ - aeson - base - base16-bytestring - bytestring - containers - crypton - hedgehog - memory - mtl - text - time - transformers-except - ]; - description = "Platform-Agnostic Security Tokens"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "passage" = callPackage ( - { - mkDerivation, - array, - base, - containers, - directory, - filepath, - GraphSCC, - monadLib, - mwc-random, - pretty, - primitive, - process, - random, - }: - mkDerivation { - pname = "passage"; - version = "0.1"; - sha256 = "11qrm27a1fn8p8z0q1400nd30sblm8pcn6znz4syg9jkmqhpn8ig"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - array + text + time + transformers-except + ]; + testHaskellDepends = [ + aeson base + base16-bytestring + bytestring containers - directory - filepath - GraphSCC - monadLib - mwc-random - pretty - primitive - process - random + crypton + hedgehog + memory + mtl + text + time + transformers-except ]; - description = "Parallel code generation for hierarchical Bayesian modeling"; - license = lib.licenses.bsd3; + description = "Platform-Agnostic Security Tokens"; + license = lib.licenses.mit; hydraPlatforms = lib.platforms.none; broken = true; } @@ -506137,116 +292126,6 @@ self: { } ) { }; - "passman-cli" = callPackage ( - { - mkDerivation, - base, - conduit, - contravariant, - haskeline, - optparse-applicative, - passman-core, - resourcet, - text, - X11, - yaml, - }: - mkDerivation { - pname = "passman-cli"; - version = "0.2.0.0"; - sha256 = "0l0cbhngg2dxsy95a24x1g19cpnmngcgdkxklzjymmcnqmxp7jd8"; - revision = "1"; - editedCabalFile = "197mlc2v7azdgdnvr2pxm2whhpqj4v2czwn5vi6ksrax82xswcnc"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - conduit - contravariant - haskeline - optparse-applicative - passman-core - resourcet - text - X11 - yaml - ]; - description = "Deterministic password generator command line interface"; - license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - mainProgram = "passman-cli"; - } - ) { }; - - "passman-core" = callPackage ( - { - mkDerivation, - aeson, - async, - base, - bcrypt, - bytestring, - conduit, - containers, - cryptohash-md5, - csv-conduit, - data-ordlist, - directory, - filepath, - int-cast, - memory, - QuickCheck, - quickcheck-instances, - quickcheck-unicode, - template-haskell, - temporary, - text, - unix-compat, - yaml, - }: - mkDerivation { - pname = "passman-core"; - version = "0.2.0.1"; - sha256 = "1j258waghli2ahg25ihc13qjwz8zmy6ppld0y6sz3jphpg2azybs"; - libraryHaskellDepends = [ - aeson - base - bcrypt - bytestring - conduit - containers - cryptohash-md5 - csv-conduit - data-ordlist - directory - filepath - int-cast - memory - text - unix-compat - yaml - ]; - testHaskellDepends = [ - async - base - conduit - filepath - QuickCheck - quickcheck-instances - quickcheck-unicode - template-haskell - temporary - text - yaml - ]; - doHaddock = false; - description = "Deterministic password generator core"; - license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "password" = callPackage ( { mkDerivation, @@ -506425,69 +292304,6 @@ self: { } ) { }; - "passwords" = callPackage ( - { - mkDerivation, - base, - containers, - MonadRandom, - random, - }: - mkDerivation { - pname = "passwords"; - version = "0.1.0.6"; - sha256 = "0x345pfa28abj152kkr1afnaraf4r8pj0216ack79brxvdhlk6li"; - libraryHaskellDepends = [ - base - containers - MonadRandom - random - ]; - description = "Password generation/validation library"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "pasta" = callPackage ( - { - mkDerivation, - base, - hspec, - microlens, - microlens-th, - protolude, - semigroups, - text, - text-show, - }: - mkDerivation { - pname = "pasta"; - version = "0.1.0.3"; - sha256 = "05c3gh2cfn9hafwz1cz9wn3axbn90xrp9pr2yq4piwvmbwi7ifxx"; - libraryHaskellDepends = [ - base - microlens - microlens-th - protolude - semigroups - text - text-show - ]; - testHaskellDepends = [ - base - hspec - microlens - protolude - ]; - description = "PostgreSQL Abstract Syntax Tree Assember"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "pasta-curves" = callPackage ( { mkDerivation, @@ -506552,55 +292368,6 @@ self: { } ) { }; - "pastis" = callPackage ( - { - mkDerivation, - base, - HTTP, - network, - }: - mkDerivation { - pname = "pastis"; - version = "0.1.2"; - sha256 = "1425gzss5maqzrphrvvsw60lkapwg3wfjx10c59qkylx63k5ixjl"; - libraryHaskellDepends = [ - base - HTTP - network - ]; - description = "Interface to the past.is URL shortening service"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "pasty" = callPackage ( - { - mkDerivation, - base, - bytestring, - mtl, - }: - mkDerivation { - pname = "pasty"; - version = "0.1"; - sha256 = "12pmqcpqa6gjph40w4ga53ij8b989igaf3r6jwxng67kmddkq22z"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - bytestring - mtl - ]; - description = "A simple command line pasting utility"; - license = "GPL"; - hydraPlatforms = lib.platforms.none; - mainProgram = "pasty"; - broken = true; - } - ) { }; - "patat" = callPackage ( { mkDerivation, @@ -506840,43 +292607,6 @@ self: { } ) { }; - "patches-vector" = callPackage ( - { - mkDerivation, - base, - criterion, - doctest, - edit-distance-vector, - hspec, - microlens, - QuickCheck, - vector, - }: - mkDerivation { - pname = "patches-vector"; - version = "0.1.5.4"; - sha256 = "0m6s63pihdrrvb4f5d3pzjc9zhs4spa342miinwq726riac3ijgl"; - libraryHaskellDepends = [ - base - edit-distance-vector - microlens - vector - ]; - testHaskellDepends = [ - base - criterion - doctest - hspec - QuickCheck - vector - ]; - description = "Patches (diffs) on vectors: composable, mergeable, and invertible"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "path" = callPackage ( { mkDerivation, @@ -507318,41 +293048,6 @@ self: { } ) { }; - "pathfindingcore" = callPackage ( - { - mkDerivation, - array, - base-noprelude, - bizzlelude, - split, - tasty, - tasty-hunit, - text, - }: - mkDerivation { - pname = "pathfindingcore"; - version = "1.3.0"; - sha256 = "1hrq9xj7hw90v4b336awvlcvdyj2q7n87zf00vk59srdjqg41hjs"; - libraryHaskellDepends = [ - array - base-noprelude - bizzlelude - split - text - ]; - testHaskellDepends = [ - array - base-noprelude - bizzlelude - tasty - tasty-hunit - ]; - description = "A toy pathfinding library"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "pathological-bytestrings" = callPackage ( { mkDerivation, @@ -507688,38 +293383,6 @@ self: { } ) { }; - "patterns" = callPackage ( - { - mkDerivation, - base, - bytestring, - conduit, - containers, - mtl, - time, - utf8-string, - zeromq-haskell, - }: - mkDerivation { - pname = "patterns"; - version = "0.1.1"; - sha256 = "176si32zbrklf7wsspg0qdswd85ah0gl9k25ylx9qi2rr1vp18pv"; - libraryHaskellDepends = [ - base - bytestring - conduit - containers - mtl - time - utf8-string - zeromq-haskell - ]; - description = "Common patterns in message-oriented applications"; - license = "LGPL"; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "pava" = callPackage ( { mkDerivation, @@ -507817,230 +293480,6 @@ self: { } ) { }; - "paypal-adaptive-hoops" = callPackage ( - { - mkDerivation, - aeson, - base, - bytestring, - directory, - errors, - filepath, - http-client, - HUnit, - lens, - lens-aeson, - test-framework, - test-framework-hunit, - text, - time, - transformers, - vector, - wreq, - }: - mkDerivation { - pname = "paypal-adaptive-hoops"; - version = "0.13.1.0"; - sha256 = "0pwnsna8bj9jzc1ig9k7qgdaqncayj2cnfys1h5chgjks1i73689"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson - base - bytestring - errors - http-client - lens - lens-aeson - text - time - transformers - vector - wreq - ]; - executableHaskellDepends = [ - base - text - ]; - testHaskellDepends = [ - aeson - base - bytestring - directory - filepath - HUnit - test-framework - test-framework-hunit - text - ]; - description = "Client for a limited part of PayPal's Adaptive Payments API"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - mainProgram = "example"; - broken = true; - } - ) { }; - - "paypal-api" = callPackage ( - { - mkDerivation, - base, - bytestring, - conduit, - containers, - failure, - http-conduit, - http-types, - mtl, - old-locale, - text, - time, - wai, - }: - mkDerivation { - pname = "paypal-api"; - version = "0.2"; - sha256 = "0im96yxvbb78sb0b83yypcwsa27gnjbjxbfki5rdnpgbf2yr8k9h"; - libraryHaskellDepends = [ - base - bytestring - conduit - containers - failure - http-conduit - http-types - mtl - old-locale - text - time - wai - ]; - description = "PayPal API, currently supporting \"ButtonManager\""; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "paypal-rest-client" = callPackage ( - { - mkDerivation, - aeson, - base, - bytestring, - containers, - country-codes, - Decimal, - http-client, - http-types, - lens, - safe, - text, - time, - wreq, - }: - mkDerivation { - pname = "paypal-rest-client"; - version = "0.1.0"; - sha256 = "1n81xwawz12slspnsx4i256mibnjxm9d560nyhkgmd19b56sr6x3"; - libraryHaskellDepends = [ - aeson - base - bytestring - containers - country-codes - Decimal - http-client - http-types - lens - safe - text - time - wreq - ]; - description = "A client to connect to PayPal's REST API (v1)"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "pb" = callPackage ( - { - mkDerivation, - base, - containers, - HTTP, - network, - process, - }: - mkDerivation { - pname = "pb"; - version = "0.1.0"; - sha256 = "03cb5diy7wvcd0gm09r4172mck0n4v5hxyc622r8k3phzvzq9zdf"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - containers - HTTP - network - process - ]; - description = "pastebin command line application"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "pb"; - broken = true; - } - ) { }; - - "pb-next" = callPackage ( - { - mkDerivation, - base, - data-default, - either, - optparse-applicative, - parsec, - tasty, - tasty-hunit, - text, - transformers, - }: - mkDerivation { - pname = "pb-next"; - version = "0.1.0.0"; - sha256 = "1am3dgxhapwc546cslm2v1ln9zknjhv2aa8njc1hry6ybh3ynqhc"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - either - parsec - text - transformers - ]; - executableHaskellDepends = [ - base - data-default - either - optparse-applicative - text - ]; - testHaskellDepends = [ - base - parsec - tasty - tasty-hunit - ]; - description = "Utility CLI for working with protobuf files"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "pbhelp"; - broken = true; - } - ) { }; - "pbc4hs" = callPackage ( { mkDerivation, @@ -508150,32 +293589,6 @@ self: { } ) { }; - "pcap-enumerator" = callPackage ( - { - mkDerivation, - base, - bytestring, - enumerator, - pcap, - transformers, - }: - mkDerivation { - pname = "pcap-enumerator"; - version = "0.5"; - sha256 = "0v7ar3jbs54ibhrbbzmvajc7pc8h8dv56wr77w4vsbyz6xq4sqdb"; - libraryHaskellDepends = [ - base - bytestring - enumerator - pcap - transformers - ]; - description = "Convert a pcap into an enumerator"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "pcapng" = callPackage ( { mkDerivation, @@ -508253,62 +293666,6 @@ self: { license = lib.licenses.bsd3; hydraPlatforms = lib.platforms.none; mainProgram = "pcapng-exe"; - } - ) { }; - - "pcd-loader" = callPackage ( - { - mkDerivation, - attoparsec, - base, - binary, - bytestring, - deepseq, - directory, - HUnit, - lens, - linear, - mtl, - string-qq, - test-framework, - test-framework-hunit, - text, - vector, - }: - mkDerivation { - pname = "pcd-loader"; - version = "0.3.0.1"; - sha256 = "1nwyv5c0x262b4j73560bnxhab07ky0cba8nrzdbmmwl2g72c8m7"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - attoparsec - base - binary - bytestring - deepseq - lens - linear - mtl - text - vector - ]; - executableHaskellDepends = [ base ]; - testHaskellDepends = [ - base - directory - HUnit - lens - string-qq - test-framework - test-framework-hunit - text - vector - ]; - description = "PCD file loader"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "pcd2bin"; broken = true; } ) { }; @@ -508345,6 +293702,7 @@ self: { description = "A one file compiler for PCF"; license = lib.licenses.mit; hydraPlatforms = lib.platforms.none; + broken = true; } ) { }; @@ -508379,33 +293737,6 @@ self: { } ) { }; - "pcf-font-embed" = callPackage ( - { - mkDerivation, - base, - bytestring, - pcf-font, - template-haskell, - vector, - }: - mkDerivation { - pname = "pcf-font-embed"; - version = "0.1.2.0"; - sha256 = "0lgx62ig2rvxcv9sgk53pfr8gkfimb1xm6lxpc2rr74mdzp52pf5"; - libraryHaskellDepends = [ - base - bytestring - pcf-font - template-haskell - vector - ]; - description = "Template Haskell for embedding text rendered using PCF fonts"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "pcg-random" = callPackage ( { mkDerivation, @@ -508445,43 +293776,6 @@ self: { } ) { }; - "pcgen" = callPackage ( - { - mkDerivation, - base, - criterion, - deepseq, - hspec, - QuickCheck, - random, - }: - mkDerivation { - pname = "pcgen"; - version = "2.0.1"; - sha256 = "15116krysjvp3if7rdqcfjgqappfybjzwmgrkd5v5x8w62izhnla"; - libraryHaskellDepends = [ - base - random - ]; - testHaskellDepends = [ - base - hspec - QuickCheck - random - ]; - benchmarkHaskellDepends = [ - base - criterion - deepseq - random - ]; - description = "A fast, pseudorandom number generator"; - license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "pcre-heavy" = callPackage ( { mkDerivation, @@ -508564,29 +293858,6 @@ self: { } ) { inherit (pkgs) pcre; }; - "pcre-light-extra" = callPackage ( - { - mkDerivation, - base, - bytestring, - pcre-light, - }: - mkDerivation { - pname = "pcre-light-extra"; - version = "0.0.0"; - sha256 = "1kjh36gglszd16rsh0rm2q5fxjlfipzld4hw0l2r23y0flbqkbvx"; - libraryHaskellDepends = [ - base - bytestring - pcre-light - ]; - description = "pcre-light extra functionality"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "pcre-utils" = callPackage ( { mkDerivation, @@ -508743,68 +294014,6 @@ self: { } ) { }; - "pdf-slave" = callPackage ( - { - mkDerivation, - aeson, - base, - base64-bytestring, - bytestring, - containers, - directory, - exceptions, - haskintex, - HaTeX, - optparse-applicative, - pdf-slave-template, - shelly, - system-filepath, - text, - transformers, - unordered-containers, - yaml, - }: - mkDerivation { - pname = "pdf-slave"; - version = "1.3.2.0"; - sha256 = "1l7an71cnsgq7j6yfdvjqp1lj44f4kwb52c555ciccd6mz6f7866"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson - base - base64-bytestring - bytestring - containers - directory - exceptions - haskintex - HaTeX - pdf-slave-template - shelly - system-filepath - unordered-containers - yaml - ]; - executableHaskellDepends = [ - aeson - base - bytestring - optparse-applicative - pdf-slave-template - shelly - system-filepath - text - transformers - yaml - ]; - description = "Tool to generate PDF from haskintex templates and YAML input"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "pdf-slave"; - } - ) { }; - "pdf-slave-server" = callPackage ( { mkDerivation, @@ -508908,35 +294117,6 @@ self: { } ) { pdf-slave-server-api = null; }; - "pdf-slave-template" = callPackage ( - { - mkDerivation, - aeson, - base, - base64-bytestring, - bytestring, - containers, - text, - }: - mkDerivation { - pname = "pdf-slave-template"; - version = "1.2.1.0"; - sha256 = "17sl4dcisvzjbxa0b6qbi934nl7f5rqm840l66axw2bz43aq1m1f"; - libraryHaskellDepends = [ - aeson - base - base64-bytestring - bytestring - containers - text - ]; - description = "Template format definition for pdf-slave tool"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "pdf-toolbox-content" = callPackage ( { mkDerivation, @@ -509078,54 +294258,6 @@ self: { } ) { }; - "pdf-toolbox-viewer" = callPackage ( - { - mkDerivation, - base, - bytestring, - cairo, - containers, - directory, - filepath, - gtk, - io-streams, - pdf-toolbox-content, - pdf-toolbox-document, - process, - random, - text, - transformers, - }: - mkDerivation { - pname = "pdf-toolbox-viewer"; - version = "0.0.5.0"; - sha256 = "1vv90snnzzp30z2x7vib6p18b3shv9fqml8ggvjbicizx3d9brdq"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - bytestring - cairo - containers - directory - filepath - gtk - io-streams - pdf-toolbox-content - pdf-toolbox-document - process - random - text - transformers - ]; - description = "Simple pdf viewer"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "pdf-toolbox-viewer"; - broken = true; - } - ) { }; - "pdf2line" = callPackage ( { mkDerivation, @@ -509157,97 +294289,6 @@ self: { } ) { }; - "pdfinfo" = callPackage ( - { - mkDerivation, - base, - mtl, - old-locale, - process-extras, - text, - time, - time-locale-compat, - }: - mkDerivation { - pname = "pdfinfo"; - version = "1.5.4"; - sha256 = "04894cwvcn910j2b0j95dc6i9v6xriqa0v97z3vyi9dhi9yiysls"; - libraryHaskellDepends = [ - base - mtl - old-locale - process-extras - text - time - time-locale-compat - ]; - description = "Wrapper around the pdfinfo command"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "pdfname" = callPackage ( - { - mkDerivation, - base, - directory, - filepath, - optparse-applicative, - pdfinfo, - text, - }: - mkDerivation { - pname = "pdfname"; - version = "0.3"; - sha256 = "01xy5rg2n1x2fpqwhnbrmxqqma40zxr8ac0mv06qnyidyggrsggz"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - directory - filepath - optparse-applicative - pdfinfo - text - ]; - description = "Name a PDF file using information from the pdfinfo command"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - mainProgram = "pdfname"; - } - ) { }; - - "pdfsplit" = callPackage ( - { - mkDerivation, - base, - directory, - pdfinfo, - process, - temporary, - }: - mkDerivation { - pname = "pdfsplit"; - version = "0.0.1"; - sha256 = "00bnbfy3awl9vd9vvmh6ylfn2d882r3r1am6b6788b78lvznypxa"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - directory - pdfinfo - process - temporary - ]; - description = "split two-column PDFs, so there is one column per page"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "pdfsplit"; - } - ) { }; - "pdftotext" = callPackage ( { mkDerivation, @@ -509295,38 +294336,6 @@ self: { } ) { poppler-cpp = null; }; - "pdynload" = callPackage ( - { - mkDerivation, - base, - directory, - filepath, - ghc, - ghc-paths, - old-time, - process, - }: - mkDerivation { - pname = "pdynload"; - version = "0.0.3"; - sha256 = "0949nzk85fp9vs6v90cd6kxgg52pcaz2mfahv7416qpgp65hpw93"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base - directory - filepath - ghc - ghc-paths - old-time - process - ]; - description = "pdynload is polymorphic dynamic linking library"; - license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "peakachu" = callPackage ( { mkDerivation, @@ -509353,7 +294362,6 @@ self: { ]; description = "Experiemental library for composable interactive programs"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; } ) { }; @@ -509420,98 +294428,6 @@ self: { } ) { }; - "pec" = callPackage ( - { - mkDerivation, - array, - base, - Cabal, - cmdargs, - containers, - deepseq, - derive, - directory, - filepath, - grm, - mtl, - old-time, - process, - shake, - syb, - uniplate, - wl-pprint, - }: - mkDerivation { - pname = "pec"; - version = "0.2.3"; - sha256 = "110i4y93gm6b76and12vra8nr5q2dz20dvgpbpdgic3sv2ds16k0"; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - array - base - Cabal - cmdargs - containers - deepseq - derive - grm - mtl - shake - syb - uniplate - wl-pprint - ]; - executableHaskellDepends = [ - base - Cabal - cmdargs - deepseq - derive - directory - filepath - grm - mtl - old-time - process - shake - syb - uniplate - wl-pprint - ]; - description = "pec embedded compiler"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "pecoff" = callPackage ( - { - mkDerivation, - base, - binary, - bytestring, - containers, - }: - mkDerivation { - pname = "pecoff"; - version = "0.11"; - sha256 = "0vb22jfl309k4a6b80015cyrs5cxls7vyf8faz7lrm7i0vj0vz1q"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base - binary - bytestring - containers - ]; - description = "Parser for PE/COFF format"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "pedersen-commitment" = callPackage ( { mkDerivation, @@ -509561,135 +294477,6 @@ self: { } ) { }; - "pedestrian-dag" = callPackage ( - { - mkDerivation, - array, - base, - binary, - containers, - }: - mkDerivation { - pname = "pedestrian-dag"; - version = "0.2.0"; - sha256 = "075m58nmls893vis3l55dix8mrciwl2r8kz1s18mgwhxvadm4gdp"; - revision = "1"; - editedCabalFile = "1434n6ncyyryjqzn3xcg73nwvcr6si7cnf2k8g2qrp0xmrq0nx8b"; - libraryHaskellDepends = [ - array - base - binary - containers - ]; - description = "A pedestrian implementation of directed acyclic graphs"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "peg" = callPackage ( - { - mkDerivation, - base, - containers, - filepath, - haskeline, - logict, - mtl, - parsec, - }: - mkDerivation { - pname = "peg"; - version = "0.2"; - sha256 = "0mh56nkn31dwpyrl238b06gyfwy3p7y90b9y6k639vpqkn9nnzcd"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - containers - filepath - haskeline - logict - mtl - parsec - ]; - description = "a lazy non-deterministic concatenative programming language"; - license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - mainProgram = "peg"; - broken = true; - } - ) { }; - - "peggy" = callPackage ( - { - mkDerivation, - base, - hashtables, - haskell-src-meta, - ListLike, - monad-control, - mtl, - template-haskell, - }: - mkDerivation { - pname = "peggy"; - version = "0.3.2"; - sha256 = "1km847arc193wq6cdr38xvz1znbdmrgdyji2p9rs4j2p35rr6s6y"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - hashtables - haskell-src-meta - ListLike - monad-control - mtl - template-haskell - ]; - description = "The Parser Generator for Haskell"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "pell" = callPackage ( - { - mkDerivation, - arithmoi, - base, - Cabal, - cabal-test-quickcheck, - containers, - primes, - QuickCheck, - }: - mkDerivation { - pname = "pell"; - version = "0.1.3.0"; - sha256 = "07l623ja134s99qlhvjrsfcyaj9s504xfm9ml8afc78k9yarly9w"; - libraryHaskellDepends = [ - arithmoi - base - containers - ]; - testHaskellDepends = [ - arithmoi - base - Cabal - cabal-test-quickcheck - containers - primes - QuickCheck - ]; - description = "Package to solve the Generalized Pell Equation"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "pem" = callPackage ( { mkDerivation, @@ -509727,67 +294514,6 @@ self: { } ) { }; - "pencil" = callPackage ( - { - mkDerivation, - base, - data-default, - directory, - doctest, - edit-distance, - filepath, - hashable, - hsass, - mtl, - pandoc, - parsec, - semigroups, - text, - time, - unordered-containers, - vector, - xml, - yaml, - }: - mkDerivation { - pname = "pencil"; - version = "1.0.1"; - sha256 = "0a1lb0dclv6p6qkd6nd3zp665n6spkv10yd1i2m67rrqabg802cl"; - revision = "1"; - editedCabalFile = "012afvs4wghdw7adz0hw01pmi8ai89r8jhpykdwfyf4ignbrfpvq"; - libraryHaskellDepends = [ - base - data-default - directory - edit-distance - filepath - hashable - hsass - mtl - pandoc - parsec - semigroups - text - time - unordered-containers - vector - xml - yaml - ]; - testHaskellDepends = [ - base - doctest - mtl - text - unordered-containers - ]; - description = "Static site generator"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "penn-treebank" = callPackage ( { mkDerivation, @@ -509809,411 +294535,6 @@ self: { } ) { }; - "penntreebank-megaparsec" = callPackage ( - { - mkDerivation, - base, - containers, - hspec, - hspec-discover, - megaparsec, - mtl, - template-haskell, - text, - transformers, - }: - mkDerivation { - pname = "penntreebank-megaparsec"; - version = "0.2.0"; - sha256 = "1238y2wya0ryas58n0b0l4gjmsrzl0dwns0f4gx5m8q6aq4d33c9"; - libraryHaskellDepends = [ - base - containers - megaparsec - mtl - template-haskell - transformers - ]; - testHaskellDepends = [ - base - containers - hspec - megaparsec - mtl - template-haskell - text - transformers - ]; - testToolDepends = [ hspec-discover ]; - description = "Parser combinators for trees in the Penn Treebank format"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "penny" = callPackage ( - { - mkDerivation, - action-permutations, - anonymous-sums, - base, - bytestring, - cereal, - containers, - contravariant, - either, - matchers, - multiarg, - ofx, - old-locale, - parsec, - prednote, - QuickCheck, - rainbow, - rainbox, - random-shuffle, - semigroups, - split, - tasty, - tasty-quickcheck, - text, - time, - transformers, - }: - mkDerivation { - pname = "penny"; - version = "0.32.0.10"; - sha256 = "0bzxihhi7cs8cqbnz7mf6sj12dyr267265asc010pgyffpjc22qi"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - action-permutations - anonymous-sums - base - bytestring - cereal - containers - contravariant - either - matchers - multiarg - ofx - old-locale - parsec - prednote - rainbow - rainbox - semigroups - split - text - time - transformers - ]; - executableHaskellDepends = [ base ]; - testHaskellDepends = [ - anonymous-sums - base - parsec - QuickCheck - random-shuffle - semigroups - tasty - tasty-quickcheck - text - time - transformers - ]; - description = "Extensible double-entry accounting system"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "penny-bin" = callPackage ( - { - mkDerivation, - base, - containers, - explicit-exception, - multiarg, - parsec, - penny-lib, - pretty-show, - semigroups, - text, - transformers, - }: - mkDerivation { - pname = "penny-bin"; - version = "0.22.0.0"; - sha256 = "0mdl8wpcy2yzscpww6vv5vhgiwy5xi0js1yxd7y4h5dmvhxsrr9l"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - containers - explicit-exception - multiarg - parsec - penny-lib - pretty-show - semigroups - text - transformers - ]; - description = "Deprecated - use penny package instead"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "penny-lib" = callPackage ( - { - mkDerivation, - action-permutations, - base, - binary, - bytestring, - cereal, - containers, - explicit-exception, - matchers, - multiarg, - ofx, - old-locale, - parsec, - prednote, - pretty-show, - rainbow, - semigroups, - split, - text, - time, - transformers, - }: - mkDerivation { - pname = "penny-lib"; - version = "0.22.0.0"; - sha256 = "0fy671xvia7kjlcrwpsv93gsnyz5wvcajlva98ykbh7cdkf56b17"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - action-permutations - base - binary - bytestring - cereal - containers - explicit-exception - matchers - multiarg - ofx - old-locale - parsec - prednote - pretty-show - rainbow - semigroups - split - text - time - transformers - ]; - description = "Deprecated - use penny package instead"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "penrose" = callPackage ( - { - mkDerivation, - ad, - aeson, - alex, - ansi-terminal, - array, - base, - bytestring, - containers, - directory, - docopt, - extra, - hmatrix, - hslogger, - http-types, - megaparsec, - mtl, - multimap, - network, - old-time, - parser-combinators, - pretty, - pretty-show, - pretty-terminal, - process, - random, - random-shuffle, - scotty, - split, - tasty, - tasty-hunit, - tasty-quickcheck, - tasty-smallcheck, - text, - unordered-containers, - uuid, - websockets, - }: - mkDerivation { - pname = "penrose"; - version = "0.1.1.1"; - sha256 = "0fak9lsa7gz1q2sbkwd76i01zi5aigi3p7q7gqlmz32y8sxsc8q0"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - ad - aeson - ansi-terminal - array - base - bytestring - containers - directory - docopt - extra - hmatrix - hslogger - http-types - megaparsec - mtl - multimap - network - old-time - parser-combinators - pretty - pretty-show - pretty-terminal - process - random - random-shuffle - scotty - split - text - unordered-containers - uuid - websockets - ]; - libraryToolDepends = [ alex ]; - executableHaskellDepends = [ base ]; - testHaskellDepends = [ - ad - aeson - ansi-terminal - array - base - bytestring - containers - directory - docopt - extra - hmatrix - hslogger - http-types - megaparsec - mtl - multimap - network - old-time - parser-combinators - pretty - pretty-show - pretty-terminal - process - random - random-shuffle - scotty - split - tasty - tasty-hunit - tasty-quickcheck - tasty-smallcheck - text - uuid - websockets - ]; - description = "Create beautiful diagrams just by typing mathematical notation in plain text"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - mainProgram = "penrose"; - broken = true; - } - ) { }; - - "peparser" = callPackage ( - { - mkDerivation, - base, - binary, - bytestring, - haskell98, - }: - mkDerivation { - pname = "peparser"; - version = "0.21"; - sha256 = "1qy8hghpvp9idiq4ksn55n1dpx7823s7mjfvqfgrmhj0xl1b1y54"; - libraryHaskellDepends = [ - base - binary - bytestring - haskell98 - ]; - description = "A parser for PE object files"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "percent-encoder" = callPackage ( - { - mkDerivation, - array, - base, - bytestring, - criterion, - network-uri, - QuickCheck, - quickcheck-instances, - }: - mkDerivation { - pname = "percent-encoder"; - version = "0.0.0.0"; - sha256 = "1aqa25kydhvf9jiqk5a928fmgi9g94d2b44gkq8vqlzbq0azi126"; - libraryHaskellDepends = [ - array - base - bytestring - ]; - testHaskellDepends = [ - base - bytestring - QuickCheck - quickcheck-instances - ]; - benchmarkHaskellDepends = [ - base - bytestring - criterion - network-uri - ]; - description = "Percent encode/decode ByteStrings"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "percent-format" = callPackage ( { mkDerivation, @@ -510234,20 +294555,6 @@ self: { } ) { }; - "perceptron" = callPackage ( - { mkDerivation, base }: - mkDerivation { - pname = "perceptron"; - version = "0.1.0.3"; - sha256 = "0w1vrsv43z92y6vsv9nzs2pjlqkhrxvzh53r2722530lzff34m78"; - libraryHaskellDepends = [ base ]; - description = "The perceptron learning algorithm"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "perceptual-hash" = callPackage ( { mkDerivation, @@ -510316,88 +294623,6 @@ self: { } ) { }; - "perdure" = callPackage ( - { - mkDerivation, - array, - base, - binary, - bytestring, - cognimeta-utils, - collections-api, - comonad-transformers, - containers, - cryptohash, - data-binary-ieee754, - data-lens, - data-lens-fd, - data-lens-template, - filepath, - ghc-prim, - MonadRandom, - mtl, - primitive, - QuickCheck, - stm, - strict, - tagged, - template-haskell, - time, - transformers, - unix, - }: - mkDerivation { - pname = "perdure"; - version = "0.2.1"; - sha256 = "04vj8kva5qmrf8r93xyf0qw8nx64j241pdc19s2ddvd21lq5wqkz"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - array - base - binary - bytestring - cognimeta-utils - collections-api - comonad-transformers - containers - cryptohash - data-binary-ieee754 - data-lens - data-lens-fd - data-lens-template - filepath - ghc-prim - MonadRandom - mtl - primitive - QuickCheck - stm - strict - tagged - template-haskell - time - transformers - unix - ]; - executableHaskellDepends = [ - base - bytestring - cognimeta-utils - containers - MonadRandom - mtl - QuickCheck - template-haskell - transformers - ]; - description = "Robust persistence for acyclic immutable data"; - license = "unknown"; - hydraPlatforms = lib.platforms.none; - mainProgram = "perdure"; - } - ) { }; - "peregrin" = callPackage ( { mkDerivation, @@ -510500,56 +294725,6 @@ self: { } ) { }; - "perf-analysis" = callPackage ( - { - mkDerivation, - base, - containers, - deepseq, - optparse-generic, - perf, - protolude, - readme-lhs, - scientific, - tdigest, - text, - text-format, - vector, - }: - mkDerivation { - pname = "perf-analysis"; - version = "0.3.0"; - sha256 = "1c591c5i732ld3giip56b9rccgrfjlrnnx6zrxfmg33anhyjwsi6"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - perf - protolude - readme-lhs - scientific - tdigest - text - text-format - ]; - executableHaskellDepends = [ - base - containers - deepseq - optparse-generic - perf - protolude - readme-lhs - text - vector - ]; - description = "analysis example using perf"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "perf-examples"; - } - ) { }; - "perfect-hash-generator" = callPackage ( { mkDerivation, @@ -510676,95 +294851,6 @@ self: { } ) { }; - "perfecthash" = callPackage ( - { - mkDerivation, - array, - base, - bytestring, - cmph, - containers, - criterion, - deepseq, - hspec, - QuickCheck, - random, - time, - unordered-containers, - }: - mkDerivation { - pname = "perfecthash"; - version = "0.2.0"; - sha256 = "1qq9w9r0z9v5c96q9dhwliziaiikrsnpc7rv2ldjcf95g1w4a9wr"; - libraryHaskellDepends = [ - array - base - bytestring - cmph - containers - time - ]; - testHaskellDepends = [ - base - bytestring - cmph - containers - hspec - QuickCheck - ]; - benchmarkHaskellDepends = [ - array - base - bytestring - containers - criterion - deepseq - random - unordered-containers - ]; - description = "A perfect hashing library for mapping bytestrings to values"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "perhaps" = callPackage ( - { - mkDerivation, - base, - Cabal, - cabal-doctest, - doctest, - mtl, - transformers, - transformers-compat, - }: - mkDerivation { - pname = "perhaps"; - version = "0"; - sha256 = "16bm069pqrdsbscyp9m1r7cciqppkvlmgn4xgzp3yyfh69z095gn"; - setupHaskellDepends = [ - base - Cabal - cabal-doctest - ]; - libraryHaskellDepends = [ - base - mtl - transformers - transformers-compat - ]; - testHaskellDepends = [ - base - doctest - ]; - description = "Perhaps, a monad"; - license = lib.licenses.bsd2; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "period" = callPackage ( { mkDerivation, @@ -510812,52 +294898,6 @@ self: { } ) { }; - "periodic" = callPackage ( - { - mkDerivation, - base, - cereal, - hedis, - hspec, - text, - time, - }: - mkDerivation { - pname = "periodic"; - version = "0.1.0.0"; - sha256 = "115b3ggi951w2b8k9a0iqx162aapcqsp5wa7rbgsnsvvjxic0wqr"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - cereal - hedis - text - time - ]; - executableHaskellDepends = [ - base - cereal - hedis - text - time - ]; - testHaskellDepends = [ - base - cereal - hedis - hspec - text - time - ]; - description = "A reliable at-least-once periodic job scheduler backed by redis"; - license = lib.licenses.isc; - hydraPlatforms = lib.platforms.none; - mainProgram = "example"; - broken = true; - } - ) { }; - "periodic-client" = callPackage ( { mkDerivation, @@ -510895,339 +294935,6 @@ self: { description = "Periodic task system haskell client"; license = lib.licenses.bsd3; hydraPlatforms = lib.platforms.none; - } - ) { }; - - "periodic-client-exe" = callPackage ( - { - mkDerivation, - base, - binary, - boxes, - bytestring, - data-default-class, - deepseq, - http-types, - metro, - metro-socket, - metro-transport-tls, - metro-transport-websockets, - metro-transport-xor, - periodic-client, - periodic-common, - process, - scotty, - streaming-commons, - text, - unix-time, - unliftio, - warp, - websockets, - }: - mkDerivation { - pname = "periodic-client-exe"; - version = "1.1.7.1"; - sha256 = "0mgcvkc4sw7f1idjnhcj6qinnm3w47as6zjx2s8cxyfxn0ma73ll"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - binary - boxes - bytestring - data-default-class - deepseq - http-types - metro - metro-socket - metro-transport-tls - metro-transport-websockets - metro-transport-xor - periodic-client - periodic-common - process - scotty - streaming-commons - text - unix-time - unliftio - warp - websockets - ]; - description = "Periodic task system haskell client executables"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "periodic-common" = callPackage ( - { - mkDerivation, - base, - binary, - byteable, - bytestring, - entropy, - hashable, - hslogger, - metro, - text, - unliftio, - vector, - }: - mkDerivation { - pname = "periodic-common"; - version = "1.1.7.0"; - sha256 = "17rbzps7s4vwpf6390lz158hj1m5w6b791v8srg4mz9wd493iwbg"; - libraryHaskellDepends = [ - base - binary - byteable - bytestring - entropy - hashable - hslogger - metro - text - unliftio - vector - ]; - description = "Periodic task system common"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "periodic-polynomials" = callPackage ( - { - mkDerivation, - base, - vector, - }: - mkDerivation { - pname = "periodic-polynomials"; - version = "0.2.0.0"; - sha256 = "1y7hj8cjdy5zpp7sg7yfaafcid7ssf23g4az6fwk2hrcrk97sf2i"; - libraryHaskellDepends = [ - base - vector - ]; - description = "A library for working with periodic polynomials (very basic functionality)"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "periodic-server" = callPackage ( - { - mkDerivation, - async, - base, - base64-bytestring, - binary, - byteable, - bytestring, - direct-sqlite, - entropy, - filepath, - hslogger, - metro, - metro-socket, - metro-transport-tls, - metro-transport-websockets, - metro-transport-xor, - mtl, - network, - periodic-common, - postgresql-simple, - psqueues, - resource-pool, - stm, - transformers, - unliftio, - unordered-containers, - }: - mkDerivation { - pname = "periodic-server"; - version = "1.1.7.1"; - sha256 = "1gvx5n86xm14yp07ag57mw5pfig0ldpnwmg1y4vrj003k046n29p"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - async - base - base64-bytestring - binary - byteable - bytestring - direct-sqlite - entropy - filepath - hslogger - metro - mtl - network - periodic-common - postgresql-simple - psqueues - resource-pool - stm - transformers - unliftio - unordered-containers - ]; - executableHaskellDepends = [ - base - bytestring - hslogger - metro - metro-socket - metro-transport-tls - metro-transport-websockets - metro-transport-xor - periodic-common - unliftio - ]; - description = "Periodic task system haskell server"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "periodicd"; - } - ) { }; - - "perm" = callPackage ( - { - mkDerivation, - base, - catch-fd, - HUnit, - mtl, - test-framework, - test-framework-hunit, - transformers, - }: - mkDerivation { - pname = "perm"; - version = "0.4.0.0"; - sha256 = "0lf6smw3m32vwrga5y671z355w0vphp3n63cfnsirk1kiz5ik5rx"; - libraryHaskellDepends = [ - base - catch-fd - mtl - transformers - ]; - testHaskellDepends = [ - base - HUnit - mtl - test-framework - test-framework-hunit - ]; - description = "permutation Applicative and Monad with many mtl instances"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "permutation" = callPackage ( - { - mkDerivation, - base, - Cabal, - ghc-prim, - process, - QuickCheck, - }: - mkDerivation { - pname = "permutation"; - version = "0.5.0.5"; - sha256 = "005737s6k9dfpjmjf41m3k1wc31c2kql08ig7fd6npk22nhwmdai"; - revision = "1"; - editedCabalFile = "0lrargadwkwzzvajfiay8vkq1byh56kbr2h9ba9cfbpqwb4s90j9"; - setupHaskellDepends = [ - base - Cabal - process - ]; - libraryHaskellDepends = [ - base - ghc-prim - QuickCheck - ]; - description = "A library for permutations and combinations"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "permutations" = callPackage ( - { - mkDerivation, - alg, - base, - base-unicode-symbols, - Fin, - natural-induction, - peano, - smallcheck, - tasty, - tasty-smallcheck, - universe-base, - util, - }: - mkDerivation { - pname = "permutations"; - version = "0.1.0.0"; - sha256 = "0dx4xx4g35r2qq4al431l5s1664psf95pf0nf6y59c1i1km5qpq4"; - revision = "1"; - editedCabalFile = "1n52axjb7z0hv9fzs9c7n33dxhm5ljdv2s0xs17hh0ycy2106dq2"; - libraryHaskellDepends = [ - alg - base - base-unicode-symbols - Fin - natural-induction - peano - universe-base - util - ]; - testHaskellDepends = [ - alg - base - Fin - natural-induction - peano - smallcheck - tasty - tasty-smallcheck - universe-base - ]; - description = "Permutations of finite sets"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "permute" = callPackage ( - { - mkDerivation, - base, - mtl, - }: - mkDerivation { - pname = "permute"; - version = "1.0"; - sha256 = "03g1d9h26f1id0pnaigy9xy1cv5pvzqcjrwgzn75xnnbm5c3y9ch"; - libraryHaskellDepends = [ - base - mtl - ]; - description = "Generalised permutation parser combinator"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; broken = true; } ) { }; @@ -511268,76 +294975,6 @@ self: { } ) { }; - "persist-state" = callPackage ( - { - mkDerivation, - base, - bytestring, - containers, - ghc-prim, - QuickCheck, - test-framework, - test-framework-quickcheck2, - text, - }: - mkDerivation { - pname = "persist-state"; - version = "0.2.0.0"; - sha256 = "1jmrba3nmd9qvvgmm1zz0qrhikzjdcg6rc38f4q3gq6yw4rap4kj"; - libraryHaskellDepends = [ - base - bytestring - containers - ghc-prim - text - ]; - testHaskellDepends = [ - base - bytestring - QuickCheck - test-framework - test-framework-quickcheck2 - text - ]; - description = "Serialization library with state and leb128 encoding"; - license = lib.licenses.bsd3; - badPlatforms = [ - "aarch64-linux" - "armv7l-linux" - ]; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "persist2er" = callPackage ( - { - mkDerivation, - base, - optparse-applicative, - persistent, - text, - }: - mkDerivation { - pname = "persist2er"; - version = "0.1.0.1"; - sha256 = "096gjkmw06crywwwydyr67447xmp8x967dwh1gavlr0061skb72p"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - optparse-applicative - persistent - text - ]; - description = "Transforms persist's quasi-quoted syntax into ER format"; - license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - mainProgram = "persist2er"; - broken = true; - } - ) { }; - "persistable-record" = callPackage ( { mkDerivation, @@ -511549,139 +295186,6 @@ self: { } ) { }; - "persistent-audit" = callPackage ( - { - mkDerivation, - aeson, - attoparsec, - base, - bytestring, - getopt-generics, - hashable, - hspec, - mongoDB, - persistent, - persistent-mongoDB, - persistent-parser, - persistent-sqlite, - persistent-template, - text, - time, - transformers, - unordered-containers, - }: - mkDerivation { - pname = "persistent-audit"; - version = "0.2.0.0"; - sha256 = "1w8zpyyzglp6ywkdzhkcwlf8py0ck75zsnna5insn3q4dw9qgk03"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson - attoparsec - base - bytestring - hashable - mongoDB - persistent - persistent-mongoDB - persistent-parser - persistent-template - text - time - transformers - unordered-containers - ]; - executableHaskellDepends = [ - base - getopt-generics - persistent-parser - text - ]; - testHaskellDepends = [ - aeson - attoparsec - base - hspec - persistent - persistent-parser - persistent-sqlite - persistent-template - text - time - transformers - ]; - description = "Parses a Persist Model file and produces Audit Models"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "persistent-audit"; - } - ) { }; - - "persistent-cereal" = callPackage ( - { - mkDerivation, - base, - cereal, - persistent, - text, - }: - mkDerivation { - pname = "persistent-cereal"; - version = "0.1.0"; - sha256 = "09akf8vpkn2jskf1vf9mq96sakqzr7mfs8hhri8qlbkwx3i5nr6f"; - libraryHaskellDepends = [ - base - cereal - persistent - text - ]; - description = "Helper functions for writing Persistent instances"; - license = lib.licenses.publicDomain; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "persistent-database-url" = callPackage ( - { - mkDerivation, - base, - bytestring, - fail, - hspec, - persistent-postgresql, - string-conversions, - text, - uri-bytestring, - }: - mkDerivation { - pname = "persistent-database-url"; - version = "1.1.0"; - sha256 = "1lf49s7rpjg2i0fsg25jwcw5xnhbi1xnmqys7gmknncj4nyc1qd3"; - libraryHaskellDepends = [ - base - bytestring - fail - persistent-postgresql - string-conversions - text - uri-bytestring - ]; - testHaskellDepends = [ - base - bytestring - hspec - persistent-postgresql - text - ]; - description = "Parse DATABASE_URL into configuration types for Persistent"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "persistent-discover" = callPackage ( { mkDerivation, @@ -511793,29 +295297,6 @@ self: { } ) { }; - "persistent-equivalence" = callPackage ( - { - mkDerivation, - array, - base, - diffarray, - }: - mkDerivation { - pname = "persistent-equivalence"; - version = "0.3"; - sha256 = "14nn01bbwskllbccgcnwnjwzyws6vppqv4l51n6pcvhwbphn18qz"; - libraryHaskellDepends = [ - array - base - diffarray - ]; - description = "Persistent equivalence relations (aka union-find)"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "persistent-event-source" = callPackage ( { mkDerivation, @@ -511912,65 +295393,6 @@ self: { } ) { }; - "persistent-generic" = callPackage ( - { - mkDerivation, - base, - persistent, - text, - }: - mkDerivation { - pname = "persistent-generic"; - version = "0.1.0.0"; - sha256 = "1a9h7dfj9v47di4pwg3fwzwa550fh8wj2ri1w2kd8xbw9xym5kqk"; - libraryHaskellDepends = [ - base - persistent - text - ]; - description = "Derive Persistent classes generically"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "persistent-hssqlppp" = callPackage ( - { - mkDerivation, - base, - bytestring, - hssqlppp, - monad-control, - mtl, - persistent, - persistent-template, - template-haskell, - text, - th-lift, - }: - mkDerivation { - pname = "persistent-hssqlppp"; - version = "0.1"; - sha256 = "1p4fpa5qlkn2jmggszzmzg0bva8r8j0x7b2bidqyzlw2i9332ba2"; - libraryHaskellDepends = [ - base - bytestring - hssqlppp - monad-control - mtl - persistent - persistent-template - template-haskell - text - th-lift - ]; - description = "Declare Persistent entities using SQL SELECT query syntax"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "persistent-instances-iproute" = callPackage ( { mkDerivation, @@ -512074,42 +295496,6 @@ self: { } ) { }; - "persistent-map" = callPackage ( - { - mkDerivation, - base, - binary, - containers, - directory, - EdisonAPI, - EdisonCore, - filepath, - LRU, - mtl, - stm-io-hooks, - }: - mkDerivation { - pname = "persistent-map"; - version = "0.3.5"; - sha256 = "0an0j6xkxygxlvjj50fq356sc4njbniz9jzv6v2h9pihsmcckhvq"; - libraryHaskellDepends = [ - base - binary - containers - directory - EdisonAPI - EdisonCore - filepath - LRU - mtl - stm-io-hooks - ]; - description = "A thread-safe (STM) persistency interface for finite map types"; - license = "LGPL"; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "persistent-migration" = callPackage ( { mkDerivation, @@ -512402,95 +295788,6 @@ self: { } ) { }; - "persistent-mysql-haskell" = callPackage ( - { - mkDerivation, - aeson, - base, - bytestring, - conduit, - containers, - fast-logger, - hspec, - HUnit, - io-streams, - monad-logger, - mysql-haskell, - network, - persistent, - persistent-qq, - persistent-template, - persistent-test, - QuickCheck, - quickcheck-instances, - resource-pool, - resourcet, - text, - time, - tls, - transformers, - unliftio-core, - }: - mkDerivation { - pname = "persistent-mysql-haskell"; - version = "0.6.0"; - sha256 = "1b5195mrl3x79wi7qj95kx96dwwfldjfx6arb6l1ff4mmgxh3q8s"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson - base - bytestring - conduit - containers - io-streams - monad-logger - mysql-haskell - network - persistent - resource-pool - resourcet - text - time - tls - transformers - unliftio-core - ]; - executableHaskellDepends = [ - base - monad-logger - persistent - persistent-template - transformers - ]; - testHaskellDepends = [ - base - bytestring - containers - fast-logger - hspec - HUnit - monad-logger - persistent - persistent-qq - persistent-template - persistent-test - QuickCheck - quickcheck-instances - resourcet - text - time - transformers - unliftio-core - ]; - description = "A pure haskell backend for the persistent library using MySQL database server"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - mainProgram = "persistent-mysql-haskell-example"; - broken = true; - } - ) { }; - "persistent-mysql-pure" = callPackage ( { mkDerivation, @@ -512948,36 +296245,6 @@ self: { } ) { }; - "persistent-protobuf" = callPackage ( - { - mkDerivation, - base, - bytestring, - persistent, - protocol-buffers, - protocol-buffers-descriptor, - template-haskell, - text, - }: - mkDerivation { - pname = "persistent-protobuf"; - version = "0.1.5"; - sha256 = "046dpasgv6bwcm17w0z9dz4bvaa622cdb8paj7j6accmsc4rvs9z"; - libraryHaskellDepends = [ - base - bytestring - persistent - protocol-buffers - protocol-buffers-descriptor - template-haskell - text - ]; - description = "Template-Haskell helpers for integrating protobufs with persistent"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "persistent-qq" = callPackage ( { mkDerivation, @@ -513031,29 +296298,6 @@ self: { } ) { }; - "persistent-ratelimit" = callPackage ( - { - mkDerivation, - base, - time, - yesod, - }: - mkDerivation { - pname = "persistent-ratelimit"; - version = "0.3.0.0"; - sha256 = "05h7wlw82ljjic50qhzlldhidz344id1fpf0yaxrhqvx7wkgyi2m"; - libraryHaskellDepends = [ - base - time - yesod - ]; - description = "A library for rate limiting activities with a persistent backend"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "persistent-redis" = callPackage ( { mkDerivation, @@ -513115,93 +296359,6 @@ self: { } ) { }; - "persistent-refs" = callPackage ( - { - mkDerivation, - base, - containers, - mtl, - ref-fd, - transformers, - }: - mkDerivation { - pname = "persistent-refs"; - version = "0.4"; - sha256 = "1lyhz0cywls91a6crjq5v8x4h4740s73h3blvbkr6fg26kh11cs6"; - libraryHaskellDepends = [ - base - containers - mtl - ref-fd - transformers - ]; - description = "Haskell references backed by an IntMap for persistence and reversibility"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "persistent-relational-record" = callPackage ( - { - mkDerivation, - array, - base, - conduit, - containers, - hlint, - HUnit, - mtl, - names-th, - persistable-record, - persistent, - persistent-template, - relational-query, - resourcet, - template-haskell, - test-framework, - test-framework-hunit, - test-framework-th, - text, - time, - }: - mkDerivation { - pname = "persistent-relational-record"; - version = "0.3.0"; - sha256 = "0cbm9klj9z7lrkp8b9s3z6ij1apbmjxqmxaakmykz1fqc483h9g1"; - libraryHaskellDepends = [ - array - base - conduit - containers - mtl - names-th - persistable-record - persistent - relational-query - resourcet - template-haskell - text - ]; - testHaskellDepends = [ - base - hlint - HUnit - persistent-template - relational-query - test-framework - test-framework-hunit - test-framework-th - text - time - ]; - description = "relational-record on persisten backends"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "persistent-spatial" = callPackage ( { mkDerivation, @@ -513563,440 +296720,171 @@ self: { version = "0.1.0.7"; sha256 = "0fkshbf35mnlx4aqkij0lzzmpfxw34zkwgq8s2lm3rrrqw7gw59l"; revision = "2"; - editedCabalFile = "0m5ajvfcj10k1mnlwdyd1n9s3py70g4sinzh0gkvch9q1bl6qiwz"; - libraryHaskellDepends = [ - aeson - base - bytestring - conduit - http-api-data - monad-logger - path-pieces - persistent - resource-pool - resourcet - template-haskell - text - transformers - ]; - testHaskellDepends = [ - aeson - base - bytestring - conduit - esqueleto - hspec - http-api-data - monad-logger - path-pieces - persistent - resource-pool - resourcet - template-haskell - text - transformers - ]; - testToolDepends = [ hspec-discover ]; - description = "Type safe access to multiple database schemata"; - license = lib.licenses.bsd3; - } - ) { }; - - "persistent-vector" = callPackage ( - { - mkDerivation, - base, - containers, - criterion, - deepseq, - QuickCheck, - test-framework, - test-framework-quickcheck2, - transformers, - }: - mkDerivation { - pname = "persistent-vector"; - version = "0.2.0"; - sha256 = "07fxfmkgjszssagj4miw1sx9vi782hwsf6gay7z6mb96mygbld5y"; - libraryHaskellDepends = [ - base - deepseq - transformers - ]; - testHaskellDepends = [ - base - QuickCheck - test-framework - test-framework-quickcheck2 - ]; - benchmarkHaskellDepends = [ - base - containers - criterion - deepseq - ]; - description = "A persistent sequence based on array mapped tries"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "persistent-zookeeper" = callPackage ( - { - mkDerivation, - aeson, - attoparsec, - base, - base64-bytestring, - binary, - bytestring, - conduit, - containers, - hspec, - hzk, - monad-control, - mtl, - path-pieces, - persistent, - persistent-template, - resource-pool, - resourcet, - scientific, - template-haskell, - text, - time, - transformers, - transformers-base, - utf8-string, - }: - mkDerivation { - pname = "persistent-zookeeper"; - version = "0.2.0"; - sha256 = "11s99wrxhyzyfg657dqma1v1vvdadskvrjybrya2zm8lp675ri9z"; - libraryHaskellDepends = [ - aeson - attoparsec - base - base64-bytestring - binary - bytestring - conduit - containers - hzk - monad-control - mtl - path-pieces - persistent - persistent-template - resource-pool - resourcet - scientific - template-haskell - text - time - transformers - transformers-base - utf8-string - ]; - testHaskellDepends = [ - aeson - attoparsec - base - base64-bytestring - binary - bytestring - conduit - containers - hspec - hzk - monad-control - mtl - path-pieces - persistent - persistent-template - resource-pool - resourcet - scientific - template-haskell - text - time - transformers - transformers-base - utf8-string - ]; - description = "Backend for persistent library using Zookeeper"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "persona" = callPackage ( - { - mkDerivation, - aeson, - base, - data-default-class, - jose, - lens, - network-uri, - text, - time, - unordered-containers, - }: - mkDerivation { - pname = "persona"; - version = "0.2.0.0"; - sha256 = "0swdj0nwlqrfbh118lhk2dzx9fini2ngrl9a1vmrdkpmlms1d2mw"; - libraryHaskellDepends = [ - aeson - base - data-default-class - jose - lens - network-uri - text - time - unordered-containers - ]; - description = "Persona (BrowserID) library"; - license = lib.licenses.agpl3Only; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "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.2"; - sha256 = "082ly9m0m0g9brgzma489i4b4pkqqy50gv0a6hn7pvyhpr901b6n"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - 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 - ]; - description = "Persona (BrowserID) Identity Provider"; - license = lib.licenses.agpl3Only; - hydraPlatforms = lib.platforms.none; - mainProgram = "persona"; - } - ) { }; - - "pesca" = callPackage ( - { - mkDerivation, - base, - process, - }: - mkDerivation { - pname = "pesca"; - version = "4.0.1"; - sha256 = "12cwmjszbbqrd1f21jvwvp026ja3377c3p0wfrbrl34g23gnysgp"; - isLibrary = false; - isExecutable = true; - enableSeparateDataOutput = true; - executableHaskellDepends = [ - base - process - ]; - description = "Proof Editor for Sequent Calculus"; - license = "GPL"; - hydraPlatforms = lib.platforms.none; - mainProgram = "pesca"; - broken = true; - } - ) { }; - - "peyotls" = callPackage ( - { - mkDerivation, - asn1-encoding, - asn1-types, - base, - bytable, - bytestring, - cipher-aes, - crypto-numbers, - crypto-pubkey, - crypto-pubkey-types, - crypto-random, - cryptohash, - handle-like, - monad-control, - monads-tf, - network, - pem, - peyotls-codec, - random, - stm, - transformers-base, - x509, - x509-store, - x509-validation, - }: - mkDerivation { - pname = "peyotls"; - version = "0.1.6.10"; - sha256 = "0x1qrh1nz3fr662701d8r7l23flwiv6az2wwcx48bp0vrk08lwww"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - asn1-encoding - asn1-types - base - bytable - bytestring - cipher-aes - crypto-numbers - crypto-pubkey - crypto-pubkey-types - crypto-random - cryptohash - handle-like - monad-control - monads-tf - pem - peyotls-codec - stm - transformers-base - x509 - x509-store - x509-validation + editedCabalFile = "0m5ajvfcj10k1mnlwdyd1n9s3py70g4sinzh0gkvch9q1bl6qiwz"; + libraryHaskellDepends = [ + aeson + base + bytestring + conduit + http-api-data + monad-logger + path-pieces + persistent + resource-pool + resourcet + template-haskell + text + transformers ]; testHaskellDepends = [ + aeson base bytestring - crypto-random - handle-like - network - random - stm - x509 - x509-store + conduit + esqueleto + hspec + http-api-data + monad-logger + path-pieces + persistent + resource-pool + resourcet + template-haskell + text + transformers ]; - description = "Pretty Easy YOshikuni-made TLS library"; + testToolDepends = [ hspec-discover ]; + description = "Type safe access to multiple database schemata"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; } ) { }; - "peyotls-codec" = callPackage ( + "persistent-vector" = callPackage ( { mkDerivation, - asn1-encoding, - asn1-types, base, - bytable, - bytestring, - crypto-pubkey, - crypto-pubkey-types, - monads-tf, - word24, - x509, - x509-store, + containers, + criterion, + deepseq, + QuickCheck, + test-framework, + test-framework-quickcheck2, + transformers, }: mkDerivation { - pname = "peyotls-codec"; - version = "0.3.1.0"; - sha256 = "1621m2b3hg7lkk34f5am01sl63bndp1awzbvyml30r6n08df1qps"; + pname = "persistent-vector"; + version = "0.2.0"; + sha256 = "07fxfmkgjszssagj4miw1sx9vi782hwsf6gay7z6mb96mygbld5y"; libraryHaskellDepends = [ - asn1-encoding - asn1-types base - bytable - bytestring - crypto-pubkey - crypto-pubkey-types - monads-tf - word24 - x509 - x509-store + deepseq + transformers + ]; + testHaskellDepends = [ + base + QuickCheck + test-framework + test-framework-quickcheck2 + ]; + benchmarkHaskellDepends = [ + base + containers + criterion + deepseq ]; - description = "Codec parts of Pretty Easy YOshikuni-made TLS library"; + description = "A persistent sequence based on array mapped tries"; license = lib.licenses.bsd3; hydraPlatforms = lib.platforms.none; + broken = true; } ) { }; - "pez" = callPackage ( + "persistent-zookeeper" = callPackage ( { mkDerivation, + aeson, + attoparsec, base, - failure, - fclabels, - QuickCheck, - test-framework, - test-framework-quickcheck2, - thrist, + base64-bytestring, + binary, + bytestring, + conduit, + containers, + hspec, + hzk, + monad-control, + mtl, + path-pieces, + persistent, + persistent-template, + resource-pool, + resourcet, + scientific, + template-haskell, + text, + time, + transformers, + transformers-base, + utf8-string, }: mkDerivation { - pname = "pez"; - version = "0.1.0"; - sha256 = "0w2m8i1h87v9l5lhz8mdllnrx62fk3isqhw3cvnv9rf6rk3zhv74"; + pname = "persistent-zookeeper"; + version = "0.2.0"; + sha256 = "11s99wrxhyzyfg657dqma1v1vvdadskvrjybrya2zm8lp675ri9z"; libraryHaskellDepends = [ + aeson + attoparsec base - failure - fclabels - thrist + base64-bytestring + binary + bytestring + conduit + containers + hzk + monad-control + mtl + path-pieces + persistent + persistent-template + resource-pool + resourcet + scientific + template-haskell + text + time + transformers + transformers-base + utf8-string ]; testHaskellDepends = [ + aeson + attoparsec base - QuickCheck - test-framework - test-framework-quickcheck2 + base64-bytestring + binary + bytestring + conduit + containers + hspec + hzk + monad-control + mtl + path-pieces + persistent + persistent-template + resource-pool + resourcet + scientific + template-haskell + text + time + transformers + transformers-base + utf8-string ]; - description = "A Pretty Extraordinary Zipper library"; + description = "Backend for persistent library using Zookeeper"; license = lib.licenses.bsd3; hydraPlatforms = lib.platforms.none; - broken = true; } ) { }; @@ -514186,50 +297074,6 @@ self: { } ) { }; - "pg-harness" = callPackage ( - { - mkDerivation, - async, - base, - bytestring, - HTTP, - ini, - postgresql-simple, - random, - scotty, - text, - transformers, - }: - mkDerivation { - pname = "pg-harness"; - version = "0.2.1"; - sha256 = "0ax6ch87jqbcy5il17n0kppy8pn44rj6ljksamh61sg438vcdhqf"; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base - bytestring - HTTP - ]; - executableHaskellDepends = [ - async - base - ini - postgresql-simple - random - scotty - text - transformers - ]; - description = "REST service and library for creating/consuming temporary PostgreSQL databases"; - license = lib.licenses.agpl3Only; - hydraPlatforms = lib.platforms.none; - mainProgram = "pg-harness"; - broken = true; - } - ) { }; - "pg-harness-client" = callPackage ( { mkDerivation, @@ -514251,45 +297095,6 @@ self: { } ) { }; - "pg-harness-server" = callPackage ( - { - mkDerivation, - async, - base, - ini, - postgresql-simple, - random, - scotty, - text, - transformers, - warp, - }: - mkDerivation { - pname = "pg-harness-server"; - version = "0.6.2"; - sha256 = "1wkr0vp41mjvq84q4gr29mwhrs1a805cipan0gamijhsjl2m75yc"; - isLibrary = false; - isExecutable = true; - enableSeparateDataOutput = true; - executableHaskellDepends = [ - async - base - ini - postgresql-simple - random - scotty - text - transformers - warp - ]; - description = "REST service for creating temporary PostgreSQL databases"; - license = lib.licenses.agpl3Only; - hydraPlatforms = lib.platforms.none; - mainProgram = "pg-harness"; - broken = true; - } - ) { }; - "pg-query" = callPackage ( { mkDerivation, @@ -514348,125 +297153,6 @@ self: { } ) { pg_query = null; }; - "pg-recorder" = callPackage ( - { - mkDerivation, - base, - bytestring, - contravariant, - either, - hasql, - hasql-pool, - hspec, - optparse-applicative, - optparse-text, - postgresql-libpq, - protolude, - resource-pool, - stringsearch, - text, - }: - mkDerivation { - pname = "pg-recorder"; - version = "0.2.0.0"; - sha256 = "1584c355alhwar346ag7pd5q0vrpl40fiqj66fbildamiqchjmvd"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - bytestring - contravariant - either - hasql - hasql-pool - optparse-applicative - optparse-text - postgresql-libpq - protolude - resource-pool - stringsearch - text - ]; - executableHaskellDepends = [ - base - protolude - ]; - testHaskellDepends = [ - base - hasql - hasql-pool - hspec - postgresql-libpq - protolude - resource-pool - ]; - description = "Initial project template from stack"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "pg-recorder"; - broken = true; - } - ) { }; - - "pg-store" = callPackage ( - { - mkDerivation, - aeson, - attoparsec, - base, - blaze-builder, - bytestring, - hashable, - haskell-src-meta, - mtl, - postgresql-libpq, - QuickCheck, - scientific, - tagged, - template-haskell, - test-framework, - test-framework-quickcheck2, - text, - time, - }: - mkDerivation { - pname = "pg-store"; - version = "0.5.0"; - sha256 = "0f81jqs5k6gb2rnpqhawc5g2z3dziksjxrncjc844xlq3ybmr5an"; - libraryHaskellDepends = [ - aeson - attoparsec - base - blaze-builder - bytestring - hashable - haskell-src-meta - mtl - postgresql-libpq - scientific - tagged - template-haskell - text - time - ]; - testHaskellDepends = [ - base - bytestring - mtl - postgresql-libpq - QuickCheck - scientific - test-framework - test-framework-quickcheck2 - text - ]; - description = "Simple storage interface to PostgreSQL"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "pg-transact" = callPackage ( { mkDerivation, @@ -514649,168 +297335,6 @@ self: { } ) { }; - "pgp-wordlist" = callPackage ( - { - mkDerivation, - base, - bytestring, - containers, - deepseq, - doctest, - HUnit, - tasty, - tasty-hunit, - tasty-quickcheck, - text, - vector, - }: - mkDerivation { - pname = "pgp-wordlist"; - version = "0.1.0.3"; - sha256 = "15g6qh0fb7kjj3l0w8cama7cxgnhnhybw760md9yy7cqfq15cfzg"; - libraryHaskellDepends = [ - base - bytestring - containers - text - vector - ]; - testHaskellDepends = [ - base - bytestring - deepseq - doctest - HUnit - tasty - tasty-hunit - tasty-quickcheck - text - ]; - description = "Translate between binary data and a human-readable collection of words"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "pgsql-simple" = callPackage ( - { - mkDerivation, - attoparsec, - base, - base16-bytestring, - binary, - blaze-builder, - blaze-textual, - bytestring, - containers, - MonadCatchIO-transformers, - mtl, - network, - old-locale, - pcre-light, - text, - time, - utf8-string, - }: - mkDerivation { - pname = "pgsql-simple"; - version = "0.1.2"; - sha256 = "1z39g6bp748ya54in48vcg8z20c3skza82cv203rqy192nj01km5"; - libraryHaskellDepends = [ - attoparsec - base - base16-bytestring - binary - blaze-builder - blaze-textual - bytestring - containers - MonadCatchIO-transformers - mtl - network - old-locale - pcre-light - text - time - utf8-string - ]; - description = "A mid-level PostgreSQL client library"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "pgstream" = callPackage ( - { - mkDerivation, - async, - attoparsec, - base, - blaze-builder, - bytestring, - conduit, - conduit-extra, - deepseq, - mtl, - parallel, - postgresql-binary, - postgresql-libpq, - resource-pool, - resourcet, - scientific, - stm, - stm-chans, - stm-conduit, - stringsearch, - template-haskell, - text, - time, - transformers, - uuid, - vector, - }: - mkDerivation { - pname = "pgstream"; - version = "0.1.0.3"; - sha256 = "0zbasvi8392pa7ibd0q5072f1i7h0114v46rwhdfczsk1qzlnscg"; - revision = "1"; - editedCabalFile = "09h463bxxfzq8b8gzg7y37h6sdrxdmhdzn3c7p5mhbi7ciqaw23b"; - libraryHaskellDepends = [ - async - attoparsec - base - blaze-builder - bytestring - conduit - conduit-extra - deepseq - mtl - parallel - postgresql-binary - postgresql-libpq - resource-pool - resourcet - scientific - stm - stm-chans - stm-conduit - stringsearch - template-haskell - text - time - transformers - uuid - vector - ]; - description = "Streaming Postgres bindings"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "pgvector" = callPackage ( { mkDerivation, @@ -514865,35 +297389,6 @@ self: { } ) { }; - "phasechange" = callPackage ( - { - mkDerivation, - array, - base, - ghc-prim, - monad-st, - primitive, - vector, - }: - mkDerivation { - pname = "phasechange"; - version = "0.1"; - sha256 = "0i54myn9abrpzrs58llqgii9fhd9ns9hipnaj00dnqx2mfbg7pan"; - libraryHaskellDepends = [ - array - base - ghc-prim - monad-st - primitive - vector - ]; - description = "Freezing, thawing, and copy elision"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "phaser" = callPackage ( { mkDerivation, @@ -514927,41 +297422,6 @@ self: { } ) { }; - "phash" = callPackage ( - { - mkDerivation, - base, - doctest, - HUnit, - pHash, - smallcheck, - tasty, - tasty-hunit, - tasty-smallcheck, - }: - mkDerivation { - pname = "phash"; - version = "0.0.6"; - sha256 = "1fr1n9m2w0ayaw8y7x4fvmid23hmzh7d1pn6xxfiigrzvfmf0xgm"; - libraryHaskellDepends = [ base ]; - librarySystemDepends = [ pHash ]; - testHaskellDepends = [ - base - doctest - HUnit - smallcheck - tasty - tasty-hunit - tasty-smallcheck - ]; - testSystemDepends = [ pHash ]; - description = "Haskell bindings to pHash, the open source perceptual hash library"; - license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { pHash = null; }; - "phatsort" = callPackage ( { mkDerivation, @@ -515403,253 +297863,6 @@ self: { } ) { }; - "phoityne" = callPackage ( - { - mkDerivation, - base, - bytestring, - Cabal, - cmdargs, - conduit, - conduit-extra, - ConfigFile, - containers, - directory, - filepath, - gtk3, - hslogger, - hspec, - HStringTemplate, - MissingH, - mtl, - parsec, - process, - resourcet, - safe, - text, - transformers, - }: - mkDerivation { - pname = "phoityne"; - version = "0.0.5.0"; - sha256 = "0s2m9y7zb0219dz547z5d4plgrnaqvwzsbvm5cw7mv8dq043zdf3"; - isLibrary = false; - isExecutable = true; - enableSeparateDataOutput = true; - executableHaskellDepends = [ - base - bytestring - Cabal - cmdargs - conduit - conduit-extra - ConfigFile - containers - directory - filepath - gtk3 - hslogger - HStringTemplate - MissingH - mtl - parsec - process - resourcet - safe - text - transformers - ]; - testHaskellDepends = [ - base - hspec - ]; - description = "Deprecated - ghci debug viewer with simple editor"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "phoityne"; - broken = true; - } - ) { }; - - "phoityne-vscode" = callPackage ( - { - mkDerivation, - aeson, - base, - bytestring, - Cabal, - cmdargs, - conduit, - conduit-extra, - containers, - data-default, - directory, - filepath, - fsnotify, - hslogger, - lens, - MissingH, - mtl, - parsec, - process, - resourcet, - safe, - safe-exceptions, - split, - text, - transformers, - }: - mkDerivation { - pname = "phoityne-vscode"; - version = "0.0.28.0"; - sha256 = "106y0j3a3xnz76pdv1vdag1wqn21ybypxzygs66jm1qv6vlragcn"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - aeson - base - bytestring - Cabal - cmdargs - conduit - conduit-extra - containers - data-default - directory - filepath - fsnotify - hslogger - lens - MissingH - mtl - parsec - process - resourcet - safe - safe-exceptions - split - text - transformers - ]; - description = "Haskell Debug Adapter for Visual Studio Code"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "phoityne-vscode"; - broken = true; - } - ) { }; - - "phone-metadata" = callPackage ( - { - mkDerivation, - base, - containers, - hspec, - hxt, - regex-pcre, - text, - }: - mkDerivation { - pname = "phone-metadata"; - version = "0.0.1.5"; - sha256 = "0zn98kf23rn9ay9n4gd2v2jpafppz6r2kxk5m9na6xm437gx5xmb"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base - containers - hxt - regex-pcre - text - ]; - testHaskellDepends = [ - base - hspec - ]; - description = "Phonenumber Metadata - NOTE: this is now deprecated!"; - license = "unknown"; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "phone-numbers" = - callPackage - ( - { - mkDerivation, - base, - bytestring, - c2hs, - phonenumber, - protobuf, - }: - mkDerivation { - pname = "phone-numbers"; - version = "0.2.0"; - sha256 = "130nl3qxhcldxy44pxznh02r3fqqnv9jb8w8si7vrn6cd4v5rpfi"; - libraryHaskellDepends = [ - base - bytestring - ]; - librarySystemDepends = [ - phonenumber - protobuf - ]; - libraryToolDepends = [ c2hs ]; - testHaskellDepends = [ - base - bytestring - ]; - description = "Haskell bindings to the libphonenumber library"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) - { - phonenumber = null; - inherit (pkgs) protobuf; - }; - - "phone-push" = callPackage ( - { - mkDerivation, - base, - base16-bytestring, - binary, - bytestring, - conduit, - convertible, - HsOpenSSL, - http-conduit, - network, - time, - transformers, - }: - mkDerivation { - pname = "phone-push"; - version = "0.1.3"; - sha256 = "0ndaddj3ssrdclzigdj0q04pwpdkbmhfc3rz8j7q9f4l7iv6yshi"; - libraryHaskellDepends = [ - base - base16-bytestring - binary - bytestring - conduit - convertible - HsOpenSSL - http-conduit - network - time - transformers - ]; - description = "Push notifications for Android and iOS"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "phonetic-code" = callPackage ( { mkDerivation, @@ -515830,7 +298043,6 @@ self: { ]; description = "A generalization of the uniqueness-periods-vector-examples functionality"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; } ) { }; @@ -515879,7 +298091,6 @@ self: { ]; description = "A generalization of the uniqueness-periods-vector-general functionality"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; } ) { }; @@ -516364,7 +298575,6 @@ self: { ]; description = "Simplified and somewhat optimized version of the phonetic-languages-examples"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; } ) { }; @@ -516585,36 +298795,6 @@ self: { } ) { }; - "phooey" = callPackage ( - { - mkDerivation, - array, - base, - mtl, - reactive, - TypeCompose, - wx, - wxcore, - }: - mkDerivation { - pname = "phooey"; - version = "2.0.0.1"; - sha256 = "0aa0s7qmy78s4q1mjcnw0qiqlbmdmkmk2nbn6hkmw5fn29iq0iwj"; - libraryHaskellDepends = [ - array - base - mtl - reactive - TypeCompose - wx - wxcore - ]; - description = "Functional user interfaces"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "photoname" = callPackage ( { mkDerivation, @@ -516694,131 +298874,6 @@ self: { } ) { }; - "phraskell" = callPackage ( - { - mkDerivation, - base, - mtl, - SDL, - transformers, - }: - mkDerivation { - pname = "phraskell"; - version = "0.1.4"; - sha256 = "1bczvnmbgc7qcpmlhrnmql4yn2grry2ys7hcg06sqzwr5qhl1k9k"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - mtl - SDL - transformers - ]; - description = "A fractal viewer"; - license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - mainProgram = "phraskell"; - broken = true; - } - ) { }; - - "phybin" = callPackage ( - { - mkDerivation, - async, - base, - bytestring, - containers, - directory, - fgl, - filepath, - graphviz, - hierarchical-clustering, - HUnit, - parsec, - prettyclass, - process, - split, - test-framework, - test-framework-hunit, - test-framework-th, - text, - time, - vector, - }: - mkDerivation { - pname = "phybin"; - version = "0.3"; - sha256 = "1v6zcyfjnkgwc9kffi7lf15qb3j4wq2kclx26i1k9ssf6h7cs5g9"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - async - base - bytestring - containers - directory - fgl - filepath - graphviz - hierarchical-clustering - HUnit - parsec - prettyclass - process - split - text - time - vector - ]; - executableHaskellDepends = [ - async - base - bytestring - containers - directory - fgl - filepath - graphviz - hierarchical-clustering - HUnit - parsec - prettyclass - process - split - text - time - vector - ]; - testHaskellDepends = [ - async - base - bytestring - containers - directory - fgl - filepath - graphviz - hierarchical-clustering - HUnit - parsec - prettyclass - process - split - test-framework - test-framework-hunit - test-framework-th - text - time - vector - ]; - description = "Utility for clustering phylogenetic trees in Newick format based on Robinson-Foulds distance"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "phybin"; - } - ) { }; - "physics" = callPackage ( { mkDerivation, base }: mkDerivation { @@ -516831,585 +298886,6 @@ self: { } ) { }; - "pi-calculus" = callPackage ( - { - mkDerivation, - AES, - base, - binary, - byteable, - bytestring, - containers, - cryptohash, - HTTP, - io-streams, - mtl, - network, - parsec, - RSA, - transformers, - }: - mkDerivation { - pname = "pi-calculus"; - version = "0.0.5"; - sha256 = "1w5krkss2qzzcqqmgqs369p5xnqyrm76vvsxd7mlhcdqaaj06n2q"; - isLibrary = false; - isExecutable = true; - enableSeparateDataOutput = true; - executableHaskellDepends = [ - AES - base - binary - byteable - bytestring - containers - cryptohash - HTTP - io-streams - mtl - network - parsec - RSA - transformers - ]; - description = "Applied pi-calculus interpreter"; - license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - mainProgram = "phi"; - broken = true; - } - ) { }; - - "pi-forall" = callPackage ( - { - mkDerivation, - array, - base, - containers, - directory, - filepath, - HUnit, - mtl, - parsec, - pretty, - QuickCheck, - transformers, - unbound-generics, - }: - mkDerivation { - pname = "pi-forall"; - version = "0.1.1"; - sha256 = "0h55fqzc0p6x57cvpzsr8qyc5mld775l5bkg2b9x0jl5d783ddy3"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - array - base - containers - directory - filepath - HUnit - mtl - parsec - pretty - QuickCheck - transformers - unbound-generics - ]; - executableHaskellDepends = [ - array - base - containers - directory - filepath - HUnit - mtl - parsec - pretty - QuickCheck - transformers - unbound-generics - ]; - description = "Demo implementation of typechecker for dependently-typed language"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "pi-forall"; - broken = true; - } - ) { }; - - "pi-hoole" = callPackage ( - { - mkDerivation, - aeson, - base, - base58-bytestring, - blaze-html, - bytestring, - containers, - directory, - filepath, - http-types, - megaparsec, - optparse-generic, - process, - regex-pcre, - shakespeare, - text, - unix, - wai, - warp, - yaml, - }: - mkDerivation { - pname = "pi-hoole"; - version = "0.2.0.0"; - sha256 = "0qjs8b7ljybvklx9s5xmb9kg2mxlaqfwjf7d52c31y3f21d5q8q0"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson - base - containers - directory - filepath - megaparsec - process - text - ]; - executableHaskellDepends = [ - aeson - base - base58-bytestring - blaze-html - bytestring - containers - directory - filepath - http-types - megaparsec - optparse-generic - regex-pcre - shakespeare - text - unix - wai - warp - yaml - ]; - testHaskellDepends = [ base ]; - description = "Lightweight access control solution for the pijul vcs"; - license = lib.licenses.agpl3Only; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "pi-lcd" = callPackage ( - { - mkDerivation, - base, - bytestring, - clock, - deepseq, - text, - unix, - unordered-containers, - }: - mkDerivation { - pname = "pi-lcd"; - version = "0.1.1.0"; - sha256 = "0120zkza698ww8ng6svp54qywkrvn35pylvcgplfldw4ajln00vn"; - revision = "1"; - editedCabalFile = "0gkpx56dq7lqhlw9iq8zv1kqhpwpd7hkpvld2k86v0zyal526jms"; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base - bytestring - clock - deepseq - text - unix - unordered-containers - ]; - executableHaskellDepends = [ - base - text - ]; - description = "Control an Adafruit character LCD and keypad kit on a Raspberry Pi"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "pia-forward" = callPackage ( - { - mkDerivation, - aeson, - base, - bytestring, - data-default, - directory, - filepath, - http-client, - http-client-tls, - network-info, - process, - random, - text, - text-format, - time, - xdg-basedir, - }: - mkDerivation { - pname = "pia-forward"; - version = "0.1.0.2"; - sha256 = "1wmkbx0hbg7n4aa4rsf80cyk2v1592jgs5bb00vk45jv246l32b1"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - aeson - base - bytestring - data-default - directory - filepath - http-client - http-client-tls - network-info - process - random - text - text-format - time - xdg-basedir - ]; - description = "Set up port forwarding with the Private Internet Access VPN service"; - license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - mainProgram = "pia-forward"; - broken = true; - } - ) { }; - - "pianola" = callPackage ( - { - mkDerivation, - attoparsec, - attoparsec-iteratee, - base, - bytestring, - comonad, - comonad-transformers, - containers, - either, - errors, - filepath, - free, - iteratee, - logict, - msgpack, - mtl, - network, - pipes, - streams, - text, - transformers, - }: - mkDerivation { - pname = "pianola"; - version = "0.1.1"; - sha256 = "02y630yskx139l5yii45rf47w2a2v3x0pad59ac9qzjalv7s68aq"; - libraryHaskellDepends = [ - attoparsec - attoparsec-iteratee - base - bytestring - comonad - comonad-transformers - containers - either - errors - filepath - free - iteratee - logict - msgpack - mtl - network - pipes - streams - text - transformers - ]; - testHaskellDepends = [ - base - containers - errors - filepath - network - streams - text - transformers - ]; - description = "Remotely controlling Java Swing applications"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "picedit" = callPackage ( - { - mkDerivation, - base, - cli, - hmatrix, - JuicyPixels, - vector, - }: - mkDerivation { - pname = "picedit"; - version = "0.2.3.0"; - sha256 = "0bf1jq12v67ggx3aafv0aqj7zd9yv9fs0j1r56ahkayll665slp8"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - hmatrix - JuicyPixels - vector - ]; - executableHaskellDepends = [ - base - cli - hmatrix - ]; - description = "simple image manipulation functions"; - license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - mainProgram = "picedit"; - broken = true; - } - ) { }; - - "pickle" = callPackage ( - { - mkDerivation, - base, - containers, - network, - stm, - text, - }: - mkDerivation { - pname = "pickle"; - version = "1.0.1.0"; - sha256 = "13c1n06v6mh9lyplfg0y1gdijk2mhxg4ln59v7i2z4j1y65y8cz9"; - libraryHaskellDepends = [ - base - containers - network - stm - text - ]; - description = "Instant StatsD in Haskell"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "picologic" = callPackage ( - { - mkDerivation, - base, - containers, - mtl, - parsec, - picosat, - pretty, - QuickCheck, - }: - mkDerivation { - pname = "picologic"; - version = "0.3.0"; - sha256 = "0jsyl85p4fkpsb7hbl6b9ha4v3chdnj7zlrlsj4gkd0qs3w6f3qk"; - revision = "1"; - editedCabalFile = "16xmzjbfcm1qj92kyfb2fyiz9dx18zwwciwazkp93hr06yhgi7p8"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - containers - mtl - parsec - picosat - pretty - ]; - testHaskellDepends = [ - base - containers - mtl - picosat - pretty - QuickCheck - ]; - description = "Utilities for symbolic predicate logic expressions"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "picoparsec" = callPackage ( - { - mkDerivation, - array, - attoparsec, - base, - bytestring, - case-insensitive, - containers, - criterion, - deepseq, - directory, - filepath, - ghc-prim, - hashable, - http-types, - monoid-subclasses, - parsec, - QuickCheck, - quickcheck-instances, - quickcheck-unicode, - scientific, - tasty, - tasty-quickcheck, - text, - unordered-containers, - vector, - }: - mkDerivation { - pname = "picoparsec"; - version = "0.1.2.3"; - sha256 = "0l4i5s0yh4jcagcywcx2bwpvky6xy4hisbvwbghjvxpsirkyviwf"; - revision = "1"; - editedCabalFile = "0hr042sd52mxkg1s0j4abl0nfqcciz12868r074mq81kj3nbf3g0"; - libraryHaskellDepends = [ - array - base - bytestring - containers - deepseq - monoid-subclasses - scientific - text - ]; - testHaskellDepends = [ - array - base - bytestring - deepseq - monoid-subclasses - QuickCheck - quickcheck-instances - quickcheck-unicode - scientific - tasty - tasty-quickcheck - text - vector - ]; - benchmarkHaskellDepends = [ - array - attoparsec - base - bytestring - case-insensitive - criterion - deepseq - directory - filepath - ghc-prim - hashable - http-types - monoid-subclasses - parsec - scientific - text - unordered-containers - vector - ]; - description = "Fast combinator parsing for bytestrings and text"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "picosat" = callPackage ( - { - mkDerivation, - base, - containers, - random, - rdtsc, - transformers, - }: - mkDerivation { - pname = "picosat"; - version = "0.1.6"; - sha256 = "12yckbmryk0darmsdv8dfm9hzfz4xhkx6xvf3wn97agjki7gazmg"; - libraryHaskellDepends = [ - base - containers - transformers - ]; - testHaskellDepends = [ - base - containers - random - rdtsc - transformers - ]; - description = "Bindings to the PicoSAT solver"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "pictikz" = callPackage ( - { - mkDerivation, - base, - matrix, - transformers, - xml, - }: - mkDerivation { - pname = "pictikz"; - version = "1.1.0.0"; - sha256 = "0zah0k0n03mj3ilh8fb15i6bj93k48dsf8j2vyxfviahwl553src"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - matrix - transformers - xml - ]; - description = "Converts a svg image to tikz code"; - license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - mainProgram = "pictikz"; - broken = true; - } - ) { }; - "pid" = callPackage ( { mkDerivation, @@ -517461,193 +298937,6 @@ self: { } ) { }; - "pidfile" = callPackage ( - { - mkDerivation, - base, - unix, - }: - mkDerivation { - pname = "pidfile"; - version = "0.1.0.4"; - sha256 = "0z0k923gb0b01r35x1qp4i1743mcn84cj3m12ss7jbxql768jigf"; - libraryHaskellDepends = [ - base - unix - ]; - description = "Run an IO action protected by a pidfile"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "pier" = callPackage ( - { - mkDerivation, - aeson, - base, - binary, - binary-orphans, - Cabal, - containers, - directory, - hashable, - optparse-applicative, - pier-core, - shake, - split, - text, - transformers, - unordered-containers, - yaml, - }: - mkDerivation { - pname = "pier"; - version = "0.3.0.0"; - sha256 = "1rv5k8apxshh8kbbbjzcw23bfx819634ryz83jp2iqhixlgcqz69"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - aeson - base - binary - binary-orphans - Cabal - containers - directory - hashable - optparse-applicative - pier-core - shake - split - text - transformers - unordered-containers - yaml - ]; - description = "Yet another Haskell build system"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "pier"; - } - ) { }; - - "pier-core" = callPackage ( - { - mkDerivation, - base, - base64-bytestring, - binary, - bytestring, - Cabal, - containers, - cryptohash-sha256, - directory, - hashable, - http-client, - http-client-tls, - http-types, - process, - shake, - temporary, - text, - unix, - }: - mkDerivation { - pname = "pier-core"; - version = "0.3.0.0"; - sha256 = "0sxdswnkxhdcfcg4xq11lvgsip05nr4qd361qdrw2nxafq9q3dnj"; - libraryHaskellDepends = [ - base - base64-bytestring - binary - bytestring - Cabal - containers - cryptohash-sha256 - directory - hashable - http-client - http-client-tls - http-types - process - shake - temporary - text - unix - ]; - description = "A library for writing forwards-declared build systems in haskell"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "piet" = callPackage ( - { - mkDerivation, - array, - base, - containers, - Imlib, - mtl, - }: - mkDerivation { - pname = "piet"; - version = "0.1"; - sha256 = "0ab0msb12cj38qimxllwk0p0g9aggfxhgvdp2b5znxpixlr39cz9"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - array - base - containers - Imlib - mtl - ]; - description = "A Piet interpreter"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "piet"; - broken = true; - } - ) { }; - - "pig" = callPackage ( - { - mkDerivation, - base, - containers, - random, - random-shuffle, - }: - mkDerivation { - pname = "pig"; - version = "0.0.1"; - sha256 = "0fh8lv85h2w6gs7zv1bqb4gc4id84c3vp3ivdrd9cvnxksr50ffr"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - containers - random - random-shuffle - ]; - executableHaskellDepends = [ - base - containers - random - random-shuffle - ]; - description = "dice game"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "pig"; - broken = true; - } - ) { }; - "piki" = callPackage ( { mkDerivation, @@ -517909,95 +299198,6 @@ self: { } ) { }; - "pinchot" = callPackage ( - { - mkDerivation, - base, - containers, - Earley, - lens, - pretty-show, - semigroups, - template-haskell, - transformers, - }: - mkDerivation { - pname = "pinchot"; - version = "0.24.0.0"; - sha256 = "1rcpz7prdnw3rq8aij285axqryc2hk064jxhdx6q733irgg9qxmr"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - containers - Earley - lens - pretty-show - semigroups - template-haskell - transformers - ]; - description = "Write grammars, not parsers"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "pine" = callPackage ( - { - mkDerivation, - base, - containers, - linear, - mtl, - sdl2, - sdl2-image, - stm, - text, - }: - mkDerivation { - pname = "pine"; - version = "0.1.0.3"; - sha256 = "08m5d4wvqbkw9db0v79yrhqv9pcncl6x6zpix1861lqbw613i4iw"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - containers - linear - mtl - sdl2 - sdl2-image - stm - text - ]; - executableHaskellDepends = [ - base - containers - linear - mtl - sdl2 - sdl2-image - stm - text - ]; - testHaskellDepends = [ - base - containers - linear - mtl - sdl2 - sdl2-image - stm - text - ]; - description = "Functional 2D Game Framework"; - license = lib.licenses.zlib; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "pinecone" = callPackage ( { mkDerivation, @@ -518212,143 +299412,6 @@ self: { } ) { }; - "pinpon" = callPackage ( - { - mkDerivation, - aeson, - aeson-pretty, - amazonka, - amazonka-core, - amazonka-sns, - base, - bytestring, - containers, - doctest, - exceptions, - hpio, - http-client, - http-client-tls, - http-types, - lens, - lucid, - mtl, - network, - optparse-applicative, - optparse-text, - protolude, - resourcet, - servant, - servant-client, - servant-docs, - servant-lucid, - servant-server, - servant-swagger, - servant-swagger-ui, - swagger2, - text, - time, - transformers, - transformers-base, - wai, - warp, - }: - mkDerivation { - pname = "pinpon"; - version = "0.2.0.2"; - sha256 = "1fwdzmzm1s0bpxcw79hifpsc0ksaz2rdn76hprk7bqiw81c4amxs"; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - aeson - aeson-pretty - amazonka - amazonka-core - amazonka-sns - base - bytestring - containers - exceptions - http-client - http-types - lens - lucid - mtl - protolude - resourcet - servant - servant-client - servant-docs - servant-lucid - servant-server - servant-swagger - servant-swagger-ui - swagger2 - text - time - transformers - transformers-base - wai - warp - ]; - executableHaskellDepends = [ - amazonka - amazonka-sns - base - bytestring - containers - exceptions - hpio - http-client - http-client-tls - http-types - lens - mtl - network - optparse-applicative - optparse-text - protolude - servant-client - text - time - transformers - warp - ]; - testHaskellDepends = [ - base - doctest - protolude - ]; - description = "A gateway for various cloud notification services"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "pipe-enumerator" = callPackage ( - { - mkDerivation, - base, - enumerator, - pipes, - transformers, - }: - mkDerivation { - pname = "pipe-enumerator"; - version = "0.3.0.2"; - sha256 = "0h6k00k85pn0jajk3rvvfnrfwlkllprhv00x0qd9zg9gg7lf7zkc"; - libraryHaskellDepends = [ - base - enumerator - pipes - transformers - ]; - description = "A bidirectional bridge between pipes and iteratees"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "pipeclip" = callPackage ( { mkDerivation, @@ -518378,52 +299441,6 @@ self: { } ) { }; - "piped" = callPackage ( - { - mkDerivation, - base, - conduit, - gauge, - microlens-platform, - mtl, - quickcheck-instances, - tasty, - tasty-discover, - tasty-golden, - tasty-hunit, - tasty-quickcheck, - }: - mkDerivation { - pname = "piped"; - version = "0.1.0.0"; - sha256 = "0f7j4mzdcmw7lnmq73hr6wfi64jjg350bmf0w1pf1rgma2wb9cl0"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - mtl - ]; - testHaskellDepends = [ - base - conduit - gauge - microlens-platform - mtl - quickcheck-instances - tasty - tasty-discover - tasty-golden - tasty-hunit - tasty-quickcheck - ]; - testToolDepends = [ tasty-discover ]; - description = "Conduit with a smaller core"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "pipeline" = callPackage ( { mkDerivation, @@ -518528,51 +299545,6 @@ self: { } ) { }; - "pipes-async" = callPackage ( - { - mkDerivation, - base, - hspec, - lifted-async, - lifted-base, - monad-control, - pipes, - pipes-safe, - stm, - transformers-base, - }: - mkDerivation { - pname = "pipes-async"; - version = "0.1.3"; - sha256 = "12gsbfsknqpmf96nd3lh702bb1564wggr7niyqyy55k91wk2v25m"; - libraryHaskellDepends = [ - base - lifted-async - lifted-base - monad-control - pipes - pipes-safe - stm - transformers-base - ]; - testHaskellDepends = [ - base - hspec - lifted-async - lifted-base - monad-control - pipes - pipes-safe - stm - transformers-base - ]; - description = "A higher-level interface to using concurrency with pipes"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "pipes-attoparsec" = callPackage ( { mkDerivation, @@ -518618,71 +299590,6 @@ self: { } ) { }; - "pipes-attoparsec-streaming" = callPackage ( - { - mkDerivation, - attoparsec, - base, - bytestring, - pipes-core, - transformers, - }: - mkDerivation { - pname = "pipes-attoparsec-streaming"; - version = "0.1.0.0"; - sha256 = "0alr94jjh583cdi19zrlacrc71dspy12lhq8h24hqiar6l2lr1d7"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - attoparsec - base - bytestring - pipes-core - transformers - ]; - executableHaskellDepends = [ - attoparsec - base - bytestring - pipes-core - transformers - ]; - description = "Streaming parsing in the pipes-core framework with Attoparsec"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "MimeParser"; - } - ) { }; - - "pipes-bgzf" = callPackage ( - { - mkDerivation, - base, - bytestring, - mtl, - parallel, - pipes, - streaming-commons, - }: - mkDerivation { - pname = "pipes-bgzf"; - version = "0.2.0.1"; - sha256 = "04y0wzy8982g64xyxq6rl9xc63n0c8xl8mhyf0x4ivqxnn49iv23"; - libraryHaskellDepends = [ - base - bytestring - mtl - parallel - pipes - streaming-commons - ]; - description = "Blocked GZip"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "pipes-binary" = callPackage ( { mkDerivation, @@ -518731,78 +299638,6 @@ self: { } ) { }; - "pipes-break" = callPackage ( - { - mkDerivation, - base, - bytestring, - mtl, - pipes, - pipes-group, - pipes-parse, - QuickCheck, - text, - }: - mkDerivation { - pname = "pipes-break"; - version = "0.2.0.6"; - sha256 = "1clqy2cm8mqc8ybc8m1la2768n3q9jqdh818gw99ypj70w3rqnn7"; - libraryHaskellDepends = [ - base - bytestring - pipes - pipes-group - pipes-parse - text - ]; - testHaskellDepends = [ - base - bytestring - mtl - pipes - QuickCheck - ]; - description = "Pipes to group by any delimiter (such as lines with carriage returns)"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "pipes-brotli" = callPackage ( - { - mkDerivation, - base, - brotli, - bytestring, - pipes, - pipes-bytestring, - QuickCheck, - }: - mkDerivation { - pname = "pipes-brotli"; - version = "0.0.0.0"; - sha256 = "0qld1j404sddw850pdm5y65n8rld5vqzpr38kq9xcnlxmfs29zhp"; - libraryHaskellDepends = [ - base - brotli - bytestring - pipes - ]; - testHaskellDepends = [ - base - bytestring - pipes - pipes-bytestring - QuickCheck - ]; - description = "Brotli (RFC7932) compressors and decompressors for the Pipes package"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "pipes-bytestring" = callPackage ( { mkDerivation, @@ -518833,62 +299668,7 @@ self: { license = lib.licenses.bsd3; maintainers = [ lib.maintainers.Gabriella439 ]; } - ) { }; - - "pipes-bzip" = callPackage ( - { - mkDerivation, - base, - bindings-DSL, - bytestring, - bzip2, - bzlib, - data-default, - directory, - hspec, - MonadRandom, - mtl, - pipes, - pipes-bytestring, - pipes-safe, - QuickCheck, - random, - }: - mkDerivation { - pname = "pipes-bzip"; - version = "0.2.0.4"; - sha256 = "12mhs3ylqqkp4dvir67lgwg3izma88j5xpi7fc7jlvlka24vbnkp"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base - bindings-DSL - bytestring - data-default - mtl - pipes - pipes-safe - ]; - librarySystemDepends = [ bzip2 ]; - testHaskellDepends = [ - base - bytestring - bzlib - directory - hspec - MonadRandom - pipes - pipes-bytestring - pipes-safe - QuickCheck - random - ]; - benchmarkHaskellDepends = [ base ]; - description = "Streaming compression/decompression via pipes"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { inherit (pkgs) bzip2; }; + ) { }; "pipes-cacophony" = callPackage ( { @@ -518922,41 +299702,6 @@ self: { } ) { }; - "pipes-category" = callPackage ( - { - mkDerivation, - base, - hspec, - lens, - mtl, - pipes, - pipes-extras, - transformers, - }: - mkDerivation { - pname = "pipes-category"; - version = "0.3.0.0"; - sha256 = "008733qffml0cqgalacrl1r8sdz08rbsz4n2pd5j9xrbxn4xh4a7"; - libraryHaskellDepends = [ - base - lens - mtl - pipes - pipes-extras - ]; - testHaskellDepends = [ - base - hspec - pipes - transformers - ]; - description = "Allows instances for Category, Arrow and ArrowChoice for Pipes"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "pipes-cborg" = callPackage ( { mkDerivation, @@ -519053,69 +299798,6 @@ self: { } ) { }; - "pipes-cereal" = callPackage ( - { - mkDerivation, - base, - bytestring, - cereal, - mtl, - pipes, - pipes-bytestring, - pipes-parse, - }: - mkDerivation { - pname = "pipes-cereal"; - version = "0.1.0"; - sha256 = "1dj378b9yjsk5llxjxlhij37j9dc6ylpnxv9q5qri1mcb91r0kc7"; - libraryHaskellDepends = [ - base - bytestring - cereal - mtl - pipes - pipes-bytestring - pipes-parse - ]; - description = "Encode and decode binary streams using the pipes and cereal libraries"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "pipes-cereal-plus" = callPackage ( - { - mkDerivation, - base, - bytestring, - cereal-plus, - errors, - mtl, - pipes, - pipes-bytestring, - text, - }: - mkDerivation { - pname = "pipes-cereal-plus"; - version = "0.4.0"; - sha256 = "1x1qfl8s0lhvcz2hqh5dl5ilyixar995bqqzas721ni2skflbhqr"; - libraryHaskellDepends = [ - base - bytestring - cereal-plus - errors - mtl - pipes - pipes-bytestring - text - ]; - description = "A streaming serialization library on top of \"pipes\" and \"cereal-plus\""; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "pipes-cliff" = callPackage ( { mkDerivation, @@ -519185,81 +299867,6 @@ self: { } ) { }; - "pipes-conduit" = callPackage ( - { - mkDerivation, - base, - conduit, - mtl, - pipes-core, - }: - mkDerivation { - pname = "pipes-conduit"; - version = "0.0.1"; - sha256 = "1nzylhmi3f2m0xnqgx0m9g0p5pwl6xnidsz8ykzmv8wafrh60dh8"; - libraryHaskellDepends = [ - base - conduit - mtl - pipes-core - ]; - description = "Conduit adapters"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "pipes-core" = callPackage ( - { - mkDerivation, - base, - categories, - lifted-base, - monad-control, - transformers, - void, - }: - mkDerivation { - pname = "pipes-core"; - version = "0.1.0"; - sha256 = "1abzy45bjiy8lijg4a5xkwdh1k37c6m921y2s31x0yqgq79qlgyp"; - libraryHaskellDepends = [ - base - categories - lifted-base - monad-control - transformers - void - ]; - description = "Compositional pipelines"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "pipes-courier" = callPackage ( - { - mkDerivation, - base, - courier, - pipes, - }: - mkDerivation { - pname = "pipes-courier"; - version = "0.1.0.0"; - sha256 = "1v2bm2cmzb6a7bmpv8byrb5x4k5pivp3s8ma6r6dwhldic294jgf"; - libraryHaskellDepends = [ - base - courier - pipes - ]; - description = "Pipes utilities for interfacing with the courier message-passing framework"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "pipes-csv" = callPackage ( { mkDerivation, @@ -519307,90 +299914,6 @@ self: { } ) { }; - "pipes-errors" = callPackage ( - { - mkDerivation, - base, - errors, - pipes, - }: - mkDerivation { - pname = "pipes-errors"; - version = "0.3"; - sha256 = "1vbpchs3v08sc1rfa9fl89wzxg9ak823xjbkl0k37ycwwc36fn76"; - libraryHaskellDepends = [ - base - errors - pipes - ]; - description = "Integration between pipes and errors"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "pipes-extra" = callPackage ( - { - mkDerivation, - base, - bytestring, - conduit, - criterion, - enumerator, - HUnit, - mtl, - pipes-core, - pipes-zlib, - test-framework, - test-framework-hunit, - test-framework-th-prime, - transformers, - zlib, - zlib-conduit, - zlib-enum, - }: - mkDerivation { - pname = "pipes-extra"; - version = "0.2.0"; - sha256 = "0yrbjs9y9s9a1q59138f7m0fsp8vsg0a31sfzgwfrg9pm2sfivfr"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - bytestring - pipes-core - transformers - ]; - testHaskellDepends = [ - base - bytestring - HUnit - mtl - pipes-core - test-framework - test-framework-hunit - test-framework-th-prime - ]; - benchmarkHaskellDepends = [ - base - bytestring - conduit - criterion - enumerator - pipes-core - pipes-zlib - transformers - zlib - zlib-conduit - zlib-enum - ]; - description = "Various basic utilities for Pipes"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "pipes-extras" = callPackage ( { mkDerivation, @@ -519457,93 +299980,6 @@ self: { } ) { }; - "pipes-files" = callPackage ( - { - mkDerivation, - attoparsec, - base, - bytestring, - directory, - doctest, - exceptions, - filepath, - free, - hierarchy, - hspec, - hspec-expectations, - logict, - mmorph, - monad-control, - mtl, - pipes, - pipes-safe, - posix-paths, - process, - regex-posix, - semigroups, - text, - time, - transformers, - transformers-base, - transformers-compat, - unix, - unix-compat, - }: - mkDerivation { - pname = "pipes-files"; - version = "0.1.3"; - sha256 = "12y40lfpzcjmqq7cqs5g999ksn4mk3w0ybw0whhv15bflsykqw97"; - libraryHaskellDepends = [ - attoparsec - base - bytestring - directory - exceptions - filepath - free - hierarchy - logict - mmorph - monad-control - mtl - pipes - pipes-safe - posix-paths - regex-posix - semigroups - text - time - transformers - transformers-base - transformers-compat - unix - unix-compat - ]; - testHaskellDepends = [ - base - bytestring - directory - doctest - filepath - hierarchy - hspec - hspec-expectations - logict - mtl - pipes - pipes-safe - process - semigroups - text - transformers - unix - ]; - description = "Fast traversal of directory trees using pipes"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "pipes-fluid" = callPackage ( { mkDerivation, @@ -519601,6 +300037,7 @@ self: { description = "Reactively combines Producers so that a value is yielded as soon as possible"; license = lib.licenses.bsd3; hydraPlatforms = lib.platforms.none; + broken = true; } ) { }; @@ -519667,34 +300104,6 @@ self: { } ) { }; - "pipes-illumina" = callPackage ( - { - mkDerivation, - base, - bytestring, - directory, - filepath, - pipes, - pipes-bgzf, - }: - mkDerivation { - pname = "pipes-illumina"; - version = "0.1.0.0"; - sha256 = "19s6rkrfvmni914flq37fkbfs6angzl3c40bzg0ddivn4ada7jvn"; - libraryHaskellDepends = [ - base - bytestring - directory - filepath - pipes - pipes-bgzf - ]; - description = "Illumina NGS data processing"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "pipes-interleave" = callPackage ( { mkDerivation, @@ -519720,180 +300129,6 @@ self: { } ) { }; - "pipes-io" = callPackage ( - { - mkDerivation, - base, - hspec, - pipes, - pipes-parse, - }: - mkDerivation { - pname = "pipes-io"; - version = "0.1"; - sha256 = "16fl2vj6g0gdk2kjxfmfbv83nzah7kq4az0xryk2qlb0108llifr"; - revision = "1"; - editedCabalFile = "00l780dri2bgh8528xgwiz2r230mp4w45b4yfmiv8kpz8979953w"; - libraryHaskellDepends = [ - base - pipes - pipes-parse - ]; - testHaskellDepends = [ - base - hspec - pipes - ]; - description = "Stateful IO streams based on pipes"; - license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "pipes-kafka" = callPackage ( - { - mkDerivation, - base, - bytestring, - exceptions, - hw-kafka-client, - monad-logger, - pipes, - pipes-safe, - text, - transformers, - transformers-base, - }: - mkDerivation { - pname = "pipes-kafka"; - version = "0.2.0.0"; - sha256 = "1ca0pdig35waqr499i4m92w34sywc8nc0gdfszqjcmpsjmba93hv"; - libraryHaskellDepends = [ - base - bytestring - exceptions - hw-kafka-client - monad-logger - pipes - pipes-safe - text - transformers - transformers-base - ]; - description = "Kafka in the Pipes ecosystem"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "pipes-key-value-csv" = callPackage ( - { - mkDerivation, - base, - bifunctors, - containers, - contravariant, - data-default-class, - lens, - mtl, - pipes, - pipes-bytestring, - pipes-group, - pipes-parse, - pipes-safe, - pipes-text, - QuickCheck, - reflection, - semigroupoids, - text, - transformers, - vinyl, - vinyl-utils, - }: - mkDerivation { - pname = "pipes-key-value-csv"; - version = "0.4.0.3"; - sha256 = "02wdna1kjjz0pkap3pfvzl336aapjv6ylmg5qwa6hr07d7sfbh3l"; - libraryHaskellDepends = [ - base - bifunctors - containers - data-default-class - lens - mtl - pipes - pipes-bytestring - pipes-group - pipes-parse - pipes-safe - pipes-text - reflection - semigroupoids - text - vinyl - vinyl-utils - ]; - testHaskellDepends = [ - base - contravariant - data-default-class - lens - pipes - pipes-text - QuickCheck - reflection - text - transformers - vinyl - vinyl-utils - ]; - description = "Streaming processing of CSV files preceded by key-value pairs"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "pipes-lines" = callPackage ( - { - mkDerivation, - base, - bytestring, - lens, - mtl, - pipes, - pipes-group, - QuickCheck, - text, - }: - mkDerivation { - pname = "pipes-lines"; - version = "1.0.3.4"; - sha256 = "1bh8fpms2py4kf5c3nk05jnm08jyrad3077dr7a2dbc1l2d6xgs1"; - libraryHaskellDepends = [ - base - bytestring - pipes - pipes-group - text - ]; - testHaskellDepends = [ - base - bytestring - lens - mtl - pipes - pipes-group - QuickCheck - ]; - description = "Pipes for grouping by lines with carriage returns"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "pipes-lzma" = callPackage ( { mkDerivation, @@ -519988,6 +300223,7 @@ self: { description = "Miscellaneous utilities for pipes, required by glazier-tutorial"; license = lib.licenses.bsd3; hydraPlatforms = lib.platforms.none; + broken = true; } ) { }; @@ -520088,31 +300324,6 @@ self: { } ) { }; - "pipes-network-ws" = callPackage ( - { - mkDerivation, - base, - bytestring, - network-simple-ws, - pipes, - }: - mkDerivation { - pname = "pipes-network-ws"; - version = "0.1"; - sha256 = "1jb59wl3xh0jkp4njj7xhybhnanwrx6h0zzj647lgxg6wpf8f704"; - libraryHaskellDepends = [ - base - bytestring - network-simple-ws - pipes - ]; - description = "WebSockets support for pipes"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "pipes-ordered-zip" = callPackage ( { mkDerivation, @@ -520143,87 +300354,6 @@ self: { } ) { }; - "pipes-p2p" = callPackage ( - { - mkDerivation, - async, - base, - binary, - bytestring, - errors, - exceptions, - mtl, - network, - network-simple-sockaddr, - pipes, - pipes-concurrency, - pipes-network, - }: - mkDerivation { - pname = "pipes-p2p"; - version = "0.4"; - sha256 = "1ls89dnz0aibmyy4mky7jl4ibirpfrs12yxmflarghv3j6rn0wnc"; - libraryHaskellDepends = [ - async - base - binary - bytestring - errors - exceptions - mtl - network - network-simple-sockaddr - pipes - pipes-concurrency - pipes-network - ]; - description = "P2P network nodes with pipes"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "pipes-p2p-examples" = callPackage ( - { - mkDerivation, - base, - binary, - bytestring, - containers, - errors, - mtl, - network, - network-simple-sockaddr, - pipes, - pipes-network, - pipes-p2p, - }: - mkDerivation { - pname = "pipes-p2p-examples"; - version = "0.3"; - sha256 = "08fdk005yrmr8mz3qlsfjys3pz9iidk53maylbgdk3nixk8plwwm"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - binary - bytestring - containers - errors - mtl - network - network-simple-sockaddr - pipes - pipes-network - pipes-p2p - ]; - description = "Examples using pipes-p2p"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "address-exchanger"; - } - ) { }; - "pipes-parse" = callPackage ( { mkDerivation, @@ -520287,60 +300417,6 @@ self: { } ) { }; - "pipes-protolude" = callPackage ( - { - mkDerivation, - async, - base, - deepseq, - exceptions, - foldl, - free, - mtl, - pipes, - pipes-concurrency, - pipes-extras, - pipes-group, - pipes-parse, - pipes-safe, - pipes-text, - text-show, - transformers, - }: - mkDerivation { - pname = "pipes-protolude"; - version = "0.1.0.1"; - sha256 = "0wzamdb0pzpk98hgwryq3r2ncs9w4jyn54kybkcgcl1j17xr6gbz"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - async - base - deepseq - exceptions - foldl - free - mtl - pipes - pipes-concurrency - pipes-extras - pipes-group - pipes-parse - pipes-safe - pipes-text - text-show - transformers - ]; - executableHaskellDepends = [ base ]; - testHaskellDepends = [ base ]; - description = "Alternate Prelude for the pipes ecosystem"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "pipes-protolude-exe"; - broken = true; - } - ) { }; - "pipes-pulse-simple" = callPackage ( { mkDerivation, @@ -520391,98 +300467,6 @@ self: { } ) { }; - "pipes-rt" = callPackage ( - { - mkDerivation, - base, - mwc-random, - pipes, - time, - }: - mkDerivation { - pname = "pipes-rt"; - version = "0.5.0"; - sha256 = "1wlgwil8ag6ax0kvammbqk7v2d8k6ygdqpjpys97zxrvy47dfc6r"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - mwc-random - pipes - time - ]; - executableHaskellDepends = [ - base - pipes - time - ]; - description = "A few pipes to control the timing of yields"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "PipesRealTimeExample"; - broken = true; - } - ) { }; - - "pipes-s3" = callPackage ( - { - mkDerivation, - aws, - base, - bytestring, - exceptions, - http-client, - http-client-tls, - http-types, - pipes, - pipes-bytestring, - pipes-safe, - QuickCheck, - resourcet, - semigroups, - tasty, - tasty-quickcheck, - text, - transformers, - }: - mkDerivation { - pname = "pipes-s3"; - version = "0.3.1"; - sha256 = "1z32mgx3w5xiiaxcc22v492f03xlgkprn3pv1hqfqcfgsnxqbj5l"; - libraryHaskellDepends = [ - aws - base - bytestring - http-client - http-client-tls - http-types - pipes - pipes-bytestring - pipes-safe - resourcet - semigroups - text - transformers - ]; - testHaskellDepends = [ - base - bytestring - exceptions - pipes - pipes-bytestring - pipes-safe - QuickCheck - tasty - tasty-quickcheck - text - ]; - description = "A simple interface for streaming data to and from Amazon S3"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "pipes-safe" = callPackage ( { mkDerivation, @@ -520519,86 +300503,6 @@ self: { } ) { }; - "pipes-shell" = callPackage ( - { - mkDerivation, - async, - base, - bytestring, - directory, - hspec, - pipes, - pipes-bytestring, - pipes-safe, - process, - stm, - stm-chans, - text, - }: - mkDerivation { - pname = "pipes-shell"; - version = "0.1.4"; - sha256 = "195dscwh74w4ya0sslkx0bwfvfbw90n9a3h231g92lwq4cl17lq5"; - libraryHaskellDepends = [ - async - base - bytestring - pipes - pipes-bytestring - pipes-safe - process - stm - stm-chans - text - ]; - testHaskellDepends = [ - async - base - bytestring - directory - hspec - pipes - pipes-bytestring - pipes-safe - process - stm - stm-chans - text - ]; - description = "Create proper Pipes from System.Process"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "pipes-sqlite-simple" = callPackage ( - { - mkDerivation, - base, - pipes, - pipes-safe, - sqlite-simple, - text, - }: - mkDerivation { - pname = "pipes-sqlite-simple"; - version = "0.2"; - sha256 = "0byg4rksklk96sf3d3r9hfmajd12ybz3wlr8sri9x31gdvqg8dcq"; - libraryHaskellDepends = [ - base - pipes - pipes-safe - sqlite-simple - text - ]; - description = "Functions that smash Pipes and sqlite-simple together"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "pipes-text" = callPackage ( { mkDerivation, @@ -520634,101 +300538,6 @@ self: { } ) { }; - "pipes-transduce" = callPackage ( - { - mkDerivation, - base, - bifunctors, - bytestring, - conceit, - doctest, - foldl, - free, - microlens, - pipes, - pipes-bytestring, - pipes-concurrency, - pipes-group, - pipes-parse, - pipes-safe, - pipes-text, - streaming, - tasty, - tasty-hunit, - text, - transformers, - void, - }: - mkDerivation { - pname = "pipes-transduce"; - version = "0.4.4.0"; - sha256 = "181zzyyzy7p13zgiprfacvzn8b00xw36bv3l4ishwbac8yxg15cl"; - libraryHaskellDepends = [ - base - bifunctors - bytestring - conceit - foldl - free - microlens - pipes - pipes-bytestring - pipes-concurrency - pipes-group - pipes-parse - pipes-safe - pipes-text - streaming - text - transformers - void - ]; - testHaskellDepends = [ - base - doctest - foldl - free - pipes - tasty - tasty-hunit - text - ]; - description = "Interfacing pipes with foldl folds"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "pipes-vector" = callPackage ( - { - mkDerivation, - base, - monad-primitive, - pipes, - primitive, - transformers, - vector, - }: - mkDerivation { - pname = "pipes-vector"; - version = "0.6.2"; - sha256 = "11nibsshxgnr2jw8lh8q9aygbmpfsq7mf7kdvaqzyggmrdsns2wn"; - libraryHaskellDepends = [ - base - monad-primitive - pipes - primitive - transformers - vector - ]; - description = "Various proxies for streaming data into vectors"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "pipes-wai" = callPackage ( { mkDerivation, @@ -520789,37 +300598,6 @@ self: { } ) { }; - "pipes-zeromq4" = callPackage ( - { - mkDerivation, - base, - bytestring, - pipes, - pipes-safe, - semigroups, - zeromq4-haskell, - }: - mkDerivation { - pname = "pipes-zeromq4"; - version = "0.3.0.0"; - sha256 = "178k23kqhsvz4km3jp58mfh5qcawsxc4xs38w1cb4iana9bz6zjp"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - bytestring - pipes - pipes-safe - semigroups - zeromq4-haskell - ]; - description = "Pipes integration for ZeroMQ messaging"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "pipes-zlib" = callPackage ( { mkDerivation, @@ -520864,191 +300642,6 @@ self: { } ) { }; - "pisigma" = callPackage ( - { - mkDerivation, - array, - base, - bytestring, - containers, - haskeline, - haskeline-class, - mpppc, - mtl, - parsec, - text, - utf8-string, - }: - mkDerivation { - pname = "pisigma"; - version = "0.2.1"; - sha256 = "1mz4cfhg8y7cv38ir2lzl7b2p1nfm8c4syvgzz4b9j98dxg694xz"; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - array - base - bytestring - containers - haskeline - haskeline-class - mpppc - mtl - parsec - text - utf8-string - ]; - description = "A dependently typed core language"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "pisigma"; - } - ) { }; - - "pit" = callPackage ( - { - mkDerivation, - base, - bytestring, - directory, - filepath, - optparse-applicative, - process, - temporary, - text, - unordered-containers, - yaml, - }: - mkDerivation { - pname = "pit"; - version = "0.3.1"; - sha256 = "10qrhpxk8v5qrs4pq4ghj0dj3brsbiv61pb5vakpq031h7grfg8p"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - bytestring - directory - filepath - process - temporary - text - unordered-containers - yaml - ]; - executableHaskellDepends = [ - base - bytestring - optparse-applicative - text - unordered-containers - yaml - ]; - description = "Account management tool"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - mainProgram = "pit"; - broken = true; - } - ) { }; - - "pitchtrack" = callPackage ( - { - mkDerivation, - base, - bytestring, - dywapitchtrack, - hspec, - pipes, - pipes-bytestring, - process, - transformers, - }: - mkDerivation { - pname = "pitchtrack"; - version = "0.1.0.1"; - sha256 = "0002qjx2a1b42yd14jwbargnszhpsf8p6wkwpkmxngvjn5x7yh0p"; - libraryHaskellDepends = [ - base - bytestring - dywapitchtrack - pipes - pipes-bytestring - process - transformers - ]; - testHaskellDepends = [ - base - bytestring - dywapitchtrack - hspec - pipes - pipes-bytestring - process - transformers - ]; - description = "Pitch tracking library"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "pivotal-tracker" = callPackage ( - { - mkDerivation, - aeson, - aeson-casing, - base, - either, - hspec, - http-client, - http-client-tls, - mtl, - servant, - servant-client, - text, - time, - transformers, - }: - mkDerivation { - pname = "pivotal-tracker"; - version = "0.2.0.0"; - sha256 = "1sc95mbf3cxjy9kxaqr3xgrgvmr6wghh69i4qqkil2grghvw90am"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson - aeson-casing - base - http-client - http-client-tls - mtl - servant - servant-client - text - time - transformers - ]; - executableHaskellDepends = [ - base - either - servant - text - transformers - ]; - testHaskellDepends = [ - base - hspec - ]; - description = "A library and a CLI tool for accessing Pivotal Tracker API"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "tracker"; - broken = true; - } - ) { }; - "pixel-printer" = callPackage ( { mkDerivation, @@ -521082,112 +300675,6 @@ self: { } ) { }; - "pixela" = callPackage ( - { - mkDerivation, - aeson, - base, - bytestring, - data-default-class, - http-client, - http-client-tls, - http-types, - split, - text, - time, - unordered-containers, - uri-encode, - vector, - }: - mkDerivation { - pname = "pixela"; - version = "0.3.1.0"; - sha256 = "0kjv5536hakbxxgj3jfzmxlgxnwx7jk0izf4gly14l4yr8fbv4s1"; - libraryHaskellDepends = [ - aeson - base - bytestring - data-default-class - http-client - http-client-tls - http-types - split - text - time - unordered-containers - uri-encode - vector - ]; - testHaskellDepends = [ - aeson - base - bytestring - data-default-class - http-client - http-client-tls - http-types - split - text - time - unordered-containers - uri-encode - vector - ]; - description = "Pixela client"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "pixelated-avatar-generator" = callPackage ( - { - mkDerivation, - async, - base, - bytestring, - cli, - hspec, - JuicyPixels, - pureMD5, - QuickCheck, - random, - split, - }: - mkDerivation { - pname = "pixelated-avatar-generator"; - version = "0.1.3"; - sha256 = "0y50cfjq660d4gn9dccnmnm435asay3z0skxm8glix918508fzad"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - bytestring - JuicyPixels - pureMD5 - split - ]; - executableHaskellDepends = [ - async - base - cli - random - ]; - testHaskellDepends = [ - base - bytestring - hspec - JuicyPixels - QuickCheck - ]; - description = "A library and application for generating pixelated avatars"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - mainProgram = "pixelated-avatar-generator"; - broken = true; - } - ) { }; - "pixiv" = callPackage ( { mkDerivation, @@ -521338,116 +300825,6 @@ self: { } ) { }; - "pkcs10" = callPackage ( - { - mkDerivation, - asn1-encoding, - asn1-parse, - asn1-types, - base, - bytestring, - cryptonite, - pem, - QuickCheck, - tasty, - tasty-hunit, - tasty-quickcheck, - transformers, - x509, - }: - mkDerivation { - pname = "pkcs10"; - version = "0.2.0.0"; - sha256 = "15328w93rbpxx1wz3agw0271gxcy1ykgr6lcwkqcgi5scwzr4vl9"; - libraryHaskellDepends = [ - asn1-encoding - asn1-parse - asn1-types - base - bytestring - cryptonite - pem - x509 - ]; - testHaskellDepends = [ - asn1-encoding - asn1-parse - asn1-types - base - bytestring - cryptonite - pem - QuickCheck - tasty - tasty-hunit - tasty-quickcheck - transformers - x509 - ]; - description = "PKCS#10 library"; - license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "pkcs7" = callPackage ( - { - mkDerivation, - base, - bytestring, - Cabal, - HUnit, - QuickCheck, - }: - mkDerivation { - pname = "pkcs7"; - version = "1.0.0.1"; - sha256 = "0i4hpy9rmc49apsmadz72prgmkb13ww575v8flhdymd3dkjn6b52"; - libraryHaskellDepends = [ - base - bytestring - ]; - testHaskellDepends = [ - base - bytestring - Cabal - HUnit - QuickCheck - ]; - description = "PKCS #7 padding in Haskell"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "pkggraph" = callPackage ( - { - mkDerivation, - base, - Cabal, - split, - }: - mkDerivation { - pname = "pkggraph"; - version = "0.1"; - sha256 = "019mli0g65g7k4rsp2myxc7g6p6wykj85amvb2g2ipw117zpzkfz"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - Cabal - split - ]; - description = "Package dependency graph for installed packages"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "pkggraph"; - broken = true; - } - ) { }; - "pkgtreediff" = callPackage ( { mkDerivation, @@ -521723,592 +301100,6 @@ self: { } ) { }; - "plailude" = callPackage ( - { - mkDerivation, - base, - bytestring, - mtl, - time, - unix, - }: - mkDerivation { - pname = "plailude"; - version = "0.6.0"; - sha256 = "13hqkz0p3c81d7v3qnbcf90cxyb15na9icfjch4hw0222i6kn21i"; - libraryHaskellDepends = [ - base - bytestring - mtl - time - unix - ]; - description = "plaimi's prelude"; - license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "plan-applicative" = callPackage ( - { - mkDerivation, - base, - bifunctors, - comonad, - containers, - doctest, - profunctors, - streaming, - tasty, - tasty-hunit, - transformers, - }: - mkDerivation { - pname = "plan-applicative"; - version = "2.0.1.0"; - sha256 = "13pm9p7k74irz1rsgq5s6lksz86i82wddjapnqgm8xfg28fr8hmy"; - libraryHaskellDepends = [ - base - bifunctors - comonad - containers - profunctors - streaming - transformers - ]; - testHaskellDepends = [ - base - bifunctors - comonad - containers - doctest - profunctors - streaming - tasty - tasty-hunit - transformers - ]; - description = "Applicative/Arrow for resource estimation and progress tracking"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "plan-b" = callPackage ( - { - mkDerivation, - base, - exceptions, - hspec, - path, - path-io, - transformers, - }: - mkDerivation { - pname = "plan-b"; - version = "0.2.1"; - sha256 = "038w0y90k7fn13ba5vrpyxa6vjn03lxqdnd2vgki9hmb4idxiakv"; - revision = "2"; - editedCabalFile = "03vi68kp16lcly2rv6nq5a64k00hd4a5zvdf8pbz76450fik2c1j"; - libraryHaskellDepends = [ - base - exceptions - path - path-io - transformers - ]; - testHaskellDepends = [ - base - hspec - path - path-io - ]; - description = "Failure-tolerant file and directory editing"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "planar-graph" = callPackage ( - { - mkDerivation, - attoparsec, - base, - blaze-builder, - bytestring, - containers, - data-clist, - deepseq, - }: - mkDerivation { - pname = "planar-graph"; - version = "1.0.0.0"; - sha256 = "1c7a168wkym50nh6a0vqfnqgj4hsk91d4x3w84ip0phcnig65iip"; - libraryHaskellDepends = [ - attoparsec - base - blaze-builder - bytestring - containers - data-clist - deepseq - ]; - description = "A representation of planar graphs"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "planb-token-introspection" = callPackage ( - { - mkDerivation, - aeson, - aeson-casing, - base, - bytestring, - containers, - exceptions, - http-client, - http-client-tls, - http-types, - lens, - mtl, - random, - safe-exceptions, - tasty, - tasty-hunit, - text, - transformers, - unliftio-core, - }: - mkDerivation { - pname = "planb-token-introspection"; - version = "0.1.4.0"; - sha256 = "0rgjvxs1bb6qz02g2y8b4cldmgn05kfzjbb81ny57724yv60xyp7"; - libraryHaskellDepends = [ - aeson - aeson-casing - base - bytestring - containers - http-client - http-client-tls - http-types - mtl - safe-exceptions - text - transformers - ]; - testHaskellDepends = [ - aeson - base - bytestring - containers - exceptions - http-client - http-types - lens - mtl - random - safe-exceptions - tasty - tasty-hunit - text - unliftio-core - ]; - description = "Token Introspection for PlanB"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "planet-mitchell" = callPackage ( - { - mkDerivation, - aeson, - aeson-pretty, - aeson-qq, - ansi-terminal, - approximate, - array, - async, - atomic-primops, - base, - base-orphans, - base16-bytestring, - bits, - bytestring, - bytestring-lexing, - case-insensitive, - cborg, - comonad, - compact, - compactable, - constraints, - containers, - contravariant, - contravariant-extras, - deepseq, - Diff, - distributive, - dlist, - double-conversion, - Earley, - email-validate, - erf, - exact-pi, - exceptions, - extra, - fast-digits, - fgl, - filepath, - foldl, - free, - generic-aeson, - generic-lens, - half, - hashable, - heaps, - ilist, - insert-ordered-containers, - integer-logarithms, - lens, - lens-aeson, - list-transformer, - logict, - managed, - megaparsec, - mmorph, - monad-ste, - mtl, - multiset, - mwc-random, - neat-interpolation, - network, - network-info, - network-uri, - nf, - optparse-applicative, - parallel, - parser-combinators, - pointed, - prettyprinter, - prettyprinter-ansi-terminal, - primitive, - profunctors, - psqueues, - random-bytestring, - reactive-banana, - reflection, - regex-applicative, - safe, - say, - scientific, - semigroupoids, - semigroups, - semilattices, - serialise, - split, - stm, - stm-chans, - stm-containers, - stringsearch, - tagged, - text, - text-metrics, - text-short, - time, - transformers, - transformers-base, - transformers-compat, - typed-process, - unagi-chan, - unique, - unix, - unliftio, - unordered-containers, - utf8-string, - uuid, - uuid-types, - vault, - vector, - vector-builder, - writer-cps-mtl, - }: - mkDerivation { - pname = "planet-mitchell"; - version = "0.1.0"; - sha256 = "0i9fhv17q6i7gim7k3kklivyg5c4kmxfhlfsdljpdv5sy8hl3jh1"; - libraryHaskellDepends = [ - aeson - aeson-pretty - aeson-qq - ansi-terminal - approximate - array - async - atomic-primops - base - base-orphans - base16-bytestring - bits - bytestring - bytestring-lexing - case-insensitive - cborg - comonad - compact - compactable - constraints - containers - contravariant - contravariant-extras - deepseq - Diff - distributive - dlist - double-conversion - Earley - email-validate - erf - exact-pi - exceptions - extra - fast-digits - fgl - filepath - foldl - free - generic-aeson - generic-lens - half - hashable - heaps - ilist - insert-ordered-containers - integer-logarithms - lens - lens-aeson - list-transformer - logict - managed - megaparsec - mmorph - monad-ste - mtl - multiset - mwc-random - neat-interpolation - network - network-info - network-uri - nf - optparse-applicative - parallel - parser-combinators - pointed - prettyprinter - prettyprinter-ansi-terminal - primitive - profunctors - psqueues - random-bytestring - reactive-banana - reflection - regex-applicative - safe - say - scientific - semigroupoids - semigroups - semilattices - serialise - split - stm - stm-chans - stm-containers - stringsearch - tagged - text - text-metrics - text-short - time - transformers - transformers-base - transformers-compat - typed-process - unagi-chan - unique - unix - unliftio - unordered-containers - utf8-string - uuid - uuid-types - vault - vector - vector-builder - writer-cps-mtl - ]; - description = "Planet Mitchell"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "planet-mitchell-test" = callPackage ( - { - mkDerivation, - gauge, - hedgehog, - hspec-expectations, - tasty, - tasty-hedgehog, - tasty-hunit, - tasty-rerun, - weigh, - }: - mkDerivation { - pname = "planet-mitchell-test"; - version = "0.0.0"; - sha256 = "09nmdz34nz7gdq7x48pmimn966vrnlicg3q74a6m3r29vn9wh47d"; - libraryHaskellDepends = [ - gauge - hedgehog - hspec-expectations - tasty - tasty-hedgehog - tasty-hunit - tasty-rerun - weigh - ]; - description = "Planet Mitchell"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "plankton" = callPackage ( - { - mkDerivation, - adjunctions, - base, - protolude, - }: - mkDerivation { - pname = "plankton"; - version = "0.0.0.1"; - sha256 = "049dqzxygj81kzb5zqpw8cc3ql1hakwl3j84dzqhrc6vk6r9a50q"; - libraryHaskellDepends = [ - adjunctions - base - protolude - ]; - description = "The core of a numeric prelude, taken from numhask"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "plat" = callPackage ( - { - mkDerivation, - base, - bytestring, - containers, - mtl, - utf8-string, - }: - mkDerivation { - pname = "plat"; - version = "0.1.0.1"; - sha256 = "06syff2yzrs7qvj8m1f7bgzd6qc834zl9qphv67q3ps5r2hy09qd"; - libraryHaskellDepends = [ - base - bytestring - containers - mtl - utf8-string - ]; - description = "Simple templating library"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "platinum-parsing" = callPackage ( - { - mkDerivation, - base, - binary, - clock, - containers, - data-hash, - directory, - fgl, - hspec, - HStringTemplate, - mtl, - optparse-applicative, - parsec, - text, - vector, - yaml, - }: - mkDerivation { - pname = "platinum-parsing"; - version = "0.1.0.0"; - sha256 = "1xngg7w238ngfwj2sz8rgkjnbhlqiz3lqnl6k3akfn9s6cdgk82y"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - binary - containers - fgl - HStringTemplate - mtl - parsec - text - vector - ]; - executableHaskellDepends = [ - base - binary - clock - containers - data-hash - directory - fgl - mtl - optparse-applicative - text - vector - yaml - ]; - testHaskellDepends = [ - base - containers - fgl - hspec - vector - ]; - description = "General Framework for compiler development"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "pp"; - broken = true; - } - ) { }; - "playlists" = callPackage ( { mkDerivation, @@ -522359,43 +301150,6 @@ self: { } ) { }; - "playlists-http" = callPackage ( - { - mkDerivation, - attoparsec, - base, - bytestring, - exceptions, - http-client, - mtl, - playlists, - text, - transformers, - }: - mkDerivation { - pname = "playlists-http"; - version = "0.2.1.1"; - sha256 = "1smshj9ib0fp9kd7bsj15nq6vglzrdy8wzs3l6pi1rf6sjhjhb3l"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - attoparsec - base - bytestring - exceptions - http-client - mtl - playlists - text - transformers - ]; - description = "Library to glue together playlists and http-client"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "plegg" = callPackage ( { mkDerivation, base }: mkDerivation { @@ -522448,157 +301202,6 @@ self: { } ) { }; - "plist" = callPackage ( - { - mkDerivation, - base, - base64-bytestring, - bytestring, - hxt, - }: - mkDerivation { - pname = "plist"; - version = "0.0.6"; - sha256 = "0xsx1pvlnqyidpvswisir9p9054r7fczi81nccflazijn3pr9rgb"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base - base64-bytestring - bytestring - hxt - ]; - description = "Generate and parse Mac OS X property list format"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "plist-buddy" = callPackage ( - { - mkDerivation, - base, - base16-bytestring, - base64-bytestring, - bytestring, - cryptohash, - directory, - hspec, - mtl, - posix-pty, - process, - QuickCheck, - text, - time, - xml, - }: - mkDerivation { - pname = "plist-buddy"; - version = "0.1.0.0"; - sha256 = "0x677jrzd7mwx8cplg8d2i4b0c1vg65xfnz7xslyb85kmhxv2728"; - revision = "2"; - editedCabalFile = "1q7f3hy60xfm1f2zpgph4bsgdsg1gf060f9xyx7dv8ccmn91c0ci"; - libraryHaskellDepends = [ - base - base16-bytestring - base64-bytestring - bytestring - cryptohash - directory - mtl - posix-pty - process - text - time - xml - ]; - testHaskellDepends = [ - base - bytestring - directory - hspec - mtl - posix-pty - process - QuickCheck - text - time - ]; - description = "Remote monad for editing plists"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "plivo" = callPackage ( - { - mkDerivation, - aeson, - base, - blaze-builder, - bytestring, - errors, - http-streams, - http-types, - io-streams, - network-uri, - old-locale, - time, - unexceptionalio, - }: - mkDerivation { - pname = "plivo"; - version = "0.2.0.0"; - sha256 = "16q6jwnbzxhapmkzi2sn1k02z8gq11s9wp555fv7msv2if5axrp0"; - revision = "1"; - editedCabalFile = "1czgwiq4dsqak6f1bkpg24672dqms3cwlaxkf8ldgs37839qrxvy"; - libraryHaskellDepends = [ - aeson - base - blaze-builder - bytestring - errors - http-streams - http-types - io-streams - network-uri - old-locale - time - unexceptionalio - ]; - description = "Plivo API wrapper for Haskell"; - license = "unknown"; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "plocketed" = callPackage ( - { - mkDerivation, - base, - optparse-applicative, - socketed, - }: - mkDerivation { - pname = "plocketed"; - version = "0.1.0.1"; - sha256 = "0vmbs6fbvrf3pk66ag8lbvybdkbwvvzfp390hbw5vca9adbchqqg"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - optparse-applicative - socketed - ]; - description = "plot data from stdin through socketed"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - mainProgram = "plocketed"; - } - ) { }; - "plot" = callPackage ( { mkDerivation, @@ -522630,139 +301233,6 @@ self: { } ) { }; - "plot-gtk" = callPackage ( - { - mkDerivation, - base, - glib, - gtk, - hmatrix, - mtl, - plot, - process, - }: - mkDerivation { - pname = "plot-gtk"; - version = "0.2.0.4"; - sha256 = "1fq75kg8f1sm9bmn89w5c54arr2y1xv0lswbvnxc4rmfc98l82lw"; - libraryHaskellDepends = [ - base - glib - gtk - hmatrix - mtl - plot - process - ]; - description = "GTK plots and interaction with GHCi"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "plot-gtk-ui" = callPackage ( - { - mkDerivation, - base, - cairo, - colour, - fixed-vector, - gtk, - hmatrix, - plot, - text, - vector, - }: - mkDerivation { - pname = "plot-gtk-ui"; - version = "0.3.0.2"; - sha256 = "1nhq0l687dhphnxkd0zh3z96551b91d7js625l4fyn40g5099s77"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base - cairo - colour - fixed-vector - gtk - hmatrix - plot - text - vector - ]; - description = "A quick way to use Mathematica like Manipulation abilities"; - license = lib.licenses.gpl2Only; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "plot-gtk3" = callPackage ( - { - mkDerivation, - base, - glib, - gtk3, - hmatrix, - mtl, - plot, - process, - }: - mkDerivation { - pname = "plot-gtk3"; - version = "0.1.0.2"; - sha256 = "1nfiblsh3hmbbg4mrid6fwyn0dk013q8pdn6bdqmzgx1s9s822br"; - libraryHaskellDepends = [ - base - glib - gtk3 - hmatrix - mtl - plot - process - ]; - description = "GTK3 plots and interaction with GHCi"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "plot-lab" = callPackage ( - { - mkDerivation, - base, - colour, - gtk, - hmatrix, - plot, - text, - vector, - }: - mkDerivation { - pname = "plot-lab"; - version = "0.0.1.9"; - sha256 = "1qa5mxq9j5m5zbvzsmrzg8jb9w9v8ik50c8w5ffddcrrqb9b8mcq"; - isLibrary = false; - isExecutable = true; - enableSeparateDataOutput = true; - executableHaskellDepends = [ - base - colour - gtk - hmatrix - plot - text - vector - ]; - description = "A plotting tool with Mathematica like Manipulation abilities"; - license = lib.licenses.gpl2Only; - hydraPlatforms = lib.platforms.none; - mainProgram = "plot-lab"; - broken = true; - } - ) { }; - "plot-light" = callPackage ( { mkDerivation, @@ -523146,32 +301616,6 @@ self: { } ) { }; - "plucky" = callPackage ( - { - mkDerivation, - base, - mtl, - transformers, - }: - mkDerivation { - pname = "plucky"; - version = "0.0.0.1"; - sha256 = "11v1zhhgvzmhlk5vnr7lhw8gb2w5gvs4wwvkynj9lxbv96a8yb5s"; - libraryHaskellDepends = [ - base - transformers - ]; - testHaskellDepends = [ - base - mtl - ]; - description = "A library and technique for handling errors via plucking constraints"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "plugins" = callPackage ( { mkDerivation, @@ -523215,262 +301659,6 @@ self: { } ) { }; - "plugins-auto" = callPackage ( - { - mkDerivation, - base, - containers, - directory, - filepath, - hinotify, - mtl, - plugins, - process, - template-haskell, - }: - mkDerivation { - pname = "plugins-auto"; - version = "0.0.4"; - sha256 = "1gia9d45d7rb658wm6ihkfz36l4ph7w0hr0vnfw42s035aj5shy4"; - libraryHaskellDepends = [ - base - containers - filepath - hinotify - mtl - plugins - template-haskell - ]; - testHaskellDepends = [ - base - directory - process - ]; - description = "Automatic recompilation and reloading of haskell modules"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "plugins-multistage" = callPackage ( - { - mkDerivation, - base, - directory, - ghc, - ghci, - process, - QuickCheck, - tasty, - tasty-quickcheck, - tasty-th, - template-haskell, - th-desugar, - }: - mkDerivation { - pname = "plugins-multistage"; - version = "0.6.3"; - sha256 = "08m73a30alspw1dk33qvp5i0yqq7xlzkj2dsvs77myk9f1sp1ywx"; - libraryHaskellDepends = [ - base - directory - ghc - ghci - process - template-haskell - th-desugar - ]; - testHaskellDepends = [ - base - QuickCheck - tasty - tasty-quickcheck - tasty-th - template-haskell - ]; - description = "Dynamic linking for embedded DSLs with staged compilation"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "plumbers" = callPackage ( - { - mkDerivation, - base, - template-haskell, - }: - mkDerivation { - pname = "plumbers"; - version = "0.0.4"; - sha256 = "1lih19zjz5yrrjvrgk8zv5xrvld57ykdxxhdrvhwh6bqyzzarqjj"; - libraryHaskellDepends = [ - base - template-haskell - ]; - description = "Pointless plumbing combinators"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "plur" = callPackage ( - { - mkDerivation, - base, - hedgehog, - hedgehog-classes, - semigroups, - }: - mkDerivation { - pname = "plur"; - version = "0.2.0.0"; - sha256 = "0yvi84s6nj0p2phmpxx662j27g617sisaljh4gnvcjzpmgw4wzwm"; - libraryHaskellDepends = [ - base - semigroups - ]; - testHaskellDepends = [ - base - hedgehog - hedgehog-classes - ]; - description = "Plurality monad: Zero, one, or at least two"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "plural" = callPackage ( - { - mkDerivation, - base, - bytestring, - containers, - hspec, - }: - mkDerivation { - pname = "plural"; - version = "0.1.0.0"; - sha256 = "0amzsa5sf2jdrxmsizl38h1452qqd5fby3c451h0b9zpraxj1fbd"; - libraryHaskellDepends = [ - base - bytestring - containers - ]; - testHaskellDepends = [ - base - hspec - ]; - description = "Pluralize"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "ply-loader" = callPackage ( - { - mkDerivation, - attoparsec, - base, - bytestring, - cereal, - directory, - filepath, - lens, - linear, - parallel-io, - transformers, - vector, - }: - mkDerivation { - pname = "ply-loader"; - version = "0.5.0"; - sha256 = "0vyv4f96v4sf7sgif7q77j8s29mfwad83zk24xghj6sk8dq3mybh"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - attoparsec - base - bytestring - cereal - directory - filepath - lens - linear - parallel-io - transformers - vector - ]; - executableHaskellDepends = [ - base - bytestring - linear - vector - ]; - description = "PLY file loader"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "ply2bin"; - broken = true; - } - ) { }; - - "plzwrk" = callPackage ( - { - mkDerivation, - aeson, - base, - bytestring, - containers, - hashable, - haskell-src-meta, - hspec, - mtl, - parsec, - split, - template-haskell, - text, - transformers, - unordered-containers, - }: - mkDerivation { - pname = "plzwrk"; - version = "0.0.0.10"; - sha256 = "1735dxhqyq0jf2vyh5zb7xwxiqqhx3jgys8fqj97j9m97g0ybdg3"; - libraryHaskellDepends = [ - aeson - base - bytestring - containers - hashable - haskell-src-meta - mtl - parsec - split - template-haskell - text - transformers - unordered-containers - ]; - testHaskellDepends = [ - base - hspec - mtl - text - unordered-containers - ]; - description = "A front-end framework"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "pms-application-service" = callPackage ( { mkDerivation, @@ -524180,70 +302368,9 @@ self: { unix, }: mkDerivation { - pname = "pms-ui-request"; - version = "0.0.6.0"; - sha256 = "1whhi2npja49xifkqhlfmm1j4snw3vhs4vw39205sypvp6irq8ny"; - libraryHaskellDepends = [ - aeson - base - bytestring - conduit - data-default - fast-logger - lens - monad-logger - mtl - pms-domain-model - safe-exceptions - stm - text - transformers - ]; - testHaskellDepends = [ - async - base - data-default - hspec - hspec-discover - lens - monad-logger - pms-domain-model - stm - unix - ]; - testToolDepends = [ hspec-discover ]; - description = "pms-ui-request"; - license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "pms-ui-response" = callPackage ( - { - mkDerivation, - aeson, - async, - base, - bytestring, - conduit, - data-default, - fast-logger, - hspec, - hspec-discover, - lens, - monad-logger, - mtl, - pms-domain-model, - safe-exceptions, - stm, - text, - transformers, - unix, - }: - mkDerivation { - pname = "pms-ui-response"; - version = "0.0.5.0"; - sha256 = "05p16wb90wlj15h442wqfmnypks9bk8pynmfhydyg0f2rbrn6dsa"; + pname = "pms-ui-request"; + version = "0.0.6.0"; + sha256 = "1whhi2npja49xifkqhlfmm1j4snw3vhs4vw39205sypvp6irq8ny"; libraryHaskellDepends = [ aeson base @@ -524273,69 +302400,69 @@ self: { unix ]; testToolDepends = [ hspec-discover ]; - description = "pms-ui-response"; + description = "pms-ui-request"; license = lib.licenses.asl20; hydraPlatforms = lib.platforms.none; } ) { }; - "png-file" = callPackage ( - { - mkDerivation, - array, - base, - binary-file, - bytestring, - monads-tf, - template-haskell, - zlib, - }: - mkDerivation { - pname = "png-file"; - version = "0.0.1.3"; - sha256 = "1hdj8q0ik3mj8av7hd96d2mc68jx6cdpqa6d4qdgvmz06p2y6ys6"; - libraryHaskellDepends = [ - array - base - binary-file - bytestring - monads-tf - template-haskell - zlib - ]; - description = "read/write png file"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "pngload" = callPackage ( + "pms-ui-response" = callPackage ( { mkDerivation, - array, + aeson, + async, base, bytestring, - haskell98, + conduit, + data-default, + fast-logger, + hspec, + hspec-discover, + lens, + monad-logger, mtl, - parsec, - zlib, + pms-domain-model, + safe-exceptions, + stm, + text, + transformers, + unix, }: mkDerivation { - pname = "pngload"; - version = "0.1"; - sha256 = "1j8zagi5xcb4spvq1r0wcnn211y2pryzf0r8z7h70ypqak7sy6ps"; - enableSeparateDataOutput = true; + pname = "pms-ui-response"; + version = "0.0.5.0"; + sha256 = "05p16wb90wlj15h442wqfmnypks9bk8pynmfhydyg0f2rbrn6dsa"; libraryHaskellDepends = [ - array + aeson base bytestring - haskell98 + conduit + data-default + fast-logger + lens + monad-logger mtl - parsec - zlib + pms-domain-model + safe-exceptions + stm + text + transformers ]; - description = "Pure Haskell loader for PNG images"; - license = lib.licenses.bsd3; + testHaskellDepends = [ + async + base + data-default + hspec + hspec-discover + lens + monad-logger + pms-domain-model + stm + unix + ]; + testToolDepends = [ hspec-discover ]; + description = "pms-ui-response"; + license = lib.licenses.asl20; hydraPlatforms = lib.platforms.none; } ) { }; @@ -524391,37 +302518,6 @@ self: { } ) { }; - "pocket" = callPackage ( - { - mkDerivation, - aeson, - base, - bytestring, - exceptions, - http-conduit, - http-types, - text, - }: - mkDerivation { - pname = "pocket"; - version = "0.3.0"; - sha256 = "0kpj6kicncq4irbkbpnaa2s53b4p2pj3ilbrawh7ymrj854vdf2h"; - libraryHaskellDepends = [ - aeson - base - bytestring - exceptions - http-conduit - http-types - text - ]; - description = "Bindings for the Pocket API"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "pocket-dns" = callPackage ( { mkDerivation, @@ -524577,43 +302673,6 @@ self: { } ) { }; - "point-octree" = callPackage ( - { - mkDerivation, - AC-Vector, - base, - hspec, - markdown-unlit, - QuickCheck, - random, - random-shuffle, - }: - mkDerivation { - pname = "point-octree"; - version = "0.5.5.3"; - sha256 = "0lh5flwdc3j7nypl304pfqdn8mirg937y199j08mmlhca93p1z0m"; - libraryHaskellDepends = [ - AC-Vector - base - QuickCheck - ]; - testHaskellDepends = [ - AC-Vector - base - hspec - markdown-unlit - QuickCheck - random - random-shuffle - ]; - testToolDepends = [ markdown-unlit ]; - description = "Point octree, with bounding boxes"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "pointed" = callPackage ( { mkDerivation, @@ -524655,31 +302714,6 @@ self: { } ) { }; - "pointedalternative" = callPackage ( - { - mkDerivation, - base, - mtl, - semigroups, - transformers, - }: - mkDerivation { - pname = "pointedalternative"; - version = "0.1.0.0"; - sha256 = "12l380hgl17l0jxdx38kipvnip6gz4p9n27n03h9q37k5qhzjfha"; - libraryHaskellDepends = [ - base - mtl - semigroups - transformers - ]; - description = "Alternative done right"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "pointedlist" = callPackage ( { mkDerivation, @@ -524788,39 +302822,6 @@ self: { } ) { }; - "pointful" = callPackage ( - { - mkDerivation, - base, - containers, - haskell-src-exts-simple, - mtl, - syb, - transformers, - }: - mkDerivation { - pname = "pointful"; - version = "1.1.0.0"; - sha256 = "1a6fy2m3cv1jn399vgl467nhc8vwlfcqly1mbzh5rjlsy7drjj3s"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - containers - haskell-src-exts-simple - mtl - syb - transformers - ]; - executableHaskellDepends = [ base ]; - description = "Pointful refactoring tool"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "pointful"; - broken = true; - } - ) { }; - "pointless-fun" = callPackage ( { mkDerivation, base }: mkDerivation { @@ -524833,87 +302834,6 @@ self: { } ) { }; - "pointless-haskell" = callPackage ( - { - mkDerivation, - base, - GHood, - process, - syb, - }: - mkDerivation { - pname = "pointless-haskell"; - version = "0.0.9"; - sha256 = "0f0bnd6dyi1ancdxd2hkszshws9d8jz8iamz5pir0i4nsj69mqyx"; - libraryHaskellDepends = [ - base - GHood - process - syb - ]; - description = "Pointless Haskell library"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "pointless-lenses" = callPackage ( - { - mkDerivation, - base, - containers, - derive, - pointless-haskell, - process, - QuickCheck, - }: - mkDerivation { - pname = "pointless-lenses"; - version = "0.0.9"; - sha256 = "1z09wbx9nrlpg0msq69zyaypp28rfm653l22g7q5xcn0wn4hfs0b"; - libraryHaskellDepends = [ - base - containers - derive - pointless-haskell - process - QuickCheck - ]; - description = "Pointless Lenses library"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "pointless-rewrite" = callPackage ( - { - mkDerivation, - base, - containers, - mtl, - pointless-haskell, - pointless-lenses, - process, - }: - mkDerivation { - pname = "pointless-rewrite"; - version = "0.0.3"; - sha256 = "0dc37gw8p5zyi23g94llbq7vb5n09rgznjf24nhg28jw2vmf3f0n"; - libraryHaskellDepends = [ - base - containers - mtl - pointless-haskell - pointless-lenses - process - ]; - description = "Pointless Rewrite library"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "poke" = callPackage ( { mkDerivation, @@ -525002,37 +302922,6 @@ self: { } ) { }; - "pokemon-go-protobuf-types" = callPackage ( - { - mkDerivation, - base, - bytestring, - containers, - data-default-class, - lens-family, - proto-lens, - text, - }: - mkDerivation { - pname = "pokemon-go-protobuf-types"; - version = "0.1.2"; - sha256 = "0b6j1dddakvs4p2bwx8nlhvr22h15sfnhz4c4mz1745qdf96h6ql"; - libraryHaskellDepends = [ - base - bytestring - containers - data-default-class - lens-family - proto-lens - text - ]; - description = "Haskell types for the Pokemon Go protobuf protocol"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "poker" = callPackage ( { mkDerivation, @@ -525137,80 +303026,6 @@ self: { } ) { }; - "poker-eval" = callPackage ( - { - mkDerivation, - array, - base, - mtl, - poker-eval, - random, - vector, - }: - mkDerivation { - pname = "poker-eval"; - version = "0.3.1"; - sha256 = "0v1is9jnpw1ij3b7h9figkjqk58dzc44v6vpdmxfmb80w0myihrv"; - libraryHaskellDepends = [ - array - base - mtl - random - vector - ]; - librarySystemDepends = [ poker-eval ]; - description = "Binding to libpoker-eval"; - license = lib.licenses.publicDomain; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { poker-eval = null; }; - - "pokitdok" = callPackage ( - { - mkDerivation, - aeson, - base, - base64-string, - bytestring, - case-insensitive, - directory, - hex, - HTTP, - http-client, - http-conduit, - http-types, - strict, - text, - time, - }: - mkDerivation { - pname = "pokitdok"; - version = "4.1.0.2"; - sha256 = "08pknbn79hihkil1vcpr7a8ilah3i5b6lnlc41bmprycyqz5vj1w"; - libraryHaskellDepends = [ - aeson - base - base64-string - bytestring - case-insensitive - directory - hex - HTTP - http-client - http-conduit - http-types - strict - text - time - ]; - description = "PokitDok Platform API Client for Haskell"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "polar" = callPackage ( { mkDerivation, base }: mkDerivation { @@ -525223,180 +303038,6 @@ self: { } ) { }; - "polar-configfile" = callPackage ( - { - mkDerivation, - base, - containers, - HUnit, - MissingH, - mtl, - parsec, - }: - mkDerivation { - pname = "polar-configfile"; - version = "0.5.0.0"; - sha256 = "1yx9zwbyi3607prym3604sqxgdd6fw5wzn6gc7qnb6535872qniq"; - libraryHaskellDepends = [ - base - containers - mtl - parsec - ]; - testHaskellDepends = [ - base - containers - HUnit - MissingH - mtl - parsec - ]; - description = "Fork of ConfigFile for Polar Game Engine"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "polar-shader" = callPackage ( - { - mkDerivation, - base, - containers, - hspec, - lens, - mtl, - }: - mkDerivation { - pname = "polar-shader"; - version = "0.3.0.0"; - sha256 = "095g05y7p37vf8yvj8wiz3ai9rq0738ak3v793kf0nyvgyv5nv22"; - libraryHaskellDepends = [ - base - containers - lens - mtl - ]; - testHaskellDepends = [ - base - containers - hspec - ]; - description = "High-level shader compiler framework"; - license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "polh-lexicon" = callPackage ( - { - mkDerivation, - base, - binary, - containers, - dawg, - directory, - filepath, - mtl, - polysoup, - text, - text-binary, - transformers, - }: - mkDerivation { - pname = "polh-lexicon"; - version = "0.2.2"; - sha256 = "0mnccx3xj568s3q82achf1pj57zqdpj9iskgh62w39xbqm7spivl"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - binary - containers - dawg - directory - filepath - mtl - polysoup - text - text-binary - transformers - ]; - description = "A library for manipulating the historical dictionary of Polish (deprecated)"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "policeman" = callPackage ( - { - mkDerivation, - ansi-terminal, - base, - Cabal, - containers, - dir-traverse, - directory, - filepath, - ghc, - gitrev, - hedgehog, - hspec, - mtl, - optparse-applicative, - relude, - shellmet, - text, - transformers, - unordered-containers, - }: - mkDerivation { - pname = "policeman"; - version = "0.0.0.0"; - sha256 = "1klrqj70pmar8z6yki1aq62zqs2fyrwshr24ryi94x8ndf919zd3"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - ansi-terminal - base - Cabal - containers - dir-traverse - directory - filepath - ghc - gitrev - mtl - optparse-applicative - relude - shellmet - text - transformers - unordered-containers - ]; - executableHaskellDepends = [ - base - relude - ]; - testHaskellDepends = [ - base - Cabal - directory - filepath - hedgehog - hspec - relude - text - ]; - description = "Haskell PVP version adviser"; - license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; - mainProgram = "policeman"; - broken = true; - } - ) { }; - "polimorf" = callPackage ( { mkDerivation, @@ -525596,50 +303237,6 @@ self: { } ) { }; - "poly-cont" = callPackage ( - { - mkDerivation, - base, - mtl, - transformers, - }: - mkDerivation { - pname = "poly-cont"; - version = "0.1.0.0"; - sha256 = "05pkz6v2xyva73ibb5v97c7fh5zjpvkhahfgnnxycrlnsag5ckgy"; - libraryHaskellDepends = [ - base - mtl - transformers - ]; - description = "Poly-kinded continuations"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "poly-control" = callPackage ( - { - mkDerivation, - base, - lens, - }: - mkDerivation { - pname = "poly-control"; - version = "1.0.0"; - sha256 = "044xsfpxwp3h7vsx86y2d099qmgiiknslmh3jjfnbr2qy9aj73r6"; - libraryHaskellDepends = [ - base - lens - ]; - description = "This package provides abstraction for polymorphic controls, like PolyMonads or PolyApplicatives"; - license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "poly-rec" = callPackage ( { mkDerivation, @@ -525672,52 +303269,6 @@ self: { } ) { }; - "polydata" = callPackage ( - { - mkDerivation, - base, - constraint-manip, - hspec, - indextype, - polydata-core, - }: - mkDerivation { - pname = "polydata"; - version = "0.3.0.0"; - sha256 = "13rn72baypvnyvcf0dc51dliq467fqh47g4kpyc7c8jlhbs0p4fi"; - libraryHaskellDepends = [ - base - constraint-manip - indextype - polydata-core - ]; - testHaskellDepends = [ - base - constraint-manip - hspec - indextype - polydata-core - ]; - description = "Wrap together data and it's constraints"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "polydata-core" = callPackage ( - { mkDerivation, base }: - mkDerivation { - pname = "polydata-core"; - version = "0.1.0.0"; - sha256 = "1wdi8a1s235knb98bmhfqvy7qbqvj804dx6rn846x8aj50drjjqv"; - libraryHaskellDepends = [ base ]; - description = "Core data definitions for the \"polydata\" package"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "polyglot" = callPackage ( { mkDerivation, @@ -525802,97 +303353,6 @@ self: { } ) { }; - "polynom" = callPackage ( - { - mkDerivation, - algebra, - base, - base-unicode-symbols, - clist, - containers, - peano, - smallcheck, - tasty, - tasty-smallcheck, - transformers, - }: - mkDerivation { - pname = "polynom"; - version = "0.1.0.0"; - sha256 = "1cggjbmyas3bzcs81falp50wq649nhvgxwhhnyk434s0k2h2chwh"; - revision = "1"; - editedCabalFile = "0nfrlp48rgw96bpms30d9s2qmhjmbgxszprh2xi73pmjddk26qg3"; - libraryHaskellDepends = [ - algebra - base - base-unicode-symbols - containers - ]; - testHaskellDepends = [ - algebra - base - base-unicode-symbols - clist - containers - peano - smallcheck - tasty - tasty-smallcheck - transformers - ]; - description = "Polynomial types and operations"; - license = "unknown"; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "polynomial" = callPackage ( - { - mkDerivation, - base, - deepseq, - HUnit, - pretty, - QuickCheck, - test-framework, - test-framework-hunit, - test-framework-quickcheck2, - vector, - vector-space, - vector-th-unbox, - }: - mkDerivation { - pname = "polynomial"; - version = "0.7.3"; - sha256 = "0wl9wdaqrs6hs83xi27m879j7i2q04v14jqkrwns2qy3f2yhq2rr"; - revision = "1"; - editedCabalFile = "1cn1fj9hlzwvk65rpn60n74bdzk2bdicwp2rqb34ps5sccvbm1ij"; - libraryHaskellDepends = [ - base - deepseq - pretty - vector - vector-space - vector-th-unbox - ]; - testHaskellDepends = [ - base - HUnit - QuickCheck - test-framework - test-framework-hunit - test-framework-quickcheck2 - vector - vector-space - ]; - description = "Polynomials"; - license = lib.licenses.publicDomain; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "polynomial-algebra" = callPackage ( { mkDerivation, @@ -526115,7 +303575,6 @@ self: { ]; description = "Account management with Servant and Polysemy"; license = "BSD-2-Clause-Patent"; - hydraPlatforms = lib.platforms.none; } ) { }; @@ -526205,7 +303664,6 @@ self: { ]; description = "Account management with Servant and Polysemy"; license = "BSD-2-Clause-Patent"; - hydraPlatforms = lib.platforms.none; } ) { }; @@ -527766,127 +305224,6 @@ self: { } ) { }; - "polyseq" = callPackage ( - { - mkDerivation, - array, - base, - bytestring, - cgi, - containers, - free-theorems, - haskell-src, - mtl, - network, - old-locale, - old-time, - parsec, - pretty, - syb, - utf8-string, - xhtml, - }: - mkDerivation { - pname = "polyseq"; - version = "0.1.2.1"; - sha256 = "1l31ynlkjkk2zzpsv194gv3pbl55liizvq4x16m5z52vzgszb570"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - array - base - bytestring - cgi - containers - free-theorems - haskell-src - mtl - network - old-locale - old-time - parsec - pretty - syb - utf8-string - xhtml - ]; - executableHaskellDepends = [ - cgi - free-theorems - utf8-string - xhtml - ]; - description = "Taming Selective Strictness"; - license = lib.licenses.publicDomain; - hydraPlatforms = lib.platforms.none; - mainProgram = "polyseq.cgi"; - broken = true; - } - ) { }; - - "polysoup" = callPackage ( - { - mkDerivation, - base, - containers, - deepseq, - polyparse, - tagsoup, - }: - mkDerivation { - pname = "polysoup"; - version = "0.6.4"; - sha256 = "0kgagizdn47xdnvmkwn5h3c78mdsh95siq2cyp9bga22pqhj4sid"; - libraryHaskellDepends = [ - base - containers - deepseq - polyparse - tagsoup - ]; - description = "Online XML parsing with polyparse and tagsoup"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "polytypeable" = callPackage ( - { mkDerivation, base }: - mkDerivation { - pname = "polytypeable"; - version = "0.1.0.0"; - sha256 = "0vb2adm97ypi553lsjz7333q3dg9fmi0incrxlikqixk0f3ajaq8"; - libraryHaskellDepends = [ base ]; - description = "Typeable for polymorphic types"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "polytypeable-utils" = callPackage ( - { - mkDerivation, - base, - haskell98, - polytypeable, - }: - mkDerivation { - pname = "polytypeable-utils"; - version = "0.1.0.0"; - sha256 = "1hbpamgqsmsjkzjjva15f566yra77hwasp88b6y68nx9qa36a821"; - libraryHaskellDepends = [ - base - haskell98 - polytypeable - ]; - description = "Utilities for polytypeable"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "polytyped" = callPackage ( { mkDerivation, @@ -527992,198 +305329,6 @@ self: { } ) { }; - "pomodoro" = callPackage ( - { - mkDerivation, - base, - bytestring, - cereal, - directory, - filepath, - heredoc, - libnotify, - network, - process, - time, - unix, - wx, - wxcore, - }: - mkDerivation { - pname = "pomodoro"; - version = "0.1.0.1"; - sha256 = "0y04c4my0h0xiawccbf6gsb5fwbif81s5s102857p9qvaw8mnnnq"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - bytestring - cereal - directory - filepath - heredoc - libnotify - network - process - time - unix - wx - wxcore - ]; - description = "pomodoro timer"; - license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - mainProgram = "pomodoro"; - } - ) { }; - - "pomohoro" = callPackage ( - { - mkDerivation, - base, - configurator, - dbus, - directory, - fdo-notify, - hdaemonize, - hspec, - network, - optparse-applicative, - protolude, - text, - time, - }: - mkDerivation { - pname = "pomohoro"; - version = "0.1.2.4"; - sha256 = "06aa3r2l6mnb0qjah7ayg1j4k11s6piq9vkvln07a2w2kvxq6f5n"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - configurator - dbus - directory - fdo-notify - network - protolude - text - time - ]; - executableHaskellDepends = [ - base - hdaemonize - optparse-applicative - protolude - text - time - ]; - testHaskellDepends = [ - base - hspec - protolude - ]; - description = "Initial project template from stack"; - license = lib.licenses.isc; - hydraPlatforms = lib.platforms.none; - mainProgram = "pomohoro-exe"; - broken = true; - } - ) { }; - - "ponder" = callPackage ( - { - mkDerivation, - base, - mtl, - }: - mkDerivation { - pname = "ponder"; - version = "0.0.1"; - sha256 = "1nq4z063g429hxwf4vbyyr2b2s7sn325m0h6ggf793inlj48ci0h"; - libraryHaskellDepends = [ - base - mtl - ]; - description = "PEG parser combinator"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "pong-server" = callPackage ( - { - mkDerivation, - base, - bytestring, - classy-prelude, - exceptions, - hspec, - http-types, - monad-control, - network, - QuickCheck, - }: - mkDerivation { - pname = "pong-server"; - version = "0.0.4.4"; - sha256 = "1qndq44mi8ab65b3pwnjbdh8s0iys2h24wy2k9499jbs92gd8zx4"; - libraryHaskellDepends = [ - base - bytestring - classy-prelude - exceptions - http-types - monad-control - network - ]; - testHaskellDepends = [ - base - hspec - network - QuickCheck - ]; - description = "A simple embedded pingable server that runs in the background"; - license = lib.licenses.publicDomain; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "pontarius-mediaserver" = callPackage ( - { - mkDerivation, - base, - HDBC, - HDBC-sqlite3, - hlogger, - pontarius-xmpp, - pontarius-xpmn, - xml-types, - }: - mkDerivation { - pname = "pontarius-mediaserver"; - version = "0.0.2.0"; - sha256 = "00qyrbibav26x5ycipnyypybgjms2kxn38s3iy9gqzv0kmgsdxna"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - HDBC - HDBC-sqlite3 - hlogger - pontarius-xmpp - pontarius-xpmn - xml-types - ]; - description = "Extended Personal Media Network (XPMN) media server"; - license = "unknown"; - hydraPlatforms = lib.platforms.none; - mainProgram = "pontarius-mediaserver-test"; - } - ) { }; - "pontarius-xmpp" = callPackage ( { mkDerivation, @@ -528410,35 +305555,6 @@ self: { } ) { }; - "pontarius-xpmn" = callPackage ( - { - mkDerivation, - base, - containers, - pontarius-xmpp, - random, - text, - xml-types, - }: - mkDerivation { - pname = "pontarius-xpmn"; - version = "0.0.1.0"; - sha256 = "1nd228fgsxlqxql38wkvhq8k5d04bgknpx7i83qxrzj8kb6890dy"; - libraryHaskellDepends = [ - base - containers - pontarius-xmpp - random - text - xml-types - ]; - description = "Extended Personal Media Network (XPMN) library"; - license = "unknown"; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "pony" = callPackage ( { mkDerivation, base }: mkDerivation { @@ -528454,60 +305570,6 @@ self: { } ) { }; - "pool" = callPackage ( - { - mkDerivation, - base, - monad-control, - transformers, - }: - mkDerivation { - pname = "pool"; - version = "0.1.2.1"; - sha256 = "1fwwnwxk3kprr2z9y7bwa1qwxfkzwcb2n5l6vkq1c5s8gjls581c"; - revision = "1"; - editedCabalFile = "0lf9m19hl5asyb85xc8h34kh0iqpfdpwzil4lm5lskvn4fbi77n7"; - libraryHaskellDepends = [ - base - monad-control - transformers - ]; - description = "Thread-safe resource pools. (deprecated)"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "pool-conduit" = callPackage ( - { - mkDerivation, - base, - monad-control, - resource-pool, - resourcet, - transformers, - }: - mkDerivation { - pname = "pool-conduit"; - version = "0.1.2.3"; - sha256 = "1myjbmbh0jm89ycx9d961mpgw8hp7al8wgnsls4p19gvr73gcbfv"; - revision = "1"; - editedCabalFile = "19dgfhd4392vc9b6v77siv21sz5wxxrq4gkm0l54m0mkah8gg55q"; - libraryHaskellDepends = [ - base - monad-control - resource-pool - resourcet - transformers - ]; - description = "Resource pool allocations via ResourceT. (deprecated)"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "poolboy" = callPackage ( { mkDerivation, @@ -528572,55 +305634,6 @@ self: { } ) { }; - "pop3-client" = callPackage ( - { - mkDerivation, - base, - mtl, - network, - }: - mkDerivation { - pname = "pop3-client"; - version = "0.1.4"; - sha256 = "0kfcfxfwg5rjm7qx9r0ssdvkrvca95hflahrip1hi5wbplf224xv"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base - mtl - network - ]; - description = "POP3 Client Library"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "popenhs" = callPackage ( - { - mkDerivation, - base, - directory, - haskell98, - unix, - }: - mkDerivation { - pname = "popenhs"; - version = "1.0.0"; - sha256 = "01pb8g5zl99zccnjnkwklfgaz1pqjp1xrgz5b3qy45nclyln0bm4"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base - directory - haskell98 - unix - ]; - description = "popenhs is a popen-like library for Haskell"; - license = "GPL"; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "popkey" = callPackage ( { mkDerivation, @@ -528673,66 +305686,6 @@ self: { } ) { }; - "poppler" = - callPackage - ( - { - mkDerivation, - array, - base, - bytestring, - Cabal, - cairo, - containers, - gdk-pixbuf, - glib, - gtk, - gtk2, - gtk2hs-buildtools, - mtl, - pango, - poppler_gi, - }: - mkDerivation { - pname = "poppler"; - version = "0.14.2"; - sha256 = "17q8br6w9v7vcz8ricvlrhhaw0ngka9w0i0jazr7m1j0dv1m4xsf"; - enableSeparateDataOutput = true; - setupHaskellDepends = [ - base - Cabal - gtk2hs-buildtools - ]; - libraryHaskellDepends = [ - array - base - bytestring - cairo - containers - glib - gtk - mtl - ]; - libraryPkgconfigDepends = [ - gdk-pixbuf - gtk2 - pango - poppler_gi - ]; - libraryToolDepends = [ gtk2hs-buildtools ]; - description = "Binding to the Poppler"; - license = lib.licenses.gpl2Only; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) - { - inherit (pkgs) gdk-pixbuf; - inherit (pkgs) gtk2; - inherit (pkgs) pango; - inherit (pkgs) poppler_gi; - }; - "populate-setup-exe-cache" = callPackage ( { mkDerivation, base }: mkDerivation { @@ -528745,250 +305698,6 @@ self: { } ) { }; - "porcupine-core" = callPackage ( - { - mkDerivation, - aeson, - aeson-pretty, - attoparsec, - base, - binary, - binary-orphans, - bytestring, - cassava, - clock, - conduit, - containers, - contravariant, - data-default, - deepseq, - directory, - docrecords, - filepath, - foldl, - formatting, - funflow, - hashable, - katip, - lens, - monad-control, - mtl, - optparse-applicative, - path, - profunctors, - reader-soup, - resourcet, - safe-exceptions, - store, - streaming, - streaming-bytestring, - streaming-conduit, - streaming-utils, - template-haskell, - temporary, - text, - transformers, - transformers-base, - unix, - unliftio-core, - unordered-containers, - url, - vector, - vinyl, - yaml, - zlib, - }: - mkDerivation { - pname = "porcupine-core"; - version = "0.1.0.1"; - sha256 = "1mf43vkisrjp8jx7w208v4wb9s7i1130x6c7dlxq5m1hfywl8d3m"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson - aeson-pretty - attoparsec - base - binary - binary-orphans - bytestring - cassava - clock - conduit - containers - contravariant - data-default - deepseq - directory - docrecords - filepath - foldl - formatting - funflow - hashable - katip - lens - monad-control - mtl - optparse-applicative - path - profunctors - reader-soup - resourcet - safe-exceptions - store - streaming - streaming-bytestring - streaming-conduit - streaming-utils - template-haskell - temporary - text - transformers - transformers-base - unix - unliftio-core - unordered-containers - url - vector - vinyl - yaml - zlib - ]; - executableHaskellDepends = [ - aeson - aeson-pretty - attoparsec - base - binary - binary-orphans - bytestring - cassava - clock - conduit - containers - contravariant - data-default - deepseq - directory - docrecords - filepath - foldl - formatting - funflow - hashable - katip - lens - monad-control - mtl - optparse-applicative - path - profunctors - reader-soup - resourcet - safe-exceptions - store - streaming - streaming-bytestring - streaming-conduit - streaming-utils - template-haskell - temporary - text - transformers - transformers-base - unix - unliftio-core - unordered-containers - url - vector - vinyl - yaml - zlib - ]; - description = "Express portable, composable and reusable data tasks and pipelines"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "porcupine-http" = callPackage ( - { - mkDerivation, - aeson, - base, - bytestring, - conduit, - containers, - docrecords, - http-client, - http-conduit, - hvega, - mime-types, - porcupine-core, - reader-soup, - resourcet, - safe-exceptions, - streaming, - streaming-bytestring, - streaming-conduit, - text, - transformers, - unordered-containers, - }: - mkDerivation { - pname = "porcupine-http"; - version = "0.1.0.0"; - sha256 = "1vjz32pcjqxcwnfpq99v589l003q5cjn767mhfn5j2lb9lg52gms"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson - base - bytestring - conduit - containers - http-client - http-conduit - mime-types - porcupine-core - reader-soup - resourcet - safe-exceptions - streaming - streaming-bytestring - streaming-conduit - text - transformers - ]; - executableHaskellDepends = [ - aeson - base - bytestring - conduit - containers - docrecords - http-client - http-conduit - hvega - mime-types - porcupine-core - reader-soup - resourcet - safe-exceptions - streaming - streaming-bytestring - streaming-conduit - text - transformers - unordered-containers - ]; - description = "A location accessor for porcupine to connect to HTTP sources/sinks"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "porcupine-s3" = callPackage ( { mkDerivation, @@ -529074,7 +305783,6 @@ self: { ]; description = "A location accessor for porcupine to connect to AWS S3 sources/sinks"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "exampleS3"; } ) { }; @@ -529248,53 +305956,6 @@ self: { } ) { }; - "portager" = callPackage ( - { - mkDerivation, - base, - containers, - directory, - filepath, - hspec, - lens, - mtl, - optparse-applicative, - QuickCheck, - text, - transformers, - }: - mkDerivation { - pname = "portager"; - version = "0.1.1.0"; - sha256 = "0yxrld29mp48vv9i301qx0lrpsvbbpwpmsk4vqhg5wygk9qsbsbn"; - revision = "1"; - editedCabalFile = "1mak5a3y5ip0n6ygq33cbr132j72qy7acb00k5c2mprx2zp8aq4z"; - libraryHaskellDepends = [ - base - containers - directory - filepath - lens - mtl - optparse-applicative - text - transformers - ]; - testHaskellDepends = [ - base - containers - hspec - mtl - QuickCheck - text - ]; - description = "DSL for configuring Gentoo portage"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "portaudio" = callPackage ( { mkDerivation, @@ -529316,36 +305977,6 @@ self: { } ) { inherit (pkgs) portaudio; }; - "porte" = callPackage ( - { - mkDerivation, - base, - bytestring, - containers, - extensible-exceptions, - stringsearch, - }: - mkDerivation { - pname = "porte"; - version = "0.0.4"; - sha256 = "1cc7kbbz0vqh60acaxyn8b8pdmwx2w022sgvk1mw7p60s8jhng2d"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - bytestring - containers - extensible-exceptions - stringsearch - ]; - description = "FreeBSD ports index search and analysis tool"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "porte"; - broken = true; - } - ) { }; - "porter" = callPackage ( { mkDerivation, base }: mkDerivation { @@ -529596,28 +306227,6 @@ self: { } ) { }; - "ports" = callPackage ( - { - mkDerivation, - base, - haskell98, - unix, - }: - mkDerivation { - pname = "ports"; - version = "0.4.3.2"; - sha256 = "1ixyrg4k1f91v2r485r2fs8bgq373bhvg02mza5jdcb1amyfi7rm"; - libraryHaskellDepends = [ - base - haskell98 - unix - ]; - description = "The Haskell Ports Library"; - license = "LGPL"; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "ports-tools" = callPackage ( { mkDerivation, @@ -529704,117 +306313,6 @@ self: { } ) { }; - "poseidon" = callPackage ( - { - mkDerivation, - aeson, - async, - base, - binary, - binary-bits, - bytestring, - generics-eot, - hspec, - postgresql-libpq, - QuickCheck, - random, - scientific, - text, - time, - unordered-containers, - uuid, - }: - mkDerivation { - pname = "poseidon"; - version = "0.1.1.0"; - sha256 = "1y33xrbqlhavk8z9lnpy9wx0hiys1bqp8dnqdibrmfs3s5zq2w92"; - libraryHaskellDepends = [ - aeson - async - base - binary - binary-bits - bytestring - generics-eot - postgresql-libpq - random - scientific - text - time - unordered-containers - uuid - ]; - testHaskellDepends = [ - aeson - base - bytestring - hspec - postgresql-libpq - QuickCheck - scientific - text - time - unordered-containers - uuid - ]; - description = "Simple extensible library to run SQL file against PostgreSQL database"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "poseidon-postgis" = callPackage ( - { - mkDerivation, - aeson, - base, - binary, - bytestring, - geojson, - hspec, - poseidon, - postgresql-libpq, - QuickCheck, - scientific, - text, - time, - unordered-containers, - uuid, - wkt-geom, - }: - mkDerivation { - pname = "poseidon-postgis"; - version = "0.1.1.0"; - sha256 = "04j0pwrbmfa746la7ss5acns1miidyng48scska0qsf3xsxfqash"; - libraryHaskellDepends = [ - base - binary - bytestring - geojson - poseidon - wkt-geom - ]; - testHaskellDepends = [ - aeson - base - binary - bytestring - hspec - poseidon - postgresql-libpq - QuickCheck - scientific - text - time - unordered-containers - uuid - ]; - description = "Extension of Poseidon library for Postgis (Spatial and Geographic objects for PostgreSQL)"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "posit" = callPackage ( { mkDerivation, @@ -529889,73 +306387,6 @@ self: { } ) { }; - "positron" = callPackage ( - { - mkDerivation, - attoparsec, - base, - bytestring, - postgresql-libpq, - scientific, - template-haskell, - text, - }: - mkDerivation { - pname = "positron"; - version = "0.1.0.0"; - sha256 = "1bfjlap9942kdxrmyawky5xv15a6qalqp7hz5x88nhqnbazqsy4p"; - libraryHaskellDepends = [ - attoparsec - base - bytestring - postgresql-libpq - scientific - template-haskell - text - ]; - testHaskellDepends = [ base ]; - description = "Experiment"; - license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "posix-acl" = callPackage ( - { - mkDerivation, - acl, - base, - bytestring, - containers, - lifted-base, - monad-control, - transformers, - transformers-base, - unix, - }: - mkDerivation { - pname = "posix-acl"; - version = "0.2.0.1"; - sha256 = "1lki8r2hj5a8h41fx3yrcyqqbil6kcl96xd1ap1897ncm3inxrg3"; - libraryHaskellDepends = [ - base - bytestring - containers - lifted-base - monad-control - transformers - transformers-base - unix - ]; - librarySystemDepends = [ acl ]; - description = "Support for Posix ACL"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { inherit (pkgs) acl; }; - "posix-api" = callPackage ( { mkDerivation, @@ -530020,29 +306451,6 @@ self: { } ) { }; - "posix-filelock" = callPackage ( - { - mkDerivation, - base, - transformers, - unix, - }: - mkDerivation { - pname = "posix-filelock"; - version = "0.1"; - sha256 = "106rrbw4d0f13wcj19m6h0vy3v53j11bawqd3q4r0pcsypk53qmk"; - libraryHaskellDepends = [ - base - transformers - unix - ]; - description = "Nice wrapper around POSIX fcntl advisory locks"; - license = "unknown"; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "posix-paths" = callPackage ( { mkDerivation, @@ -530120,29 +306528,6 @@ self: { } ) { util = null; }; - "posix-realtime" = callPackage ( - { - mkDerivation, - base, - bytestring, - unix, - }: - mkDerivation { - pname = "posix-realtime"; - version = "0.0.0.4"; - sha256 = "01yz9p66m8w5418mqrrbz33dib97pscw329382wh0bi75swvlb39"; - libraryHaskellDepends = [ - base - bytestring - unix - ]; - description = "POSIX Realtime functionality"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "posix-socket" = callPackage ( { mkDerivation, @@ -530193,29 +306578,6 @@ self: { } ) { }; - "posix-waitpid" = callPackage ( - { - mkDerivation, - base, - unix, - }: - mkDerivation { - pname = "posix-waitpid"; - version = "0.1"; - sha256 = "1v3y3pg3gv0s26hdqc5fsar2j3vk4kpldkr23zxm14ncpz2w2dhk"; - revision = "1"; - editedCabalFile = "12amy5ss3myr4c8bl5k3qpx3y78sp4pw4jdzvcg5sncpq7np3hdh"; - libraryHaskellDepends = [ - base - unix - ]; - description = "Low-level wrapping of POSIX waitpid(2)"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "posplyu" = callPackage ( { mkDerivation, @@ -530288,31 +306650,6 @@ self: { } ) { }; - "postcodes" = callPackage ( - { - mkDerivation, - aeson, - base, - bytestring, - HTTP, - }: - mkDerivation { - pname = "postcodes"; - version = "0.1.1"; - sha256 = "1z0d5pl11jymd0jj1k50si35lq2af3y0apiyz6mbi25zl5x49bi8"; - libraryHaskellDepends = [ - aeson - base - bytestring - HTTP - ]; - description = "A library that gets postcode information from the uk-postcodes.com"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "postgis-trivial" = callPackage ( { mkDerivation, @@ -530367,42 +306704,6 @@ self: { } ) { }; - "postgres-embedded" = callPackage ( - { - mkDerivation, - base, - bytestring, - directory, - filepath, - network, - postgresql-simple, - process, - }: - mkDerivation { - pname = "postgres-embedded"; - version = "0.2.0"; - sha256 = "1xaf6iqlv1adg0xcmzj6ynfq3r43qafs98z9lfk2hms28g03a71y"; - libraryHaskellDepends = [ - base - directory - filepath - network - process - ]; - testHaskellDepends = [ - base - bytestring - filepath - postgresql-simple - process - ]; - description = "Library for easily running embedded PostgreSQL server for tests"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "postgres-options" = callPackage ( { mkDerivation, @@ -530433,31 +306734,6 @@ self: { } ) { }; - "postgres-tmp" = callPackage ( - { - mkDerivation, - base, - bytestring, - postgresql-simple, - text, - }: - mkDerivation { - pname = "postgres-tmp"; - version = "0.2.0"; - sha256 = "1zx5inxczzlhyb5f89f92f0ngzln49qahzraqr6ksvi5r7n7gk86"; - libraryHaskellDepends = [ - base - bytestring - postgresql-simple - text - ]; - description = "Create a temporary database that is deleted after performing some operation"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "postgres-websockets" = callPackage ( { mkDerivation, @@ -530691,103 +306967,6 @@ self: { } ) { }; - "postgresql-common" = callPackage ( - { - mkDerivation, - attoparsec, - base, - bytestring, - postgresql-simple, - }: - mkDerivation { - pname = "postgresql-common"; - version = "0.1.0.1"; - sha256 = "16b90sxn9f9rxrdr2l5gqcs6307djqaqzr31lnb4qa95dz72fl7n"; - libraryHaskellDepends = [ - attoparsec - base - bytestring - postgresql-simple - ]; - testHaskellDepends = [ - attoparsec - base - bytestring - postgresql-simple - ]; - description = "Library for sharing common PostgreSQL types across Haskell PostgreSQL libraries"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "postgresql-common-persistent" = callPackage ( - { - mkDerivation, - base, - bytestring, - persistent, - postgresql-common, - text, - }: - mkDerivation { - pname = "postgresql-common-persistent"; - version = "0.1.0.0"; - sha256 = "1kjmrnigc00362f1b55gw6k67i13rqpjaklz8v9z5jd78ac3xnq6"; - libraryHaskellDepends = [ - base - bytestring - persistent - postgresql-common - text - ]; - testHaskellDepends = [ - base - bytestring - persistent - postgresql-common - text - ]; - description = "Persistent compatibility for postgresql-common"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "postgresql-config" = callPackage ( - { - mkDerivation, - aeson, - base, - bytestring, - monad-control, - mtl, - postgresql-simple, - resource-pool, - time, - }: - mkDerivation { - pname = "postgresql-config"; - version = "0.1.0"; - sha256 = "1p5kzj2wsd3kigi9qavsqkxv9kfk4qbl809wqbdk4pd7y34ajab4"; - libraryHaskellDepends = [ - aeson - base - bytestring - monad-control - mtl - postgresql-simple - resource-pool - time - ]; - description = "Types for easy adding postgresql configuration to your program"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "postgresql-connector" = callPackage ( { mkDerivation, @@ -530842,29 +307021,6 @@ self: { } ) { }; - "postgresql-cube" = callPackage ( - { - mkDerivation, - base, - bytestring, - postgresql-simple, - }: - mkDerivation { - pname = "postgresql-cube"; - version = "0.1.0.0"; - sha256 = "0jla8rxnrk995qxyp5dgwm2d6yrcafyz5mj7yqr6v5jyzh6b59c3"; - libraryHaskellDepends = [ - base - bytestring - postgresql-simple - ]; - description = "Cube support for postgresql-simple"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "postgresql-error-codes" = callPackage ( { mkDerivation, bytestring }: mkDerivation { @@ -531128,111 +307284,6 @@ self: { } ) { }; - "postgresql-named" = callPackage ( - { - mkDerivation, - base, - bytestring, - extra, - generics-sop, - hspec, - mtl, - postgresql-libpq, - postgresql-simple, - utf8-string, - }: - mkDerivation { - pname = "postgresql-named"; - version = "0.1.0"; - sha256 = "0b7a3i8mcp9xs2zga6qi1byy489cl33j3mcrkx3smrz926ahbz95"; - libraryHaskellDepends = [ - base - bytestring - extra - generics-sop - mtl - postgresql-libpq - postgresql-simple - utf8-string - ]; - testHaskellDepends = [ - base - generics-sop - hspec - postgresql-simple - ]; - description = "Generic deserialization of PostgreSQL rows based on column names"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "postgresql-orm" = callPackage ( - { - mkDerivation, - aeson, - base, - blaze-builder, - bytestring, - bytestring-builder, - directory, - filepath, - ghc-prim, - haskell-src-exts, - mtl, - old-locale, - postgresql-simple, - process, - temporary, - text, - time, - transformers, - unix, - unordered-containers, - vector, - }: - mkDerivation { - pname = "postgresql-orm"; - version = "0.5.1"; - sha256 = "0fqas5ycxx43lvc8zm6ljh3lqgrhwrn712r2ijyjswdqrmf7wl53"; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - aeson - base - blaze-builder - bytestring - bytestring-builder - directory - filepath - ghc-prim - haskell-src-exts - mtl - old-locale - postgresql-simple - process - temporary - text - time - transformers - unix - unordered-containers - vector - ]; - executableHaskellDepends = [ - base - filepath - ]; - description = "An ORM (Object Relational Mapping) and migrations DSL for PostgreSQL"; - license = "GPL"; - hydraPlatforms = lib.platforms.none; - mainProgram = "pg_migrate"; - broken = true; - } - ) { }; - "postgresql-placeholder-converter" = callPackage ( { mkDerivation, @@ -531709,51 +307760,6 @@ self: { } ) { }; - "postgresql-simple-bind" = callPackage ( - { - mkDerivation, - attoparsec, - base, - bytestring, - data-default, - exceptions, - heredoc, - hspec, - postgresql-simple, - template-haskell, - text, - time, - }: - mkDerivation { - pname = "postgresql-simple-bind"; - version = "0.4.1"; - sha256 = "1sgwi8h4divlwwy8r8yigv7mcr2w3795g11qn3vrv63kphj6y1wa"; - libraryHaskellDepends = [ - attoparsec - base - bytestring - data-default - exceptions - heredoc - postgresql-simple - template-haskell - text - time - ]; - testHaskellDepends = [ - base - bytestring - hspec - postgresql-simple - text - ]; - description = "FFI-like bindings for PostgreSQL stored functions"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "postgresql-simple-interpolate" = callPackage ( { mkDerivation, @@ -531967,180 +307973,6 @@ self: { } ) { }; - "postgresql-simple-opts" = callPackage ( - { - mkDerivation, - base, - bytestring, - containers, - data-default, - either, - envy, - generic-deriving, - hspec, - optparse-applicative, - optparse-generic, - postgres-options, - postgresql-simple, - split, - uri-bytestring, - }: - mkDerivation { - pname = "postgresql-simple-opts"; - version = "0.6.0.1"; - sha256 = "09b213lz0405c5x82g9vwpa7blrbi86m77r1wyd8m4hlviid3s7q"; - libraryHaskellDepends = [ - base - bytestring - data-default - either - envy - generic-deriving - optparse-applicative - optparse-generic - postgres-options - postgresql-simple - split - uri-bytestring - ]; - testHaskellDepends = [ - base - bytestring - containers - data-default - envy - hspec - optparse-applicative - postgres-options - postgresql-simple - ]; - description = "An optparse-applicative and envy parser for postgres options"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "postgresql-simple-queue" = callPackage ( - { - mkDerivation, - aeson, - async, - base, - bytestring, - exceptions, - hspec, - hspec-discover, - hspec-expectations-lifted, - hspec-pg-transact, - monad-control, - pg-transact, - postgresql-simple, - random, - split, - stm, - text, - time, - transformers, - }: - mkDerivation { - pname = "postgresql-simple-queue"; - version = "1.0.1"; - sha256 = "0gss9s2splrvwgxhkjpqvx0cg9kx9dqpw4aq2wbh8l879v2nj2rk"; - libraryHaskellDepends = [ - aeson - base - bytestring - exceptions - monad-control - pg-transact - postgresql-simple - random - stm - text - time - transformers - ]; - testHaskellDepends = [ - aeson - async - base - bytestring - exceptions - hspec - hspec-discover - hspec-expectations-lifted - hspec-pg-transact - monad-control - pg-transact - postgresql-simple - random - split - stm - text - time - transformers - ]; - testToolDepends = [ hspec-discover ]; - description = "A PostgreSQL backed queue"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "postgresql-simple-sop" = callPackage ( - { - mkDerivation, - base, - generics-sop, - postgresql-simple, - }: - mkDerivation { - pname = "postgresql-simple-sop"; - version = "0.2"; - sha256 = "05plsdm4i4nw35pcbbk1yb91gpj6jq5hygsqijdmnsxyl9d6vbby"; - libraryHaskellDepends = [ - base - generics-sop - postgresql-simple - ]; - description = "Generic functions for postgresql-simple"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "postgresql-simple-typed" = callPackage ( - { - mkDerivation, - base, - postgresql-libpq, - postgresql-simple, - template-haskell, - transformers, - typedquery, - utf8-string, - }: - mkDerivation { - pname = "postgresql-simple-typed"; - version = "0.1.1.1"; - sha256 = "1sfp83xy797zamgyxvcm4jrg3x1jl8f0gzb5c3jsmqbg16rnx0ay"; - libraryHaskellDepends = [ - base - postgresql-libpq - postgresql-simple - template-haskell - transformers - typedquery - utf8-string - ]; - description = "Typed extension for PostgreSQL simple"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "postgresql-simple-url" = callPackage ( { mkDerivation, @@ -532498,39 +308330,6 @@ self: { } ) { }; - "postgresql-typed-lifted" = callPackage ( - { - mkDerivation, - base, - base-unicode-symbols, - bytestring, - exceptions, - lens, - monad-control, - postgresql-typed, - transformers-base, - }: - mkDerivation { - pname = "postgresql-typed-lifted"; - version = "0.5.1.1"; - sha256 = "0svslfvdxncvc3samyah54d648lf3mxzh5kw5286c45jr5h6p9pq"; - libraryHaskellDepends = [ - base - base-unicode-symbols - bytestring - exceptions - lens - monad-control - postgresql-typed - transformers-base - ]; - description = "postgresql-typed operations lifted to any instance of MonadBase or MonadBaseControl"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "postgrest" = callPackage ( { mkDerivation, @@ -532693,121 +308492,6 @@ self: { } ) { }; - "postgrest-ws" = callPackage ( - { - mkDerivation, - aeson, - ansi-wl-pprint, - base, - base64-bytestring, - bytestring, - configurator, - containers, - contravariant, - either, - hasql, - hasql-pool, - heredoc, - hspec, - hspec-wai, - hspec-wai-json, - http-types, - jose, - jwt, - lens, - lens-aeson, - optparse-applicative, - postgresql-libpq, - protolude, - retry, - stm, - stm-containers, - stringsearch, - text, - time, - transformers, - unordered-containers, - wai, - wai-app-static, - wai-extra, - wai-websockets, - warp, - websockets, - }: - mkDerivation { - pname = "postgrest-ws"; - version = "0.4.2.0"; - sha256 = "05s6w638acq9ixsflcgibjbi6h7f0knqq6yp5wilvshn07x5dcyi"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson - base - bytestring - contravariant - either - hasql - hasql-pool - http-types - jose - jwt - lens - lens-aeson - postgresql-libpq - protolude - retry - stm - stm-containers - stringsearch - text - time - unordered-containers - wai - wai-websockets - websockets - ]; - executableHaskellDepends = [ - ansi-wl-pprint - base - base64-bytestring - bytestring - configurator - hasql - hasql-pool - heredoc - optparse-applicative - protolude - text - time - transformers - wai - wai-app-static - wai-extra - warp - ]; - testHaskellDepends = [ - aeson - base - containers - hasql - hasql-pool - hspec - hspec-wai - hspec-wai-json - http-types - protolude - stm - unordered-containers - wai-extra - ]; - description = "PostgREST extension to map LISTEN/NOTIFY messages to Websockets"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "postgrest-ws"; - broken = true; - } - ) { }; - "postie" = callPackage ( { mkDerivation, @@ -532847,42 +308531,6 @@ self: { } ) { }; - "postmark" = callPackage ( - { - mkDerivation, - aeson, - attoparsec, - base, - bytestring, - containers, - http-client-tls, - http-types, - network-api-support, - text, - }: - mkDerivation { - pname = "postmark"; - version = "0.2.7"; - sha256 = "0y8bflkqf8sdp77irkm18apnajwx5b4pl7qr2i8s9x0zg0vcyr9c"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson - attoparsec - base - bytestring - containers - http-client-tls - http-types - network-api-support - text - ]; - description = "Library for postmarkapp.com HTTP Api"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "postmark-streams" = callPackage ( { mkDerivation, @@ -532920,346 +308568,6 @@ self: { } ) { }; - "postmaster" = callPackage ( - { - mkDerivation, - base, - bytestring, - containers, - directory, - hopenssl, - hsdns, - hsemail, - hsyslog, - mtl, - network, - old-time, - parsec, - unix, - }: - mkDerivation { - pname = "postmaster"; - version = "0.3.3"; - sha256 = "05608xvaig1d67j3h8ykw7a11yr1mqkw98p0ii7gbp4mp3d9kncd"; - revision = "2"; - editedCabalFile = "0jchzy502czxfm34v9b1jyfzzaiphvfqm5vdk9fz9d0vhqwr7jjg"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - bytestring - containers - directory - hopenssl - hsdns - hsemail - hsyslog - mtl - network - old-time - parsec - unix - ]; - description = "Postmaster ESMTP Server"; - license = "GPL"; - hydraPlatforms = lib.platforms.none; - mainProgram = "postmaster"; - broken = true; - } - ) { }; - - "potato-tool" = callPackage ( - { - mkDerivation, - base, - binary, - bytestring, - split, - }: - mkDerivation { - pname = "potato-tool"; - version = "0.1.0.2"; - sha256 = "1d95y8nchzzy3zaq1dsm94b7nhrlxhwpq7yn9dr1nisz43f4j7bx"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - binary - bytestring - split - ]; - description = "Command line Dreamcast VMU filesystem toolset"; - license = lib.licenses.gpl2Only; - hydraPlatforms = lib.platforms.none; - mainProgram = "potato-tool"; - broken = true; - } - ) { }; - - "potoki" = callPackage ( - { mkDerivation, potoki-core }: - mkDerivation { - pname = "potoki"; - version = "2.1.4.1"; - sha256 = "1hc7jp7q6mdqva40v0dppihp1bnl30h7vxnkawg0kmczq5p9js35"; - libraryHaskellDepends = [ potoki-core ]; - description = "Simple streaming in IO"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "potoki-cereal" = callPackage ( - { - mkDerivation, - acquire, - attoparsec, - base, - base-prelude, - bytestring, - cereal, - directory, - potoki, - potoki-core, - profunctors, - QuickCheck, - quickcheck-instances, - rerebase, - tasty, - tasty-hunit, - tasty-quickcheck, - text, - }: - mkDerivation { - pname = "potoki-cereal"; - version = "0.3.2"; - sha256 = "1fq36ahdrr16mxas2xh4qiwcagy61z2zfvc68p7r5hgdf36yz4d9"; - libraryHaskellDepends = [ - acquire - attoparsec - base - base-prelude - bytestring - cereal - potoki-core - profunctors - text - ]; - testHaskellDepends = [ - directory - potoki - QuickCheck - quickcheck-instances - rerebase - tasty - tasty-hunit - tasty-quickcheck - ]; - description = "Streaming serialization"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "potoki-conduit" = callPackage ( - { - mkDerivation, - acquire, - base, - base-prelude, - bytestring, - conduit, - potoki, - potoki-core, - profunctors, - QuickCheck, - quickcheck-instances, - rerebase, - slave-thread, - stm-chans, - tasty, - tasty-hunit, - tasty-quickcheck, - text, - }: - mkDerivation { - pname = "potoki-conduit"; - version = "0.1"; - sha256 = "11hg5zib91b1kp75amlng96b1n357rkj120afnc0825vvb81ky14"; - libraryHaskellDepends = [ - acquire - base - base-prelude - bytestring - conduit - potoki-core - profunctors - slave-thread - stm-chans - text - ]; - testHaskellDepends = [ - conduit - potoki - QuickCheck - quickcheck-instances - rerebase - tasty - tasty-hunit - tasty-quickcheck - ]; - description = "Integration of \"potoki\" and \"conduit\""; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "potoki-core" = callPackage ( - { - mkDerivation, - acquire, - attoparsec, - base, - bytestring, - criterion, - deepseq, - deferred-folds, - directory, - foldl, - hashable, - ilist, - primitive, - profunctors, - ptr, - QuickCheck, - quickcheck-instances, - random, - rerebase, - scanner, - split, - stm, - stm-chans, - tasty, - tasty-hunit, - tasty-quickcheck, - text, - text-builder, - time, - transformers, - unordered-containers, - vector, - }: - mkDerivation { - pname = "potoki-core"; - version = "2.3.4.1"; - sha256 = "0mg8hd85xim33jv1abzgjfcy85mmrrvs30gpvspdci5d7xghqrmv"; - libraryHaskellDepends = [ - acquire - attoparsec - base - bytestring - deepseq - deferred-folds - directory - foldl - hashable - primitive - profunctors - ptr - scanner - stm - stm-chans - text - text-builder - time - transformers - unordered-containers - vector - ]; - testHaskellDepends = [ - acquire - attoparsec - deferred-folds - foldl - ilist - QuickCheck - quickcheck-instances - random - rerebase - split - tasty - tasty-hunit - tasty-quickcheck - ]; - benchmarkHaskellDepends = [ - criterion - rerebase - ]; - description = "Low-level components of \"potoki\""; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "potoki-hasql" = callPackage ( - { - mkDerivation, - acquire, - base, - bytestring, - hasql, - potoki-core, - profunctors, - text, - vector, - }: - mkDerivation { - pname = "potoki-hasql"; - version = "1.6"; - sha256 = "1na6nc9cbimhwzwppz48ssffhdx0j223pmkk8wkjkj9xpzpnx2w1"; - libraryHaskellDepends = [ - acquire - base - bytestring - hasql - potoki-core - profunctors - text - vector - ]; - description = "Integration of \"potoki\" and \"hasql\""; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "potoki-zlib" = callPackage ( - { - mkDerivation, - acquire, - base, - bytestring, - potoki-core, - zlib, - }: - mkDerivation { - pname = "potoki-zlib"; - version = "0.3"; - sha256 = "0baayjaw3x5hfx6xdhiq3j8j012x6nrlql8fc6r51xpk3blwg588"; - libraryHaskellDepends = [ - acquire - base - bytestring - potoki-core - zlib - ]; - description = "Streaming ZLib decompression"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "potrace" = callPackage ( { mkDerivation, @@ -533367,46 +308675,6 @@ self: { } ) { }; - "powermate" = callPackage ( - { - mkDerivation, - base, - directory, - unix, - }: - mkDerivation { - pname = "powermate"; - version = "1.0"; - sha256 = "162vb3y706p3hilbhwicg3g1jsc53gmci9mjqdlraj2l2wz0lgyg"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - directory - unix - ]; - executableHaskellDepends = [ base ]; - description = "bindings for Griffin PowerMate USB"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "powerpc" = callPackage ( - { mkDerivation, base }: - mkDerivation { - pname = "powerpc"; - version = "0.0.1"; - sha256 = "0z3nqv8l9h0kwdaqb2vnk7vx5d0hmx02giv2k01llk7vznlkqqny"; - libraryHaskellDepends = [ base ]; - description = "Tools for PowerPC programs"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "powerqueue" = callPackage ( { mkDerivation, @@ -533484,111 +308752,6 @@ self: { } ) { }; - "powerqueue-levelmem" = - callPackage - ( - { - mkDerivation, - async, - base, - bytestring, - cereal, - criterion, - dlist, - filepath, - focus, - hspec, - leveldb, - leveldb-haskell, - list-t, - powerqueue, - snappy, - stm, - stm-containers, - temporary, - timespan, - unagi-chan, - }: - mkDerivation { - pname = "powerqueue-levelmem"; - version = "0.1.1.0"; - sha256 = "1f3psry9vm6wli1h219qqrv2q64rnmcpn0jv8jn8k6hqabhaa7wl"; - libraryHaskellDepends = [ - async - base - bytestring - cereal - dlist - filepath - focus - leveldb-haskell - list-t - powerqueue - stm - stm-containers - timespan - unagi-chan - ]; - testHaskellDepends = [ - async - base - cereal - hspec - powerqueue - temporary - ]; - testSystemDepends = [ - leveldb - snappy - ]; - benchmarkHaskellDepends = [ - base - cereal - criterion - powerqueue - temporary - ]; - benchmarkSystemDepends = [ - leveldb - snappy - ]; - description = "A high performance in memory and LevelDB backend for powerqueue"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) - { - inherit (pkgs) leveldb; - inherit (pkgs) snappy; - }; - - "powerqueue-sqs" = callPackage ( - { - mkDerivation, - aws-simple, - base, - powerqueue, - text, - timespan, - }: - mkDerivation { - pname = "powerqueue-sqs"; - version = "0.1.0.0"; - sha256 = "1awlx6ijmsddps3cvd5f88qs505127a7zjwijrlkvj3rgsb2gffv"; - libraryHaskellDepends = [ - aws-simple - base - powerqueue - text - timespan - ]; - description = "A Amazon SQS backend for powerqueue"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "ppad-aead" = callPackage ( { mkDerivation, @@ -534342,27 +309505,6 @@ self: { } ) { }; - "pprecord" = callPackage ( - { - mkDerivation, - base, - boxes, - }: - mkDerivation { - pname = "pprecord"; - version = "0.2.0.0"; - sha256 = "1gpr6sndh3pc43f1aks7wq8h969bbj2rc01rvaq9pkdnwqlqr7r4"; - libraryHaskellDepends = [ - base - boxes - ]; - description = "A library for pretty printing Records"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "pptable" = callPackage ( { mkDerivation, @@ -534413,31 +309555,6 @@ self: { } ) { }; - "pqc" = callPackage ( - { - mkDerivation, - base, - QuickCheck, - random, - stm, - }: - mkDerivation { - pname = "pqc"; - version = "0.8"; - sha256 = "1n71qhlxn9js5cizyqdq9f7m08m5j0354871r8b47bnzdi2kqkc4"; - libraryHaskellDepends = [ - base - QuickCheck - random - stm - ]; - description = "Parallel batch driver for QuickCheck"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "pqueue" = callPackage ( { mkDerivation, @@ -534478,36 +309595,6 @@ self: { } ) { }; - "pqueue-mtl" = callPackage ( - { - mkDerivation, - base, - containers, - ghc-prim, - MaybeT, - mtl, - stateful-mtl, - uvector, - }: - mkDerivation { - pname = "pqueue-mtl"; - version = "1.0.7"; - sha256 = "0ikg11klbq25fjcbpyb7i7z9wyx9mf4hv262m14j741x4dk9ib6g"; - libraryHaskellDepends = [ - base - containers - ghc-prim - MaybeT - mtl - stateful-mtl - uvector - ]; - description = "Fully encapsulated monad transformers with queuelike functionality"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "pr-tools" = callPackage ( { mkDerivation, @@ -534584,97 +309671,6 @@ self: { } ) { }; - "practice-room" = callPackage ( - { - mkDerivation, - base, - bytestring, - data-default, - directory, - json, - mps, - }: - mkDerivation { - pname = "practice-room"; - version = "0.0.2"; - sha256 = "071arrk0wir2lwziw6p3cbq6ybjdf3gfc4d25sh21gpnk10ighp2"; - isLibrary = false; - isExecutable = true; - enableSeparateDataOutput = true; - executableHaskellDepends = [ - base - bytestring - data-default - directory - json - mps - ]; - description = "Practice Room"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "practice-room"; - } - ) { }; - - "praglude" = callPackage ( - { - mkDerivation, - aeson, - base, - base64-bytestring, - bytestring, - casing, - containers, - data-default, - deepseq, - directory, - filepath, - hashable, - lens, - mtl, - random, - semigroups, - string-convert, - template-haskell, - text, - time, - unordered-containers, - vector, - }: - mkDerivation { - pname = "praglude"; - version = "0.4.1.0"; - sha256 = "1c2wvv37calr8hm5p6m5f8m9plrcr5acc1ljsf7d3hq0dbqb5fvc"; - libraryHaskellDepends = [ - aeson - base - base64-bytestring - bytestring - casing - containers - data-default - deepseq - directory - filepath - hashable - lens - mtl - random - semigroups - string-convert - template-haskell - text - time - unordered-containers - vector - ]; - description = "A pragmatic Prelude"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "pragmatic-show" = callPackage ( { mkDerivation, @@ -534747,139 +309743,6 @@ self: { } ) { }; - "preamble" = callPackage ( - { - mkDerivation, - aeson, - base, - basic-prelude, - exceptions, - fast-logger, - lens, - lifted-base, - monad-control, - monad-logger, - MonadRandom, - mtl, - network, - resourcet, - safe, - template-haskell, - text, - text-manipulate, - time, - transformers-base, - unordered-containers, - uuid, - }: - mkDerivation { - pname = "preamble"; - version = "0.0.65"; - sha256 = "1i11d46rrnlsjipy74rb9yfq0d91lk7wjkiz4z9sl099pgmgc9lw"; - libraryHaskellDepends = [ - aeson - base - basic-prelude - exceptions - fast-logger - lens - lifted-base - monad-control - monad-logger - MonadRandom - mtl - network - resourcet - safe - template-haskell - text - text-manipulate - time - transformers-base - unordered-containers - uuid - ]; - description = "Yet another prelude"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "precis" = callPackage ( - { - mkDerivation, - base, - Cabal, - containers, - cpphs, - directory, - filepath, - haskell-src-exts, - xhtml, - }: - mkDerivation { - pname = "precis"; - version = "0.5.0"; - sha256 = "0d0cl60p58i8w2ll8z826r94zx0svm7v578fy70r7i19pn64l6bd"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - Cabal - containers - cpphs - directory - filepath - haskell-src-exts - xhtml - ]; - description = "Diff Cabal packages"; - license = "unknown"; - hydraPlatforms = lib.platforms.none; - mainProgram = "precis"; - broken = true; - } - ) { }; - - "precursor" = callPackage ( - { - mkDerivation, - base, - bifunctors, - bytestring, - containers, - doctest, - mtl, - QuickCheck, - text, - text-show, - }: - mkDerivation { - pname = "precursor"; - version = "0.1.0.0"; - sha256 = "0qaqwvgwap1d8n2z1lxc4c6d20ysspjk6rmz1vnii32xam27mc9l"; - libraryHaskellDepends = [ - base - bifunctors - bytestring - containers - mtl - text - text-show - ]; - testHaskellDepends = [ - base - doctest - QuickCheck - ]; - description = "Prelude replacement"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "pred-set" = callPackage ( { mkDerivation, @@ -534903,96 +309766,6 @@ self: { } ) { }; - "pred-trie" = callPackage ( - { - mkDerivation, - attoparsec, - base, - containers, - criterion, - deepseq, - errors, - hashable, - hashtables, - mtl, - poly-arity, - pred-set, - QuickCheck, - semigroups, - sets, - strict, - tasty, - tasty-hunit, - tasty-quickcheck, - text, - tries, - unordered-containers, - }: - mkDerivation { - pname = "pred-trie"; - version = "0.6.1"; - sha256 = "1db4dw9d1r8z1qvwcv4q6imws65811skj5a04j032qbrnshsvjfr"; - libraryHaskellDepends = [ - base - containers - deepseq - hashable - hashtables - mtl - poly-arity - pred-set - QuickCheck - semigroups - strict - tries - unordered-containers - ]; - testHaskellDepends = [ - attoparsec - base - containers - deepseq - errors - hashable - hashtables - mtl - poly-arity - pred-set - QuickCheck - semigroups - strict - tasty - tasty-hunit - tasty-quickcheck - text - tries - unordered-containers - ]; - benchmarkHaskellDepends = [ - attoparsec - base - containers - criterion - deepseq - hashable - hashtables - mtl - poly-arity - pred-set - QuickCheck - semigroups - sets - strict - text - tries - unordered-containers - ]; - description = "Predicative tries"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "predicate" = callPackage ( { mkDerivation, @@ -535016,20 +309789,6 @@ self: { } ) { }; - "predicate-class" = callPackage ( - { mkDerivation, base }: - mkDerivation { - pname = "predicate-class"; - version = "0.1.0.1"; - sha256 = "03rw51jpfcl827nrv1fxlghqwg0mk89l1rkqwd743lnsydwzi15h"; - libraryHaskellDepends = [ base ]; - description = "Helper class for passing context along a predicate value"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "predicate-transformers" = callPackage ( { mkDerivation, @@ -535179,104 +309938,6 @@ self: { } ) { }; - "prednote" = callPackage ( - { - mkDerivation, - base, - bytestring, - containers, - contravariant, - QuickCheck, - rainbow, - split, - tasty, - tasty-quickcheck, - tasty-th, - text, - transformers, - }: - mkDerivation { - pname = "prednote"; - version = "0.36.0.4"; - sha256 = "139brai7fd4vwjmxb35zzpfcz01gplx9vq0f0aqbmz8sw10g5d5c"; - libraryHaskellDepends = [ - base - bytestring - containers - contravariant - rainbow - split - text - transformers - ]; - testHaskellDepends = [ - base - bytestring - containers - contravariant - QuickCheck - rainbow - split - tasty - tasty-quickcheck - tasty-th - text - transformers - ]; - description = "Evaluate and display trees of predicates"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "prednote-test" = callPackage ( - { - mkDerivation, - barecheck, - base, - containers, - prednote, - QuickCheck, - quickpull, - rainbow, - rainbow-tests, - text, - }: - mkDerivation { - pname = "prednote-test"; - version = "0.26.0.4"; - sha256 = "0amx13lnbx6x37adpjrxjac23qbx1xvsk82pn572kyp7pshn7ijj"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - barecheck - base - containers - prednote - QuickCheck - quickpull - rainbow - rainbow-tests - text - ]; - executableHaskellDepends = [ - barecheck - base - containers - prednote - QuickCheck - quickpull - rainbow - rainbow-tests - text - ]; - description = "Tests and QuickCheck generators to accompany prednote"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "prefetch" = callPackage ( { mkDerivation, @@ -535356,115 +310017,6 @@ self: { } ) { }; - "prefork" = callPackage ( - { - mkDerivation, - base, - cab, - containers, - data-default, - directory, - filepath, - hspec, - process, - stm, - system-argv0, - system-filepath, - unix, - }: - mkDerivation { - pname = "prefork"; - version = "0.0.9"; - sha256 = "0zraxygc8ybf93sw7lq60nynd5k1q65dns5kl4mdyflv3in8cfw8"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - containers - data-default - process - stm - system-argv0 - system-filepath - unix - ]; - testHaskellDepends = [ - base - cab - containers - directory - filepath - hspec - process - stm - unix - ]; - description = "A library for building a prefork-style server quickly"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "pregame" = callPackage ( - { - mkDerivation, - aeson, - array, - base, - bytestring, - containers, - data-default, - deepseq, - either, - ghc-prim, - integer-gmp, - lens, - mtl, - safe, - StateVar, - stm, - text, - text-conversions, - time, - tuple, - unordered-containers, - vector, - }: - mkDerivation { - pname = "pregame"; - version = "1.0.3.0"; - sha256 = "0zvp39bakjyxrhkrfk64gvbn4c6p83w5i0hna19gay8b3bwpcz24"; - libraryHaskellDepends = [ - aeson - array - base - bytestring - containers - data-default - deepseq - either - ghc-prim - integer-gmp - lens - mtl - safe - StateVar - stm - text - text-conversions - time - tuple - unordered-containers - vector - ]; - description = "Prelude for applications"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "prelate" = callPackage ( { mkDerivation, @@ -535510,51 +310062,6 @@ self: { } ) { }; - "preliminaries" = callPackage ( - { - mkDerivation, - abstract-par, - base, - bifunctors, - classy-prelude-conduit, - data-default, - microlens-contra, - microlens-platform, - monad-par, - monad-parallel, - mono-traversable-instances, - mtl, - parallel, - stm-conduit, - string-conversions, - }: - mkDerivation { - pname = "preliminaries"; - version = "0.1.6.0"; - sha256 = "0vb3jv631qfyb5wdnrq3qzdky2md7mhwpg6vknps420b0j0ybczx"; - libraryHaskellDepends = [ - abstract-par - base - bifunctors - classy-prelude-conduit - data-default - microlens-contra - microlens-platform - monad-par - monad-parallel - mono-traversable-instances - mtl - parallel - stm-conduit - string-conversions - ]; - description = "A larger alternative to the Prelude"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "prelude-compat" = callPackage ( { mkDerivation, base }: mkDerivation { @@ -535592,54 +310099,6 @@ self: { } ) { }; - "prelude-generalize" = callPackage ( - { - mkDerivation, - base, - comonad, - logict, - transformers, - }: - mkDerivation { - pname = "prelude-generalize"; - version = "0.4"; - sha256 = "0h452pn7zs97z5gv2p3x9pg61phphwcw5y5g1w38k3gihdvym8jl"; - libraryHaskellDepends = [ - base - comonad - logict - transformers - ]; - description = "Another kind of alternate Prelude file"; - license = lib.licenses.publicDomain; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "prelude-plus" = callPackage ( - { - mkDerivation, - base, - utf8-string, - }: - mkDerivation { - pname = "prelude-plus"; - version = "0.0.0.6"; - sha256 = "139b0580f1gx4hj211c7lwcq5y6a0qpdzsaidvqbfq36h04w8kjv"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - utf8-string - ]; - description = "Prelude for rest of us"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "prelude-prime" = callPackage ( { mkDerivation, base }: mkDerivation { @@ -535695,109 +310154,6 @@ self: { } ) { }; - "preprocess-haskell" = callPackage ( - { - mkDerivation, - base, - base-unicode-symbols, - basic-prelude, - bytestring, - Cabal, - containers, - cpphs, - deepseq, - directory, - file-embed, - foldl, - haskell-src-exts, - here, - system-filepath, - temporary, - text, - turtle, - unix, - }: - mkDerivation { - pname = "preprocess-haskell"; - version = "0.0.1.1"; - sha256 = "1jglriabjw44f9phx7ah87wwmri64a61v236dzs58snagzdiq84r"; - libraryHaskellDepends = [ - base - base-unicode-symbols - basic-prelude - bytestring - Cabal - containers - cpphs - deepseq - directory - file-embed - foldl - haskell-src-exts - here - system-filepath - temporary - text - turtle - unix - ]; - description = "Preprocess Haskell Repositories"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "preprocessor" = callPackage ( - { - mkDerivation, - base, - Cabal, - directory, - extra, - filemanip, - filepath, - ghc, - ghc-paths, - haskell-src-exts, - hspec, - microlens, - process, - template-haskell, - temporary, - }: - mkDerivation { - pname = "preprocessor"; - version = "0.1.0.0"; - sha256 = "1kl604sxxzrpkan7lr3nx38m3hjh1vr1k457pksi8xc35x31kvgj"; - libraryHaskellDepends = [ - base - Cabal - directory - extra - filemanip - filepath - ghc - ghc-paths - microlens - process - template-haskell - ]; - testHaskellDepends = [ - base - directory - haskell-src-exts - hspec - process - temporary - ]; - description = "Remove cpp annotations to get the source ready for static analysis"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "preprocessor-tools" = callPackage ( { mkDerivation, @@ -535956,138 +310312,6 @@ self: { } ) { }; - "presburger" = callPackage ( - { - mkDerivation, - base, - containers, - pretty, - QuickCheck, - }: - mkDerivation { - pname = "presburger"; - version = "1.3.1"; - sha256 = "15yhqc6gk14dsqr4b0x87i1xw0sc3iscw28grg4vmcspsjxil0l6"; - revision = "2"; - editedCabalFile = "0295mpzywmg6qrp90fnl51pvr7nwzc2n5p51w90j735il0pqpa3q"; - libraryHaskellDepends = [ - base - containers - pretty - ]; - testHaskellDepends = [ - base - QuickCheck - ]; - description = "A decision procedure for quantifier-free linear arithmetic"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "present" = callPackage ( - { - mkDerivation, - base, - template-haskell, - }: - mkDerivation { - pname = "present"; - version = "4.1.0"; - sha256 = "0ys2ibfh518r9rg9bl2m5cmyfxmri47g8wg7q0n5fcbsh4sb7s5s"; - libraryHaskellDepends = [ - base - template-haskell - ]; - description = "Make presentations for data types"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "press" = callPackage ( - { - mkDerivation, - base, - containers, - json, - mtl, - parsec, - }: - mkDerivation { - pname = "press"; - version = "0.1.2"; - sha256 = "0aa3079az8bazyzqxxhx575vxr4a0p3wvlgh765w3k01vh6dkzgf"; - libraryHaskellDepends = [ - base - containers - json - mtl - parsec - ]; - description = "Text template library targeted at the web / HTML generation"; - license = "GPL"; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "presto-hdbc" = callPackage ( - { - mkDerivation, - aeson, - aeson-pretty, - base, - bytestring, - convertible, - either, - either-unwrap, - errors, - HDBC, - HTTP, - http-streams, - io-streams, - lens, - mtl, - network-uri, - safe, - scientific, - text, - transformers, - }: - mkDerivation { - pname = "presto-hdbc"; - version = "0.1.0.3"; - sha256 = "1353nh8pq3ja4pw1fps0a46rfizph47l7k5gqlnkbz8w8b41miap"; - libraryHaskellDepends = [ - aeson - aeson-pretty - base - bytestring - convertible - either - either-unwrap - errors - HDBC - HTTP - http-streams - io-streams - lens - mtl - network-uri - safe - scientific - text - transformers - ]; - description = "An HDBC connector for Presto"; - license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "prettify" = callPackage ( { mkDerivation, @@ -536295,55 +310519,6 @@ self: { } ) { }; - "pretty-ghci" = callPackage ( - { - mkDerivation, - alex, - array, - base, - directory, - filepath, - haddock-library, - happy, - prettyprinter, - prettyprinter-ansi-terminal, - process, - text, - }: - mkDerivation { - pname = "pretty-ghci"; - version = "0.2.0.0"; - sha256 = "1ng4ypjz3yq2f536pd89bkwsdc2icfkw54ys5j5kzm75khgkhqg1"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - array - base - haddock-library - prettyprinter - prettyprinter-ansi-terminal - text - ]; - libraryToolDepends = [ - alex - happy - ]; - executableHaskellDepends = [ base ]; - testHaskellDepends = [ - base - directory - filepath - prettyprinter - process - ]; - description = "Functionality for beautifying GHCi"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "pp-ghci"; - broken = true; - } - ) { }; - "pretty-hex" = callPackage ( { mkDerivation, @@ -536396,27 +310571,6 @@ self: { } ) { }; - "pretty-loc" = callPackage ( - { - mkDerivation, - base, - text, - }: - mkDerivation { - pname = "pretty-loc"; - version = "0.1.0.1"; - sha256 = "196slpa651p7yq8107c4pkwdfkfmg2bn6ibyqz22c46psklyrisb"; - libraryHaskellDepends = [ - base - text - ]; - description = "Tracking and highlighting of locations in source files"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "pretty-ncols" = callPackage ( { mkDerivation, @@ -537192,153 +311346,6 @@ self: { } ) { }; - "prettyprinter-vty" = callPackage ( - { - mkDerivation, - base, - prettyprinter, - vty, - }: - mkDerivation { - pname = "prettyprinter-vty"; - version = "0.1.0.0"; - sha256 = "12nj0v9p5bjbhwmkknc2ybdw52m5hngnf7c53qfi3crbrx4maxrd"; - revision = "1"; - editedCabalFile = "120lhr6g3grsybq5bp0vg38cdb78dysq8nwa206ghzigaxs34vcd"; - libraryHaskellDepends = [ - base - prettyprinter - vty - ]; - description = "prettyprinter backend for vty"; - license = lib.licenses.isc; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "preview" = callPackage ( - { - mkDerivation, - base, - containers, - pretty, - strict-data, - text, - util-plus, - }: - mkDerivation { - pname = "preview"; - version = "0.1.0.4"; - sha256 = "0z8dz0frc43jnm65iybvpcn2689c3q2iy3zdqjs623clwsvrmh3b"; - libraryHaskellDepends = [ - base - containers - pretty - strict-data - text - util-plus - ]; - description = "The method of previewing data (instead of wholly show-ing it)"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "prim" = callPackage ( - { mkDerivation, ghc-prim }: - mkDerivation { - pname = "prim"; - version = "0.1.0.9"; - sha256 = "15igqxb77ycl9lfs1bl1l9x3cynsg4kqzkr54q46ly4l315bsrq4"; - libraryHaskellDepends = [ ghc-prim ]; - description = "An ergonomic but conservative interface to ghc-prim"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "prim-array" = callPackage ( - { - mkDerivation, - base, - ghc-prim, - primitive, - semigroups, - }: - mkDerivation { - pname = "prim-array"; - version = "0.2.2"; - sha256 = "0lr7qni6wfiazn2gj6hnlkfzxdwvfhfqfkacj43w26s34irda4g3"; - revision = "1"; - editedCabalFile = "120v58dhida6ms5wd4skw32y2mc70594dhipmz2zp4kjcqmllmdq"; - libraryHaskellDepends = [ - base - ghc-prim - primitive - semigroups - ]; - description = "Primitive byte array with type variable"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "prim-instances" = callPackage ( - { - mkDerivation, - base, - primitive, - QuickCheck, - quickcheck-classes, - }: - mkDerivation { - pname = "prim-instances"; - version = "0.2"; - sha256 = "0dx5byf61725220hvwd72k2yc2n1x0qpl6rj3gfdldww98g700iq"; - libraryHaskellDepends = [ - base - primitive - ]; - testHaskellDepends = [ - base - QuickCheck - quickcheck-classes - ]; - description = "Prim typeclass instances"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "prim-ref" = callPackage ( - { - mkDerivation, - base, - ghc-prim, - primitive, - semigroups, - }: - mkDerivation { - pname = "prim-ref"; - version = "0.1"; - sha256 = "0fyjxpk4xllkh3r5b7fbb4sb6whxwbdm5lr9zn44qb9v4g0nx2d8"; - libraryHaskellDepends = [ - base - ghc-prim - primitive - semigroups - ]; - description = "Primitive byte array with type variable"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "prim-spoon" = callPackage ( { mkDerivation, @@ -537578,41 +311585,6 @@ self: { } ) { }; - "primes-type" = callPackage ( - { - mkDerivation, - base, - criterion, - deepseq, - HTF, - primes, - }: - mkDerivation { - pname = "primes-type"; - version = "0.2.0.3"; - sha256 = "0y0dq283zshkd7gwywr2dvjr073bz5rbjvgqrxkbvnk97dcq4qjx"; - libraryHaskellDepends = [ - base - deepseq - primes - ]; - testHaskellDepends = [ - base - HTF - primes - ]; - benchmarkHaskellDepends = [ - base - criterion - primes - ]; - description = "Type-safe prime numbers"; - license = lib.licenses.isc; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "primesieve" = callPackage ( { mkDerivation, @@ -537822,20 +311794,6 @@ self: { } ) { }; - "primitive-convenience" = callPackage ( - { mkDerivation, primitive }: - mkDerivation { - pname = "primitive-convenience"; - version = "0.1"; - sha256 = "1xnyyw76kh42fy1b1wkc143bg3588gbp48990xdskcad1aj4fyan"; - libraryHaskellDepends = [ primitive ]; - description = "convenience class for PrimMonad m/PrimState m"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "primitive-extras" = callPackage ( { mkDerivation, @@ -537889,95 +311847,6 @@ self: { } ) { }; - "primitive-foreign" = callPackage ( - { - mkDerivation, - base, - primitive, - QuickCheck, - }: - mkDerivation { - pname = "primitive-foreign"; - version = "0.1.1"; - sha256 = "15fv32c5q1x1q4qwwcaqhn01bzv887njc8qnqhnp7p3h5m0xz2pc"; - libraryHaskellDepends = [ - base - primitive - ]; - testHaskellDepends = [ - base - primitive - QuickCheck - ]; - description = "using the `Prim` interface for the FFI"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "primitive-indexed" = callPackage ( - { - mkDerivation, - base, - doctest, - primitive, - QuickCheck, - }: - mkDerivation { - pname = "primitive-indexed"; - version = "0.1.0.0"; - sha256 = "0sbn3h426i6i609iyybar10lywpsklgfkzp355cg8dpfp4a3ibsf"; - libraryHaskellDepends = [ - base - primitive - ]; - testHaskellDepends = [ - base - doctest - QuickCheck - ]; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "primitive-maybe" = callPackage ( - { - mkDerivation, - base, - primitive, - QuickCheck, - quickcheck-classes, - tagged, - tasty, - tasty-quickcheck, - }: - mkDerivation { - pname = "primitive-maybe"; - version = "0.1.1.1"; - sha256 = "1sclcw9shl88sbc5nrr4m43mkhxm9j3jw0cc497n9fhi6x46kjw2"; - libraryHaskellDepends = [ - base - primitive - ]; - testHaskellDepends = [ - base - primitive - QuickCheck - quickcheck-classes - tagged - tasty - tasty-quickcheck - ]; - description = "Arrays of Maybes"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "primitive-offset" = callPackage ( { mkDerivation, @@ -538039,41 +311908,6 @@ self: { } ) { }; - "primitive-simd" = callPackage ( - { - mkDerivation, - base, - criterion, - deepseq, - ghc-prim, - primitive, - random, - vector, - }: - mkDerivation { - pname = "primitive-simd"; - version = "0.1.0.0"; - sha256 = "13dm6djf9aq4vqv94dayzf352472g76j5g0zww9w2mfwmskcfcfi"; - libraryHaskellDepends = [ - base - ghc-prim - primitive - vector - ]; - benchmarkHaskellDepends = [ - base - criterion - deepseq - random - vector - ]; - description = "SIMD data types and functions"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "primitive-slice" = callPackage ( { mkDerivation, @@ -538146,27 +311980,6 @@ self: { } ) { }; - "primitive-stablename" = callPackage ( - { - mkDerivation, - base, - primitive, - }: - mkDerivation { - pname = "primitive-stablename"; - version = "0.1"; - sha256 = "1kdrzam5m2svxrpa7k3byg061i5xs0lc6q12hwgiq6l09savql6j"; - libraryHaskellDepends = [ - base - primitive - ]; - description = "primitive operations on StableNames"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "primitive-unaligned" = callPackage ( { mkDerivation, @@ -538263,98 +312076,6 @@ self: { } ) { }; - "primula-board" = callPackage ( - { - mkDerivation, - base, - ConfigFile, - containers, - directory, - happstack, - happstack-helpers, - happstack-server, - happstack-state, - hsp, - MissingH, - mtl, - old-locale, - old-time, - random, - regex-posix, - split, - time, - }: - mkDerivation { - pname = "primula-board"; - version = "0.0.1"; - sha256 = "0hh13i0idpwv509zavg92wwvp3s20vc1ivz7vfwa4kxp0h21phs9"; - isLibrary = false; - isExecutable = true; - enableSeparateDataOutput = true; - executableHaskellDepends = [ - base - ConfigFile - containers - directory - happstack - happstack-helpers - happstack-server - happstack-state - hsp - MissingH - mtl - old-locale - old-time - random - regex-posix - split - time - ]; - description = "ImageBoard on Happstack and HSP"; - license = "GPL"; - hydraPlatforms = lib.platforms.none; - mainProgram = "primula-board"; - } - ) { }; - - "primula-bot" = callPackage ( - { - mkDerivation, - base, - ConfigFile, - directory, - HTTP, - mtl, - network, - parsec, - utf8-string, - XMPP, - }: - mkDerivation { - pname = "primula-bot"; - version = "0.0.2"; - sha256 = "0j3xjlwvix81zxd38540jwb3vp438d72gmfxdhbypyi5f1qgx01x"; - isLibrary = false; - isExecutable = true; - enableSeparateDataOutput = true; - executableHaskellDepends = [ - base - ConfigFile - directory - HTTP - mtl - network - parsec - utf8-string - XMPP - ]; - description = "Jabber-bot for primula-board ImageBoard"; - license = "GPL"; - hydraPlatforms = lib.platforms.none; - mainProgram = "primula-bot"; - } - ) { }; - "primus" = callPackage ( { mkDerivation, @@ -538408,41 +312129,6 @@ self: { } ) { }; - "pringletons" = callPackage ( - { - mkDerivation, - aeson, - base, - hashable, - singletons, - template-haskell, - text, - unordered-containers, - vector, - vinyl, - }: - mkDerivation { - pname = "pringletons"; - version = "0.4"; - sha256 = "1yv61vmy3wv19lzim362b5ima7yz0wlyvq98b59rzk8v0a5cqr0z"; - libraryHaskellDepends = [ - aeson - base - hashable - singletons - template-haskell - text - unordered-containers - vector - vinyl - ]; - description = "Classes and data structures complementing the singletons library"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "print-console-colors" = callPackage ( { mkDerivation, @@ -538466,81 +312152,6 @@ self: { } ) { }; - "print-debugger" = callPackage ( - { - mkDerivation, - base, - split, - }: - mkDerivation { - pname = "print-debugger"; - version = "1.1.9"; - sha256 = "10c4dsf0kz5ydbx5gr8dzcd280l6nj8dd6h77k56ggy5icnhx6p8"; - libraryHaskellDepends = [ - base - split - ]; - description = "Debug print formatting library"; - license = lib.licenses.publicDomain; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "print-info" = callPackage ( - { mkDerivation, base }: - mkDerivation { - pname = "print-info"; - version = "0.1.3.0"; - sha256 = "02wl9hq7jkz4yzkb744xwgnbss0w2sdpi02d3ms2q5rvc03ixnh6"; - libraryHaskellDepends = [ base ]; - description = "Can be used to coordinate the printing output"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "printcess" = callPackage ( - { - mkDerivation, - base, - containers, - hspec, - HUnit, - lens, - mtl, - QuickCheck, - transformers, - }: - mkDerivation { - pname = "printcess"; - version = "0.1.0.3"; - sha256 = "0ammksaa8k6nv93dyxq6cwm2s09ddiiz6395idf7hl82kq7j4v2z"; - libraryHaskellDepends = [ - base - containers - lens - mtl - transformers - ]; - testHaskellDepends = [ - base - containers - hspec - HUnit - lens - mtl - QuickCheck - transformers - ]; - description = "Pretty printing with indentation, mixfix operators, and automatic line breaks"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "printf-mauke" = callPackage ( { mkDerivation, @@ -538578,35 +312189,6 @@ self: { } ) { }; - "prints" = callPackage ( - { - mkDerivation, - base, - hscolour, - pretty-show, - pretty-simple, - text, - transformers, - }: - mkDerivation { - pname = "prints"; - version = "0.1.0.2"; - sha256 = "0qngdky3rj9kzn2j8aqsnrrrgx4jc375m6lipx5m8j7wxqzyc8if"; - libraryHaskellDepends = [ - base - hscolour - pretty-show - pretty-simple - text - transformers - ]; - description = "The Artist Formerly Known as Prints"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "printxosd" = callPackage ( { mkDerivation, @@ -538629,33 +312211,6 @@ self: { } ) { }; - "priority-queue" = callPackage ( - { - mkDerivation, - base, - containers, - queue, - reord, - stateref, - }: - mkDerivation { - pname = "priority-queue"; - version = "0.2.2"; - sha256 = "0nsiil0yl32m80a1kpg3z0wd5fxwkpz2lzf66pa06iy24q0rz5lf"; - libraryHaskellDepends = [ - base - containers - queue - reord - stateref - ]; - description = "Simple implementation of a priority queue"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "priority-sync" = callPackage ( { mkDerivation, @@ -539035,84 +312590,6 @@ self: { } ) { }; - "probable" = callPackage ( - { - mkDerivation, - base, - criterion, - mtl, - mwc-random, - mwc-random-monad, - primitive, - statistics, - transformers, - vector, - }: - mkDerivation { - pname = "probable"; - version = "0.1.3"; - sha256 = "196m3v30818q034x7jdnqdwfqffx5pfj64yyw0q2blhwzkhc0f9n"; - revision = "3"; - editedCabalFile = "0fvvf9l4vkmnv7qffvkxd0rajv7n64v0550nd7cpjazns41y4lz2"; - libraryHaskellDepends = [ - base - mtl - mwc-random - primitive - statistics - transformers - vector - ]; - benchmarkHaskellDepends = [ - base - criterion - mwc-random - mwc-random-monad - vector - ]; - description = "Easy and reasonably efficient probabilistic programming and random generation"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "proc" = callPackage ( - { - mkDerivation, - base, - containers, - directory, - filepath, - process, - regex-tdfa, - split, - strict, - xformat, - }: - mkDerivation { - pname = "proc"; - version = "0.0.9"; - sha256 = "0p3cr4q34h81g77psypja4m0mgs9mwl51mfb5kdxj5xrsf2nd3la"; - revision = "1"; - editedCabalFile = "0a70zglwws1gyrilr0i8kis7lv7w002vzx41x713j8dp4p39n95z"; - libraryHaskellDepends = [ - base - containers - directory - filepath - process - regex-tdfa - split - strict - xformat - ]; - description = "Parse process information for Linux"; - license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "proc-net" = callPackage ( { mkDerivation, @@ -539166,55 +312643,6 @@ self: { } ) { }; - "process-conduit" = callPackage ( - { - mkDerivation, - base, - bytestring, - conduit, - conduit-extra, - control-monad-loop, - hspec, - mtl, - process, - resourcet, - shakespeare, - shakespeare-text, - template-haskell, - text, - }: - mkDerivation { - pname = "process-conduit"; - version = "1.2.0.1"; - sha256 = "0hnbywmjvk3y26sc9a0jfqzm04pg08zd2bflld1mvni02s89lvc8"; - libraryHaskellDepends = [ - base - bytestring - conduit - control-monad-loop - mtl - process - resourcet - shakespeare - shakespeare-text - template-haskell - text - ]; - testHaskellDepends = [ - base - bytestring - conduit - conduit-extra - hspec - resourcet - ]; - description = "Conduits for processes (deprecated)"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "process-extras" = callPackage ( { mkDerivation, @@ -539255,170 +312683,6 @@ self: { } ) { }; - "process-iterio" = callPackage ( - { - mkDerivation, - base, - bytestring, - cpphs, - iterIO, - process, - transformers, - }: - mkDerivation { - pname = "process-iterio"; - version = "0.0.0"; - sha256 = "18kdj70fv4y5fnw7d8pd0mbvlwca1pm1f88z4ibpji0n4dja332z"; - libraryHaskellDepends = [ - base - bytestring - cpphs - iterIO - process - transformers - ]; - testHaskellDepends = [ - base - bytestring - cpphs - iterIO - process - transformers - ]; - description = "IterIO Process Library"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "process-leksah" = callPackage ( - { - mkDerivation, - base, - directory, - filepath, - unix, - }: - mkDerivation { - pname = "process-leksah"; - version = "1.0.1.4"; - sha256 = "1899ybhnsj22sir2l933lhkk9fpcgjbb4qd6gscnby28qcs5bwbv"; - libraryHaskellDepends = [ - base - directory - filepath - unix - ]; - description = "Process libraries"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "process-listlike" = callPackage ( - { - mkDerivation, - base, - bytestring, - deepseq, - ListLike, - process, - text, - }: - mkDerivation { - pname = "process-listlike"; - version = "1.0"; - sha256 = "0yaz90pfpx9kahwbvbvl2ir62imxxsq7v72i67ac2zv3585c427r"; - revision = "3"; - editedCabalFile = "1cb3xgdhnq3jgb3cfcs19qfq15jq14mpj9b7lcn0lnwnjmqz1y3m"; - libraryHaskellDepends = [ - base - bytestring - deepseq - ListLike - process - text - ]; - description = "Process extras"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "process-progress" = callPackage ( - { - mkDerivation, - base, - bytestring, - deepseq, - HUnit, - ListLike, - mtl, - process, - process-listlike, - text, - time, - unix, - utf8-string, - }: - mkDerivation { - pname = "process-progress"; - version = "0.14"; - sha256 = "0kdzb8m6fx0ah9i15fpcz6phzqd88g4djf0a5h0vi4d4qkib6kin"; - libraryHaskellDepends = [ - base - bytestring - deepseq - HUnit - ListLike - mtl - process - process-listlike - text - time - unix - utf8-string - ]; - description = "Run a process and do reportsing on its progress"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "process-qq" = callPackage ( - { - mkDerivation, - base, - bytestring, - enumerator, - mtl, - process, - shakespeare-text, - template-haskell, - text, - }: - mkDerivation { - pname = "process-qq"; - version = "0.2.0"; - sha256 = "1495dc39kjf9mjvn7ag8hb95bsmhb18sd0ykg4mz7rrl0q03ig2a"; - libraryHaskellDepends = [ - base - bytestring - enumerator - mtl - process - shakespeare-text - template-haskell - text - ]; - description = "Quasi-Quoters for exec process"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "process-sequential" = callPackage ( { mkDerivation, @@ -539446,145 +312710,6 @@ self: { } ) { }; - "process-streaming" = callPackage ( - { - mkDerivation, - attoparsec, - base, - bifunctors, - bytestring, - conceit, - containers, - directory, - doctest, - exceptions, - filepath, - foldl, - free, - kan-extensions, - lens-family-core, - pipes, - pipes-attoparsec, - pipes-bytestring, - pipes-concurrency, - pipes-group, - pipes-parse, - pipes-safe, - pipes-text, - pipes-transduce, - process, - profunctors, - semigroups, - tasty, - tasty-hunit, - text, - transformers, - transformers-compat, - void, - }: - mkDerivation { - pname = "process-streaming"; - version = "0.9.3.0"; - sha256 = "06x2xcjbhwhnwyml8kxqa5wl89mr9fbbpgplysd68d01yhm2dnmr"; - libraryHaskellDepends = [ - base - bifunctors - bytestring - conceit - free - kan-extensions - pipes - pipes-bytestring - pipes-concurrency - pipes-parse - pipes-safe - pipes-text - pipes-transduce - process - profunctors - text - transformers - transformers-compat - void - ]; - testHaskellDepends = [ - attoparsec - base - bifunctors - bytestring - containers - directory - doctest - exceptions - filepath - foldl - free - lens-family-core - pipes - pipes-attoparsec - pipes-bytestring - pipes-concurrency - pipes-group - pipes-parse - pipes-safe - pipes-text - pipes-transduce - process - semigroups - tasty - tasty-hunit - text - transformers - transformers-compat - void - ]; - description = "Streaming interface to system processes"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "processing" = callPackage ( - { - mkDerivation, - base, - blaze-html, - containers, - directory, - filepath, - mainland-pretty, - multiset, - QuickCheck, - quickcheck-instances, - template-haskell, - text, - transformers, - }: - mkDerivation { - pname = "processing"; - version = "1.2.0.2"; - sha256 = "059j8ssvxpj2xam9v60a7s2zslv12a1kqwbs0pj7sf81b2qkd0ss"; - libraryHaskellDepends = [ - base - blaze-html - containers - directory - filepath - mainland-pretty - multiset - QuickCheck - quickcheck-instances - template-haskell - text - transformers - ]; - description = "Web graphic applications with processing.js."; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "processing-for-haskell" = callPackage ( { mkDerivation, @@ -539622,31 +312747,6 @@ self: { } ) { }; - "processmemory" = callPackage ( - { - mkDerivation, - base, - binary, - bytestring, - process, - }: - mkDerivation { - pname = "processmemory"; - version = "0.1.0.0"; - sha256 = "12p7974x43w06jwaf7hlv2wxlgqnq9kb10mgjl9c4l7hbpbg3y0z"; - libraryHaskellDepends = [ - base - binary - bytestring - process - ]; - description = "C bindings for the gnu-extension functions process_vm_readv and process_vm_writev"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "processor-creative-kit" = callPackage ( { mkDerivation, @@ -539715,63 +312815,6 @@ self: { } ) { }; - "procrastinating-structure" = callPackage ( - { - mkDerivation, - base, - procrastinating-variable, - }: - mkDerivation { - pname = "procrastinating-structure"; - version = "1.0.1"; - sha256 = "126mp2mfmy9xg1kichl19ga6j3w1s0qpk3hqh47x5x5120qh63l3"; - libraryHaskellDepends = [ - base - procrastinating-variable - ]; - description = "Pure structures that can be incrementally created in impure code"; - license = "unknown"; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "procrastinating-variable" = callPackage ( - { mkDerivation, base }: - mkDerivation { - pname = "procrastinating-variable"; - version = "1.0.2"; - sha256 = "12px0nk7j74hyfzcvxacd9020gk3cd3ijqb7fjmmg8y33354jkc4"; - libraryHaskellDepends = [ base ]; - description = "Haskell values that cannot be evaluated immediately"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "procstat" = callPackage ( - { - mkDerivation, - attoparsec, - base, - bytestring, - }: - mkDerivation { - pname = "procstat"; - version = "0.1.0.1"; - sha256 = "1md75jc32nfnvs7ygf1mna00gl0wmimp2lkdcs9r9v0iy4b1hr5m"; - libraryHaskellDepends = [ - attoparsec - base - bytestring - ]; - description = "get information on processes in Linux"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "proctest" = callPackage ( { mkDerivation, @@ -539970,59 +313013,6 @@ self: { } ) { }; - "producer" = callPackage ( - { - mkDerivation, - base, - checkers, - QuickCheck, - tasty, - tasty-auto, - tasty-hunit, - tasty-quickcheck, - }: - mkDerivation { - pname = "producer"; - version = "0.1.0.0"; - sha256 = "0dg0yj5b39ghhh6jx9mp9mya3wwzgv6ldkvqxplr1bv3bvxvjkrr"; - libraryHaskellDepends = [ base ]; - testHaskellDepends = [ - base - checkers - QuickCheck - tasty - tasty-auto - tasty-hunit - tasty-quickcheck - ]; - description = "Simple streaming datatype"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "product" = callPackage ( - { - mkDerivation, - base, - category, - }: - mkDerivation { - pname = "product"; - version = "0.1.0.0"; - sha256 = "1dh1bf5mc2q6jb4srajn448fww5s8ixcwiswqp7pk9638sdh6dgk"; - revision = "2"; - editedCabalFile = "0ssd2yc8c3h2y5yra8y49sphxwpj8jd7ss6h058nabld0hrbvjm2"; - libraryHaskellDepends = [ - base - category - ]; - description = "Product category"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "product-isomorphic" = callPackage ( { mkDerivation, @@ -540090,93 +313080,6 @@ self: { } ) { }; - "prof-flamegraph" = callPackage ( - { - mkDerivation, - base, - optparse-applicative, - }: - mkDerivation { - pname = "prof-flamegraph"; - version = "1.0.0"; - sha256 = "10ca6jmgnavqf8p8zf643rg1pjnzzndri4rbpmz6jshgy55vikf6"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - optparse-applicative - ]; - description = "Generate flamegraphs from ghc RTS .prof files"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - mainProgram = "prof-flamegraph"; - broken = true; - } - ) { }; - - "prof2dot" = callPackage ( - { - mkDerivation, - base, - containers, - filepath, - haskell98, - parsec, - }: - mkDerivation { - pname = "prof2dot"; - version = "0.4.1"; - sha256 = "1cf1ysnfpng7ijgsbnly5878wg7cp907cqpvf4yq9sd6nym8hcng"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - containers - filepath - haskell98 - parsec - ]; - description = "Convert GHC profiles into GraphViz's dot format"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "prof2dot"; - } - ) { }; - - "prof2pretty" = callPackage ( - { - mkDerivation, - base, - containers, - filepath, - haskell-src-exts, - semigroups, - uniplate, - zenc, - }: - mkDerivation { - pname = "prof2pretty"; - version = "0.1.0.0"; - sha256 = "104frg0czfk4rgjxyf0xz7100j3y9ndvf01jgv3yibaq98v2h64r"; - isLibrary = false; - isExecutable = true; - enableSeparateDataOutput = true; - executableHaskellDepends = [ - base - containers - filepath - haskell-src-exts - semigroups - uniplate - zenc - ]; - description = "generate pretty source from time/allocation profiles"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "profiterole" = callPackage ( { mkDerivation, @@ -540469,174 +313372,6 @@ self: { } ) { }; - "progress-meter" = callPackage ( - { - mkDerivation, - ansi-terminal, - async, - base, - stm, - }: - mkDerivation { - pname = "progress-meter"; - version = "1.0.0.1"; - sha256 = "1mdzwbzkf9ja7i21hds26gqn2ll4hnidbcq145yigkfzv93r6hq6"; - libraryHaskellDepends = [ - ansi-terminal - async - base - stm - ]; - description = "Live diagnostics for concurrent activity"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "progress-reporting" = callPackage ( - { - mkDerivation, - base, - deepseq, - mtl, - time, - }: - mkDerivation { - pname = "progress-reporting"; - version = "1.1.0"; - sha256 = "02j1i28hcd54w1j9p0d8xzc1bns7swd8js5f6d6ppikc82hlb9bj"; - revision = "1"; - editedCabalFile = "1a20ziwki29chw069jqrjm2rb64j4sfxbi7xyqxqd6vh9gpwdmm1"; - libraryHaskellDepends = [ - base - deepseq - mtl - time - ]; - description = "Functionality for reporting function progress"; - license = lib.licenses.lgpl3Only; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "progressbar" = callPackage ( - { - mkDerivation, - base, - io-reactive, - }: - mkDerivation { - pname = "progressbar"; - version = "0.0.1"; - sha256 = "09yfspxcdp4y5chim2qmylfmjp0kdg4qg2w54kg3hir8f7kih3ns"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - io-reactive - ]; - description = "Progressbar API"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "progression" = callPackage ( - { - mkDerivation, - base, - containers, - criterion, - directory, - filepath, - haskeline, - process, - txt-sushi, - }: - mkDerivation { - pname = "progression"; - version = "0.5.0.2"; - sha256 = "01s01v59hjy5i8dd9a1gxjpyw2qq3r81np7acn94wjh64c8rrmpa"; - libraryHaskellDepends = [ - base - containers - criterion - directory - filepath - haskeline - process - txt-sushi - ]; - description = "Automates the recording and graphing of criterion benchmarks"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "progressive" = callPackage ( - { - mkDerivation, - base, - binary, - bytestring, - containers, - directory, - filepath, - ghc-prim, - process, - text, - }: - mkDerivation { - pname = "progressive"; - version = "0.1.0.1"; - sha256 = "1psbgl19x2wwh4rcd4nsayrc1bq2g27qywr1m9jgmshcz1cinpbh"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - binary - bytestring - containers - directory - filepath - ghc-prim - process - text - ]; - description = "Multilabel classification model which learns sequentially (online)"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "progressive"; - broken = true; - } - ) { }; - - "proj4-hs-bindings" = callPackage ( - { - mkDerivation, - base, - ghc-prim, - proj, - }: - mkDerivation { - pname = "proj4-hs-bindings"; - version = "0.1"; - sha256 = "0cwkjg1bm1swl103nsziyc71yqgvdq82ywgi2jnn7cj9lk4ihrah"; - libraryHaskellDepends = [ - base - ghc-prim - ]; - librarySystemDepends = [ proj ]; - description = "Haskell bindings for the Proj4 C dynamic library"; - license = "GPL"; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { inherit (pkgs) proj; }; - "project-forge" = callPackage ( { mkDerivation, @@ -541072,55 +313807,6 @@ self: { } ) { }; - "projectile" = callPackage ( - { - mkDerivation, - base, - deepseq, - path, - path-io, - protolude, - safe-exceptions, - tasty, - tasty-hunit, - tasty-rerun, - text, - vector, - }: - mkDerivation { - pname = "projectile"; - version = "0.0.0.2"; - sha256 = "0bl5j1n0vvxglrr9fs6kid2n6qakkjpkwi8dz7la64lznfr96dji"; - libraryHaskellDepends = [ - base - deepseq - path - path-io - protolude - safe-exceptions - text - vector - ]; - testHaskellDepends = [ - base - deepseq - path - path-io - protolude - safe-exceptions - tasty - tasty-hunit - tasty-rerun - text - vector - ]; - description = "Go to README.md"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "projection" = callPackage ( { mkDerivation, base }: mkDerivation { @@ -541191,190 +313877,6 @@ self: { } ) { }; - "prolog" = callPackage ( - { - mkDerivation, - base, - containers, - mtl, - parsec, - syb, - template-haskell, - th-lift, - transformers, - }: - mkDerivation { - pname = "prolog"; - version = "0.3.2"; - sha256 = "1clh7gfqh2yf17jc453y8cc8qcga9h0j5a60nfr1sjd5byr8j8ab"; - libraryHaskellDepends = [ - base - containers - mtl - parsec - syb - template-haskell - th-lift - transformers - ]; - description = "A Prolog interpreter written in Haskell"; - license = lib.licenses.publicDomain; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "prolog-graph" = callPackage ( - { - mkDerivation, - base, - cmdargs, - fgl, - graphviz, - mtl, - prolog, - prolog-graph-lib, - text, - }: - mkDerivation { - pname = "prolog-graph"; - version = "0.1.0.2"; - sha256 = "1w3wz0sn1qhw286g3arin30jvlldadw976xr7hp0afdvqicl3892"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - cmdargs - fgl - graphviz - mtl - prolog - prolog-graph-lib - text - ]; - description = "A command line tool to visualize query resolution in Prolog"; - license = lib.licenses.publicDomain; - hydraPlatforms = lib.platforms.none; - mainProgram = "hsprolog-graph"; - } - ) { }; - - "prolog-graph-lib" = callPackage ( - { - mkDerivation, - base, - fgl, - graphviz, - mtl, - prolog, - text, - }: - mkDerivation { - pname = "prolog-graph-lib"; - version = "0.2.1.1"; - sha256 = "1qxikgryyh47zm0qwbsa7lpqmiphbl1askjjjc0rfr9dh5f0wclr"; - libraryHaskellDepends = [ - base - fgl - graphviz - mtl - prolog - text - ]; - description = "Generating images of resolution trees for Prolog queries"; - license = lib.licenses.publicDomain; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "prologue" = callPackage ( - { - mkDerivation, - base, - bifunctors, - binary, - comonad, - cond, - container, - convert, - data-default, - deepseq, - deriving-compat, - either, - errors, - exceptions, - functor-utils, - ghc-prim, - impossible, - lens, - lens-utils, - monoid, - mtl, - neat-interpolation, - placeholders, - pointed, - pretty, - pretty-show, - primitive, - raw-strings-qq, - recursion-schemes, - semigroupoids, - string-qq, - template-haskell, - text, - transformers, - transformers-base, - typelevel, - vector, - }: - mkDerivation { - pname = "prologue"; - version = "3.2.6"; - sha256 = "0xic2d3b7ya0qrb8r4q0v6f9zgbh7sw0l7rpbmz09i8pkx7bj90y"; - libraryHaskellDepends = [ - base - bifunctors - binary - comonad - cond - container - convert - data-default - deepseq - deriving-compat - either - errors - exceptions - functor-utils - ghc-prim - impossible - lens - lens-utils - monoid - mtl - neat-interpolation - placeholders - pointed - pretty - pretty-show - primitive - raw-strings-qq - recursion-schemes - semigroupoids - string-qq - template-haskell - text - transformers - transformers-base - typelevel - vector - ]; - description = "Better, more general Prelude exporting common utilities"; - license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "prolude" = callPackage ( { mkDerivation, @@ -541560,84 +314062,6 @@ self: { } ) { }; - "prometheus-effect" = callPackage ( - { - mkDerivation, - base, - bytestring, - clock, - criterion, - hashable, - http-types, - mtl, - random, - retry, - safe-exceptions, - streaming, - streaming-bytestring, - streaming-utils, - streaming-wai, - text, - transformers, - unordered-containers, - vector, - vector-algorithms, - wai, - warp, - weigh, - }: - mkDerivation { - pname = "prometheus-effect"; - version = "1.1.0"; - sha256 = "1haajyrky42gkwgg7k6w3blc0dirwsx60lx9kkjfynsslbh8jx1a"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - bytestring - clock - hashable - http-types - mtl - retry - safe-exceptions - streaming - streaming-bytestring - streaming-utils - streaming-wai - text - transformers - unordered-containers - vector - vector-algorithms - wai - ]; - executableHaskellDepends = [ - base - http-types - random - text - wai - warp - ]; - testHaskellDepends = [ - base - text - weigh - ]; - benchmarkHaskellDepends = [ - base - criterion - text - ]; - description = "Instrument applications with metrics and publish/push to Prometheus"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "test"; - broken = true; - } - ) { }; - "prometheus-metrics-ghc" = callPackage ( { mkDerivation, @@ -541696,6 +314120,7 @@ self: { description = "Export metrics from /proc for the current process"; license = lib.licenses.bsd3; hydraPlatforms = lib.platforms.none; + broken = true; } ) { }; @@ -541729,71 +314154,6 @@ self: { } ) { }; - "prometheus-wai-middleware" = callPackage ( - { - mkDerivation, - async, - base, - clock, - containers, - http-types, - prometheus, - text, - wai, - warp, - }: - mkDerivation { - pname = "prometheus-wai-middleware"; - version = "1.0.1.0"; - sha256 = "1srp4j7841wfc29x5x8wkykjdqzdln26s219zrq15f5vir14lpar"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - clock - containers - http-types - prometheus - text - wai - ]; - executableHaskellDepends = [ - async - base - http-types - prometheus - wai - warp - ]; - description = "Instrument a wai application with various metrics"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "prometheus-wai-middleware-example"; - broken = true; - } - ) { }; - - "promise" = callPackage ( - { - mkDerivation, - async, - base, - }: - mkDerivation { - pname = "promise"; - version = "0.1.0.0"; - sha256 = "1hzsprmw15apc654n77ima1pgs9nj6287d412jb5z37154bd0nfg"; - libraryHaskellDepends = [ - async - base - ]; - description = "A monadic interface for async"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "promises" = callPackage ( { mkDerivation, @@ -541813,33 +314173,6 @@ self: { } ) { }; - "prompt" = callPackage ( - { - mkDerivation, - base, - base-compat, - mtl, - transformers, - transformers-compat, - }: - mkDerivation { - pname = "prompt"; - version = "0.1.1.2"; - sha256 = "1wjil5rrh2flm3ikjk9f3i6y015vm0bdxndn8mv78l66yhg73db7"; - libraryHaskellDepends = [ - base - base-compat - mtl - transformers - transformers-compat - ]; - description = "Monad (and transformer) for deferred-effect pure prompt-response queries"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "prompt-hs" = callPackage ( { mkDerivation, @@ -541887,38 +314220,6 @@ self: { } ) { }; - "pronounce" = callPackage ( - { - mkDerivation, - base, - binary, - containers, - filepath, - mtl, - safe, - text, - }: - mkDerivation { - pname = "pronounce"; - version = "1.2.0.0"; - sha256 = "10jhkgawgzddqgw1m8hfhzb35szmxy5smy0bapm5vjmqc90b6zw9"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base - binary - containers - filepath - mtl - safe - text - ]; - description = "A library for interfacing with the CMU Pronouncing Dictionary"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "proof-assistant-bot" = callPackage ( { mkDerivation, @@ -542019,38 +314320,6 @@ self: { } ) { }; - "propane" = callPackage ( - { - mkDerivation, - base, - colour, - containers, - directory, - filepath, - repa, - repa-devil, - spawn, - }: - mkDerivation { - pname = "propane"; - version = "0.1"; - sha256 = "1kzlwsxka72h3a612xi2s741hdx88qsib07kcralv2k76krqxlj4"; - libraryHaskellDepends = [ - base - colour - containers - directory - filepath - repa - repa-devil - spawn - ]; - description = "Functional synthesis of images and animations"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "propeller" = callPackage ( { mkDerivation, @@ -542138,20 +314407,6 @@ self: { } ) { }; - "properties" = callPackage ( - { mkDerivation, base }: - mkDerivation { - pname = "properties"; - version = "0.0.2"; - sha256 = "04a35zxgps9rn6y86x3jf6gma6kjl8izmnyl45hz64cl9yb5dwwi"; - libraryHaskellDepends = [ base ]; - description = "check quickCheck properties in real time"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "property" = callPackage ( { mkDerivation, base }: mkDerivation { @@ -542164,55 +314419,6 @@ self: { } ) { }; - "property-list" = callPackage ( - { - mkDerivation, - base, - base64-bytestring, - bytestring, - cereal, - containers, - free, - oneOfN, - recursion-schemes, - syb, - template-haskell, - text, - time, - time-locale-compat, - transformers, - vector, - xml, - }: - mkDerivation { - pname = "property-list"; - version = "0.1.0.5"; - sha256 = "0wv97v6b7yfkwaz6mpw3l12q34k620jb1clz0j9a1kvysm1r005k"; - libraryHaskellDepends = [ - base - base64-bytestring - bytestring - cereal - containers - free - oneOfN - recursion-schemes - syb - template-haskell - text - time - time-locale-compat - transformers - vector - xml - ]; - description = "Apple property list parser"; - license = lib.licenses.publicDomain; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "property-matchers" = callPackage ( { mkDerivation, @@ -542263,30 +314469,6 @@ self: { } ) { }; - "proplang" = callPackage ( - { - mkDerivation, - base, - glade, - glib, - gtk, - }: - mkDerivation { - pname = "proplang"; - version = "0.1"; - sha256 = "1vm01qvd0jgcdpqx3p2h6gafhxi5x7bs8r5a6xsk4zz6cc1cbw4m"; - libraryHaskellDepends = [ - base - glade - glib - gtk - ]; - description = "A library for functional GUI development"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "props" = callPackage ( { mkDerivation, @@ -542339,117 +314521,6 @@ self: { } ) { }; - "prosidy" = callPackage ( - { - mkDerivation, - aeson, - aeson-diff, - aeson-pretty, - base, - base-compat-batteries, - binary, - bytestring, - containers, - deepseq, - directory, - filepath, - hashable, - megaparsec, - prettyprinter, - profunctors, - tagged, - tasty, - tasty-ant-xml, - tasty-golden, - tasty-hunit, - tasty-quickcheck, - text, - transformers, - unordered-containers, - vector, - }: - mkDerivation { - pname = "prosidy"; - version = "1.6.0.2"; - sha256 = "1961zr94cn6vza66ndd3hjh3ksm5c70bc2nr33nhvyna9q9hzs5w"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - aeson - base - base-compat-batteries - binary - bytestring - containers - deepseq - hashable - megaparsec - prettyprinter - profunctors - tagged - text - transformers - unordered-containers - vector - ]; - testHaskellDepends = [ - aeson - aeson-diff - aeson-pretty - base - bytestring - containers - directory - filepath - tasty - tasty-ant-xml - tasty-golden - tasty-hunit - tasty-quickcheck - text - ]; - description = "A simple language for writing documents"; - license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "prosidyc" = callPackage ( - { - mkDerivation, - base, - containers, - free, - hashable, - microlens, - prettyprinter, - profunctors, - prosidy, - text, - unordered-containers, - }: - mkDerivation { - pname = "prosidyc"; - version = "0.3.0.0"; - sha256 = "18i9d955md2pan18541x2z2aj1hvl34g9zm2vvf3nwpf5m9s5ggl"; - libraryHaskellDepends = [ - base - containers - free - hashable - microlens - prettyprinter - profunctors - prosidy - text - unordered-containers - ]; - description = "A DSL for processing Prosidy documents"; - license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "prospect" = callPackage ( { mkDerivation, @@ -542487,47 +314558,6 @@ self: { } ) { }; - "prosper" = callPackage ( - { - mkDerivation, - aeson, - base, - bytestring, - cereal, - containers, - HsOpenSSL, - http-streams, - io-streams, - mtl, - text, - transformers, - vector, - }: - mkDerivation { - pname = "prosper"; - version = "0.1.1"; - sha256 = "006h3i316s85f3d6qmwm9kajbxil1xcnqp11jfvv5ypnx2gdyhgb"; - libraryHaskellDepends = [ - aeson - base - bytestring - cereal - containers - HsOpenSSL - http-streams - io-streams - mtl - text - transformers - vector - ]; - description = "Bindings to the Prosper marketplace API"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "proteaaudio" = callPackage ( @@ -542773,85 +314803,6 @@ self: { } ) { }; - "proto-lens-combinators" = callPackage ( - { - mkDerivation, - base, - Cabal, - HUnit, - lens-family, - lens-family-core, - proto-lens, - proto-lens-runtime, - proto-lens-setup, - test-framework, - test-framework-hunit, - transformers, - }: - mkDerivation { - pname = "proto-lens-combinators"; - version = "0.4.0.1"; - sha256 = "0dkd9jmmxf5r01di3q1r0qnyhkyxrjlnfxa40c2vq0fl16h68lkb"; - setupHaskellDepends = [ - base - Cabal - proto-lens-setup - ]; - libraryHaskellDepends = [ - base - lens-family - proto-lens - transformers - ]; - testHaskellDepends = [ - base - HUnit - lens-family - lens-family-core - proto-lens - proto-lens-runtime - test-framework - test-framework-hunit - ]; - description = "Utilities functions to proto-lens"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "proto-lens-descriptors" = callPackage ( - { - mkDerivation, - base, - bytestring, - containers, - data-default-class, - lens-family, - lens-labels, - proto-lens, - text, - }: - mkDerivation { - pname = "proto-lens-descriptors"; - version = "0.2.2.0"; - sha256 = "1vjvr931ylnmpclizbrhqsx0x5jbmcbir0s53zpvm0f0vnwlwgqb"; - libraryHaskellDepends = [ - base - bytestring - containers - data-default-class - lens-family - lens-labels - proto-lens - text - ]; - description = "Protocol buffers for describing the definitions of messages"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "proto-lens-etcd" = callPackage ( { mkDerivation, @@ -543417,59 +315368,6 @@ self: { } ) { }; - "protobuf-native" = callPackage ( - { - mkDerivation, - base, - bytestring, - cereal, - cplusplus-th, - criterion, - hprotoc-fork, - protobuf, - protocol-buffers-fork, - QuickCheck, - template-haskell, - text, - utf8-string, - }: - mkDerivation { - pname = "protobuf-native"; - version = "1.0.0.1"; - sha256 = "0k3cljm4r3jxlklkmfhv0362hg8095f1cq73mgdqkbqa5gwrk86r"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - bytestring - cplusplus-th - template-haskell - text - ]; - executableHaskellDepends = [ - base - bytestring - ]; - testHaskellDepends = [ - base - bytestring - cereal - cplusplus-th - criterion - hprotoc-fork - protobuf - protocol-buffers-fork - QuickCheck - text - utf8-string - ]; - description = "Protocol Buffers via C++"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "protobuf-native-test"; - } - ) { }; - "protobuf-simple" = callPackage ( { mkDerivation, @@ -543516,43 +315414,20 @@ self: { testHaskellDepends = [ base binary - bytestring - containers - data-binary-ieee754 - filepath - hspec - parsec - QuickCheck - quickcheck-instances - split - text - ]; - description = "Simple Protocol Buffers library (proto2)"; - license = lib.licenses.mit; - mainProgram = "protobuf-simple-protoc"; - } - ) { }; - - "protocol" = callPackage ( - { - mkDerivation, - base, - freer-indexed, - singletons, - }: - mkDerivation { - pname = "protocol"; - version = "0.1.0.1"; - sha256 = "16pbhfggw46jdjyljqr6dr0mlzmfhvwmw3lg1s5rp90zg4jgvha0"; - libraryHaskellDepends = [ - base - freer-indexed - singletons + bytestring + containers + data-binary-ieee754 + filepath + hspec + parsec + QuickCheck + quickcheck-instances + split + text ]; - description = "Model distributed system as type-level multi-party protocol"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; + description = "Simple Protocol Buffers library (proto2)"; + license = lib.licenses.mit; + mainProgram = "protobuf-simple-protoc"; } ) { }; @@ -543630,68 +315505,6 @@ self: { } ) { }; - "protocol-buffers-descriptor-fork" = callPackage ( - { - mkDerivation, - base, - bytestring, - containers, - protocol-buffers-fork, - }: - mkDerivation { - pname = "protocol-buffers-descriptor-fork"; - version = "2.0.16"; - sha256 = "1wn6yqs70n26j6z44yfmz4j4rwj2h1zfpysn56wzaq7bwsdb0bqb"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base - bytestring - containers - protocol-buffers-fork - ]; - description = "Text.DescriptorProto.Options and code generated from the Google Protocol Buffer specification"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "protocol-buffers-fork" = callPackage ( - { - mkDerivation, - array, - base, - binary, - bytestring, - containers, - directory, - filepath, - mtl, - syb, - utf8-string, - }: - mkDerivation { - pname = "protocol-buffers-fork"; - version = "2.0.16"; - sha256 = "061kc43dg3xdv81wmj4yjm1s6amrd8ql59nj7vff4vdb87v9nriz"; - libraryHaskellDepends = [ - array - base - binary - bytestring - containers - directory - filepath - mtl - syb - utf8-string - ]; - description = "Parse Google Protocol Buffer specifications"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "protocol-radius" = callPackage ( { mkDerivation, @@ -543805,33 +315618,6 @@ self: { } ) { }; - "protolude-lifted" = callPackage ( - { - mkDerivation, - async, - base, - lifted-async, - lifted-base, - protolude, - }: - mkDerivation { - pname = "protolude-lifted"; - version = "0.1.1.0"; - sha256 = "0cpm5fgxlywzjvwdpcxnwczvjrgyns8f99gsbph6pwd7dddkza42"; - libraryHaskellDepends = [ - async - base - lifted-async - lifted-base - protolude - ]; - description = "Protolude with lifted-base and lifted-async"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "proton" = callPackage ( { mkDerivation, @@ -543877,115 +315663,6 @@ self: { } ) { }; - "proton-haskell" = callPackage ( - { - mkDerivation, - base, - containers, - directory, - filepath, - HUnit, - test-framework, - test-framework-hunit, - }: - mkDerivation { - pname = "proton-haskell"; - version = "0.7"; - sha256 = "1gn4h8xprq8gkngccyqbbqn8nidwlczlwckxzjgnb190yy3kd7hi"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base - containers - directory - filepath - ]; - testHaskellDepends = [ - base - containers - directory - filepath - HUnit - test-framework - test-framework-hunit - ]; - description = "Simple XML templating library"; - license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "prototype" = callPackage ( - { - mkDerivation, - base, - monads-tf, - }: - mkDerivation { - pname = "prototype"; - version = "0.5.3"; - sha256 = "1kzinhdy622gzg3mzfln15vgi890i2l3lkrgrw0n0yb08r2n53i7"; - libraryHaskellDepends = [ - base - monads-tf - ]; - description = "prototype-based programming on Haskell"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "prove-everywhere-server" = callPackage ( - { - mkDerivation, - aeson, - base, - bytestring, - case-insensitive, - http-types, - optparse-applicative, - parsec, - parsers, - process, - safe, - text, - time, - unordered-containers, - wai, - warp, - }: - mkDerivation { - pname = "prove-everywhere-server"; - version = "0.1.1"; - sha256 = "127ky7rj9d2bqaddcg99azm18m65ksxr26amq0r5prhym8kmc3jx"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - aeson - base - bytestring - case-insensitive - http-types - optparse-applicative - parsec - parsers - process - safe - text - time - unordered-containers - wai - warp - ]; - description = "The server for ProveEverywhere"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "prove-everywhere-server"; - broken = true; - } - ) { }; - "provenience" = callPackage ( { mkDerivation, @@ -544076,41 +315753,6 @@ self: { } ) { }; - "proxy-kindness" = callPackage ( - { - mkDerivation, - base, - tagged, - }: - mkDerivation { - pname = "proxy-kindness"; - version = "0.1"; - sha256 = "0wpzj6hnlxvgd7lfd2921mrk97aw7ljf77jry3my97zdapkxz8i7"; - libraryHaskellDepends = [ - base - tagged - ]; - description = "A library for kind-polymorphic manipulation and inspection of Proxy values"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "proxy-mapping" = callPackage ( - { mkDerivation, base }: - mkDerivation { - pname = "proxy-mapping"; - version = "0.1.0.1"; - sha256 = "12lwn64znci7l5l7sa3g7hm0rmnjvykci7k65mz5c2zdwx3zgvdd"; - libraryHaskellDepends = [ base ]; - description = "Mapping of Proxy Types"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "prune-juice" = callPackage ( { mkDerivation, @@ -544207,87 +315849,6 @@ self: { } ) { }; - "psc-ide" = callPackage ( - { - mkDerivation, - aeson, - base, - bytestring, - containers, - directory, - edit-distance, - either, - filepath, - fsnotify, - hspec, - http-client, - lens, - lens-aeson, - monad-logger, - mtl, - network, - optparse-applicative, - parsec, - purescript, - regex-tdfa, - stm, - text, - wreq, - }: - mkDerivation { - pname = "psc-ide"; - version = "0.6.1"; - sha256 = "1d869bp7qm4djxh0x7wfpg1g3hq7r6r7vn4apryfjygjcadmip6j"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson - base - bytestring - containers - directory - edit-distance - either - filepath - fsnotify - http-client - lens - lens-aeson - monad-logger - mtl - parsec - purescript - regex-tdfa - stm - text - wreq - ]; - executableHaskellDepends = [ - base - directory - filepath - monad-logger - mtl - network - optparse-applicative - stm - text - ]; - testHaskellDepends = [ - base - containers - hspec - monad-logger - mtl - stm - ]; - description = "Language support for the PureScript programming language"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "pseudo-boolean" = callPackage ( { mkDerivation, @@ -544345,29 +315906,6 @@ self: { } ) { }; - "pseudo-trie" = callPackage ( - { - mkDerivation, - base, - semigroups, - }: - mkDerivation { - pname = "pseudo-trie"; - version = "0.0.4.3"; - sha256 = "020jkgr6h1f4z14xbrl6zsqjqflkps03lh5102742bfsd58d9hvb"; - revision = "1"; - editedCabalFile = "1xc7acqd7zss6zd2n43n0kd5qiv1i8m5wlnskrw5sdj7i1ddsrj5"; - libraryHaskellDepends = [ - base - semigroups - ]; - description = "A tagged rose-tree with short circuited unique leaves"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "pseudomacros" = callPackage ( { mkDerivation, @@ -544389,33 +315927,6 @@ self: { } ) { }; - "psi" = callPackage ( - { - mkDerivation, - base, - bytestring, - deepseq, - semigroups, - text, - }: - mkDerivation { - pname = "psi"; - version = "0.1.1.0"; - sha256 = "0z6h3x4dv6f4may3lr2pc3rpsjbbzxax1j17x0n4mxmv9jjkggag"; - libraryHaskellDepends = [ - base - bytestring - deepseq - semigroups - text - ]; - description = "Yet another custom Prelude"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "psql" = callPackage ( { mkDerivation, @@ -544576,34 +316087,6 @@ self: { } ) { }; - "pstemmer" = callPackage ( - { - mkDerivation, - base, - text, - }: - mkDerivation { - pname = "pstemmer"; - version = "0.1.0.0"; - sha256 = "16cmlqa4fgfsf3pr1fds98c0phzla3rqdcljp6q606yljfmk0fa1"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - text - ]; - executableHaskellDepends = [ - base - text - ]; - description = "A Haskell Implementation of the Porter Stemmer"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "pstemmer-test-exe"; - broken = true; - } - ) { }; - "psx" = callPackage ( { mkDerivation, @@ -545031,159 +316514,6 @@ self: { } ) { }; - "pub" = callPackage ( - { - mkDerivation, - base, - bytestring, - hedis, - optparse-generic, - pipes, - pipes-bytestring, - text, - }: - mkDerivation { - pname = "pub"; - version = "3.0.0"; - sha256 = "1svyfvpqarmfy634s61l1pg7wc9y35bn753zq3vs1rvbw9lmxpj5"; - isLibrary = false; - isExecutable = true; - enableSeparateDataOutput = true; - executableHaskellDepends = [ - base - bytestring - hedis - optparse-generic - pipes - pipes-bytestring - text - ]; - description = "Pipe stdin to a redis pub/sub channel"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "publicsuffix" = callPackage ( - { - mkDerivation, - base, - criterion, - filepath, - hspec, - random, - template-haskell, - }: - mkDerivation { - pname = "publicsuffix"; - version = "0.20200526"; - sha256 = "0sipkr4mzhha5w4236jj6j8assy565yf085aqa3awwqi28674mbb"; - libraryHaskellDepends = [ - base - filepath - template-haskell - ]; - testHaskellDepends = [ - base - hspec - ]; - benchmarkHaskellDepends = [ - base - criterion - random - ]; - description = "The publicsuffix list exposed as proper Haskell types"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "publicsuffixlist" = callPackage ( - { - mkDerivation, - base, - bytestring, - cereal, - containers, - data-default, - HUnit, - idna, - text, - utf8-string, - }: - mkDerivation { - pname = "publicsuffixlist"; - version = "0.1"; - sha256 = "0mbrmhgyjp8jms3fd3nq4knc4j97sw8ijrmnlfjs7qj8jw4vwzxk"; - libraryHaskellDepends = [ - base - bytestring - cereal - containers - data-default - text - utf8-string - ]; - testHaskellDepends = [ - base - bytestring - cereal - containers - data-default - HUnit - idna - text - utf8-string - ]; - description = "Is a given string a domain suffix?"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "publicsuffixlistcreate" = callPackage ( - { - mkDerivation, - base, - bytestring, - cereal, - conduit, - containers, - data-default, - HUnit, - idna, - publicsuffixlist, - text, - }: - mkDerivation { - pname = "publicsuffixlistcreate"; - version = "0.0.2"; - sha256 = "0v4arfixnfzpsi3hvik2s2lqqp61324bd98wc8ympqxlmldpbri3"; - libraryHaskellDepends = [ - base - bytestring - conduit - containers - data-default - idna - publicsuffixlist - text - ]; - testHaskellDepends = [ - base - cereal - HUnit - publicsuffixlist - ]; - description = "Create the publicsuffixlist package"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "publish" = callPackage ( { mkDerivation, @@ -545264,400 +316594,6 @@ self: { } ) { }; - "pubnub" = callPackage ( - { - mkDerivation, - aeson, - async, - base, - base64-bytestring, - bytestring, - Cabal, - cipher-aes, - conduit, - conduit-extra, - crypto-api, - crypto-cipher-types, - data-default, - http-client, - http-conduit, - http-types, - HUnit, - lifted-base, - mtl, - QuickCheck, - SHA, - smallcheck, - tasty, - tasty-hunit, - tasty-quickcheck, - tasty-smallcheck, - text, - time, - transformers, - uuid, - vector, - }: - mkDerivation { - pname = "pubnub"; - version = "1.1.1"; - sha256 = "0clcf5gsw34gpqycw652wq8ndmlzz48mf2gla0g7j815j21hrhv8"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson - async - base - base64-bytestring - bytestring - cipher-aes - conduit - conduit-extra - crypto-api - crypto-cipher-types - data-default - http-client - http-conduit - http-types - lifted-base - mtl - SHA - text - time - transformers - uuid - vector - ]; - executableHaskellDepends = [ - aeson - async - base - bytestring - Cabal - HUnit - QuickCheck - smallcheck - tasty - tasty-hunit - tasty-quickcheck - tasty-smallcheck - text - ]; - testHaskellDepends = [ - base - Cabal - HUnit - QuickCheck - smallcheck - tasty - tasty-hunit - tasty-quickcheck - tasty-smallcheck - ]; - description = "PubNub Haskell SDK"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "pubsub" = callPackage ( - { - mkDerivation, - base, - fastcgi, - feed, - HTTP, - json, - mime, - network, - random, - utf8-string, - xml, - }: - mkDerivation { - pname = "pubsub"; - version = "0.11"; - sha256 = "09xaycbzq50q1299r4s84nb8wjhqalimvipv8z135fifvgdsjpm8"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - feed - HTTP - json - mime - network - random - utf8-string - xml - ]; - executableHaskellDepends = [ fastcgi ]; - description = "A library for Google/SixApart pubsub hub interaction"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "puffytools" = callPackage ( - { - mkDerivation, - aeson, - aeson-pretty, - base, - bytestring, - console-program, - containers, - directory, - MissingH, - old-locale, - QuickCheck, - random-fu, - safe, - test-framework, - test-framework-quickcheck2, - text, - time, - vector, - }: - mkDerivation { - pname = "puffytools"; - version = "0.0.0.1"; - sha256 = "0pqqcs3plrhq6474j29lnwvc6fhr1wskb0ph8x64gzv9ly52dc9i"; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - aeson - aeson-pretty - base - bytestring - containers - directory - MissingH - random-fu - safe - text - time - vector - ]; - executableHaskellDepends = [ - base - bytestring - console-program - directory - old-locale - text - time - vector - ]; - testHaskellDepends = [ - aeson - base - bytestring - QuickCheck - test-framework - test-framework-quickcheck2 - text - time - vector - ]; - description = "A CLI assistant"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "ptk"; - } - ) { }; - - "pugixml" = callPackage ( - { - mkDerivation, - base, - bytestring, - data-default-class, - tasty, - tasty-hunit, - template-haskell, - }: - mkDerivation { - pname = "pugixml"; - version = "0.3.3"; - sha256 = "16yy9s02089h82lhhfpaayiz0fjjh5xpylq431yrichciyv6v2rb"; - libraryHaskellDepends = [ - base - bytestring - data-default-class - template-haskell - ]; - testHaskellDepends = [ - base - bytestring - tasty - tasty-hunit - ]; - description = "pugixml binding"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "pugs-DrIFT" = callPackage ( - { - mkDerivation, - base, - bytestring, - containers, - hashable, - hashtables, - HsSyck, - mtl, - old-time, - pretty, - random, - stm, - utf8-string, - }: - mkDerivation { - pname = "pugs-DrIFT"; - version = "2.2.3.20150815"; - sha256 = "0y1y2fbawbypzzrqdj66vh7f7xc6a9bb82bhdmrj5axmi6c5nn0h"; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base - bytestring - containers - hashable - hashtables - HsSyck - mtl - old-time - pretty - random - stm - utf8-string - ]; - executableHaskellDepends = [ - base - bytestring - containers - hashable - hashtables - HsSyck - mtl - old-time - pretty - random - stm - utf8-string - ]; - description = "DrIFT with pugs-specific rules"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "pugs-DrIFT"; - broken = true; - } - ) { }; - - "pugs-HsSyck" = callPackage ( - { - mkDerivation, - base, - bytestring, - }: - mkDerivation { - pname = "pugs-HsSyck"; - version = "0.41"; - sha256 = "108dfhd83yzmlhbgff6j0a40r6vx9aq9dcdd8swk4yib9gbvsrp1"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base - bytestring - ]; - description = "Fast, lightweight YAML loader and dumper"; - license = "unknown"; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "pugs-compat" = callPackage ( - { - mkDerivation, - array, - base, - bytestring, - containers, - directory, - hashtables, - mtl, - network, - process, - random, - regex-base, - regex-pcre-builtin, - stm, - stringtable-atom, - syb, - time, - unix, - utf8-string, - }: - mkDerivation { - pname = "pugs-compat"; - version = "0.0.6.20150815"; - sha256 = "0h6w44b0hkrm1df9mwaqagckl0qrdwmvisvj3cz7x39n8fr43zvy"; - libraryHaskellDepends = [ - array - base - bytestring - containers - directory - hashtables - mtl - network - process - random - regex-base - regex-pcre-builtin - stm - stringtable-atom - syb - time - unix - utf8-string - ]; - description = "Portable Haskell/POSIX layer for Pugs"; - license = lib.licenses.publicDomain; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "pugs-hsregex" = callPackage ( - { - mkDerivation, - array, - base, - haskell98, - }: - mkDerivation { - pname = "pugs-hsregex"; - version = "1.0"; - sha256 = "1px8qvz7afws2w8scplxs4zm628anvh5ssbf0ba9hajh686h133i"; - libraryHaskellDepends = [ - array - base - haskell98 - ]; - description = "Haskell PCRE binding"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "pulse" = callPackage ( { mkDerivation, @@ -545730,166 +316666,6 @@ self: { } ) { inherit (pkgs) libpulseaudio; }; - "punkt" = callPackage ( - { - mkDerivation, - array, - base, - mtl, - regex-tdfa, - regex-tdfa-text, - tasty, - tasty-hunit, - tasty-quickcheck, - text, - unordered-containers, - }: - mkDerivation { - pname = "punkt"; - version = "0.1.1"; - sha256 = "0hhrpkbgm56zs1ynd0ba37fv1vg2bxr79kfb2myjfxsnc6gr4h9b"; - libraryHaskellDepends = [ - array - base - mtl - regex-tdfa - regex-tdfa-text - text - unordered-containers - ]; - testHaskellDepends = [ - base - mtl - regex-tdfa - tasty - tasty-hunit - tasty-quickcheck - text - ]; - description = "Multilingual unsupervised sentence tokenization with Punkt"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "punycode" = callPackage ( - { - mkDerivation, - base, - bytestring, - cereal, - encoding, - HUnit, - mtl, - QuickCheck, - text, - }: - mkDerivation { - pname = "punycode"; - version = "2.0"; - sha256 = "192jgfixnpxdj6jiiz92kx5bi6ij3c389b76q9f4vyfmvcajj1sr"; - libraryHaskellDepends = [ - base - bytestring - cereal - mtl - text - ]; - testHaskellDepends = [ - base - bytestring - cereal - encoding - HUnit - mtl - QuickCheck - text - ]; - description = "Encode unicode strings to ascii forms according to RFC 3492"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "puppetresources" = callPackage ( - { - mkDerivation, - base, - bytestring, - containers, - Diff, - hsfacter, - hslogger, - language-puppet, - mtl, - text, - }: - mkDerivation { - pname = "puppetresources"; - version = "0.4.2"; - sha256 = "064swfpxk7jhb81bi0v9l0r1hn0z2cafnzx7ijdr33xhikyc92rb"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - bytestring - containers - Diff - hsfacter - hslogger - language-puppet - mtl - text - ]; - description = "A program that displays the puppet resources associated to a node given .pp files."; - license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - mainProgram = "puppetresources"; - } - ) { }; - - "pure-cdb" = callPackage ( - { - mkDerivation, - base, - binary, - bytestring, - containers, - directory, - mtl, - test-simple, - Unixutils, - vector, - }: - mkDerivation { - pname = "pure-cdb"; - version = "0.1.2"; - sha256 = "0h7qycpz86r29yshbqm5cmvamv65jj66cs9m03y6qzxda8q8l8i5"; - libraryHaskellDepends = [ - base - binary - bytestring - containers - directory - mtl - vector - ]; - testHaskellDepends = [ - base - bytestring - containers - mtl - test-simple - Unixutils - vector - ]; - description = "Another pure-haskell CDB (Constant Database) implementation"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "pure-fft" = callPackage ( { mkDerivation, base }: mkDerivation { @@ -545902,33 +316678,6 @@ self: { } ) { }; - "pure-io" = callPackage ( - { - mkDerivation, - base, - containers, - mtl, - safe, - }: - mkDerivation { - pname = "pure-io"; - version = "0.2.1"; - sha256 = "0pzvkd8jxw859s187n972yaq5wmwi00cxwhivgffr7z29hr0zvx9"; - revision = "1"; - editedCabalFile = "04r055y62f46lxhm4wbfmdk115fslw7lapw06r16lzb1l48m0phj"; - libraryHaskellDepends = [ - base - containers - mtl - safe - ]; - description = "Pure IO monad"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "pure-noise" = callPackage ( { mkDerivation, @@ -545972,58 +316721,6 @@ self: { } ) { }; - "pure-priority-queue" = callPackage ( - { - mkDerivation, - base, - containers, - }: - mkDerivation { - pname = "pure-priority-queue"; - version = "0.14"; - sha256 = "125vnkjx6n7pgflk9iqg7b6daw55a1rdfi9pfgp39ikfcx9vhb3p"; - libraryHaskellDepends = [ - base - containers - ]; - description = "A pure priority queue"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "pure-priority-queue-tests" = callPackage ( - { - mkDerivation, - base, - containers, - pure-priority-queue, - QuickCheck, - test-framework, - test-framework-quickcheck2, - }: - mkDerivation { - pname = "pure-priority-queue-tests"; - version = "0.12"; - sha256 = "17x2drpmdppzxp3nnxq0vajxrzdnhpapk9rz9qcqaxbg934c7h3d"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - containers - pure-priority-queue - QuickCheck - test-framework - test-framework-quickcheck2 - ]; - description = "Tests for the pure-priority-queue package"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "pure-priority-queue-tests"; - } - ) { }; - "pure-shuffle" = callPackage ( { mkDerivation, @@ -546890,154 +317587,6 @@ self: { } ) { }; - "purescript-iso" = callPackage ( - { - mkDerivation, - aeson, - aeson-attoparsec, - aeson-diff, - async, - attoparsec, - attoparsec-uri, - base, - bytestring, - containers, - deepseq, - emailaddress, - monad-control, - mtl, - QuickCheck, - quickcheck-instances, - scientific, - stm, - strict, - tasty, - tasty-quickcheck, - text, - time, - utf8-string, - uuid, - vector, - zeromq4-haskell, - zeromq4-simple, - }: - mkDerivation { - pname = "purescript-iso"; - version = "0.0.6"; - sha256 = "0zz71c8mv86ihqwcqsp0cjw9dlyd0xw394dz14mwg16frajn986k"; - libraryHaskellDepends = [ - aeson - aeson-attoparsec - aeson-diff - async - attoparsec - attoparsec-uri - base - bytestring - containers - deepseq - emailaddress - monad-control - mtl - QuickCheck - quickcheck-instances - scientific - stm - strict - text - time - utf8-string - uuid - vector - zeromq4-haskell - zeromq4-simple - ]; - testHaskellDepends = [ - aeson - aeson-attoparsec - aeson-diff - async - attoparsec - attoparsec-uri - base - bytestring - containers - deepseq - emailaddress - monad-control - mtl - QuickCheck - quickcheck-instances - scientific - stm - strict - tasty - tasty-quickcheck - text - time - utf8-string - uuid - vector - zeromq4-haskell - zeromq4-simple - ]; - description = "Isomorphic trivial data type definitions over JSON"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "purescript-tsd-gen" = callPackage ( - { - mkDerivation, - aeson, - base, - bytestring, - containers, - directory, - filepath, - mtl, - optparse-applicative, - purescript, - text, - }: - mkDerivation { - pname = "purescript-tsd-gen"; - version = "0.3.0.0"; - sha256 = "0246pxgwrqbrhsgixx6mp9w1h355qz29gx1b7bmdxxxafyn2il6n"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson - base - bytestring - containers - directory - filepath - mtl - purescript - text - ]; - executableHaskellDepends = [ - aeson - base - bytestring - containers - directory - filepath - mtl - optparse-applicative - purescript - text - ]; - description = "TypeScript Declaration File (.d.ts) generator for PureScript"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "purs-tsd-gen"; - broken = true; - } - ) { }; - "purl" = callPackage ( { mkDerivation, @@ -547176,133 +317725,6 @@ self: { } ) { }; - "push-notifications" = callPackage ( - { - mkDerivation, - aeson, - base, - base16-bytestring, - binary, - bytestring, - casing, - conduit, - convertible, - data-default, - HsOpenSSL, - http-conduit, - http-types, - network, - resourcet, - text, - time, - transformers, - }: - mkDerivation { - pname = "push-notifications"; - version = "0.2.1"; - sha256 = "004f947kmj5qq3hhs21ydgrpdh0g2cd0hk4cflabqjlxix2bs65f"; - libraryHaskellDepends = [ - aeson - base - base16-bytestring - binary - bytestring - casing - conduit - convertible - data-default - HsOpenSSL - http-conduit - http-types - network - resourcet - text - time - transformers - ]; - description = "Push notifications for Android and iOS"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "push-notify" = callPackage ( - { - mkDerivation, - aeson, - async, - attoparsec-conduit, - base, - base16-bytestring, - bytestring, - cereal, - certificate, - conduit, - connection, - containers, - convertible, - cprng-aes, - data-default, - http-client, - http-conduit, - http-types, - monad-control, - mtl, - network, - resourcet, - retry, - stm, - text, - time, - tls, - tls-extra, - transformers, - unordered-containers, - xml-conduit, - }: - mkDerivation { - pname = "push-notify"; - version = "0.1.0.1"; - sha256 = "1ca9cs55yj1960cx7vha2w33nvqj89rhkdji555aaac3z302jgjs"; - libraryHaskellDepends = [ - aeson - async - attoparsec-conduit - base - base16-bytestring - bytestring - cereal - certificate - conduit - connection - containers - convertible - cprng-aes - data-default - http-client - http-conduit - http-types - monad-control - mtl - network - resourcet - retry - stm - text - time - tls - tls-extra - transformers - unordered-containers - xml-conduit - ]; - description = "A server-side library for sending push notifications"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "push-notify-apn" = callPackage ( { mkDerivation, @@ -547378,217 +317800,6 @@ self: { } ) { }; - "push-notify-ccs" = callPackage ( - { - mkDerivation, - aeson, - async, - attoparsec, - base, - bytestring, - cprng-aes, - crypto-random, - data-default, - hslogger, - mtl, - network, - pontarius-xmpp, - push-notify, - retry, - stm, - text, - tls, - tls-extra, - unordered-containers, - xml-types, - }: - mkDerivation { - pname = "push-notify-ccs"; - version = "0.1.0.1"; - sha256 = "1fgpzcbkcsb03lysml28a8w3c9l3nx4mirrn287g7y1kb4kx3bw0"; - libraryHaskellDepends = [ - aeson - async - attoparsec - base - bytestring - cprng-aes - crypto-random - data-default - hslogger - mtl - network - pontarius-xmpp - push-notify - retry - stm - text - tls - tls-extra - unordered-containers - xml-types - ]; - description = "A server-side library for sending/receiving push notifications through CCS (Google Cloud Messaging)"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "push-notify-general" = callPackage ( - { - mkDerivation, - aeson, - base, - bytestring, - containers, - data-default, - hashable, - http-client, - http-conduit, - http-types, - push-notify, - push-notify-ccs, - text, - unordered-containers, - xml-conduit, - yesod, - }: - mkDerivation { - pname = "push-notify-general"; - version = "0.1.0.1"; - sha256 = "0vyw3733xm2s3nxybav8an68mlagk8v3bb43qlz71hkjgjddvpdh"; - libraryHaskellDepends = [ - aeson - base - bytestring - containers - data-default - hashable - http-client - http-conduit - http-types - push-notify - push-notify-ccs - text - unordered-containers - xml-conduit - yesod - ]; - description = "A general library for sending/receiving push notif. through dif. services."; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "pushbullet" = callPackage ( - { - mkDerivation, - aeson, - base, - bytestring, - hspec, - lens, - text, - unordered-containers, - wreq, - }: - mkDerivation { - pname = "pushbullet"; - version = "0.0.0"; - sha256 = "0nvy594s9jp57png3k0yy0gwqgk5snidw6rbcminzml584qswwap"; - libraryHaskellDepends = [ - aeson - base - bytestring - lens - text - unordered-containers - wreq - ]; - testHaskellDepends = [ - base - hspec - ]; - description = "Simple push support for pushbullet"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "pushbullet-types" = callPackage ( - { - mkDerivation, - aeson, - base, - http-api-data, - microlens, - microlens-th, - scientific, - text, - time, - unordered-containers, - }: - mkDerivation { - pname = "pushbullet-types"; - version = "0.4.1.0"; - sha256 = "0ny8nlk50cn6zgikg7xwylkrablj05vcm5gjm9y4zdzhbz7s4qb4"; - libraryHaskellDepends = [ - aeson - base - http-api-data - microlens - microlens-th - scientific - text - time - unordered-containers - ]; - description = "Datatypes used by the Pushbullet APIs"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "pusher-haskell" = callPackage ( - { - mkDerivation, - aeson, - base, - bytestring, - hspec, - HTTP, - MissingH, - mtl, - SHA, - time, - }: - mkDerivation { - pname = "pusher-haskell"; - version = "0.1.0.0"; - sha256 = "0ymj27a3kmaddydd5zshj108fmzhlxasn9i4igzjaj308f1ygki6"; - libraryHaskellDepends = [ - aeson - base - bytestring - HTTP - MissingH - mtl - SHA - time - ]; - testHaskellDepends = [ - base - hspec - ]; - description = "A Pusher.com client written in Haskell"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "pusher-http-haskell" = callPackage ( { mkDerivation, @@ -547641,309 +317852,6 @@ self: { } ) { }; - "pusher-ws" = callPackage ( - { - mkDerivation, - aeson, - base, - bytestring, - containers, - deepseq, - hashable, - http-conduit, - lens, - lens-aeson, - network, - scientific, - stm, - text, - time, - transformers, - unordered-containers, - websockets, - wuss, - }: - mkDerivation { - pname = "pusher-ws"; - version = "0.1.1.0"; - sha256 = "04nk5jdw7pv57366hjscl5sdhbhyplpfb34y1dj3i31d8s20yn1a"; - libraryHaskellDepends = [ - aeson - base - bytestring - containers - deepseq - hashable - http-conduit - lens - lens-aeson - network - scientific - stm - text - time - transformers - unordered-containers - websockets - wuss - ]; - description = "Implementation of the Pusher WebSocket protocol"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "pushme" = callPackage ( - { - mkDerivation, - aeson, - base, - bytestring, - containers, - foldl, - io-storage, - lens, - logging, - monad-logger, - old-locale, - optparse-applicative, - parallel-io, - pipes, - pipes-group, - pipes-safe, - pipes-text, - regex-posix, - safe, - shelly, - system-fileio, - system-filepath, - temporary, - text, - text-format, - time, - transformers, - unix, - unordered-containers, - yaml, - }: - mkDerivation { - pname = "pushme"; - version = "2.1.3"; - sha256 = "13rc83fqbizcq1pvvmpd90cy5664p21hjg1aw5bjqw19l2g3c153"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - aeson - base - bytestring - containers - foldl - io-storage - lens - logging - monad-logger - old-locale - optparse-applicative - parallel-io - pipes - pipes-group - pipes-safe - pipes-text - regex-posix - safe - shelly - system-fileio - system-filepath - temporary - text - text-format - time - transformers - unix - unordered-containers - yaml - ]; - description = "Tool to synchronize directories with rsync, zfs or git-annex"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "pushme"; - broken = true; - } - ) { }; - - "pushover" = callPackage ( - { - mkDerivation, - aeson, - base, - bytestring, - exceptions, - http-client, - http-client-tls, - mtl, - tasty, - tasty-hunit, - text, - time, - transformers, - uri-encode, - }: - mkDerivation { - pname = "pushover"; - version = "0.1.0.1"; - sha256 = "0ai68rk03byrdb3r393hrnnq272c648ahfx8pzm4wf3rinvnhccc"; - libraryHaskellDepends = [ - aeson - base - bytestring - exceptions - http-client - http-client-tls - mtl - text - time - transformers - uri-encode - ]; - testHaskellDepends = [ - base - bytestring - http-client - tasty - tasty-hunit - text - time - ]; - description = "A Haskell Pushover API library"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "putlenses" = callPackage ( - { - mkDerivation, - base, - containers, - ghc-prim, - lens, - mtl, - QuickCheck, - random, - safe, - split, - template-haskell, - transformers, - }: - mkDerivation { - pname = "putlenses"; - version = "0.1.3"; - sha256 = "153hxffd1rg3m73kss0j3s7102lj6p84c95gvzyl0gmjpljfxffp"; - libraryHaskellDepends = [ - base - containers - ghc-prim - lens - mtl - QuickCheck - random - safe - split - template-haskell - transformers - ]; - description = "Put-based lens library"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "puzzle-draw" = callPackage ( - { - mkDerivation, - aeson, - base, - blaze-svg, - bytestring, - containers, - deepseq, - diagrams-lib, - diagrams-rasterific, - filepath, - hashable, - hspec, - linear, - mtl, - optparse-applicative, - parsec, - SVGFonts, - tasty, - tasty-hspec, - tasty-hunit, - text, - unordered-containers, - vector-space, - yaml, - }: - mkDerivation { - pname = "puzzle-draw"; - version = "0.3.0.0"; - sha256 = "0vnmq65khi1lcrf3rz4ym7lnv3178rvnb884rln0jspil6bs4cs7"; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - aeson - base - containers - diagrams-lib - diagrams-rasterific - filepath - hashable - linear - mtl - optparse-applicative - parsec - SVGFonts - text - unordered-containers - vector-space - yaml - ]; - executableHaskellDepends = [ - aeson - base - containers - diagrams-lib - diagrams-rasterific - filepath - optparse-applicative - yaml - ]; - testHaskellDepends = [ - base - blaze-svg - bytestring - containers - deepseq - diagrams-lib - hspec - tasty - tasty-hspec - tasty-hunit - text - yaml - ]; - description = "Creating graphics for pencil puzzles"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "puzzle-draw-cmdline" = callPackage ( { mkDerivation, @@ -547976,6 +317884,7 @@ self: { license = lib.licenses.mit; hydraPlatforms = lib.platforms.none; mainProgram = "drawpuzzle"; + broken = true; } ) { }; @@ -548015,44 +317924,6 @@ self: { } ) { }; - "pvd" = callPackage ( - { - mkDerivation, - array, - base, - Codec-Image-DevIL, - containers, - haskell98, - libdevil, - mtl, - network, - stm, - X11, - }: - mkDerivation { - pname = "pvd"; - version = "1.1.1"; - sha256 = "18hlsh3ndlybkiblcfqzjm1pa4myc01yzr9hx7p48yp86q519hvr"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - array - base - Codec-Image-DevIL - containers - haskell98 - mtl - network - stm - X11 - ]; - executableSystemDepends = [ libdevil ]; - description = "A photo viewer daemon application with remote controlling abilities"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { inherit (pkgs) libdevil; }; - "pvector" = callPackage ( { mkDerivation, @@ -548297,68 +318168,6 @@ self: { } ) { }; - "pyffi" = callPackage ( - { - mkDerivation, - aeson, - base, - bytestring, - containers, - pureMD5, - python, - template-haskell, - }: - mkDerivation { - pname = "pyffi"; - version = "0.4.0.2"; - sha256 = "0cpzl0d0hsdlm1786s75xsq3c93mm1sp7alr6xhihmnrsj71d58h"; - libraryHaskellDepends = [ - aeson - base - bytestring - containers - pureMD5 - template-haskell - ]; - libraryPkgconfigDepends = [ python ]; - description = "Call python inline from haskell"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { python = null; }; - - "pyfi" = callPackage ( - { - mkDerivation, - aeson, - base, - bytestring, - containers, - pureMD5, - python, - template-haskell, - }: - mkDerivation { - pname = "pyfi"; - version = "0.4.0.4"; - sha256 = "0xq5nhc11dkf2yvzcd129n0r7vpias091lzkll4f4cjsmljbxigw"; - libraryHaskellDepends = [ - aeson - base - bytestring - containers - pureMD5 - template-haskell - ]; - libraryPkgconfigDepends = [ python ]; - description = "Call python inline from haskell"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { python = null; }; - "python-pickle" = callPackage ( { mkDerivation, @@ -548416,51 +318225,6 @@ self: { } ) { }; - "q4c12-twofinger" = callPackage ( - { - mkDerivation, - base, - Cabal, - cabal-doctest, - containers, - deepseq, - doctest, - lens, - lens-properties, - semigroupoids, - tasty, - tasty-quickcheck, - }: - mkDerivation { - pname = "q4c12-twofinger"; - version = "0.2"; - sha256 = "0c4fm6pdl1mlh4xnp8syjifknyvbdqwdyiika9pkww4xmf12lv7z"; - setupHaskellDepends = [ - base - Cabal - cabal-doctest - ]; - libraryHaskellDepends = [ - base - containers - deepseq - semigroupoids - ]; - testHaskellDepends = [ - base - doctest - lens - lens-properties - tasty - tasty-quickcheck - ]; - description = "Efficient alternating finger trees"; - license = lib.licenses.bsd2; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "qbe" = callPackage ( { mkDerivation, @@ -548504,31 +318268,6 @@ self: { } ) { }; - "qc-oi-testgenerator" = callPackage ( - { - mkDerivation, - base, - fclabels, - QuickCheck, - template-haskell, - }: - mkDerivation { - pname = "qc-oi-testgenerator"; - version = "1.2.0.3"; - sha256 = "13rga5haz26qvx3hznbl6ik55s8g7qi3nj7a6vhyx46vjhzwnsvg"; - libraryHaskellDepends = [ - base - fclabels - QuickCheck - template-haskell - ]; - description = "Compile time generation of operation invariance tests for QuickCheck"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "qchas" = callPackage ( { mkDerivation, @@ -548568,91 +318307,6 @@ self: { } ) { }; - "qd" = callPackage ( - { - mkDerivation, - base, - floatshow, - qd, - }: - mkDerivation { - pname = "qd"; - version = "1.0.2.1"; - sha256 = "0dhvdrpcbc6qiqna2kiaa0zbz7cgq7ziy2my6k85cbgv6k77p918"; - libraryHaskellDepends = [ - base - floatshow - ]; - librarySystemDepends = [ qd ]; - description = "double-double and quad-double number type via libqd"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { qd = null; }; - - "qd-vec" = callPackage ( - { - mkDerivation, - base, - qd, - Vec, - }: - mkDerivation { - pname = "qd-vec"; - version = "1.1"; - sha256 = "0lj5kg0sjkck89phvi239xb2k7hxmxg9dh7yg2df2iaj4c2m2ync"; - libraryHaskellDepends = [ - base - qd - Vec - ]; - description = "'Vec' instances for 'qd' types"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "qed" = callPackage ( - { - mkDerivation, - base, - deepseq, - directory, - exceptions, - extra, - filepath, - haskell-src-exts, - transformers, - uniplate, - }: - mkDerivation { - pname = "qed"; - version = "0.0"; - sha256 = "1klsh6hvbvphhf3nr21856hqfcc4ysbrl6sz2z9rvvvpwbl24918"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base - deepseq - directory - exceptions - extra - filepath - haskell-src-exts - transformers - uniplate - ]; - testHaskellDepends = [ - base - transformers - ]; - description = "Simple prover"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "qhs" = callPackage ( { mkDerivation, @@ -548768,117 +318422,8 @@ self: { regex-posix ]; description = "Delaunay triangulation, Voronoi diagrams and convex hulls"; - license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "qhull-simple" = callPackage ( - { - mkDerivation, - base, - qhull, - vector, - }: - mkDerivation { - pname = "qhull-simple"; - version = "0.1"; - sha256 = "0g0abqc5z9nysm21c77kylkka1bvyn16ycinws1lcrjy53cb82sw"; - libraryHaskellDepends = [ - base - vector - ]; - librarySystemDepends = [ qhull ]; - description = "Simple bindings to Qhull, a library for computing convex hulls"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { inherit (pkgs) qhull; }; - - "qif" = callPackage ( - { - mkDerivation, - attoparsec, - base, - microlens, - microlens-th, - QuickCheck, - tasty, - tasty-hunit, - tasty-quickcheck, - text, - time, - }: - mkDerivation { - pname = "qif"; - version = "1.1.1"; - sha256 = "0bfjykskdcdb674qgnl8vaygw2bh32i0rdjvsx20wabcpxgs3zpp"; - libraryHaskellDepends = [ - attoparsec - base - microlens - microlens-th - text - time - ]; - testHaskellDepends = [ - attoparsec - base - microlens - QuickCheck - tasty - tasty-hunit - tasty-quickcheck - text - time - ]; - description = "A simple QIF file format parser / printer"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "qlinear" = callPackage ( - { - mkDerivation, - base, - haskell-src-exts, - haskell-src-meta, - hspec, - linear, - parsec, - split, - template-haskell, - }: - mkDerivation { - pname = "qlinear"; - version = "0.1.2.0"; - sha256 = "1q1xd3sh5b5kjp9wb24v2z9dbjk75dwk286f0gda4y460h4zkp8z"; - libraryHaskellDepends = [ - base - haskell-src-exts - haskell-src-meta - linear - parsec - split - template-haskell - ]; - testHaskellDepends = [ - base - haskell-src-exts - haskell-src-meta - hspec - linear - parsec - split - template-haskell - ]; - description = "Typesafe library for linear algebra"; - license = lib.licenses.bsd3; + license = lib.licenses.gpl3Only; hydraPlatforms = lib.platforms.none; - broken = true; } ) { }; @@ -548914,85 +318459,6 @@ self: { } ) { }; - "qnap-decrypt" = callPackage ( - { - mkDerivation, - base, - binary, - bytestring, - cipher-aes128, - conduit, - conduit-extra, - crypto-api, - directory, - filepath, - hspec, - HUnit, - optparse-applicative, - streaming-commons, - tagged, - temporary, - utf8-string, - }: - mkDerivation { - pname = "qnap-decrypt"; - version = "0.3.5"; - sha256 = "1mm08bm2jzcnh1zal7zdiyryl3z5z91ch2vyyl0p29nbwl2q06xb"; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base - binary - bytestring - cipher-aes128 - conduit - conduit-extra - crypto-api - directory - streaming-commons - tagged - utf8-string - ]; - executableHaskellDepends = [ - base - binary - bytestring - cipher-aes128 - conduit - conduit-extra - crypto-api - directory - filepath - optparse-applicative - streaming-commons - tagged - utf8-string - ]; - testHaskellDepends = [ - base - binary - bytestring - cipher-aes128 - conduit - conduit-extra - crypto-api - directory - filepath - hspec - HUnit - streaming-commons - tagged - temporary - utf8-string - ]; - description = "Decrypt files encrypted by QNAP's Hybrid Backup Sync"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "qnap-decrypt"; - } - ) { }; - "qq-bytes" = callPackage ( { mkDerivation, @@ -549089,127 +318555,6 @@ self: { } ) { }; - "qr-imager" = callPackage ( - { - mkDerivation, - base, - binary, - bytestring, - cryptonite, - directory, - haskell-qrencode, - hspec, - jose-jwt, - JuicyPixels, - microlens, - process, - qrencode, - split, - vector, - }: - mkDerivation { - pname = "qr-imager"; - version = "2.0.0.2"; - sha256 = "18fhvvnmd7nv9ls5jy4ng807q01m2dr4m0znjav57v9mc37vspqk"; - libraryHaskellDepends = [ - base - binary - bytestring - cryptonite - directory - haskell-qrencode - jose-jwt - JuicyPixels - microlens - process - split - vector - ]; - libraryPkgconfigDepends = [ qrencode ]; - testHaskellDepends = [ - base - hspec - ]; - description = "Library to generate images"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { inherit (pkgs) qrencode; }; - - "qr-repa" = callPackage ( - { - mkDerivation, - aeson, - base, - bytestring, - cryptonite, - directory, - haskell-qrencode, - jose-jwt, - lens, - repa, - repa-devil, - vector, - }: - mkDerivation { - pname = "qr-repa"; - version = "0.1.0.0"; - sha256 = "0dvdfy82qvp39kb4nx26i0i2mfqad21mfjjmv2gdq78jchyj912y"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson - base - bytestring - cryptonite - directory - haskell-qrencode - jose-jwt - lens - repa - repa-devil - vector - ]; - executableHaskellDepends = [ - base - bytestring - ]; - description = "Library to generate QR codes from bytestrings and objects and scale image files"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "qrpipe"; - } - ) { }; - - "qrcode" = callPackage ( - { - mkDerivation, - array, - base, - containers, - mtl, - vector, - }: - mkDerivation { - pname = "qrcode"; - version = "0.1.2"; - sha256 = "1wfnxlz6rqjcgnkaqq0wdn75jsh3b9hagb84c1ljnwqaw98n3a9d"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - array - base - containers - mtl - vector - ]; - description = "QR Code library in pure Haskell"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "qrcode-core" = callPackage ( { mkDerivation, @@ -549298,51 +318643,6 @@ self: { } ) { }; - "qt" = - callPackage - ( - { - mkDerivation, - base, - OpenGL, - qtc_core, - qtc_gui, - qtc_network, - qtc_opengl, - qtc_script, - qtc_tools, - }: - mkDerivation { - pname = "qt"; - version = "1.1.6.1"; - sha256 = "10iz2nd5m6a78c67bwgawv88vb6lnd1zj97vm85a3qdcpm6x5lv4"; - libraryHaskellDepends = [ - base - OpenGL - ]; - librarySystemDepends = [ - qtc_core - qtc_gui - qtc_network - qtc_opengl - qtc_script - qtc_tools - ]; - description = "Qt bindings"; - license = "unknown"; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) - { - qtc_core = null; - qtc_gui = null; - qtc_network = null; - qtc_opengl = null; - qtc_script = null; - qtc_tools = null; - }; - "qtah-cpp-qt5" = callPackage ( { mkDerivation, @@ -549696,85 +318996,6 @@ self: { } ) { }; - "quandl-api" = callPackage ( - { - mkDerivation, - aeson, - base, - blaze-builder, - bytestring, - http-conduit, - http-types, - syb, - text, - time, - time-locale-compat, - unordered-containers, - }: - mkDerivation { - pname = "quandl-api"; - version = "0.2.1.0"; - sha256 = "01mjwg7myal3hc98s7v582ycabv7qx2j6lcsyvhxbmhzs1wl8sqf"; - libraryHaskellDepends = [ - aeson - base - blaze-builder - bytestring - http-conduit - http-types - syb - text - time - time-locale-compat - unordered-containers - ]; - description = "Quandl.com API library"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "quantfin" = callPackage ( - { - mkDerivation, - base, - containers, - mersenne-random-pure64, - mtl, - random, - random-fu, - random-source, - rvar, - transformers, - vector, - }: - mkDerivation { - pname = "quantfin"; - version = "0.2.0.0"; - sha256 = "0s9wmkngz31wrllffk3i8y66f60liajwhapih7mnriyfvqqsb6ra"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - containers - mersenne-random-pure64 - mtl - random - random-fu - random-source - rvar - transformers - vector - ]; - executableHaskellDepends = [ base ]; - description = "Quant finance library in pure Haskell"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "example"; - } - ) { }; - "quantification" = callPackage ( { mkDerivation, @@ -549906,378 +319127,6 @@ self: { } ) { }; - "quantum-arrow" = callPackage ( - { - mkDerivation, - base, - MonadRandom, - mtl, - QuickCheck, - random, - }: - mkDerivation { - pname = "quantum-arrow"; - version = "0.0.5"; - sha256 = "19z5b0jwnz20g0203xd78cv8rgm92diyxard4mbj6dyrj2kkfgww"; - libraryHaskellDepends = [ - base - MonadRandom - mtl - QuickCheck - random - ]; - description = "An embedding of quantum computation as a Haskell arrow"; - license = "LGPL"; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "quantum-random" = callPackage ( - { - mkDerivation, - aeson, - ansi-terminal, - ansigraph, - base, - bytestring, - directory, - haskeline, - hspec, - http-conduit, - mtl, - QuickCheck, - terminal-size, - text, - }: - mkDerivation { - pname = "quantum-random"; - version = "0.6.4"; - sha256 = "16qk4m6jgf4phmc0zxw11as9rlvspxpqza5k318bra9f9ybn253y"; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - aeson - ansi-terminal - ansigraph - base - bytestring - directory - http-conduit - terminal-size - text - ]; - executableHaskellDepends = [ - base - haskeline - mtl - ]; - testHaskellDepends = [ - base - hspec - QuickCheck - ]; - description = "Retrieve, store and manage real quantum random data"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - mainProgram = "qrand"; - broken = true; - } - ) { }; - - "quarantimer" = callPackage ( - { - mkDerivation, - aeson, - async, - base, - bytestring, - directory, - filepath, - lucid, - process, - sandi, - servant, - servant-client, - servant-lucid, - servant-multipart, - servant-server, - stm, - text, - time, - uuid, - wai, - wai-extra, - warp, - warp-tls, - }: - mkDerivation { - pname = "quarantimer"; - version = "1.20200422"; - sha256 = "1wcf9rh6543pv1dpf55jk12x6zsak29izy94q1l4hc31w32gi8xz"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - aeson - async - base - bytestring - directory - filepath - lucid - process - sandi - servant - servant-client - servant-lucid - servant-multipart - servant-server - stm - text - time - uuid - wai - wai-extra - warp - warp-tls - ]; - description = "Coronavirus quarantine timer web app for your things"; - license = lib.licenses.bsd2; - hydraPlatforms = lib.platforms.none; - mainProgram = "quarantimer"; - broken = true; - } - ) { }; - - "qudb" = callPackage ( - { - mkDerivation, - alex, - array, - base, - bytestring, - directory, - happy, - mtl, - snappy, - }: - mkDerivation { - pname = "qudb"; - version = "0.0.1"; - sha256 = "0cpvik35qv587k2qsd2rh7awlwll1gciv0nr7wjr79bn0q9df0cq"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - array - base - bytestring - directory - mtl - snappy - ]; - executableToolDepends = [ - alex - happy - ]; - description = "Quite Useless DB"; - license = lib.licenses.lgpl3Only; - hydraPlatforms = lib.platforms.none; - mainProgram = "qudb"; - broken = true; - } - ) { }; - - "quenya-verb" = callPackage ( - { - mkDerivation, - aeson, - base, - bytestring, - cmdargs, - cond, - containers, - directory, - iproute, - MissingH, - network, - safe, - scotty, - text, - transformers, - wai, - wai-extra, - wai-middleware-static, - warp, - }: - mkDerivation { - pname = "quenya-verb"; - version = "0.0.1"; - sha256 = "0zw15qym8r00m7kir9h9cys1rmszdqihfcvy6dw52f1pb6cp5vsx"; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - aeson - base - bytestring - cmdargs - cond - containers - directory - iproute - MissingH - network - safe - scotty - text - transformers - wai - wai-extra - wai-middleware-static - warp - ]; - executableHaskellDepends = [ base ]; - description = "Quenya verb conjugator"; - license = lib.licenses.agpl3Only; - hydraPlatforms = lib.platforms.none; - mainProgram = "quenya-verb-server"; - broken = true; - } - ) { }; - - "queryparser" = callPackage ( - { - mkDerivation, - aeson, - base, - bytestring, - containers, - criterion, - fixed-list, - hashable, - mtl, - parsec, - predicate-class, - pretty, - QuickCheck, - semigroups, - text, - unordered-containers, - yaml, - }: - mkDerivation { - pname = "queryparser"; - version = "0.1.0.1"; - sha256 = "1rz3v3cks7ys6313gispxbs8wzm8h5lccl27f9nhha7rpzl9qkcj"; - libraryHaskellDepends = [ - aeson - base - bytestring - containers - fixed-list - hashable - mtl - parsec - predicate-class - pretty - QuickCheck - semigroups - text - unordered-containers - yaml - ]; - benchmarkHaskellDepends = [ - base - criterion - text - ]; - description = "Analysis and parsing library for SQL queries"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "queryparser-demo" = callPackage ( - { - mkDerivation, - base, - containers, - pretty, - queryparser, - queryparser-vertica, - text, - unordered-containers, - }: - mkDerivation { - pname = "queryparser-demo"; - version = "0.1.0.0"; - sha256 = "1ndm7rdwnl8sgfi5058hh1l7xisxbvxl8ign91hwpkyqfmgx3ypi"; - libraryHaskellDepends = [ - base - containers - pretty - queryparser - queryparser-vertica - text - unordered-containers - ]; - description = "Demo package containing queryparser examples"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "queryparser-hive" = callPackage ( - { - mkDerivation, - aeson, - base, - bytestring, - containers, - fixed-list, - hashable, - mtl, - parsec, - predicate-class, - pretty, - queryparser, - QuickCheck, - regex-tdfa, - semigroups, - text, - unordered-containers, - yaml, - }: - mkDerivation { - pname = "queryparser-hive"; - version = "0.1.0.1"; - sha256 = "0rj1v715wr3z76mp7i581bsjfvl9038kh4ccwlvjzi67afvds0b8"; - libraryHaskellDepends = [ - aeson - base - bytestring - containers - fixed-list - hashable - mtl - parsec - predicate-class - pretty - queryparser - QuickCheck - regex-tdfa - semigroups - text - unordered-containers - yaml - ]; - description = "Parsing for Hive SQL queries"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "queryparser-presto" = callPackage ( { mkDerivation, @@ -550325,115 +319174,6 @@ self: { description = "Parsing for Presto SQL queries"; license = lib.licenses.mit; hydraPlatforms = lib.platforms.none; - } - ) { }; - - "queryparser-vertica" = callPackage ( - { - mkDerivation, - aeson, - base, - bytestring, - containers, - fixed-list, - hashable, - mtl, - parsec, - predicate-class, - pretty, - queryparser, - QuickCheck, - regex-tdfa, - semigroups, - text, - unordered-containers, - yaml, - }: - mkDerivation { - pname = "queryparser-vertica"; - version = "0.1.0.1"; - sha256 = "0pkkgb3schbb25pw8k9varx3c0iwhfc47w4f2692y6s39vpm4d5z"; - libraryHaskellDepends = [ - aeson - base - bytestring - containers - fixed-list - hashable - mtl - parsec - predicate-class - pretty - queryparser - QuickCheck - regex-tdfa - semigroups - text - unordered-containers - yaml - ]; - description = "Parsing for Vertica SQL queries"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "querystring-pickle" = callPackage ( - { - mkDerivation, - base, - bytestring, - QuickCheck, - test-framework, - test-framework-quickcheck2, - text, - }: - mkDerivation { - pname = "querystring-pickle"; - version = "0.2.0"; - sha256 = "18by7671q3sp38cii7j8b0jvdbbix4wyaa3wan77s0mfkdxzicrf"; - libraryHaskellDepends = [ - base - bytestring - text - ]; - testHaskellDepends = [ - base - bytestring - QuickCheck - test-framework - test-framework-quickcheck2 - ]; - description = "Picklers for de/serialising Generic data types to and from query strings"; - license = "unknown"; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "questioner" = callPackage ( - { - mkDerivation, - ansi-terminal, - base, - readline, - terminal-size, - }: - mkDerivation { - pname = "questioner"; - version = "0.1.1.0"; - sha256 = "05q64mslkbg017fpjx7ma2al6iz5zjrkyzipm8p86n8zcx3l1aw3"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - ansi-terminal - base - readline - terminal-size - ]; - description = "A package for prompting values from the command-line"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; broken = true; } ) { }; @@ -550518,32 +319258,6 @@ self: { } ) { }; - "queuelike" = callPackage ( - { - mkDerivation, - array, - base, - containers, - mtl, - stateful-mtl, - }: - mkDerivation { - pname = "queuelike"; - version = "1.0.9"; - sha256 = "0nvs9ln55wrczpn948i4z110rbfp0rv2wv8iz94lbyxhilhyjf1z"; - libraryHaskellDepends = [ - array - base - containers - mtl - stateful-mtl - ]; - description = "A library of queuelike data structures, both functional and stateful"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "queues" = callPackage ( { mkDerivation, @@ -550877,49 +319591,6 @@ self: { } ) { }; - "quick-schema" = callPackage ( - { - mkDerivation, - aeson, - base, - hashable, - hspec, - QuickCheck, - scientific, - text, - unordered-containers, - vector, - }: - mkDerivation { - pname = "quick-schema"; - version = "0.1.0.0"; - sha256 = "0vcfvidryb7rasbhlx69hmbqj0mnpk2804b8jz4n6842bbifillr"; - libraryHaskellDepends = [ - aeson - base - hashable - scientific - text - unordered-containers - vector - ]; - testHaskellDepends = [ - aeson - base - hspec - QuickCheck - scientific - text - unordered-containers - vector - ]; - description = "Slimmed down json schema language and validator"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "quickbench" = callPackage ( { mkDerivation, @@ -550963,51 +319634,6 @@ self: { } ) { }; - "quickbooks" = callPackage ( - { - mkDerivation, - aeson, - authenticate-oauth, - base, - bytestring, - email-validate, - fast-logger, - http-client, - http-client-tls, - http-types, - interpolate, - old-locale, - text, - thyme, - yaml, - }: - mkDerivation { - pname = "quickbooks"; - version = "0.5.0.1"; - sha256 = "0c2znv225vg36sq4wc2c8r4qzvwgaizq36kpd8jy85mvxpv9a226"; - libraryHaskellDepends = [ - aeson - authenticate-oauth - base - bytestring - email-validate - fast-logger - http-client - http-client-tls - http-types - interpolate - old-locale - text - thyme - yaml - ]; - description = "QuickBooks API binding"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "quickcheck-arbitrary-adt" = callPackage ( { mkDerivation, @@ -551455,1967 +320081,691 @@ self: { quickcheck-dynamic, tasty, tasty-golden, - tasty-hunit, - tasty-quickcheck, - temporary, - }: - mkDerivation { - pname = "quickcheck-lockstep"; - version = "0.8.1"; - sha256 = "10x2yzr4pykgb8krassql1dl81vp78yx06ykswwy6cld46hq1d5h"; - libraryHaskellDepends = [ - base - constraints - containers - mtl - QuickCheck - quickcheck-dynamic - ]; - testHaskellDepends = [ - base - constraints - containers - directory - filepath - mtl - QuickCheck - quickcheck-dynamic - tasty - tasty-golden - tasty-hunit - tasty-quickcheck - temporary - ]; - description = "Library for lockstep-style testing with 'quickcheck-dynamic'"; - license = lib.licenses.bsd3; - } - ) { }; - - "quickcheck-monoid-subclasses" = callPackage ( - { - mkDerivation, - base, - bytestring, - commutative-semigroups, - containers, - hspec, - hspec-discover, - monoid-subclasses, - pretty-show, - QuickCheck, - quickcheck-classes, - semigroupoids, - text, - vector, - }: - mkDerivation { - pname = "quickcheck-monoid-subclasses"; - version = "0.3.0.6"; - sha256 = "03gngckzwhln7c86dixg8szrnqwgdl9svy6hfnzgyjpn4qfqwcmv"; - libraryHaskellDepends = [ - base - containers - monoid-subclasses - pretty-show - QuickCheck - quickcheck-classes - semigroupoids - ]; - testHaskellDepends = [ - base - bytestring - commutative-semigroups - containers - hspec - monoid-subclasses - QuickCheck - quickcheck-classes - text - vector - ]; - testToolDepends = [ hspec-discover ]; - doHaddock = false; - description = "Testing monoid subclass instances with QuickCheck"; - license = lib.licenses.asl20; - } - ) { }; - - "quickcheck-poly" = callPackage ( - { - mkDerivation, - base, - haskell98, - hint, - MonadCatchIO-mtl, - QuickCheck, - regex-compat, - regex-tdfa, - }: - mkDerivation { - pname = "quickcheck-poly"; - version = "0.2.0.1"; - sha256 = "0imigjsb6jy1k9xipi5b4b300cpv2l7hhd2iiqpn80dp10v7y5na"; - libraryHaskellDepends = [ - base - haskell98 - hint - MonadCatchIO-mtl - QuickCheck - regex-compat - regex-tdfa - ]; - description = "Automating QuickCheck for polymorphic and overlaoded properties"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "quickcheck-properties" = callPackage ( - { mkDerivation, base }: - mkDerivation { - pname = "quickcheck-properties"; - version = "0.1"; - sha256 = "0hr61w1wpah1p4h87iz17aby53ysa8waqsl0als8b69in0zyv29w"; - libraryHaskellDepends = [ base ]; - description = "QuickCheck properties for standard type classes"; - license = lib.licenses.bsd3; - } - ) { }; - - "quickcheck-property-comb" = callPackage ( - { - mkDerivation, - base, - mtl, - QuickCheck, - }: - mkDerivation { - pname = "quickcheck-property-comb"; - version = "0.1.0.2"; - sha256 = "0wqz2amhwf1djbwwdin142mzp94mxbzb12khznijissjdz38knp5"; - libraryHaskellDepends = [ - base - mtl - QuickCheck - ]; - description = "Combinators for Quickcheck Property construction and diagnostics"; - license = lib.licenses.publicDomain; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "quickcheck-property-monad" = callPackage ( - { - mkDerivation, - base, - either, - QuickCheck, - transformers, - }: - mkDerivation { - pname = "quickcheck-property-monad"; - version = "0.2.4"; - sha256 = "0sp7592jfh6i8xsykl2lv8bspnp755fnpqvqa09dhwq6hm0r1r9c"; - libraryHaskellDepends = [ - base - either - QuickCheck - transformers - ]; - description = "A monad for generating QuickCheck properties without Arbitrary instances"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "quickcheck-quid" = callPackage ( - { - mkDerivation, - base, - containers, - deepseq, - extra, - fmt, - hashable, - hspec, - hspec-discover, - pretty-simple, - primes, - QuickCheck, - quickcheck-classes, - text, - }: - mkDerivation { - pname = "quickcheck-quid"; - version = "0.0.1.8"; - sha256 = "0qx08f6z1y21qn63z5hkhlvj1rgn921ads03lrppmggg9kvrk5x0"; - libraryHaskellDepends = [ - base - containers - deepseq - extra - hashable - QuickCheck - text - ]; - testHaskellDepends = [ - base - containers - fmt - hspec - pretty-simple - primes - QuickCheck - quickcheck-classes - text - ]; - testToolDepends = [ hspec-discover ]; - doHaddock = false; - description = "Quasi-unique identifiers for QuickCheck"; - license = lib.licenses.asl20; - } - ) { }; - - "quickcheck-regex" = callPackage ( - { - mkDerivation, - base, - containers, - QuickCheck, - regex-genex, - regex-tdfa, - }: - mkDerivation { - pname = "quickcheck-regex"; - version = "0.0.3"; - sha256 = "00h08l3qabj140zzcpj87hy9zb6cw1xj5w6xv6sq2m8yc3pdwi8n"; - libraryHaskellDepends = [ - base - containers - QuickCheck - regex-genex - regex-tdfa - ]; - description = "Generate regex-constrained strings for QuickCheck"; - license = lib.licenses.publicDomain; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "quickcheck-relaxng" = callPackage ( - { - mkDerivation, - base, - hxt, - hxt-relaxng, - QuickCheck, - quickcheck-regex, - }: - mkDerivation { - pname = "quickcheck-relaxng"; - version = "0.0.2"; - sha256 = "1wrndgvza9610ai02gkwab30hp8ngdknw8n2lx0mg6qajsiiy949"; - libraryHaskellDepends = [ - base - hxt - hxt-relaxng - QuickCheck - quickcheck-regex - ]; - description = "Generate RelaxNG-constrained XML documents for QuickCheck"; - license = lib.licenses.publicDomain; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "quickcheck-rematch" = callPackage ( - { - mkDerivation, - base, - hspec, - HUnit, - QuickCheck, - rematch, - }: - mkDerivation { - pname = "quickcheck-rematch"; - version = "0.1.0.0"; - sha256 = "0pmw9441l36sprw9ngq6gn2yi4v427zd5n22s9zicfyiwi4qf5ba"; - libraryHaskellDepends = [ - base - QuickCheck - rematch - ]; - testHaskellDepends = [ - base - hspec - HUnit - QuickCheck - rematch - ]; - description = "QuickCheck support for rematch"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "quickcheck-report" = callPackage ( - { - mkDerivation, - base, - lens, - QuickCheck, - template-haskell, - th-printf, - }: - mkDerivation { - pname = "quickcheck-report"; - version = "0.1.0.0"; - sha256 = "0p2b2a0rgya4barhlwnxy3753d6ssza2lffhaadvf8cvv1whxi9l"; - libraryHaskellDepends = [ - base - lens - QuickCheck - template-haskell - th-printf - ]; - description = "Customizable reports for quickcheck properties"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "quickcheck-script" = callPackage ( - { - mkDerivation, - base, - directory, - process, - QuickCheck, - }: - mkDerivation { - pname = "quickcheck-script"; - version = "0.1.1.1"; - sha256 = "157v4qcyk5c6hnmhmy5rsrfsj46m343nn2bvrqyb6r92wh70is5g"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - directory - process - QuickCheck - ]; - description = "Automated test tool for QuickCheck"; - license = lib.licenses.bsd3; - mainProgram = "quickCheck"; - } - ) { }; - - "quickcheck-simple" = callPackage ( - { - mkDerivation, - base, - QuickCheck, - }: - mkDerivation { - pname = "quickcheck-simple"; - version = "0.1.1.1"; - sha256 = "0ah32y1p39p3d0696zp4mlf4bj67ggh73sb8nvf21snkwll86dai"; - libraryHaskellDepends = [ - base - QuickCheck - ]; - description = "Test properties and default-mains for QuickCheck"; - license = lib.licenses.bsd3; - } - ) { }; - - "quickcheck-special" = callPackage ( - { - mkDerivation, - base, - QuickCheck, - special-values, - }: - mkDerivation { - pname = "quickcheck-special"; - version = "0.1.0.6"; - sha256 = "1dhwgy1jwglp4y3nbysr1i182415aibqlcsrvwxn2c5x162qjwwm"; - revision = "1"; - editedCabalFile = "1whwmij115vw0qwkzlkc4z4yhj7iwwqjhf5aaxn5np0gh2gzihb3"; - libraryHaskellDepends = [ - base - QuickCheck - special-values - ]; - description = "Edge cases and special values for QuickCheck Arbitrary instances"; - license = lib.licenses.mit; - } - ) { }; - - "quickcheck-state-machine" = callPackage ( - { - mkDerivation, - array, - base, - base-compat, - bifunctors, - bytestring, - containers, - directory, - doctest, - exceptions, - filelock, - filepath, - generics-sop, - graphviz, - hashable, - hashtables, - http-client, - MemoTrie, - monad-logger, - mtl, - network, - persistent, - persistent-postgresql, - persistent-sqlite, - postgresql-simple, - pretty, - pretty-show, - prettyprinter, - prettyprinter-ansi-terminal, - process, - QuickCheck, - quickcheck-instances, - random, - resource-pool, - resourcet, - servant-client, - servant-server, - sop-core, - split, - stm, - strict, - string-conversions, - tasty, - tasty-hunit, - tasty-quickcheck, - text, - time, - unliftio, - unliftio-core, - vector, - warp, - }: - mkDerivation { - pname = "quickcheck-state-machine"; - version = "0.10.2"; - sha256 = "01cs422p7jqqgnhhm2lcdsm2ilz0hcakhm16vcdfgmxbmp0af15c"; - libraryHaskellDepends = [ - base - base-compat - bytestring - containers - directory - exceptions - filepath - generics-sop - graphviz - MemoTrie - mtl - pretty - pretty-show - prettyprinter - prettyprinter-ansi-terminal - QuickCheck - random - sop-core - split - text - time - unliftio - vector - ]; - testHaskellDepends = [ - array - base - bifunctors - bytestring - containers - directory - doctest - filelock - filepath - hashable - hashtables - http-client - monad-logger - mtl - network - persistent - persistent-postgresql - persistent-sqlite - postgresql-simple - pretty-show - process - QuickCheck - quickcheck-instances - random - resource-pool - resourcet - servant-client - servant-server - split - stm - strict - string-conversions - tasty - tasty-hunit - tasty-quickcheck - text - unliftio - unliftio-core - vector - warp - ]; - doHaddock = false; - description = "Test monadic programs using state machine based models"; - license = lib.licenses.bsd3; - } - ) { }; - - "quickcheck-state-machine-distributed" = callPackage ( - { - mkDerivation, - base, - binary, - containers, - directory, - distributed-process, - mtl, - network-transport, - network-transport-tcp, - QuickCheck, - random, - stm, - strict, - tasty, - tasty-quickcheck, - temporary, - }: - mkDerivation { - pname = "quickcheck-state-machine-distributed"; - version = "0.0.1"; - sha256 = "0451xx4c3698nk3c2jhq7xmc0nnaxlj422i30sh7cgyrfrbdw9wj"; - libraryHaskellDepends = [ - base - binary - containers - distributed-process - mtl - network-transport - network-transport-tcp - QuickCheck - random - stm - ]; - testHaskellDepends = [ - base - binary - containers - directory - distributed-process - mtl - network-transport - network-transport-tcp - QuickCheck - random - stm - strict - tasty - tasty-quickcheck - temporary - ]; - description = "Test monadic programs using state machine based models"; - license = lib.licenses.bsd2; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "quickcheck-string-random" = callPackage ( - { - mkDerivation, - base, - QuickCheck, - string-random, - tasty, - tasty-quickcheck, - text, - }: - mkDerivation { - pname = "quickcheck-string-random"; - version = "0.1.4.4"; - sha256 = "18yv3wa78y6fhywbpkmmxmffs0z52wkri3knqrhjfvm3hb8qxlgf"; - libraryHaskellDepends = [ - base - QuickCheck - string-random - text - ]; - testHaskellDepends = [ - base - QuickCheck - tasty - tasty-quickcheck - text - ]; - description = "Helper to build generators with Text.StringRandom"; - license = lib.licenses.bsd3; - } - ) { }; - - "quickcheck-text" = callPackage ( - { - mkDerivation, - base, - binary, - bytestring, - QuickCheck, - text, - }: - mkDerivation { - pname = "quickcheck-text"; - version = "0.1.2.1"; - sha256 = "02dbs0k6igmsa1hcw8yfvp09v7038vp4zlsp9706km3cmswgshj4"; - libraryHaskellDepends = [ - base - binary - bytestring - QuickCheck - text - ]; - testHaskellDepends = [ - base - bytestring - QuickCheck - text - ]; - description = "Alternative arbitrary instance for Text"; - license = lib.licenses.mit; - } - ) { }; - - "quickcheck-transformer" = callPackage ( - { - mkDerivation, - base, - QuickCheck, - random, - transformers, - }: - mkDerivation { - pname = "quickcheck-transformer"; - version = "0.3.1.2"; - sha256 = "07y6k1c8flg3ldkckb19s28ls0k3bg769r26smkr3dbz7w4mg7rh"; - revision = "1"; - editedCabalFile = "131grjardvlbgvj3hzxg14n03vynvvb8lmy01nggdg9x4h78b4ib"; - libraryHaskellDepends = [ - base - QuickCheck - random - transformers - ]; - description = "A GenT monad transformer for QuickCheck library"; - license = lib.licenses.mit; - maintainers = [ lib.maintainers.thielema ]; - } - ) { }; - - "quickcheck-unicode" = callPackage ( - { - mkDerivation, - base, - QuickCheck, - }: - mkDerivation { - pname = "quickcheck-unicode"; - version = "1.0.1.0"; - sha256 = "0s43s1bzbg3gwsjgm7fpyksd1339f0m26dlw2famxwyzgvm0a80k"; - libraryHaskellDepends = [ - base - QuickCheck - ]; - description = "Generator and shrink functions for testing Unicode-related software"; - license = lib.licenses.bsd2; - } - ) { }; - - "quickcheck-webdriver" = callPackage ( - { - mkDerivation, - base, - QuickCheck, - transformers, - webdriver, - }: - mkDerivation { - pname = "quickcheck-webdriver"; - version = "0.1.0.7"; - sha256 = "12jkj8jy4f0mix658pd8jfgwx268fs3bbqz90mac1vvag4c72i0h"; - libraryHaskellDepends = [ - base - QuickCheck - transformers - webdriver - ]; - description = "Utilities for using WebDriver with QuickCheck"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "quickcheck-with-counterexamples" = callPackage ( - { - mkDerivation, - base, - QuickCheck, - template-haskell, - }: - mkDerivation { - pname = "quickcheck-with-counterexamples"; - version = "1.2"; - sha256 = "0shigzw0r59cwa22f56522qfv0lsaq1z2861lgy1lhhclzswr6zg"; - libraryHaskellDepends = [ - base - QuickCheck - template-haskell - ]; - description = "Get counterexamples from QuickCheck as Haskell values"; - license = lib.licenses.bsd3; - } - ) { }; - - "quickjs-hs" = callPackage ( - { - mkDerivation, - aeson, - base, - bytestring, - containers, - exceptions, - HUnit, - inline-c, - mtl, - QuickCheck, - scientific, - string-conv, - tasty, - tasty-hunit, - tasty-quickcheck, - text, - time, - transformers, - unliftio-core, - unordered-containers, - vector, - }: - mkDerivation { - pname = "quickjs-hs"; - version = "0.1.2.4"; - sha256 = "18b9yp87v94bcjy68jip2n31f5hajn0509p9z7yhgv8647pdvnx7"; - libraryHaskellDepends = [ - aeson - base - bytestring - containers - exceptions - inline-c - mtl - scientific - string-conv - text - time - transformers - unliftio-core - unordered-containers - vector - ]; - testHaskellDepends = [ - aeson - base - exceptions - HUnit - QuickCheck - tasty - tasty-hunit - tasty-quickcheck - text - unordered-containers - vector - ]; - description = "Wrapper for the QuickJS Javascript Engine"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "quicklz" = callPackage ( - { - mkDerivation, - base, - bytestring, - QuickCheck, - test-framework, - test-framework-quickcheck2, - }: - mkDerivation { - pname = "quicklz"; - version = "1.5.0.11"; - sha256 = "17v9bfdp4ib9258r7001naqwss7l6v83by40va3gm3l418vj62qd"; - libraryHaskellDepends = [ - base - bytestring - ]; - testHaskellDepends = [ - base - bytestring - QuickCheck - test-framework - test-framework-quickcheck2 - ]; - description = "QuickLZ compression for ByteStrings"; - license = lib.licenses.gpl2Only; - } - ) { }; - - "quickpull" = callPackage ( - { - mkDerivation, - base, - directory, - filepath, - QuickCheck, - }: - mkDerivation { - pname = "quickpull"; - version = "0.4.2.2"; - sha256 = "0vy5s3qa67kwj68rxqc0zhqizqpvqa1x0bg3dakq5pimrqhmb7d4"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - directory - filepath - QuickCheck - ]; - executableHaskellDepends = [ - base - directory - filepath - QuickCheck - ]; - testHaskellDepends = [ - base - directory - filepath - QuickCheck - ]; - description = "Generate Main module with QuickCheck tests"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "quickpull"; - broken = true; - } - ) { }; - - "quickselect" = callPackage ( - { - mkDerivation, - base, - criterion, - doctest, - QuickCheck, - random, - vector, - }: - mkDerivation { - pname = "quickselect"; - version = "0.1.0.0"; - sha256 = "00jl29mimsxj17m2n3hwg58dmvqs78bk1k61iihjnaprr5zga8ki"; - libraryHaskellDepends = [ - base - vector - ]; - testHaskellDepends = [ - base - doctest - QuickCheck - vector - ]; - benchmarkHaskellDepends = [ - base - criterion - random - vector - ]; - license = lib.licenses.mit; - } - ) { }; - - "quickset" = callPackage ( - { - mkDerivation, - base, - vector, - vector-algorithms, - }: - mkDerivation { - pname = "quickset"; - version = "0.1.0"; - sha256 = "0xiw57wi9z567nmp4h0vfcw3sr9dciy29jadn47bvi3q278v7zdy"; - libraryHaskellDepends = [ - base - vector - vector-algorithms - ]; - description = "Very fast and memory-compact query-only set and map structures"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "quickson" = callPackage ( - { - mkDerivation, - aeson, - attoparsec, - base, - bytestring, - text, - }: - mkDerivation { - pname = "quickson"; - version = "0.3"; - sha256 = "1aa56ng45la91kd40hvqmg5mdprmw7mdgg0zjfz0l71qg2yka14a"; - libraryHaskellDepends = [ - aeson - attoparsec - base - bytestring - text - ]; - description = "Quick JSON extractions with Aeson"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "quickspec" = callPackage ( - { - mkDerivation, - base, - constraints, - containers, - data-lens-light, - dlist, - QuickCheck, - quickcheck-instances, - random, - spoon, - template-haskell, - transformers, - twee-lib, - uglymemo, - }: - mkDerivation { - pname = "quickspec"; - version = "2.2"; - sha256 = "0ggqj7zl7ai1jn6jgb7y986f8vr76ln0dxn3nwbpgspvv6dngix8"; - libraryHaskellDepends = [ - base - constraints - containers - data-lens-light - dlist - QuickCheck - quickcheck-instances - random - spoon - template-haskell - transformers - twee-lib - uglymemo - ]; - description = "Equational laws for free!"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "quickterm" = callPackage ( - { - mkDerivation, - base, - edit-distance, - hashmap, - regex-base, - regex-tdfa, - uu-parsinglib, - }: - mkDerivation { - pname = "quickterm"; - version = "0.2.4.0"; - sha256 = "0lkgpqhqzh4w1fzqzyqz85w1r8a3zqdfxvl1hzl27vix0kga59fb"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - edit-distance - hashmap - regex-base - regex-tdfa - uu-parsinglib - ]; - executableHaskellDepends = [ base ]; - description = "An interface for describing and executing terminal applications"; - license = lib.licenses.gpl3Only; - mainProgram = "qt-demo"; - } - ) { }; - - "quicktest" = callPackage ( - { - mkDerivation, - base, - directory, - haskell98, - mtl, - process, - }: - mkDerivation { - pname = "quicktest"; - version = "0.1.3"; - sha256 = "0nvh6jd155xrjzkkbsz5q8d08z50881vkdhmprm7fdxax1gvjc95"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - directory - haskell98 - mtl - process - ]; - description = "A reflective batch tester for Haskell"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "quicktest"; - } - ) { }; - - "quickwebapp" = callPackage ( - { - mkDerivation, - aeson, - base, - bytestring, - containers, - either, - lucid, - servant, - servant-lucid, - servant-server, - text, - warp, - }: - mkDerivation { - pname = "quickwebapp"; - version = "3.0.0.2"; - sha256 = "0b981yw9z3snqv890accyw4284am6sf4w5v9na98rrkgyclag10v"; - revision = "1"; - editedCabalFile = "0rffpb5c4cgkb2hdcm4yq7yphqk0msxpzvbwq6hk2ai3amavqd4x"; - libraryHaskellDepends = [ - aeson - base - bytestring - containers - either - lucid - servant - servant-lucid - servant-server - text - warp - ]; - description = "A quick webapp generator for any file processing tool"; - license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "quiet" = callPackage ( - { mkDerivation, base }: - mkDerivation { - pname = "quiet"; - version = "0.2"; - sha256 = "0k2y6aa5c7d0sils11m0r1nk1fmck7iq10wr35v77r6wg5rzd2qi"; - libraryHaskellDepends = [ base ]; - testHaskellDepends = [ base ]; - description = "Generic deriving of Read/Show with no record labels"; - license = lib.licenses.bsd3; - } - ) { }; - - "quipper" = callPackage ( - { - mkDerivation, - base, - quipper-language, - quipper-libraries, - quipper-tools, - }: - mkDerivation { - pname = "quipper"; - version = "0.9.0.0"; - sha256 = "1yfd3zqcr9nqwddv9yhbxxl4f5wl4v273i49hq4c2rm7i90axi1q"; - libraryHaskellDepends = [ - base - quipper-language - quipper-libraries - quipper-tools - ]; - doHaddock = false; - description = "Meta-package for Quipper"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "quipper-algorithms" = callPackage ( - { - mkDerivation, - array, - base, - Cabal, - containers, - deepseq, - easyrender, - filepath, - Lattices, - mtl, - newsynth, - primes, - QuickCheck, - quipper-cabal, - quipper-language, - quipper-libraries, - quipper-utils, - random, - superdoc, - }: - mkDerivation { - pname = "quipper-algorithms"; - version = "0.9.0.0"; - sha256 = "1a3p51mk965yk95r3zz3wcsqi8spilx53jlygl1yk4wvka7zrl9c"; - isLibrary = true; - isExecutable = true; - setupHaskellDepends = [ - base - Cabal - quipper-cabal - superdoc - ]; - libraryHaskellDepends = [ - array - base - containers - deepseq - easyrender - filepath - Lattices - mtl - newsynth - primes - QuickCheck - quipper-language - quipper-libraries - quipper-utils - random - ]; - executableHaskellDepends = [ base ]; - description = "A set of algorithms implemented in Quipper"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "quipper-all" = callPackage ( - { - mkDerivation, - base, - quipper, - quipper-algorithms, - quipper-demos, - }: - mkDerivation { - pname = "quipper-all"; - version = "0.9.0.0"; - sha256 = "11dsswwv4ajgw74hg4qysvm16r3aginfnizy008khhxdxwdr42gh"; - libraryHaskellDepends = [ - base - quipper - quipper-algorithms - quipper-demos - ]; - doHaddock = false; - description = "Meta-package for Quipper"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "quipper-cabal" = callPackage ( - { - mkDerivation, - base, - Cabal, - process, - quipper-language, - }: - mkDerivation { - pname = "quipper-cabal"; - version = "0.9.0.0"; - sha256 = "0kj7836h61h13kw4k74wfa96pr0w12k32mmmy0ry43wmk56zy318"; - libraryHaskellDepends = [ - base - Cabal - process - quipper-language - ]; - description = "Some functions to aid in the creation of Cabal packages for Quipper"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "quipper-core" = callPackage ( - { - mkDerivation, - base, - containers, - mtl, - primes, - random, - template-haskell, - }: - mkDerivation { - pname = "quipper-core"; - version = "0.8.0.1"; - sha256 = "0qz1y0ga5k7b98dgj2wpqpqhmfl17d6icxcik376rwb0s8g3dl0p"; - libraryHaskellDepends = [ - base - containers - mtl - primes - random - template-haskell - ]; - description = "An embedded, scalable functional programming language for quantum computing"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "quipper-demos" = callPackage ( - { - mkDerivation, - base, - Cabal, - containers, - newsynth, - quipper-cabal, - quipper-language, - quipper-libraries, - quipper-utils, - random, - }: - mkDerivation { - pname = "quipper-demos"; - version = "0.9.0.0"; - sha256 = "0ll7r9a7d8ahha27c5lrpjic2cybn9ifjnbjdh6s1lvwnsfslvvw"; - isLibrary = true; - isExecutable = true; - setupHaskellDepends = [ - base - Cabal - quipper-cabal - ]; - executableHaskellDepends = [ - base - containers - newsynth - quipper-language - quipper-libraries - quipper-utils - random - ]; - doHaddock = false; - description = "Miscellaneous code snippets that illustrate various Quipper features"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "quipper-language" = callPackage ( - { - mkDerivation, - base, - containers, - directory, - easyrender, - fail, - mtl, - process, - quipper-utils, - superdoc, - }: - mkDerivation { - pname = "quipper-language"; - version = "0.9.0.0"; - sha256 = "0356w39jk6pg5dc4ka6qrq40px005dhcgrh139pqjspghvfl2mvd"; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; - setupHaskellDepends = [ - base - superdoc - ]; - libraryHaskellDepends = [ - base - containers - directory - easyrender - fail - mtl - quipper-utils - ]; - executableHaskellDepends = [ - base - process - ]; - description = "Quipper, an embedded functional programming language for quantum computation"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "quipper-libraries" = callPackage ( - { - mkDerivation, - base, - Cabal, - containers, - deepseq, - mtl, - newsynth, - QuickCheck, - quipper-cabal, - quipper-language, - quipper-utils, - random, - superdoc, - }: - mkDerivation { - pname = "quipper-libraries"; - version = "0.9.0.0"; - sha256 = "0kpw1m1pizpv652ck4rgwg0m7k5f9p9rn4lg7rx8ds75yda518qq"; - setupHaskellDepends = [ - base - Cabal - quipper-cabal - superdoc - ]; + tasty-hunit, + tasty-quickcheck, + temporary, + }: + mkDerivation { + pname = "quickcheck-lockstep"; + version = "0.8.1"; + sha256 = "10x2yzr4pykgb8krassql1dl81vp78yx06ykswwy6cld46hq1d5h"; libraryHaskellDepends = [ base + constraints containers - deepseq mtl - newsynth - quipper-language - quipper-utils - random + QuickCheck + quickcheck-dynamic ]; testHaskellDepends = [ base + constraints containers - deepseq + directory + filepath mtl - newsynth QuickCheck - quipper-language - quipper-utils - random + quickcheck-dynamic + tasty + tasty-golden + tasty-hunit + tasty-quickcheck + temporary ]; - description = "The standard libraries for Quipper"; + description = "Library for lockstep-style testing with 'quickcheck-dynamic'"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; } ) { }; - "quipper-rendering" = callPackage ( + "quickcheck-monoid-subclasses" = callPackage ( { mkDerivation, base, + bytestring, + commutative-semigroups, containers, - directory, - easyrender, - mtl, - primes, - process, - quipper-core, - random, - template-haskell, - unix, + hspec, + hspec-discover, + monoid-subclasses, + pretty-show, + QuickCheck, + quickcheck-classes, + semigroupoids, + text, + vector, }: mkDerivation { - pname = "quipper-rendering"; - version = "0.8"; - sha256 = "0z0hj2lb6fzycijxigknb012vb0j8mv9vcvgp3s7hpnrsnmcngn7"; + pname = "quickcheck-monoid-subclasses"; + version = "0.3.0.6"; + sha256 = "03gngckzwhln7c86dixg8szrnqwgdl9svy6hfnzgyjpn4qfqwcmv"; libraryHaskellDepends = [ base containers - directory - easyrender - mtl - primes - process - quipper-core - random - template-haskell - unix + monoid-subclasses + pretty-show + QuickCheck + quickcheck-classes + semigroupoids + ]; + testHaskellDepends = [ + base + bytestring + commutative-semigroups + containers + hspec + monoid-subclasses + QuickCheck + quickcheck-classes + text + vector ]; - description = "An embedded, scalable functional programming language for quantum computing"; + testToolDepends = [ hspec-discover ]; + doHaddock = false; + description = "Testing monoid subclass instances with QuickCheck"; + license = lib.licenses.asl20; + } + ) { }; + + "quickcheck-properties" = callPackage ( + { mkDerivation, base }: + mkDerivation { + pname = "quickcheck-properties"; + version = "0.1"; + sha256 = "0hr61w1wpah1p4h87iz17aby53ysa8waqsl0als8b69in0zyv29w"; + libraryHaskellDepends = [ base ]; + description = "QuickCheck properties for standard type classes"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; } ) { }; - "quipper-tools" = callPackage ( + "quickcheck-quid" = callPackage ( { mkDerivation, base, - Cabal, containers, - fixedprec, - mtl, - newsynth, - quipper-cabal, - quipper-language, - quipper-libraries, - quipper-utils, - random, + deepseq, + extra, + fmt, + hashable, + hspec, + hspec-discover, + pretty-simple, + primes, + QuickCheck, + quickcheck-classes, + text, }: mkDerivation { - pname = "quipper-tools"; - version = "0.9.0.0"; - sha256 = "18zl8c4b51x6530gryw0wg9x70a3mmznf56a03r272k1dw5k2ywi"; - isLibrary = true; - isExecutable = true; - setupHaskellDepends = [ + pname = "quickcheck-quid"; + version = "0.0.1.8"; + sha256 = "0qx08f6z1y21qn63z5hkhlvj1rgn921ads03lrppmggg9kvrk5x0"; + libraryHaskellDepends = [ base - Cabal - quipper-cabal + containers + deepseq + extra + hashable + QuickCheck + text ]; - executableHaskellDepends = [ + testHaskellDepends = [ base containers - fixedprec - mtl - newsynth - quipper-language - quipper-libraries - quipper-utils - random + fmt + hspec + pretty-simple + primes + QuickCheck + quickcheck-classes + text ]; + testToolDepends = [ hspec-discover ]; doHaddock = false; - description = "Miscellaneous stand-alone tools for Quipper"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; + description = "Quasi-unique identifiers for QuickCheck"; + license = lib.licenses.asl20; } ) { }; - "quipper-utils" = callPackage ( + "quickcheck-script" = callPackage ( { mkDerivation, base, - containers, - mtl, - newsynth, + directory, process, - random, - superdoc, - template-haskell, - unix, + QuickCheck, }: mkDerivation { - pname = "quipper-utils"; - version = "0.9.0.0"; - sha256 = "1j9syi75krbv14szjcja878bq7112r10dk7qszgb0507l54znvyq"; - setupHaskellDepends = [ - base - superdoc - ]; - libraryHaskellDepends = [ + pname = "quickcheck-script"; + version = "0.1.1.1"; + sha256 = "157v4qcyk5c6hnmhmy5rsrfsj46m343nn2bvrqyb6r92wh70is5g"; + isLibrary = false; + isExecutable = true; + executableHaskellDepends = [ base - containers - mtl - newsynth + directory process - random - template-haskell - unix + QuickCheck ]; - description = "Utility libraries for Quipper"; + description = "Automated test tool for QuickCheck"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; + mainProgram = "quickCheck"; } ) { }; - "quiver" = callPackage ( + "quickcheck-simple" = callPackage ( { mkDerivation, base, - mmorph, - transformers, + QuickCheck, }: mkDerivation { - pname = "quiver"; - version = "1.1.3"; - sha256 = "1gg02lnrd2c1wq8zhbj8n355v23ijzm5nj0jyply91sppjma9w7x"; + pname = "quickcheck-simple"; + version = "0.1.1.1"; + sha256 = "0ah32y1p39p3d0696zp4mlf4bj67ggh73sb8nvf21snkwll86dai"; libraryHaskellDepends = [ base - mmorph - transformers + QuickCheck ]; - description = "Quiver finite stream processing library"; + description = "Test properties and default-mains for QuickCheck"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; } ) { }; - "quiver-binary" = callPackage ( + "quickcheck-special" = callPackage ( { mkDerivation, base, - binary, - bytestring, - hspec, QuickCheck, - quiver, - quiver-bytestring, - transformers, + special-values, }: mkDerivation { - pname = "quiver-binary"; - version = "0.1.1.1"; - sha256 = "0cjq264q52slsbbskmkmsdwdyi4g6fm1b5pjqpnabnhiq0zvi8fr"; + pname = "quickcheck-special"; + version = "0.1.0.6"; + sha256 = "1dhwgy1jwglp4y3nbysr1i182415aibqlcsrvwxn2c5x162qjwwm"; + revision = "1"; + editedCabalFile = "1whwmij115vw0qwkzlkc4z4yhj7iwwqjhf5aaxn5np0gh2gzihb3"; libraryHaskellDepends = [ base - binary - bytestring - quiver - quiver-bytestring - ]; - testHaskellDepends = [ - base - hspec QuickCheck - quiver - transformers + special-values ]; - description = "Binary serialisation support for Quivers"; + description = "Edge cases and special values for QuickCheck Arbitrary instances"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; } ) { }; - "quiver-bytestring" = callPackage ( + "quickcheck-state-machine" = callPackage ( { mkDerivation, + array, base, + base-compat, + bifunctors, bytestring, - quiver, + containers, + directory, + doctest, + exceptions, + filelock, + filepath, + generics-sop, + graphviz, + hashable, + hashtables, + http-client, + MemoTrie, + monad-logger, + mtl, + network, + persistent, + persistent-postgresql, + persistent-sqlite, + postgresql-simple, + pretty, + pretty-show, + prettyprinter, + prettyprinter-ansi-terminal, + process, + QuickCheck, + quickcheck-instances, + random, + resource-pool, + resourcet, + servant-client, + servant-server, + sop-core, + split, + stm, + strict, + string-conversions, + tasty, + tasty-hunit, + tasty-quickcheck, + text, + time, + unliftio, + unliftio-core, + vector, + warp, }: mkDerivation { - pname = "quiver-bytestring"; - version = "1.0.0"; - sha256 = "1iwp6z76n2iramd21l2j9gvsqzq3j90qprblscp1yvk73fq4vcmz"; + pname = "quickcheck-state-machine"; + version = "0.10.2"; + sha256 = "01cs422p7jqqgnhhm2lcdsm2ilz0hcakhm16vcdfgmxbmp0af15c"; libraryHaskellDepends = [ base + base-compat + bytestring + containers + directory + exceptions + filepath + generics-sop + graphviz + MemoTrie + mtl + pretty + pretty-show + prettyprinter + prettyprinter-ansi-terminal + QuickCheck + random + sop-core + split + text + time + unliftio + vector + ]; + testHaskellDepends = [ + array + base + bifunctors bytestring - quiver + containers + directory + doctest + filelock + filepath + hashable + hashtables + http-client + monad-logger + mtl + network + persistent + persistent-postgresql + persistent-sqlite + postgresql-simple + pretty-show + process + QuickCheck + quickcheck-instances + random + resource-pool + resourcet + servant-client + servant-server + split + stm + strict + string-conversions + tasty + tasty-hunit + tasty-quickcheck + text + unliftio + unliftio-core + vector + warp ]; - description = "Quiver combinators for bytestring streaming"; + doHaddock = false; + description = "Test monadic programs using state machine based models"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; } ) { }; - "quiver-cell" = callPackage ( + "quickcheck-string-random" = callPackage ( { mkDerivation, base, - data-cell, - quiver, + QuickCheck, + string-random, + tasty, + tasty-quickcheck, + text, }: mkDerivation { - pname = "quiver-cell"; - version = "1.0.0"; - sha256 = "0l8c5vhhbjlijvx27mda62y6sq6lr7irva6c47fhvf26zfgx41p8"; + pname = "quickcheck-string-random"; + version = "0.1.4.4"; + sha256 = "18yv3wa78y6fhywbpkmmxmffs0z52wkri3knqrhjfvm3hb8qxlgf"; libraryHaskellDepends = [ base - data-cell - quiver + QuickCheck + string-random + text + ]; + testHaskellDepends = [ + base + QuickCheck + tasty + tasty-quickcheck + text ]; - description = "Quiver combinators for cellular data processing"; + description = "Helper to build generators with Text.StringRandom"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; } ) { }; - "quiver-csv" = callPackage ( + "quickcheck-text" = callPackage ( { mkDerivation, base, + binary, bytestring, - data-cell, - quiver, - quiver-bytestring, + QuickCheck, + text, }: mkDerivation { - pname = "quiver-csv"; - version = "0.0.0.3"; - sha256 = "19wb16lbv0wr7w2qba6g2cdmzdhpyyjx1bjvrnz0cqbb4di9yscj"; + pname = "quickcheck-text"; + version = "0.1.2.1"; + sha256 = "02dbs0k6igmsa1hcw8yfvp09v7038vp4zlsp9706km3cmswgshj4"; libraryHaskellDepends = [ base + binary bytestring - data-cell - quiver - quiver-bytestring + QuickCheck + text ]; - description = "Quiver combinators for cellular CSV data processing"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; + testHaskellDepends = [ + base + bytestring + QuickCheck + text + ]; + description = "Alternative arbitrary instance for Text"; + license = lib.licenses.mit; } ) { }; - "quiver-enumerator" = callPackage ( + "quickcheck-transformer" = callPackage ( { mkDerivation, base, - enumerator, - quiver, + QuickCheck, + random, + transformers, }: mkDerivation { - pname = "quiver-enumerator"; - version = "0.0.0.1"; - sha256 = "0k0822yzlxkb6b46834hm3bad3x1gma1gqcjl9ryxpqsl73nc4mp"; + pname = "quickcheck-transformer"; + version = "0.3.1.2"; + sha256 = "07y6k1c8flg3ldkckb19s28ls0k3bg769r26smkr3dbz7w4mg7rh"; + revision = "1"; + editedCabalFile = "131grjardvlbgvj3hzxg14n03vynvvb8lmy01nggdg9x4h78b4ib"; libraryHaskellDepends = [ base - enumerator - quiver + QuickCheck + random + transformers ]; - description = "Bridge between Quiver and Iteratee paradigms"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; + description = "A GenT monad transformer for QuickCheck library"; + license = lib.licenses.mit; + maintainers = [ lib.maintainers.thielema ]; } ) { }; - "quiver-groups" = callPackage ( + "quickcheck-unicode" = callPackage ( { mkDerivation, base, - dlist, - hspec, QuickCheck, - quiver, }: mkDerivation { - pname = "quiver-groups"; - version = "0.1.0.1"; - sha256 = "0mcjygqxfl8j7rv79bdlzp1k7lfnqr75j743dnczp98i41n9x8hr"; + pname = "quickcheck-unicode"; + version = "1.0.1.0"; + sha256 = "0s43s1bzbg3gwsjgm7fpyksd1339f0m26dlw2famxwyzgvm0a80k"; libraryHaskellDepends = [ base - dlist - quiver - ]; - testHaskellDepends = [ - base - hspec QuickCheck - quiver ]; - description = "Group and chunk values within a Quiver"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; + description = "Generator and shrink functions for testing Unicode-related software"; + license = lib.licenses.bsd2; } ) { }; - "quiver-http" = callPackage ( + "quickcheck-with-counterexamples" = callPackage ( { mkDerivation, base, - bytestring, - http-client, - http-client-tls, - quiver, + QuickCheck, + template-haskell, }: mkDerivation { - pname = "quiver-http"; - version = "0.0.0.2"; - sha256 = "1q6zlnvna8dapq68vchn5s9palaphc1yglgvgsg51d50cnzdn8g2"; - revision = "2"; - editedCabalFile = "1qdkc4n2d4wm66f42kjhniwpqyj3fs393hmjp07ghzp2ky5yrhr5"; + pname = "quickcheck-with-counterexamples"; + version = "1.2"; + sha256 = "0shigzw0r59cwa22f56522qfv0lsaq1z2861lgy1lhhclzswr6zg"; libraryHaskellDepends = [ base - bytestring - http-client - http-client-tls - quiver + QuickCheck + template-haskell ]; - description = "Adapter to stream over HTTP(s) with quiver"; + description = "Get counterexamples from QuickCheck as Haskell values"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; } ) { }; - "quiver-instances" = callPackage ( + "quickjs-hs" = callPackage ( { mkDerivation, + aeson, base, + bytestring, + containers, exceptions, - quiver, - resourcet, + HUnit, + inline-c, + mtl, + QuickCheck, + scientific, + string-conv, + tasty, + tasty-hunit, + tasty-quickcheck, + text, + time, transformers, - transformers-base, + unliftio-core, + unordered-containers, + vector, }: mkDerivation { - pname = "quiver-instances"; - version = "0.2.0.1"; - sha256 = "18rc7z2ppsfqxq9sahy51nvl3gkcgklhpwp3v77vwpsqg76z2ra3"; + pname = "quickjs-hs"; + version = "0.1.2.4"; + sha256 = "18b9yp87v94bcjy68jip2n31f5hajn0509p9z7yhgv8647pdvnx7"; libraryHaskellDepends = [ + aeson base + bytestring + containers exceptions - quiver - resourcet + inline-c + mtl + scientific + string-conv + text + time transformers - transformers-base + unliftio-core + unordered-containers + vector + ]; + testHaskellDepends = [ + aeson + base + exceptions + HUnit + QuickCheck + tasty + tasty-hunit + tasty-quickcheck + text + unordered-containers + vector ]; - description = "Extra instances for Quiver"; + description = "Wrapper for the QuickJS Javascript Engine"; license = lib.licenses.mit; hydraPlatforms = lib.platforms.none; + broken = true; } ) { }; - "quiver-interleave" = callPackage ( + "quicklz" = callPackage ( { mkDerivation, base, - hspec, + bytestring, QuickCheck, - quiver, + test-framework, + test-framework-quickcheck2, }: mkDerivation { - pname = "quiver-interleave"; - version = "0.2.0.2"; - sha256 = "1bxy2a362vf74pfrrvi58nbcx93bh97fi6qcihmz420wsfg96j26"; + pname = "quicklz"; + version = "1.5.0.11"; + sha256 = "17v9bfdp4ib9258r7001naqwss7l6v83by40va3gm3l418vj62qd"; libraryHaskellDepends = [ base - quiver + bytestring ]; testHaskellDepends = [ base - hspec + bytestring QuickCheck - quiver + test-framework + test-framework-quickcheck2 ]; - description = "Interleave values from multiple Quivers"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; + description = "QuickLZ compression for ByteStrings"; + license = lib.licenses.gpl2Only; } ) { }; - "quiver-sort" = callPackage ( + "quickselect" = callPackage ( { mkDerivation, base, - binary, - containers, - directory, - exceptions, - hspec, + criterion, + doctest, QuickCheck, - quiver, - quiver-binary, - quiver-bytestring, - quiver-groups, - quiver-instances, - quiver-interleave, - resourcet, - temporary, - transformers, + random, + vector, }: mkDerivation { - pname = "quiver-sort"; - version = "0.2.0.1"; - sha256 = "0qd9a464ipgdikbh046qynj2wmxi3fjz6fj8yav7gdd5z91i860d"; + pname = "quickselect"; + version = "0.1.0.0"; + sha256 = "00jl29mimsxj17m2n3hwg58dmvqs78bk1k61iihjnaprr5zga8ki"; libraryHaskellDepends = [ base - containers - directory - exceptions - quiver - quiver-binary - quiver-bytestring - quiver-groups - quiver-instances - quiver-interleave - resourcet - temporary - transformers + vector ]; testHaskellDepends = [ base - binary - directory - exceptions - hspec + doctest QuickCheck - quiver - quiver-instances - resourcet - temporary - transformers + vector + ]; + benchmarkHaskellDepends = [ + base + criterion + random + vector ]; - description = "Sort the values in a quiver"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; } ) { }; - "quokka" = callPackage ( + "quickspec" = callPackage ( { mkDerivation, base, - hspec, - pcre-utils, - postgresql-simple, - raw-strings-qq, - regex-pcre-builtin, - text, + constraints, + containers, + data-lens-light, + dlist, + QuickCheck, + quickcheck-instances, + random, + spoon, + template-haskell, + transformers, + twee-lib, + uglymemo, }: mkDerivation { - pname = "quokka"; - version = "0.1.2"; - sha256 = "1g6qphxbfrszsmypyd67dr0rl7vcid1wds2if0pp76yvwhpgdnl5"; + pname = "quickspec"; + version = "2.2"; + sha256 = "0ggqj7zl7ai1jn6jgb7y986f8vr76ln0dxn3nwbpgspvv6dngix8"; libraryHaskellDepends = [ base - pcre-utils - postgresql-simple - regex-pcre-builtin - text - ]; - testHaskellDepends = [ - base - hspec - postgresql-simple - raw-strings-qq - text + constraints + containers + data-lens-light + dlist + QuickCheck + quickcheck-instances + random + spoon + template-haskell + transformers + twee-lib + uglymemo ]; - description = "Test helpers which help generate data for projects that use postgresql"; - license = lib.licenses.mit; + description = "Equational laws for free!"; + license = lib.licenses.bsd3; hydraPlatforms = lib.platforms.none; broken = true; } ) { }; - "quoridor-hs" = callPackage ( + "quickterm" = callPackage ( { mkDerivation, - ansi-terminal, - async, base, - bytestring, - containers, - directory, - dlist, - exceptions, - filepath, - hex, - HUnit, - mtl, - network, - network-simple, - parsec, - process, - snap-core, - snap-server, - stm, - websockets, - websockets-snap, + edit-distance, + hashmap, + regex-base, + regex-tdfa, + uu-parsinglib, }: mkDerivation { - pname = "quoridor-hs"; - version = "0.1.1.2"; - sha256 = "1yha2rsphq2ar8c7p15dlg621d4ym46xgv70fga9mlq2r4zwy2lv"; + pname = "quickterm"; + version = "0.2.4.0"; + sha256 = "0lkgpqhqzh4w1fzqzyqz85w1r8a3zqdfxvl1hzl27vix0kga59fb"; isLibrary = true; isExecutable = true; - enableSeparateDataOutput = true; libraryHaskellDepends = [ - ansi-terminal - async base - bytestring - containers - directory - dlist - exceptions - filepath - hex - mtl - network - network-simple - parsec - process - snap-core - snap-server - stm - websockets - websockets-snap + edit-distance + hashmap + regex-base + regex-tdfa + uu-parsinglib ]; executableHaskellDepends = [ base ]; - testHaskellDepends = [ - base - HUnit - mtl - ]; - description = "A Quoridor implementation in Haskell"; + description = "An interface for describing and executing terminal applications"; + license = lib.licenses.gpl3Only; + mainProgram = "qt-demo"; + } + ) { }; + + "quiet" = callPackage ( + { mkDerivation, base }: + mkDerivation { + pname = "quiet"; + version = "0.2"; + sha256 = "0k2y6aa5c7d0sils11m0r1nk1fmck7iq10wr35v77r6wg5rzd2qi"; + libraryHaskellDepends = [ base ]; + testHaskellDepends = [ base ]; + description = "Generic deriving of Read/Show with no record labels"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "quoridor-exec"; - broken = true; } ) { }; @@ -553477,45 +320827,6 @@ self: { } ) { }; - "qux" = callPackage ( - { - mkDerivation, - base, - bytestring, - containers, - directory, - filepath, - language-qux, - llvm-general, - mtl, - optparse-applicative, - pretty, - }: - mkDerivation { - pname = "qux"; - version = "0.2.0.0"; - sha256 = "07rl7zikiaqjqlzm799szgz2mavmd8q150yxnj26742b2qz06flz"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - bytestring - containers - directory - filepath - language-qux - llvm-general - mtl - optparse-applicative - pretty - ]; - description = "Command line binary for working with the Qux language"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "qux"; - } - ) { }; - "r-glpk-phonetic-languages-ukrainian-durations" = callPackage ( { mkDerivation, @@ -553763,31 +321074,6 @@ self: { } ) { }; - "rad" = callPackage ( - { - mkDerivation, - array, - base, - containers, - data-reify, - }: - mkDerivation { - pname = "rad"; - version = "0.1.6.3"; - sha256 = "19g2lc3vmnapccdxf390cmkfl9bd3agcn01kk8ccd4lmaqn2c12d"; - libraryHaskellDepends = [ - array - base - containers - data-reify - ]; - description = "Reverse Automatic Differentiation"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "radian" = callPackage ( { mkDerivation, @@ -553816,77 +321102,6 @@ self: { } ) { }; - "radium" = callPackage ( - { - mkDerivation, - base, - Cabal, - containers, - hspec, - lens, - parsec, - QuickCheck, - }: - mkDerivation { - pname = "radium"; - version = "0.9.0"; - sha256 = "142c2qra8080yndj2y0m0bdrqmf8l6r0z43pj1icdvjqj9451j16"; - libraryHaskellDepends = [ - base - containers - lens - parsec - ]; - testHaskellDepends = [ - base - Cabal - containers - hspec - lens - parsec - QuickCheck - ]; - description = "Chemistry"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "radium-formula-parser" = callPackage ( - { - mkDerivation, - base, - Cabal, - containers, - hspec, - parsec, - QuickCheck, - }: - mkDerivation { - pname = "radium-formula-parser"; - version = "0.2"; - sha256 = "1b2gmc27dj9fanbjh7h0902jjh3jz1ydc6qvp9p3rfskaf6854bf"; - libraryHaskellDepends = [ - base - containers - parsec - ]; - testHaskellDepends = [ - base - Cabal - containers - hspec - parsec - QuickCheck - ]; - description = "Chemistry"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "radius" = callPackage ( { mkDerivation, @@ -553916,30 +321131,6 @@ self: { } ) { }; - "radix" = callPackage ( - { - mkDerivation, - base, - filepath, - }: - mkDerivation { - pname = "radix"; - version = "1.0.0.0"; - sha256 = "1hkz0fd1w72g6wnx9dq7z249195kjlhalcd1y8z13gj6yqn1sl9s"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - filepath - ]; - description = "Command-line tool for emitting numbers in various bases"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "radix"; - broken = true; - } - ) { }; - "radix-tree" = callPackage ( { mkDerivation, @@ -554034,161 +321225,6 @@ self: { } ) { }; - "rados-haskell" = callPackage ( - { - mkDerivation, - async, - base, - bytestring, - containers, - criterion, - hspec, - HUnit, - mtl, - rados, - transformers, - uuid, - }: - mkDerivation { - pname = "rados-haskell"; - version = "3.1.0"; - sha256 = "0xffgf95dss442sf6adh7yys39i0z64w155akjyzr9dp2jzr6f2k"; - libraryHaskellDepends = [ - async - base - bytestring - containers - mtl - uuid - ]; - librarySystemDepends = [ rados ]; - testHaskellDepends = [ - async - base - bytestring - hspec - HUnit - mtl - uuid - ]; - testSystemDepends = [ rados ]; - benchmarkHaskellDepends = [ - async - base - bytestring - criterion - mtl - transformers - ]; - description = "librados haskell bindings"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { rados = null; }; - - "raft" = callPackage ( - { - mkDerivation, - aeson, - attoparsec, - base, - binary, - bytestring, - cereal, - containers, - data-default, - ghc-prim, - mtl, - parallel, - scientific, - split, - stm, - text, - time, - tostring, - zlib, - }: - mkDerivation { - pname = "raft"; - version = "0.4.0.0"; - sha256 = "07lfjq2dz9vki7pvjg6p3mp2ifazhmidcx9pbsfxnhj1h8xb80bp"; - libraryHaskellDepends = [ - aeson - attoparsec - base - binary - bytestring - cereal - containers - data-default - ghc-prim - mtl - parallel - scientific - split - stm - text - time - tostring - zlib - ]; - description = "Miscellaneous Haskell utilities for data structures and data manipulation"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "rail-compiler-editor" = callPackage ( - { - mkDerivation, - base, - cairo, - containers, - gtk, - HUnit, - llvm-general, - llvm-general-pure, - mtl, - process, - transformers, - }: - mkDerivation { - pname = "rail-compiler-editor"; - version = "0.3.0.0"; - sha256 = "0jjsa21a7f4hysbk9qvcxyyc2ncrmmjh02n7yyhjnfjgdp4sclwb"; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base - containers - llvm-general - llvm-general-pure - mtl - ]; - executableHaskellDepends = [ - base - cairo - containers - gtk - mtl - process - transformers - ]; - testHaskellDepends = [ - base - containers - HUnit - process - ]; - description = "Compiler and editor for the esolang rail"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "rails-session" = callPackage ( { mkDerivation, @@ -554292,34 +321328,6 @@ self: { } ) { }; - "rainbow-tests" = callPackage ( - { - mkDerivation, - barecheck, - base, - QuickCheck, - rainbow, - terminfo, - text, - }: - mkDerivation { - pname = "rainbow-tests"; - version = "0.20.0.4"; - sha256 = "0cjq2m2zpk4j2f7gw65yqqvyc4kng1rsnq48fs4xcs6bdzw0zhlg"; - libraryHaskellDepends = [ - barecheck - base - QuickCheck - rainbow - terminfo - text - ]; - description = "Tests and QuickCheck generators to accompany rainbow"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "rainbox" = callPackage ( { mkDerivation, @@ -554382,188 +321390,6 @@ self: { } ) { }; - "raketka" = callPackage ( - { - mkDerivation, - aeson, - async, - base, - binary, - bytestring, - conf-json, - containers, - distributed-process, - distributed-process-simplelocalnet, - hspec, - network, - network-transport, - network-transport-tcp, - QuickCheck, - random, - stm, - tagged, - template-haskell, - }: - mkDerivation { - pname = "raketka"; - version = "1.1.3"; - sha256 = "0mz9639p3ndlq72gask5fdv7kqpkgs4wh0f86wfargyfd36179lw"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson - async - base - binary - bytestring - conf-json - containers - distributed-process - distributed-process-simplelocalnet - network - network-transport - network-transport-tcp - random - stm - tagged - template-haskell - ]; - executableHaskellDepends = [ - aeson - async - base - binary - bytestring - conf-json - containers - distributed-process - distributed-process-simplelocalnet - network - network-transport - network-transport-tcp - random - stm - tagged - template-haskell - ]; - testHaskellDepends = [ - base - hspec - QuickCheck - ]; - description = "distributed-process node"; - license = lib.licenses.publicDomain; - hydraPlatforms = lib.platforms.none; - mainProgram = "raketka"; - } - ) { }; - - "rakhana" = callPackage ( - { - mkDerivation, - attoparsec, - base, - bytestring, - containers, - lens, - mtl, - pipes, - scientific, - transformers, - vector, - zlib, - }: - mkDerivation { - pname = "rakhana"; - version = "0.2.0.2"; - sha256 = "10gk2wk8495y1zk148sqsm993dzi4z6a49nn717qccpc2qi4lw6k"; - libraryHaskellDepends = [ - attoparsec - base - bytestring - containers - lens - mtl - pipes - scientific - transformers - vector - zlib - ]; - description = "Stream based PDF library"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "rakuten" = callPackage ( - { - mkDerivation, - aeson, - base, - bytestring, - connection, - constraints, - data-default-class, - extensible, - hspec, - http-api-data, - http-client, - http-client-tls, - http-types, - lens, - req, - servant-server, - text, - warp, - }: - mkDerivation { - pname = "rakuten"; - version = "0.1.1.5"; - sha256 = "04qr5rbg0w56nlkama95bavalq3zj24pblbi655vq0vli5ggxgza"; - libraryHaskellDepends = [ - aeson - base - bytestring - connection - constraints - data-default-class - extensible - http-api-data - http-client - http-client-tls - http-types - lens - req - text - ]; - testHaskellDepends = [ - aeson - base - bytestring - connection - constraints - data-default-class - extensible - hspec - http-api-data - http-client - http-client-tls - http-types - lens - req - servant-server - text - warp - ]; - description = "The Rakuten API in Haskell"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "ral" = callPackage ( { mkDerivation, @@ -554702,56 +321528,6 @@ self: { } ) { }; - "rallod" = callPackage ( - { - mkDerivation, - base, - haskell98, - }: - mkDerivation { - pname = "rallod"; - version = "0.0.1"; - sha256 = "14fnk2q702qm0mh30r9kznbh4ikpv4fsd5mrnwphm5d06vmq6hq9"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base - haskell98 - ]; - description = "'$' in reverse"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "raml" = callPackage ( - { - mkDerivation, - aeson, - base, - bytestring, - text, - unordered-containers, - yaml, - }: - mkDerivation { - pname = "raml"; - version = "0.1.0"; - sha256 = "02c1rki7azfwfiawi29z5gp1zwfdx46rw17bifpklw7zya525pr9"; - libraryHaskellDepends = [ - aeson - base - bytestring - text - unordered-containers - yaml - ]; - description = "RESTful API Modeling Language (RAML) library for Haskell"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "rampart" = callPackage ( { mkDerivation, @@ -554801,66 +321577,6 @@ self: { } ) { }; - "rand-vars" = callPackage ( - { - mkDerivation, - array, - base, - IntervalMap, - mtl, - random, - }: - mkDerivation { - pname = "rand-vars"; - version = "0.1"; - sha256 = "165jvx59vzmpxp7gw60ivfka77kgc1irwijikkwja7jb4dm4ay3x"; - libraryHaskellDepends = [ - array - base - IntervalMap - mtl - random - ]; - description = "Random variable library, with Functor, Applicative and Monad instances"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "randfile" = callPackage ( - { - mkDerivation, - base, - crypto-api, - directory, - filepath, - monadcryptorandom, - transformers, - unix, - }: - mkDerivation { - pname = "randfile"; - version = "0.1.0.0"; - sha256 = "11f72kfya4l41dihjvaz15hzipry281r8i6k6dzp5q3gq4valgyz"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - crypto-api - directory - filepath - monadcryptorandom - transformers - unix - ]; - description = "Program for picking a random file"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "randfile"; - } - ) { }; - "rando" = callPackage ( { mkDerivation, @@ -555013,85 +321729,6 @@ self: { } ) { }; - "random-access-file" = callPackage ( - { - mkDerivation, - base, - bytestring, - concurrent-extra, - containers, - criterion, - directory, - lrucaching, - mwc-random, - random, - stm, - unix, - unix-bytestring, - unix-memory, - vector, - }: - mkDerivation { - pname = "random-access-file"; - version = "0.1.0.0"; - sha256 = "1cs62f6hswyzmq730y79sv0c7iifqm5v91mkam36iaigz3i2xpv0"; - libraryHaskellDepends = [ - base - bytestring - concurrent-extra - containers - directory - lrucaching - stm - unix - unix-bytestring - unix-memory - ]; - benchmarkHaskellDepends = [ - base - bytestring - concurrent-extra - containers - criterion - directory - lrucaching - mwc-random - random - stm - unix - unix-bytestring - unix-memory - vector - ]; - description = "Random file access methods, supporting application-level page cache"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "random-access-list" = callPackage ( - { - mkDerivation, - array, - base, - containers, - }: - mkDerivation { - pname = "random-access-list"; - version = "0.2"; - sha256 = "1ymbs3f38l6ch0nphsy9pi32yb1a4hazn3grm9fl0dvgqw28xl8r"; - libraryHaskellDepends = [ - array - base - containers - ]; - description = "Random-access lists in Haskell"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "random-bytestring" = callPackage ( { mkDerivation, @@ -555210,100 +321847,6 @@ self: { } ) { }; - "random-derive" = callPackage ( - { - mkDerivation, - base, - random, - template-haskell, - }: - mkDerivation { - pname = "random-derive"; - version = "0.1.0.0"; - sha256 = "08irzyg8cgigj009zp5hg33gdwranrdyyzrxhmwyib6fm5bmsj8p"; - libraryHaskellDepends = [ - base - random - template-haskell - ]; - description = "A Template Haskell helper for deriving Random instances"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "random-eff" = callPackage ( - { - mkDerivation, - base, - extensible-effects, - random, - }: - mkDerivation { - pname = "random-eff"; - version = "0.1.0.1"; - sha256 = "1m28np0zfabp1n1d08przh35bxfr1l7d39kj4a5z61jkchmsaxyf"; - libraryHaskellDepends = [ - base - extensible-effects - random - ]; - description = "A simple random generator library for extensible-effects"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "random-effin" = callPackage ( - { - mkDerivation, - base, - effin, - random, - }: - mkDerivation { - pname = "random-effin"; - version = "0.1.1.0"; - sha256 = "0p1n5dfdsp00q9mlhd7xcl93k5d0wji91p59858gmfx9xf8j0p0h"; - libraryHaskellDepends = [ - base - effin - random - ]; - description = "A simple random generator library for effin"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "random-extras" = callPackage ( - { - mkDerivation, - array, - base, - containers, - random-fu, - random-source, - }: - mkDerivation { - pname = "random-extras"; - version = "0.19"; - sha256 = "1b45s314rqkk0np460p3p0wrqvkv9dczifny8pp76ikksalfvgn0"; - libraryHaskellDepends = [ - array - base - containers - random-fu - random-source - ]; - description = "Additional functions for random values"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "random-fu" = callPackage ( { mkDerivation, @@ -555343,69 +321886,6 @@ self: { } ) { }; - "random-fu-multivariate" = callPackage ( - { - mkDerivation, - base, - hmatrix, - mtl, - random-fu, - }: - mkDerivation { - pname = "random-fu-multivariate"; - version = "0.1.2.1"; - sha256 = "01r3jgjmhcj7wrc9ighwm0sbndsrz92l20gxh9p4rm2l90n0vxqc"; - libraryHaskellDepends = [ - base - hmatrix - mtl - random-fu - ]; - testHaskellDepends = [ base ]; - description = "Multivariate distributions for random-fu"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "random-hypergeometric" = callPackage ( - { - mkDerivation, - base, - Cabal, - cabal-test-quickcheck, - math-functions, - mwc-random, - QuickCheck, - random-fu, - vector, - }: - mkDerivation { - pname = "random-hypergeometric"; - version = "0.1.0.0"; - sha256 = "0jg4j2nwijb5ic9zl5y9miqhn881dmf0s49gj8f818as3mhvqlgh"; - libraryHaskellDepends = [ - base - math-functions - random-fu - ]; - testHaskellDepends = [ - base - Cabal - cabal-test-quickcheck - math-functions - mwc-random - QuickCheck - random-fu - vector - ]; - description = "Random variate generation from hypergeometric distributions"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "random-mhs" = callPackage ( { mkDerivation, @@ -555553,60 +322033,6 @@ self: { } ) { }; - "random-stream" = callPackage ( - { - mkDerivation, - base, - binary, - bytestring, - random, - }: - mkDerivation { - pname = "random-stream"; - version = "0.1.1"; - sha256 = "0q191kz3hmjzrgs143nja5gcis07igb38f51mwqw64zx7vjqvx66"; - libraryHaskellDepends = [ - base - binary - bytestring - random - ]; - description = "An infinite stream of random data"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "random-string" = callPackage ( - { - mkDerivation, - base, - base16-bytestring, - base58-bytestring, - base64-bytestring, - bytestring, - entropy, - }: - mkDerivation { - pname = "random-string"; - version = "0.1.0.1"; - sha256 = "0gmb5i5sykwfr1l4b2isn9j92pzxgalbxkf9dnhs14pj3i6ygl80"; - libraryHaskellDepends = [ - base - base16-bytestring - base58-bytestring - base64-bytestring - bytestring - entropy - ]; - description = "Generate a random base 16, 58, or 64 string"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "random-strings" = callPackage ( { mkDerivation, @@ -555851,44 +322277,6 @@ self: { } ) { }; - "range-space" = callPackage ( - { - mkDerivation, - base, - QuickCheck, - semigroups, - test-framework, - test-framework-quickcheck2, - time, - vector-space, - vector-space-points, - }: - mkDerivation { - pname = "range-space"; - version = "0.1.2.0"; - sha256 = "1hrqdf2rjvf69vwaaw92fw2xa0j2x4i9g6231dz9s08i0pm6r39q"; - libraryHaskellDepends = [ - base - semigroups - vector-space - vector-space-points - ]; - testHaskellDepends = [ - base - QuickCheck - semigroups - test-framework - test-framework-quickcheck2 - time - vector-space - vector-space-points - ]; - description = "A Range type with vector-space instances"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "ranged-list" = callPackage ( { mkDerivation, @@ -555918,31 +322306,6 @@ self: { } ) { }; - "rangemin" = callPackage ( - { - mkDerivation, - base, - containers, - primitive, - vector, - }: - mkDerivation { - pname = "rangemin"; - version = "2.2.2"; - sha256 = "01n1m3ibi44pjg04mg16j751fjzkspmnq8bzxz55qbyi22wshnwc"; - libraryHaskellDepends = [ - base - containers - primitive - vector - ]; - description = "Linear range-min algorithms"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "ranges" = callPackage ( { mkDerivation, @@ -556003,49 +322366,6 @@ self: { } ) { }; - "rank-product" = callPackage ( - { - mkDerivation, - base, - bytestring, - cassava, - containers, - lens, - optparse-generic, - random-fu, - text, - vector, - }: - mkDerivation { - pname = "rank-product"; - version = "0.2.2.0"; - sha256 = "1nrvcgf61fg243zfp7cab5hxyhjhh2mlk4ysd6igf64w8di25lir"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - containers - random-fu - text - vector - ]; - executableHaskellDepends = [ - base - bytestring - cassava - containers - lens - optparse-generic - vector - ]; - description = "Find the rank product of a data set"; - license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - mainProgram = "rank-product"; - broken = true; - } - ) { }; - "rank1dynamic" = callPackage ( { mkDerivation, @@ -556142,528 +322462,6 @@ self: { } ) { }; - "rapid-term" = callPackage ( - { - mkDerivation, - base, - clock, - kan-extensions, - process, - transformers, - unix, - }: - mkDerivation { - pname = "rapid-term"; - version = "0.1.2.1"; - sha256 = "0pyqsj07g2am9n84232cpy20r6w54mah01x9kl7rczab0yvfplbc"; - libraryHaskellDepends = [ - base - clock - kan-extensions - process - transformers - unix - ]; - description = "External terminal support for rapid"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "rasa" = callPackage ( - { - mkDerivation, - async, - base, - bifunctors, - containers, - data-default, - eve, - free, - hspec, - lens, - mtl, - pipes, - pipes-concurrency, - pipes-parse, - profunctors, - QuickCheck, - quickcheck-instances, - text, - text-lens, - transformers, - yi-rope, - }: - mkDerivation { - pname = "rasa"; - version = "0.1.12"; - sha256 = "08azx2xx1lpgal60jr7imsx5gvh6c5l7sz0kr5zciiilzli73rss"; - revision = "1"; - editedCabalFile = "17wpscqy10vkp7zwq82lshivyp5qvnzp3c9x6ijhlb7q5vpyvrkr"; - libraryHaskellDepends = [ - async - base - bifunctors - containers - data-default - eve - free - hspec - lens - mtl - pipes - pipes-concurrency - pipes-parse - profunctors - text - text-lens - transformers - yi-rope - ]; - testHaskellDepends = [ - base - eve - hspec - lens - QuickCheck - quickcheck-instances - text - yi-rope - ]; - description = "A modular text editor"; - license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "rasa-example-config" = callPackage ( - { - mkDerivation, - base, - data-default, - lens, - mtl, - rasa, - rasa-ext-cursors, - rasa-ext-files, - rasa-ext-logger, - rasa-ext-slate, - rasa-ext-views, - rasa-ext-vim, - yi-rope, - }: - mkDerivation { - pname = "rasa-example-config"; - version = "0.1.4"; - sha256 = "1kg6wykarfv29m12hqxfm8q5abpilppnq62k02872nv1a661838n"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - data-default - lens - mtl - rasa - rasa-ext-cursors - rasa-ext-files - rasa-ext-logger - rasa-ext-slate - rasa-ext-views - rasa-ext-vim - yi-rope - ]; - description = "Example user config for Rasa"; - license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - mainProgram = "rasa"; - } - ) { }; - - "rasa-ext-bufs" = callPackage ( - { - mkDerivation, - base, - containers, - data-default, - lens, - rasa, - text, - }: - mkDerivation { - pname = "rasa-ext-bufs"; - version = "0.1.1"; - sha256 = "04n4w8cigpnndbqh1lqldn48i3kak1s4al42g2izpwiq87s3bff7"; - libraryHaskellDepends = [ - base - containers - data-default - lens - rasa - text - ]; - description = "Rasa Ext for useful buffer utilities"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "rasa-ext-cmd" = callPackage ( - { - mkDerivation, - base, - containers, - data-default, - lens, - rasa, - text, - }: - mkDerivation { - pname = "rasa-ext-cmd"; - version = "0.1.3"; - sha256 = "1b13znv97s7bb4b88mk4zywbd3j2hg34pip23dk1pnnzd10agh4i"; - libraryHaskellDepends = [ - base - containers - data-default - lens - rasa - text - ]; - description = "Rasa Ext for running commands"; - license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "rasa-ext-cursors" = callPackage ( - { - mkDerivation, - base, - data-default, - lens, - mtl, - rasa, - text, - text-lens, - yi-rope, - }: - mkDerivation { - pname = "rasa-ext-cursors"; - version = "0.1.7"; - sha256 = "01gc9xsgi7skynrgsk7js8yiya6fbg58y8zqgw832mv1d1cw2a4w"; - libraryHaskellDepends = [ - base - data-default - lens - mtl - rasa - text - text-lens - yi-rope - ]; - description = "Rasa Ext adding cursor(s)"; - license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "rasa-ext-files" = callPackage ( - { - mkDerivation, - base, - data-default, - lens, - mtl, - rasa, - rasa-ext-cmd, - rasa-ext-views, - text, - yi-rope, - }: - mkDerivation { - pname = "rasa-ext-files"; - version = "0.1.5"; - sha256 = "0yj9r0jqac85h6vi9dli12w9yhksyaa5kwk68c5arbl56ak9ancp"; - libraryHaskellDepends = [ - base - data-default - lens - mtl - rasa - rasa-ext-cmd - rasa-ext-views - text - yi-rope - ]; - description = "Rasa Ext for filesystem actions"; - license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "rasa-ext-logger" = callPackage ( - { - mkDerivation, - base, - lens, - mtl, - rasa, - }: - mkDerivation { - pname = "rasa-ext-logger"; - version = "0.1.4"; - sha256 = "1wv3bkfq92h7b91x88mzqcijbpb2kh7zkgg4ljxdx59qi4lb7hry"; - libraryHaskellDepends = [ - base - lens - mtl - rasa - ]; - description = "Rasa Ext for logging state/actions"; - license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "rasa-ext-slate" = callPackage ( - { - mkDerivation, - base, - lens, - mtl, - rasa, - rasa-ext-logger, - rasa-ext-views, - recursion-schemes, - text, - vty, - yi-rope, - }: - mkDerivation { - pname = "rasa-ext-slate"; - version = "0.1.8"; - sha256 = "111lk15gswwp2336hbqx8h4rj7nyb9n00946ljfa6pls0pbl25xz"; - libraryHaskellDepends = [ - base - lens - mtl - rasa - rasa-ext-logger - rasa-ext-views - recursion-schemes - text - vty - yi-rope - ]; - description = "Rasa extension for rendering to terminal with vty"; - license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "rasa-ext-status-bar" = callPackage ( - { - mkDerivation, - base, - data-default, - lens, - rasa, - yi-rope, - }: - mkDerivation { - pname = "rasa-ext-status-bar"; - version = "0.1.3"; - sha256 = "0grfj3qxlmk63x5cxrbibkhrrgij077f7sr0kj6vcl0np7a5dl98"; - libraryHaskellDepends = [ - base - data-default - lens - rasa - yi-rope - ]; - description = "Rasa Ext for populating status-bar"; - license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "rasa-ext-style" = callPackage ( - { - mkDerivation, - base, - data-default, - lens, - rasa, - }: - mkDerivation { - pname = "rasa-ext-style"; - version = "0.1.4"; - sha256 = "198phwvsndsk149rj744znjzw8w2n0238pbv07d7rfs2c1987s04"; - libraryHaskellDepends = [ - base - data-default - lens - rasa - ]; - description = "Rasa Ext managing rendering styles"; - license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "rasa-ext-views" = callPackage ( - { - mkDerivation, - base, - bifunctors, - data-default, - lens, - mtl, - rasa, - recursion-schemes, - yi-rope, - }: - mkDerivation { - pname = "rasa-ext-views"; - version = "0.1.6"; - sha256 = "0920dmmgi87i98fwbkn7qwgnklviqh7fw87a1aqsc22z5cj4frgl"; - libraryHaskellDepends = [ - base - bifunctors - data-default - lens - mtl - rasa - recursion-schemes - yi-rope - ]; - description = "Rasa Ext managing rendering views"; - license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "rasa-ext-vim" = callPackage ( - { - mkDerivation, - base, - data-default, - hspec, - lens, - mtl, - rasa, - rasa-ext-cursors, - rasa-ext-files, - rasa-ext-views, - text, - text-lens, - yi-rope, - }: - mkDerivation { - pname = "rasa-ext-vim"; - version = "0.1.8"; - sha256 = "00ky39dxapmfdslnm21q1yab3hkd8fm18zqg9vfvd25dcmz493zy"; - libraryHaskellDepends = [ - base - data-default - lens - mtl - rasa - rasa-ext-cursors - rasa-ext-files - rasa-ext-views - text - text-lens - yi-rope - ]; - testHaskellDepends = [ - base - hspec - ]; - description = "Rasa Ext for vim bindings"; - license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "rascal" = callPackage ( - { - mkDerivation, - aeson, - ansi-terminal, - base, - containers, - curl, - curl-aeson, - directory, - filepath, - HUnit, - mtl, - process, - QuickCheck, - tasty, - tasty-hunit, - tasty-quickcheck, - vector, - }: - mkDerivation { - pname = "rascal"; - version = "1.1.6"; - sha256 = "0q7afppkm5jd1p13fszzsfjpdz6g6bw1vd6wigcy3janxn5686rs"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson - ansi-terminal - base - containers - curl - curl-aeson - directory - filepath - mtl - process - vector - ]; - executableHaskellDepends = [ - aeson - ansi-terminal - base - containers - curl - curl-aeson - directory - filepath - mtl - process - vector - ]; - testHaskellDepends = [ - aeson - ansi-terminal - base - containers - curl - curl-aeson - directory - filepath - HUnit - mtl - process - QuickCheck - tasty - tasty-hunit - tasty-quickcheck - vector - ]; - description = "A command-line client for Reddit"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - mainProgram = "rascal"; - } - ) { }; - "rasterific-svg" = callPackage ( { mkDerivation, @@ -556862,94 +322660,6 @@ self: { } ) { }; - "rating-chgk-info" = callPackage ( - { - mkDerivation, - aeson, - base-noprelude, - bytestring, - cassava, - containers, - directory, - gauge, - http-client, - http-client-tls, - iconv, - lens, - network, - optparse-generic, - relude, - servant, - servant-client, - servant-js, - servant-server, - servant-swagger, - swagger2, - tagsoup, - text, - time, - vector, - wai, - warp, - wreq, - }: - mkDerivation { - pname = "rating-chgk-info"; - version = "0.3.6.5"; - sha256 = "08qfrrhc8kg95jvhv5m99zrb062w64z1jzm46zm4ah6mdjlpac18"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson - base-noprelude - bytestring - cassava - containers - http-client - http-client-tls - iconv - lens - network - optparse-generic - relude - servant - servant-client - servant-js - servant-server - servant-swagger - swagger2 - tagsoup - text - time - vector - wai - warp - wreq - ]; - executableHaskellDepends = [ - aeson - base-noprelude - directory - relude - text - time - ]; - testHaskellDepends = [ - base-noprelude - relude - ]; - benchmarkHaskellDepends = [ - base-noprelude - gauge - relude - ]; - description = "Client for rating.chgk.info API and CSV tables (documentation in Russian)"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "rating-systems" = callPackage ( { mkDerivation, base }: mkDerivation { @@ -556974,36 +322684,6 @@ self: { } ) { }; - "rational-list" = callPackage ( - { - mkDerivation, - base, - containers, - QuickCheck, - test-framework, - test-framework-quickcheck2, - }: - mkDerivation { - pname = "rational-list"; - version = "1.0.0.0"; - sha256 = "18jcdjzsvhh7qh1m52rgkznsm0p1wp17rj2lfaq3mnfmmh86iz9f"; - libraryHaskellDepends = [ - base - containers - ]; - testHaskellDepends = [ - base - QuickCheck - test-framework - test-framework-quickcheck2 - ]; - description = "finite or repeating lists"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "rattle" = callPackage ( { mkDerivation, @@ -557368,51 +323048,6 @@ self: { } ) { }; - "rawr" = callPackage ( - { - mkDerivation, - base, - criterion, - deepseq, - doctest, - ghc-datasize, - ghc-prim, - lens, - tasty, - tasty-hunit, - template-haskell, - }: - mkDerivation { - pname = "rawr"; - version = "0.0.0.1"; - sha256 = "17l1mz5gl4i0i7ml42qqn6cs6l6m8r0hqwi78kpvgdl2f79g98mf"; - libraryHaskellDepends = [ - base - deepseq - ghc-prim - template-haskell - ]; - testHaskellDepends = [ - base - deepseq - doctest - ghc-datasize - lens - tasty - tasty-hunit - ]; - benchmarkHaskellDepends = [ - base - criterion - deepseq - ]; - description = "Anonymous extensible records"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "rawstring-qm" = callPackage ( { mkDerivation, @@ -557499,46 +323134,6 @@ self: { } ) { }; - "raz" = callPackage ( - { - mkDerivation, - base, - containers, - criterion, - deepseq, - MonadRandom, - random, - transformers, - }: - mkDerivation { - pname = "raz"; - version = "0.1.0.0"; - sha256 = "05f2jvmr8mkk5wgvfwrws4ql1c5hbk6n32r152pjyzwfy37hy37f"; - libraryHaskellDepends = [ - base - deepseq - MonadRandom - ]; - testHaskellDepends = [ - base - MonadRandom - ]; - benchmarkHaskellDepends = [ - base - containers - criterion - deepseq - MonadRandom - random - transformers - ]; - description = "Random Access Zippers"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "razom-text-util" = callPackage ( { mkDerivation, @@ -557571,6 +323166,7 @@ self: { description = "Common text/parsing tools for Razom language packages"; license = lib.licenses.publicDomain; hydraPlatforms = lib.platforms.none; + broken = true; } ) { }; @@ -557617,168 +323213,6 @@ self: { } ) { bitcoin-payment-protocol = null; }; - "rbr" = callPackage ( - { - mkDerivation, - base, - bio, - bytestring, - containers, - }: - mkDerivation { - pname = "rbr"; - version = "0.8.6"; - sha256 = "0q7b990k3ijjjwhnm1283k9vzmvypyg7mhvbzagvi74q0sgwyac7"; - isLibrary = false; - isExecutable = true; - enableSeparateDataOutput = true; - executableHaskellDepends = [ - base - bio - bytestring - containers - ]; - description = "Mask nucleotide (EST) sequences in Fasta format"; - license = "GPL"; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "rbst" = callPackage ( - { - mkDerivation, - base, - bytestring, - containers, - deepseq, - doctest, - gauge, - Glob, - hspec, - hspec-core, - hspec-expectations, - mersenne-random-pure64, - mwc-random, - QuickCheck, - text, - transformers, - }: - mkDerivation { - pname = "rbst"; - version = "0.0.0.1"; - sha256 = "0f2pp1vqrwcn0lh0261acmhbwlcmc6sh2dkqhcl67xk2h62d9ipj"; - libraryHaskellDepends = [ - base - bytestring - containers - deepseq - mersenne-random-pure64 - text - transformers - ]; - testHaskellDepends = [ - base - doctest - Glob - hspec - hspec-core - hspec-expectations - QuickCheck - ]; - benchmarkHaskellDepends = [ - base - gauge - mwc-random - ]; - description = "Randomized Binary Search Trees"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "rc" = callPackage ( - { - mkDerivation, - base, - dde, - hmatrix, - Learning, - linear, - random, - vector, - }: - mkDerivation { - pname = "rc"; - version = "0.3.0.0"; - sha256 = "0p545hazdn5895w0yf7kywhv2y2a4pzfr9kdzkkyiapr0clsx9i6"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - dde - hmatrix - Learning - linear - random - vector - ]; - executableHaskellDepends = [ - base - dde - hmatrix - Learning - linear - random - vector - ]; - testHaskellDepends = [ - base - dde - hmatrix - Learning - linear - random - vector - ]; - description = "Reservoir Computing, fast RNNs"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "ntc"; - } - ) { }; - - "rclient" = callPackage ( - { - mkDerivation, - base, - binary, - bytestring, - data-binary-ieee754, - network, - QuickCheck, - split, - }: - mkDerivation { - pname = "rclient"; - version = "0.1.0.0"; - sha256 = "1hdcbnkb184a1zfxsh4fxgff9znc5sw6503qbix67c45qiw25zhn"; - libraryHaskellDepends = [ - base - binary - bytestring - data-binary-ieee754 - network - QuickCheck - split - ]; - description = "Haskell client for Rserve"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "rcu" = callPackage ( { mkDerivation, @@ -557995,58 +323429,6 @@ self: { } ) { }; - "rdioh" = callPackage ( - { - mkDerivation, - aeson, - base, - bytestring, - containers, - hoauth, - hspec, - json, - MissingH, - mtl, - transformers, - urlencoded, - }: - mkDerivation { - pname = "rdioh"; - version = "0.2.1"; - sha256 = "1k0djlhabycj4q7x85bj7n3k0rcyxn9b3k3ijb4za2vxj081qdj0"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson - base - bytestring - containers - hoauth - json - MissingH - mtl - transformers - urlencoded - ]; - executableHaskellDepends = [ - aeson - base - bytestring - containers - hoauth - hspec - json - MissingH - mtl - transformers - urlencoded - ]; - description = "A Haskell wrapper for Rdio's API"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "rds-data" = callPackage ( { mkDerivation, @@ -558439,238 +323821,6 @@ self: { } ) { }; - "react-flux" = callPackage ( - { - mkDerivation, - aeson, - base, - bytestring, - deepseq, - mtl, - template-haskell, - text, - time, - unordered-containers, - }: - mkDerivation { - pname = "react-flux"; - version = "1.2.3"; - sha256 = "1ixipyzl1517as7sxfz6l0sgxm2w1vmsjfnmsi110asjnvl6ij35"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson - base - bytestring - deepseq - mtl - template-haskell - text - time - unordered-containers - ]; - description = "A binding to React based on the Flux application architecture for GHCJS"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "react-flux-servant" = callPackage ( - { - mkDerivation, - aeson, - base, - react-flux, - servant, - text, - }: - mkDerivation { - pname = "react-flux-servant"; - version = "0.1.1"; - sha256 = "171q9h2yd78bcwsbhzhggin9wvnwc560vr73zw7abbx2q8aik4q4"; - libraryHaskellDepends = [ - aeson - base - react-flux - servant - text - ]; - description = "Allow react-flux stores to send requests to a servant server"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "react-haskell" = callPackage ( - { - mkDerivation, - aeson, - base, - deepseq, - lens-family, - monads-tf, - text, - transformers, - unordered-containers, - void, - }: - mkDerivation { - pname = "react-haskell"; - version = "2.0.1"; - sha256 = "0kjbicrvriliy50gy82b7rsrfk5p3iv20wwnhiaq9i16mbh2zj8j"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - aeson - base - deepseq - lens-family - monads-tf - text - transformers - unordered-containers - void - ]; - description = "Haskell React bindings"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "react-tutorial-haskell-server" = callPackage ( - { - mkDerivation, - aeson, - aeson-pretty, - base, - bytestring, - scotty, - time, - transformers, - }: - mkDerivation { - pname = "react-tutorial-haskell-server"; - version = "1.0.0"; - sha256 = "1fnnkiwd2d8kj7f6yynd5dph6hq1cddzidhr7h7fl531nkfplz0d"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - aeson - aeson-pretty - base - bytestring - scotty - time - transformers - ]; - description = "react-tutorial web server"; - license = lib.licenses.agpl3Only; - hydraPlatforms = lib.platforms.none; - mainProgram = "server"; - broken = true; - } - ) { }; - - "reaction-logic" = callPackage ( - { - mkDerivation, - base, - mtl, - QuickCheck, - }: - mkDerivation { - pname = "reaction-logic"; - version = "2010.11.17"; - sha256 = "0g1lbr0lsx71ddmd64q9lxx3gj63ncc7nqd12l4739wq495q57r0"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - mtl - QuickCheck - ]; - executableHaskellDepends = [ - base - mtl - QuickCheck - ]; - description = "pluggable pure logic serializable reactor"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "reaction-logic-test"; - broken = true; - } - ) { }; - - "reactive" = callPackage ( - { - mkDerivation, - base, - category-extras, - checkers, - old-time, - QuickCheck, - random, - Stream, - TypeCompose, - unamb, - vector-space, - }: - mkDerivation { - pname = "reactive"; - version = "0.11.5"; - sha256 = "1axhgggl1g8yjdvp817bnkj4xc23scc3i2k224k43942255sf71j"; - libraryHaskellDepends = [ - base - category-extras - checkers - old-time - QuickCheck - random - Stream - TypeCompose - unamb - vector-space - ]; - description = "Push-pull functional reactive programming"; - license = "unknown"; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "reactive-bacon" = callPackage ( - { - mkDerivation, - base, - containers, - HUnit, - old-time, - stm, - }: - mkDerivation { - pname = "reactive-bacon"; - version = "0.4.1"; - sha256 = "0cic01yikwgalbprz8y0fs7i7c0pynxl7aivsfjgsl75wdpjsj3m"; - libraryHaskellDepends = [ - base - old-time - stm - ]; - testHaskellDepends = [ - base - containers - HUnit - old-time - stm - ]; - description = "FRP (functional reactive programming) framework"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "reactive-balsa" = callPackage ( { mkDerivation, @@ -558851,116 +324001,6 @@ self: { } ) { }; - "reactive-banana-gi-gtk" = callPackage ( - { - mkDerivation, - base, - gi-gtk, - haskell-gi-base, - reactive-banana, - text, - transformers, - }: - mkDerivation { - pname = "reactive-banana-gi-gtk"; - version = "0.4.1.0"; - sha256 = "021fkmwgymmlf1ha03y9rdimbck7sglmg4cjpdf76z01r6hpzbrb"; - libraryHaskellDepends = [ - base - gi-gtk - haskell-gi-base - reactive-banana - text - transformers - ]; - testHaskellDepends = [ base ]; - description = "Simple reactive programming with GTK GObject Introspection"; - license = lib.licenses.publicDomain; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "reactive-banana-sdl" = callPackage ( - { - mkDerivation, - base, - data-lens, - data-lens-template, - reactive-banana, - SDL, - SDL-image, - SDL-ttf, - }: - mkDerivation { - pname = "reactive-banana-sdl"; - version = "0.2.0"; - sha256 = "067g8v7xhll416f47prifv0l2i8vr6aywbahhci8kwci75a1al6m"; - libraryHaskellDepends = [ - base - data-lens - data-lens-template - reactive-banana - SDL - SDL-image - SDL-ttf - ]; - description = "Reactive Banana bindings for SDL"; - license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "reactive-banana-sdl2" = callPackage ( - { - mkDerivation, - base, - reactive-banana, - sdl2, - }: - mkDerivation { - pname = "reactive-banana-sdl2"; - version = "0.1.1.0"; - sha256 = "158yisv0dm9a3b9705rrfywx2kpsc1z1n4ianscfhj7cx4b1r647"; - libraryHaskellDepends = [ - base - reactive-banana - sdl2 - ]; - testHaskellDepends = [ base ]; - description = "Reactive Banana integration with SDL2"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "reactive-banana-threepenny" = callPackage ( - { - mkDerivation, - base, - reactive-banana, - threepenny-gui, - }: - mkDerivation { - pname = "reactive-banana-threepenny"; - version = "0.7.1.3"; - sha256 = "1fb0bq7rcxsnga2hxh94h2rpp4kjh383z06qgk36m49pyvnbnl9a"; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base - reactive-banana - threepenny-gui - ]; - description = "Examples for the reactive-banana library, using threepenny-gui"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "reactive-banana-wx" = callPackage ( { mkDerivation, @@ -558990,64 +324030,7 @@ self: { description = "Examples for the reactive-banana library, using wxHaskell"; license = lib.licenses.bsd3; hydraPlatforms = lib.platforms.none; - } - ) { }; - - "reactive-fieldtrip" = callPackage ( - { - mkDerivation, - base, - FieldTrip, - InfixApplicative, - reactive, - reactive-glut, - unamb, - vector-space, - }: - mkDerivation { - pname = "reactive-fieldtrip"; - version = "0.0.9"; - sha256 = "092bxjnhbcyqlij8jc014c56k67ncp5wjm8kmwvn8argfplyscxg"; - libraryHaskellDepends = [ - base - FieldTrip - InfixApplicative - reactive - reactive-glut - unamb - vector-space - ]; - description = "Connect Reactive and FieldTrip"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "reactive-glut" = callPackage ( - { - mkDerivation, - base, - GLUT, - old-time, - OpenGL, - reactive, - vector-space, - }: - mkDerivation { - pname = "reactive-glut"; - version = "0.1.10"; - sha256 = "164ivzgrnvqvx7r1jagsng9m47ql0jkayzahhcvs8wd78ksbbsfh"; - libraryHaskellDepends = [ - base - GLUT - old-time - OpenGL - reactive - vector-space - ]; - description = "Connects Reactive and GLUT"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; + broken = true; } ) { }; @@ -559172,42 +324155,6 @@ self: { } ) { }; - "reactive-thread" = callPackage ( - { - mkDerivation, - base, - monad-parallel, - SDL, - stm, - transformers, - }: - mkDerivation { - pname = "reactive-thread"; - version = "0.3.2.1"; - sha256 = "1mydwb3p2c4xm7zfv7cwcyscq1wdcvs2az743s3j8gl8ggc1zs50"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - monad-parallel - stm - transformers - ]; - executableHaskellDepends = [ - base - monad-parallel - SDL - stm - transformers - ]; - description = "Reactive programming via imperative threads"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "example-sdl"; - broken = true; - } - ) { }; - "reactivity" = callPackage ( { mkDerivation, @@ -559252,38 +324199,6 @@ self: { } ) { }; - "reactor" = callPackage ( - { - mkDerivation, - array, - base, - bits-atomic, - comonad, - contravariant, - mtl, - semigroupoids, - transformers, - }: - mkDerivation { - pname = "reactor"; - version = "0.1.3"; - sha256 = "0g57vkq8cgigy6383p5jk6bbp3l1vcihryz8sjwvr8hs4y96642f"; - libraryHaskellDepends = [ - array - base - bits-atomic - comonad - contravariant - mtl - semigroupoids - transformers - ]; - description = "Reactor - task parallel reactive programming"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "read-bounded" = callPackage ( { mkDerivation, base }: mkDerivation { @@ -559298,53 +324213,6 @@ self: { } ) { }; - "read-ctags" = callPackage ( - { - mkDerivation, - base, - bytestring, - containers, - directory, - hspec, - optparse-applicative, - text, - }: - mkDerivation { - pname = "read-ctags"; - version = "0.1.0.0"; - sha256 = "1w6f8p6v3sry42pg8zizfyagknfmpn47vzk3a2c2n2bv1ib0v1hf"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - bytestring - containers - directory - text - ]; - executableHaskellDepends = [ - base - bytestring - containers - directory - optparse-applicative - text - ]; - testHaskellDepends = [ - base - bytestring - containers - directory - hspec - text - ]; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - mainProgram = "read-ctags"; - broken = true; - } - ) { }; - "read-editor" = callPackage ( { mkDerivation, @@ -559396,82 +324264,6 @@ self: { } ) { }; - "read-io" = callPackage ( - { - mkDerivation, - base, - containers, - directory, - filepath, - hspec, - }: - mkDerivation { - pname = "read-io"; - version = "0.0.0.1"; - sha256 = "1ripb73cnr0zj6li5w5j975ja640frq955xsaf83pxc1ww3zngjw"; - libraryHaskellDepends = [ - base - containers - directory - filepath - ]; - testHaskellDepends = [ - base - containers - directory - filepath - hspec - ]; - description = "Read IO library"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "readability" = callPackage ( - { - mkDerivation, - aeson, - base, - bytestring, - containers, - html-conduit, - http-conduit, - optparse-applicative, - text, - xml-conduit, - }: - mkDerivation { - pname = "readability"; - version = "0.1.0.0"; - sha256 = "1px8fjwglcrh6vp2j8jcbslc6izgaj8cnl0w7g997gps62jbqn34"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - bytestring - containers - html-conduit - text - xml-conduit - ]; - executableHaskellDepends = [ - aeson - base - http-conduit - optparse-applicative - text - xml-conduit - ]; - description = "Extracts text of main article from HTML document"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "readability"; - broken = true; - } - ) { }; - "readable" = callPackage ( { mkDerivation, @@ -559542,47 +324334,6 @@ self: { } ) { }; - "reader-soup" = callPackage ( - { - mkDerivation, - base, - katip, - lens, - mmorph, - monad-control, - mtl, - resourcet, - safe-exceptions, - transformers, - transformers-base, - unliftio-core, - vinyl, - }: - mkDerivation { - pname = "reader-soup"; - version = "0.1.0.1"; - sha256 = "0pqfgfv7ahmcclx29b2rs8n5da4qhbhp5fxmwqm2xycpw3hqpx9v"; - libraryHaskellDepends = [ - base - katip - lens - mmorph - monad-control - mtl - resourcet - safe-exceptions - transformers - transformers-base - unliftio-core - vinyl - ]; - description = "Vinyl-based reader-like monad composition"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "readline" = callPackage ( @@ -559653,29 +324404,6 @@ self: { } ) { }; - "readline-statevar" = callPackage ( - { - mkDerivation, - base, - readline, - StateVar, - }: - mkDerivation { - pname = "readline-statevar"; - version = "1.0.1.0"; - sha256 = "1gfxs3wfdkkarxil2an5l58syrm2vajj0qpshzabzchni32yxic8"; - libraryHaskellDepends = [ - base - readline - StateVar - ]; - description = "Readline with variables (setX/getY) wrapped in state vars"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "readme-lhs" = callPackage ( { mkDerivation, @@ -559728,62 +324456,6 @@ self: { } ) { }; - "readpyc" = callPackage ( - { - mkDerivation, - base, - bliplib, - parseargs, - }: - mkDerivation { - pname = "readpyc"; - version = "0.2.1"; - sha256 = "1icb7w3hgfczrr48x48lwvln05yaw3c9bxwrrfxc92h3q73v1rpp"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - bliplib - parseargs - ]; - description = "Read and pretty print Python bytecode (.pyc) files."; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "readpyc"; - } - ) { }; - - "readshp" = callPackage ( - { - mkDerivation, - base, - binary, - bytestring, - data-binary-ieee754, - filepath, - monad-loops, - }: - mkDerivation { - pname = "readshp"; - version = "0.1.0.0"; - sha256 = "0dmwyrarm77s4ch7a2ickdx3mw25f7zdxjkxd3dd044icj78wkrm"; - revision = "1"; - editedCabalFile = "0mzx9s0hkpvbya56zq3xiy7mqkfx61vhjhjacqgklx6lxqx89yn8"; - libraryHaskellDepends = [ - base - binary - bytestring - data-binary-ieee754 - filepath - monad-loops - ]; - description = "Code for reading ESRI Shapefiles"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "real-day-end" = callPackage ( { mkDerivation, @@ -559852,27 +324524,6 @@ self: { } ) { }; - "really-simple-xml-parser" = callPackage ( - { - mkDerivation, - base, - parsec, - }: - mkDerivation { - pname = "really-simple-xml-parser"; - version = "0.4.0.0"; - sha256 = "1qmrfisnvm9a25a9ssg4r466yna69vzbwn7s7f4zql28cndg3syy"; - libraryHaskellDepends = [ - base - parsec - ]; - description = "A really simple XML parser"; - license = lib.licenses.publicDomain; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "realworldhaskell" = callPackage ( { mkDerivation, base }: mkDerivation { @@ -560098,88 +324749,6 @@ self: { } ) { }; - "reason-export" = callPackage ( - { - mkDerivation, - base, - bytestring, - containers, - Diff, - directory, - formatting, - hashable, - hspec, - hspec-core, - HUnit, - mtl, - QuickCheck, - quickcheck-instances, - text, - time, - wl-pprint-text, - }: - mkDerivation { - pname = "reason-export"; - version = "0.1.2.0"; - sha256 = "0mgzpkxm38r4ghi418cp5axksh9lz3l6d439h8987rsf5n5bcndy"; - libraryHaskellDepends = [ - base - bytestring - containers - directory - formatting - hashable - mtl - text - time - wl-pprint-text - ]; - testHaskellDepends = [ - base - bytestring - containers - Diff - hashable - hspec - hspec-core - HUnit - QuickCheck - quickcheck-instances - text - time - ]; - description = "Generate Reason types from Haskell"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "reasonable-lens" = callPackage ( - { - mkDerivation, - base, - mtl, - split, - template-haskell, - }: - mkDerivation { - pname = "reasonable-lens"; - version = "0.2.1.1"; - sha256 = "0ic239ikxqsk4qjnyraka3jn4pjmmsgwqyga6zmqlw7z1kpgaxam"; - libraryHaskellDepends = [ - base - mtl - split - template-haskell - ]; - description = "Lens implementation. It is more small but adequately."; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "reasonable-operational" = callPackage ( { mkDerivation, base }: mkDerivation { @@ -560426,66 +324995,6 @@ self: { } ) { }; - "record" = callPackage ( - { - mkDerivation, - base, - base-prelude, - basic-lens, - template-haskell, - transformers, - }: - mkDerivation { - pname = "record"; - version = "0.4.2"; - sha256 = "0xkj2sgjkfkgj3a0ak6xhlpd3yyxqkxlzc3pyps2p8ywgyf0ib5y"; - libraryHaskellDepends = [ - base - base-prelude - basic-lens - template-haskell - transformers - ]; - description = "Anonymous records"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "record-aeson" = callPackage ( - { - mkDerivation, - aeson, - base, - base-prelude, - hspec, - record, - template-haskell, - }: - mkDerivation { - pname = "record-aeson"; - version = "0.1.1"; - sha256 = "0yf6cxvq32f2x9r7731v05rqlqzfp1ivrwv332sj9k2m3cqh2h7a"; - libraryHaskellDepends = [ - aeson - base - base-prelude - record - template-haskell - ]; - testHaskellDepends = [ - aeson - base-prelude - hspec - record - ]; - description = "Instances of \"aeson\" classes for the \"record\" types"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "record-dot-preprocessor" = callPackage ( { mkDerivation, @@ -560524,91 +325033,6 @@ self: { } ) { }; - "record-encode" = callPackage ( - { - mkDerivation, - base, - doctest, - generics-sop, - hspec, - QuickCheck, - vector, - }: - mkDerivation { - pname = "record-encode"; - version = "0.2.3"; - sha256 = "0xljdy3wfyirs3zwc1ij19w9520bc1n56cdigngfb9hs497d6jh3"; - libraryHaskellDepends = [ - base - generics-sop - vector - ]; - testHaskellDepends = [ - base - doctest - generics-sop - hspec - QuickCheck - vector - ]; - description = "Generic encoding of records"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "record-gl" = callPackage ( - { - mkDerivation, - base, - base-prelude, - containers, - GLUtil, - HUnit, - linear, - OpenGL, - record, - tagged, - template-haskell, - test-framework, - test-framework-hunit, - vector, - }: - mkDerivation { - pname = "record-gl"; - version = "0.1.0.0"; - sha256 = "0z0qwnzayarwlamig9g4zngq3mcddhl3pgalir811lxf3a3g1dqq"; - revision = "1"; - editedCabalFile = "11bx4xzzjiwjwwxfxs5wnh0jn9ylsbcxmdqvg9qwx41627wif83d"; - libraryHaskellDepends = [ - base - base-prelude - containers - GLUtil - linear - OpenGL - record - tagged - template-haskell - vector - ]; - testHaskellDepends = [ - base - HUnit - linear - OpenGL - record - tagged - test-framework - test-framework-hunit - ]; - description = "Utilities for working with OpenGL's GLSL shading language and Nikita Volkov's \"Record\"s"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "record-hasfield" = callPackage ( { mkDerivation, base }: mkDerivation { @@ -560662,148 +325086,6 @@ self: { } ) { }; - "record-preprocessor" = callPackage ( - { - mkDerivation, - base, - base-prelude, - basic-lens, - conversion, - conversion-text, - record, - record-syntax, - text, - }: - mkDerivation { - pname = "record-preprocessor"; - version = "0.1.1.1"; - sha256 = "0pp5rghxw2ggaynz30mwkrajsp6ckyz1y31hf1plr5hmm4flmjxh"; - isLibrary = true; - isExecutable = true; - executableHaskellDepends = [ - base - base-prelude - conversion - conversion-text - record-syntax - text - ]; - benchmarkHaskellDepends = [ - base-prelude - basic-lens - record - ]; - doHaddock = false; - description = "Compiler preprocessor introducing a syntactic extension for anonymous records"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - mainProgram = "record-preprocessor"; - } - ) { }; - - "record-syntax" = callPackage ( - { - mkDerivation, - base, - base-prelude, - conversion, - conversion-text, - directory, - doctest, - filepath, - haskell-src-exts, - hspec, - parsec, - record, - template-haskell, - text, - transformers, - }: - mkDerivation { - pname = "record-syntax"; - version = "0.1.1"; - sha256 = "15zybv2y26ym4y60q57kgmlz05xkv4kwq5jn39gzc57yp65qfx55"; - libraryHaskellDepends = [ - base - base-prelude - conversion - conversion-text - haskell-src-exts - parsec - record - template-haskell - text - transformers - ]; - testHaskellDepends = [ - base - base-prelude - directory - doctest - filepath - hspec - record - ]; - benchmarkHaskellDepends = [ - base-prelude - conversion - conversion-text - record - text - ]; - description = "A library for parsing and processing the Haskell syntax sprinkled with anonymous records"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "record-wrangler" = callPackage ( - { - mkDerivation, - base, - template-haskell, - }: - mkDerivation { - pname = "record-wrangler"; - version = "0.1.1.0"; - sha256 = "1lxbmb73k2ah663na2r7rgj6gxa6z971f6k8gcjbkbf095di1xlc"; - libraryHaskellDepends = [ - base - template-haskell - ]; - testHaskellDepends = [ base ]; - description = "Alter your records with ease"; - license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "records" = callPackage ( - { - mkDerivation, - base, - kinds, - type-functions, - }: - mkDerivation { - pname = "records"; - version = "0.1.1.6"; - sha256 = "1nzqqbqwgsr066ykmanyzmlv5nzdzpkkcla0lg8klyw6ck9ddk69"; - revision = "1"; - editedCabalFile = "01ydi3gzgr72z56i1rdq10g4xrfz2f9vz6vn03mp84r74k5zdgrv"; - libraryHaskellDepends = [ - base - kinds - type-functions - ]; - description = "A flexible record system"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "records-sop" = callPackage ( { mkDerivation, @@ -560837,40 +325119,6 @@ self: { } ) { }; - "records-th" = callPackage ( - { - mkDerivation, - aeson, - base, - data-default, - kinds, - records, - template-haskell, - text, - type-functions, - unordered-containers, - }: - mkDerivation { - pname = "records-th"; - version = "0.1.1.0"; - sha256 = "1m6v52kmh1clcgah07jjjxvsfpbp6z8lkdd78wap0v3mqiv8mdcg"; - libraryHaskellDepends = [ - aeson - base - data-default - kinds - records - template-haskell - text - type-functions - unordered-containers - ]; - description = "Template Haskell declarations for the records package"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "recover-rtti" = callPackage ( { mkDerivation, @@ -561071,72 +325319,6 @@ self: { } ) { }; - "recursion-schemes-ix" = callPackage ( - { - mkDerivation, - base, - containers, - hspec, - mtl, - QuickCheck, - singlethongs, - }: - mkDerivation { - pname = "recursion-schemes-ix"; - version = "0.1.0.0"; - sha256 = "1hg0ggba40n1455nd85wb6h2fr3hixf69a3d75a6g5dcahaqh39n"; - libraryHaskellDepends = [ - base - singlethongs - ]; - testHaskellDepends = [ - base - containers - hspec - mtl - QuickCheck - singlethongs - ]; - description = "Recursion schemes over indexed Functors"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "recursive-line-count" = callPackage ( - { - mkDerivation, - base, - bytestring, - containers, - filepath, - gtk, - mtl, - process, - }: - mkDerivation { - pname = "recursive-line-count"; - version = "0.1"; - sha256 = "0iyacn4gb7v6ly0bdci34mrjkjc29mbplqc6bhfv8ksz74aaafyn"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - bytestring - containers - filepath - gtk - mtl - process - ]; - description = "Count lines in files and display them hierarchically"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "recursive-line-count"; - broken = true; - } - ) { }; - "recursive-zipper" = callPackage ( { mkDerivation, @@ -561168,35 +325350,6 @@ self: { } ) { }; - "recursors" = callPackage ( - { - mkDerivation, - base, - hspec, - QuickCheck, - template-haskell, - }: - mkDerivation { - pname = "recursors"; - version = "0.1.0.0"; - sha256 = "1k23whbj4yh10sdv58b69hjsx1ysdps78ny2ylgbl1nbp40xy60b"; - libraryHaskellDepends = [ - base - template-haskell - ]; - testHaskellDepends = [ - base - hspec - QuickCheck - template-haskell - ]; - description = "Auto-generate final encodings and their isomorphisms using Template Haskell"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "recv" = callPackage ( { mkDerivation, @@ -561277,50 +325430,6 @@ self: { } ) { }; - "redHandlers" = callPackage ( - { - mkDerivation, - array, - base, - bytestring, - cgi, - containers, - haskell98, - MaybeT, - mtl, - network, - old-time, - parsec, - stm, - unix, - xhtml, - }: - mkDerivation { - pname = "redHandlers"; - version = "0.1"; - sha256 = "1llb81aqr0jlsajsmy20br5vqd6ap54bk17ipg8z3gmzd0wcf9c9"; - libraryHaskellDepends = [ - array - base - bytestring - cgi - containers - haskell98 - MaybeT - mtl - network - old-time - parsec - stm - unix - xhtml - ]; - description = "Monadic HTTP request handlers combinators to build a standalone web apps"; - license = "unknown"; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "redact" = callPackage ( { mkDerivation, @@ -561454,6 +325563,7 @@ self: { description = "Library for interfacing with Reddit's API"; license = lib.licenses.bsd2; hydraPlatforms = lib.platforms.none; + broken = true; } ) { }; @@ -561568,31 +325678,6 @@ self: { } ) { }; - "redis-hs" = callPackage ( - { - mkDerivation, - base, - bytestring, - network, - utf8-string, - }: - mkDerivation { - pname = "redis-hs"; - version = "0.1.2"; - sha256 = "1irayxwkdksc9v70g7il7zl7pmkrim2admcgjwcm9inyca7618wg"; - libraryHaskellDepends = [ - base - bytestring - network - utf8-string - ]; - description = "A simple Redis library for Haskell"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "redis-io" = callPackage ( { mkDerivation, @@ -561671,6 +325756,7 @@ self: { description = "Yet another redis client"; license = lib.licenses.mpl20; hydraPlatforms = lib.platforms.none; + broken = true; } ) { }; @@ -561773,65 +325859,6 @@ self: { } ) { }; - "redis-simple" = callPackage ( - { - mkDerivation, - base, - binary, - bytestring, - redis, - }: - mkDerivation { - pname = "redis-simple"; - version = "0.1.1"; - sha256 = "0kzs5lc2y40dzx57k0klz0k9zijhi7mh0awi6rzhzd3h5z1gdr43"; - libraryHaskellDepends = [ - base - binary - bytestring - redis - ]; - description = "Simple redis bindings for Haskell"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "rediscaching-haxl" = callPackage ( - { - mkDerivation, - aeson, - async, - base, - bytestring, - hashable, - haxl, - hedis, - network, - time, - }: - mkDerivation { - pname = "rediscaching-haxl"; - version = "0.1.0.0"; - sha256 = "0mgmrcw1p9q4njrmjal9ckxkli8wb2g12njqaj6xlkin2xz5ym8j"; - libraryHaskellDepends = [ - aeson - async - base - bytestring - hashable - haxl - hedis - network - time - ]; - description = "Combine redis caching and haxl"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "redland" = callPackage ( @@ -561895,71 +325922,6 @@ self: { } ) { }; - "reduce-equations" = callPackage ( - { - mkDerivation, - aeson, - base, - bytestring, - containers, - directory, - haskell-src-exts, - MissingH, - mtl, - QuickCheck, - quickspec, - stringable, - tasty, - tasty-quickcheck, - text, - transformers, - }: - mkDerivation { - pname = "reduce-equations"; - version = "0.1.1.0"; - sha256 = "1bapmdl5ns1hg8iv9svw461ip04nawbgr92mdp4l5l40l5bmfnr5"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson - base - bytestring - containers - haskell-src-exts - mtl - QuickCheck - quickspec - stringable - text - transformers - ]; - executableHaskellDepends = [ - aeson - base - ]; - testHaskellDepends = [ - aeson - base - bytestring - containers - directory - haskell-src-exts - MissingH - QuickCheck - quickspec - stringable - tasty - tasty-quickcheck - text - ]; - description = "Simplify a set of equations by removing redundancies"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "reduce-equations"; - broken = true; - } - ) { }; - "reducers" = callPackage ( { mkDerivation, @@ -561997,104 +325959,6 @@ self: { } ) { }; - "reedsolomon" = callPackage ( - { - mkDerivation, - base, - bytestring, - criterion, - exceptions, - gitrev, - loop, - mtl, - primitive, - profunctors, - QuickCheck, - random, - tasty, - tasty-ant-xml, - tasty-hunit, - tasty-quickcheck, - vector, - }: - mkDerivation { - pname = "reedsolomon"; - version = "0.0.4.3"; - sha256 = "0ax4l2shpwmss3pwc8pxz17m59gf8jzsh80ahs2fc90mxqjcsjmp"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - bytestring - exceptions - gitrev - loop - mtl - primitive - profunctors - vector - ]; - testHaskellDepends = [ - base - bytestring - exceptions - loop - mtl - primitive - profunctors - QuickCheck - random - tasty - tasty-ant-xml - tasty-hunit - tasty-quickcheck - vector - ]; - benchmarkHaskellDepends = [ - base - criterion - exceptions - loop - mtl - primitive - vector - ]; - description = "Reed-Solomon Erasure Coding in Haskell"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "reenact" = callPackage ( - { - mkDerivation, - base, - hamid, - HCodecs, - stm, - time, - vector-space, - }: - mkDerivation { - pname = "reenact"; - version = "0.9"; - sha256 = "19xw0w15ja8h5wxpz4x65vzvc7qxpn3k33p82pa2g3w9l9hlj2xw"; - libraryHaskellDepends = [ - base - hamid - HCodecs - stm - time - vector-space - ]; - description = "A reimplementation of the Reactive library"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "reexport-crypto-random" = callPackage ( { mkDerivation, @@ -562113,60 +325977,6 @@ self: { } ) { }; - "ref" = callPackage ( - { - mkDerivation, - base, - ghc-prim, - }: - mkDerivation { - pname = "ref"; - version = "0.1.1.2"; - sha256 = "109illgbz4g4a6qavgc4wvyxfjvjhyrxa2gpps67avmr1v90gihr"; - libraryHaskellDepends = [ - base - ghc-prim - ]; - description = "Generic Mutable Ref Abstraction Layer"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "ref-extras" = callPackage ( - { - mkDerivation, - base, - hashable, - little-rio, - microlens, - stm, - unliftio, - unliftio-core, - unordered-containers, - }: - mkDerivation { - pname = "ref-extras"; - version = "0.2.0"; - sha256 = "17f5cjzbhx4ay7qyd5p667hmzg8ps9jnkass5mi423lzly9nyr09"; - libraryHaskellDepends = [ - base - hashable - little-rio - microlens - stm - unliftio - unliftio-core - unordered-containers - ]; - description = "Extra stuff for mutable references"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "ref-fd" = callPackage ( { mkDerivation, @@ -562188,31 +325998,6 @@ self: { } ) { }; - "ref-mtl" = callPackage ( - { - mkDerivation, - base, - mtl, - stm, - transformers, - }: - mkDerivation { - pname = "ref-mtl"; - version = "0.3"; - sha256 = "0wijkaf3qyp6qjz0cwyhb89z5jrcz792hx8m9a43xrp7v2f84080"; - libraryHaskellDepends = [ - base - mtl - stm - transformers - ]; - description = "A type class for monads with references compatible with the mtl2 library"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "ref-tf" = callPackage ( { mkDerivation, @@ -562246,49 +326031,6 @@ self: { } ) { }; - "refcount" = callPackage ( - { - mkDerivation, - base, - Cabal, - hashable, - HUnit, - QuickCheck, - test-framework, - test-framework-hunit, - test-framework-quickcheck2, - test-framework-th, - unordered-containers, - }: - mkDerivation { - pname = "refcount"; - version = "0.1.2"; - sha256 = "1h1gprc4c784pf3wi2ri2hxk7pbh9y8bqc0xcryjcyjk3519ig16"; - libraryHaskellDepends = [ - base - hashable - QuickCheck - unordered-containers - ]; - testHaskellDepends = [ - base - Cabal - hashable - HUnit - QuickCheck - test-framework - test-framework-hunit - test-framework-quickcheck2 - test-framework-th - unordered-containers - ]; - description = "Container with element counts"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "reference" = callPackage ( { mkDerivation, @@ -562335,98 +326077,6 @@ self: { } ) { }; - "references" = callPackage ( - { - mkDerivation, - array, - base, - containers, - directory, - either, - filepath, - HUnit, - instance-control, - lens, - mtl, - template-haskell, - text, - transformers, - uniplate, - }: - mkDerivation { - pname = "references"; - version = "0.3.3.1"; - sha256 = "03n18skl989ksssi2lv50bns1iw9qixacabs9qvli4b36rnn01xw"; - libraryHaskellDepends = [ - array - base - containers - directory - either - filepath - instance-control - mtl - template-haskell - text - transformers - uniplate - ]; - testHaskellDepends = [ - array - base - containers - directory - either - filepath - HUnit - instance-control - lens - mtl - template-haskell - text - transformers - uniplate - ]; - description = "Selectors for reading and updating data"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "refh" = callPackage ( - { - mkDerivation, - base, - clippard, - cmdargs, - directory, - filepath, - haskheap, - network, - }: - mkDerivation { - pname = "refh"; - version = "0.1.1"; - sha256 = "1fhvn4cjfq92hi422mcdq4xwb405cc4pvlax0bqvyw3bg9ngqz9m"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - clippard - cmdargs - directory - filepath - haskheap - network - ]; - description = "A command-line tool for pasting to https://www.refheap.com"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - mainProgram = "refh"; - } - ) { }; - "refined" = callPackage ( { mkDerivation, @@ -562508,31 +326158,6 @@ self: { } ) { }; - "refined-http-api-data" = callPackage ( - { - mkDerivation, - base, - http-api-data, - refined, - text, - }: - mkDerivation { - pname = "refined-http-api-data"; - version = "0.1.0.0"; - sha256 = "0064cz00lp023kbn5vqpcsgjzsxd5a9s5fl1klsq6jlk1cmi5c0m"; - libraryHaskellDepends = [ - base - http-api-data - refined - text - ]; - description = "http-api-data instances for refined types"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "refined-with" = callPackage ( { mkDerivation, @@ -562674,35 +326299,6 @@ self: { } ) { }; - "reflection-extras" = callPackage ( - { - mkDerivation, - aeson, - base, - constraints, - lens, - reflection, - tagged, - }: - mkDerivation { - pname = "reflection-extras"; - version = "0.1.1.0"; - sha256 = "1cnqd8hrcvjvcdrida0q3dxkkmp36qsfqhv0a5zr94b1y5zfrj4k"; - libraryHaskellDepends = [ - aeson - base - constraints - lens - reflection - tagged - ]; - description = "Utilities for the reflection package"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "reflection-without-remorse" = callPackage ( { mkDerivation, @@ -562862,38 +326458,6 @@ self: { } ) { }; - "reflex-animation" = callPackage ( - { - mkDerivation, - base, - bifunctors, - containers, - profunctors, - reflex, - reflex-transformers, - semigroups, - vector-space, - }: - mkDerivation { - pname = "reflex-animation"; - version = "0.1.5"; - sha256 = "01fxfqvmkj7igqnda4zqhpk3fnc71gvffk2s9pymdhx4h6iv5l1s"; - libraryHaskellDepends = [ - base - bifunctors - containers - profunctors - reflex - reflex-transformers - semigroups - vector-space - ]; - description = "Continuous animations support for reflex"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "reflex-backend-socket" = callPackage ( { mkDerivation, @@ -562944,94 +326508,6 @@ self: { } ) { }; - "reflex-backend-wai" = callPackage ( - { - mkDerivation, - base, - containers, - http-types, - mtl, - reflex, - reflex-basic-host, - stm, - wai, - warp, - }: - mkDerivation { - pname = "reflex-backend-wai"; - version = "0.1.0.0"; - sha256 = "1x8lagl5p7jgrzivar35l4gcsfisskvh4dnxfiqwd5vd9ghibpia"; - revision = "1"; - editedCabalFile = "199p3v0gmp5yah30jb6z9s7cv3w8cc356wh7f6nagkg76kg25p43"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - containers - mtl - reflex - reflex-basic-host - stm - wai - warp - ]; - executableHaskellDepends = [ - base - http-types - reflex - wai - ]; - description = "Reflex interface to `wai`"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "example"; - } - ) { }; - - "reflex-basic-host" = callPackage ( - { - mkDerivation, - base, - dependent-sum, - lens, - mtl, - primitive, - ref-tf, - reflex, - stm, - witherable, - }: - mkDerivation { - pname = "reflex-basic-host"; - version = "0.2.0.1"; - sha256 = "1bax3rcrwi3447wd7apramw0f248ddksl8lrdjgrph26bbh8vc1i"; - revision = "2"; - editedCabalFile = "0nqr2nxrq1xplcapr6yy8fx4x85qiqz609f7rzz656zah7cfm8dl"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - dependent-sum - lens - mtl - primitive - ref-tf - reflex - stm - ]; - executableHaskellDepends = [ - base - lens - reflex - witherable - ]; - description = "A basic Reflex host for backend work"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "reflex-dom" = callPackage ( { mkDerivation, @@ -563135,61 +326611,6 @@ self: { } ) { }; - "reflex-dom-contrib" = callPackage ( - { - mkDerivation, - aeson, - base, - bifunctors, - bytestring, - containers, - data-default, - ghcjs-dom, - http-types, - lens, - mtl, - random, - readable, - reflex, - reflex-dom, - safe, - string-conv, - text, - time, - transformers, - }: - mkDerivation { - pname = "reflex-dom-contrib"; - version = "0.4.1"; - sha256 = "1m9yaxr92ai0wvigsh76l1v8wbqx9lhzqw6dsxd18p2vkgg7bh70"; - libraryHaskellDepends = [ - aeson - base - bifunctors - bytestring - containers - data-default - ghcjs-dom - http-types - lens - mtl - random - readable - reflex - reflex-dom - safe - string-conv - text - time - transformers - ]; - description = "A playground for experimenting with infrastructure and common code for reflex applications"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "reflex-dom-core" = callPackage ( { mkDerivation, @@ -563344,76 +326765,6 @@ self: { } ) { chrome-test-utils = null; }; - "reflex-dom-fragment-shader-canvas" = callPackage ( - { - mkDerivation, - base, - containers, - ghcjs-dom, - jsaddle, - lens, - reflex-dom, - text, - transformers, - }: - mkDerivation { - pname = "reflex-dom-fragment-shader-canvas"; - version = "0.2"; - sha256 = "08ayk3y22mmgrpd03128h60wmg698d0c1cxack9akm636hp83y7z"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - containers - ghcjs-dom - jsaddle - lens - reflex-dom - text - transformers - ]; - executableHaskellDepends = [ - base - reflex-dom - text - ]; - description = "A reflex-dom widget to draw on a canvas with a fragment shader program"; - license = lib.licenses.mit; - badPlatforms = [ "aarch64-linux" ] ++ lib.platforms.darwin; - hydraPlatforms = lib.platforms.none; - mainProgram = "demo"; - broken = true; - } - ) { }; - - "reflex-dom-helpers" = callPackage ( - { - mkDerivation, - base, - reflex, - reflex-dom-core, - template-haskell, - text, - }: - mkDerivation { - pname = "reflex-dom-helpers"; - version = "0.2.0.1"; - sha256 = "1c0sa8i4rln7whmivmwlmivrj8zc45v25zsi1qwqx5d00mjbmkyk"; - libraryHaskellDepends = [ - base - reflex - reflex-dom-core - template-haskell - text - ]; - testHaskellDepends = [ base ]; - description = "Html tag helpers for reflex-dom"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "reflex-dom-ionic" = callPackage ( { mkDerivation, @@ -563529,37 +326880,6 @@ self: { } ) { }; - "reflex-dom-svg" = callPackage ( - { - mkDerivation, - base, - containers, - lens, - reflex, - reflex-dom-core, - safe, - text, - }: - mkDerivation { - pname = "reflex-dom-svg"; - version = "0.3.2.0"; - sha256 = "0xmhccim3n6qk1dj4qyf6rhaygrpb2wzhl00rwm74cqw7ljrf5y9"; - libraryHaskellDepends = [ - base - containers - lens - reflex - reflex-dom-core - safe - text - ]; - description = "Reflex functions for SVG elements"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "reflex-dom-th" = callPackage ( { mkDerivation, @@ -563569,108 +326889,47 @@ self: { containers, filepath, gettext-th, - hspec, - megaparsec, - mtl, - reflex-dom-core, - stm, - tasty, - tasty-golden, - tasty-hspec, - template-haskell, - text, - th-lift-instances, - }: - mkDerivation { - pname = "reflex-dom-th"; - version = "0.3.4"; - sha256 = "1di5sf4larka8k8acpp68wdp6l09sz8sr1syqwp9caawgzwgdy9i"; - libraryHaskellDepends = [ - array - base - containers - gettext-th - megaparsec - mtl - reflex-dom-core - template-haskell - text - th-lift-instances - ]; - testHaskellDepends = [ - base - bytestring - filepath - hspec - megaparsec - stm - tasty - tasty-golden - tasty-hspec - ]; - description = "reflex-dom-th transpiles HTML templates to haskell code for reflex-dom"; - license = lib.licenses.bsd3; - } - ) { }; - - "reflex-dynamic-containers" = callPackage ( - { - mkDerivation, - base, - binary, - containers, - deepseq, - dependent-map, - dependent-sum, - hashable, - hspec, - hspec-contrib, - HUnit, - ilist, - reflex, - reflex-test-host, - relude, - these, + hspec, + megaparsec, + mtl, + reflex-dom-core, + stm, + tasty, + tasty-golden, + tasty-hspec, + template-haskell, + text, + th-lift-instances, }: mkDerivation { - pname = "reflex-dynamic-containers"; - version = "0.1.0.0"; - sha256 = "161klhbz4528rljv4fhkzf4yad3xxiflignbc46il1j9lw99bh0k"; + pname = "reflex-dom-th"; + version = "0.3.4"; + sha256 = "1di5sf4larka8k8acpp68wdp6l09sz8sr1syqwp9caawgzwgdy9i"; libraryHaskellDepends = [ + array base - binary containers - deepseq - dependent-map - dependent-sum - hashable - ilist - reflex - reflex-test-host - relude - these + gettext-th + megaparsec + mtl + reflex-dom-core + template-haskell + text + th-lift-instances ]; testHaskellDepends = [ base - binary - containers - deepseq - dependent-map - dependent-sum - hashable + bytestring + filepath hspec - hspec-contrib - HUnit - ilist - reflex - reflex-test-host - relude - these + megaparsec + stm + tasty + tasty-golden + tasty-hspec ]; - description = "various dynamic containers for Reflex"; + description = "reflex-dom-th transpiles HTML templates to haskell code for reflex-dom"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; } ) { }; @@ -563952,106 +327211,6 @@ self: { } ) { }; - "reflex-gloss-scene" = callPackage ( - { - mkDerivation, - base, - containers, - dependent-sum, - gloss, - gloss-rendering, - lens, - linear, - MonadRandom, - mtl, - profunctors, - random, - reflex, - reflex-animation, - reflex-gloss, - reflex-transformers, - semigroups, - transformers, - tuple, - vector-space, - }: - mkDerivation { - pname = "reflex-gloss-scene"; - version = "0.1.2"; - sha256 = "1m94li6j7kv3g9vibx31zj49qbx2h3axpnm4a0y46cysrd13mkrn"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - containers - dependent-sum - gloss - gloss-rendering - lens - MonadRandom - mtl - profunctors - random - reflex - reflex-animation - reflex-gloss - reflex-transformers - semigroups - transformers - tuple - vector-space - ]; - executableHaskellDepends = [ - base - containers - gloss - lens - linear - mtl - reflex - reflex-animation - reflex-transformers - transformers - ]; - description = "A simple scene-graph using reflex and gloss"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "reflex-jsx" = callPackage ( - { - mkDerivation, - base, - containers, - haskell-src-meta, - parsec, - reflex, - reflex-dom, - template-haskell, - text, - }: - mkDerivation { - pname = "reflex-jsx"; - version = "0.1.0.0"; - sha256 = "1r7xk0gd7caligpmlqb16sv2wrn2z021x307zdk5ksq066x02s50"; - libraryHaskellDepends = [ - base - containers - haskell-src-meta - parsec - reflex - reflex-dom - template-haskell - text - ]; - description = "Use jsx-like syntax in Reflex"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "reflex-libtelnet" = callPackage ( { mkDerivation, @@ -564171,45 +327330,6 @@ self: { } ) { }; - "reflex-orphans" = callPackage ( - { - mkDerivation, - base, - deepseq, - dependent-map, - mtl, - ref-tf, - reflex, - tasty, - tasty-hunit, - these, - }: - mkDerivation { - pname = "reflex-orphans"; - version = "0.1.0.2"; - sha256 = "0gx3m349k79nj721x44vwlh850fibzq0mm61mli2czy9n3gqz3db"; - libraryHaskellDepends = [ - base - reflex - these - ]; - testHaskellDepends = [ - base - deepseq - dependent-map - mtl - ref-tf - reflex - tasty - tasty-hunit - ]; - description = "Useful missing instances for Reflex"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "reflex-potatoes" = callPackage ( { mkDerivation, @@ -564425,39 +327545,6 @@ self: { } ) { }; - "reflex-transformers" = callPackage ( - { - mkDerivation, - base, - containers, - lens, - mtl, - reflex, - semigroups, - stateWriter, - transformers, - }: - mkDerivation { - pname = "reflex-transformers"; - version = "0.2.1"; - sha256 = "0wmxrkl24wwpym8y7izknrz3qrldprrr2mqawwvdpj0z4dji746z"; - libraryHaskellDepends = [ - base - containers - lens - mtl - reflex - semigroups - stateWriter - transformers - ]; - description = "Collections and switchable Monad transformers for Reflex"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "reflex-vty" = callPackage ( { mkDerivation, @@ -564590,33 +327677,6 @@ self: { } ) { }; - "reform-hamlet" = callPackage ( - { - mkDerivation, - base, - blaze-markup, - reform, - shakespeare, - text, - }: - mkDerivation { - pname = "reform-hamlet"; - version = "0.0.5.3"; - sha256 = "0rilrrrm681ndgfszv6yxkmfiq8r4gmqd507m0cc3vn3kww2j9si"; - libraryHaskellDepends = [ - base - blaze-markup - reform - shakespeare - text - ]; - description = "Add support for using Hamlet with Reform"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "reform-happstack" = callPackage ( { mkDerivation, @@ -564649,182 +327709,6 @@ self: { } ) { }; - "reform-hsp" = callPackage ( - { - mkDerivation, - base, - hsp, - hsx2hs, - reform, - text, - }: - mkDerivation { - pname = "reform-hsp"; - version = "0.2.7.2"; - sha256 = "1vjbj41yl158h59wcx190jb4s627bhrhcbp21ykn93n4j454kfns"; - libraryHaskellDepends = [ - base - hsp - hsx2hs - reform - text - ]; - description = "Add support for using HSP with Reform"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "reform-lucid" = callPackage ( - { - mkDerivation, - base, - lucid, - path-pieces, - reform, - text, - }: - mkDerivation { - pname = "reform-lucid"; - version = "0.1.0.0"; - sha256 = "1a3jfk0i87vqwxxlspzy44lf2i3bxxxy20pnbysczzf8i113y9zi"; - libraryHaskellDepends = [ - base - lucid - path-pieces - reform - text - ]; - description = "Add support for using lucid with Reform"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "reformat" = callPackage ( - { - mkDerivation, - base, - parsec, - }: - mkDerivation { - pname = "reformat"; - version = "0.1.0.1"; - sha256 = "1cvffbx2vhv18k4p95p0ddcxzyn8f10hg2bxa2da60fy9zkjg3am"; - libraryHaskellDepends = [ - base - parsec - ]; - description = "The parser and render to parsec and render the string"; - license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "refractor" = callPackage ( - { - mkDerivation, - base, - base-unicode-symbols, - category, - gauge, - hs-functors, - transformers, - }: - mkDerivation { - pname = "refractor"; - version = "0.0.1.0"; - sha256 = "1isc9d2dsfz7dkf45c8z7syypi8c6cvjmgx5xh732li23wx9qlnf"; - revision = "1"; - editedCabalFile = "1wrixl8fp6hzb0j0mpyz94813i7mqdnazcxk1cz9is1fl37f8zka"; - libraryHaskellDepends = [ - base - base-unicode-symbols - category - hs-functors - transformers - ]; - testHaskellDepends = [ - base - base-unicode-symbols - category - hs-functors - transformers - ]; - benchmarkHaskellDepends = [ - base - base-unicode-symbols - category - gauge - hs-functors - transformers - ]; - description = "See README for more info"; - license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "refresht" = callPackage ( - { - mkDerivation, - base, - data-default, - exceptions, - lens, - mtl, - }: - mkDerivation { - pname = "refresht"; - version = "0.1.1.0"; - sha256 = "0gv3ph1j7j9fgysldh0k6yirya6xhdlzlcwv85k18akdq13hnd87"; - revision = "2"; - editedCabalFile = "141phadslw4iy3fc60ny4qmgh6p6s53f4f81577s9ms5y4w45jhr"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - data-default - exceptions - lens - mtl - ]; - description = "Environment Monad with automatic resource refreshment"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "refty" = callPackage ( - { - mkDerivation, - aeson, - base, - containers, - text, - }: - mkDerivation { - pname = "refty"; - version = "0.2.0.0"; - sha256 = "1jg2kadp64m5jsxygc3kwdd4wghfl6fs26l019j6s1vgmvsspnyq"; - libraryHaskellDepends = [ - aeson - base - containers - text - ]; - testHaskellDepends = [ base ]; - description = "Formatted JSON generator for API server inspired by normalizr"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "refurb" = callPackage ( { mkDerivation, @@ -564920,83 +327804,6 @@ self: { } ) { }; - "reg-alloc" = callPackage ( - { mkDerivation, base }: - mkDerivation { - pname = "reg-alloc"; - version = "0.1.0.0"; - sha256 = "1lik9r2lp1r1zamk3f1ciyw5iwgpx018jhk43hmc4kjg4d5g8l0r"; - revision = "1"; - editedCabalFile = "1dzisg5cdb2jrcp6xmkzmgzd00phqhgf1iddlm2c10x49lbqsrld"; - libraryHaskellDepends = [ base ]; - description = "Register allocation API"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "reg-alloc-graph-color" = callPackage ( - { - mkDerivation, - base, - base-unicode-symbols, - containers, - criterion, - lenz, - lenz-mtl, - lenz-template, - logict, - Map, - microlens-mtl, - mtl, - peano, - smallcheck, - tasty, - tasty-smallcheck, - transformers, - util, - }: - mkDerivation { - pname = "reg-alloc-graph-color"; - version = "0.0.0.0"; - sha256 = "1gj9svzsnnasfca0hzpnfwkr2rh1hnzzmzd1vf51dad6c3qvmgj3"; - libraryHaskellDepends = [ - base - base-unicode-symbols - containers - lenz - lenz-mtl - lenz-template - Map - microlens-mtl - mtl - peano - transformers - util - ]; - testHaskellDepends = [ - base - base-unicode-symbols - containers - logict - smallcheck - tasty - tasty-smallcheck - transformers - util - ]; - benchmarkHaskellDepends = [ - base - criterion - ]; - doHaddock = false; - description = "Register allocation by graph colorization"; - license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "reg-alloc-types" = callPackage ( { mkDerivation, base }: mkDerivation { @@ -565208,75 +328015,6 @@ self: { } ) { }; - "regex-deriv" = callPackage ( - { - mkDerivation, - base, - bitset, - bytestring, - containers, - deepseq, - dequeue, - ghc-prim, - hashable, - hashtables, - mtl, - parallel, - parsec, - regex-base, - }: - mkDerivation { - pname = "regex-deriv"; - version = "0.0.5"; - sha256 = "0h40amf1w7bahrzrfzpzrx7vnq5sdbh9g2zrashrw0abhdw9is19"; - libraryHaskellDepends = [ - base - bitset - bytestring - containers - deepseq - dequeue - ghc-prim - hashable - hashtables - mtl - parallel - parsec - regex-base - ]; - description = "Replaces/Enhances Text.Regex. Implementing regular expression matching using Brzozowski's Deriviatives"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "regex-dfa" = callPackage ( - { - mkDerivation, - base, - mtl, - parsec, - regex-base, - }: - mkDerivation { - pname = "regex-dfa"; - version = "0.91"; - sha256 = "1f846d86wg7yha29qinchpi3r5gv9795f384pqahbyc13wfky7dp"; - revision = "1"; - editedCabalFile = "089gzj8yih2f4ijyk9c49zyq6cws68z2rnklhiww9f3nb75lg6a9"; - libraryHaskellDepends = [ - base - mtl - parsec - regex-base - ]; - description = "Replaces/Enhances Text.Regex"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "regex-do" = callPackage ( { mkDerivation, @@ -565456,113 +328194,6 @@ self: { } ) { }; - "regex-generator" = callPackage ( - { - mkDerivation, - attoparsec, - base, - bytestring, - containers, - exceptions, - hspec, - HUnit, - random, - regex-pcre, - }: - mkDerivation { - pname = "regex-generator"; - version = "0.1.0.3"; - sha256 = "0b8mgjnmdmiiliwnvq2qbn5af427swvzawa3az5w1xab8xszc9nl"; - libraryHaskellDepends = [ - attoparsec - base - bytestring - containers - exceptions - random - ]; - testHaskellDepends = [ - base - bytestring - hspec - HUnit - random - regex-pcre - ]; - description = "Generate a random string from a PCRE"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "regex-genex" = callPackage ( - { - mkDerivation, - base, - containers, - logict, - mtl, - regex-tdfa, - sbv, - stream-monad, - text, - }: - mkDerivation { - pname = "regex-genex"; - version = "0.7.0"; - sha256 = "1k74anf6d8h0i8xdgv3q4l80p74yjia8vlw2bp4zzamgzn5h5m3h"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - containers - logict - mtl - regex-tdfa - sbv - stream-monad - text - ]; - executableHaskellDepends = [ - base - containers - mtl - regex-tdfa - sbv - ]; - description = "From a regex, generate all possible strings it can match"; - license = "unknown"; - hydraPlatforms = lib.platforms.none; - mainProgram = "genex"; - } - ) { }; - - "regex-parsec" = callPackage ( - { - mkDerivation, - base, - parsec, - regex-base, - }: - mkDerivation { - pname = "regex-parsec"; - version = "0.90"; - sha256 = "0zf5cr10mxlxxd8fp4q4ix6ibxc5xx3ml3k043kx28f9vfdh2xnx"; - revision = "1"; - editedCabalFile = "19y0kgmqpcz4k0l3cfjbxirq844zqm71gaz7117pm399x8bz1df7"; - libraryHaskellDepends = [ - base - parsec - regex-base - ]; - description = "Replaces/Enhances Text.Regex"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "regex-pcre" = callPackage ( { mkDerivation, @@ -565619,36 +328250,6 @@ self: { } ) { }; - "regex-pcre-text" = callPackage ( - { - mkDerivation, - array, - base, - bytestring, - regex-base, - regex-pcre-builtin, - regex-tdfa-text, - text, - }: - mkDerivation { - pname = "regex-pcre-text"; - version = "0.94.0.1"; - sha256 = "1gg9v3q05j2wdp93iragg7y5414ydz0zmkm0xyrcz98dn3bix68p"; - libraryHaskellDepends = [ - array - base - bytestring - regex-base - regex-pcre-builtin - regex-tdfa-text - text - ]; - description = "Text-based PCRE API for regex-base"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "regex-pcre2" = callPackage ( { mkDerivation, @@ -565687,42 +328288,6 @@ self: { } ) { inherit (pkgs) pcre2; }; - "regex-pderiv" = callPackage ( - { - mkDerivation, - base, - bitset, - bytestring, - containers, - deepseq, - ghc-prim, - mtl, - parallel, - parsec, - regex-base, - }: - mkDerivation { - pname = "regex-pderiv"; - version = "0.2.0"; - sha256 = "1fjbryj97ilclc947lhfr4kgnaynk0jhh6rhm81j58ybdl1wfbg4"; - libraryHaskellDepends = [ - base - bitset - bytestring - containers - deepseq - ghc-prim - mtl - parallel - parsec - regex-base - ]; - description = "Replaces/Enhances Text.Regex. Implementing regular expression matching using Antimirov's partial derivatives."; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "regex-posix" = callPackage ( { mkDerivation, @@ -565760,41 +328325,6 @@ self: { } ) { }; - "regex-posix-unittest" = callPackage ( - { - mkDerivation, - array, - base, - bytestring, - containers, - mtl, - regex-base, - regex-posix, - }: - mkDerivation { - pname = "regex-posix-unittest"; - version = "1.1"; - sha256 = "0kcxsdn5lgmpfrkpkygr54jrnjqd93b12shb00n6j00rg7p755vx"; - isLibrary = false; - isExecutable = true; - enableSeparateDataOutput = true; - executableHaskellDepends = [ - array - base - bytestring - containers - mtl - regex-base - regex-posix - ]; - description = "Unit tests for the plaform's Posix regex library"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "regex-posix-unittest"; - broken = true; - } - ) { }; - "regex-rure" = callPackage ( { mkDerivation, @@ -565875,60 +328405,6 @@ self: { } ) { }; - "regex-tdfa-pipes" = callPackage ( - { - mkDerivation, - array, - base, - lens, - monads-tf, - pipes, - regex-base, - regex-tdfa, - }: - mkDerivation { - pname = "regex-tdfa-pipes"; - version = "0.1.0.0"; - sha256 = "161h3pmi0z6c2zc3ac5i7p8wjvk4f5m977lmpws90iza62v6j4r2"; - libraryHaskellDepends = [ - array - base - lens - monads-tf - pipes - regex-base - regex-tdfa - ]; - description = "Parse with regular expressions on Producers"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "regex-tdfa-quasiquoter" = callPackage ( - { - mkDerivation, - base, - regex-tdfa, - template-haskell, - }: - mkDerivation { - pname = "regex-tdfa-quasiquoter"; - version = "0.2.1.0"; - sha256 = "1l0yk2m2k4ybjx3pidcn2xpij9cnyi76ar74llf09vwv764mh36f"; - libraryHaskellDepends = [ - base - regex-tdfa - template-haskell - ]; - description = "Quasi-quoter for TDFA (extended POSIX) regular expressions"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "regex-tdfa-rc" = callPackage ( { mkDerivation, @@ -565964,35 +328440,6 @@ self: { } ) { }; - "regex-tdfa-text" = callPackage ( - { - mkDerivation, - array, - base, - regex-base, - regex-tdfa, - text, - }: - mkDerivation { - pname = "regex-tdfa-text"; - version = "1.0.0.3"; - sha256 = "0090g6lgbdm9lywpqm2d3724nnnh24nx3vnlqr96qc2w486pmmrq"; - revision = "1"; - editedCabalFile = "00swglzmdw30g4bn47z6j71all0djjb2hjm7bkfl7pza4wv14wpv"; - libraryHaskellDepends = [ - array - base - regex-base - regex-tdfa - text - ]; - description = "Text interface for regex-tdfa"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "regex-tdfa-unittest" = callPackage ( { mkDerivation, @@ -566030,76 +328477,6 @@ self: { } ) { }; - "regex-tdfa-utf8" = callPackage ( - { - mkDerivation, - array, - base, - bytestring, - regex-base, - regex-tdfa, - utf8-string, - }: - mkDerivation { - pname = "regex-tdfa-utf8"; - version = "1.0"; - sha256 = "0i5di03v9dsvvhz8mdfx5qba8zcpim0fpx1cjg9gvz4gh0yhqf4k"; - revision = "1"; - editedCabalFile = "0z4rlnmi1hdiljfh46ri8hvcnzfvq6akfm1fajnl66cgwa0vis41"; - libraryHaskellDepends = [ - array - base - bytestring - regex-base - regex-tdfa - utf8-string - ]; - description = "This combines regex-tdfa with utf8-string to allow searching over UTF8 encoded lazy bytestrings"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "regex-tre" = callPackage ( - { - mkDerivation, - base, - regex-base, - tre, - }: - mkDerivation { - pname = "regex-tre"; - version = "0.91"; - sha256 = "1b7x0y8q1fvipnzh06by48f8l9l5ypm6yblpl35fzf641z3m9b7j"; - revision = "1"; - editedCabalFile = "1xxxn1i6pgmba4p15hjw8achaiy4lfbib9gl0xz9z0jz9fmvfdab"; - libraryHaskellDepends = [ - base - regex-base - ]; - librarySystemDepends = [ tre ]; - description = "Replaces/Enhances Text.Regex"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { inherit (pkgs) tre; }; - - "regex-type" = callPackage ( - { mkDerivation, base }: - mkDerivation { - pname = "regex-type"; - version = "0.1.0.0"; - sha256 = "02pwls2yfp9y6g7lcfnkxjfbz3h280y9ifqh870bis16fa8dy6gv"; - libraryHaskellDepends = [ base ]; - description = "Type-level regular expressions"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "regex-with-pcre" = callPackage ( { mkDerivation, @@ -566172,339 +328549,6 @@ self: { } ) { }; - "regex-xmlschema" = callPackage ( - { - mkDerivation, - base, - haskell98, - parsec, - }: - mkDerivation { - pname = "regex-xmlschema"; - version = "0.1.5"; - sha256 = "1dmhvnz6sj80kdnm2v7n0lvx8g9arhf9pqqzkn0rwzfhr2by0ss4"; - libraryHaskellDepends = [ - base - haskell98 - parsec - ]; - description = "A regular expression library for W3C XML Schema regular expressions"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "regexchar" = callPackage ( - { - mkDerivation, - array, - base, - Cabal, - containers, - data-default, - parallel, - parsec, - QuickCheck, - regex-base, - regex-posix, - regexdot, - toolshed, - }: - mkDerivation { - pname = "regexchar"; - version = "0.9.0.18"; - sha256 = "1xrv67w6pr3jc8rcmzsfr6ga1g3zcsq1qb327c9viqhj40s5rarm"; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - array - base - containers - data-default - parsec - regex-base - regexdot - toolshed - ]; - executableHaskellDepends = [ - base - Cabal - data-default - parallel - regex-base - regex-posix - regexdot - toolshed - ]; - testHaskellDepends = [ - base - QuickCheck - regexdot - toolshed - ]; - description = "A POSIX, extended regex-engine"; - license = "GPL"; - hydraPlatforms = lib.platforms.none; - mainProgram = "grecce"; - } - ) { }; - - "regexdot" = callPackage ( - { - mkDerivation, - base, - data-default, - deepseq, - extra, - parallel, - parsec, - toolshed, - }: - mkDerivation { - pname = "regexdot"; - version = "0.12.2.2"; - sha256 = "0kaqinn8v6hc67rmj89sl6chagzycz61x5ng8cxxpap0zcxwx4ya"; - libraryHaskellDepends = [ - base - data-default - deepseq - extra - parallel - parsec - toolshed - ]; - description = "A polymorphic, POSIX, extended regex-engine"; - license = "GPL"; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "regexp-tries" = callPackage ( - { - mkDerivation, - base, - containers, - derive-trie, - template-haskell, - weighted-regexp, - }: - mkDerivation { - pname = "regexp-tries"; - version = "0.2"; - sha256 = "16spdq22dsblksvpd85cm6bmjd9053znphw6na1iy9pkmc491v1l"; - libraryHaskellDepends = [ - base - containers - derive-trie - template-haskell - weighted-regexp - ]; - description = "Regular Expressions on Tries"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "regexpr" = callPackage ( - { - mkDerivation, - base, - HUnit, - mtl, - mtlparse, - }: - mkDerivation { - pname = "regexpr"; - version = "0.5.4"; - sha256 = "0136wp6hrnmj6pbdhp3a131dzz8bp1pbd92bpagpv1r6gwj16y5z"; - libraryHaskellDepends = [ - base - HUnit - mtl - mtlparse - ]; - description = "regular expression like Perl/Ruby in Haskell"; - license = "LGPL"; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "regexpr-symbolic" = callPackage ( - { mkDerivation, base }: - mkDerivation { - pname = "regexpr-symbolic"; - version = "0.5"; - sha256 = "1cpwvb5mmcaqwy617m6cr25pcb4v4yxwzxng82bcrwkhjfdklsdr"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ base ]; - description = "Regular expressions via symbolic manipulation"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "regexqq" = callPackage ( - { - mkDerivation, - base, - bytestring, - pcre-light, - template-haskell, - }: - mkDerivation { - pname = "regexqq"; - version = "0.6"; - sha256 = "10vh4i7q9vf6b716hf2i9pv1dy6vlyrh8bybqh91i704a55m40f3"; - libraryHaskellDepends = [ - base - bytestring - pcre-light - template-haskell - ]; - description = "A quasiquoter for PCRE regexes"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "regional-pointers" = callPackage ( - { - mkDerivation, - base, - base-unicode-symbols, - regions, - transformers, - }: - mkDerivation { - pname = "regional-pointers"; - version = "0.7"; - sha256 = "1v71k64is86yc19n96062wl8f382xna1vnm0spcmr9jx6x3wyqv2"; - libraryHaskellDepends = [ - base - base-unicode-symbols - regions - transformers - ]; - description = "Regional memory pointers"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "regions" = callPackage ( - { - mkDerivation, - base, - base-unicode-symbols, - monad-control, - transformers, - }: - mkDerivation { - pname = "regions"; - version = "0.11"; - sha256 = "1l4wi4vziw0d0vaagbknf8bsvh4irqxls6qbhcg8ngpn62a0fa7p"; - libraryHaskellDepends = [ - base - base-unicode-symbols - monad-control - transformers - ]; - description = "Provides the region monad for safely opening and working with scarce resources"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "regions-monadsfd" = callPackage ( - { - mkDerivation, - base-unicode-symbols, - monads-fd, - regions, - transformers, - }: - mkDerivation { - pname = "regions-monadsfd"; - version = "0.3.1.3"; - sha256 = "13xyigw1f92bzppqrl96wbz36j9cwrsaxdb2vkg8sjjvnirly3h9"; - libraryHaskellDepends = [ - base-unicode-symbols - monads-fd - regions - transformers - ]; - description = "Monads-fd instances for the RegionT monad transformer"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "regions-monadstf" = callPackage ( - { - mkDerivation, - base-unicode-symbols, - monads-tf, - regions, - transformers, - }: - mkDerivation { - pname = "regions-monadstf"; - version = "0.3.1.7"; - sha256 = "0r4fr3p2k4k8r1lw6la7h4al068xf5kzb8cgq5864rlkrgf53fxb"; - libraryHaskellDepends = [ - base-unicode-symbols - monads-tf - regions - transformers - ]; - description = "Monads-tf instances for the RegionT monad transformer"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "regions-mtl" = callPackage ( - { - mkDerivation, - base-unicode-symbols, - mtl, - regions, - }: - mkDerivation { - pname = "regions-mtl"; - version = "0.3.1.7"; - sha256 = "1s0sr42k1kmwgmrnj5zcan0j9br8xrrm1vdnj6yhliqdfz41ifc0"; - libraryHaskellDepends = [ - base-unicode-symbols - mtl - regions - ]; - description = "mtl instances for the RegionT monad transformer"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "register-machine-typelevel" = callPackage ( - { mkDerivation, base }: - mkDerivation { - pname = "register-machine-typelevel"; - version = "0.1.0.0"; - sha256 = "0zsvpsqksms9fh0zwyngb0sm1scffi47ipphgfn7b5m3km9z6cjj"; - libraryHaskellDepends = [ base ]; - description = "A computationally universal register machine implementation at the type-level"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "registry" = callPackage ( { mkDerivation, @@ -566920,29 +328964,6 @@ self: { } ) { }; - "regress" = callPackage ( - { - mkDerivation, - ad, - base, - vector, - }: - mkDerivation { - pname = "regress"; - version = "0.1.1"; - sha256 = "00b4n4gw5y0mpayb0zlkvz91nfrpbspz22kqhpvdnxbb4zcz7pnj"; - libraryHaskellDepends = [ - ad - base - vector - ]; - description = "Linear and logistic regression through automatic differentiation"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "regression-simple" = callPackage ( { mkDerivation, @@ -566979,269 +329000,6 @@ self: { } ) { }; - "regular" = callPackage ( - { - mkDerivation, - base, - template-haskell, - }: - mkDerivation { - pname = "regular"; - version = "0.3.4.4"; - sha256 = "112n3j27ac9lzs0lc3q12r6wmpkmfgdalv18h1qklhd5nh4j9wl5"; - revision = "1"; - editedCabalFile = "0hrr2drpmrsb3jim2lgfx7nx2pvycdvfff51j2v3ihgdy8d8zqrw"; - libraryHaskellDepends = [ - base - template-haskell - ]; - description = "Generic programming library for regular datatypes"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "regular-extras" = callPackage ( - { - mkDerivation, - base, - binary, - deepseq, - QuickCheck, - regular, - }: - mkDerivation { - pname = "regular-extras"; - version = "0.2.3"; - sha256 = "0x1sbps0ccwpvf6fx1jnbjxylqsvvfzkkynliip9jyh6gkhm44vx"; - libraryHaskellDepends = [ - base - binary - deepseq - QuickCheck - regular - ]; - description = "Additional functions for regular: arbitrary, coarbitrary, and binary get/put"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "regular-web" = callPackage ( - { - mkDerivation, - applicative-extras, - base, - fclabels, - formlets, - json, - mtl, - regular, - xhtml, - }: - mkDerivation { - pname = "regular-web"; - version = "0.1.1"; - sha256 = "0f4lsly4497p7szibasin27hf2xy5cs8gp87vsbg6mlkk07bvysz"; - libraryHaskellDepends = [ - applicative-extras - base - fclabels - formlets - json - mtl - regular - xhtml - ]; - description = "Generic programming for the web"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "regular-xmlpickler" = callPackage ( - { - mkDerivation, - base, - hxt, - regular, - text, - }: - mkDerivation { - pname = "regular-xmlpickler"; - version = "0.2"; - sha256 = "1qjx4xsidnpr2as3m2ir97ap5vc9cw6a0z332g53ifx9gskjli9f"; - libraryHaskellDepends = [ - base - hxt - regular - text - ]; - description = "Generic generation of HXT XmlPickler instances using Regular"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "reheat" = callPackage ( - { - mkDerivation, - base, - directory, - QuickCheck, - text, - vty, - vty-ui, - }: - mkDerivation { - pname = "reheat"; - version = "0.1.5"; - sha256 = "0m6s6r2d39g3qkjylsrhixk9l9sb2jv0ihxwjn7b0wz7585g2bdv"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - directory - text - vty - vty-ui - ]; - testHaskellDepends = [ - base - directory - QuickCheck - text - vty - vty-ui - ]; - description = "to make notes and reduce impact on idle time on writing other programms"; - license = "GPL"; - hydraPlatforms = lib.platforms.none; - mainProgram = "reheat"; - } - ) { }; - - "rehoo" = callPackage ( - { - mkDerivation, - base, - cmdargs, - parallel-io, - shelly, - split, - system-filepath, - text, - }: - mkDerivation { - pname = "rehoo"; - version = "0.3.1"; - sha256 = "0pwmz1q2866yj8hxbvha4v1smhppkd3jsrrhbhmbxw137l54ijgf"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - cmdargs - parallel-io - shelly - split - system-filepath - text - ]; - description = "Rebuild default.hoo from many .hoo files in the current directory"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "rehoo"; - broken = true; - } - ) { }; - - "rei" = callPackage ( - { - mkDerivation, - attoparsec, - base, - bytestring, - containers, - directory, - regex-tdfa, - split, - }: - mkDerivation { - pname = "rei"; - version = "0.4.0.3"; - sha256 = "1ih0a1585r7mj7kq5ha1399s8j99lxldgzfqc5fndy6gl70w2pqr"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - attoparsec - base - bytestring - containers - directory - regex-tdfa - split - ]; - description = "Process lists easily"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - mainProgram = "rei"; - broken = true; - } - ) { }; - - "reified-records" = callPackage ( - { - mkDerivation, - base, - containers, - mtl, - }: - mkDerivation { - pname = "reified-records"; - version = "0.2.2"; - sha256 = "0vg05idyiy3havw8rlsky7x4y34mpk6by9500r7rb921xgpdq70a"; - libraryHaskellDepends = [ - base - containers - mtl - ]; - description = "Reify records to Maps and back again"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "reify" = callPackage ( - { - mkDerivation, - base, - ghc, - }: - mkDerivation { - pname = "reify"; - version = "0.1.1"; - sha256 = "1bl4yv77i8c4w1y5lqr6b8xi1m4ym2phvdjwc9l95rx1vrxkqpk1"; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base - ghc - ]; - executableHaskellDepends = [ - base - ghc - ]; - description = "Serialize data"; - license = "GPL"; - hydraPlatforms = lib.platforms.none; - mainProgram = "reify"; - broken = true; - } - ) { }; - "reinterpret-cast" = callPackage ( { mkDerivation, @@ -567375,29 +329133,6 @@ self: { } ) { }; - "relacion" = callPackage ( - { - mkDerivation, - array, - base, - containers, - }: - mkDerivation { - pname = "relacion"; - version = "0.1"; - sha256 = "1jq3ii9j8s7q8fr7ac2pdr2l33jvzsyyq70cjd9q1spqa1v6k976"; - libraryHaskellDepends = [ - array - base - containers - ]; - description = "A relation data structure"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "relapse" = callPackage ( { mkDerivation, @@ -567485,43 +329220,6 @@ self: { } ) { }; - "relational-postgresql8" = callPackage ( - { - mkDerivation, - base, - containers, - HDBC, - names-th, - persistable-record, - relational-query, - relational-query-HDBC, - template-haskell, - time, - transformers, - }: - mkDerivation { - pname = "relational-postgresql8"; - version = "0.2.0.0"; - sha256 = "18ipwbk0301z4p5mqd99scspix96fg3hyhsi5kdnx3mf36y0mzrz"; - libraryHaskellDepends = [ - base - containers - HDBC - names-th - persistable-record - relational-query - relational-query-HDBC - template-haskell - time - transformers - ]; - description = "PostgreSQL v8.x driver for haskell-relational-record"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "relational-query" = callPackage ( { mkDerivation, @@ -567634,70 +329332,6 @@ self: { } ) { }; - "relational-query-postgresql-pure" = callPackage ( - { - mkDerivation, - base, - containers, - data-default-class, - dlist, - HDBC-postgresql, - HDBC-session, - homotuple, - hspec, - list-tuple, - names-th, - persistable-record, - postgresql-placeholder-converter, - postgresql-pure, - product-isomorphic, - relational-query, - relational-query-HDBC, - relational-schemas, - sql-words, - template-haskell, - transformers, - utf8-string, - }: - mkDerivation { - pname = "relational-query-postgresql-pure"; - version = "0.1.1.0"; - sha256 = "1fxr9sfmva9b24z2pxbg72wa1j682cdk63lilmsk4i0343skrnr7"; - libraryHaskellDepends = [ - base - containers - dlist - homotuple - list-tuple - names-th - persistable-record - postgresql-placeholder-converter - postgresql-pure - product-isomorphic - relational-query - relational-schemas - sql-words - template-haskell - transformers - utf8-string - ]; - testHaskellDepends = [ - base - data-default-class - HDBC-postgresql - HDBC-session - hspec - postgresql-pure - relational-query - relational-query-HDBC - ]; - description = "The connector of relational-record and postgresql-pure"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "relational-record" = callPackage ( { mkDerivation, @@ -567798,34 +329432,6 @@ self: { } ) { }; - "relative-date" = callPackage ( - { - mkDerivation, - base, - concatenative, - datetime, - mtl, - parsec, - time, - }: - mkDerivation { - pname = "relative-date"; - version = "0.0.1"; - sha256 = "052rk17flm5zp70wcl7ki3ys47hnaa2d5c1vjsap7bfkcg4lff66"; - libraryHaskellDepends = [ - base - concatenative - datetime - mtl - parsec - time - ]; - description = "Durations and generalized time parsing"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "releaser" = callPackage ( { mkDerivation, @@ -567861,33 +329467,6 @@ self: { } ) { }; - "relevant-time" = callPackage ( - { - mkDerivation, - aeson, - base, - chronos, - text, - torsor, - }: - mkDerivation { - pname = "relevant-time"; - version = "0.1.1.0"; - sha256 = "0978g03dlkgx45hxzk3lwl68iln8jnf0hldchac4yqp4c9rsxf22"; - libraryHaskellDepends = [ - aeson - base - chronos - text - torsor - ]; - description = "humanised relevant time"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "reliable-io" = callPackage ( { mkDerivation, @@ -567930,109 +329509,6 @@ self: { } ) { }; - "reload" = callPackage ( - { - mkDerivation, - aeson, - async, - base, - bytestring, - Cabal, - containers, - data-default, - directory, - filepath, - ghcid, - hspec, - hspec-wai, - hspec-wai-json, - http-types, - mime-types, - process, - scotty, - text, - transformers, - unordered-containers, - wai, - wai-extra, - wai-handler-launch, - wai-middleware-static, - wai-websockets, - warp, - websockets, - }: - mkDerivation { - pname = "reload"; - version = "0.0.0.1"; - sha256 = "0l0g2qvfqgqsjzm31jl1h13caxk19ny0nqagld5a0qhhsq4ss5a5"; - revision = "1"; - editedCabalFile = "10d2p9pdplwhavfimsa893wzcps7fhfaxgcqwblrqm5xmybc3825"; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - aeson - async - base - bytestring - Cabal - containers - data-default - directory - filepath - ghcid - http-types - mime-types - process - scotty - text - transformers - wai - wai-extra - wai-handler-launch - wai-middleware-static - wai-websockets - warp - websockets - ]; - executableHaskellDepends = [ base ]; - testHaskellDepends = [ - aeson - async - base - bytestring - Cabal - containers - data-default - directory - filepath - ghcid - hspec - hspec-wai - hspec-wai-json - http-types - mime-types - process - scotty - text - transformers - unordered-containers - wai - wai-extra - wai-handler-launch - wai-middleware-static - wai-websockets - warp - websockets - ]; - description = "A web based Haskell IDE"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "reload-exe"; - broken = true; - } - ) { }; - "relocant" = callPackage ( { mkDerivation, @@ -568186,90 +329662,6 @@ self: { } ) { }; - "remark" = callPackage ( - { - mkDerivation, - base, - GenericPretty, - tasty, - tasty-golden, - tasty-hunit, - }: - mkDerivation { - pname = "remark"; - version = "0.0.0.0"; - sha256 = "04a5d1mvzrfmckzsm38ky84d8s3rix1352zz5i0bkqzdb72mi7l8"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - GenericPretty - ]; - executableHaskellDepends = [ - base - GenericPretty - ]; - testHaskellDepends = [ - base - GenericPretty - tasty - tasty-golden - tasty-hunit - ]; - description = "A DSL for marking student work"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "remark"; - broken = true; - } - ) { }; - - "remarks" = callPackage ( - { - mkDerivation, - base, - containers, - directory, - filepath, - GenericPretty, - pretty, - tasty, - tasty-golden, - tasty-hunit, - }: - mkDerivation { - pname = "remarks"; - version = "0.1.13"; - sha256 = "0x7ds3h0srl1nxb2v5njh8kagjaajac1ak4c1svrxjnsi58pdl30"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - containers - GenericPretty - pretty - ]; - executableHaskellDepends = [ - base - directory - filepath - GenericPretty - ]; - testHaskellDepends = [ - base - GenericPretty - tasty - tasty-golden - tasty-hunit - ]; - description = "A DSL for marking student work"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "remarks"; - broken = true; - } - ) { }; - "rematch" = callPackage ( { mkDerivation, @@ -568322,359 +329714,6 @@ self: { } ) { }; - "remote" = callPackage ( - { - mkDerivation, - base, - binary, - bytestring, - containers, - directory, - filepath, - mtl, - network, - pureMD5, - stm, - syb, - template-haskell, - time, - utf8-string, - }: - mkDerivation { - pname = "remote"; - version = "0.1.1"; - sha256 = "14awzhpc21pp4iq53vz4ib81ygxsnlnfppv723zy77z6jja08gf0"; - libraryHaskellDepends = [ - base - binary - bytestring - containers - directory - filepath - mtl - network - pureMD5 - stm - syb - template-haskell - time - utf8-string - ]; - description = "Cloud Haskell"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "remote-debugger" = callPackage ( - { - mkDerivation, - array, - base, - ghc, - ghc-paths, - json, - network, - }: - mkDerivation { - pname = "remote-debugger"; - version = "0.2.2"; - sha256 = "1c6xh390963hk7q2qvhqb6yma5ma7hk39nxjikizwh7s2h9vi9k4"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - array - base - ghc - ghc-paths - json - network - ]; - description = "Interface to ghci debugger"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "remote-debugger"; - broken = true; - } - ) { }; - - "remote-json" = callPackage ( - { - mkDerivation, - aeson, - attoparsec, - base, - bytestring, - containers, - exceptions, - fail, - natural-transformation, - QuickCheck, - quickcheck-instances, - random, - remote-monad, - scientific, - tasty, - tasty-quickcheck, - text, - transformers, - unordered-containers, - vector, - }: - mkDerivation { - pname = "remote-json"; - version = "0.2"; - sha256 = "12js08lb01y3g4b0sznhr6gdkx60l8kxg9pb8y6m6zr8qnfilv32"; - libraryHaskellDepends = [ - aeson - base - exceptions - fail - natural-transformation - remote-monad - text - transformers - unordered-containers - vector - ]; - testHaskellDepends = [ - aeson - attoparsec - base - bytestring - containers - natural-transformation - QuickCheck - quickcheck-instances - random - scientific - tasty - tasty-quickcheck - text - ]; - description = "Remote Monad implementation of the JSON RPC protocol"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "remote-json-client" = callPackage ( - { - mkDerivation, - aeson, - base, - lens, - natural-transformation, - remote-json, - wreq, - }: - mkDerivation { - pname = "remote-json-client"; - version = "0.2"; - sha256 = "0lsr0ryxnvyvkjiy1rdxwvwa88kga0cdcwr0c0djbbjd8bgyk3vx"; - revision = "1"; - editedCabalFile = "0pq805qmll3w8wqv88vgl1bvx6xqbfj8xkfv66skm4jczqysbayw"; - libraryHaskellDepends = [ - aeson - base - lens - natural-transformation - remote-json - wreq - ]; - description = "Web client wrapper for remote-json"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "remote-json-server" = callPackage ( - { - mkDerivation, - aeson, - base, - data-default-class, - natural-transformation, - remote-json, - scotty, - text, - transformers, - warp, - }: - mkDerivation { - pname = "remote-json-server"; - version = "0.2.0.1"; - sha256 = "0lr55hijc4qchc6328z3v1v20gnclx6g52wl4saklhv80qkkxmv9"; - libraryHaskellDepends = [ - aeson - base - data-default-class - natural-transformation - remote-json - scotty - text - transformers - warp - ]; - description = "Web server wrapper for remote-json"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "remote-monad" = callPackage ( - { - mkDerivation, - base, - containers, - natural-transformation, - QuickCheck, - quickcheck-instances, - tasty, - tasty-quickcheck, - transformers, - }: - mkDerivation { - pname = "remote-monad"; - version = "0.2"; - sha256 = "0qrz98qny7il29df8z5djpqp3rbq0w3kj34nrhqqj264r6qzrj4l"; - revision = "1"; - editedCabalFile = "07xk43nazwkjhgwhf1hrjlir9f3bv4202hin9q0c2846yqgrnhx2"; - libraryHaskellDepends = [ - base - natural-transformation - transformers - ]; - testHaskellDepends = [ - base - containers - natural-transformation - QuickCheck - quickcheck-instances - tasty - tasty-quickcheck - ]; - description = "An parametrizable Remote Monad, and parametrizable Applicative Functor"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "remotion" = callPackage ( - { - mkDerivation, - async, - base, - bytestring, - concurrent-extra, - containers, - directory, - errors, - filelock, - hashable, - hashtables, - HTF, - HUnit, - lifted-async, - loch-th, - monad-control, - mtl, - network, - network-simple, - old-locale, - pipes, - pipes-bytestring, - pipes-cereal-plus, - pipes-network, - pipes-parse, - placeholders, - QuickCheck, - quickcheck-instances, - stm, - system-fileio, - system-filepath, - text, - time, - transformers-base, - }: - mkDerivation { - pname = "remotion"; - version = "0.2.0"; - sha256 = "0m7x5i00i6ai39yii6h5vzlsp1rnmprmddqllqja57kdy3q7v7na"; - libraryHaskellDepends = [ - async - base - bytestring - concurrent-extra - containers - directory - errors - filelock - hashable - hashtables - lifted-async - loch-th - monad-control - mtl - network - network-simple - old-locale - pipes - pipes-bytestring - pipes-cereal-plus - pipes-network - pipes-parse - placeholders - stm - system-fileio - system-filepath - text - time - transformers-base - ]; - testHaskellDepends = [ - async - base - bytestring - concurrent-extra - containers - directory - errors - filelock - hashable - hashtables - HTF - HUnit - lifted-async - loch-th - monad-control - mtl - network - network-simple - old-locale - pipes - pipes-bytestring - pipes-cereal-plus - pipes-network - pipes-parse - placeholders - QuickCheck - quickcheck-instances - stm - system-fileio - system-filepath - text - time - transformers-base - ]; - description = "A library for client-server applications based on custom protocols"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "render-utf8" = callPackage ( { mkDerivation, @@ -568763,33 +329802,6 @@ self: { } ) { }; - "reorderable" = callPackage ( - { - mkDerivation, - base, - constraints, - haskell-src-exts, - haskell-src-meta, - template-haskell, - }: - mkDerivation { - pname = "reorderable"; - version = "0.3.1"; - sha256 = "1i81yran553jdsyx0bx5g72dg6v24yk3g6l40m1cd430f8yy8a6f"; - libraryHaskellDepends = [ - base - constraints - haskell-src-exts - haskell-src-meta - template-haskell - ]; - description = "Define compound types that do not depend on member order"; - license = "unknown"; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "repa" = callPackage ( { mkDerivation, @@ -568840,68 +329852,6 @@ self: { } ) { }; - "repa-array" = callPackage ( - { - mkDerivation, - base, - bytestring, - double-conversion, - filelock, - mtl, - primitive, - repa-convert, - repa-eval, - repa-scalar, - repa-stream, - text, - vector, - }: - mkDerivation { - pname = "repa-array"; - version = "4.2.3.1"; - sha256 = "13bkhr9gdcy42wla6jq75ikh7zwdbrv67vkfix24kc97lppj9sj1"; - libraryHaskellDepends = [ - base - bytestring - double-conversion - filelock - mtl - primitive - repa-convert - repa-eval - repa-scalar - repa-stream - text - vector - ]; - description = "Bulk array representations and operators"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "repa-bytestring" = callPackage ( - { - mkDerivation, - base, - repa, - }: - mkDerivation { - pname = "repa-bytestring"; - version = "3.0.0.1"; - sha256 = "1q7kvm39iqabanrgyi438n8mfn1ikvpygralyakfc02rm2gpl0gb"; - libraryHaskellDepends = [ - base - repa - ]; - doHaddock = false; - description = "(deprecated)"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "repa-convert" = callPackage ( { mkDerivation, @@ -568931,31 +329881,6 @@ self: { } ) { }; - "repa-devil" = callPackage ( - { - mkDerivation, - base, - libdevil, - repa, - transformers, - }: - mkDerivation { - pname = "repa-devil"; - version = "0.3.2.6"; - sha256 = "0f7xawg4qlfbf24lrjbpqzl3f3zf63f8g5b2gi17h0rpyw3cxhzy"; - libraryHaskellDepends = [ - base - repa - transformers - ]; - librarySystemDepends = [ libdevil ]; - description = "Support for image reading and writing of Repa arrays using in-place FFI calls"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { inherit (pkgs) libdevil; }; - "repa-eval" = callPackage ( { mkDerivation, base }: mkDerivation { @@ -569035,62 +329960,18 @@ self: { repa tasty tasty-hunit - tasty-quickcheck - ]; - benchmarkHaskellDepends = [ - base - criterion - deepseq - random - repa - repa-algorithms - ]; - description = "Perform fft with repa via FFTW"; - license = lib.licenses.bsd3; - } - ) { }; - - "repa-flow" = callPackage ( - { - mkDerivation, - base, - bytestring, - containers, - directory, - filepath, - hashtables, - primitive, - repa-array, - repa-convert, - repa-eval, - repa-scalar, - repa-stream, - text, - vector, - }: - mkDerivation { - pname = "repa-flow"; - version = "4.2.3.1"; - sha256 = "0l91k6lvky61dd6czcd61syzrsk5amg1ap6ylssa30a8p06z22yf"; - libraryHaskellDepends = [ - base - bytestring - containers - directory - filepath - hashtables - primitive - repa-array - repa-convert - repa-eval - repa-scalar - repa-stream - text - vector + tasty-quickcheck + ]; + benchmarkHaskellDepends = [ + base + criterion + deepseq + random + repa + repa-algorithms ]; - description = "Data-parallel data flows"; + description = "Perform fft with repa via FFTW"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; } ) { }; @@ -569123,63 +330004,6 @@ self: { } ) { }; - "repa-linear-algebra" = callPackage ( - { - mkDerivation, - base, - hmatrix, - repa, - vector, - }: - mkDerivation { - pname = "repa-linear-algebra"; - version = "0.3.0.1"; - sha256 = "18lryk19dfcgq8d09lyc4bchg3gxlr1n8k4m50np2zmhk911n3jn"; - libraryHaskellDepends = [ - base - hmatrix - repa - vector - ]; - description = "HMatrix operations for Repa"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "repa-plugin" = callPackage ( - { - mkDerivation, - base, - containers, - ddc-base, - ddc-core, - ddc-core-flow, - ddc-core-simpl, - ghc, - mtl, - }: - mkDerivation { - pname = "repa-plugin"; - version = "1.0.0.1"; - sha256 = "0s644rlk6sqz8sb2rwak42153xxsp5vjpqhlxnmbic0b7r67s8y9"; - libraryHaskellDepends = [ - base - containers - ddc-base - ddc-core - ddc-core-flow - ddc-core-simpl - ghc - mtl - ]; - description = "Data Flow Fusion GHC Plugin"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "repa-scalar" = callPackage ( { mkDerivation, @@ -569207,31 +330031,6 @@ self: { } ) { }; - "repa-series" = callPackage ( - { - mkDerivation, - base, - ghc, - ghc-prim, - vector, - }: - mkDerivation { - pname = "repa-series"; - version = "1.0.0.1"; - sha256 = "1kldz4d4cv0vliqw78ywbcfgh0mw4i5cd93j0jdagvhsbhlxlp5k"; - libraryHaskellDepends = [ - base - ghc - ghc-prim - vector - ]; - description = "Series Expressionss API"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "repa-sndfile" = callPackage ( { mkDerivation, @@ -569268,154 +330067,6 @@ self: { } ) { }; - "repa-stream" = callPackage ( - { - mkDerivation, - base, - mtl, - primitive, - repa-scalar, - vector, - }: - mkDerivation { - pname = "repa-stream"; - version = "4.2.3.1"; - sha256 = "0xdsnfmm8pw1daprz609h5qmiz9qdiv7n1zxk0yvxqmfpm3r4kl9"; - libraryHaskellDepends = [ - base - mtl - primitive - repa-scalar - vector - ]; - description = "Stream functions not present in the vector library"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "repa-v4l2" = callPackage ( - { - mkDerivation, - base, - bmp, - bytestring, - containers, - deepseq, - gloss, - mtl, - repa, - transformers, - v4l2, - vector, - }: - mkDerivation { - pname = "repa-v4l2"; - version = "0.2.0.0"; - sha256 = "1d8spppfjbcb9smk735zxgpz1v1f5p1sm50nfzry68bdb1p29xnz"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - bmp - bytestring - containers - deepseq - mtl - repa - transformers - v4l2 - vector - ]; - executableHaskellDepends = [ - base - gloss - repa - ]; - description = "Provides high-level access to webcams"; - license = "LGPL"; - hydraPlatforms = lib.platforms.none; - mainProgram = "example"; - } - ) { }; - - "repl" = callPackage ( - { - mkDerivation, - base, - ghc, - ghc-paths, - haskell-src-exts, - parsec, - }: - mkDerivation { - pname = "repl"; - version = "1.1"; - sha256 = "0q9gk76r9n8gyn8fwqfmywbrjhyqy0gz8blmmvrvwghyfscabnh9"; - libraryHaskellDepends = [ - base - ghc - ghc-paths - haskell-src-exts - parsec - ]; - description = "IRC friendly REPL library"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "repl-toolkit" = callPackage ( - { - mkDerivation, - aeson, - base, - bytestring, - data-default, - directory, - exceptions, - filepath, - functor-monadic, - ListLike, - listsafe, - monad-loops, - mtl, - parsec, - semigroupoids, - text, - transformers, - }: - mkDerivation { - pname = "repl-toolkit"; - version = "1.1.0.0"; - sha256 = "1dzdn1c7a6jrrji648996p5pmmhlq4qv6jhhlzysxmj1i1cl1kzn"; - libraryHaskellDepends = [ - aeson - base - bytestring - data-default - directory - exceptions - filepath - functor-monadic - ListLike - listsafe - monad-loops - mtl - parsec - semigroupoids - text - transformers - ]; - description = "Toolkit for quickly whipping up config files and command-line interfaces"; - license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "replace-attoparsec" = callPackage ( { mkDerivation, @@ -569485,144 +330136,6 @@ self: { } ) { }; - "replica" = callPackage ( - { - mkDerivation, - aeson, - base, - bytestring, - containers, - Diff, - file-embed, - http-types, - QuickCheck, - quickcheck-instances, - template-haskell, - text, - wai, - wai-websockets, - websockets, - }: - mkDerivation { - pname = "replica"; - version = "0.1.0.0"; - sha256 = "0q583krjbx8x45y8hy7vpw7b5y5c9bdfmyp0wh4bk3g8y7xxvvib"; - libraryHaskellDepends = [ - aeson - base - bytestring - containers - Diff - file-embed - http-types - template-haskell - text - wai - wai-websockets - websockets - ]; - testHaskellDepends = [ - aeson - base - bytestring - containers - Diff - file-embed - http-types - QuickCheck - quickcheck-instances - template-haskell - text - wai - wai-websockets - websockets - ]; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "replicant" = callPackage ( - { - mkDerivation, - aeson, - aeson-pretty, - ansi-terminal, - attoparsec, - base, - bytestring, - containers, - either, - exceptions, - fast-logger, - hedis, - hedis-namespace, - lens, - lens-aeson, - lifted-base, - monad-control, - monad-logger, - mtl, - network, - resourcet, - stm, - text, - transformers, - transformers-base, - websockets, - wreq, - wuss, - }: - mkDerivation { - pname = "replicant"; - version = "0.1.0.0"; - sha256 = "0i06fz0grlkprnx2gcy8v31hyhj9wj7irh0gbd9bcm1064b4jsbd"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson - aeson-pretty - ansi-terminal - attoparsec - base - bytestring - containers - either - exceptions - fast-logger - hedis - hedis-namespace - lens - lens-aeson - lifted-base - monad-control - monad-logger - mtl - network - resourcet - stm - text - transformers - transformers-base - websockets - wreq - wuss - ]; - executableHaskellDepends = [ - base - bytestring - hedis-namespace - mtl - ]; - testHaskellDepends = [ base ]; - description = "Initial project template from stack"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "replicant"; - } - ) { }; - "repline" = callPackage ( { mkDerivation, @@ -569656,118 +330169,6 @@ self: { } ) { }; - "repo-based-blog" = callPackage ( - { - mkDerivation, - base, - blaze-html, - containers, - data-default, - directory, - dyre, - filepath, - filestore, - hspec, - hspec-discover, - ixset, - lens, - mtl, - old-locale, - pandoc, - parsec, - QuickCheck, - stm, - text, - time, - transformers, - transformers-base, - transformers-compat, - }: - mkDerivation { - pname = "repo-based-blog"; - version = "0.0.1"; - sha256 = "0ada0xqpkp6ch71sizf8fscvz6rjq95asmfgdvg8jj8gwpzvlncs"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - blaze-html - containers - data-default - directory - dyre - filepath - filestore - ixset - lens - mtl - old-locale - pandoc - parsec - stm - text - time - transformers - transformers-base - transformers-compat - ]; - executableHaskellDepends = [ base ]; - testHaskellDepends = [ - base - blaze-html - containers - directory - filepath - filestore - hspec - hspec-discover - ixset - lens - mtl - old-locale - parsec - QuickCheck - stm - text - time - transformers - transformers-base - transformers-compat - ]; - testToolDepends = [ hspec-discover ]; - description = "Blogging module using blaze html for markup"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "rbb"; - } - ) { }; - - "repr" = callPackage ( - { - mkDerivation, - base, - base-unicode-symbols, - dstring, - random, - string-combinators, - }: - mkDerivation { - pname = "repr"; - version = "0.4.1.3"; - sha256 = "1y1zl81yjc9jrci83bm6bn8hrfqf6x25vxzkhrkydhhwcwqfqaj5"; - libraryHaskellDepends = [ - base - base-unicode-symbols - dstring - random - string-combinators - ]; - description = "Render overloaded expressions to their textual representation"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "repr-tree-syb" = callPackage ( { mkDerivation, @@ -569791,51 +330192,6 @@ self: { } ) { }; - "representable-functors" = callPackage ( - { - mkDerivation, - array, - base, - comonad, - comonad-transformers, - comonads-fd, - containers, - contravariant, - distributive, - free, - keys, - mtl, - semigroupoids, - semigroups, - transformers, - }: - mkDerivation { - pname = "representable-functors"; - version = "3.2.0.2"; - sha256 = "156rhm9hqxkwpv4ppg6647gz2q95mp61rx6ii0nk6i0ygmjvw1l2"; - libraryHaskellDepends = [ - array - base - comonad - comonad-transformers - comonads-fd - containers - contravariant - distributive - free - keys - mtl - semigroupoids - semigroups - transformers - ]; - description = "Representable functors"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "representable-profunctors" = callPackage ( { mkDerivation, base }: mkDerivation { @@ -569849,48 +330205,6 @@ self: { } ) { }; - "representable-tries" = callPackage ( - { - mkDerivation, - adjunctions, - base, - bifunctors, - comonad, - comonad-transformers, - containers, - distributive, - keys, - mtl, - representable-functors, - semigroupoids, - semigroups, - transformers, - }: - mkDerivation { - pname = "representable-tries"; - version = "3.0.2"; - sha256 = "07qjm04xf9qndyybph4mhjp65yjvz54pia4y8kj7wps75gjail2m"; - libraryHaskellDepends = [ - adjunctions - base - bifunctors - comonad - comonad-transformers - containers - distributive - keys - mtl - representable-functors - semigroupoids - semigroups - transformers - ]; - description = "Tries from representations of polynomial functors"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "reprinter" = callPackage ( { mkDerivation, @@ -569931,32 +330245,6 @@ self: { } ) { }; - "reproject" = callPackage ( - { - mkDerivation, - base, - hspec, - template-haskell, - }: - mkDerivation { - pname = "reproject"; - version = "0.2.0.0"; - sha256 = "1h1m5fdlhd2dxpk8bphcvbjybw40lw48b7j1bkk2grq3ljyvgmwl"; - libraryHaskellDepends = [ - base - template-haskell - ]; - testHaskellDepends = [ - base - hspec - ]; - description = "Define and combine \"materialized\" projections"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "req" = callPackage ( { mkDerivation, @@ -570146,48 +330434,6 @@ self: { } ) { }; - "req-url-extra" = callPackage ( - { - mkDerivation, - aeson, - base, - hspec, - modern-uri, - req, - text, - }: - mkDerivation { - pname = "req-url-extra"; - version = "0.1.1.0"; - sha256 = "0jchywnpygwi0nsqfzqnfafwiajvqirmkrv4cr4bg50g3bs6c5s8"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - modern-uri - req - ]; - executableHaskellDepends = [ - aeson - base - modern-uri - req - text - ]; - testHaskellDepends = [ - base - hspec - modern-uri - req - ]; - description = "Provides URI/URL helper functions for use with Req"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - mainProgram = "sample"; - broken = true; - } - ) { }; - "reqcatcher" = callPackage ( { mkDerivation, @@ -570268,31 +330514,6 @@ self: { } ) { }; - "request-monad" = callPackage ( - { - mkDerivation, - base, - free, - mtl, - transformers, - }: - mkDerivation { - pname = "request-monad"; - version = "0.3.0.1"; - sha256 = "1aqcsm9a3zd11k7d4nbvxsy7l35fr77z7gyhrl7rvflnixid29ws"; - libraryHaskellDepends = [ - base - free - mtl - transformers - ]; - description = "A transformer for generic requests"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "require" = callPackage ( { mkDerivation, @@ -570733,56 +330954,10 @@ self: { license = lib.licenses.mit; hydraPlatforms = lib.platforms.none; mainProgram = "reserve"; - } - ) { }; - - "reservoir" = callPackage ( - { - mkDerivation, - base, - containers, - random, - }: - mkDerivation { - pname = "reservoir"; - version = "0.2.0.0"; - sha256 = "0ywskms53cnhyywryvsr6mi9qyba6l6dncpj0hx59k0rdr5nb25h"; - libraryHaskellDepends = [ - base - containers - random - ]; - description = "Unweighted reservoir sampling"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; broken = true; } ) { }; - "resin" = callPackage ( - { - mkDerivation, - base, - ghc-prim, - ralist, - semigroupoids, - }: - mkDerivation { - pname = "resin"; - version = "0.2.0.3"; - sha256 = "1arv9mcbg5xa6vzv6k85mcxdz38x26ipwhk8613qdd94a2hhf8nx"; - libraryHaskellDepends = [ - base - ghc-prim - ralist - semigroupoids - ]; - description = "High performance variable binders"; - license = lib.licenses.bsd2; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "resistor-cube" = callPackage ( { mkDerivation, @@ -570845,131 +331020,6 @@ self: { } ) { }; - "resolve" = callPackage ( - { - mkDerivation, - attoparsec, - attoparsec-binary, - base, - bv, - bytestring, - hashable, - hashmap, - hslogger, - iproute, - network, - parsec, - stm, - stm-containers, - transformers, - }: - mkDerivation { - pname = "resolve"; - version = "0.1.0.0"; - sha256 = "0fdanss7qxx5nlciilal9yyxardxdfgrgm5kpjmnaa6dw53180ac"; - libraryHaskellDepends = [ - attoparsec - attoparsec-binary - base - bv - bytestring - hashable - hashmap - hslogger - iproute - network - parsec - stm - stm-containers - transformers - ]; - description = "A name resolusion library"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "resolve-trivial-conflicts" = callPackage ( - { - mkDerivation, - ansi-terminal, - base, - base-compat, - Diff, - directory, - filepath, - mtl, - optparse-applicative, - process, - unix, - }: - mkDerivation { - pname = "resolve-trivial-conflicts"; - version = "0.3.2.4"; - sha256 = "0892mrwky28nq3wcwr21znr4yss4sg2vz7g7w00j47wvhp3qmhv2"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - ansi-terminal - base - base-compat - Diff - directory - filepath - mtl - optparse-applicative - process - unix - ]; - description = "Remove trivial conflict markers in a git repository"; - license = lib.licenses.gpl2Only; - hydraPlatforms = lib.platforms.none; - mainProgram = "resolve-trivial-conflicts"; - broken = true; - } - ) { }; - - "resource-effect" = callPackage ( - { - mkDerivation, - base, - containers, - extensible-effects, - HUnit, - mtl, - QuickCheck, - test-framework, - test-framework-hunit, - test-framework-quickcheck2, - }: - mkDerivation { - pname = "resource-effect"; - version = "0.1.1"; - sha256 = "085ila27irk7pflx4kgn1p364wx2hj9wlm2lvdq0ix25hv8afxnb"; - libraryHaskellDepends = [ - base - containers - extensible-effects - ]; - testHaskellDepends = [ - base - containers - extensible-effects - HUnit - mtl - QuickCheck - test-framework - test-framework-hunit - test-framework-quickcheck2 - ]; - description = "A port of the package 'resourcet' for extensible effects"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "resource-effectful" = callPackage ( { mkDerivation, @@ -570993,32 +331043,6 @@ self: { } ) { }; - "resource-embed" = callPackage ( - { - mkDerivation, - base, - bytestring, - directory, - }: - mkDerivation { - pname = "resource-embed"; - version = "0.1.0.0"; - sha256 = "1i33z3rr72s5z2k6j5c10vjy7nslgfn3xqgwf8w05n9m2pwhn2fv"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - bytestring - directory - ]; - description = "Embed data files via C and FFI"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - mainProgram = "resource-embed"; - broken = true; - } - ) { }; - "resource-pool" = callPackage ( { mkDerivation, @@ -571070,38 +331094,6 @@ self: { } ) { }; - "resource-pool-catchio" = callPackage ( - { - mkDerivation, - base, - hashable, - MonadCatchIO-transformers, - stm, - time, - transformers, - transformers-base, - vector, - }: - mkDerivation { - pname = "resource-pool-catchio"; - version = "0.2.1.0"; - sha256 = "0g9r6hnn01n3p2ikcfkfc4afh83pzam29zal3k2ivajpl3kramsw"; - libraryHaskellDepends = [ - base - hashable - MonadCatchIO-transformers - stm - time - transformers - transformers-base - vector - ]; - description = "Fork of resource-pool, with a MonadCatchIO constraint"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "resource-pool-fork-avanov" = callPackage ( { mkDerivation, @@ -571133,35 +331125,6 @@ self: { } ) { }; - "resource-pool-monad" = callPackage ( - { - mkDerivation, - base, - free, - kan-extensions, - monad-control, - resource-pool, - transformers, - }: - mkDerivation { - pname = "resource-pool-monad"; - version = "0.1.0.0"; - sha256 = "0zv4dy4krvqrcdb2m7x6abj0qpz6qhzv57gkapzdwj59705c5cam"; - libraryHaskellDepends = [ - base - free - kan-extensions - monad-control - resource-pool - transformers - ]; - description = "A monadic interface for resource-pool"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "resource-registry" = callPackage ( { mkDerivation, @@ -571209,36 +331172,6 @@ self: { } ) { }; - "resource-simple" = callPackage ( - { - mkDerivation, - base, - containers, - monad-control, - monad-fork, - mtl-evil-instances, - transformers, - transformers-base, - }: - mkDerivation { - pname = "resource-simple"; - version = "0.2"; - sha256 = "0m6jdhnq0f9anjm9bqmz3v8d0k12nkp4nks7mvhw7hjbjnkgscni"; - libraryHaskellDepends = [ - base - containers - monad-control - monad-fork - mtl-evil-instances - transformers - transformers-base - ]; - description = "Allocate resources which are guaranteed to be released"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "resourcet" = callPackage ( { mkDerivation, @@ -571384,405 +331317,6 @@ self: { } ) { }; - "respond" = callPackage ( - { - mkDerivation, - aeson, - base, - bifunctors, - bytestring, - containers, - data-default-class, - exceptions, - fast-logger, - formatting, - HList, - http-media, - http-types, - lens, - monad-control, - monad-logger, - mtl, - path-pieces, - safe, - scientific, - template-haskell, - text, - time, - transformers, - transformers-base, - unordered-containers, - vector, - wai, - wai-extra, - warp, - }: - mkDerivation { - pname = "respond"; - version = "1.1.0"; - sha256 = "0j2xafk6rrspffmd0fxsmmz8gnmxxn3dxngh684nwj4030cg9m3r"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson - base - bifunctors - bytestring - containers - data-default-class - exceptions - fast-logger - formatting - HList - http-media - http-types - lens - monad-control - monad-logger - mtl - path-pieces - safe - scientific - template-haskell - text - time - transformers - transformers-base - unordered-containers - vector - wai - wai-extra - warp - ]; - executableHaskellDepends = [ - aeson - base - fast-logger - http-types - text - wai - ]; - description = "process and route HTTP requests and generate responses on top of WAI"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "example"; - broken = true; - } - ) { }; - - "rest-client" = callPackage ( - { - mkDerivation, - aeson-utils, - base, - bytestring, - case-insensitive, - data-default, - exceptions, - http-client, - http-conduit, - http-types, - hxt, - hxt-pickle-utils, - monad-control, - mtl, - resourcet, - rest-types, - tostring, - transformers, - transformers-base, - transformers-compat, - uri-encode, - utf8-string, - }: - mkDerivation { - pname = "rest-client"; - version = "0.5.2.3"; - sha256 = "1c4p68n3vb5w5xv0ha5bfq73qkcaqkyz0srfdn27pipy2s1h6p22"; - libraryHaskellDepends = [ - aeson-utils - base - bytestring - case-insensitive - data-default - exceptions - http-client - http-conduit - http-types - hxt - hxt-pickle-utils - monad-control - mtl - resourcet - rest-types - tostring - transformers - transformers-base - transformers-compat - uri-encode - utf8-string - ]; - description = "Utility library for use in generated API client libraries"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "rest-core" = callPackage ( - { - mkDerivation, - aeson, - aeson-utils, - base, - base-compat, - bytestring, - case-insensitive, - errors, - fclabels, - HUnit, - hxt, - hxt-pickle-utils, - json-schema, - mtl, - mtl-compat, - multipart, - random, - rest-stringmap, - rest-types, - safe, - split, - test-framework, - test-framework-hunit, - text, - transformers, - transformers-compat, - unordered-containers, - uri-encode, - utf8-string, - uuid, - }: - mkDerivation { - pname = "rest-core"; - version = "0.39.0.2"; - sha256 = "0vr538sp8i5qwgd91bzvq9fxv939imxck6358xfzlgrk6x89cr1z"; - libraryHaskellDepends = [ - aeson - aeson-utils - base - base-compat - bytestring - case-insensitive - errors - fclabels - hxt - hxt-pickle-utils - json-schema - mtl - mtl-compat - multipart - random - rest-stringmap - rest-types - safe - split - text - transformers - transformers-compat - unordered-containers - uri-encode - utf8-string - uuid - ]; - testHaskellDepends = [ - aeson - base - bytestring - HUnit - mtl - test-framework - test-framework-hunit - transformers - transformers-compat - unordered-containers - ]; - description = "Rest API library"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "rest-example" = callPackage ( - { - mkDerivation, - aeson, - base, - base-compat, - bytestring, - containers, - generic-aeson, - generic-xmlpickler, - hxt, - json-schema, - mtl, - rest-core, - rest-gen, - safe, - stm, - text, - time, - transformers, - transformers-compat, - unordered-containers, - }: - mkDerivation { - pname = "rest-example"; - version = "0.2.0.4"; - sha256 = "0ci83v554dv9k7bw1vga04k0yrf4hcf76isvdmhhdanj7929kk92"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson - base - base-compat - bytestring - containers - generic-aeson - generic-xmlpickler - hxt - json-schema - mtl - rest-core - safe - stm - text - time - transformers - transformers-compat - unordered-containers - ]; - executableHaskellDepends = [ - base - base-compat - rest-gen - ]; - description = "Example project for rest"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "rest-example-gen"; - } - ) { }; - - "rest-gen" = callPackage ( - { - mkDerivation, - aeson, - base, - base-compat, - blaze-html, - Cabal, - code-builder, - directory, - fclabels, - filepath, - hashable, - haskell-src-exts, - HStringTemplate, - HUnit, - hxt, - json-schema, - pretty, - process, - rest-core, - safe, - scientific, - semigroups, - split, - test-framework, - test-framework-hunit, - text, - uniplate, - unordered-containers, - vector, - }: - mkDerivation { - pname = "rest-gen"; - version = "0.20.0.3"; - sha256 = "1kd8i5kqjsdc3pl5gpg3i3lhy807qd6x4gxc86hr9a8kkv7y7hfn"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - aeson - base - base-compat - blaze-html - Cabal - code-builder - directory - fclabels - filepath - hashable - haskell-src-exts - HStringTemplate - hxt - json-schema - pretty - process - rest-core - safe - scientific - semigroups - split - text - uniplate - unordered-containers - vector - ]; - testHaskellDepends = [ - base - fclabels - haskell-src-exts - HUnit - rest-core - test-framework - test-framework-hunit - ]; - description = "Documentation and client generation from rest definition"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "rest-happstack" = callPackage ( - { - mkDerivation, - base, - containers, - happstack-server, - mtl, - rest-core, - rest-gen, - utf8-string, - }: - mkDerivation { - pname = "rest-happstack"; - version = "0.3.1.1"; - sha256 = "1xjg745ydnw1mybkx2239wrj0jh9sy5mgx11gqwrbfcn5kmhckvr"; - revision = "2"; - editedCabalFile = "0yr1407fds0h73ijw6iivqq15ybiz3n6s555vxgaay4j4k4pkax9"; - libraryHaskellDepends = [ - base - containers - happstack-server - mtl - rest-core - rest-gen - utf8-string - ]; - description = "Rest driver for Happstack"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "rest-rewrite" = callPackage ( @@ -571846,156 +331380,6 @@ self: { inherit (pkgs) z3; }; - "rest-snap" = callPackage ( - { - mkDerivation, - base, - base-compat, - bytestring, - case-insensitive, - rest-core, - safe, - snap-core, - unordered-containers, - uri-encode, - utf8-string, - }: - mkDerivation { - pname = "rest-snap"; - version = "0.3.0.0"; - sha256 = "1s38xrmg90y80rxmz1kf5wfxq7dgf63xysicg0jfawwl3sy88iff"; - libraryHaskellDepends = [ - base - base-compat - bytestring - case-insensitive - rest-core - safe - snap-core - unordered-containers - uri-encode - utf8-string - ]; - description = "Rest driver for Snap"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "rest-stringmap" = callPackage ( - { - mkDerivation, - aeson, - base, - containers, - hashable, - hxt, - json-schema, - tostring, - unordered-containers, - }: - mkDerivation { - pname = "rest-stringmap"; - version = "0.2.0.7"; - sha256 = "0l2l46c1mqpxq7hi37vjhaihfyapifjaxbzyi1bdhjkybx7n9m32"; - libraryHaskellDepends = [ - aeson - base - containers - hashable - hxt - json-schema - tostring - unordered-containers - ]; - description = "Maps with stringy keys that can be transcoded to JSON and XML"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "rest-types" = callPackage ( - { - mkDerivation, - aeson, - base, - base-compat, - case-insensitive, - generic-aeson, - generic-xmlpickler, - hxt, - json-schema, - rest-stringmap, - text, - uuid, - }: - mkDerivation { - pname = "rest-types"; - version = "1.14.1.2"; - sha256 = "0cjxnb4zvj7iafgy9h4wq8817wkm1mvas45xcb9346kwd3yqgvmy"; - revision = "1"; - editedCabalFile = "06wjl45ravvw4vjwpl15r6qdpj3va7hpsk04z1bh8xh1by0r2yhz"; - libraryHaskellDepends = [ - aeson - base - base-compat - case-insensitive - generic-aeson - generic-xmlpickler - hxt - json-schema - rest-stringmap - text - uuid - ]; - description = "Silk Rest Framework Types"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "rest-wai" = callPackage ( - { - mkDerivation, - base, - base-compat, - bytestring, - case-insensitive, - containers, - http-types, - mime-types, - mtl, - rest-core, - text, - unordered-containers, - wai, - }: - mkDerivation { - pname = "rest-wai"; - version = "0.2.0.1"; - sha256 = "00hd7i28p5diy00m18yi6f2jp5cxbvb9s2fv24phakjsp2vmw81q"; - revision = "2"; - editedCabalFile = "1n3sd3vszi0ifw098jf2yan8xcnrxckr22jssl61k0vn74573hw3"; - libraryHaskellDepends = [ - base - base-compat - bytestring - case-insensitive - containers - http-types - mime-types - mtl - rest-core - text - unordered-containers - wai - ]; - description = "Rest driver for WAI applications"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "restartable" = callPackage ( { mkDerivation, @@ -572075,6 +331459,7 @@ self: { ]; license = lib.licenses.bsd3; hydraPlatforms = lib.platforms.none; + broken = true; } ) { }; @@ -572119,85 +331504,6 @@ self: { } ) { }; - "restricted-workers" = callPackage ( - { - mkDerivation, - async, - base, - bytestring, - cereal, - data-default, - directory, - either, - filepath, - monad-control, - mtl, - network, - selinux, - stm, - text, - transformers, - transformers-base, - unix, - }: - mkDerivation { - pname = "restricted-workers"; - version = "0.1.1"; - sha256 = "0lxipqp8nsgw07hmb4b8rfxlfmfhj0l7sg8k0042qscys92rzg9l"; - libraryHaskellDepends = [ - async - base - bytestring - cereal - data-default - directory - either - filepath - monad-control - mtl - network - selinux - stm - text - transformers - transformers-base - unix - ]; - description = "Running worker processes under system resource restrictions"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "restyle" = callPackage ( - { - mkDerivation, - base, - directory, - filepath, - utf8-string, - }: - mkDerivation { - pname = "restyle"; - version = "0.1.0"; - sha256 = "0hzkdg4f5h96zqznnrbjbxrzv17gz1zvd5g4a51rrpsgpngkax7x"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base ]; - executableHaskellDepends = [ - base - directory - filepath - utf8-string - ]; - description = "Convert between camel case and separated words style"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - mainProgram = "restyle"; - broken = true; - } - ) { }; - "result" = callPackage ( { mkDerivation, @@ -572224,27 +331530,6 @@ self: { } ) { }; - "resumable-exceptions" = callPackage ( - { - mkDerivation, - base, - mtl, - }: - mkDerivation { - pname = "resumable-exceptions"; - version = "0.0.0.20100920"; - sha256 = "06lzjf8dcbxks57x434n27146whryzzpwcn8bq2mclwfcrv9g3gs"; - libraryHaskellDepends = [ - base - mtl - ]; - description = "A monad transformer for resumable exceptions"; - license = "unknown"; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "ret" = callPackage ( { mkDerivation, @@ -572275,220 +331560,6 @@ self: { } ) { }; - "rethinkdb" = callPackage ( - { - mkDerivation, - aeson, - async, - base, - base64-bytestring, - binary, - bytestring, - containers, - criterion, - data-default, - doctest, - mtl, - network, - scientific, - text, - time, - unordered-containers, - utf8-string, - vector, - }: - mkDerivation { - pname = "rethinkdb"; - version = "2.2.0.10"; - sha256 = "0lkq2cbc5hbbcbxb9kd0pmmy28k0rp66fwprmhb7jgkfqpggrcxv"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson - base - base64-bytestring - binary - bytestring - containers - data-default - mtl - network - scientific - text - time - unordered-containers - utf8-string - vector - ]; - testHaskellDepends = [ - base - doctest - ]; - benchmarkHaskellDepends = [ - aeson - async - base - criterion - text - ]; - description = "A driver for RethinkDB 2.2"; - license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "rethinkdb-client-driver" = callPackage ( - { - mkDerivation, - aeson, - base, - binary, - bytestring, - containers, - criterion, - hashable, - hspec, - hspec-smallcheck, - mtl, - network, - old-locale, - scientific, - smallcheck, - stm, - template-haskell, - text, - time, - unordered-containers, - vector, - }: - mkDerivation { - pname = "rethinkdb-client-driver"; - version = "0.0.25"; - sha256 = "15l9z7ki81cv97lajxcbddavbd254c5adcdi8yw6df31rmbc378g"; - revision = "5"; - editedCabalFile = "051fgkx8zdlbpnsgvqm4jqk9a21xszz9sdhcmchx6h4ilyn7byjy"; - libraryHaskellDepends = [ - aeson - base - binary - bytestring - containers - hashable - mtl - network - old-locale - scientific - stm - template-haskell - text - time - unordered-containers - vector - ]; - testHaskellDepends = [ - base - hspec - hspec-smallcheck - smallcheck - text - time - unordered-containers - vector - ]; - benchmarkHaskellDepends = [ - base - criterion - text - time - unordered-containers - vector - ]; - description = "Client driver for RethinkDB"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "rethinkdb-model" = callPackage ( - { - mkDerivation, - aeson, - base, - mtl, - rethinkdb, - text, - transformers, - unordered-containers, - }: - mkDerivation { - pname = "rethinkdb-model"; - version = "0.1.0.2"; - sha256 = "15993912bw3v09c6fiqnjcjcpd77px61kq276v1aaqdbahzpzw2q"; - libraryHaskellDepends = [ - aeson - base - mtl - rethinkdb - text - transformers - unordered-containers - ]; - description = "Useful tools for modeling data with rethinkdb"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "rethinkdb-wereHamster" = callPackage ( - { - mkDerivation, - aeson, - attoparsec, - base, - bytestring, - containers, - data-default, - ghc-prim, - mtl, - network, - protocol-buffers, - protocol-buffers-descriptor, - text, - time, - unordered-containers, - utf8-string, - vector, - }: - mkDerivation { - pname = "rethinkdb-wereHamster"; - version = "1.8.0.5"; - sha256 = "0wkxf1iixy9rnl2rawima61qpjz77g4w08dd13q004g6c1n0h6kq"; - libraryHaskellDepends = [ - aeson - attoparsec - base - bytestring - containers - data-default - ghc-prim - mtl - network - protocol-buffers - protocol-buffers-descriptor - text - time - unordered-containers - utf8-string - vector - ]; - description = "RethinkDB driver for Haskell"; - license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "retrie_1_1_0_0" = callPackage ( { mkDerivation, @@ -572853,32 +331924,6 @@ self: { } ) { }; - "retryer" = callPackage ( - { - mkDerivation, - base, - optparse-applicative, - process, - }: - mkDerivation { - pname = "retryer"; - version = "0.1.0.1"; - sha256 = "1rvblmzlsyfvvvjz71ngb8l412rrr943s7pp75gqjcxnklnlc97j"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - optparse-applicative - process - ]; - description = "Retry failed commands"; - license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; - mainProgram = "retryer"; - broken = true; - } - ) { }; - "rev-scientific" = callPackage ( { mkDerivation, base }: mkDerivation { @@ -572957,37 +332002,6 @@ self: { } ) { }; - "reverse-geocoding" = callPackage ( - { - mkDerivation, - aeson, - base, - iso3166-country-codes, - lens, - lens-aeson, - text, - wreq, - }: - mkDerivation { - pname = "reverse-geocoding"; - version = "0.3.0.0"; - sha256 = "1c3qpclyhrn5vrgzl97p2gc3d2j1w6amkw7wlxb1il6cm9rd376j"; - libraryHaskellDepends = [ - aeson - base - iso3166-country-codes - lens - lens-aeson - text - wreq - ]; - description = "Simple reverse geocoding using OpenStreeMap"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "reverse-list" = callPackage ( { mkDerivation, @@ -573015,128 +332029,6 @@ self: { } ) { }; - "reversi" = callPackage ( - { - mkDerivation, - array, - base, - process, - }: - mkDerivation { - pname = "reversi"; - version = "0.1.1"; - sha256 = "1dddlldp55c6l7g5n2gi8r1r0f8r6r3ipq9mlx11d54j8wmvvlnz"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - array - base - process - ]; - description = "Text-only reversi (aka othelo) game"; - license = lib.licenses.lgpl3Only; - hydraPlatforms = lib.platforms.none; - mainProgram = "reversi"; - broken = true; - } - ) { }; - - "rewrite" = callPackage ( - { - mkDerivation, - base, - bytestring, - directory, - multiarg, - process, - }: - mkDerivation { - pname = "rewrite"; - version = "0.10"; - sha256 = "10cbsjilc4nv4hi4ipb078hiy7afnjl20f9kcda15pmpmqxxywjg"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - bytestring - directory - multiarg - process - ]; - description = "open file and rewrite it with new contents"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "rewrite"; - } - ) { }; - - "rewrite-inspector" = callPackage ( - { - mkDerivation, - base, - binary, - brick, - containers, - data-default, - hashable, - microlens, - microlens-th, - prettyprinter, - text, - vty, - }: - mkDerivation { - pname = "rewrite-inspector"; - version = "0.1.0.11"; - sha256 = "05k923qjf9w5lvwhi918nqscxzxvpcsw5lbw9sgrgbh0bijw6j3r"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - binary - brick - containers - data-default - hashable - microlens - microlens-th - prettyprinter - text - vty - ]; - executableHaskellDepends = [ - base - prettyprinter - ]; - description = "Inspection of rewriting steps"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "rewriting" = callPackage ( - { - mkDerivation, - base, - containers, - regular, - }: - mkDerivation { - pname = "rewriting"; - version = "0.2.2"; - sha256 = "0gnd8awqjnm905m29yldy3z7w7jvilj5svijz63lzmwbjknfh6bs"; - libraryHaskellDepends = [ - base - containers - regular - ]; - description = "Generic rewriting library for regular datatypes"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "rex" = callPackage ( { mkDerivation, @@ -573167,412 +332059,6 @@ self: { } ) { }; - "rezoom" = callPackage ( - { - mkDerivation, - base, - bytestring, - containers, - datetime, - HTTP, - json, - mtl, - nano-md5, - xhtml, - }: - mkDerivation { - pname = "rezoom"; - version = "0.0.4"; - sha256 = "122hca6whzxqk3x7207k4clrrl2awy96pafq0gjwddqicny41jza"; - isLibrary = false; - isExecutable = true; - enableSeparateDataOutput = true; - executableHaskellDepends = [ - base - bytestring - containers - datetime - HTTP - json - mtl - nano-md5 - xhtml - ]; - description = "Github resume generator"; - license = "GPL"; - hydraPlatforms = lib.platforms.none; - mainProgram = "rezoom"; - } - ) { }; - - "rfc" = callPackage ( - { - mkDerivation, - aeson, - aeson-diff, - attoparsec, - base, - binary, - blaze-html, - bytestring, - classy-prelude, - containers, - data-default, - envy, - hedis, - http-api-data, - http-client, - http-client-tls, - http-types, - lens, - lifted-async, - markdown, - miso, - monad-control, - mono-traversable, - mtl, - natural-transformation, - network, - network-uri, - postgresql-typed, - resource-pool, - servant, - servant-blaze, - servant-client, - servant-docs, - servant-server, - servant-swagger, - simple-logger, - swagger2, - temporary, - text, - text-conversions, - time, - time-units, - unliftio, - unliftio-core, - unordered-containers, - url, - uuid-types, - wai, - wai-cli, - wai-cors, - wai-extra, - warp, - wreq, - }: - mkDerivation { - pname = "rfc"; - version = "0.0.0.25"; - sha256 = "1yzi8cb90iy54wi463cpk9h961k53cilgdjcf252yw4qsvxcqh5i"; - libraryHaskellDepends = [ - aeson - aeson-diff - attoparsec - base - binary - blaze-html - bytestring - classy-prelude - containers - data-default - envy - hedis - http-api-data - http-client - http-client-tls - http-types - lens - lifted-async - markdown - miso - monad-control - mono-traversable - mtl - natural-transformation - network - network-uri - postgresql-typed - resource-pool - servant - servant-blaze - servant-client - servant-docs - servant-server - servant-swagger - simple-logger - swagger2 - temporary - text - text-conversions - time - time-units - unliftio - unliftio-core - unordered-containers - url - uuid-types - wai - wai-cli - wai-cors - wai-extra - warp - wreq - ]; - description = "Robert Fischer's Common library"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "rfc-env" = callPackage ( - { - mkDerivation, - base, - envy, - network, - rfc-prelude, - time, - }: - mkDerivation { - pname = "rfc-env"; - version = "0.0.0.1"; - sha256 = "1s3r5wpap3rj7fxx1wvxjk5671jcnllvplz631vagwbyl9p755zh"; - libraryHaskellDepends = [ - base - envy - network - rfc-prelude - time - ]; - description = "Environment variable support from the Robert Fischer Commons"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "rfc-http-client" = callPackage ( - { - mkDerivation, - aeson, - base, - http-client, - http-client-tls, - http-types, - lens, - network-uri, - rfc-prelude, - scientific, - servant-server, - vector, - wreq, - }: - mkDerivation { - pname = "rfc-http-client"; - version = "0.0.0.1"; - sha256 = "0ksmv0vhprc8d2ck003jim03js5ifqw1vg7319afmwzzmqp8lwn1"; - libraryHaskellDepends = [ - aeson - base - http-client - http-client-tls - http-types - lens - network-uri - rfc-prelude - scientific - servant-server - vector - wreq - ]; - description = "The HTTP client extensions from the Robert Fischer Commons"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "rfc-prelude" = callPackage ( - { - mkDerivation, - aeson, - base, - bifunctors, - bytestring, - classy-prelude, - containers, - data-default, - http-api-data, - integer-logarithms, - lens, - monad-control, - network-uri, - text, - text-conversions, - time, - time-units, - transformers, - tuple, - unliftio, - unliftio-core, - uuid-types, - }: - mkDerivation { - pname = "rfc-prelude"; - version = "0.0.0.2"; - sha256 = "1d2kvmidbglc60p3zy6wd9af6w27b303znqh09rjms5ifri0k6kf"; - revision = "1"; - editedCabalFile = "1jvqvj93hc73wkjszfan5zc95sr8wmgwqzf3d2saa6fkzfclg23y"; - libraryHaskellDepends = [ - aeson - base - bifunctors - bytestring - classy-prelude - containers - data-default - http-api-data - integer-logarithms - lens - monad-control - network-uri - text - text-conversions - time - time-units - transformers - tuple - unliftio - unliftio-core - uuid-types - ]; - description = "The Prelude from the Robert Fischer Commons"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "rfc-psql" = callPackage ( - { - mkDerivation, - base, - bytestring, - network, - postgresql-typed, - resource-pool, - rfc-env, - rfc-prelude, - transformers, - }: - mkDerivation { - pname = "rfc-psql"; - version = "0.0.0.1"; - sha256 = "1vaahacbk0c1zv7md6sb5lymncbzr7xxfn31cmd4dd8gjwdfk4zb"; - libraryHaskellDepends = [ - base - bytestring - network - postgresql-typed - resource-pool - rfc-env - rfc-prelude - transformers - ]; - description = "The PostgreSQL extensions from the Robert Fischer Commons"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "rfc-redis" = callPackage ( - { - mkDerivation, - base, - hedis, - rfc-env, - rfc-prelude, - time, - }: - mkDerivation { - pname = "rfc-redis"; - version = "0.0.0.1"; - sha256 = "00r8mghkgqgf6mh4v5jspahdcpb3bj5i82rmiyasv01a7gp6gzsg"; - libraryHaskellDepends = [ - base - hedis - rfc-env - rfc-prelude - time - ]; - description = "The Redis extensions from the Robert Fischer Commons"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "rfc-servant" = callPackage ( - { - mkDerivation, - aeson, - amazonka, - base, - binary, - blaze-html, - data-default, - http-types, - lens, - markdown, - natural-transformation, - rfc-http-client, - rfc-prelude, - rfc-psql, - rfc-redis, - servant, - servant-blaze, - servant-docs, - servant-server, - servant-swagger, - servant-swagger-ui, - swagger2, - wai, - wreq, - }: - mkDerivation { - pname = "rfc-servant"; - version = "0.0.0.1"; - sha256 = "1p4j2lv4hj6bxqbanj4w0j00d1qm7np94gp7ap1kmjkdznsl4vhz"; - libraryHaskellDepends = [ - aeson - amazonka - base - binary - blaze-html - data-default - http-types - lens - markdown - natural-transformation - rfc-http-client - rfc-prelude - rfc-psql - rfc-redis - servant - servant-blaze - servant-docs - servant-server - servant-swagger - servant-swagger-ui - swagger2 - wai - wreq - ]; - description = "The Servant extensions from the Robert Fischer Commons"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "rfc1413-server" = callPackage ( { mkDerivation, @@ -574023,39 +332509,6 @@ self: { } ) { }; - "rhythm-game-tutorial" = callPackage ( - { - mkDerivation, - base, - call, - containers, - lens, - mtl, - objective, - split, - }: - mkDerivation { - pname = "rhythm-game-tutorial"; - version = "0.1.1"; - sha256 = "08ddm1pxi7qdjz2mgvjvwdgxyskvac4ahi3jp2fd8z1sh68c7x7s"; - isLibrary = false; - isExecutable = true; - enableSeparateDataOutput = true; - executableHaskellDepends = [ - base - call - containers - lens - mtl - objective - split - ]; - description = "Haskell rhythm game tutorial"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "rhythmic-sequences" = callPackage ( { mkDerivation, base }: mkDerivation { @@ -574691,116 +333144,6 @@ self: { } ) { }; - "ribosome-root" = callPackage ( - { - mkDerivation, - aeson, - ansi-terminal, - base-noprelude, - bytestring, - chiasma, - composition-extra, - conduit, - containers, - cornea, - data-default, - deepseq, - directory, - either, - exceptions, - filepath, - hslogger, - HTF, - lens, - lifted-base, - messagepack, - MissingH, - monad-control, - mtl, - nvim-hs, - pretty-terminal, - prettyprinter, - prettyprinter-ansi-terminal, - process, - relude, - resourcet, - ribosome, - ribosome-test, - safe, - split, - stm, - template-haskell, - text, - th-abstraction, - time, - transformers, - transformers-base, - typed-process, - unix, - unliftio, - unliftio-core, - utf8-string, - }: - mkDerivation { - pname = "ribosome-root"; - version = "0.3.0.0"; - sha256 = "0x2mgx4wsx3ridvvsjf5pssdgdj1af9bvgc4gmwf4vll43b9x603"; - isLibrary = false; - isExecutable = false; - testHaskellDepends = [ - aeson - ansi-terminal - base-noprelude - bytestring - chiasma - composition-extra - conduit - containers - cornea - data-default - deepseq - directory - either - exceptions - filepath - hslogger - HTF - lens - lifted-base - messagepack - MissingH - monad-control - mtl - nvim-hs - pretty-terminal - prettyprinter - prettyprinter-ansi-terminal - process - relude - resourcet - ribosome - ribosome-test - safe - split - stm - template-haskell - text - th-abstraction - time - transformers - transformers-base - typed-process - unix - unliftio - unliftio-core - utf8-string - ]; - description = "api extensions for nvim-hs"; - license = "unknown"; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "ribosome-test" = callPackage ( { mkDerivation, @@ -575052,161 +333395,6 @@ self: { } ) { }; - "riemann" = callPackage ( - { - mkDerivation, - base, - bytestring, - cereal, - containers, - data-default, - directory, - doctest, - errors, - filepath, - http-client, - HUnit, - lens, - mtl, - network, - protobuf, - QuickCheck, - test-framework, - test-framework-hunit, - test-framework-quickcheck2, - text, - time, - transformers, - wreq, - }: - mkDerivation { - pname = "riemann"; - version = "0.1.1.0"; - sha256 = "1h0hdlz5yw091h5i7mgvj0gqg7ckqkb5rwaprxqqn0klg6cx81c9"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - bytestring - cereal - containers - data-default - errors - lens - mtl - network - protobuf - text - time - transformers - ]; - executableHaskellDepends = [ - base - bytestring - cereal - containers - data-default - errors - http-client - lens - mtl - network - protobuf - text - time - transformers - wreq - ]; - testHaskellDepends = [ - base - directory - doctest - filepath - HUnit - QuickCheck - test-framework - test-framework-hunit - test-framework-quickcheck2 - ]; - description = "A Riemann client for Haskell"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - mainProgram = "riemann-client"; - broken = true; - } - ) { }; - - "riff" = callPackage ( - { - mkDerivation, - base, - binary, - bytestring, - either, - filepath, - transformers, - }: - mkDerivation { - pname = "riff"; - version = "0.3.0.1"; - sha256 = "1970bsg1ngc6mzsyj8mapzar0h1wkdb4skfz64d0ccdfpipp5hdb"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - binary - bytestring - either - transformers - ]; - executableHaskellDepends = [ - base - bytestring - filepath - ]; - description = "RIFF parser for Haskell"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "rigel-viz" = callPackage ( - { - mkDerivation, - aeson, - base, - bytestring, - colour, - containers, - hspec, - QuickCheck, - text, - }: - mkDerivation { - pname = "rigel-viz"; - version = "0.2.0.0"; - sha256 = "0z6c6hynisf5165c4izh31bfr4zcdik13ww5c4ylpqzxsig2z5xs"; - libraryHaskellDepends = [ - aeson - base - bytestring - colour - containers - text - ]; - testHaskellDepends = [ - base - hspec - QuickCheck - ]; - description = "A mid-level wrapper for vega-lite"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "ring-buffer" = callPackage ( { mkDerivation, @@ -575275,39 +333463,6 @@ self: { } ) { }; - "rings" = callPackage ( - { - mkDerivation, - adjunctions, - base, - containers, - distributive, - lawz, - magmas, - profunctors, - semigroupoids, - }: - mkDerivation { - pname = "rings"; - version = "0.1.3"; - sha256 = "0w0jvmj7x62fs0k5vah47mbdasiqjs9kphvrfbdma4i59899w5y1"; - libraryHaskellDepends = [ - adjunctions - base - containers - distributive - lawz - magmas - profunctors - semigroupoids - ]; - description = "Ring-like objects"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "rio" = callPackage ( { mkDerivation, @@ -575602,179 +333757,6 @@ self: { } ) { }; - "riot" = callPackage ( - { - mkDerivation, - base, - containers, - directory, - haskell98, - mtl, - ncurses, - old-locale, - packedstring, - process, - unix, - }: - mkDerivation { - pname = "riot"; - version = "1.20080618"; - sha256 = "1dgdwr9d0jl3r78f4shx0ff22vqlq72n5w5whw3ppirm8ccxf0ms"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - containers - directory - haskell98 - mtl - old-locale - packedstring - process - unix - ]; - executableSystemDepends = [ ncurses ]; - description = "Riot is an Information Organisation Tool"; - license = "GPL"; - hydraPlatforms = lib.platforms.none; - mainProgram = "riot"; - } - ) { inherit (pkgs) ncurses; }; - - "ripple" = callPackage ( - { - mkDerivation, - aeson, - attoparsec, - base, - base58address, - binary, - bytestring, - cereal, - crypto-api, - crypto-pubkey-types, - cryptohash-cryptoapi, - ecdsa, - errors, - largeword, - text, - time, - transformers, - utility-ht, - websockets, - }: - mkDerivation { - pname = "ripple"; - version = "0.3"; - sha256 = "1y19kp63chg4ljcccq6cp9n3g26x6jyyhch3jqj04ya9c16cbypw"; - libraryHaskellDepends = [ - aeson - attoparsec - base - base58address - binary - bytestring - cereal - crypto-api - crypto-pubkey-types - cryptohash-cryptoapi - ecdsa - errors - largeword - text - time - transformers - utility-ht - websockets - ]; - description = "Ripple payment system library"; - license = "unknown"; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "ripple-federation" = callPackage ( - { - mkDerivation, - aeson, - attoparsec, - base, - base58address, - blaze-builder, - bytestring, - errors, - http-streams, - http-types, - io-streams, - network-uri, - text, - unexceptionalio, - }: - mkDerivation { - pname = "ripple-federation"; - version = "0.3"; - sha256 = "0m7mlv8qmw257hnk9lngxvq3nskninl88f5hl77r7w8r5hbymf0s"; - libraryHaskellDepends = [ - aeson - attoparsec - base - base58address - blaze-builder - bytestring - errors - http-streams - http-types - io-streams - network-uri - text - unexceptionalio - ]; - description = "Utilities and types to work with the Ripple federation protocol"; - license = "unknown"; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "risc-v" = callPackage ( - { - mkDerivation, - base, - base-unicode-symbols, - clash-prelude, - criterion, - smallcheck, - tasty, - tasty-smallcheck, - util, - }: - mkDerivation { - pname = "risc-v"; - version = "0.0.2.0"; - sha256 = "1g6j9illgqraskcp4rjzk3xvdwf4avn1x732sd6jbm99d7vy9c1f"; - revision = "1"; - editedCabalFile = "0gp1mf452hnd82gppy12w0nfaaa21jrmivb6720r330z22iqc42h"; - libraryHaskellDepends = [ - base - base-unicode-symbols - clash-prelude - util - ]; - testHaskellDepends = [ - base - smallcheck - tasty - tasty-smallcheck - ]; - benchmarkHaskellDepends = [ - base - criterion - ]; - description = "RISC-V"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "risc386" = callPackage ( { mkDerivation, @@ -575813,37 +333795,6 @@ self: { } ) { }; - "riscv-isa" = callPackage ( - { - mkDerivation, - base, - hspec, - mtl, - QuickCheck, - }: - mkDerivation { - pname = "riscv-isa"; - version = "0.1.0.0"; - sha256 = "06l9ky28jhxgm7bnngc45v10jfq6i151sgngrjbvv8yhc5qy123a"; - revision = "1"; - editedCabalFile = "0wvy4j5ffn3pm06dklcp89gcdvfa8296y2zqnvby4ryb10np767r"; - libraryHaskellDepends = [ - base - mtl - QuickCheck - ]; - testHaskellDepends = [ - base - hspec - QuickCheck - ]; - description = "Haskell representation of the RISC-V instruction set architecture"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "risk-weaver" = callPackage ( { mkDerivation, @@ -575910,101 +333861,6 @@ self: { } ) { }; - "rison" = callPackage ( - { - mkDerivation, - aeson, - attoparsec, - base, - bytestring, - hspec, - scientific, - text, - unordered-containers, - vector, - }: - mkDerivation { - pname = "rison"; - version = "1.1.0.0"; - sha256 = "16qry419786ggvbalr1wk74a4ba7ny7bcr8399myk3039gp7na1r"; - libraryHaskellDepends = [ - aeson - attoparsec - base - bytestring - scientific - text - unordered-containers - vector - ]; - testHaskellDepends = [ - aeson - attoparsec - base - bytestring - hspec - scientific - text - unordered-containers - vector - ]; - description = "Parses and renders RISON strings"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "rivers" = callPackage ( - { - mkDerivation, - base, - lazysmallcheck, - oeis, - QuickCheck, - }: - mkDerivation { - pname = "rivers"; - version = "0.1.0"; - sha256 = "0x7r04mwxwnqckfk865dckml4am11zx80a9k5kc91kz5ikq1ns64"; - libraryHaskellDepends = [ - base - lazysmallcheck - oeis - QuickCheck - ]; - description = "Rivers are like Streams, but different"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "rivet" = callPackage ( - { - mkDerivation, - base, - rivet-core, - rivet-simple-deploy, - }: - mkDerivation { - pname = "rivet"; - version = "0.1.0.0"; - sha256 = "1hiwgn0xyl42y9cmmc25464y42w7grf68xv8cvjznwzv0v1v63cg"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - rivet-core - rivet-simple-deploy - ]; - description = "A project management tool for Haskell applications"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "rivet"; - } - ) { }; - "rivet-adaptor-postgresql" = callPackage ( { mkDerivation, @@ -576072,122 +333928,6 @@ self: { } ) { }; - "rivet-migration" = callPackage ( - { - mkDerivation, - base, - postgresql-simple, - text, - }: - mkDerivation { - pname = "rivet-migration"; - version = "0.1.0.1"; - sha256 = "1vg6ns5scq5nqyj2w070hswynji8pqfh654qa3zjda2xhna5mnbd"; - libraryHaskellDepends = [ - base - postgresql-simple - text - ]; - description = "Postgresql migration support for project management tool"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "rivet-simple-deploy" = callPackage ( - { - mkDerivation, - base, - configurator, - mtl, - rivet-core, - text, - }: - mkDerivation { - pname = "rivet-simple-deploy"; - version = "0.1.0.0"; - sha256 = "1003sm8mpnc7l7fbp1j08cvc55va54arp6j0qdg2cc2m8cy5bpxf"; - libraryHaskellDepends = [ - base - configurator - mtl - rivet-core - text - ]; - description = "Basic deployment support for project management tool"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "rl-satton" = callPackage ( - { - mkDerivation, - base, - containers, - directory, - filepath, - hashable, - lens, - mersenne-random-pure64, - monad-loops, - MonadRandom, - mtl, - parsec, - pretty-show, - process, - random, - stm, - template-haskell, - text, - time, - transformers, - unordered-containers, - }: - mkDerivation { - pname = "rl-satton"; - version = "0.1.2.4"; - sha256 = "1xa05d7z9hy38jrhkcdhgqzcjdbx74hjzql5wifmcxdw8jy3mxr4"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - containers - directory - filepath - hashable - lens - mersenne-random-pure64 - monad-loops - MonadRandom - mtl - parsec - pretty-show - process - random - stm - template-haskell - text - time - transformers - unordered-containers - ]; - executableHaskellDepends = [ - base - containers - mtl - unordered-containers - ]; - description = "Collection of Reinforcement Learning algorithms"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "example"; - broken = true; - } - ) { }; - "rle" = callPackage ( { mkDerivation, @@ -576233,55 +333973,6 @@ self: { } ) { }; - "rlglue" = callPackage ( - { - mkDerivation, - base, - binary, - bytestring, - data-binary-ieee754, - exceptions, - network, - network-simple, - parsec, - random, - transformers, - }: - mkDerivation { - pname = "rlglue"; - version = "0.2.2.0"; - sha256 = "0672j0xjlhyyfq2fbvnfc0gahihpkkcfh7nnbwh1salgy0ykzhq0"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - binary - bytestring - data-binary-ieee754 - exceptions - network - network-simple - parsec - transformers - ]; - executableHaskellDepends = [ - base - binary - bytestring - data-binary-ieee754 - exceptions - network - network-simple - random - transformers - ]; - description = "A Haskell codec for RL-Glue"; - license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "rlist" = callPackage ( { mkDerivation, base }: mkDerivation { @@ -576294,72 +333985,6 @@ self: { } ) { }; - "rlwe-challenges" = callPackage ( - { - mkDerivation, - ansi-terminal, - base, - bytestring, - containers, - directory, - DRBG, - filepath, - http-client, - http-conduit, - lol, - lol-cpp, - MonadRandom, - mtl, - nist-beacon, - options, - parsec, - protocol-buffers, - protocol-buffers-descriptor, - reflection, - tagged, - time, - }: - mkDerivation { - pname = "rlwe-challenges"; - version = "0.1.0.1"; - sha256 = "1qzrz64s6wxrkyw5d9h5zk8ipswpy17fan527nxw3bbb8fp49sgn"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - ansi-terminal - base - bytestring - containers - directory - DRBG - filepath - http-client - http-conduit - lol - lol-cpp - MonadRandom - mtl - nist-beacon - parsec - protocol-buffers - protocol-buffers-descriptor - reflection - tagged - time - ]; - executableHaskellDepends = [ - ansi-terminal - base - options - time - ]; - description = "Ring-LWE/LWR challenges using Lol"; - license = lib.licenses.gpl2Only; - hydraPlatforms = lib.platforms.none; - mainProgram = "rlwe-challenges"; - } - ) { }; - "rme" = callPackage ( { mkDerivation, @@ -576412,40 +334037,6 @@ self: { } ) { }; - "rmonad" = callPackage ( - { - mkDerivation, - base, - containers, - HUnit, - suitable, - test-framework, - test-framework-hunit, - transformers, - }: - mkDerivation { - pname = "rmonad"; - version = "0.8.0.2"; - sha256 = "1pamp8n88f1y4q0q83vmvbqbfva03prcfdqfj3x888mjwxgh6h8l"; - libraryHaskellDepends = [ - base - containers - suitable - transformers - ]; - testHaskellDepends = [ - base - containers - HUnit - test-framework - test-framework-hunit - ]; - description = "Restricted monad library"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "rncryptor" = callPackage ( { mkDerivation, @@ -576510,6 +334101,7 @@ self: { description = "Haskell implementation of the RNCryptor file format"; license = lib.licenses.mit; hydraPlatforms = lib.platforms.none; + broken = true; } ) { }; @@ -576606,56 +334198,6 @@ self: { } ) { }; - "robin" = callPackage ( - { - mkDerivation, - base, - Cabal, - directory, - filepath, - fsnotify, - hdaemonize, - lens, - lifted-base, - monad-control, - mtl, - process, - resourcet, - text, - time, - unix, - }: - mkDerivation { - pname = "robin"; - version = "0.1.0.0"; - sha256 = "14gamdqp81y1zbq91k2nl6pcznxlym1ivir8f4xagv3m91mn5a1m"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - Cabal - directory - filepath - fsnotify - hdaemonize - lens - lifted-base - monad-control - mtl - process - resourcet - text - time - unix - ]; - description = "A build daemon for Haskell development"; - license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - mainProgram = "robin"; - broken = true; - } - ) { }; - "roboservant" = callPackage ( { mkDerivation, @@ -576751,32 +334293,6 @@ self: { } ) { }; - "robot" = callPackage ( - { - mkDerivation, - base, - containers, - exceptions, - transformers, - xhb, - }: - mkDerivation { - pname = "robot"; - version = "1.4"; - sha256 = "1vac4ks3kdyf9wdiiw224rz2nm5859np7cqjpl5mrb2h27bycv5c"; - libraryHaskellDepends = [ - base - containers - exceptions - transformers - xhb - ]; - description = "Simulate keyboard and mouse events"; - license = "unknown"; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "robots-txt" = callPackage ( { mkDerivation, @@ -576819,65 +334335,6 @@ self: { } ) { }; - "roc-cluster" = callPackage ( - { - mkDerivation, - base, - hspec, - HUnit, - vector, - }: - mkDerivation { - pname = "roc-cluster"; - version = "0.1.0.0"; - sha256 = "0pwx4dz1bsqbvni9x12h4x7y7fi9kg2zw1n43a512m6lfykzsk8s"; - revision = "1"; - editedCabalFile = "0q1h70mx90dr3hcqgmp7gj9ypk235jyv71qgzzdr50is4r07j9hd"; - libraryHaskellDepends = [ - base - vector - ]; - testHaskellDepends = [ - base - hspec - HUnit - ]; - description = "ROC online clustering algorithm"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "roc-cluster-demo" = callPackage ( - { - mkDerivation, - base, - containers, - gloss, - optparse-applicative, - roc-cluster, - }: - mkDerivation { - pname = "roc-cluster-demo"; - version = "0.1.0.0"; - sha256 = "1jg9idadx1vq0jvlwilxggyf2ak67sjbnq2c1znrlys1cvbxi7q2"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - containers - gloss - optparse-applicative - roc-cluster - ]; - description = "Gloss interactive demo for roc-cluster package"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "roc-cluster-demo"; - } - ) { }; - "roc-id" = callPackage ( { mkDerivation, @@ -576966,6 +334423,7 @@ self: { description = "A build system for incremental, parallel, and demand-driven computations"; license = lib.licenses.bsd3; hydraPlatforms = lib.platforms.none; + broken = true; } ) { }; @@ -577099,191 +334557,6 @@ self: { } ) { }; - "roguestar" = callPackage ( - { - mkDerivation, - base, - bytestring, - directory, - filepath, - old-time, - process, - }: - mkDerivation { - pname = "roguestar"; - version = "0.6.0.1"; - sha256 = "0xnpji131pva54drxjqra5nkciqljf4x6zylm3snzs8s4c7klak6"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - bytestring - directory - filepath - old-time - process - ]; - description = "Sci-fi roguelike game. Client application."; - license = "unknown"; - hydraPlatforms = lib.platforms.none; - mainProgram = "roguestar"; - broken = true; - } - ) { }; - - "roguestar-engine" = callPackage ( - { - mkDerivation, - array, - base, - bytestring, - containers, - data-memocombinators, - hslogger, - MaybeT, - MonadRandom, - mtl, - old-time, - parallel, - priority-sync, - PSQueue, - random, - stm, - }: - mkDerivation { - pname = "roguestar-engine"; - version = "0.6.0.1"; - sha256 = "056080bzdmrn6k0c9lx2d69l2ygal275xlkd6y31sj2ax9yizqkv"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - array - base - bytestring - containers - data-memocombinators - hslogger - MaybeT - MonadRandom - mtl - old-time - parallel - priority-sync - PSQueue - random - stm - ]; - description = "Sci-fi roguelike game. Backend."; - license = "unknown"; - hydraPlatforms = lib.platforms.none; - mainProgram = "roguestar-engine"; - } - ) { }; - - "roguestar-gl" = callPackage ( - { - mkDerivation, - arrows, - base, - bytestring, - containers, - filepath, - GLUT, - MonadRandom, - mtl, - OpenGL, - priority-sync, - random, - rsagl, - rsagl-frp, - rsagl-math, - stm, - }: - mkDerivation { - pname = "roguestar-gl"; - version = "0.6.0.1"; - sha256 = "1lajrc6ay1vk9rbi3x8mx56rrsxkihmapzfm7l8aav2jx0wwryzs"; - libraryHaskellDepends = [ - arrows - base - bytestring - containers - filepath - GLUT - MonadRandom - mtl - OpenGL - priority-sync - random - rsagl - rsagl-frp - rsagl-math - stm - ]; - description = "Sci-fi roguelike game. Client library."; - license = "unknown"; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "roguestar-glut" = callPackage ( - { - mkDerivation, - base, - GLUT, - roguestar-gl, - rsagl, - }: - mkDerivation { - pname = "roguestar-glut"; - version = "0.6.0.1"; - sha256 = "13kg8mabh0y1a48zjx9f9k207i5qn0hkabjyg10ha5d0kf36xbyh"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - GLUT - roguestar-gl - rsagl - ]; - description = "Sci-fi roguelike game. GLUT front-end."; - license = "unknown"; - hydraPlatforms = lib.platforms.none; - mainProgram = "roguestar-glut"; - } - ) { }; - - "roku-api" = callPackage ( - { - mkDerivation, - base, - bytestring, - http-client, - network, - text, - xml, - xml-extractors, - }: - mkDerivation { - pname = "roku-api"; - version = "0.1.0.0"; - sha256 = "01vqmzqpdj40qxym3iapn1csr10ld9a9imci1pyncdly6q3a343c"; - libraryHaskellDepends = [ - base - bytestring - http-client - network - text - xml - xml-extractors - ]; - description = "Bindings to Roku's External Control API"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "roles" = callPackage ( { mkDerivation, @@ -577423,63 +334696,6 @@ self: { } ) { }; - "rollbar-hs" = callPackage ( - { - mkDerivation, - aeson, - base, - bytestring, - case-insensitive, - hostname, - hspec, - hspec-golden-aeson, - http-client, - http-conduit, - http-types, - network, - QuickCheck, - text, - time, - unordered-containers, - uuid, - }: - mkDerivation { - pname = "rollbar-hs"; - version = "0.3.1.0"; - sha256 = "1il3rfzf0rmddm3yqsgz6rhyai3m3z6mn3f00irc7955sl320qn8"; - libraryHaskellDepends = [ - aeson - base - bytestring - case-insensitive - hostname - http-client - http-conduit - http-types - network - text - time - unordered-containers - uuid - ]; - testHaskellDepends = [ - aeson - base - bytestring - case-insensitive - hspec - hspec-golden-aeson - QuickCheck - text - unordered-containers - ]; - description = "Core Rollbar data types and APIs"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "rollbar-wai" = callPackage ( { mkDerivation, @@ -577581,40 +334797,6 @@ self: { } ) { }; - "roller" = callPackage ( - { - mkDerivation, - base, - optparse-applicative, - random, - regex-applicative, - }: - mkDerivation { - pname = "roller"; - version = "0.1.7"; - sha256 = "14zi83xqmph404s9lzqv2fmabsrnmmij3w8fylz9br29sxfw1dza"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - optparse-applicative - random - regex-applicative - ]; - executableHaskellDepends = [ - base - optparse-applicative - random - regex-applicative - ]; - description = "Playing with applicatives and dice!"; - license = lib.licenses.gpl2Only; - hydraPlatforms = lib.platforms.none; - mainProgram = "roller"; - broken = true; - } - ) { }; - "rolling-queue" = callPackage ( { mkDerivation, @@ -577634,31 +334816,6 @@ self: { } ) { }; - "roman-numerals" = callPackage ( - { - mkDerivation, - base, - base-unicode-symbols, - bytestring, - text, - }: - mkDerivation { - pname = "roman-numerals"; - version = "0.5.1.5"; - sha256 = "10da5vls9l5i255bapms4b2r7dnwmxgsaa1cdll2lrmid5dikixr"; - libraryHaskellDepends = [ - base - base-unicode-symbols - bytestring - text - ]; - description = "Parsing and pretty printing of Roman numerals"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "romkan" = callPackage ( { mkDerivation, @@ -577817,130 +334974,6 @@ self: { } ) { }; - "ron-rdt" = callPackage ( - { - mkDerivation, - base, - containers, - Diff, - hashable, - integer-gmp, - mtl, - ron, - text, - time, - transformers, - unordered-containers, - }: - mkDerivation { - pname = "ron-rdt"; - version = "0.10"; - sha256 = "1dsplv4g0nflkns1yyx6lqf83qnc5y1bycgfydwa9hn1kliqf73c"; - libraryHaskellDepends = [ - base - containers - Diff - hashable - integer-gmp - mtl - ron - text - time - transformers - unordered-containers - ]; - description = "Replicated Data Types (RON-RDT)"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "ron-schema" = callPackage ( - { - mkDerivation, - base, - bytestring, - containers, - hedn, - integer-gmp, - megaparsec, - mtl, - ron, - ron-rdt, - template-haskell, - text, - transformers, - }: - mkDerivation { - pname = "ron-schema"; - version = "0.9.1"; - sha256 = "0pw398dq30bq554yfc9c6x43ng3bv5qx7mdw18ira92zlf5yh3qc"; - libraryHaskellDepends = [ - base - bytestring - containers - hedn - integer-gmp - megaparsec - mtl - ron - ron-rdt - template-haskell - text - transformers - ]; - description = "RON-Schema"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "ron-storage" = callPackage ( - { - mkDerivation, - base, - bytestring, - containers, - directory, - filepath, - fsnotify, - integer-gmp, - mtl, - network-info, - ron, - ron-rdt, - stm, - text, - tf-random, - transformers, - }: - mkDerivation { - pname = "ron-storage"; - version = "0.11"; - sha256 = "1c8spi1bpjxkv8lj1rkqfs8ra4yg7x6shjyawpdz4wna11cdpydx"; - libraryHaskellDepends = [ - base - bytestring - containers - directory - filepath - fsnotify - integer-gmp - mtl - network-info - ron - ron-rdt - stm - text - tf-random - transformers - ]; - description = "RON Storage"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "ronn" = callPackage ( { mkDerivation, @@ -578088,33 +335121,6 @@ self: { } ) { }; - "rope" = callPackage ( - { - mkDerivation, - base, - bytestring, - fingertree, - mtl, - utf8-string, - }: - mkDerivation { - pname = "rope"; - version = "0.6.4"; - sha256 = "1g77bv2mmfhy2mkb08k92m3f2jab6p2la2s7rfib2r1jy6lq5vhb"; - libraryHaskellDepends = [ - base - bytestring - fingertree - mtl - utf8-string - ]; - description = "Tools for manipulating fingertrees of bytestrings with optional annotations"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "rope-utf16-splay" = callPackage ( { mkDerivation, @@ -578214,109 +335220,6 @@ self: { } ) { }; - "rose-trees" = callPackage ( - { - mkDerivation, - base, - containers, - criterion, - deepseq, - hashable, - mtl, - QuickCheck, - quickcheck-instances, - semigroupoids, - semigroups, - sets, - tasty, - tasty-quickcheck, - unordered-containers, - witherable, - }: - mkDerivation { - pname = "rose-trees"; - version = "0.0.4.5"; - sha256 = "0ql6wdsq1dpx0bbgs6798c6h4wyw9xcbr64shr7pvl9fwivdl6j7"; - libraryHaskellDepends = [ - base - containers - deepseq - hashable - mtl - QuickCheck - quickcheck-instances - semigroupoids - semigroups - sets - unordered-containers - witherable - ]; - testHaskellDepends = [ - base - containers - deepseq - hashable - mtl - QuickCheck - quickcheck-instances - semigroupoids - semigroups - sets - tasty - tasty-quickcheck - unordered-containers - witherable - ]; - benchmarkHaskellDepends = [ - base - containers - criterion - deepseq - hashable - mtl - QuickCheck - quickcheck-instances - semigroupoids - semigroups - sets - unordered-containers - witherable - ]; - description = "Various trie implementations in Haskell"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "rose-trie" = callPackage ( - { - mkDerivation, - base, - containers, - deepseq, - minilens, - mtl, - transformers, - }: - mkDerivation { - pname = "rose-trie"; - version = "1.0.0.5"; - sha256 = "0753nvppi86a2qij4cliv9pmy0mbdbnf5ckp4zgmwn1rlv4jhqwx"; - libraryHaskellDepends = [ - base - containers - deepseq - minilens - mtl - transformers - ]; - description = "Trees with polymorphic paths to nodes, combining properties of Rose Trees and Tries"; - license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "rosebud" = callPackage ( { mkDerivation, @@ -578369,254 +335272,6 @@ self: { } ) { }; - "roshask" = callPackage ( - { - mkDerivation, - attoparsec, - base, - binary, - BoundedChan, - bytestring, - Cabal, - containers, - data-default-generics, - deepseq, - directory, - filemanip, - filepath, - haxr, - mtl, - network, - parsec, - process, - pureMD5, - SafeSemaphore, - snap-core, - snap-server, - stm, - storable-tuple, - tasty, - tasty-hunit, - template-haskell, - testpack, - time, - transformers, - unix, - uri, - utf8-string, - vector, - vector-space, - xml, - }: - mkDerivation { - pname = "roshask"; - version = "0.2.1"; - sha256 = "12sa8ir9cl2gygayk3vhd00shv3wy3sqyhf4hh6arml5q7wz1f3m"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - binary - BoundedChan - bytestring - Cabal - containers - directory - filemanip - filepath - haxr - mtl - network - parsec - process - SafeSemaphore - snap-core - snap-server - stm - storable-tuple - template-haskell - time - transformers - unix - uri - utf8-string - vector - vector-space - xml - ]; - executableHaskellDepends = [ - attoparsec - base - binary - bytestring - containers - data-default-generics - deepseq - directory - filemanip - filepath - mtl - process - pureMD5 - vector - xml - ]; - testHaskellDepends = [ - attoparsec - base - bytestring - containers - data-default-generics - filepath - mtl - pureMD5 - tasty - tasty-hunit - testpack - transformers - ]; - description = "Haskell support for the ROS robotics framework"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "roshask"; - } - ) { }; - - "rosmsg" = callPackage ( - { - mkDerivation, - attoparsec, - base, - binary, - bytestring, - data-default-class, - lens-family-core, - pureMD5, - template-haskell, - text, - }: - mkDerivation { - pname = "rosmsg"; - version = "0.5.2.0"; - sha256 = "191692089w4h5d6936vfmz3mdlyv57qhl7ww4dc0dqk11zz4lrcl"; - libraryHaskellDepends = [ - attoparsec - base - binary - bytestring - data-default-class - lens-family-core - pureMD5 - template-haskell - text - ]; - description = "ROS message parser, render, TH"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "rosmsg-bin" = callPackage ( - { - mkDerivation, - base, - filepath, - monad-logger, - rosmsg, - rospkg, - stack, - temporary, - text, - }: - mkDerivation { - pname = "rosmsg-bin"; - version = "0.1.0.0"; - sha256 = "0915l7s92g2pdgjv85a0a7315cn4ikh4yjcyn1hv5j62dvhjnmbl"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - filepath - monad-logger - rosmsg - rospkg - stack - temporary - text - ]; - description = "ROS message management tools"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "rospkg" = callPackage ( - { - mkDerivation, - async, - base, - bytestring, - directory, - fast-tagsoup, - filepath, - split, - tagsoup, - text, - }: - mkDerivation { - pname = "rospkg"; - version = "0.2.3.0"; - sha256 = "12ldkprm4hank6hgq2z8vq5clwm3kghksm8a3qp86jkznw3zszr3"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - async - base - bytestring - directory - fast-tagsoup - filepath - split - tagsoup - text - ]; - executableHaskellDepends = [ - base - text - ]; - testHaskellDepends = [ base ]; - description = "ROS package system information"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "rospkg"; - broken = true; - } - ) { }; - - "rosso" = callPackage ( - { - mkDerivation, - base, - containers, - deepseq, - }: - mkDerivation { - pname = "rosso"; - version = "1.0"; - sha256 = "0cz5kqpvq9qjkdy2x3y6aqia3armawjjsnv2pxifl0l6f9hhrvis"; - libraryHaskellDepends = [ - base - containers - deepseq - ]; - description = "General purpose utility library"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "rot13" = callPackage ( { mkDerivation, @@ -578628,61 +335283,22 @@ self: { }: mkDerivation { pname = "rot13"; - version = "0.2.0.1"; - sha256 = "1p6lrjgigzbjigsyfsmx3kxrzm1aws3i708yl4xyh73arhcd89p0"; - libraryHaskellDepends = [ - base - bytestring - text - ]; - testHaskellDepends = [ - base - bytestring - hspec - QuickCheck - text - ]; - description = "Fast ROT13 cipher for Haskell"; - license = lib.licenses.bsd3; - } - ) { }; - - "rotating-log" = callPackage ( - { - mkDerivation, - base, - bytestring, - directory, - filepath, - old-locale, - time, - time-locale-compat, - }: - mkDerivation { - pname = "rotating-log"; - version = "0.4.3"; - sha256 = "1xpfm07kd6mz13zwzmrwcp2cmc0dr0j94nhy1gzw1064jmd7b482"; + version = "0.2.0.1"; + sha256 = "1p6lrjgigzbjigsyfsmx3kxrzm1aws3i708yl4xyh73arhcd89p0"; libraryHaskellDepends = [ base bytestring - directory - filepath - old-locale - time - time-locale-compat + text ]; testHaskellDepends = [ base bytestring - directory - filepath - time - time-locale-compat + hspec + QuickCheck + text ]; - description = "Size-limited, concurrent, automatically-rotating log writer"; + description = "Fast ROT13 cipher for Haskell"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; } ) { }; @@ -578820,29 +335436,6 @@ self: { } ) { }; - "rounding" = callPackage ( - { - mkDerivation, - array, - base, - numeric-extras, - }: - mkDerivation { - pname = "rounding"; - version = "0.3.0"; - sha256 = "1d2vaijcna8gwcrhsjpclqw4gjdvdpmnrlyszqzcxnqf0l206a6y"; - libraryHaskellDepends = [ - array - base - numeric-extras - ]; - description = "Explicit floating point rounding mode wrappers"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "roundtrip" = callPackage ( { mkDerivation, @@ -578872,54 +335465,6 @@ self: { } ) { }; - "roundtrip-aeson" = callPackage ( - { - mkDerivation, - aeson, - base, - bytestring, - containers, - lens, - lens-aeson, - roundtrip, - scientific, - text, - unordered-containers, - vector, - }: - mkDerivation { - pname = "roundtrip-aeson"; - version = "0.3.0.2"; - sha256 = "0qlsmmcidiagjyb3kfp1hplkkzpibgxw31j7cxhma3l2gs2yal6f"; - libraryHaskellDepends = [ - aeson - base - bytestring - containers - lens - lens-aeson - roundtrip - scientific - text - unordered-containers - vector - ]; - testHaskellDepends = [ - aeson - base - bytestring - lens-aeson - roundtrip - text - vector - ]; - description = "Un-/parse JSON with roundtrip invertible syntax definitions"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "roundtrip-string" = callPackage ( { mkDerivation, @@ -578943,163 +335488,6 @@ self: { } ) { }; - "roundtrip-xml" = callPackage ( - { - mkDerivation, - base, - blaze-builder, - blaze-builder-enumerator, - bytestring, - containers, - enumerator, - mtl, - pretty, - reference, - roundtrip, - roundtrip-string, - safe, - text, - xml-enumerator, - xml-types, - }: - mkDerivation { - pname = "roundtrip-xml"; - version = "0.3.0.5"; - sha256 = "1gl649saiaj1biqda64wmpbnv5f3njm3rmfgvf1iavyliqgrwn9m"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - blaze-builder - blaze-builder-enumerator - bytestring - containers - enumerator - mtl - pretty - reference - roundtrip - roundtrip-string - safe - text - xml-enumerator - xml-types - ]; - description = "Bidirectional (de-)serialization for XML"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "route-generator" = callPackage ( - { - mkDerivation, - attoparsec, - base, - network, - text, - yesod-routes, - }: - mkDerivation { - pname = "route-generator"; - version = "0.6.1"; - sha256 = "0bfrb3mz9nxrl4l5pikrp3x4igq4w9jlmvwikyc71ph8ks6rghc6"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - attoparsec - base - network - text - yesod-routes - ]; - description = "Utility to generate routes for use with yesod-routes"; - license = "unknown"; - hydraPlatforms = lib.platforms.none; - mainProgram = "routeGenerator"; - } - ) { }; - - "route-planning" = callPackage ( - { - mkDerivation, - base, - containers, - coordinate, - directory, - doctest, - filepath, - lens, - QuickCheck, - semigroupoids, - semigroups, - text, - xsd, - }: - mkDerivation { - pname = "route-planning"; - version = "0.0.3"; - sha256 = "0l3z9hjd8xqnahffg930qi13pf8cpiq44diqmpmh1narcllcbgj7"; - libraryHaskellDepends = [ - base - containers - coordinate - lens - semigroupoids - semigroups - text - xsd - ]; - testHaskellDepends = [ - base - directory - doctest - filepath - QuickCheck - ]; - description = "A library and utilities for creating a route"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "row" = callPackage ( - { - mkDerivation, - base, - base-unicode-symbols, - criterion, - smallcheck, - tasty, - tasty-smallcheck, - util, - }: - mkDerivation { - pname = "row"; - version = "0.0.0.0"; - sha256 = "16iy0b0aqvpn1dnw96h8vp4354774c0lp7fq4qibqwd8bv99mmps"; - libraryHaskellDepends = [ - base - base-unicode-symbols - util - ]; - testHaskellDepends = [ - base - smallcheck - tasty - tasty-smallcheck - ]; - benchmarkHaskellDepends = [ - base - criterion - ]; - doHaddock = false; - description = "Row types"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "row-types" = callPackage ( { mkDerivation, @@ -579248,29 +335636,6 @@ self: { } ) { }; - "rowrecord" = callPackage ( - { - mkDerivation, - base, - containers, - template-haskell, - }: - mkDerivation { - pname = "rowrecord"; - version = "0.1"; - sha256 = "0gcrdy75f0rqfayn37frwcixb086x4s7dygphxhxbpvyl8sjnl0l"; - libraryHaskellDepends = [ - base - containers - template-haskell - ]; - description = "Build records from lists of strings, as from CSV files"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "rp-tree" = callPackage ( { mkDerivation, @@ -579349,144 +335714,6 @@ self: { } ) { }; - "rpc" = callPackage ( - { - mkDerivation, - base, - bytestring, - cereal, - containers, - derive, - network-fancy, - template-haskell, - th-lift, - }: - mkDerivation { - pname = "rpc"; - version = "0.0.1"; - sha256 = "0bw92pmnkfq1azw08ygpmp1z856l3ybhmxkfhy4sfds769k2s4j9"; - libraryHaskellDepends = [ - base - bytestring - cereal - containers - derive - network-fancy - template-haskell - th-lift - ]; - description = "type safe rpcs provided as basic IO actions"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "rpc-framework" = callPackage ( - { - mkDerivation, - base, - containers, - mtl, - network, - template-haskell, - transformers, - }: - mkDerivation { - pname = "rpc-framework"; - version = "2.0.0.2"; - sha256 = "0avjbw9zsa6nsjlwmb1lll0n80j9ggniwpy9sllaam83r6jpxhqq"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - containers - mtl - network - template-haskell - transformers - ]; - executableHaskellDepends = [ base ]; - description = "a remote procedure call framework"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "rpc-test"; - broken = true; - } - ) { }; - - "rpf" = callPackage ( - { - mkDerivation, - appar, - base, - blaze-builder, - bytestring, - c10k, - containers, - dns, - domain-auth, - hslogger, - iproute, - parsec, - unix, - }: - mkDerivation { - pname = "rpf"; - version = "0.2.5"; - sha256 = "0x40j5rk8v61wzhcj730g75a97ikki7j22dfrh4z873b6mxwfh4k"; - isLibrary = false; - isExecutable = true; - enableSeparateDataOutput = true; - executableHaskellDepends = [ - appar - base - blaze-builder - bytestring - c10k - containers - dns - domain-auth - hslogger - iproute - parsec - unix - ]; - description = "Receiver Policy Framework"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "rpf"; - } - ) { }; - - "rpm" = callPackage ( - { - mkDerivation, - base, - directory, - filepath, - HaXml, - process, - }: - mkDerivation { - pname = "rpm"; - version = "0.0.1"; - sha256 = "1wvaf1llcw4xcp8hmd80scqlk490qfiv5sqncpjmafw7zanrab4z"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - directory - filepath - HaXml - process - ]; - description = "Cozy little project to question unruly rpm packages"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "rpm-nvr" = callPackage ( { mkDerivation, @@ -579682,130 +335909,6 @@ self: { } ) { }; - "rsagl" = callPackage ( - { - mkDerivation, - array, - arrows, - base, - containers, - data-memocombinators, - deepseq, - mtl, - old-time, - OpenGL, - OpenGLRaw, - parallel, - parsec, - random, - rsagl-frp, - rsagl-math, - stm, - Vec, - Vec-OpenGLRaw, - }: - mkDerivation { - pname = "rsagl"; - version = "0.6.0.1"; - sha256 = "0f1f6kksrz1ghn6jhbdqsh4rhpkp65ccc4ci2fn5kmmw7qxzal59"; - libraryHaskellDepends = [ - array - arrows - base - containers - data-memocombinators - deepseq - mtl - old-time - OpenGL - OpenGLRaw - parallel - parsec - random - rsagl-frp - rsagl-math - stm - Vec - Vec-OpenGLRaw - ]; - description = "The RogueStar Animation and Graphics Library"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "rsagl-frp" = callPackage ( - { - mkDerivation, - array, - arrows, - base, - containers, - mtl, - old-time, - random, - rsagl-math, - stm, - }: - mkDerivation { - pname = "rsagl-frp"; - version = "0.6.0.1"; - sha256 = "0lim4slnhy1sq449kmvs489xy4axryn6qkk32hkzmlwvw8hqpl01"; - libraryHaskellDepends = [ - array - arrows - base - containers - mtl - old-time - random - rsagl-math - stm - ]; - description = "The RogueStar Animation and Graphics Library: Functional Reactive Programming"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "rsagl-math" = callPackage ( - { - mkDerivation, - array, - base, - containers, - deepseq, - OpenGL, - OpenGLRaw, - parallel, - parsec, - random, - Vec, - Vec-OpenGLRaw, - }: - mkDerivation { - pname = "rsagl-math"; - version = "0.6.0.1"; - sha256 = "04i1l6zb1jm784gdr86jrfm5m999px7ymzwwr5nyh69dk1730znn"; - libraryHaskellDepends = [ - array - base - containers - deepseq - OpenGL - OpenGLRaw - parallel - parsec - random - Vec - Vec-OpenGLRaw - ]; - description = "The RogueStar Animation and Graphics Library: Mathematics"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "rset" = callPackage ( { mkDerivation, @@ -579881,20 +335984,6 @@ self: { } ) { }; - "rspp" = callPackage ( - { mkDerivation, base }: - mkDerivation { - pname = "rspp"; - version = "0.1.0.1"; - sha256 = "132s7pbm49fgpiq7znr72h52wcmwblljblr0s0krr56593gp2rry"; - libraryHaskellDepends = [ base ]; - description = "A Rational Street Performer Protocol solver"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "rss" = callPackage ( { mkDerivation, @@ -580010,97 +336099,6 @@ self: { } ) { }; - "rss2irc" = callPackage ( - { - mkDerivation, - base, - bytestring, - cmdargs, - containers, - deepseq, - feed, - http-client, - http-conduit, - http-types, - io-storage, - irc, - network, - network-uri, - old-locale, - parsec, - regexpr, - resourcet, - safe, - SafeSemaphore, - split, - stm, - text, - time, - transformers, - utf8-string, - }: - mkDerivation { - pname = "rss2irc"; - version = "1.2"; - sha256 = "00q684w6s9ixwrci6sfpzzw2hrsl7j29g07d9j5a5j9csz0cr8gg"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - bytestring - cmdargs - containers - deepseq - feed - http-client - http-conduit - http-types - io-storage - irc - network - network-uri - old-locale - parsec - regexpr - resourcet - safe - SafeSemaphore - split - stm - text - time - transformers - utf8-string - ]; - description = "watches an RSS/Atom feed and writes it to an IRC channel"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "rss2irc"; - broken = true; - } - ) { }; - - "rstream" = callPackage ( - { - mkDerivation, - base, - ghc-prim, - }: - mkDerivation { - pname = "rstream"; - version = "0.1.0.0"; - sha256 = "14l2jww91w993b61xn1m9y9wh27dvy1l1x2fh7g9f0l8mc5a9dpv"; - libraryHaskellDepends = [ - base - ghc-prim - ]; - description = "stream-fusion framework from vector"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "rt" = callPackage ( { mkDerivation, base }: mkDerivation { @@ -580113,80 +336111,6 @@ self: { } ) { }; - "rtcm" = callPackage ( - { - mkDerivation, - aeson, - array, - base, - base64-bytestring, - basic-prelude, - binary, - binary-bits, - binary-conduit, - bytestring, - conduit, - conduit-extra, - lens, - lens-aeson, - random, - tasty, - tasty-hunit, - tasty-quickcheck, - template-haskell, - text, - word24, - }: - mkDerivation { - pname = "rtcm"; - version = "0.2.39"; - sha256 = "1hqsbi1bazdsy62qp1rmwmrqsp3dhm9i9iksj7d5iyfndciijpjs"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson - array - base - base64-bytestring - basic-prelude - binary - binary-bits - bytestring - lens - lens-aeson - template-haskell - text - word24 - ]; - executableHaskellDepends = [ - aeson - base - basic-prelude - binary-conduit - bytestring - conduit - conduit-extra - ]; - testHaskellDepends = [ - base - basic-prelude - binary - binary-bits - bytestring - lens - random - tasty - tasty-hunit - tasty-quickcheck - text - word24 - ]; - description = "Haskell bindings for RTCM"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "rtld" = callPackage ( { mkDerivation, base }: mkDerivation { @@ -580219,56 +336143,6 @@ self: { } ) { inherit (pkgs) rtl-sdr; }; - "rtnetlink" = callPackage ( - { - mkDerivation, - base, - bits-bytestring, - bytestring, - cereal, - exceptions, - hspec, - linux-namespaces, - pretty-hex, - random, - socket, - transformers, - unix, - }: - mkDerivation { - pname = "rtnetlink"; - version = "0.2.0.1"; - sha256 = "1ly3cgkbnz24p33vlgbllmxx25f0b3d1rzr05gzcnhjlg7nxwwga"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - bits-bytestring - bytestring - cereal - exceptions - pretty-hex - random - socket - transformers - unix - ]; - testHaskellDepends = [ - base - bytestring - exceptions - hspec - linux-namespaces - socket - unix - ]; - description = "Manipulate network devices, addresses, and routes on Linux"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "rtorrent-rpc" = callPackage ( { mkDerivation, @@ -580320,126 +336194,6 @@ self: { } ) { }; - "rtorrent-state" = callPackage ( - { - mkDerivation, - base, - bencoding, - bytestring, - containers, - directory, - filepath, - hspec, - lens, - QuickCheck, - temporary, - utf8-string, - }: - mkDerivation { - pname = "rtorrent-state"; - version = "0.1.0.1"; - sha256 = "0lh7plp9qwlya0dnfvz2sg8nhg42vnrypi2p8rh6i278glniwn90"; - libraryHaskellDepends = [ - base - bencoding - bytestring - containers - directory - filepath - lens - utf8-string - ]; - testHaskellDepends = [ - base - bencoding - bytestring - containers - directory - filepath - hspec - QuickCheck - temporary - utf8-string - ]; - description = "Parsing and manipulation of rtorrent state file contents"; - license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "rts-loader" = callPackage ( - { - mkDerivation, - base, - Cabal, - directory, - filepath, - process, - unix, - zenc, - }: - mkDerivation { - pname = "rts-loader"; - version = "0.0.0.3"; - sha256 = "1rpgi9jp577gv8hb3hpnp4g6dbpnb8s6hgvvjc0wc014gys7zgzz"; - isLibrary = true; - isExecutable = true; - setupHaskellDepends = [ - base - Cabal - filepath - ]; - libraryHaskellDepends = [ - base - Cabal - directory - filepath - unix - zenc - ]; - executableHaskellDepends = [ - base - Cabal - process - ]; - description = "Dynamically load Haskell libraries"; - license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "rubberband" = callPackage ( - { - mkDerivation, - base, - c2hs, - rubberband, - vector, - }: - mkDerivation { - pname = "rubberband"; - version = "0.1.0.2"; - sha256 = "15j402a7vwrx6sjn29jrby4qxc27c1aa4mkbalssn8jlpjhlpffm"; - revision = "3"; - editedCabalFile = "17kws58vhdh71vhn3s06pk03ns49zp36svb56qy9pif8gnm8zz9x"; - libraryHaskellDepends = [ - base - vector - ]; - librarySystemDepends = [ rubberband ]; - libraryPkgconfigDepends = [ rubberband ]; - libraryToolDepends = [ c2hs ]; - testHaskellDepends = [ base ]; - description = "Binding to the C++ audio stretching library Rubber Band"; - license = lib.licenses.gpl3Only; - badPlatforms = lib.platforms.darwin; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { inherit (pkgs) rubberband; }; - "ruby-marshal" = callPackage ( { mkDerivation, @@ -580489,201 +336243,6 @@ self: { } ) { }; - "ruby-qq" = callPackage ( - { - mkDerivation, - base, - bytestring, - haskell-src-exts, - haskell-src-meta, - pcre-light, - process, - template-haskell, - trifecta, - }: - mkDerivation { - pname = "ruby-qq"; - version = "0.1.0.0"; - sha256 = "1d2a31kiiv0p8d2yygpg8mgrz0xy6zh5qnf49hz70yk2vavkcac1"; - libraryHaskellDepends = [ - base - bytestring - haskell-src-exts - haskell-src-meta - pcre-light - process - template-haskell - trifecta - ]; - description = "rubyish quasiquoters"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "ruff" = callPackage ( - { - mkDerivation, - array, - base, - mtl, - parsec, - safe, - strict, - Vec, - }: - mkDerivation { - pname = "ruff"; - version = "0.4.0.1"; - sha256 = "1id3rpfzqwhnmv2w4p35a70zfanwrpazix27ak1hzaz1jd2yfmz5"; - libraryHaskellDepends = [ - array - base - mtl - parsec - safe - strict - Vec - ]; - description = "relatively useful fractal functions"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "ruin" = callPackage ( - { - mkDerivation, - base, - binary, - cereal, - deepseq, - ghc-prim, - hspec, - lens, - mtl, - optparse-applicative, - parsec, - should-not-typecheck, - smallcheck, - template-haskell, - unordered-containers, - }: - mkDerivation { - pname = "ruin"; - version = "0.1.0.1"; - sha256 = "07alapqmbi50132ji1gx7l42ps7v4xmp3b9cqyn4gphiadwsrdyk"; - libraryHaskellDepends = [ - base - binary - cereal - deepseq - ghc-prim - parsec - template-haskell - unordered-containers - ]; - testHaskellDepends = [ - base - hspec - lens - mtl - optparse-applicative - should-not-typecheck - smallcheck - template-haskell - ]; - description = "Pliable records"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "ruler" = callPackage ( - { - mkDerivation, - base, - Cabal, - containers, - mtl, - shuffle, - uhc-util, - uuagc, - uuagc-cabal, - uulib, - }: - mkDerivation { - pname = "ruler"; - version = "0.4.1.0"; - sha256 = "1qa0d2jaws5wn2npjcsc66m59d64dxbm074h7lkysawdgq9hzdy1"; - isLibrary = false; - isExecutable = true; - setupHaskellDepends = [ - base - Cabal - shuffle - uuagc - uuagc-cabal - ]; - executableHaskellDepends = [ - base - Cabal - containers - mtl - shuffle - uhc-util - uuagc - uuagc-cabal - uulib - ]; - description = "Ruler tool for UHC"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "ruler"; - } - ) { }; - - "ruler-core" = callPackage ( - { - mkDerivation, - array, - base, - containers, - directory, - fgl, - filepath, - haskell98, - mtl, - uuagc, - uulib, - }: - mkDerivation { - pname = "ruler-core"; - version = "1.0"; - sha256 = "06c55pdfkh9vcmmzlf485d0qxczgd2xj1ajkz277df72p29xvrgd"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - array - base - containers - directory - fgl - filepath - haskell98 - mtl - uuagc - uulib - ]; - license = "LGPL"; - hydraPlatforms = lib.platforms.none; - mainProgram = "ruler-core"; - } - ) { }; - "run-haskell-module" = callPackage ( { mkDerivation, @@ -580829,38 +336388,6 @@ self: { } ) { }; - "runmany" = callPackage ( - { - mkDerivation, - async, - base, - bytestring, - optparse-applicative, - process, - stm, - }: - mkDerivation { - pname = "runmany"; - version = "0.1.3"; - sha256 = "19pgmq009f5kpsilixbnsx5frl9c12v6in0blifandr9q3n9is9c"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - async - base - bytestring - optparse-applicative - process - stm - ]; - description = "Run multiple commands, interleaving output and errors"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "runmany"; - broken = true; - } - ) { }; - "runmemo" = callPackage ( { mkDerivation, @@ -580882,30 +336409,6 @@ self: { } ) { }; - "runtime-arbitrary" = callPackage ( - { - mkDerivation, - base, - ifcxt, - QuickCheck, - template-haskell, - }: - mkDerivation { - pname = "runtime-arbitrary"; - version = "0.1.0.6"; - sha256 = "1lb9c174vmbcjpm4y1j2jwngbzx5s0s1iiq8iam5g87h475k2bh1"; - libraryHaskellDepends = [ - base - ifcxt - QuickCheck - template-haskell - ]; - description = "Runtime generation of Arbitrary values"; - license = lib.licenses.publicDomain; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "runtime-instances" = callPackage ( { mkDerivation, @@ -581008,48 +336511,6 @@ self: { } ) { rustls = null; }; - "rv" = callPackage ( - { - mkDerivation, - base, - base-unicode-symbols, - criterion, - Fin, - peano, - smallcheck, - tasty, - tasty-smallcheck, - util, - word, - }: - mkDerivation { - pname = "rv"; - version = "0.0.1.0"; - sha256 = "0xsrd9djlns840h4i7pgh4g793hdrjw8xhf6bnw8yxaf56j1znci"; - libraryHaskellDepends = [ - base - base-unicode-symbols - Fin - peano - util - word - ]; - testHaskellDepends = [ - base - smallcheck - tasty - tasty-smallcheck - ]; - benchmarkHaskellDepends = [ - base - criterion - ]; - description = "RISC-V"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "rvar" = callPackage ( { mkDerivation, @@ -581100,47 +336561,6 @@ self: { } ) { }; - "rws" = callPackage ( - { - mkDerivation, - base, - binary, - bytestring, - parsec, - QuickCheck, - test-framework, - test-framework-quickcheck2, - }: - mkDerivation { - pname = "rws"; - version = "0.1.1.2"; - sha256 = "1ildbmnpdh8x25m6kjdc6506cjgngjmjhvrdfkrcwg5cdqcqs266"; - isLibrary = false; - isExecutable = true; - enableSeparateDataOutput = true; - executableHaskellDepends = [ - base - binary - bytestring - parsec - ]; - testHaskellDepends = [ - base - binary - bytestring - parsec - QuickCheck - test-framework - test-framework-quickcheck2 - ]; - description = "Packet Generation"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "rws"; - broken = true; - } - ) { }; - "rz-pipe" = callPackage ( { mkDerivation, @@ -581359,34 +336779,6 @@ self: { } ) { }; - "s-expression" = callPackage ( - { - mkDerivation, - base, - derive-monoid, - lens, - semigroups, - }: - mkDerivation { - pname = "s-expression"; - version = "0.0.0"; - sha256 = "03spihdqi0844pbcx99p4ygr621fjfnlph3c52zhhilij9w32p6c"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - derive-monoid - lens - semigroups - ]; - executableHaskellDepends = [ base ]; - description = "simple general-purpose s-expressions"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - mainProgram = "example-s-expressions"; - } - ) { }; - "s3-signer" = callPackage ( { mkDerivation, @@ -581458,78 +336850,6 @@ self: { } ) { }; - "safe-access" = callPackage ( - { - mkDerivation, - base, - mtl, - transformers, - }: - mkDerivation { - pname = "safe-access"; - version = "0.3.3.1"; - sha256 = "13fw3b4sgrqymkq27n0727y5m8d3h6h44lfb9faip98bakr5d8v5"; - libraryHaskellDepends = [ - base - mtl - transformers - ]; - description = "A simple environment to control access to data"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "safe-buffer-monad" = callPackage ( - { - mkDerivation, - base, - hspec, - mtl, - safe-exceptions, - stm, - unliftio, - }: - mkDerivation { - pname = "safe-buffer-monad"; - version = "0.1.0"; - sha256 = "0l82m3llk6haxzswk8hxkhn1gn37y0zzzan1dnkcg35gk7a9vakd"; - libraryHaskellDepends = [ - base - mtl - safe-exceptions - stm - ]; - testHaskellDepends = [ - base - hspec - mtl - safe-exceptions - stm - unliftio - ]; - description = "A monadic buffer resilient to exceptions"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "safe-coerce" = callPackage ( - { mkDerivation, base }: - mkDerivation { - pname = "safe-coerce"; - version = "0.2.0.0"; - sha256 = "059mn68pj57dvjzmv3vypv0askx02f4hlalbzsr34cn2h7ndw6df"; - libraryHaskellDepends = [ base ]; - description = "A friendly shorthand for an old friend"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "safe-coloured-text" = callPackage ( { mkDerivation, @@ -581783,80 +337103,6 @@ self: { } ) { }; - "safe-exceptions-checked" = callPackage ( - { - mkDerivation, - base, - deepseq, - hspec, - safe-exceptions, - transformers, - }: - mkDerivation { - pname = "safe-exceptions-checked"; - version = "0.1.0"; - sha256 = "0gyaq2pf87dqn0l6n3mi0qamf99y3zj5xxh513c0iqwdh8mma1yq"; - revision = "3"; - editedCabalFile = "004id0k46j545zvkldfcv5qjgxzl35brm9h6fq72y43b9hl2y55f"; - libraryHaskellDepends = [ - base - deepseq - safe-exceptions - transformers - ]; - testHaskellDepends = [ - base - hspec - ]; - description = "Safe, checked exceptions"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "safe-failure" = callPackage ( - { - mkDerivation, - base, - failure, - }: - mkDerivation { - pname = "safe-failure"; - version = "0.5.0.2"; - sha256 = "102fjardfdf9zy0vyalgq6m1l64356b0a0xaam49j31lqgfldaw7"; - libraryHaskellDepends = [ - base - failure - ]; - description = "Library for safe functions (deprecated)"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "safe-failure-cme" = callPackage ( - { - mkDerivation, - base, - control-monad-exception, - safe-failure, - }: - mkDerivation { - pname = "safe-failure-cme"; - version = "0.1.0"; - sha256 = "0np0gq6f9xvywdf2fz5cb43ji0r4c9aqk6gb5w80hwklxdy553gk"; - libraryHaskellDepends = [ - base - control-monad-exception - safe-failure - ]; - description = "control-monad-exception Instances for safe-failure"; - license = lib.licenses.publicDomain; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "safe-foldable" = callPackage ( { mkDerivation, base }: mkDerivation { @@ -581869,31 +337115,6 @@ self: { } ) { }; - "safe-freeze" = callPackage ( - { - mkDerivation, - base, - indexed, - mtl, - vector, - }: - mkDerivation { - pname = "safe-freeze"; - version = "0.2.1"; - sha256 = "12mqgak0rla20n9b4m6ynx64bwr06njcr849csc0z0r573xw2v33"; - libraryHaskellDepends = [ - base - indexed - mtl - vector - ]; - description = "Support for safely freezing multiple arrays in the ST monad"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "safe-gen" = callPackage ( { mkDerivation, @@ -581921,29 +337142,6 @@ self: { } ) { }; - "safe-globals" = callPackage ( - { - mkDerivation, - base, - stm, - template-haskell, - }: - mkDerivation { - pname = "safe-globals"; - version = "0.1.1"; - sha256 = "0an3hy28fpdw3v5gjx13fbszzp4r2p65l8mgks0pdflscf2cwwv5"; - libraryHaskellDepends = [ - base - stm - template-haskell - ]; - description = "Safe top-level mutable variables which scope like ordinary values"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "safe-json" = callPackage ( { mkDerivation, @@ -582012,60 +337210,6 @@ self: { } ) { }; - "safe-lazy-io" = callPackage ( - { - mkDerivation, - base, - extensible-exceptions, - parallel, - strict-io, - }: - mkDerivation { - pname = "safe-lazy-io"; - version = "0.1"; - sha256 = "1hqw4i814sz94iqyj79jai8aa2mwmv0mrnfk8ggb0sdx4xqn784c"; - libraryHaskellDepends = [ - base - extensible-exceptions - parallel - strict-io - ]; - description = "A library providing safe lazy IO features"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "safe-length" = callPackage ( - { - mkDerivation, - base, - hspec, - hspec-core, - QuickCheck, - should-not-typecheck, - }: - mkDerivation { - pname = "safe-length"; - version = "0.1.0.0"; - sha256 = "0yc9q5p7w955ywglvz6mhbpgqd3d39j91v994y3k25xrlbj5a494"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ base ]; - testHaskellDepends = [ - base - hspec - hspec-core - QuickCheck - should-not-typecheck - ]; - description = "Tired of accidentally calling length on tuples? Relief at last!"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "safe-money" = callPackage ( { mkDerivation, @@ -582257,45 +337401,6 @@ self: { } ) { }; - "safe-money-xmlbf" = callPackage ( - { - mkDerivation, - base, - bytestring, - safe-money, - tasty, - tasty-hunit, - tasty-quickcheck, - text, - xmlbf, - }: - mkDerivation { - pname = "safe-money-xmlbf"; - version = "0.1.2"; - sha256 = "04jpv05w1q2xdmh78i5xy3j48vk7qsnb0dpjr3zfbqs0qwpc9vld"; - libraryHaskellDepends = [ - base - safe-money - text - xmlbf - ]; - testHaskellDepends = [ - base - bytestring - safe-money - tasty - tasty-hunit - tasty-quickcheck - text - xmlbf - ]; - description = "Instances from the xmlbf library for the safe-money library"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "safe-numeric" = callPackage ( { mkDerivation, @@ -582324,71 +337429,6 @@ self: { } ) { }; - "safe-plugins" = callPackage ( - { - mkDerivation, - base, - directory, - filepath, - haskell-src-exts, - plugins, - Unixutils, - }: - mkDerivation { - pname = "safe-plugins"; - version = "0.1"; - sha256 = "1nxy70iig54098pzbi8mwc8412fj759y6ihmsdjsk6xlpy6bwx65"; - libraryHaskellDepends = [ - base - directory - filepath - haskell-src-exts - plugins - Unixutils - ]; - description = "A small wrapper over hs-plugins to allow loading safe plugins"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "safe-printf" = callPackage ( - { - mkDerivation, - base, - doctest, - haskell-src-meta, - hspec, - QuickCheck, - template-haskell, - th-lift, - }: - mkDerivation { - pname = "safe-printf"; - version = "0.1.0.0"; - sha256 = "19nw306q7xlj6s132qxlfskg67x6rx3zhsk2n6lbz2kryr7v99g6"; - libraryHaskellDepends = [ - base - haskell-src-meta - template-haskell - th-lift - ]; - testHaskellDepends = [ - base - doctest - haskell-src-meta - hspec - QuickCheck - template-haskell - th-lift - ]; - description = "Well-typed, flexible and variadic printf for Haskell"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "safe-tensor" = callPackage ( { mkDerivation, @@ -582503,141 +337543,6 @@ self: { } ) { }; - "safecopy-migrate" = callPackage ( - { - mkDerivation, - base, - base-prelude, - cereal, - containers, - extra, - haskell-src-meta, - microlens, - safecopy, - template-haskell, - th-abstraction, - uniplate, - }: - mkDerivation { - pname = "safecopy-migrate"; - version = "0.2.0"; - sha256 = "14v1zg78v16gs3m4wch134z8qi7bgiadq9f7mvk8vrhajcipjz2a"; - libraryHaskellDepends = [ - base - base-prelude - cereal - containers - extra - haskell-src-meta - microlens - safecopy - template-haskell - th-abstraction - uniplate - ]; - description = "Making SafeCopy migrations easier"; - license = lib.licenses.publicDomain; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "safecopy-store" = callPackage ( - { - mkDerivation, - array, - base, - bytestring, - containers, - lens, - lens-action, - old-time, - QuickCheck, - quickcheck-instances, - store, - store-core, - tasty, - tasty-hunit, - tasty-quickcheck, - template-haskell, - text, - time, - vector, - }: - mkDerivation { - pname = "safecopy-store"; - version = "0.9.6"; - sha256 = "1x82j4zw26pp38bcx4rnmz7ikpz8nf9mc4pkpcg9c9x76p8kxsfa"; - libraryHaskellDepends = [ - array - base - bytestring - containers - old-time - store - store-core - template-haskell - text - time - vector - ]; - testHaskellDepends = [ - array - base - containers - lens - lens-action - QuickCheck - quickcheck-instances - store - tasty - tasty-hunit - tasty-quickcheck - template-haskell - time - vector - ]; - description = "Binary serialization with version control"; - license = lib.licenses.publicDomain; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "safeint" = callPackage ( - { - mkDerivation, - base, - ghc-prim, - HUnit, - QuickCheck, - test-framework, - test-framework-hunit, - test-framework-quickcheck2, - }: - mkDerivation { - pname = "safeint"; - version = "0.6"; - sha256 = "15175z3lmjcxpgh0py4f0hknyrn2jycczm7560brbq618waqbnfl"; - libraryHaskellDepends = [ - base - ghc-prim - ]; - testHaskellDepends = [ - base - HUnit - QuickCheck - test-framework - test-framework-hunit - test-framework-quickcheck2 - ]; - description = "overflow-checked Int type"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "safeio" = callPackage ( { mkDerivation, @@ -582690,178 +337595,6 @@ self: { } ) { }; - "safepath" = callPackage ( - { - mkDerivation, - base, - doctest, - text, - validity, - }: - mkDerivation { - pname = "safepath"; - version = "0.1.0.0"; - sha256 = "1wp80s12yp9lavkjk6cbcaaj8aa9gmcs05ld7b8ssrqzhd32jrbj"; - libraryHaskellDepends = [ - base - text - validity - ]; - testHaskellDepends = [ - base - doctest - ]; - description = "Safe Paths in Haskell"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "safer-file-handles" = callPackage ( - { - mkDerivation, - base, - base-unicode-symbols, - explicit-iomodes, - pathtype, - regional-pointers, - regions, - transformers, - }: - mkDerivation { - pname = "safer-file-handles"; - version = "0.11"; - sha256 = "1jqw13drzj36gjvlaf9fqd4cj1dpy8psmgsdykag6krxvhq6p639"; - libraryHaskellDepends = [ - base - base-unicode-symbols - explicit-iomodes - pathtype - regional-pointers - regions - transformers - ]; - description = "Type-safe file handling"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "safer-file-handles-bytestring" = callPackage ( - { - mkDerivation, - base, - bytestring, - explicit-iomodes-bytestring, - regions, - safer-file-handles, - transformers, - }: - mkDerivation { - pname = "safer-file-handles-bytestring"; - version = "0.3.0.1"; - sha256 = "1fbhk5hmq9bpw556vz6w3vq5j380n5pzfgby6w4vrmwnn93y12b9"; - libraryHaskellDepends = [ - base - bytestring - explicit-iomodes-bytestring - regions - safer-file-handles - transformers - ]; - description = "Extends safer-file-handles with ByteString operations"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "safer-file-handles-text" = callPackage ( - { - mkDerivation, - explicit-iomodes-text, - regions, - safer-file-handles, - text, - transformers, - }: - mkDerivation { - pname = "safer-file-handles-text"; - version = "0.2.0.2"; - sha256 = "14x0kig9dnjrksh7b4gmwdwqr045cqcqjgicvjckhf85jc8bcanm"; - libraryHaskellDepends = [ - explicit-iomodes-text - regions - safer-file-handles - text - transformers - ]; - description = "Extends safer-file-handles with Text operations"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "saferoute" = callPackage ( - { - mkDerivation, - base, - blaze-html, - containers, - text, - }: - mkDerivation { - pname = "saferoute"; - version = "0.2.0.0"; - sha256 = "00ykmy44paghgc3m731p1hh00zv11416pl2xil4cav7vrr43nb6h"; - libraryHaskellDepends = [ - base - blaze-html - containers - text - ]; - description = "A simple type-safe routing library"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "sai-shape-syb" = callPackage ( - { - mkDerivation, - base, - containers, - ghc, - ghc-syb-utils, - HUnit, - syb, - }: - mkDerivation { - pname = "sai-shape-syb"; - version = "0.3.4"; - sha256 = "07g7qpf7avv5hnxykrh4x7qr8sx9mwwv4hbavnsqi1n7zy2z91a3"; - libraryHaskellDepends = [ - base - containers - ghc - ghc-syb-utils - syb - ]; - testHaskellDepends = [ - base - containers - ghc - ghc-syb-utils - HUnit - syb - ]; - description = "Obtain homogeneous values from arbitrary values, transforming or culling data"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "sajson" = callPackage ( { mkDerivation, @@ -582966,44 +337699,6 @@ self: { } ) { }; - "sakuraio-platform" = callPackage ( - { - mkDerivation, - aeson, - base, - bytestring, - hspec, - time, - unordered-containers, - }: - mkDerivation { - pname = "sakuraio-platform"; - version = "0.1.0.0"; - sha256 = "04hk33n59c4iwbmqzsbq9sjsj99bfn75n82rrhipiaabjpjvcfvk"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson - base - bytestring - time - unordered-containers - ]; - testHaskellDepends = [ - aeson - base - bytestring - hspec - time - unordered-containers - ]; - description = "Haskell representation of messages exchanged on the sakura.io platform."; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "salak" = callPackage ( { mkDerivation, @@ -583081,112 +337776,6 @@ self: { } ) { }; - "salak-toml" = callPackage ( - { - mkDerivation, - base, - criterion, - exceptions, - hspec, - mtl, - QuickCheck, - salak, - text, - time, - tomland, - unordered-containers, - }: - mkDerivation { - pname = "salak-toml"; - version = "0.3.5.3"; - sha256 = "18spk2m75inddz9k0pwg58cr61rfbw1fnki56nnq7jng0wii376y"; - libraryHaskellDepends = [ - base - salak - text - time - tomland - unordered-containers - ]; - testHaskellDepends = [ - base - exceptions - hspec - mtl - QuickCheck - salak - text - time - tomland - unordered-containers - ]; - benchmarkHaskellDepends = [ - base - criterion - salak - text - time - tomland - unordered-containers - ]; - description = "Configuration Loader for toml"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "salak-yaml" = callPackage ( - { - mkDerivation, - base, - conduit, - criterion, - exceptions, - hspec, - libyaml, - mtl, - QuickCheck, - salak, - text, - }: - mkDerivation { - pname = "salak-yaml"; - version = "0.3.5.3"; - sha256 = "07wcwld58bdr8n5fdfq98x6c1xdr8rrx919y4f9y7abdnc4aj000"; - revision = "1"; - editedCabalFile = "0x1wkd2yqmgd0lxy45d3w8p53ms942am14flc0m2jz6dk9vi3k7a"; - libraryHaskellDepends = [ - base - conduit - libyaml - salak - text - ]; - testHaskellDepends = [ - base - conduit - exceptions - hspec - libyaml - mtl - QuickCheck - salak - text - ]; - benchmarkHaskellDepends = [ - base - conduit - criterion - libyaml - salak - text - ]; - description = "Configuration Loader for yaml"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "saltine" = callPackage ( { mkDerivation, @@ -583238,46 +337827,6 @@ self: { } ) { inherit (pkgs) libsodium; }; - "saltine-quickcheck" = callPackage ( - { - mkDerivation, - base, - bytestring, - bytestring-arbitrary, - hex, - libsodium, - QuickCheck, - saltine, - tasty, - tasty-quickcheck, - }: - mkDerivation { - pname = "saltine-quickcheck"; - version = "0.1.0.1"; - sha256 = "041286rsyzv67qqbbbd38fc9qqzmml0js4qr0rqhaljv8cf1sxnj"; - libraryHaskellDepends = [ - base - bytestring - bytestring-arbitrary - hex - QuickCheck - saltine - ]; - librarySystemDepends = [ libsodium ]; - testHaskellDepends = [ - base - bytestring-arbitrary - QuickCheck - saltine - tasty - tasty-quickcheck - ]; - description = "Quickcheck implementations for some NaCl data"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - } - ) { inherit (pkgs) libsodium; }; - "salve" = callPackage ( { mkDerivation, @@ -583298,283 +337847,6 @@ self: { } ) { }; - "salvia" = callPackage ( - { - mkDerivation, - base, - bytestring, - containers, - directory, - fclabels, - MaybeT-transformers, - monads-fd, - network, - old-locale, - process, - pureMD5, - random, - safe, - salvia-protocol, - split, - stm, - text, - threadmanager, - time, - transformers, - unix, - utf8-string, - }: - mkDerivation { - pname = "salvia"; - version = "1.0.0"; - sha256 = "1qcnhj3ifjqrkaw1ixqkwmv2br9w5dlk1mrrwgl73c3wxgin7gni"; - libraryHaskellDepends = [ - base - bytestring - containers - directory - fclabels - MaybeT-transformers - monads-fd - network - old-locale - process - pureMD5 - random - safe - salvia-protocol - split - stm - text - threadmanager - time - transformers - unix - utf8-string - ]; - description = "Modular web application framework"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "salvia-demo" = callPackage ( - { - mkDerivation, - base, - c10k, - fclabels, - filestore, - monads-fd, - network, - salvia, - salvia-extras, - salvia-protocol, - salvia-sessions, - salvia-websocket, - stm, - threadmanager, - transformers, - }: - mkDerivation { - pname = "salvia-demo"; - version = "1.0.0"; - sha256 = "0sfvx7hj0z2g57gs6l1s078z3a34hfgm4pfcb1qr1pvbc8lj3f1h"; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base - c10k - fclabels - filestore - monads-fd - network - salvia - salvia-extras - salvia-protocol - salvia-sessions - salvia-websocket - stm - threadmanager - transformers - ]; - doHaddock = false; - description = "Demo Salvia servers"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "salvia-extras" = callPackage ( - { - mkDerivation, - base, - bytestring, - c10k, - clevercss, - fclabels, - filestore, - hscolour, - HStringTemplate, - monads-fd, - network, - old-locale, - pureMD5, - salvia, - salvia-protocol, - sendfile, - split, - stm, - text, - threadmanager, - time, - transformers, - utf8-string, - }: - mkDerivation { - pname = "salvia-extras"; - version = "1.0.0"; - sha256 = "1nfiak4nabxm27ddksaif1jdpwn7drbz25jrqk0bmyr5q6q70a51"; - libraryHaskellDepends = [ - base - bytestring - c10k - clevercss - fclabels - filestore - hscolour - HStringTemplate - monads-fd - network - old-locale - pureMD5 - salvia - salvia-protocol - sendfile - split - stm - text - threadmanager - time - transformers - utf8-string - ]; - description = "Collection of non-fundamental handlers for the Salvia web server"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "salvia-protocol" = callPackage ( - { - mkDerivation, - base, - bimap, - bytestring, - containers, - fclabels, - parsec, - safe, - split, - utf8-string, - }: - mkDerivation { - pname = "salvia-protocol"; - version = "1.0.1"; - sha256 = "0a49wjjhdhhlnrwfi6l2zn6jl7vynwyil6s6qzp1za7s5vji48vb"; - libraryHaskellDepends = [ - base - bimap - bytestring - containers - fclabels - parsec - safe - split - utf8-string - ]; - description = "Salvia webserver protocol suite supporting URI, HTTP, Cookie and MIME"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "salvia-sessions" = callPackage ( - { - mkDerivation, - base, - containers, - fclabels, - MaybeT-transformers, - monads-fd, - pureMD5, - random, - safe, - salvia, - salvia-protocol, - stm, - time, - utf8-string, - }: - mkDerivation { - pname = "salvia-sessions"; - version = "1.0.0"; - sha256 = "0cfl9xhawg16gkl18wfxpjysn312yb3q9bagmclrhqk3qzwxgb0h"; - libraryHaskellDepends = [ - base - containers - fclabels - MaybeT-transformers - monads-fd - pureMD5 - random - safe - salvia - salvia-protocol - stm - time - utf8-string - ]; - description = "Session support for the Salvia webserver"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "salvia-websocket" = callPackage ( - { - mkDerivation, - base, - bytestring, - fclabels, - monads-fd, - salvia, - salvia-protocol, - stm, - utf8-string, - }: - mkDerivation { - pname = "salvia-websocket"; - version = "1.0.0"; - sha256 = "14sr5z5z9xjkf18z1srz6cgciyrhhs4zyl7a8pffxmb893a2gngl"; - libraryHaskellDepends = [ - base - bytestring - fclabels - monads-fd - salvia - salvia-protocol - stm - utf8-string - ]; - description = "Websocket implementation for the Salvia Webserver"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "sample-frame" = callPackage ( { mkDerivation, @@ -583680,132 +337952,6 @@ self: { } ) { }; - "samtools" = callPackage ( - { - mkDerivation, - base, - bytestring, - c2hs, - seqloc, - vector, - zlib, - }: - mkDerivation { - pname = "samtools"; - version = "0.2.4.3"; - sha256 = "11i0b2lj9qzd6by2dabris8ynb1m0pfv3xvm4wgiyyz81hnbi4fs"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - bytestring - seqloc - vector - ]; - librarySystemDepends = [ zlib ]; - libraryToolDepends = [ c2hs ]; - description = "Binding to the C samtools library"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - } - ) { inherit (pkgs) zlib; }; - - "samtools-conduit" = callPackage ( - { - mkDerivation, - base, - bytestring, - conduit, - filepath, - resourcet, - samtools, - transformers, - }: - mkDerivation { - pname = "samtools-conduit"; - version = "0.1.1.0"; - sha256 = "0s59ds9s8ghj8wq2cfnh2s865v8bmga53aqvcqf781iv9zvxbqmw"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - bytestring - conduit - filepath - resourcet - samtools - transformers - ]; - executableHaskellDepends = [ - base - bytestring - conduit - filepath - resourcet - samtools - transformers - ]; - description = "Conduit interface to SAM/BAM format files through samtools"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - mainProgram = "samtools-conduit-copy"; - } - ) { }; - - "samtools-enumerator" = callPackage ( - { - mkDerivation, - base, - bytestring, - enumerator, - samtools, - transformers, - }: - mkDerivation { - pname = "samtools-enumerator"; - version = "0.1.2.1"; - sha256 = "0wk2m2av9fd5zvx29my4llbc8zqk1hrczfvnhrvd90qmw8p33r5m"; - libraryHaskellDepends = [ - base - bytestring - enumerator - samtools - transformers - ]; - description = "Enumerator interface to SamTools library"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "samtools-iteratee" = callPackage ( - { - mkDerivation, - base, - bytestring, - iteratee, - samtools, - transformers, - }: - mkDerivation { - pname = "samtools-iteratee"; - version = "0.2.2.1"; - sha256 = "139cp03lm05s536gsf03in7lrsmiprs2x6vpr9vci4k0pq2pd06l"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - bytestring - iteratee - samtools - transformers - ]; - description = "Iteratee interface to SamTools library"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "sandi" = callPackage ( { mkDerivation, @@ -583849,58 +337995,6 @@ self: { } ) { }; - "sandlib" = callPackage ( - { mkDerivation, base }: - mkDerivation { - pname = "sandlib"; - version = "0.0.2"; - sha256 = "07wh6va4rpf6vvxnjqbmwfna3rg20ysjh2pnzylz6xzlayzq0pkx"; - libraryHaskellDepends = [ base ]; - description = "SAND data serialization and manipulation library"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "sandman" = callPackage ( - { - mkDerivation, - base, - Cabal, - containers, - directory, - filepath, - optparse-applicative, - process, - text, - unix-compat, - }: - mkDerivation { - pname = "sandman"; - version = "0.2.0.1"; - sha256 = "0r6f6xw1vzhbhlqi7knv9p0rlfdzhfb5db2vc5ls78n43wz2hza0"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - Cabal - containers - directory - filepath - optparse-applicative - process - text - unix-compat - ]; - description = "Manages Cabal sandboxes to avoid rebuilding packages"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - mainProgram = "sandman"; - broken = true; - } - ) { }; - "sandwatch" = callPackage ( { mkDerivation, @@ -584784,29 +338878,6 @@ self: { } ) { }; - "sarasvati" = callPackage ( - { - mkDerivation, - base, - deepseq, - portaudio, - }: - mkDerivation { - pname = "sarasvati"; - version = "0.3.0.0"; - sha256 = "0x8d5n2mydhwl9h7vzk7nr58b2aym9xb21p4m21rfa6vy6r2n438"; - libraryHaskellDepends = [ - base - deepseq - portaudio - ]; - description = "audio library"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "sarif" = callPackage ( { mkDerivation, @@ -584977,83 +339048,6 @@ self: { } ) { }; - "sasl" = callPackage ( - { - mkDerivation, - base, - base64-bytestring, - bytestring, - cryptohash, - monads-tf, - papillon, - simple-pipe, - }: - mkDerivation { - pname = "sasl"; - version = "0.0.0.1"; - sha256 = "0aabkzg85ps7z1nkp9lqywz26883862apqxj9ygmf7ly2r43wfzl"; - libraryHaskellDepends = [ - base - base64-bytestring - bytestring - cryptohash - monads-tf - papillon - simple-pipe - ]; - description = "SASL implementation using simple-pipe"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "sat" = callPackage ( - { mkDerivation, base }: - mkDerivation { - pname = "sat"; - version = "1.1.1"; - sha256 = "1ia2asqnxzpyr9s4n488yy00388x0bfy8kwqjx17fap33jkjfi6p"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ base ]; - description = "CNF SATisfier"; - license = "GPL"; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "sat-micro-hs" = callPackage ( - { - mkDerivation, - base, - containers, - haskell98, - mtl, - parse-dimacs, - pretty, - }: - mkDerivation { - pname = "sat-micro-hs"; - version = "0.1.1"; - sha256 = "1w09ccky9rhp1l5g3rxjp9ydfyn0cc7kxmhz922ngls4ywd1hbc4"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - containers - haskell98 - mtl - parse-dimacs - pretty - ]; - description = "A minimal SAT solver"; - license = "LGPL"; - hydraPlatforms = lib.platforms.none; - mainProgram = "sat-micro"; - } - ) { }; - "sat-simple" = callPackage ( { mkDerivation, @@ -585130,120 +339124,6 @@ self: { } ) { }; - "satchmo-backends" = callPackage ( - { - mkDerivation, - array, - base, - bytestring, - containers, - process, - satchmo, - timeit, - }: - mkDerivation { - pname = "satchmo-backends"; - version = "1.9.1"; - sha256 = "1hyzwmhy0f4k60hqjbh9jl3qr4xw3rjgl8nz2gfcdvm5ad91bfdf"; - libraryHaskellDepends = [ - array - base - bytestring - containers - process - satchmo - timeit - ]; - description = "driver for external satchmo backends"; - license = "GPL"; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "satchmo-examples" = callPackage ( - { - mkDerivation, - array, - base, - containers, - process, - satchmo, - satchmo-backends, - }: - mkDerivation { - pname = "satchmo-examples"; - version = "1.8.1"; - sha256 = "1xvgamq53yfzcl1p9wbfyy7dlhxsnbj6pjpxgjkyycndgszc84w3"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - array - base - containers - process - satchmo - satchmo-backends - ]; - description = "examples that show how to use satchmo"; - license = "GPL"; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "satchmo-funsat" = callPackage ( - { - mkDerivation, - array, - base, - containers, - funsat, - parse-dimacs, - satchmo, - }: - mkDerivation { - pname = "satchmo-funsat"; - version = "1.4"; - sha256 = "0nx0xlbwwcdhdd608akmiwzx8abrd5v4b411221rdl8fshqrbv34"; - libraryHaskellDepends = [ - array - base - containers - funsat - parse-dimacs - satchmo - ]; - description = "funsat driver as backend for satchmo"; - license = "GPL"; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "satchmo-minisat" = callPackage ( - { - mkDerivation, - base, - containers, - process, - satchmo, - }: - mkDerivation { - pname = "satchmo-minisat"; - version = "1.3"; - sha256 = "1dwgj16l2zjqfmf92kpr695ycliwki6a38sxc06scvs6sv6wkc56"; - libraryHaskellDepends = [ - base - containers - process - satchmo - ]; - description = "minisat driver as backend for satchmo"; - license = "GPL"; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "satchmo-toysat" = callPackage ( { mkDerivation, @@ -585449,92 +339329,6 @@ self: { } ) { }; - "savage" = callPackage ( - { - mkDerivation, - base, - bytestring, - containers, - exceptions, - mmorph, - monad-control, - mtl, - primitive, - random, - resourcet, - text, - time, - transformers, - transformers-base, - unix, - }: - mkDerivation { - pname = "savage"; - version = "1.0.3"; - sha256 = "1pxh2qa3ryfx8xrp3mk69d1x97yyngma32p18wxccvl5zvwbkz9c"; - libraryHaskellDepends = [ - base - bytestring - containers - exceptions - mmorph - monad-control - mtl - primitive - random - resourcet - text - time - transformers - transformers-base - unix - ]; - description = "re-export of the random generators from Hedgehog"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "sax" = callPackage ( - { - mkDerivation, - base, - bytestring, - deepseq, - hspec, - mtl, - streaming, - text, - xeno, - }: - mkDerivation { - pname = "sax"; - version = "0.1.0.0"; - sha256 = "08hw88sccb1jb6iki622a988b8j5panbnjpgqcmsi1yx2c9nyxkj"; - revision = "3"; - editedCabalFile = "1gzalbr1v4x99cgrbs5s81fr2y0lzh0qhhi7r5fbxigc2yk9z0gg"; - libraryHaskellDepends = [ - base - bytestring - deepseq - mtl - streaming - text - xeno - ]; - testHaskellDepends = [ - base - bytestring - hspec - ]; - description = "Monadic streaming XML parser"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "say" = callPackage ( { mkDerivation, @@ -586024,255 +339818,6 @@ self: { } ) { }; - "sc2-lowlevel" = callPackage ( - { - mkDerivation, - base, - bytestring, - containers, - data-default-class, - directory, - filepath, - freer-simple, - lens, - lens-labels, - network, - optparse-applicative, - process, - proto-lens, - sc2-proto, - sc2-support, - text, - websockets, - }: - mkDerivation { - pname = "sc2-lowlevel"; - version = "0.1.0.0"; - sha256 = "1hgayxpgixhd3v5ngg4lz4pfnarvbb20ycjs0ys55prmdcpp3424"; - libraryHaskellDepends = [ - base - bytestring - containers - data-default-class - directory - filepath - freer-simple - lens - lens-labels - network - optparse-applicative - process - proto-lens - sc2-proto - sc2-support - text - websockets - ]; - description = "Low-level Starcraft II API"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "sc2-proto" = callPackage ( - { - mkDerivation, - base, - Cabal, - filepath, - gitrev, - proto-lens-protoc, - proto-lens-runtime, - proto-lens-setup, - protoc, - }: - mkDerivation { - pname = "sc2-proto"; - version = "0.1.0.2"; - sha256 = "0v80jh0l9rfvzxm1n1rvyv06kkhwa3gr4xq8vvsl2m9nmvbdvhzy"; - setupHaskellDepends = [ - base - Cabal - filepath - proto-lens-protoc - proto-lens-setup - ]; - libraryHaskellDepends = [ - base - filepath - gitrev - proto-lens-runtime - ]; - libraryToolDepends = [ - proto-lens-protoc - protoc - ]; - description = "A protocol buffer model for the Starcraft II bot API"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { protoc = null; }; - - "sc2-support" = callPackage ( - { - mkDerivation, - aeson, - base, - directory, - filepath, - lens, - lens-labels, - template-haskell, - text, - }: - mkDerivation { - pname = "sc2-support"; - version = "0.1.0.0"; - sha256 = "0f7rz16bl075fnb92sbczw23xx225qayw9ybfvr8019p3lkm0yij"; - libraryHaskellDepends = [ - aeson - base - directory - filepath - lens - lens-labels - template-haskell - text - ]; - description = "Support and utility library for sc2hs"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "sc2hs" = callPackage ( - { - mkDerivation, - base, - bytestring, - containers, - directory, - etc, - filepath, - freer-simple, - gitrev, - lens, - lens-labels, - proto-lens, - sc2-lowlevel, - sc2-proto, - sc2-support, - text, - }: - mkDerivation { - pname = "sc2hs"; - version = "0.1.0.0"; - sha256 = "01g6py46mry4yzmzbimqb2777byh8lm4mb26mnm3zj8d7r76lam7"; - revision = "1"; - editedCabalFile = "0v6lcaahycqd5sw8rykvxw9gjf18ch2vybn7p85b3vqw81qiz0wh"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - bytestring - containers - directory - etc - filepath - freer-simple - gitrev - lens - lens-labels - proto-lens - sc2-lowlevel - sc2-proto - sc2-support - text - ]; - executableHaskellDepends = [ - base - bytestring - containers - directory - etc - filepath - freer-simple - gitrev - lens - lens-labels - proto-lens - sc2-lowlevel - sc2-proto - sc2-support - text - ]; - description = "An interface to the Starcraft II bot API"; - license = "unknown"; - hydraPlatforms = lib.platforms.none; - mainProgram = "sc2hs-demo"; - } - ) { }; - - "sc3-rdu" = callPackage ( - { - mkDerivation, - base, - hsc3, - hsc3-db, - }: - mkDerivation { - pname = "sc3-rdu"; - version = "0.15"; - sha256 = "0zrd9w3s535b2dpnmmrfg4i6jd9f4nh338x1cbggcw3pjyv8gk30"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base - hsc3 - hsc3-db - ]; - description = "Haskell bindings to sc3-rdu (sc3 rd ugens)"; - license = "GPL"; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "scalable-server" = callPackage ( - { - mkDerivation, - attoparsec, - attoparsec-enumerator, - base, - blaze-builder, - BoundedChan, - bytestring, - enumerator, - mtl, - network, - network-enumerator, - }: - mkDerivation { - pname = "scalable-server"; - version = "0.2.2"; - sha256 = "066ncvz6zid1j6d6j89m4k2hywq58p73z30dkqn2l1svlic7dmx6"; - libraryHaskellDepends = [ - attoparsec - attoparsec-enumerator - base - blaze-builder - BoundedChan - bytestring - enumerator - mtl - network - network-enumerator - ]; - description = "Library for writing fast/scalable TCP-based services"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "scale" = callPackage ( { mkDerivation, @@ -586331,148 +339876,6 @@ self: { } ) { }; - "scaleimage" = callPackage ( - { - mkDerivation, - base, - filepath, - gd, - }: - mkDerivation { - pname = "scaleimage"; - version = "0.1"; - sha256 = "0alhi0zr2n97942wpnyzq8q62nd4nzjl0rdxaarr7psx6dd3h3nn"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - filepath - gd - ]; - description = "Scale an image to a new geometry"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "scaleimage"; - broken = true; - } - ) { }; - - "scalendar" = callPackage ( - { - mkDerivation, - base, - containers, - hspec, - QuickCheck, - SCalendar, - text, - time, - }: - mkDerivation { - pname = "scalendar"; - version = "1.2.0"; - sha256 = "1b33w7fh9jfsr9wrdvnhc7nvn7km69f4qb03d0hb4zlylf6mxj7m"; - libraryHaskellDepends = [ - base - containers - text - time - ]; - testHaskellDepends = [ - base - containers - hspec - QuickCheck - SCalendar - text - time - ]; - description = "A library for handling calendars and resource availability over time"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "scalp-webhooks" = callPackage ( - { - mkDerivation, - aeson, - async, - base, - bytestring, - hastache, - hspec, - lens, - lens-aeson, - rainbow, - random, - regex-compat, - shelly, - Spock, - stm, - text, - transformers, - wreq, - }: - mkDerivation { - pname = "scalp-webhooks"; - version = "0.1.2.0"; - sha256 = "1j31f3p1bn43c1v3b9rg5r3110g0issqs2ypzziqz1m3cma07sm4"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson - async - base - bytestring - hastache - lens - lens-aeson - rainbow - random - shelly - Spock - stm - text - transformers - wreq - ]; - executableHaskellDepends = [ - aeson - async - base - bytestring - hastache - lens - lens-aeson - rainbow - random - shelly - Spock - stm - text - transformers - wreq - ]; - testHaskellDepends = [ - aeson - base - hspec - lens - regex-compat - stm - text - transformers - wreq - ]; - description = "Test webhooks locally"; - license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; - mainProgram = "scalp-webhooks"; - } - ) { }; - "scalpel" = callPackage ( { mkDerivation, @@ -586596,6 +339999,7 @@ self: { description = "scalpel scrapers for search engines"; license = lib.licenses.gpl3Only; hydraPlatforms = lib.platforms.none; + broken = true; } ) { }; @@ -586623,81 +340027,6 @@ self: { } ) { }; - "scan-metadata" = callPackage ( - { - mkDerivation, - aeson, - antiope-core, - antiope-s3, - base, - bytestring, - containers, - generic-lens, - hw-aeson, - hw-ip, - lens, - mtl, - text, - thyme, - unliftio-core, - }: - mkDerivation { - pname = "scan-metadata"; - version = "0.2.1.0"; - sha256 = "0qkvx4mpa8pmsfakxg6nl711qzpsc7jx0jcwsmnsf9ms6ij1gvya"; - libraryHaskellDepends = [ - aeson - antiope-core - antiope-s3 - base - bytestring - containers - generic-lens - hw-aeson - hw-ip - lens - mtl - text - thyme - unliftio-core - ]; - description = "Metadata types for Albedo Scanners"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "scan-vector-machine" = callPackage ( - { - mkDerivation, - accelerate, - array, - base, - dph-base, - HUnit, - }: - mkDerivation { - pname = "scan-vector-machine"; - version = "0.2.7"; - sha256 = "112ibzc205pjcmjiwbknw7pdh0c5fyq6i4sqk97jfdr0ynb72vvc"; - libraryHaskellDepends = [ - accelerate - array - base - dph-base - HUnit - ]; - testHaskellDepends = [ - array - base - HUnit - ]; - description = "An implementation of the Scan Vector Machine instruction set in Haskell"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "scanf" = callPackage ( { mkDerivation, @@ -586947,64 +340276,6 @@ self: { } ) { }; - "scgi" = callPackage ( - { - mkDerivation, - base, - bytestring, - cgi, - extensible-exceptions, - network, - }: - mkDerivation { - pname = "scgi"; - version = "0.3.3"; - sha256 = "0zmn5w5vwxv8slnydbrj1jfhmbvsyars2wf9bbrbgvwsfd40zd2m"; - libraryHaskellDepends = [ - base - bytestring - cgi - extensible-exceptions - network - ]; - description = "A Haskell library for writing SCGI programs"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "schedevr" = callPackage ( - { - mkDerivation, - base, - directory, - filepath, - old-locale, - time, - xturtle, - }: - mkDerivation { - pname = "schedevr"; - version = "0.1.0.6"; - sha256 = "1ggywgyfpdza1fk66ixj8z3a1nv1r64dmw7l4d1m3h65yzxx9jcb"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - directory - filepath - old-locale - time - xturtle - ]; - description = "Marge schedules and show EVR"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "schedule" = callPackage ( { mkDerivation, @@ -587025,85 +340296,37 @@ self: { text, time, transformers, - }: - mkDerivation { - pname = "schedule"; - version = "0.3.0.0"; - sha256 = "08h8iiy2srnd89652k8q8vjcvmvsqjihj6qj9k8z49vfylpr8ibx"; - libraryHaskellDepends = [ - async - base - containers - extra - lens - primitive - safe - stm - system-time-monotonic - text - time - transformers - ]; - testHaskellDepends = [ - base - checkers - doctest - primitive - tasty - tasty-hunit - tasty-quickcheck - transformers - ]; - description = "Pure deterministic scheduled computations"; - license = lib.licenses.gpl3Plus; - } - ) { }; - - "schedule-planner" = callPackage ( - { - mkDerivation, - aeson, - base, - bytestring, - composition, - containers, - HTTP, - http-types, - mtl, - options, - text, - text-icu, - transformers, - wai, - warp, - }: - mkDerivation { - pname = "schedule-planner"; - version = "1.0.1.1"; - sha256 = "1x42jm9fciwdp1khlvcw5vl748pw12n8xk4phbnd6iwqaazf9wv8"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - aeson + }: + mkDerivation { + pname = "schedule"; + version = "0.3.0.0"; + sha256 = "08h8iiy2srnd89652k8q8vjcvmvsqjihj6qj9k8z49vfylpr8ibx"; + libraryHaskellDepends = [ + async base - bytestring - composition containers - HTTP - http-types - mtl - options + extra + lens + primitive + safe + stm + system-time-monotonic text - text-icu + time transformers - wai - warp ]; - description = "Find the ideal lesson layout"; - license = lib.licenses.lgpl3Only; - hydraPlatforms = lib.platforms.none; - mainProgram = "schedule-planner"; - broken = true; + testHaskellDepends = [ + base + checkers + doctest + primitive + tasty + tasty-hunit + tasty-quickcheck + transformers + ]; + description = "Pure deterministic scheduled computations"; + license = lib.licenses.gpl3Plus; } ) { }; @@ -587219,20 +340442,6 @@ self: { } ) { }; - "schedyield" = callPackage ( - { mkDerivation, base }: - mkDerivation { - pname = "schedyield"; - version = "1.0"; - sha256 = "0lzhxlfxa660vx4y49gbg2q76v8dda00h3rznj5fhdjj29pkypgp"; - libraryHaskellDepends = [ base ]; - description = "Exposes standard POSIX function sched_yield"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "schema" = callPackage ( { mkDerivation, @@ -587273,78 +340482,6 @@ self: { } ) { }; - "schemas" = callPackage ( - { - mkDerivation, - aeson, - aeson-pretty, - base, - bifunctors, - bytestring, - free, - generic-lens, - generics-sop, - hashable, - hspec, - lens, - lens-aeson, - mtl, - pretty-simple, - profunctors, - QuickCheck, - scientific, - syb, - text, - transformers, - unordered-containers, - vector, - }: - mkDerivation { - pname = "schemas"; - version = "0.4.0.2"; - sha256 = "0b05xjkpwx4a9hwxjaxk28v47d4c3xyy7wagc5nblqppxpvb9zqr"; - libraryHaskellDepends = [ - aeson - base - bifunctors - bytestring - free - generics-sop - hashable - lens - lens-aeson - mtl - profunctors - scientific - text - transformers - unordered-containers - vector - ]; - testHaskellDepends = [ - aeson - aeson-pretty - base - bytestring - generic-lens - generics-sop - hspec - lens - mtl - pretty-simple - QuickCheck - syb - text - transformers - unordered-containers - ]; - description = "schema guided serialization"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "schematic" = callPackage ( { mkDerivation, @@ -587426,334 +340563,6 @@ self: { testToolDepends = [ hspec-discover ]; description = "JSON-biased spec and validation tool"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "scholdoc" = callPackage ( - { - mkDerivation, - aeson, - base, - base64-bytestring, - binary, - blaze-html, - blaze-markup, - bytestring, - containers, - criterion, - data-default, - Diff, - directory, - executable-path, - extensible-exceptions, - filepath, - highlighting-kate, - hslua, - HTTP, - http-client, - http-client-tls, - http-types, - HUnit, - JuicyPixels, - mtl, - network, - network-uri, - old-locale, - old-time, - parsec, - process, - QuickCheck, - random, - scholdoc-texmath, - scholdoc-types, - scientific, - SHA, - syb, - tagsoup, - temporary, - test-framework, - test-framework-hunit, - test-framework-quickcheck2, - text, - time, - unordered-containers, - vector, - xml, - yaml, - zip-archive, - zlib, - }: - mkDerivation { - pname = "scholdoc"; - version = "0.1.3"; - sha256 = "0dsbr4nk56cmbgdnk91s39lc4qp2wb39hkyisaf4f1n6nmx8zmn4"; - revision = "1"; - editedCabalFile = "0ddlmg6f7y70f1yi351q1d46mgxzs8h53969jmhdhj6al860grxv"; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - aeson - base - base64-bytestring - binary - blaze-html - blaze-markup - bytestring - containers - data-default - directory - extensible-exceptions - filepath - highlighting-kate - hslua - HTTP - http-client - http-client-tls - http-types - JuicyPixels - mtl - network - network-uri - old-locale - old-time - parsec - process - random - scholdoc-texmath - scholdoc-types - scientific - SHA - syb - tagsoup - temporary - text - time - unordered-containers - vector - xml - yaml - zip-archive - zlib - ]; - executableHaskellDepends = [ - aeson - base - bytestring - containers - directory - extensible-exceptions - filepath - highlighting-kate - network-uri - scholdoc-types - text - yaml - ]; - testHaskellDepends = [ - base - bytestring - containers - Diff - directory - executable-path - filepath - HUnit - process - QuickCheck - scholdoc-types - syb - test-framework - test-framework-hunit - test-framework-quickcheck2 - ]; - benchmarkHaskellDepends = [ - base - criterion - ]; - description = "Converts ScholarlyMarkdown documents to HTML5/LaTeX/Docx format"; - license = "GPL"; - hydraPlatforms = lib.platforms.none; - mainProgram = "scholdoc"; - } - ) { }; - - "scholdoc-citeproc" = callPackage ( - { - mkDerivation, - aeson, - aeson-pretty, - attoparsec, - base, - bytestring, - containers, - data-default, - directory, - filepath, - hs-bibutils, - mtl, - old-locale, - parsec, - process, - rfc5051, - scholdoc, - scholdoc-types, - split, - syb, - tagsoup, - temporary, - text, - time, - vector, - xml-conduit, - yaml, - }: - mkDerivation { - pname = "scholdoc-citeproc"; - version = "0.6"; - sha256 = "0wy8cwr933zcqb85qscj9l9qcl2xv8mkbd2g9b4gs7c1k5b6khll"; - revision = "1"; - editedCabalFile = "065ij08gi9ymyqqa7lmj5d57zqk4rax72kzhm2qbvn00h3g6d81k"; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - aeson - base - bytestring - containers - data-default - directory - filepath - hs-bibutils - mtl - old-locale - parsec - rfc5051 - scholdoc - scholdoc-types - split - syb - tagsoup - text - time - vector - xml-conduit - yaml - ]; - executableHaskellDepends = [ - aeson - aeson-pretty - attoparsec - base - bytestring - filepath - scholdoc-types - syb - text - yaml - ]; - testHaskellDepends = [ - aeson - base - bytestring - directory - filepath - process - scholdoc - scholdoc-types - temporary - text - yaml - ]; - description = "Scholdoc fork of pandoc-citeproc"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "scholdoc-citeproc"; - } - ) { }; - - "scholdoc-texmath" = callPackage ( - { - mkDerivation, - base, - bytestring, - containers, - directory, - filepath, - mtl, - parsec, - process, - scholdoc-types, - split, - syb, - temporary, - text, - utf8-string, - xml, - }: - mkDerivation { - pname = "scholdoc-texmath"; - version = "0.1.0.1"; - sha256 = "05yb55df33v357khdkr95ghmxqzikvq8gxqkh143zc8fi43gjf99"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - containers - mtl - parsec - scholdoc-types - syb - xml - ]; - testHaskellDepends = [ - base - bytestring - directory - filepath - process - split - temporary - text - utf8-string - xml - ]; - description = "Scholdoc fork of texmath"; - license = "GPL"; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "scholdoc-types" = callPackage ( - { - mkDerivation, - aeson, - base, - bytestring, - containers, - deepseq-generics, - ghc-prim, - syb, - }: - mkDerivation { - pname = "scholdoc-types"; - version = "0.1.3.1"; - sha256 = "02335isa6w7mxjziiwsdm2883b778v0y0ayzxpha9p0xr5nlkbar"; - libraryHaskellDepends = [ - aeson - base - bytestring - containers - deepseq-generics - ghc-prim - syb - ]; - description = "Scholdoc fork of pandoc-types"; - license = "GPL"; - hydraPlatforms = lib.platforms.none; - broken = true; } ) { }; @@ -587769,145 +340578,6 @@ self: { } ) { }; - "sci-ratio" = callPackage ( - { - mkDerivation, - base, - hashable, - }: - mkDerivation { - pname = "sci-ratio"; - version = "0.2.1.0"; - sha256 = "1qddamwk2fzakixx9f0y0r3z9z6kmyyxgpb3dhiiiza6krnf8r9k"; - libraryHaskellDepends = [ - base - hashable - ]; - testHaskellDepends = [ base ]; - description = "Rational numbers in scientific notation"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "scidb-hquery" = callPackage ( - { - mkDerivation, - alex, - array, - base, - BNFC, - bytestring, - Cabal, - connection, - cryptonite, - data-default-class, - directory, - exceptions, - filepath, - happy, - haskeline, - hostname-validate, - HTTP, - http-client, - http-client-tls, - http-conduit, - http-types, - memory, - mtl, - network, - process, - regex, - safe, - split, - terminal-size, - text, - tls, - x509-store, - }: - mkDerivation { - pname = "scidb-hquery"; - version = "2.8.0.437"; - sha256 = "1nxcxfr55rf6ds0hvgbnss5hjf059rdd7y613yc485w8bfmv5cil"; - revision = "1"; - editedCabalFile = "1xbiiaa5rj5nc4if69d97f5spbrsa8jv1mhcrgjkwff6a879274q"; - isLibrary = true; - isExecutable = true; - setupHaskellDepends = [ - base - Cabal - filepath - ]; - libraryHaskellDepends = [ - array - base - bytestring - connection - cryptonite - data-default-class - exceptions - haskeline - hostname-validate - HTTP - http-client - http-client-tls - http-conduit - http-types - memory - mtl - network - process - regex - safe - split - terminal-size - text - tls - x509-store - ]; - libraryToolDepends = [ - alex - BNFC - happy - ]; - executableHaskellDepends = [ - array - base - bytestring - connection - cryptonite - data-default-class - directory - exceptions - filepath - haskeline - hostname-validate - HTTP - http-client - http-client-tls - http-conduit - http-types - memory - mtl - network - process - regex - safe - split - terminal-size - text - tls - x509-store - ]; - description = "Haskell query for SciDB via shim"; - license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - mainProgram = "hquery"; - broken = true; - } - ) { }; - "science-constants" = callPackage ( { mkDerivation, base }: mkDerivation { @@ -588105,310 +340775,6 @@ self: { } ) { }; - "scion" = callPackage ( - { - mkDerivation, - base, - bytestring, - Cabal, - containers, - directory, - filepath, - ghc, - ghc-paths, - ghc-syb, - hslogger, - json, - multiset, - network, - network-bytestring, - time, - uniplate, - utf8-string, - }: - mkDerivation { - pname = "scion"; - version = "0.1.0.2"; - sha256 = "1ihq538ym6hh099p0h9p1ngjsq3a9h9k5ssnwyr4bqhlmv8xam0i"; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base - Cabal - containers - directory - filepath - ghc - ghc-paths - ghc-syb - hslogger - json - multiset - time - uniplate - ]; - executableHaskellDepends = [ - base - bytestring - Cabal - containers - directory - filepath - ghc - ghc-paths - ghc-syb - hslogger - json - multiset - network - network-bytestring - time - utf8-string - ]; - description = "Haskell IDE library"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "scion-server"; - } - ) { }; - - "scion-browser" = callPackage ( - { - mkDerivation, - aeson, - attoparsec, - base, - bytestring, - Cabal, - conduit, - containers, - deepseq, - derive, - directory, - filepath, - ghc, - ghc-paths, - ghc-pkg-lib, - haskeline, - haskell-src-exts, - HTTP, - http-conduit, - monad-logger, - mtl, - parallel-io, - parsec, - persistent, - persistent-sqlite, - persistent-template, - process, - resourcet, - tar, - text, - transformers, - unix, - unordered-containers, - utf8-string, - vector, - zlib, - }: - mkDerivation { - pname = "scion-browser"; - version = "0.5.0"; - sha256 = "1nf4rvy8szxjra6l20jxd0v2f6zf985jiz2d1y5rkfvrqx1pwqnc"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson - attoparsec - base - bytestring - Cabal - conduit - containers - deepseq - derive - directory - filepath - ghc - ghc-paths - ghc-pkg-lib - haskell-src-exts - http-conduit - monad-logger - mtl - parallel-io - parsec - persistent - persistent-sqlite - persistent-template - process - resourcet - tar - text - transformers - unix - unordered-containers - utf8-string - zlib - ]; - executableHaskellDepends = [ - aeson - attoparsec - base - bytestring - Cabal - conduit - containers - deepseq - derive - directory - filepath - ghc - ghc-paths - ghc-pkg-lib - haskeline - haskell-src-exts - HTTP - http-conduit - monad-logger - mtl - parallel-io - parsec - persistent - persistent-sqlite - persistent-template - process - resourcet - tar - text - transformers - unix - unordered-containers - utf8-string - vector - zlib - ]; - description = "Command-line interface for browsing and searching packages documentation"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "scion-browser"; - } - ) { }; - - "scons2dot" = callPackage ( - { - mkDerivation, - base, - bytestring, - containers, - process, - }: - mkDerivation { - pname = "scons2dot"; - version = "0.9"; - sha256 = "1c9akvpvwakdnqciz57bwjhqkdfkky43wmj7rx9fsk552pamzijk"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - bytestring - containers - process - ]; - description = "Generates graphviz file of scons dependency information"; - license = "GPL"; - hydraPlatforms = lib.platforms.none; - mainProgram = "scons2dot"; - broken = true; - } - ) { }; - - "scope" = callPackage ( - { - mkDerivation, - base, - bytestring, - containers, - iteratee, - MonadCatchIO-transformers, - mtl, - mwc-random, - time, - unix, - zoom-cache, - }: - mkDerivation { - pname = "scope"; - version = "0.8.0.1"; - sha256 = "1ks66paa30xwqgrllkyz0phh73pc0d2f6aq474cpz7gdb7zyrkzi"; - libraryHaskellDepends = [ - base - bytestring - containers - iteratee - MonadCatchIO-transformers - mtl - mwc-random - time - unix - zoom-cache - ]; - description = "An interactive renderer for plotting time-series data"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "scope-cairo" = callPackage ( - { - mkDerivation, - base, - cairo, - gtk, - MonadCatchIO-transformers, - mtl, - old-locale, - scope, - time, - zoom-cache, - }: - mkDerivation { - pname = "scope-cairo"; - version = "0.8.0.1"; - sha256 = "0dhpyf0kh6qrrcyr3iwp3i3rkj5vcl7k7aa9qmxq2qq1f6dhw4p6"; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base - cairo - gtk - MonadCatchIO-transformers - mtl - old-locale - scope - time - zoom-cache - ]; - executableHaskellDepends = [ - base - cairo - gtk - MonadCatchIO-transformers - mtl - old-locale - scope - time - zoom-cache - ]; - description = "An interactive renderer for plotting time-series data"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "scope-cairo"; - } - ) { }; - "scoped-codensity" = callPackage ( { mkDerivation, @@ -588446,51 +340812,6 @@ self: { } ) { }; - "scottish" = callPackage ( - { - mkDerivation, - base, - data-default, - enclosed-exceptions, - http-types, - lens, - mtl, - persistent, - resource-pool, - scotty, - stm, - text, - transformers, - wai, - warp, - }: - mkDerivation { - pname = "scottish"; - version = "0.1.0.1"; - sha256 = "01874r5r6lzwa7w0pa5i0ymnxb5vpkpxyfnf3knlyblv9b5j82nx"; - libraryHaskellDepends = [ - base - data-default - enclosed-exceptions - http-types - lens - mtl - persistent - resource-pool - scotty - stm - text - transformers - wai - warp - ]; - description = "scotty with batteries included"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "scotty" = callPackage ( { mkDerivation, @@ -588592,177 +340913,6 @@ self: { } ) { }; - "scotty-binding-play" = callPackage ( - { - mkDerivation, - base, - bytestring, - hspec, - http-client, - HUnit, - mtl, - scotty, - template-haskell, - text, - transformers, - }: - mkDerivation { - pname = "scotty-binding-play"; - version = "1.3"; - sha256 = "0k9ylywhvb4nfnm304zlan0bzdx8rxcwnvip8assz80kz47zvjp9"; - libraryHaskellDepends = [ - base - bytestring - mtl - scotty - template-haskell - text - ]; - testHaskellDepends = [ - base - bytestring - hspec - http-client - HUnit - scotty - text - transformers - ]; - description = "The Play Framework style data binding in Scotty"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "scotty-blaze" = callPackage ( - { - mkDerivation, - base, - blaze-builder, - blaze-html, - mtl, - scotty, - wai, - }: - mkDerivation { - pname = "scotty-blaze"; - version = "0.1.3"; - sha256 = "0bl37bplal6y6ma0ba8llypsrx11959vcq04s8x6642hzk0cgid7"; - libraryHaskellDepends = [ - base - blaze-builder - blaze-html - mtl - scotty - wai - ]; - description = "blaze-html integration for Scotty"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "scotty-cookie" = callPackage ( - { - mkDerivation, - base, - blaze-builder, - bytestring, - containers, - cookie, - scotty, - text, - time, - transformers, - }: - mkDerivation { - pname = "scotty-cookie"; - version = "0.1.0.3"; - sha256 = "0wyvx30889lbbgq7dmjfldlbnyg1b8b3zh1py5lis59mwz6r3w9l"; - revision = "1"; - editedCabalFile = "1jcgylw11i5z3v73c999j5vj4b3amjrj5b55f2hqpfmcll9xzw9z"; - libraryHaskellDepends = [ - base - blaze-builder - bytestring - containers - cookie - scotty - text - time - transformers - ]; - description = "Cookie management helper functions for Scotty framework"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "scotty-fay" = callPackage ( - { - mkDerivation, - base, - bytestring, - data-default, - directory, - fay, - fay-jquery, - filepath, - http-types, - HUnit, - scotty, - test-framework, - test-framework-hunit, - text, - transformers, - wai, - wai-test, - }: - mkDerivation { - pname = "scotty-fay"; - version = "0.1.1"; - sha256 = "13ksxw2v6gac3r368ifnbrrgmmafr2fyki63ws4qxw415fwnqa82"; - libraryHaskellDepends = [ - base - bytestring - data-default - directory - fay - fay-jquery - filepath - http-types - scotty - text - transformers - wai - ]; - testHaskellDepends = [ - base - bytestring - data-default - directory - fay - fay-jquery - filepath - http-types - HUnit - scotty - test-framework - test-framework-hunit - text - transformers - wai - wai-test - ]; - description = "Fay integration for Scotty"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "scotty-form" = callPackage ( { mkDerivation, @@ -588788,165 +340938,6 @@ self: { description = "Html form validation using `ditto`"; license = lib.licenses.mit; hydraPlatforms = lib.platforms.none; - } - ) { }; - - "scotty-format" = callPackage ( - { - mkDerivation, - aeson, - base, - http-media, - http-types, - scotty, - text, - }: - mkDerivation { - pname = "scotty-format"; - version = "0.1.1.0"; - sha256 = "169mgwhdhrv4xsnbydmvdm2n5m27ai8c337vn3gbi5awq0ha4vfb"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - http-media - http-types - scotty - text - ]; - executableHaskellDepends = [ - aeson - base - scotty - text - ]; - testHaskellDepends = [ base ]; - description = "Response format helper for the Scotty web framework"; - license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; - mainProgram = "scotty-format-example"; - broken = true; - } - ) { }; - - "scotty-hastache" = callPackage ( - { - mkDerivation, - base, - containers, - filepath, - hastache, - http-types, - mtl, - scotty, - text, - wai, - warp, - }: - mkDerivation { - pname = "scotty-hastache"; - version = "0.2.1"; - sha256 = "1yyip8iq1n71iidmpbfs7rifxvpphyrcaf4z394rx36hq72ka8dn"; - libraryHaskellDepends = [ - base - containers - filepath - hastache - http-types - mtl - scotty - text - wai - warp - ]; - description = "Easy Mustache templating support for Scotty"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "scotty-haxl" = callPackage ( - { - mkDerivation, - base, - haxl, - scotty, - text, - }: - mkDerivation { - pname = "scotty-haxl"; - version = "0.1.0.0"; - sha256 = "06wcvjpaar8zd2y6p9j4pxs4l7rkw84s1kmcvacafkw43h1d2bx2"; - libraryHaskellDepends = [ - base - haxl - scotty - text - ]; - description = "Combine scotty and haxl"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "scotty-params-parser" = callPackage ( - { - mkDerivation, - base-prelude, - matcher, - scotty, - success, - text, - transformers, - unordered-containers, - }: - mkDerivation { - pname = "scotty-params-parser"; - version = "0.5.1.1"; - sha256 = "0v65v9svsbf3k66qv9wx41sr3xmzcc8y3psz64adfrr5kmxh9ysc"; - libraryHaskellDepends = [ - base-prelude - matcher - scotty - success - text - transformers - unordered-containers - ]; - description = "HTTP-request's query parameters parser abstraction for \"scotty\""; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "scotty-path-normalizer" = callPackage ( - { - mkDerivation, - base, - bytestring, - doctest, - scotty, - text, - wai, - }: - mkDerivation { - pname = "scotty-path-normalizer"; - version = "0.1.0.0"; - sha256 = "1hv95q3ikf25d9kxzr48fxb2x1331c24n3q5nb47qa7866gy2f4q"; - libraryHaskellDepends = [ - base - bytestring - scotty - text - wai - ]; - testHaskellDepends = [ - base - doctest - ]; - description = "Redirect to a normalized path"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; broken = true; } ) { }; @@ -588984,113 +340975,6 @@ self: { } ) { }; - "scotty-rest" = callPackage ( - { - mkDerivation, - base, - base-prelude, - bytestring, - convertible, - hspec, - hspec-wai, - http-date, - http-media, - http-types, - mtl, - QuickCheck, - scotty, - string-conversions, - text, - time, - transformers, - wai, - wai-extra, - }: - mkDerivation { - pname = "scotty-rest"; - version = "0.2.0.0"; - sha256 = "1pj9xwbppax4s5rhm3kvmmxs41qslm82xz98npj3nb3zb0gbykzc"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - base-prelude - bytestring - convertible - http-date - http-media - http-types - mtl - scotty - string-conversions - text - time - transformers - wai - wai-extra - ]; - testHaskellDepends = [ - base - bytestring - hspec - hspec-wai - mtl - QuickCheck - scotty - string-conversions - text - wai - ]; - description = "Webmachine-style REST library for scotty"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "scotty-session" = callPackage ( - { - mkDerivation, - base, - base64-bytestring, - blaze-builder, - bytestring, - crypto-api, - http-types, - scotty, - stm, - text, - time, - transformers, - unordered-containers, - wai, - }: - mkDerivation { - pname = "scotty-session"; - version = "0.0.5"; - sha256 = "1jvxzsnprfp2k9svkzxykmpc3qs6dvzc0wnnircyimha4gca6qh7"; - libraryHaskellDepends = [ - base - base64-bytestring - blaze-builder - bytestring - crypto-api - http-types - scotty - stm - text - time - transformers - unordered-containers - wai - ]; - description = "Adding session functionality to scotty"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "scotty-tls" = callPackage ( { mkDerivation, @@ -589147,128 +341031,6 @@ self: { } ) { }; - "scotty-view" = callPackage ( - { - mkDerivation, - base, - scotty, - text, - transformers, - }: - mkDerivation { - pname = "scotty-view"; - version = "1.0.0"; - sha256 = "1niv9czw0q0ych6p5g38jq2wx6brmb0nr6avdmk5sn80y9k0yvnl"; - revision = "2"; - editedCabalFile = "0aasfcbs8cc729xvwnk8hgskv2sxg6c928gf8jifadgwgsqwahfr"; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base - scotty - text - transformers - ]; - executableHaskellDepends = [ - base - scotty - text - transformers - ]; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - mainProgram = "web"; - broken = true; - } - ) { }; - - "scp-streams" = callPackage ( - { - mkDerivation, - attoparsec, - base, - bytestring, - cmdargs, - io-streams, - process, - SHA, - sha-streams, - unix, - }: - mkDerivation { - pname = "scp-streams"; - version = "0.1.0"; - sha256 = "1wi860cl9dsq6hfhyas3dk0gcjyd8hx62k3fjwgr5x56ps5fp6ry"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - attoparsec - base - bytestring - io-streams - process - ]; - executableHaskellDepends = [ - base - bytestring - cmdargs - io-streams - SHA - sha-streams - unix - ]; - testHaskellDepends = [ - base - bytestring - io-streams - ]; - description = "An SCP protocol implementation"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "scrabble-bot" = callPackage ( - { - mkDerivation, - array, - base, - binary, - containers, - deepseq, - directory, - mtl, - packed-dawg, - parallel, - split, - }: - mkDerivation { - pname = "scrabble-bot"; - version = "0.1.0.0"; - sha256 = "035jpwp58l70jd0dklx5rg0sm8b2bd5r1m726dbhhlv60w6bdfn3"; - isLibrary = false; - isExecutable = true; - enableSeparateDataOutput = true; - executableHaskellDepends = [ - array - base - binary - containers - deepseq - directory - mtl - packed-dawg - parallel - split - ]; - description = "Scrabble play generation"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "scrabble-bot"; - } - ) { }; - "scrapbook" = callPackage ( { mkDerivation, @@ -589376,83 +341138,6 @@ self: { } ) { }; - "scrape-changes" = callPackage ( - { - mkDerivation, - async, - attoparsec, - base, - bytestring, - cron, - directory, - email-validate, - filepath, - hashable, - hslogger, - http-client, - HUnit, - lens, - mime-mail, - network-uri, - QuickCheck, - semigroups, - shakespeare, - strict, - test-framework, - test-framework-hunit, - test-framework-quickcheck2, - text, - validation, - wreq, - }: - mkDerivation { - pname = "scrape-changes"; - version = "0.1.0.5"; - sha256 = "1l86pngbnbld74frn3drsqfa3s388iyj9rgqkb8cw4kxb56sbhp1"; - libraryHaskellDepends = [ - async - attoparsec - base - bytestring - cron - directory - email-validate - filepath - hashable - hslogger - http-client - lens - mime-mail - network-uri - semigroups - strict - text - validation - wreq - ]; - testHaskellDepends = [ - base - cron - email-validate - hashable - HUnit - lens - QuickCheck - semigroups - shakespeare - test-framework - test-framework-hunit - test-framework-quickcheck2 - text - validation - ]; - description = "Scrape websites for changes"; - license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "screenshot-to-clipboard" = callPackage ( { mkDerivation, @@ -589564,57 +341249,6 @@ self: { } ) { }; - "scrobble" = callPackage ( - { - mkDerivation, - base, - containers, - curl, - MissingH, - network, - network-uri, - old-locale, - pureMD5, - time, - url, - }: - mkDerivation { - pname = "scrobble"; - version = "0.2.1.1"; - sha256 = "161l75bni4fxmh35dfz8r2vgllmmf0s55j9y2xpyskqfj3xc85a7"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - containers - curl - MissingH - network - network-uri - old-locale - pureMD5 - time - url - ]; - executableHaskellDepends = [ - base - containers - curl - MissingH - network - network-uri - old-locale - time - url - ]; - description = "Scrobbling server"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "scrobble-server"; - broken = true; - } - ) { }; - "scroll" = callPackage ( { mkDerivation, @@ -589661,6 +341295,7 @@ self: { license = lib.licenses.gpl2Only; hydraPlatforms = lib.platforms.none; mainProgram = "scroll"; + broken = true; } ) { }; @@ -589728,74 +341363,6 @@ self: { } ) { }; - "scrz" = callPackage ( - { - mkDerivation, - aeson, - base, - base16-bytestring, - bytestring, - conduit, - containers, - cryptohash, - directory, - filepath, - friendly-time, - hashable, - http-conduit, - http-types, - MonadRandom, - mtl, - network, - old-locale, - process, - random, - stm, - template-haskell, - text, - time, - unix, - }: - mkDerivation { - pname = "scrz"; - version = "0.0.0.1"; - sha256 = "1j5mvvrk1647qfqdl4q6ywnx7l9bgnqp6rsjr1l8bynikfm0ghcg"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - aeson - base - base16-bytestring - bytestring - conduit - containers - cryptohash - directory - filepath - friendly-time - hashable - http-conduit - http-types - MonadRandom - mtl - network - old-locale - process - random - stm - template-haskell - text - time - unix - ]; - description = "Process management and supervision daemon"; - license = "unknown"; - hydraPlatforms = lib.platforms.none; - mainProgram = "scrz"; - broken = true; - } - ) { }; - "scubature" = callPackage ( { mkDerivation, @@ -589868,136 +341435,6 @@ self: { } ) { }; - "scythe" = callPackage ( - { - mkDerivation, - alex, - array, - base, - bytestring, - mtl, - text, - }: - mkDerivation { - pname = "scythe"; - version = "0.2.0.0"; - sha256 = "0lh3f5xj6jc1jlg049vf63gvkw93nv8xd6b4b6jpk4nyv9fw2sqn"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - array - base - bytestring - mtl - text - ]; - libraryToolDepends = [ alex ]; - executableHaskellDepends = [ - base - bytestring - ]; - description = "Fast CSV lexing on ByteString"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "scythe"; - broken = true; - } - ) { }; - - "scyther-proof" = callPackage ( - { - mkDerivation, - alex, - array, - base, - cmdargs, - containers, - directory, - filepath, - json, - mtl, - parsec, - pretty, - process, - safe, - tagsoup, - time, - uniplate, - utf8-string, - }: - mkDerivation { - pname = "scyther-proof"; - version = "0.10.0.1"; - sha256 = "0c4djdr2lq6kbi726zmjicscsc2ksj4l787pzyj5lfbl9c11fb6j"; - isLibrary = false; - isExecutable = true; - enableSeparateDataOutput = true; - executableHaskellDepends = [ - array - base - cmdargs - containers - directory - filepath - json - mtl - parsec - pretty - process - safe - tagsoup - time - uniplate - utf8-string - ]; - executableToolDepends = [ alex ]; - description = "Automatic generation of Isabelle/HOL correctness proofs for security protocols"; - license = "GPL"; - hydraPlatforms = lib.platforms.none; - mainProgram = "scyther-proof"; - broken = true; - } - ) { }; - - "sde-solver" = callPackage ( - { - mkDerivation, - base, - cereal, - cereal-vector, - ghc-prim, - haskell-mpi, - mersenne-random-pure64, - mtl, - mwc-random, - normaldistribution, - parallel, - vector, - }: - mkDerivation { - pname = "sde-solver"; - version = "0.1.0.0"; - sha256 = "0sp12fcf1h4qs0l5iblf3kl6nv1sb4ff49p2ybmrx7jifiwqxma6"; - libraryHaskellDepends = [ - base - cereal - cereal-vector - ghc-prim - haskell-mpi - mersenne-random-pure64 - mtl - mwc-random - normaldistribution - parallel - vector - ]; - description = "Distributed SDE solver"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "sdf2p1-parser" = callPackage ( { mkDerivation, @@ -590130,115 +341567,6 @@ self: { } ) { }; - "sdl2-cairo-image" = callPackage ( - { - mkDerivation, - base, - cairo, - convertible, - JuicyPixels, - linear, - sdl2, - sdl2-cairo, - vector, - }: - mkDerivation { - pname = "sdl2-cairo-image"; - version = "1.0.0.2"; - sha256 = "0xlv3kv8w3vgigdksrgwg9bmhdssa1acbvxvz0r120gdagpava65"; - libraryHaskellDepends = [ - base - cairo - convertible - JuicyPixels - linear - sdl2 - sdl2-cairo - vector - ]; - description = "An image loading and rendering library for sdl2 / sdl2-cairo"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "sdl2-compositor" = callPackage ( - { - mkDerivation, - base, - Cabal, - hspec, - hspec-core, - lens, - linear, - lrucache, - QuickCheck, - sdl2, - StateVar, - stm, - text, - transformers, - }: - mkDerivation { - pname = "sdl2-compositor"; - version = "1.2.0.7"; - sha256 = "1yfbqxrfhy951qdcf43vx9gxd4jj3l2dq5bz04blchpq4qzm4876"; - revision = "1"; - editedCabalFile = "0hyf1m8vi1zm88fbp4g3l4iz2lhm53mywppr3i72j78dxksyrl3l"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - lens - linear - lrucache - QuickCheck - sdl2 - StateVar - stm - text - transformers - ]; - testHaskellDepends = [ - base - Cabal - hspec - hspec-core - lrucache - QuickCheck - stm - ]; - description = "image compositing with sdl2 - declarative style"; - license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "sdl2-fps" = callPackage ( - { - mkDerivation, - base, - sdl2, - }: - mkDerivation { - pname = "sdl2-fps"; - version = "0.0.2"; - sha256 = "0lid8c2fdy43i9qjjn60mzn6mrcfnn1jflmbwfl93gc6ab5fwz63"; - revision = "1"; - editedCabalFile = "09bgygx1il6j4s243frlm4xl0z5drpdqn8fdgsid8m5b2m8c48ya"; - libraryHaskellDepends = [ - base - sdl2 - ]; - description = "Run of the mill, frames per second timer implementation"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "sdl2-gfx" = callPackage ( @@ -590392,44 +341720,6 @@ self: { } ) { inherit (pkgs) SDL2_mixer; }; - "sdl2-sprite" = callPackage ( - { - mkDerivation, - base, - optparse-simple, - sdl2, - sdl2-image, - split, - text, - }: - mkDerivation { - pname = "sdl2-sprite"; - version = "0.0.1"; - sha256 = "12xlq32sjvz064fll14ymbxbk52akcp24dm5vfa1x0s41z0x6fnq"; - revision = "1"; - editedCabalFile = "13s78cd2z14ja0cdy4p0j7y45rkj8brlv477jq3fd1v6x10wkrcy"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - sdl2 - sdl2-image - ]; - executableHaskellDepends = [ - base - optparse-simple - sdl2 - sdl2-image - split - text - ]; - description = "Sprite previewer/animator"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "sdl2-sprite"; - } - ) { }; - "sdl2-ttf" = callPackage ( @@ -590890,506 +342180,76 @@ self: { description = "A software defined radio library"; license = lib.licenses.bsd3; platforms = lib.platforms.x86_64; - badPlatforms = lib.platforms.darwin; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "seacat" = callPackage ( - { - mkDerivation, - base, - blaze-builder, - blaze-html, - bytestring, - ConfigFile, - data-default, - directory, - filepath, - http-types, - mime-types, - MissingH, - monad-control, - mtl, - network, - persistent, - persistent-postgresql, - persistent-sqlite, - persistent-template, - text, - time, - transformers, - wai, - wai-extra, - wai-middleware-static, - warp, - web-routes, - web-routes-wai, - }: - mkDerivation { - pname = "seacat"; - version = "1.0.0.3"; - sha256 = "0iyl7mp0vpxy4kqr7qqqz642zxpla3ydlbdzmw4ipjmg5gwjr7pm"; - libraryHaskellDepends = [ - base - blaze-builder - blaze-html - bytestring - ConfigFile - data-default - directory - filepath - http-types - mime-types - MissingH - monad-control - mtl - network - persistent - persistent-postgresql - persistent-sqlite - persistent-template - text - time - transformers - wai - wai-extra - wai-middleware-static - warp - web-routes - web-routes-wai - ]; - description = "Small web framework using Warp and WAI"; - license = "unknown"; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "seakale" = callPackage ( - { - mkDerivation, - base, - bytestring, - free, - mtl, - text, - }: - mkDerivation { - pname = "seakale"; - version = "0.2.1.1"; - sha256 = "0pb0d0y7cxry6np5412j7d2xm5wlp97gc15za3iqc7n38bdffjvy"; - libraryHaskellDepends = [ - base - bytestring - free - mtl - text - ]; - description = "Pure SQL layer on top of other libraries"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "seakale-postgresql" = callPackage ( - { - mkDerivation, - base, - bytestring, - free, - mtl, - postgresql-libpq, - seakale, - time, - }: - mkDerivation { - pname = "seakale-postgresql"; - version = "0.3.0.1"; - sha256 = "1wrh1ix2ycyw7bcblxdmcydlaj10lp7ilwq8wg3csic4hpm2gy10"; - libraryHaskellDepends = [ - base - bytestring - free - mtl - postgresql-libpq - seakale - time - ]; - description = "PostgreSQL backend for Seakale"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "seakale-tests" = callPackage ( - { - mkDerivation, - base, - bytestring, - free, - mtl, - recursion-schemes, - seakale, - }: - mkDerivation { - pname = "seakale-tests"; - version = "0.1.1.1"; - sha256 = "101z120wmxssxigbn8ax6311xfnhmflw9aa1pa6h4nswf3qran6q"; - libraryHaskellDepends = [ - base - bytestring - free - mtl - recursion-schemes - seakale - ]; - description = "Helpers to test code using Seakale"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "seal-module" = callPackage ( - { - mkDerivation, - base, - template-haskell, - }: - mkDerivation { - pname = "seal-module"; - version = "0.1.0.1"; - sha256 = "0x2m280qbfaswr2gk26d26dwg2s3v1nk4n93zh2fh1ikpkw13dfq"; - libraryHaskellDepends = [ - base - template-haskell - ]; - description = "Template Haskell support for global configuration data"; - license = lib.licenses.bsd3; - } - ) { }; - - "search" = callPackage ( - { - mkDerivation, - base, - Cabal, - cabal-doctest, - directory, - doctest, - filepath, - ghc-prim, - profunctors, - semigroupoids, - tagged, - transformers, - }: - mkDerivation { - pname = "search"; - version = "0.2"; - sha256 = "0xdacs6adcwi3ls8w8dk08yvb9s90ymcdvcm9232wfh263mq13w7"; - setupHaskellDepends = [ - base - Cabal - cabal-doctest - ]; - libraryHaskellDepends = [ - base - ghc-prim - profunctors - semigroupoids - tagged - transformers - ]; - testHaskellDepends = [ - base - directory - doctest - filepath - ]; - description = "Infinite search in finite time with Hilbert's epsilon"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "search-algorithms" = callPackage ( - { - mkDerivation, - base, - containers, - criterion, - doctest, - hspec, - }: - mkDerivation { - pname = "search-algorithms"; - version = "0.3.4"; - sha256 = "1r6nnwb0ry95xqg8psdwgfx6h264kd437a3mr5z7gv7vdarb3r2h"; - libraryHaskellDepends = [ - base - containers - ]; - testHaskellDepends = [ - base - containers - doctest - hspec - ]; - benchmarkHaskellDepends = [ - base - criterion - ]; - description = "Common graph search algorithms"; - license = lib.licenses.bsd3; - } - ) { }; - - "sec" = callPackage ( - { - mkDerivation, - base, - template-haskell, - }: - mkDerivation { - pname = "sec"; - version = "0.0.1"; - sha256 = "1ryl0nm1a37r606xhxy6ykf3c8c1gml6gdqna428w8y3a2vg5q2v"; - libraryHaskellDepends = [ - base - template-haskell - ]; - description = "Semantic Editor Combinators"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "secd" = callPackage ( - { - mkDerivation, - base, - haskeline, - mtl, - parsec, - }: - mkDerivation { - pname = "secd"; - version = "0.1.0.0"; - sha256 = "17m083n05nv0li26iv676bwvsiyvfvlps8bk3wq87ll1v1ixi0kv"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - mtl - parsec - ]; - executableHaskellDepends = [ - base - haskeline - ]; - testHaskellDepends = [ base ]; - description = "A Haskell implementation of the SECD abstract machine"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "secdi"; - broken = true; - } - ) { }; - - "secdh" = callPackage ( - { - mkDerivation, - base, - containers, - }: - mkDerivation { - pname = "secdh"; - version = "0.2"; - sha256 = "0qrb2g7dfhh2m3hwp39xlimbc3kinww279a58pah738gqnhmayrs"; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base - containers - ]; - executableHaskellDepends = [ - base - containers - ]; - description = "SECDH Machine Simulator"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "secdh"; - broken = true; - } - ) { }; - - "seclib" = callPackage ( - { mkDerivation, base }: - mkDerivation { - pname = "seclib"; - version = "1.1.0.3"; - sha256 = "1ikkjxnl7p3gdzf7fsx9bakd9j6xg5wm5rgyz0n8f2n4nx0r04db"; - libraryHaskellDepends = [ base ]; - description = "A simple library for static information-flow security in Haskell"; - license = lib.licenses.bsd3; + badPlatforms = lib.platforms.darwin; hydraPlatforms = lib.platforms.none; broken = true; } ) { }; - "second-transfer" = callPackage ( + "seal-module" = callPackage ( { mkDerivation, - attoparsec, base, - base16-bytestring, - binary, - BoundedChan, - bytestring, - clock, - conduit, - containers, - cpphs, - deepseq, - exceptions, - hashable, - hashtables, - http2, - HUnit, - lens, - mmorph, - network, - network-uri, - pqueue, - resourcet, - stm, - text, - time, - transformers, - unordered-containers, - vector, - vector-algorithms, + template-haskell, }: mkDerivation { - pname = "second-transfer"; - version = "0.10.0.4"; - sha256 = "00gq7r1bjqy47vp10b99m2yn2kllkqj5gmsvw05m6xhzf55pgi80"; + pname = "seal-module"; + version = "0.1.0.1"; + sha256 = "0x2m280qbfaswr2gk26d26dwg2s3v1nk4n93zh2fh1ikpkw13dfq"; libraryHaskellDepends = [ - attoparsec - base - base16-bytestring - binary - BoundedChan - bytestring - clock - conduit - containers - deepseq - exceptions - hashable - hashtables - http2 - lens - mmorph - network - network-uri - pqueue - resourcet - stm - text - time - transformers - vector - vector-algorithms - ]; - libraryToolDepends = [ cpphs ]; - testHaskellDepends = [ base - binary - bytestring - conduit - containers - hashtables - http2 - HUnit - lens - network - network-uri - stm - text - transformers - unordered-containers + template-haskell ]; - testToolDepends = [ cpphs ]; - description = "Second Transfer HTTP/2 web server"; + description = "Template Haskell support for global configuration data"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; } ) { }; - "secp256k1" = callPackage ( + "search-algorithms" = callPackage ( { mkDerivation, base, - base16-bytestring, - bytestring, - cereal, - cryptohash, - entropy, + containers, + criterion, + doctest, hspec, - hspec-discover, - HUnit, - mtl, - QuickCheck, - secp256k1, - string-conversions, }: mkDerivation { - pname = "secp256k1"; - version = "1.1.2"; - sha256 = "0nm8xx9cfn5gj2rqhcmikdkl3grj88xs4wikjbrlazvpyj4rc0q2"; + pname = "search-algorithms"; + version = "0.3.4"; + sha256 = "1r6nnwb0ry95xqg8psdwgfx6h264kd437a3mr5z7gv7vdarb3r2h"; libraryHaskellDepends = [ base - base16-bytestring - bytestring - cereal - cryptohash - entropy - hspec - HUnit - mtl - QuickCheck - string-conversions + containers ]; - librarySystemDepends = [ secp256k1 ]; testHaskellDepends = [ base - base16-bytestring - bytestring - cereal - cryptohash - entropy + containers + doctest hspec - HUnit - mtl - QuickCheck - string-conversions ]; - testToolDepends = [ hspec-discover ]; - description = "Bindings for secp256k1 library from Bitcoin Core"; - license = lib.licenses.publicDomain; + benchmarkHaskellDepends = [ + base + criterion + ]; + description = "Common graph search algorithms"; + license = lib.licenses.bsd3; + } + ) { }; + + "seclib" = callPackage ( + { mkDerivation, base }: + mkDerivation { + pname = "seclib"; + version = "1.1.0.3"; + sha256 = "1ikkjxnl7p3gdzf7fsx9bakd9j6xg5wm5rgyz0n8f2n4nx0r04db"; + libraryHaskellDepends = [ base ]; + description = "A simple library for static information-flow security in Haskell"; + license = lib.licenses.bsd3; hydraPlatforms = lib.platforms.none; broken = true; } - ) { inherit (pkgs) secp256k1; }; + ) { }; "secp256k1-haskell" = callPackage ( { @@ -591447,163 +342307,6 @@ self: { } ) { inherit (pkgs) secp256k1; }; - "secp256k1-legacy" = callPackage ( - { - mkDerivation, - base, - base16-bytestring, - bytestring, - Cabal, - cereal, - cryptohash, - entropy, - HUnit, - mtl, - QuickCheck, - string-conversions, - test-framework, - test-framework-hunit, - test-framework-quickcheck2, - }: - mkDerivation { - pname = "secp256k1-legacy"; - version = "0.5.6"; - sha256 = "0p7kp7011hfc95rdchkniw3gj5i0pkwgsa5kkhwn6fjzs2clslbz"; - revision = "1"; - editedCabalFile = "0fz2nypf6p1qsvcvvfa7ya0pggvkr2jsm306ryy8grncbzy4ydgm"; - setupHaskellDepends = [ - base - Cabal - ]; - libraryHaskellDepends = [ - base - base16-bytestring - bytestring - cereal - entropy - mtl - QuickCheck - string-conversions - ]; - testHaskellDepends = [ - base - base16-bytestring - bytestring - cereal - cryptohash - entropy - HUnit - mtl - QuickCheck - string-conversions - test-framework - test-framework-hunit - test-framework-quickcheck2 - ]; - description = "fork of secp256k1"; - license = lib.licenses.publicDomain; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "secret-santa" = callPackage ( - { - mkDerivation, - base, - containers, - diagrams-cairo, - diagrams-lib, - haskell-qrencode, - random, - }: - mkDerivation { - pname = "secret-santa"; - version = "0.1.0.0"; - sha256 = "0qrc1jk2hhhhq0cq9h9g8pc2frjsb1m96h6sdj79m7km5dc2slm8"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - containers - diagrams-cairo - diagrams-lib - haskell-qrencode - random - ]; - description = "Secret Santa game assigner using QR-Codes"; - license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - mainProgram = "secret-santa"; - broken = true; - } - ) { }; - - "secret-sharing" = callPackage ( - { - mkDerivation, - base, - binary, - bytestring, - dice-entropy-conduit, - finite-field, - QuickCheck, - test-framework, - test-framework-quickcheck2, - vector, - }: - mkDerivation { - pname = "secret-sharing"; - version = "1.0.1.2"; - sha256 = "0965nbzaiia0jbx1r149liyg8fsix7z5nlxybpavrkkn0b4ncn89"; - libraryHaskellDepends = [ - base - binary - bytestring - dice-entropy-conduit - finite-field - vector - ]; - testHaskellDepends = [ - base - binary - bytestring - dice-entropy-conduit - finite-field - QuickCheck - test-framework - test-framework-quickcheck2 - vector - ]; - description = "Information-theoretic secure secret sharing"; - license = lib.licenses.lgpl21Only; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "secrm" = callPackage ( - { - mkDerivation, - base, - haskell98, - }: - mkDerivation { - pname = "secrm"; - version = "0.0"; - sha256 = "0hcf8mxl1br27764ha0gdf7jdl7zlxknbspqijw0jr6ws7hshxg9"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - haskell98 - ]; - description = "Example of writing \"secure\" file removal in Haskell rather than C"; - license = lib.licenses.publicDomain; - hydraPlatforms = lib.platforms.none; - mainProgram = "secrm"; - } - ) { }; - "secure-memory" = callPackage ( { mkDerivation, @@ -591669,62 +342372,6 @@ self: { } ) { }; - "secure-sockets" = callPackage ( - { - mkDerivation, - base, - bytestring, - directory, - HsOpenSSL, - network, - process, - transformers, - }: - mkDerivation { - pname = "secure-sockets"; - version = "1.2.9.2"; - sha256 = "0ijizi76fzqamynwhyd3ppzy90bfvypmzbjr0v63ng2w0mwnrjlz"; - libraryHaskellDepends = [ - base - bytestring - directory - HsOpenSSL - network - process - transformers - ]; - description = "Secure point-to-point connectivity library"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "secureUDP" = callPackage ( - { - mkDerivation, - base, - bytestring, - containers, - network, - }: - mkDerivation { - pname = "secureUDP"; - version = "0.1.1.3"; - sha256 = "0af16j1j77849idfs7cb0hvi1wkf60qlnkfdvqnp40qrwzpbqn9c"; - libraryHaskellDepends = [ - base - bytestring - containers - network - ]; - description = "Setups secure (unsorted) UDP packet transfer"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "securemem" = callPackage ( { mkDerivation, @@ -591750,75 +342397,6 @@ self: { } ) { }; - "sednaDBXML" = callPackage ( - { - mkDerivation, - base, - bindings-DSL, - bytestring, - containers, - iteratee, - mtl, - sedna, - text, - }: - mkDerivation { - pname = "sednaDBXML"; - version = "0.1.2.5"; - sha256 = "068yl4z0wb5kr7a7c7haah3z391mjqdzgxh5rg68rrjgvf7dczky"; - libraryHaskellDepends = [ - base - bindings-DSL - bytestring - containers - iteratee - mtl - text - ]; - librarySystemDepends = [ sedna ]; - description = "Sedna C API XML Binding"; - license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - } - ) { sedna = null; }; - - "seitz-symbol" = callPackage ( - { - mkDerivation, - base, - doctest, - hspec, - matrix, - matrix-as-xyz, - parsec, - symmetry-operations-symbols, - }: - mkDerivation { - pname = "seitz-symbol"; - version = "0.1.0.0"; - sha256 = "1x6374xaqgrf9ygjb9rffhpn1y5fla2gf0b0xj93r3bj6pf1w0qh"; - libraryHaskellDepends = [ - base - matrix - matrix-as-xyz - parsec - symmetry-operations-symbols - ]; - testHaskellDepends = [ - base - doctest - hspec - matrix - matrix-as-xyz - parsec - symmetry-operations-symbols - ]; - description = "Read and Display Seitz Symbol"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "sel" = callPackage ( { mkDerivation, @@ -592079,117 +342657,6 @@ self: { } ) { }; - "selectors" = callPackage ( - { - mkDerivation, - alex, - array, - base, - containers, - happy, - template-haskell, - text, - xml-conduit, - }: - mkDerivation { - pname = "selectors"; - version = "0.0.3.0"; - sha256 = "1chs2d1j58y4r01231hh50gr4h0wnwsg9mardzq8ybqc6z6l32pr"; - libraryHaskellDepends = [ - array - base - containers - template-haskell - text - xml-conduit - ]; - libraryToolDepends = [ - alex - happy - ]; - description = "CSS Selectors for DOM traversal"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "selenium" = callPackage ( - { - mkDerivation, - base, - HTTP, - HUnit, - mtl, - network, - pretty, - }: - mkDerivation { - pname = "selenium"; - version = "0.2.5"; - sha256 = "0vr3d891pj947lv2grgbc83nm828gz9bbz6dp8mnf9bsji3ih7l7"; - libraryHaskellDepends = [ - base - HTTP - HUnit - mtl - network - pretty - ]; - description = "Test web applications through a browser"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "selenium-server" = callPackage ( - { - mkDerivation, - base, - conduit, - directory, - filepath, - hspec, - http-conduit, - http-conduit-downloader, - network, - process, - random, - regex-tdfa, - text, - utf8-string, - webdriver, - }: - mkDerivation { - pname = "selenium-server"; - version = "0.1.0.0"; - sha256 = "13bqzhia3z35174hzf2ipl4ga62mcvh7whvhwj5b8rsazgi259qf"; - libraryHaskellDepends = [ - base - conduit - directory - filepath - http-conduit - http-conduit-downloader - network - process - random - regex-tdfa - utf8-string - ]; - testHaskellDepends = [ - base - hspec - text - webdriver - ]; - description = "Run the selenium standalone server for usage with webdriver"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "self-extract" = callPackage ( { mkDerivation, @@ -592254,29 +342721,6 @@ self: { } ) { }; - "selinux" = callPackage ( - { - mkDerivation, - base, - selinux, - unix, - }: - mkDerivation { - pname = "selinux"; - version = "0.1.1"; - sha256 = "1r0lwah32y3cza5jnihzwkl4wdk23qh7sgw6yzcajq7rjnzrf8qw"; - libraryHaskellDepends = [ - base - unix - ]; - librarySystemDepends = [ selinux ]; - description = "SELinux bindings"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { selinux = null; }; - "semantic" = callPackage ( { mkDerivation, base }: mkDerivation { @@ -592399,79 +342843,6 @@ self: { } ) { }; - "semdoc" = callPackage ( - { - mkDerivation, - base, - containers, - data-default-class, - data-default-instances-base, - ghc, - ghc-paths, - Glob, - groom, - mtl, - pandoc, - pandoc-types, - regex-tdfa, - }: - mkDerivation { - pname = "semdoc"; - version = "0.1.3"; - sha256 = "0n2wa7rhahfpmyxjw40lvblkdmajh0lcmlic37nr458gmvmh9wib"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - containers - data-default-class - data-default-instances-base - ghc - ghc-paths - Glob - groom - mtl - pandoc - pandoc-types - regex-tdfa - ]; - executableHaskellDepends = [ base ]; - description = "Evaluate code snippets in Literate Haskell"; - license = lib.licenses.agpl3Only; - hydraPlatforms = lib.platforms.none; - mainProgram = "semdoc"; - broken = true; - } - ) { }; - - "semi-iso" = callPackage ( - { - mkDerivation, - base, - lens, - profunctors, - semigroupoids, - transformers, - tuple-morph, - }: - mkDerivation { - pname = "semi-iso"; - version = "1.0.0.0"; - sha256 = "09hcg6hkyd4bnk0586gk4dzc76g64sx37jg0pz3jq87lrq8dzm5g"; - libraryHaskellDepends = [ - base - lens - profunctors - semigroupoids - transformers - tuple-morph - ]; - description = "Weakened partial isomorphisms, reversible computations"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "semialign" = callPackage ( { mkDerivation, @@ -592511,43 +342882,6 @@ self: { } ) { }; - "semialign-extras" = callPackage ( - { - mkDerivation, - base, - doctest, - lens, - QuickCheck, - semialign, - semialign-indexed, - these, - witherable, - }: - mkDerivation { - pname = "semialign-extras"; - version = "0.1.0.0"; - sha256 = "0wnaspwfj9rm7g9mz2q9xad5a9rvkfsrjb5lir64csppy3p11276"; - revision = "1"; - editedCabalFile = "0cz85cbv6qiv1rvlhnxxlibfys2qj5bfsjwwhmnkq91wm69scwpy"; - libraryHaskellDepends = [ - base - lens - semialign - semialign-indexed - these - witherable - ]; - testHaskellDepends = [ - base - doctest - QuickCheck - ]; - description = "Extra functions for working with Semialigns"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "semialign-indexed" = callPackage ( { mkDerivation, @@ -592624,29 +342958,6 @@ self: { } ) { }; - "semigroupoid-extras" = callPackage ( - { - mkDerivation, - base, - profunctors, - semigroupoids, - }: - mkDerivation { - pname = "semigroupoid-extras"; - version = "5"; - sha256 = "0ciq1jnc0d9d8jph9103v04vphiz7xqa69a8f4dmmcf3bjsk6bhh"; - libraryHaskellDepends = [ - base - profunctors - semigroupoids - ]; - description = "Semigroupoids that depend on PolyKinds"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "semigroupoids" = callPackage ( { mkDerivation, @@ -592711,52 +343022,6 @@ self: { } ) { }; - "semigroupoids-syntax" = callPackage ( - { - mkDerivation, - base, - comonad, - containers, - contravariant, - directory, - distributive, - doctest, - filepath, - QuickCheck, - semigroupoids, - semigroups, - template-haskell, - transformers, - }: - mkDerivation { - pname = "semigroupoids-syntax"; - version = "0.0.1"; - sha256 = "1r3byywgbcn82dq9xw4k9m5lgmhsgj02rxwmkrp4jwrjaax8v4zh"; - libraryHaskellDepends = [ - base - comonad - containers - contravariant - distributive - semigroupoids - semigroups - transformers - ]; - testHaskellDepends = [ - base - directory - doctest - filepath - QuickCheck - template-haskell - ]; - description = "RebindableSyntax using the semigroupoids package"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "semigroups" = callPackage ( { mkDerivation, base }: mkDerivation { @@ -592769,29 +343034,6 @@ self: { } ) { }; - "semigroups-actions" = callPackage ( - { - mkDerivation, - base, - containers, - semigroups, - }: - mkDerivation { - pname = "semigroups-actions"; - version = "0.1"; - sha256 = "0vns2vdchszw34i12s9rfl4cm76ympfrivpb397j2vzg2i7bghqb"; - libraryHaskellDepends = [ - base - containers - semigroups - ]; - description = "Semigroups actions"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "semilattices" = callPackage ( { mkDerivation, @@ -592822,97 +343064,6 @@ self: { } ) { }; - "semiring" = callPackage ( - { - mkDerivation, - base, - Boolean, - containers, - monoids, - }: - mkDerivation { - pname = "semiring"; - version = "0.3"; - sha256 = "1b56y5a45fha07rbqqjl6f5i2bw9pji97pagyjcn9bprzqfbiymy"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - Boolean - containers - monoids - ]; - description = "Semirings, ring-like structures used for dynamic programming applications"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "semiring-num" = callPackage ( - { - mkDerivation, - base, - containers, - criterion, - deepseq, - doctest, - hashable, - log-domain, - nat-sized-numbers, - QuickCheck, - random, - scientific, - smallcheck, - tasty, - tasty-quickcheck, - tasty-smallcheck, - template-haskell, - time, - unordered-containers, - vector, - }: - mkDerivation { - pname = "semiring-num"; - version = "1.6.0.4"; - sha256 = "1wpszhdjh2hmgnfzwdsdai1xzq0y1panay9jz5sa82hg11p4wa44"; - libraryHaskellDepends = [ - base - containers - deepseq - hashable - log-domain - scientific - template-haskell - time - unordered-containers - vector - ]; - testHaskellDepends = [ - base - containers - doctest - log-domain - nat-sized-numbers - QuickCheck - smallcheck - tasty - tasty-quickcheck - tasty-smallcheck - vector - ]; - benchmarkHaskellDepends = [ - base - containers - criterion - random - vector - ]; - description = "Basic semiring class and instances"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "semiring-simple" = callPackage ( { mkDerivation, base }: mkDerivation { @@ -593046,41 +343197,6 @@ self: { } ) { }; - "sendgrid-haskell" = callPackage ( - { - mkDerivation, - aeson, - base, - bytestring, - containers, - exceptions, - http-conduit, - monad-control, - text, - transformers, - }: - mkDerivation { - pname = "sendgrid-haskell"; - version = "1.0"; - sha256 = "0k5sbc4j9palfsp7ryap79scb50jhm0kzzq0lfa0r7py1pkx2ylp"; - libraryHaskellDepends = [ - aeson - base - bytestring - containers - exceptions - http-conduit - monad-control - text - transformers - ]; - description = "Sengrid API"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "sendgrid-v3" = callPackage ( { mkDerivation, @@ -593274,127 +343390,6 @@ self: { } ) { }; - "sensenet" = callPackage ( - { - mkDerivation, - aeson, - base, - bytestring, - containers, - process, - stm, - zeromq3-haskell, - }: - mkDerivation { - pname = "sensenet"; - version = "0.1.0.0"; - sha256 = "1yzh1ngfddybxwqybvdg7l5lgg85kmhqhdl3mzsnndvz2labphp1"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - aeson - base - bytestring - containers - process - stm - zeromq3-haskell - ]; - description = "Distributed sensor network for the raspberry pi"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - mainProgram = "sensenet"; - } - ) { }; - - "sensu-run" = callPackage ( - { - mkDerivation, - aeson, - async, - base, - bytestring, - directory, - filelock, - filepath, - http-client, - http-client-tls, - http-types, - lens, - network, - optparse-applicative, - process, - temporary, - text, - time, - unix, - unix-compat, - vector, - wreq, - }: - mkDerivation { - pname = "sensu-run"; - version = "0.7.0.5"; - sha256 = "06bzlhrw11sazqv7jdi3rdhapcfp7ascg9fd83svs8zm9wba60xx"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - aeson - async - base - bytestring - directory - filelock - filepath - http-client - http-client-tls - http-types - lens - network - optparse-applicative - process - temporary - text - time - unix - unix-compat - vector - wreq - ]; - description = "A tool to send command execution results to Sensu"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "sensu-run"; - broken = true; - } - ) { }; - - "sentence-jp" = callPackage ( - { - mkDerivation, - base, - mecab, - random-shuffle, - text, - transformers, - }: - mkDerivation { - pname = "sentence-jp"; - version = "0.1.0.0"; - sha256 = "1j8zv2fx282jhwr9rwwfc8kjwi3ddkf3xkzq9kpi7h742q21x65x"; - libraryHaskellDepends = [ - base - mecab - random-shuffle - text - transformers - ]; - description = "Easily generating message of japanese natural language"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "sentiwordnet-parser" = callPackage ( { mkDerivation, @@ -593430,57 +343425,6 @@ self: { } ) { }; - "sentry" = callPackage ( - { - mkDerivation, - ansi-terminal, - base, - bytestring, - cereal, - cmdargs, - directory, - filepath, - old-locale, - old-time, - process, - safecopy, - time, - unix, - }: - mkDerivation { - pname = "sentry"; - version = "0.1.0"; - sha256 = "1kv4ldms739x4b2fbs6hjwy8bssrwv0kavn4jqdc2svzlfqxqsqx"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - ansi-terminal - base - bytestring - cereal - cmdargs - directory - filepath - old-locale - old-time - process - safecopy - time - unix - ]; - executableHaskellDepends = [ - base - directory - filepath - unix - ]; - description = "Process monitoring tool written and configured in Haskell"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "senza" = callPackage ( { mkDerivation }: mkDerivation { @@ -593672,121 +343616,6 @@ self: { } ) { }; - "separated" = callPackage ( - { - mkDerivation, - base, - bifunctors, - Cabal, - cabal-doctest, - deriving-compat, - directory, - doctest, - filepath, - lens, - parsec, - QuickCheck, - semigroupoids, - semigroups, - template-haskell, - }: - mkDerivation { - pname = "separated"; - version = "0.3.2.1"; - sha256 = "0xnpxaz9qr2qqg7kmgv1qsbd4943r54m1vva3xivn4cxf1gnxcaw"; - revision = "2"; - editedCabalFile = "1q501zsxf5kl65aqp8cdaxj2y61jq3480r31cnr81w14ikrd5wdy"; - setupHaskellDepends = [ - base - Cabal - cabal-doctest - ]; - libraryHaskellDepends = [ - base - bifunctors - deriving-compat - lens - semigroupoids - semigroups - ]; - testHaskellDepends = [ - base - directory - doctest - filepath - parsec - QuickCheck - template-haskell - ]; - description = "A data type with elements separated by values"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "seqaid" = callPackage ( - { - mkDerivation, - array, - base, - Cabal, - containers, - cpphs, - deepseq-bounded, - directory, - exceptions, - filepath, - ghc, - ghc-paths, - mtl, - process, - regex-base, - regex-pcre, - syb, - template-haskell, - temporary, - transformers, - }: - mkDerivation { - pname = "seqaid"; - version = "0.4.0.0"; - sha256 = "0kmzzxk1z10lqjawl0yqbv1n35b0bx41ikgiqii202m73khbg9qn"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - array - base - containers - cpphs - deepseq-bounded - exceptions - filepath - ghc - ghc-paths - mtl - regex-pcre - syb - template-haskell - temporary - transformers - ]; - executableHaskellDepends = [ - base - Cabal - cpphs - directory - process - regex-base - regex-pcre - temporary - ]; - description = "Dynamic strictness control, including space leak repair"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "seqalign" = callPackage ( { mkDerivation, @@ -593851,145 +343680,6 @@ self: { } ) { }; - "seqloc" = callPackage ( - { - mkDerivation, - attoparsec, - base, - biocore, - bytestring, - hashable, - QuickCheck, - random, - unordered-containers, - vector, - }: - mkDerivation { - pname = "seqloc"; - version = "0.6.1.1"; - sha256 = "1hsm9y6q0g7ixnqj562a33lmyka4k7f778fndcmn25v4m1myfda4"; - libraryHaskellDepends = [ - attoparsec - base - biocore - bytestring - hashable - unordered-containers - vector - ]; - testHaskellDepends = [ - attoparsec - base - biocore - bytestring - hashable - QuickCheck - random - unordered-containers - vector - ]; - description = "Handle sequence locations for bioinformatics"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "seqloc-datafiles" = callPackage ( - { - mkDerivation, - attoparsec, - base, - biocore, - bytestring, - cmdtheline, - conduit, - conduit-extra, - directory, - filepath, - hashable, - iteratee, - lifted-base, - monads-tf, - pretty, - process, - QuickCheck, - random, - resourcet, - seqloc, - transformers, - transformers-base, - unordered-containers, - vector, - }: - mkDerivation { - pname = "seqloc-datafiles"; - version = "0.4.2"; - sha256 = "175nifix2vax5xsinz604mm3nid7krh5a9d7gqpy02wh4f5qdrja"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - attoparsec - base - biocore - bytestring - conduit - conduit-extra - hashable - iteratee - lifted-base - resourcet - seqloc - transformers-base - unordered-containers - ]; - executableHaskellDepends = [ - attoparsec - base - biocore - bytestring - cmdtheline - conduit - conduit-extra - filepath - hashable - iteratee - lifted-base - monads-tf - pretty - QuickCheck - random - resourcet - seqloc - transformers - transformers-base - unordered-containers - ]; - testHaskellDepends = [ - attoparsec - base - biocore - bytestring - conduit - conduit-extra - directory - hashable - iteratee - lifted-base - process - QuickCheck - random - seqloc - transformers - transformers-base - unordered-containers - vector - ]; - description = "Read and write BED and GTF format genome annotations"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "seqn" = callPackage ( { mkDerivation, @@ -594193,56 +343883,6 @@ self: { } ) { }; - "sequent-core" = callPackage ( - { - mkDerivation, - base, - bytestring, - containers, - ghc, - transformers, - }: - mkDerivation { - pname = "sequent-core"; - version = "0.5.0.1"; - sha256 = "1q9rrr0nrnnhdv2jwpwjs1r98g3xdbqi7sfj7zsv1dykzalmc2nd"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - bytestring - containers - ghc - transformers - ]; - description = "Alternative Core language for GHC plugins"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "sequential-index" = callPackage ( - { - mkDerivation, - base, - bytestring, - }: - mkDerivation { - pname = "sequential-index"; - version = "0.2.0.1"; - sha256 = "0vd7nrkx59vsxrhpb46kgzbvz7v830wh5zx3vg9494wvski983y6"; - libraryHaskellDepends = [ - base - bytestring - ]; - description = "Sequential numbers that allow arbitrarily inserting numbers - for containers"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "sequitur" = callPackage ( { mkDerivation, @@ -594287,60 +343927,6 @@ self: { } ) { }; - "sequor" = callPackage ( - { - mkDerivation, - array, - base, - binary, - bytestring, - containers, - mtl, - nlp-scores, - pretty, - split, - text, - vector, - }: - mkDerivation { - pname = "sequor"; - version = "0.7.5"; - sha256 = "1dcinp03kbj94kw1lkkyz0gh4k7nw96l9c9782v0sdq0v5i525j9"; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - array - base - binary - bytestring - containers - mtl - nlp-scores - pretty - split - text - vector - ]; - executableHaskellDepends = [ - array - base - binary - bytestring - containers - mtl - nlp-scores - pretty - split - text - vector - ]; - description = "A sequence labeler based on Collins's sequence perceptron"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "serdoc-binary" = callPackage ( { mkDerivation, @@ -594414,62 +344000,6 @@ self: { } ) { }; - "serf" = callPackage ( - { - mkDerivation, - attoparsec, - base, - conduit, - conduit-extra, - mtl, - operational, - process, - resourcet, - text, - }: - mkDerivation { - pname = "serf"; - version = "0.1.1.0"; - sha256 = "0ry0shqmazxcsjxsh6amvz2fky2fy3wwlck7d331j8csz7fwdjfn"; - libraryHaskellDepends = [ - attoparsec - base - conduit - conduit-extra - mtl - operational - process - resourcet - text - ]; - description = "Interact with Serf via Haskell"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "serial" = callPackage ( - { - mkDerivation, - base, - unix, - }: - mkDerivation { - pname = "serial"; - version = "0.2.7"; - sha256 = "1h52h8i28bhamp57q57ih1w9h26ih9g1l25gg9rhiwv5ykhy2vfq"; - libraryHaskellDepends = [ - base - unix - ]; - description = "POSIX serial port wrapper"; - license = "LGPL"; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "serial-test-generators" = callPackage ( { mkDerivation, @@ -594660,35 +344190,6 @@ self: { } ) { }; - "serialize-instances" = callPackage ( - { - mkDerivation, - base, - cereal, - hashable, - semigroups, - unordered-containers, - }: - mkDerivation { - pname = "serialize-instances"; - version = "0.1.0.0"; - sha256 = "1m88jd5w68vpk7z2x2fffd5ljrzr93y20246dkkzn1md9ky0fclw"; - revision = "3"; - editedCabalFile = "1apx6j68l0gyicf8bxh010r1xy6sp2nbw3zj79lfqbw7fm3swv52"; - libraryHaskellDepends = [ - base - cereal - hashable - semigroups - unordered-containers - ]; - description = "Instances for Serialize of cereal"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "serialport" = callPackage ( { mkDerivation, @@ -594716,230 +344217,6 @@ self: { } ) { }; - "serokell-util" = callPackage ( - { - mkDerivation, - aeson, - ansi-terminal, - base, - base16-bytestring, - base64-bytestring, - bytestring, - clock, - deepseq, - exceptions, - extra, - fmt, - formatting, - hashable, - hspec, - hspec-discover, - microlens, - microlens-mtl, - mtl, - o-clock, - parsec, - process, - QuickCheck, - quickcheck-instances, - scientific, - template-haskell, - text, - th-lift-instances, - transformers, - universum, - unordered-containers, - vector, - }: - mkDerivation { - pname = "serokell-util"; - version = "0.10.0"; - sha256 = "1aa1cjqwkjhbfd9q1lnyp5xiji64swsy2lipj7c83q8xyfxcxq67"; - libraryHaskellDepends = [ - aeson - ansi-terminal - base - base16-bytestring - base64-bytestring - bytestring - clock - deepseq - exceptions - fmt - formatting - hashable - microlens - microlens-mtl - mtl - o-clock - parsec - process - QuickCheck - quickcheck-instances - scientific - template-haskell - text - th-lift-instances - transformers - universum - unordered-containers - vector - ]; - testHaskellDepends = [ - aeson - base - extra - formatting - hspec - QuickCheck - quickcheck-instances - scientific - universum - unordered-containers - vector - ]; - testToolDepends = [ hspec-discover ]; - description = "General-purpose functions by Serokell"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "serpentine" = callPackage ( - { - mkDerivation, - base, - pringletons, - singletons, - template-haskell, - text, - vinyl, - }: - mkDerivation { - pname = "serpentine"; - version = "0.2"; - sha256 = "1wpd9pjlacj6lchhpj7r6ydlsj21nriql46zvhjch4in7v5aa2vv"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - pringletons - singletons - template-haskell - text - vinyl - ]; - executableHaskellDepends = [ - base - singletons - text - ]; - description = "Simple project template from stack"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "example"; - } - ) { }; - - "serv" = callPackage ( - { - mkDerivation, - base, - containers, - http-kinder, - singletons, - text, - }: - mkDerivation { - pname = "serv"; - version = "0.2.0.0"; - sha256 = "1kw3wwy4rkkvjhss4fa446c0gdh54zb41jl8vykj08dspa07xmpj"; - libraryHaskellDepends = [ - base - containers - http-kinder - singletons - text - ]; - description = "Dependently typed API framework"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "serv-wai" = callPackage ( - { - mkDerivation, - aeson, - base, - bytestring, - case-insensitive, - containers, - http-kinder, - http-media, - http-types, - HUnit, - mmorph, - mtl, - QuickCheck, - serv, - singletons, - tagged, - tasty, - tasty-ant-xml, - tasty-hunit, - tasty-quickcheck, - text, - time, - transformers, - vinyl, - wai, - wai-extra, - }: - mkDerivation { - pname = "serv-wai"; - version = "0.2.0.0"; - sha256 = "1cn77javn4s2q92k08wmiibbbmhx104sgwp8g66wiqir290v6gpw"; - libraryHaskellDepends = [ - aeson - base - bytestring - case-insensitive - containers - http-kinder - http-media - http-types - mmorph - mtl - serv - singletons - tagged - text - time - transformers - vinyl - wai - ]; - testHaskellDepends = [ - base - HUnit - QuickCheck - serv - tasty - tasty-ant-xml - tasty-hunit - tasty-quickcheck - text - wai - wai-extra - ]; - description = "Dependently typed API servers with Serv"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "servant" = callPackage ( { mkDerivation, @@ -595177,77 +344454,6 @@ self: { } ) { }; - "servant-aeson-specs" = callPackage ( - { - mkDerivation, - aeson, - aeson-pretty, - base, - bytestring, - directory, - doctest, - filepath, - hspec, - hspec-core, - hspec-golden-aeson, - mockery, - QuickCheck, - quickcheck-arbitrary-adt, - quickcheck-instances, - random, - servant, - silently, - string-conversions, - temporary, - text, - }: - mkDerivation { - pname = "servant-aeson-specs"; - version = "0.6.2.0"; - sha256 = "0q8xihvhzjycvwm8da69zg20fa6jynid0milgdbbsnicwh59cn86"; - libraryHaskellDepends = [ - aeson - aeson-pretty - base - bytestring - directory - filepath - hspec - hspec-golden-aeson - QuickCheck - quickcheck-arbitrary-adt - random - servant - ]; - testHaskellDepends = [ - aeson - aeson-pretty - base - bytestring - directory - doctest - filepath - hspec - hspec-core - hspec-golden-aeson - mockery - QuickCheck - quickcheck-arbitrary-adt - quickcheck-instances - random - servant - silently - string-conversions - temporary - text - ]; - description = "generic tests for aeson serialization in servant"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "servant-auth" = callPackage ( { mkDerivation, @@ -595335,722 +344541,210 @@ self: { servant-server time transformers - wai - warp - ]; - testToolDepends = [ hspec-discover ]; - description = "servant-client/servant-auth compatibility"; - license = lib.licenses.bsd3; - } - ) { }; - - "servant-auth-cookie" = callPackage ( - { - mkDerivation, - base, - base64-bytestring, - blaze-builder, - bytestring, - cereal, - cereal-time, - cookie, - criterion, - cryptonite, - data-default, - deepseq, - exceptions, - hspec, - http-api-data, - http-types, - memory, - mtl, - QuickCheck, - servant, - servant-server, - tagged, - template-haskell, - text, - time, - transformers, - wai, - }: - mkDerivation { - pname = "servant-auth-cookie"; - version = "0.6.0.3"; - sha256 = "12cwqvva4f2kricvwq645f5c759pjz4w2b9yhx9iz7agc95ghkv0"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - base64-bytestring - blaze-builder - bytestring - cereal - cereal-time - cookie - cryptonite - data-default - exceptions - http-api-data - http-types - memory - mtl - servant - servant-server - tagged - text - time - transformers - wai - ]; - testHaskellDepends = [ - base - bytestring - cereal - cryptonite - data-default - deepseq - exceptions - hspec - QuickCheck - servant-server - tagged - template-haskell - time - transformers - ]; - benchmarkHaskellDepends = [ - base - bytestring - criterion - cryptonite - servant-server - ]; - description = "Authentication via encrypted cookies"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "servant-auth-docs" = callPackage ( - { - mkDerivation, - base, - Cabal, - cabal-doctest, - doctest, - hspec, - hspec-discover, - lens, - QuickCheck, - servant, - servant-auth, - servant-docs, - template-haskell, - text, - }: - mkDerivation { - pname = "servant-auth-docs"; - version = "0.2.11.0"; - sha256 = "127w2ggii2vqs60cnd5ir4azyrxnm7mhfydi156liykk2v8jkkaj"; - revision = "2"; - editedCabalFile = "1afn8h6j7fljz5q6p2pml3xpdrbkapy14nb33fxsdasg4nmfzgzr"; - setupHaskellDepends = [ - base - Cabal - cabal-doctest - ]; - libraryHaskellDepends = [ - base - lens - servant - servant-auth - servant-docs - ]; - testHaskellDepends = [ - base - doctest - hspec - lens - QuickCheck - servant - servant-auth - servant-docs - template-haskell - text - ]; - testToolDepends = [ hspec-discover ]; - description = "servant-docs/servant-auth compatibility"; - license = lib.licenses.bsd3; - } - ) { }; - - "servant-auth-hmac" = callPackage ( - { - mkDerivation, - aeson, - attoparsec, - base, - base64-bytestring, - blaze-html, - blaze-markup, - bytestring, - case-insensitive, - cereal, - containers, - cryptonite, - data-default, - exceptions, - hspec, - hspec-expectations, - hspec-wai, - http-media, - http-types, - memory, - mtl, - random, - servant, - servant-blaze, - servant-server, - string-class, - text, - time, - transformers, - unix, - wai, - wai-extra, - warp, - with-location, - }: - mkDerivation { - pname = "servant-auth-hmac"; - version = "0.1.0.1"; - sha256 = "17zwpm4ak1n5y807xgp0qpdpdnika1vaxqw30095w319bvby2zna"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - attoparsec - base - base64-bytestring - bytestring - case-insensitive - cryptonite - data-default - exceptions - http-types - memory - servant - servant-server - string-class - time - transformers - wai - ]; - executableHaskellDepends = [ - aeson - base - blaze-html - blaze-markup - bytestring - cereal - containers - data-default - http-media - mtl - random - servant - servant-blaze - servant-server - string-class - text - transformers - unix - wai - warp - ]; - testHaskellDepends = [ - aeson - base - base64-bytestring - bytestring - case-insensitive - cereal - containers - cryptonite - data-default - hspec - hspec-expectations - hspec-wai - http-types - random - servant - servant-server - string-class - time - transformers - wai - wai-extra - with-location - ]; - description = "Authentication via HMAC"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "example"; - broken = true; - } - ) { }; - - "servant-auth-server" = callPackage ( - { - mkDerivation, - aeson, - base, - base64-bytestring, - blaze-builder, - bytestring, - case-insensitive, - cookie, - data-default, - entropy, - hspec, - hspec-discover, - http-client, - http-types, - jose, - lens, - lens-aeson, - markdown-unlit, - memory, - monad-time, - mtl, - QuickCheck, - servant, - servant-auth, - servant-server, - tagged, - text, - time, - transformers, - unordered-containers, - wai, - warp, - wreq, - }: - mkDerivation { - pname = "servant-auth-server"; - version = "0.4.9.1"; - sha256 = "04sy2g81pp0pr31xi6h1hqm199z6r4xv3fy2x307dlydxmdm8qb3"; - revision = "1"; - editedCabalFile = "0n29r1359vs9pl5rk7d7yh33i821qn9bcmrbfd4ddxl4n3sy27v1"; - libraryHaskellDepends = [ - aeson - base - base64-bytestring - blaze-builder - bytestring - case-insensitive - cookie - data-default - entropy - http-types - jose - lens - memory - monad-time - mtl - servant - servant-auth - servant-server - tagged - text - time - unordered-containers - wai - ]; - testHaskellDepends = [ - aeson - base - bytestring - case-insensitive - hspec - http-client - http-types - jose - lens - lens-aeson - mtl - QuickCheck - servant - servant-auth - servant-server - text - time - transformers - wai - warp - wreq - ]; - testToolDepends = [ - hspec-discover - markdown-unlit - ]; - description = "servant-server/servant-auth compatibility"; - license = lib.licenses.bsd3; - } - ) { }; - - "servant-auth-swagger" = callPackage ( - { - mkDerivation, - base, - hspec, - hspec-discover, - lens, - QuickCheck, - servant, - servant-auth, - servant-swagger, - swagger2, - text, - }: - mkDerivation { - pname = "servant-auth-swagger"; - version = "0.2.11.0"; - sha256 = "1h5ckkai4qxz9c2a62l2lv0ss8az5j1lwyzs4g652zffrgx9qk28"; - revision = "2"; - editedCabalFile = "171xyzbay3x6bp5zvx9jcn6hi4sh13hh1ydp6z528xh70lr4krrn"; - libraryHaskellDepends = [ - base - lens - servant - servant-auth - servant-swagger - swagger2 - text - ]; - testHaskellDepends = [ - base - hspec - lens - QuickCheck - servant - servant-auth - servant-swagger - swagger2 - text - ]; - testToolDepends = [ hspec-discover ]; - description = "servant-swagger/servant-auth compatibility"; - license = lib.licenses.bsd3; - } - ) { }; - - "servant-auth-token" = callPackage ( - { - mkDerivation, - aeson-injector, - base, - byteable, - bytestring, - containers, - http-api-data, - mtl, - pwstore-fast, - servant, - servant-auth-token-api, - servant-server, - text, - time, - transformers, - uuid, - wai, - }: - mkDerivation { - pname = "servant-auth-token"; - version = "0.5.6.0"; - sha256 = "1nbyzg13s3082mwmcd5q85a4i94ay7fac74x28ska01y2587p631"; - libraryHaskellDepends = [ - aeson-injector - base - byteable - bytestring - containers - http-api-data - mtl - pwstore-fast - servant - servant-auth-token-api - servant-server - text - time - transformers - uuid - wai - ]; - description = "Servant based API and server for token based authorisation"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "servant-auth-token-acid" = callPackage ( - { - mkDerivation, - acid-state, - aeson-injector, - base, - bytestring, - containers, - ghc-prim, - monad-control, - mtl, - safe, - safecopy, - servant-auth-token, - servant-auth-token-api, - servant-server, - template-haskell, - text, - time, - transformers, - transformers-base, - uuid, - }: - mkDerivation { - pname = "servant-auth-token-acid"; - version = "0.5.4.0"; - sha256 = "1792zsnrm7s875bp72yi44kziaky7474z63pivmfba1jdhi33mj5"; - libraryHaskellDepends = [ - acid-state - aeson-injector - base - bytestring - containers - ghc-prim - monad-control - mtl - safe - safecopy - servant-auth-token - servant-auth-token-api - servant-server - template-haskell - text - time - transformers - transformers-base - uuid + wai + warp ]; - description = "Acid-state backend for servant-auth-token server"; + testToolDepends = [ hspec-discover ]; + description = "servant-client/servant-auth compatibility"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; } ) { }; - "servant-auth-token-api" = callPackage ( + "servant-auth-docs" = callPackage ( { mkDerivation, - aeson, - aeson-injector, base, + Cabal, + cabal-doctest, + doctest, + hspec, + hspec-discover, lens, - raw-strings-qq, + QuickCheck, servant, + servant-auth, servant-docs, - servant-swagger, - swagger2, + template-haskell, text, }: mkDerivation { - pname = "servant-auth-token-api"; - version = "0.5.4.0"; - sha256 = "1rjmhyskxypl9gm4g8yq9zfj91dmbz72qxmrijd1gjjv5s5cr91m"; + pname = "servant-auth-docs"; + version = "0.2.11.0"; + sha256 = "127w2ggii2vqs60cnd5ir4azyrxnm7mhfydi156liykk2v8jkkaj"; + revision = "2"; + editedCabalFile = "1afn8h6j7fljz5q6p2pml3xpdrbkapy14nb33fxsdasg4nmfzgzr"; + setupHaskellDepends = [ + base + Cabal + cabal-doctest + ]; libraryHaskellDepends = [ - aeson - aeson-injector base lens - raw-strings-qq servant + servant-auth servant-docs - servant-swagger - swagger2 + ]; + testHaskellDepends = [ + base + doctest + hspec + lens + QuickCheck + servant + servant-auth + servant-docs + template-haskell text ]; - description = "Servant based API for token based authorisation"; + testToolDepends = [ hspec-discover ]; + description = "servant-docs/servant-auth compatibility"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; } ) { }; - "servant-auth-token-leveldb" = callPackage ( + "servant-auth-server" = callPackage ( { mkDerivation, - aeson-injector, + aeson, base, + base64-bytestring, + blaze-builder, bytestring, - cereal, - concurrent-extra, - containers, - exceptions, + case-insensitive, + cookie, + data-default, + entropy, + hspec, + hspec-discover, + http-client, + http-types, + jose, lens, - leveldb-haskell, + lens-aeson, + markdown-unlit, + memory, + monad-time, mtl, - resourcet, - safe, - safecopy, - servant-auth-token, - servant-auth-token-api, + QuickCheck, + servant, + servant-auth, servant-server, + tagged, text, time, transformers, - unliftio-core, - uuid, - vector, + unordered-containers, + wai, + warp, + wreq, }: mkDerivation { - pname = "servant-auth-token-leveldb"; - version = "0.6.0.0"; - sha256 = "0kqhcvs5ih4lj9i3jdpw8vyzpsim3j03lqfrdc0kqf06a0jyfbkp"; + pname = "servant-auth-server"; + version = "0.4.9.1"; + sha256 = "04sy2g81pp0pr31xi6h1hqm199z6r4xv3fy2x307dlydxmdm8qb3"; + revision = "1"; + editedCabalFile = "0n29r1359vs9pl5rk7d7yh33i821qn9bcmrbfd4ddxl4n3sy27v1"; libraryHaskellDepends = [ - aeson-injector + aeson base + base64-bytestring + blaze-builder bytestring - cereal - concurrent-extra - containers - exceptions + case-insensitive + cookie + data-default + entropy + http-types + jose lens - leveldb-haskell + memory + monad-time mtl - resourcet - safe - safecopy - servant-auth-token - servant-auth-token-api + servant + servant-auth servant-server + tagged text time - transformers - unliftio-core - uuid - vector + unordered-containers + wai ]; - description = "Leveldb backend for servant-auth-token server"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "servant-auth-token-persistent" = callPackage ( - { - mkDerivation, - aeson-injector, - base, - bytestring, - containers, - exceptions, - mtl, - persistent, - persistent-template, - servant-auth-token, - servant-auth-token-api, - servant-server, - text, - time, - transformers, - unliftio-core, - uuid, - }: - mkDerivation { - pname = "servant-auth-token-persistent"; - version = "0.7.0.0"; - sha256 = "1mxpq33dbam0zyc7fnrn6zdqirbri8nih1xcyzczpgs946j97zff"; - libraryHaskellDepends = [ - aeson-injector + testHaskellDepends = [ + aeson base bytestring - containers - exceptions + case-insensitive + hspec + http-client + http-types + jose + lens + lens-aeson mtl - persistent - persistent-template - servant-auth-token - servant-auth-token-api + QuickCheck + servant + servant-auth servant-server text time transformers - unliftio-core - uuid + wai + warp + wreq + ]; + testToolDepends = [ + hspec-discover + markdown-unlit ]; - description = "Persistent backend for servant-auth-token server"; + description = "servant-server/servant-auth compatibility"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; } ) { }; - "servant-auth-token-rocksdb" = callPackage ( + "servant-auth-swagger" = callPackage ( { mkDerivation, - aeson-injector, base, - bytestring, - concurrent-extra, - containers, - exceptions, + hspec, + hspec-discover, lens, - monad-control, - mtl, - resourcet, - rocksdb-haskell, - safe, - safecopy-store, - servant-auth-token, - servant-auth-token-api, - servant-server, - store, + QuickCheck, + servant, + servant-auth, + servant-swagger, + swagger2, text, - time, - transformers, - transformers-base, - uuid, - vector, }: mkDerivation { - pname = "servant-auth-token-rocksdb"; - version = "0.5.3.0"; - sha256 = "01nx1aj15kjg9g2k5vl0b0zrvih951sm06qybl28mm97kgcdiam1"; + pname = "servant-auth-swagger"; + version = "0.2.11.0"; + sha256 = "1h5ckkai4qxz9c2a62l2lv0ss8az5j1lwyzs4g652zffrgx9qk28"; + revision = "2"; + editedCabalFile = "171xyzbay3x6bp5zvx9jcn6hi4sh13hh1ydp6z528xh70lr4krrn"; libraryHaskellDepends = [ - aeson-injector base - bytestring - concurrent-extra - containers - exceptions lens - monad-control - mtl - resourcet - rocksdb-haskell - safe - safecopy-store - servant-auth-token - servant-auth-token-api - servant-server - store + servant + servant-auth + servant-swagger + swagger2 + text + ]; + testHaskellDepends = [ + base + hspec + lens + QuickCheck + servant + servant-auth + servant-swagger + swagger2 text - time - transformers - transformers-base - uuid - vector ]; - description = "RocksDB backend for servant-auth-token server"; + testToolDepends = [ hspec-discover ]; + description = "servant-swagger/servant-auth compatibility"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; } ) { }; @@ -596086,48 +344780,6 @@ self: { } ) { }; - "servant-avro" = callPackage ( - { - mkDerivation, - avro, - base, - hspec, - http-client, - QuickCheck, - servant, - servant-client, - servant-server, - text, - warp, - }: - mkDerivation { - pname = "servant-avro"; - version = "0.1.0.0"; - sha256 = "1q7fxgnyqpbg0zrk2kdrsx3g1sj5nz6xns2g54lvfwl8ksjyv8lg"; - libraryHaskellDepends = [ - avro - base - servant - ]; - testHaskellDepends = [ - avro - base - hspec - http-client - QuickCheck - servant - servant-client - servant-server - text - warp - ]; - description = "Avro content type for Servant"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "servant-benchmark" = callPackage ( { mkDerivation, @@ -596663,56 +345315,6 @@ self: { } ) { }; - "servant-client-namedargs" = callPackage ( - { - mkDerivation, - async, - base, - hspec, - http-client, - named, - QuickCheck, - servant, - servant-client, - servant-client-core, - servant-namedargs, - servant-server, - servant-server-namedargs, - text, - warp, - }: - mkDerivation { - pname = "servant-client-namedargs"; - version = "0.1.1.1"; - sha256 = "1byk3baams1kg1zfnp0y02s2kbg1w62gsri0z43x56g33pgwbsrp"; - libraryHaskellDepends = [ - base - named - servant - servant-client-core - servant-namedargs - text - ]; - testHaskellDepends = [ - async - base - hspec - http-client - named - QuickCheck - servant - servant-client - servant-namedargs - servant-server - servant-server-namedargs - warp - ]; - description = "Automatically derive API client functions with named and optional parameters"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "servant-combinators" = callPackage ( { mkDerivation, @@ -596839,189 +345441,6 @@ self: { } ) { }; - "servant-csharp" = callPackage ( - { - mkDerivation, - aeson, - base, - bytestring, - directory, - filepath, - heredocs, - http-types, - lens, - mtl, - servant, - servant-foreign, - servant-swagger, - swagger2, - text, - time, - unordered-containers, - uuid, - uuid-types, - }: - mkDerivation { - pname = "servant-csharp"; - version = "0.0.8.1"; - sha256 = "0z891hcgqzv46c6q3sr9q3kgrv86s3xb7xln7prygwc46qxca5d7"; - libraryHaskellDepends = [ - aeson - base - bytestring - directory - filepath - heredocs - http-types - lens - mtl - servant - servant-foreign - servant-swagger - swagger2 - text - time - unordered-containers - uuid - uuid-types - ]; - description = "Generate servant client library for C#"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "servant-db" = callPackage ( - { - mkDerivation, - base, - servant, - }: - mkDerivation { - pname = "servant-db"; - version = "0.2.0.1"; - sha256 = "12nsdpcmv0xijvp89x3ksnf1mpdwbhwrn86c2y1cayvspvv1iilr"; - libraryHaskellDepends = [ - base - servant - ]; - description = "Servant types for defining API with relational DBs"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "servant-db-postgresql" = callPackage ( - { - mkDerivation, - base, - bytestring, - containers, - derive, - hspec, - HUnit, - monad-logger, - optparse-applicative, - postgresql-query, - postgresql-simple, - QuickCheck, - quickcheck-instances, - servant, - servant-db, - text, - time, - transformers-base, - }: - mkDerivation { - pname = "servant-db-postgresql"; - version = "0.2.2.0"; - sha256 = "101fl8bpa6xw79h9b17q3g5fcbl0p9chcqyvqwzai0a95x2qlwgd"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - bytestring - containers - postgresql-query - postgresql-simple - servant - servant-db - text - ]; - testHaskellDepends = [ - base - bytestring - derive - hspec - HUnit - monad-logger - optparse-applicative - postgresql-query - QuickCheck - quickcheck-instances - servant-db - text - time - transformers-base - ]; - description = "Derive a postgres client to database API specified by servant-db"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "servant-dhall" = callPackage ( - { - mkDerivation, - base, - base-compat, - bytestring, - dhall, - either, - http-media, - megaparsec, - prettyprinter, - servant, - servant-server, - text, - wai, - warp, - }: - mkDerivation { - pname = "servant-dhall"; - version = "0.3"; - sha256 = "0xvzm1majfjigwpcy6sqbzvpirinhac4lh6f32cy2qkkk6xq09mz"; - libraryHaskellDepends = [ - base - base-compat - bytestring - dhall - either - http-media - megaparsec - prettyprinter - servant - text - ]; - testHaskellDepends = [ - base - base-compat - bytestring - dhall - http-media - servant - servant-server - wai - warp - ]; - description = "Servant Dhall content-type"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "servant-docs" = callPackage ( { mkDerivation, @@ -597138,139 +345557,6 @@ self: { } ) { }; - "servant-ede" = callPackage ( - { - mkDerivation, - aeson, - base, - bytestring, - ede, - either, - filepath, - http-media, - http-types, - semigroups, - servant, - servant-server, - text, - transformers, - unordered-containers, - vector, - warp, - xss-sanitize, - }: - mkDerivation { - pname = "servant-ede"; - version = "0.6"; - sha256 = "0a6f4i536zvi25p3b1j57jibm27bi3nk32lx1nwjlxn5yjdvd4d0"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson - base - bytestring - ede - either - filepath - http-media - http-types - semigroups - servant - text - transformers - unordered-containers - vector - xss-sanitize - ]; - executableHaskellDepends = [ - base - ede - http-media - servant-server - text - unordered-containers - warp - ]; - description = "Combinators for rendering EDE templates in servant web applications"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "servant-ede-example"; - } - ) { }; - - "servant-ekg" = callPackage ( - { - mkDerivation, - aeson, - base, - ekg, - ekg-core, - hashable, - hspec, - hspec-discover, - http-client, - http-types, - process, - servant, - servant-client, - servant-server, - text, - time, - transformers, - unordered-containers, - wai, - warp, - }: - mkDerivation { - pname = "servant-ekg"; - version = "0.3.1"; - sha256 = "1vfj5qkajqs2rfhz3yyljy6jj4m80fb2zslrrg0a5126hhbaglss"; - libraryHaskellDepends = [ - base - ekg-core - hashable - http-types - servant - text - time - unordered-containers - wai - ]; - testHaskellDepends = [ - aeson - base - ekg - ekg-core - hspec - http-client - servant - servant-client - servant-server - text - transformers - unordered-containers - wai - warp - ]; - testToolDepends = [ hspec-discover ]; - benchmarkHaskellDepends = [ - aeson - base - ekg - ekg-core - process - servant-server - text - wai - warp - ]; - description = "Helpers for using ekg with servant"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "servant-elm" = callPackage ( { mkDerivation, @@ -597409,66 +345695,6 @@ self: { } ) { }; - "servant-examples" = callPackage ( - { - mkDerivation, - aeson, - base, - bytestring, - directory, - either, - http-types, - js-jquery, - lucid, - random, - servant, - servant-client, - servant-docs, - servant-jquery, - servant-lucid, - servant-server, - text, - time, - transformers, - wai, - wai-extra, - warp, - }: - mkDerivation { - pname = "servant-examples"; - version = "0.4.4.7"; - sha256 = "05jmiq9b5ki4mkgvsr2x63hnch506bflp6rhvxbz155l9b4cwc8n"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - aeson - base - bytestring - directory - either - http-types - js-jquery - lucid - random - servant - servant-client - servant-docs - servant-jquery - servant-lucid - servant-server - text - time - transformers - wai - wai-extra - warp - ]; - description = "Example programs for servant"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "servant-exceptions" = callPackage ( { mkDerivation, @@ -597639,191 +345865,6 @@ self: { } ) { }; - "servant-generate" = callPackage ( - { - mkDerivation, - base, - servant, - servant-server, - }: - mkDerivation { - pname = "servant-generate"; - version = "0.1"; - sha256 = "0i71d95yfrlj5m5wr8ksxq8nkvwbsj81d4qm3j24pcgf6a32rrcw"; - revision = "3"; - editedCabalFile = "11hmn45fsl78kq6lladgz29yjycmr7lxmkswc8f41zbcb4m8rzyk"; - libraryHaskellDepends = [ - base - servant - servant-server - ]; - description = "Utilities for generating mock server implementations"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "servant-generic" = callPackage ( - { - mkDerivation, - base, - network-uri, - servant, - servant-server, - text, - warp, - }: - mkDerivation { - pname = "servant-generic"; - version = "0.1.0.3"; - sha256 = "0xnhl4yrx31rsdzjik5az18smx42sqr16r2g5187mqmd9d1671ag"; - libraryHaskellDepends = [ - base - servant - servant-server - ]; - testHaskellDepends = [ - base - network-uri - servant - servant-server - text - warp - ]; - description = "Specify Servant APIs with records"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "servant-github" = callPackage ( - { - mkDerivation, - aeson, - base, - bytestring, - cryptonite, - hspec, - http-api-data, - http-client, - http-client-tls, - http-link-header, - http-media, - jose, - lens, - mtl, - QuickCheck, - servant, - servant-client, - text, - time, - transformers, - }: - mkDerivation { - pname = "servant-github"; - version = "0.1.0.6"; - sha256 = "14bmh9gbmrd9254zd6c4s74x63qjdvdv2hfw8q17rcr1752f9qrf"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson - base - bytestring - cryptonite - http-api-data - http-client - http-client-tls - http-link-header - http-media - jose - lens - mtl - servant - servant-client - text - time - transformers - ]; - executableHaskellDepends = [ - base - text - transformers - ]; - testHaskellDepends = [ - base - hspec - QuickCheck - ]; - description = "Bindings to GitHub API using servant"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "test"; - broken = true; - } - ) { }; - - "servant-github-webhook" = callPackage ( - { - mkDerivation, - aeson, - base, - base16-bytestring, - bytestring, - cryptonite, - github, - github-webhooks, - http-types, - memory, - servant, - servant-server, - string-conversions, - text, - transformers, - unordered-containers, - wai, - warp, - }: - mkDerivation { - pname = "servant-github-webhook"; - version = "0.4.2.0"; - sha256 = "1z80h42zp781p49bskw5ilb49dnhs7y4j2g0v4xdyrrabj2m885g"; - libraryHaskellDepends = [ - aeson - base - base16-bytestring - bytestring - cryptonite - github - github-webhooks - http-types - memory - servant - servant-server - string-conversions - text - transformers - unordered-containers - wai - ]; - testHaskellDepends = [ - aeson - base - bytestring - servant-server - text - transformers - wai - warp - ]; - description = "Servant combinators to facilitate writing GitHub webhooks"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "servant-hateoas" = callPackage ( { mkDerivation, @@ -597860,91 +345901,6 @@ self: { } ) { }; - "servant-haxl-client" = callPackage ( - { - mkDerivation, - aeson, - async, - attoparsec, - base, - bytestring, - deepseq, - either, - exceptions, - hashable, - haxl, - hspec, - http-client, - http-client-tls, - http-media, - http-types, - HUnit, - network, - network-uri, - QuickCheck, - safe, - servant, - servant-server, - string-conversions, - text, - transformers, - wai, - warp, - }: - mkDerivation { - pname = "servant-haxl-client"; - version = "0.2.0.0"; - sha256 = "0v5123mvia03g8ccirpfvm4j2gwl24z3br2is22bk5pp95b56gv7"; - revision = "2"; - editedCabalFile = "00hhd95dvgny1d83sfvsb8k0qhdyjv0lvjin42cxj3dd7zp67jdd"; - libraryHaskellDepends = [ - aeson - async - attoparsec - base - bytestring - either - exceptions - hashable - haxl - http-client - http-client-tls - http-media - http-types - network-uri - safe - servant - string-conversions - text - transformers - ]; - testHaskellDepends = [ - aeson - base - bytestring - deepseq - either - haxl - hspec - http-client - http-client-tls - http-media - http-types - HUnit - network - QuickCheck - servant - servant-server - text - wai - warp - ]; - description = "automatical derivation of querying functions for servant webservices"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "servant-hmac-auth" = callPackage ( { mkDerivation, @@ -598155,77 +346111,6 @@ self: { } ) { }; - "servant-http2-client" = callPackage ( - { - mkDerivation, - aeson, - async, - base, - binary, - bytestring, - case-insensitive, - containers, - data-default-class, - exceptions, - http-media, - http-types, - http2, - http2-client, - mtl, - servant, - servant-client-core, - text, - tls, - transformers, - }: - mkDerivation { - pname = "servant-http2-client"; - version = "0.1.0.2"; - sha256 = "0rjzc1dyj0njmh590ays5ma6243240qakrjgzi9qinvkgb7lzad2"; - libraryHaskellDepends = [ - base - binary - bytestring - case-insensitive - containers - exceptions - http-media - http-types - http2 - http2-client - mtl - servant-client-core - text - transformers - ]; - testHaskellDepends = [ - aeson - async - base - binary - bytestring - case-insensitive - containers - data-default-class - exceptions - http-media - http-types - http2 - http2-client - mtl - servant - servant-client-core - text - tls - transformers - ]; - description = "Generate HTTP2 clients from Servant API descriptions"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "servant-iCalendar" = callPackage ( { mkDerivation, @@ -598255,46 +346140,6 @@ self: { } ) { }; - "servant-jquery" = callPackage ( - { - mkDerivation, - base, - charset, - hspec, - hspec-expectations, - language-ecmascript, - lens, - servant, - text, - }: - mkDerivation { - pname = "servant-jquery"; - version = "0.4.4.7"; - sha256 = "1c8igpflka6ynnkadqrjkdg2mn78b179nlzh9328ycdb8wzbmrzk"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - charset - lens - servant - text - ]; - testHaskellDepends = [ - base - hspec - hspec-expectations - language-ecmascript - lens - servant - ]; - description = "Automatically derive (jquery) javascript functions to query servant webservices"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "servant-js" = callPackage ( { mkDerivation, @@ -598343,6 +346188,7 @@ self: { description = "Automatically derive javascript functions to query servant webservices"; license = lib.licenses.bsd3; hydraPlatforms = lib.platforms.none; + broken = true; } ) { }; @@ -598423,77 +346269,6 @@ self: { } ) { }; - "servant-kotlin" = callPackage ( - { - mkDerivation, - aeson, - base, - containers, - directory, - formatting, - hspec, - http-api-data, - lens, - servant, - servant-foreign, - shelly, - text, - time, - wl-pprint-text, - }: - mkDerivation { - pname = "servant-kotlin"; - version = "0.1.1.9"; - sha256 = "1wywp494wbhs32szyni294k5qf8fjbznydwss7lwxprnli1hh1qm"; - libraryHaskellDepends = [ - base - containers - directory - formatting - lens - servant - servant-foreign - text - time - wl-pprint-text - ]; - testHaskellDepends = [ - aeson - base - containers - directory - formatting - hspec - http-api-data - lens - servant - servant-foreign - text - time - wl-pprint-text - ]; - benchmarkHaskellDepends = [ - aeson - base - containers - directory - formatting - http-api-data - lens - servant - servant-foreign - shelly - text - time - wl-pprint-text - ]; - description = "Automatically derive Kotlin class to query servant webservices"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "servant-lint" = callPackage ( { mkDerivation, @@ -598655,123 +346430,6 @@ self: { } ) { }; - "servant-matrix-param" = callPackage ( - { - mkDerivation, - aeson, - base, - bytestring, - containers, - doctest, - hspec, - http-client, - http-types, - servant, - servant-aeson-specs, - servant-client, - servant-server, - text, - transformers, - wai, - wai-extra, - warp, - }: - mkDerivation { - pname = "servant-matrix-param"; - version = "0.3.3"; - sha256 = "1cw8p67ckd8dcyf4bas9s8glvcx2pkxmaddjwhm05hbpdrd8z7k7"; - libraryHaskellDepends = [ - base - servant - ]; - testHaskellDepends = [ - aeson - base - bytestring - containers - doctest - hspec - http-client - http-types - servant - servant-aeson-specs - servant-client - servant-server - text - transformers - wai - wai-extra - warp - ]; - description = "Matrix parameter combinator for servant"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "servant-mock" = callPackage ( - { - mkDerivation, - aeson, - base, - base-compat, - bytestring, - bytestring-conversion, - hspec, - hspec-discover, - hspec-wai, - http-types, - QuickCheck, - servant, - servant-server, - transformers, - wai, - warp, - }: - mkDerivation { - pname = "servant-mock"; - version = "0.8.7"; - sha256 = "0j8c9wb1njrl77hp94frlnjpbk2axlkcgbcyax6s4pmf9v3c8j6x"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - base-compat - bytestring - http-types - QuickCheck - servant - servant-server - transformers - wai - ]; - executableHaskellDepends = [ - aeson - base - QuickCheck - servant-server - warp - ]; - testHaskellDepends = [ - aeson - base - bytestring-conversion - hspec - hspec-wai - QuickCheck - servant - servant-server - wai - ]; - testToolDepends = [ hspec-discover ]; - description = "Derive a mock server for free from your servant API types"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "mock-app"; - broken = true; - } - ) { }; - "servant-multipart" = callPackage ( { mkDerivation, @@ -598946,86 +346604,6 @@ self: { } ) { }; - "servant-namedargs" = callPackage ( - { - mkDerivation, - base, - hspec, - named, - QuickCheck, - servant, - text, - }: - mkDerivation { - pname = "servant-namedargs"; - version = "0.1.1.1"; - sha256 = "15fdqk89si2ri63cpdndvp8kjlanf783fwgra899ldwizf637ka7"; - libraryHaskellDepends = [ - base - named - servant - text - ]; - testHaskellDepends = [ - base - hspec - named - QuickCheck - servant - ]; - description = "Combinators for servant providing named parameters"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "servant-nix" = callPackage ( - { - mkDerivation, - base, - bytestring, - hnix, - http-client, - http-media, - servant, - servant-client, - servant-server, - text, - wai, - warp, - }: - mkDerivation { - pname = "servant-nix"; - version = "0.1"; - sha256 = "1bg2pxfq5g4imppsn9snlw2mzl8qrdr1hpxk7pppwp9cpcy3bsvg"; - revision = "1"; - editedCabalFile = "0h4x2rjyrg6ah9cil6zsci6wra8gmvb1kv2zq6zs7mqw9426vvfb"; - libraryHaskellDepends = [ - base - bytestring - hnix - http-media - servant - text - ]; - testHaskellDepends = [ - base - hnix - http-client - servant - servant-client - servant-server - wai - warp - ]; - description = "Servant Nix content-type"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "servant-oauth2" = callPackage ( { mkDerivation, @@ -599317,43 +346895,6 @@ self: { } ) { }; - "servant-pandoc" = callPackage ( - { - mkDerivation, - base, - bytestring, - case-insensitive, - http-media, - lens, - pandoc-types, - servant-docs, - string-conversions, - text, - unordered-containers, - }: - mkDerivation { - pname = "servant-pandoc"; - version = "0.5.0.0"; - sha256 = "0qq4ahwl8vc8xgmvbh8qac7751hizgdcbp43gc0kxfs7xpy0kmqj"; - libraryHaskellDepends = [ - base - bytestring - case-insensitive - http-media - lens - pandoc-types - servant-docs - string-conversions - text - unordered-containers - ]; - description = "Use Pandoc to render servant API documentation"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "servant-pipes" = callPackage ( { mkDerivation, @@ -599475,61 +347016,6 @@ self: { } ) { }; - "servant-pool" = callPackage ( - { - mkDerivation, - base, - resource-pool, - servant, - time, - }: - mkDerivation { - pname = "servant-pool"; - version = "0.1"; - sha256 = "0if4lxb0fpdd4lnkz9j7z6vhjbrcc80pvz9jb6sdb9p6sbbgqf69"; - revision = "1"; - editedCabalFile = "15wcxjn22zmwj7dqrbg5kmca4niri6p4cs0gm8b3dnr1iv2l0jgq"; - libraryHaskellDepends = [ - base - resource-pool - servant - time - ]; - description = "Utility functions for creating servant 'Context's with \"context/connection pooling\" support"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "servant-postgresql" = callPackage ( - { - mkDerivation, - base, - bytestring, - postgresql-simple, - servant, - servant-pool, - servant-response, - }: - mkDerivation { - pname = "servant-postgresql"; - version = "0.1"; - sha256 = "1svy1v6sl5pq0zs8ms4qf7wn6zar63bqmfiyfqgz84ryli0wxrhj"; - libraryHaskellDepends = [ - base - bytestring - postgresql-simple - servant - servant-pool - servant-response - ]; - description = "Useful functions and instances for using servant with a PostgreSQL context"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "servant-prometheus" = callPackage ( { mkDerivation, @@ -599599,212 +347085,6 @@ self: { } ) { }; - "servant-proto-lens" = callPackage ( - { - mkDerivation, - async, - base, - bytestring, - data-default-class, - http-client, - http-media, - HUnit, - lens, - proto-lens, - proto-lens-protobuf-types, - servant, - servant-client, - servant-server, - test-framework, - test-framework-hunit, - warp, - }: - mkDerivation { - pname = "servant-proto-lens"; - version = "0.1.0.3"; - sha256 = "0j85f64rjvkm2d487ahmg64x77iyldvdwyalbxw960sdv80mjavw"; - libraryHaskellDepends = [ - base - bytestring - http-media - proto-lens - servant - ]; - testHaskellDepends = [ - async - base - data-default-class - http-client - HUnit - lens - proto-lens - proto-lens-protobuf-types - servant-client - servant-server - test-framework - test-framework-hunit - warp - ]; - description = "Servant Content-Type for proto-lens protobuf modules"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "servant-purescript" = callPackage ( - { - mkDerivation, - aeson, - base, - bytestring, - containers, - directory, - filepath, - http-types, - lens, - mainland-pretty, - purescript-bridge, - servant, - servant-foreign, - servant-server, - servant-subscriber, - text, - }: - mkDerivation { - pname = "servant-purescript"; - version = "0.10.0.0"; - sha256 = "07q4nvdhhzyc3xkad130nkv7ckgmj6fmhrpryzpjdvddgq9320b4"; - libraryHaskellDepends = [ - aeson - base - bytestring - containers - directory - filepath - http-types - lens - mainland-pretty - purescript-bridge - servant - servant-foreign - servant-server - servant-subscriber - text - ]; - testHaskellDepends = [ - aeson - base - containers - lens - mainland-pretty - purescript-bridge - servant - servant-foreign - servant-subscriber - text - ]; - description = "Generate PureScript accessor functions for you servant API"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "servant-pushbullet-client" = callPackage ( - { - mkDerivation, - aeson, - base, - http-api-data, - http-client, - http-client-tls, - microlens, - microlens-th, - pushbullet-types, - scientific, - servant, - servant-client, - text, - time, - unordered-containers, - }: - mkDerivation { - pname = "servant-pushbullet-client"; - version = "0.5.0.0"; - sha256 = "1pdqb2kff033zga35n9ycgnw3zb42b5hpap3f4fjkxfbxz5cq3zz"; - libraryHaskellDepends = [ - aeson - base - http-api-data - http-client - http-client-tls - microlens - microlens-th - pushbullet-types - scientific - servant - servant-client - text - time - unordered-containers - ]; - description = "Bindings to the Pushbullet API using servant-client"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "servant-py" = callPackage ( - { - mkDerivation, - aeson, - base, - base-compat, - bytestring, - charset, - hspec, - lens, - QuickCheck, - servant, - servant-foreign, - text, - }: - mkDerivation { - pname = "servant-py"; - version = "0.1.1.1"; - sha256 = "1w9a60pcgpbkab37310qjr7vbfjrmakhmfc8fv7sip0pz8pj0ijx"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson - base - bytestring - charset - lens - servant - servant-foreign - text - ]; - testHaskellDepends = [ - aeson - base - base-compat - bytestring - hspec - lens - QuickCheck - servant - servant-foreign - text - ]; - description = "Automatically derive python functions to query servant webservices"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "servant-queryparam-client" = callPackage ( { mkDerivation, @@ -600148,120 +347428,6 @@ self: { } ) { }; - "servant-reason" = callPackage ( - { - mkDerivation, - aeson, - base, - Diff, - directory, - hspec, - HUnit, - interpolate, - lens, - mockery, - process, - reason-export, - servant, - servant-foreign, - text, - wl-pprint-text, - }: - mkDerivation { - pname = "servant-reason"; - version = "0.1.2.0"; - sha256 = "0c8nwdi1xrym5q7k13qqa7mznbww9kc1ffimfpj8vr13r62j19ql"; - libraryHaskellDepends = [ - base - lens - reason-export - servant - servant-foreign - text - wl-pprint-text - ]; - testHaskellDepends = [ - aeson - base - Diff - directory - hspec - HUnit - interpolate - lens - mockery - process - reason-export - servant - servant-foreign - text - wl-pprint-text - ]; - description = "Derive Reason types to interact with a Haskell backend"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "servant-reflex" = callPackage ( - { - mkDerivation, - base, - bytestring, - case-insensitive, - containers, - data-default, - exceptions, - ghcjs-dom, - http-api-data, - http-media, - jsaddle, - mtl, - network-uri, - reflex, - reflex-dom-core, - safe, - servant, - servant-auth, - string-conversions, - text, - transformers, - }: - mkDerivation { - pname = "servant-reflex"; - version = "0.3.5"; - sha256 = "0b4ppjnfas6pwypd16vkq98q1fs0l7cw32hhliv582xfvc0v3k8l"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - bytestring - case-insensitive - containers - data-default - exceptions - ghcjs-dom - http-api-data - http-media - jsaddle - mtl - network-uri - reflex - reflex-dom-core - safe - servant - servant-auth - string-conversions - text - transformers - ]; - description = "servant API generator for reflex apps"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "servant-response" = callPackage ( { mkDerivation, @@ -600287,49 +347453,6 @@ self: { } ) { }; - "servant-router" = callPackage ( - { - mkDerivation, - base, - blaze-html, - bytestring, - http-api-data, - http-types, - network-uri, - servant, - servant-blaze, - servant-server, - text, - warp, - }: - mkDerivation { - pname = "servant-router"; - version = "0.9.0"; - sha256 = "0g35wlyyynl2aasgi4fx5kqjp02sidx8fr65cb42s8jvl318bdjx"; - libraryHaskellDepends = [ - base - bytestring - http-api-data - http-types - network-uri - servant - text - ]; - testHaskellDepends = [ - base - blaze-html - servant - servant-blaze - servant-server - warp - ]; - description = "Servant router for non-server applications"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "servant-routes" = callPackage ( { mkDerivation, @@ -600426,73 +347549,6 @@ self: { } ) { }; - "servant-ruby" = callPackage ( - { - mkDerivation, - base, - casing, - doctest, - QuickCheck, - servant-foreign, - text, - }: - mkDerivation { - pname = "servant-ruby"; - version = "0.9.0.0"; - sha256 = "1x1746k97i3y836mr5h29l70ldzrg8akhfmg2qicwbwz6qs7hy33"; - libraryHaskellDepends = [ - base - casing - servant-foreign - text - ]; - testHaskellDepends = [ - base - doctest - QuickCheck - ]; - description = "Generate a Ruby client from a Servant API with Net::HTTP"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "servant-scotty" = callPackage ( - { - mkDerivation, - aeson, - base, - http-types, - scotty, - servant, - servant-response, - text, - transformers, - }: - mkDerivation { - pname = "servant-scotty"; - version = "0.1.1"; - sha256 = "0d3yc7aa2p1izizqnj81iscj9hbgbkpyav1ncmxzkr48svr6h783"; - revision = "1"; - editedCabalFile = "1yij19n34h17cabgbl00wbkw1cxw5j5yabb7fs14q43zq43aymak"; - libraryHaskellDepends = [ - aeson - base - http-types - scotty - servant - servant-response - text - transformers - ]; - description = "Generate a web service for servant 'Resource's using scotty and JSON"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "servant-seo" = callPackage ( { mkDerivation, @@ -600768,101 +347824,6 @@ self: { } ) { }; - "servant-server-namedargs" = callPackage ( - { - mkDerivation, - base, - bytestring, - http-api-data, - http-types, - named, - servant, - servant-namedargs, - servant-server, - string-conversions, - text, - wai, - }: - mkDerivation { - pname = "servant-server-namedargs"; - version = "0.1.1.1"; - sha256 = "16lgnsq66rrjnky409c49pdr1dfq6d8p96gd1dhph2vwq2156fsd"; - libraryHaskellDepends = [ - base - bytestring - http-api-data - http-types - named - servant - servant-namedargs - servant-server - string-conversions - text - wai - ]; - description = "Automatically derive API server functions with named and optional parameters"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "servant-smsc-ru" = callPackage ( - { - mkDerivation, - aeson, - base, - bytestring, - http-client, - http-client-tls, - HUnit, - mtl, - QuickCheck, - quickcheck-text, - scientific, - servant, - servant-client, - tasty, - tasty-hunit, - tasty-quickcheck, - text, - transformers, - }: - mkDerivation { - pname = "servant-smsc-ru"; - version = "0.1.0.0"; - sha256 = "1vg5z0qhl9pasv29i26nyrblcpfxs0lxgw2h2sma6xnc4icbr9zn"; - libraryHaskellDepends = [ - aeson - base - bytestring - http-client - http-client-tls - mtl - scientific - servant - servant-client - text - transformers - ]; - testHaskellDepends = [ - aeson - base - bytestring - HUnit - QuickCheck - quickcheck-text - tasty - tasty-hunit - tasty-quickcheck - text - ]; - description = "Servant client for smsc.ru service for sending SMS to cell phones"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "servant-snap" = callPackage ( { mkDerivation, @@ -600911,392 +347872,153 @@ self: { mkDerivation { pname = "servant-snap"; version = "0.9.0"; - sha256 = "1csfxhdfn4qchxw6n1ysj4mc4ncywdxp326nqjy4b19cxrnkgjsw"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson - attoparsec - base - base64-bytestring - bytestring - case-insensitive - containers - filepath - http-api-data - http-media - http-types - io-streams - mmorph - mtl - network-uri - servant - snap - snap-core - snap-server - string-conversions - tagged - text - transformers - word8 - ]; - executableHaskellDepends = [ - aeson - base - bytestring - errors - heist - lens - map-syntax - servant - snap - snap-core - snap-server - text - transformers - ]; - testHaskellDepends = [ - aeson - base - base64-bytestring - bytestring - case-insensitive - containers - digestive-functors - directory - exceptions - hspec - hspec-core - hspec-snap - http-types - HUnit - io-streams - lens - mtl - network - parsec - process - QuickCheck - servant - snap - snap-core - snap-server - string-conversions - temporary - text - time - transformers - ]; - description = "A family of combinators for defining webservices APIs and serving them"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "snap-greet"; - } - ) { }; - - "servant-stache" = callPackage ( - { - mkDerivation, - aeson, - base, - http-media, - servant, - servant-server, - stache, - text, - transformers, - unordered-containers, - vector, - warp, - xss-sanitize, - }: - mkDerivation { - pname = "servant-stache"; - version = "0.1.0.0"; - sha256 = "0kj998nxcfkz6rzs6kxqkg035r35q4ms4mdi3bw3pfvzr6msxgcz"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson - base - http-media - servant - stache - text - transformers - unordered-containers - vector - xss-sanitize - ]; - executableHaskellDepends = [ - aeson - base - http-media - servant-server - warp - ]; - description = "Content-Types for rendering Mustache in servant"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "example"; - broken = true; - } - ) { }; - - "servant-static-th" = callPackage ( - { - mkDerivation, - base, - blaze-html, - bytestring, - containers, - directory, - filepath, - hspec, - hspec-wai, - http-media, - semigroups, - servant, - servant-blaze, - servant-server, - tasty, - tasty-hspec, - tasty-hunit, - template-haskell, - text, - wai, - }: - mkDerivation { - pname = "servant-static-th"; - version = "1.0.0.1"; - sha256 = "0pxzv2v5wlf906lxk778m3jvb2ax46x5z122x32a9a0n0s8pppik"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - blaze-html - bytestring - containers - directory - filepath - http-media - semigroups - servant - servant-blaze - servant-server - template-haskell - text - ]; - testHaskellDepends = [ - base - blaze-html - bytestring - directory - filepath - hspec - hspec-wai - servant - servant-blaze - servant-server - tasty - tasty-hspec - tasty-hunit - wai - ]; - description = "Embed a directory of static files in your Servant server"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "servant-streaming" = callPackage ( - { - mkDerivation, - base, - hspec, - http-types, - QuickCheck, - servant, - }: - mkDerivation { - pname = "servant-streaming"; - version = "0.3.0.0"; - sha256 = "0k2sgh7qhp54050k6xlz4zi5jf29xnar2iv02f4rg1k5fxjlh3cq"; - revision = "3"; - editedCabalFile = "04mc3k97sk0r90m8ca34gqpb2bz8yljp3j613xx7xz90sffqc1hq"; - libraryHaskellDepends = [ - base - http-types - servant - ]; - testHaskellDepends = [ - base - hspec - http-types - QuickCheck - servant - ]; - description = "Servant combinators for the 'streaming' package"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "servant-streaming-client" = callPackage ( - { - mkDerivation, - base, - bytestring, - hspec, - http-client, - http-media, - http-types, - QuickCheck, - resourcet, - servant, - servant-client, - servant-client-core, - servant-server, - servant-streaming, - servant-streaming-server, - streaming, - warp, - }: - mkDerivation { - pname = "servant-streaming-client"; - version = "0.3.0.0"; - sha256 = "1h3haws61m064zziyzn03n0450swffmr46gsv9k88lrpz8lv5qj2"; - revision = "1"; - editedCabalFile = "07xkgnhi8aspnqms5gx67ssw5m595gda8yqypdg2q59wwc6ib68d"; + sha256 = "1csfxhdfn4qchxw6n1ysj4mc4ncywdxp326nqjy4b19cxrnkgjsw"; + isLibrary = true; + isExecutable = true; libraryHaskellDepends = [ + aeson + attoparsec base + base64-bytestring bytestring + case-insensitive + containers + filepath + http-api-data http-media http-types - resourcet + io-streams + mmorph + mtl + network-uri servant - servant-client-core - servant-streaming - streaming + snap + snap-core + snap-server + string-conversions + tagged + text + transformers + word8 ]; - testHaskellDepends = [ + executableHaskellDepends = [ + aeson base bytestring - hspec - http-client - http-media - http-types - QuickCheck - resourcet + errors + heist + lens + map-syntax servant - servant-client - servant-client-core - servant-server - servant-streaming - servant-streaming-server - streaming - warp + snap + snap-core + snap-server + text + transformers ]; - description = "Client instances for the 'servant-streaming' package"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "servant-streaming-docs" = callPackage ( - { - mkDerivation, - base, - lens, - servant, - servant-docs, - servant-streaming, - }: - mkDerivation { - pname = "servant-streaming-docs"; - version = "0.3.0.0"; - sha256 = "0jy0na8cavym2vsy1a059n0yjzfb5a0xylyzxpz0i5apafv1xvlz"; - revision = "1"; - editedCabalFile = "02majkszg6d340mq07b9xyfd200xqpq9znl2j9dxqj7d9bqkrdrz"; - libraryHaskellDepends = [ + testHaskellDepends = [ + aeson base + base64-bytestring + bytestring + case-insensitive + containers + digestive-functors + directory + exceptions + hspec + hspec-core + hspec-snap + http-types + HUnit + io-streams lens + mtl + network + parsec + process + QuickCheck servant - servant-docs - servant-streaming + snap + snap-core + snap-server + string-conversions + temporary + text + time + transformers ]; - description = "Client instances for the 'servant-docs' package"; + description = "A family of combinators for defining webservices APIs and serving them"; license = lib.licenses.bsd3; hydraPlatforms = lib.platforms.none; + mainProgram = "snap-greet"; } ) { }; - "servant-streaming-server" = callPackage ( + "servant-static-th" = callPackage ( { mkDerivation, base, + blaze-html, bytestring, + containers, directory, + filepath, hspec, + hspec-wai, http-media, - http-types, - pipes, - pipes-http, - QuickCheck, - resourcet, + semigroups, servant, + servant-blaze, servant-server, - servant-streaming, - streaming, - streaming-bytestring, - streaming-wai, + tasty, + tasty-hspec, + tasty-hunit, + template-haskell, + text, wai, - warp, }: mkDerivation { - pname = "servant-streaming-server"; - version = "0.3.0.0"; - sha256 = "0lsh3x6hkbk7p095pkp7ld0m54xlkw0101x6nrxhjvhmw13aiq66"; - revision = "1"; - editedCabalFile = "1xfx22a83xwq2bzv7gm3z9drd5hiq6wz7yyvfpjz1c2dcicwflvm"; + pname = "servant-static-th"; + version = "1.0.0.1"; + sha256 = "0pxzv2v5wlf906lxk778m3jvb2ax46x5z122x32a9a0n0s8pppik"; + isLibrary = true; + isExecutable = true; libraryHaskellDepends = [ base + blaze-html bytestring + containers + directory + filepath http-media - http-types - resourcet + semigroups servant + servant-blaze servant-server - servant-streaming - streaming - streaming-wai - wai + template-haskell + text ]; testHaskellDepends = [ base + blaze-html bytestring directory + filepath hspec - http-media - http-types - pipes - pipes-http - QuickCheck - resourcet + hspec-wai servant + servant-blaze servant-server - servant-streaming - streaming - streaming-bytestring - streaming-wai + tasty + tasty-hspec + tasty-hunit wai - warp ]; - description = "Server instances for the 'servant-streaming' package"; + description = "Embed a directory of static files in your Servant server"; license = lib.licenses.bsd3; hydraPlatforms = lib.platforms.none; + broken = true; } ) { }; @@ -601357,85 +348079,6 @@ self: { } ) { }; - "servant-subscriber" = callPackage ( - { - mkDerivation, - aeson, - async, - attoparsec, - base, - blaze-builder, - bytestring, - case-insensitive, - containers, - directory, - filepath, - http-types, - lens, - lifted-base, - monad-control, - monad-logger, - network-uri, - purescript-bridge, - servant, - servant-foreign, - servant-server, - stm, - text, - time, - transformers, - wai, - wai-websockets, - warp, - websockets, - }: - mkDerivation { - pname = "servant-subscriber"; - version = "0.7.0.0"; - sha256 = "1c1g6jx36n5n5qjw82854vkbg7mavmrj7vz97vc1zzk5w54wsj8k"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson - async - attoparsec - base - blaze-builder - bytestring - case-insensitive - containers - directory - filepath - http-types - lens - lifted-base - monad-control - monad-logger - network-uri - servant - servant-foreign - servant-server - stm - text - time - transformers - wai - wai-websockets - warp - websockets - ]; - executableHaskellDepends = [ - base - purescript-bridge - ]; - description = "When REST is not enough ..."; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "subscriber-psGenerator"; - broken = true; - } - ) { }; - "servant-swagger" = callPackage ( { mkDerivation, @@ -601519,40 +348162,6 @@ self: { } ) { }; - "servant-swagger-tags" = callPackage ( - { - mkDerivation, - base, - insert-ordered-containers, - lens, - servant, - servant-mock, - servant-server, - servant-swagger, - swagger2, - text, - }: - mkDerivation { - pname = "servant-swagger-tags"; - version = "0.1.0.1"; - sha256 = "1hl0baa739a5kdg274b8cwyd5h5iam9bxj3ql96ljwdp9j2cnv2v"; - libraryHaskellDepends = [ - base - insert-ordered-containers - lens - servant - servant-mock - servant-server - servant-swagger - swagger2 - text - ]; - description = "Swagger Tags for Servant"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "servant-swagger-ui" = callPackage ( { mkDerivation, @@ -602209,99 +348818,6 @@ self: { } ) { }; - "servant-waargonaut" = callPackage ( - { - mkDerivation, - base, - bytestring, - http-media, - http-types, - lens, - servant, - servant-server, - tasty, - tasty-wai, - text, - transformers, - waargonaut, - wai, - wl-pprint-annotated, - }: - mkDerivation { - pname = "servant-waargonaut"; - version = "0.7.0.0"; - sha256 = "0fn7ph0805n297nzi3ig9wfx27kz6bmn4r914ibx44927xifms59"; - revision = "1"; - editedCabalFile = "1xavy6k93ncvcnb4rp1p33gxaqbhjil6mz9qk8li1ibhyi29yjxh"; - libraryHaskellDepends = [ - base - bytestring - http-media - lens - servant - text - waargonaut - wl-pprint-annotated - ]; - testHaskellDepends = [ - base - bytestring - http-media - http-types - lens - servant - servant-server - tasty - tasty-wai - text - transformers - waargonaut - wai - wl-pprint-annotated - ]; - description = "Servant Integration for Waargonaut JSON Package"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "servant-wasm" = callPackage ( - { - mkDerivation, - base, - bytestring, - servant, - servant-server, - transformers, - warp, - }: - mkDerivation { - pname = "servant-wasm"; - version = "0.1.1.0"; - sha256 = "0nd98s0h9f5z1nhsmcyij7h1ppgw0s9cn8yj53v9a67yaniqvcqj"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - bytestring - servant - ]; - executableHaskellDepends = [ - base - bytestring - servant - servant-server - transformers - warp - ]; - description = "Servant support for delivering WebAssembly"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "exe"; - broken = true; - } - ) { }; - "servant-websockets" = callPackage ( { mkDerivation, @@ -602438,241 +348954,6 @@ self: { } ) { }; - "servant-yaml" = callPackage ( - { - mkDerivation, - aeson, - base, - base-compat, - bytestring, - http-media, - servant, - servant-server, - wai, - warp, - yaml, - }: - mkDerivation { - pname = "servant-yaml"; - version = "0.1.0.1"; - sha256 = "00gnbdlcq6cvmhsga8h0csd35pnfib038rqlhm445l4wa0cp8m01"; - revision = "4"; - editedCabalFile = "0k9jg3vf0p1332243mji4lzm3lk3frsmxxlz6lgg68rwh3baz6f0"; - libraryHaskellDepends = [ - base - bytestring - http-media - servant - yaml - ]; - testHaskellDepends = [ - aeson - base - base-compat - bytestring - http-media - servant - servant-server - wai - warp - yaml - ]; - description = "Servant support for yaml"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "servant-zeppelin" = callPackage ( - { - mkDerivation, - base, - singletons, - }: - mkDerivation { - pname = "servant-zeppelin"; - version = "0.1.0.3"; - sha256 = "1pga7l2akxqhkfq6gqaiiz6svvhzb83dbc5bw487kkrs3vriyyc3"; - libraryHaskellDepends = [ - base - singletons - ]; - description = "Types and definitions of servant-zeppelin combinators"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "servant-zeppelin-client" = callPackage ( - { - mkDerivation, - aeson, - base, - data-default-class, - hspec, - http-client, - mtl, - QuickCheck, - servant, - servant-client, - servant-server, - servant-zeppelin, - servant-zeppelin-server, - singletons, - string-conversions, - text, - wai-extra, - warp, - }: - mkDerivation { - pname = "servant-zeppelin-client"; - version = "0.1.0.3"; - sha256 = "0rycpbwnxnjcf5j0ipy2sf66l4nj1fml16hyd6ga4wd6hcf5277q"; - libraryHaskellDepends = [ - aeson - base - servant - servant-client - servant-zeppelin - singletons - text - ]; - testHaskellDepends = [ - aeson - base - data-default-class - hspec - http-client - mtl - QuickCheck - servant - servant-client - servant-server - servant-zeppelin - servant-zeppelin-server - singletons - string-conversions - wai-extra - warp - ]; - description = "Client library for servant-zeppelin combinators"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "servant-zeppelin-server" = callPackage ( - { - mkDerivation, - aeson, - base, - hspec, - http-client, - http-types, - lens, - lens-aeson, - mtl, - QuickCheck, - servant, - servant-server, - servant-zeppelin, - singletons, - string-conversions, - text, - wai, - warp, - wreq, - }: - mkDerivation { - pname = "servant-zeppelin-server"; - version = "0.1.0.3"; - sha256 = "1fq9cac0mxpgj6cbgchd28djai0p1sdxgnbzpi6mn5l3hpfqyxnm"; - libraryHaskellDepends = [ - aeson - base - http-types - servant - servant-server - servant-zeppelin - singletons - text - wai - ]; - testHaskellDepends = [ - aeson - base - hspec - http-client - http-types - lens - lens-aeson - mtl - QuickCheck - servant - servant-server - servant-zeppelin - string-conversions - warp - wreq - ]; - description = "Server library for servant-zeppelin combinators"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "servant-zeppelin-swagger" = callPackage ( - { - mkDerivation, - aeson, - base, - containers, - hspec, - insert-ordered-containers, - lens, - servant, - servant-swagger, - servant-zeppelin, - singletons, - swagger2, - text, - }: - mkDerivation { - pname = "servant-zeppelin-swagger"; - version = "0.1.0.3"; - sha256 = "0minwzmavsbksn0qh25lcbmdy496zi5lq6jrg4n203pdvnlhsyah"; - libraryHaskellDepends = [ - aeson - base - insert-ordered-containers - lens - servant - servant-swagger - servant-zeppelin - singletons - swagger2 - text - ]; - testHaskellDepends = [ - aeson - base - containers - hspec - insert-ordered-containers - lens - servant - servant-swagger - servant-zeppelin - swagger2 - ]; - description = "Swagger instances for servant-zeppelin combinators"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "server-generic" = callPackage ( { mkDerivation, @@ -603133,77 +349414,6 @@ self: { } ) { }; - "services" = callPackage ( - { - mkDerivation, - aeson, - base, - binary, - bytestring, - containers, - http-types, - monad-logger, - tasty, - tasty-hunit, - text, - wai, - }: - mkDerivation { - pname = "services"; - version = "0.2.0"; - sha256 = "0sqk8c86rz0sva26zdh3am6sacwlg0jlkbizf82nrdznd6mih0h1"; - libraryHaskellDepends = [ - aeson - base - binary - bytestring - containers - http-types - monad-logger - text - wai - ]; - testHaskellDepends = [ - base - tasty - tasty-hunit - ]; - description = "Tools for building services"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "serviette" = callPackage ( - { - mkDerivation, - aeson, - base, - bytestring, - generic-deriving, - text, - text-show, - }: - mkDerivation { - pname = "serviette"; - version = "0.1.0.6"; - sha256 = "00bh2c73g11bglw5z96g9d1bqkcd783byd3jrf5amgay28xk2l5d"; - libraryHaskellDepends = [ - aeson - base - bytestring - generic-deriving - text - text-show - ]; - description = "JSON to Sql"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "servius" = callPackage ( { mkDerivation, @@ -603277,157 +349487,6 @@ self: { } ) { }; - "ses-html-snaplet" = callPackage ( - { - mkDerivation, - base, - blaze-html, - bytestring, - configurator, - ses-html, - snap, - text, - transformers, - }: - mkDerivation { - pname = "ses-html-snaplet"; - version = "0.1.0.0"; - sha256 = "1lrr321gk7djyzv9yb7x967d53azxflh4jkf9zlkpxh3p7rz6793"; - libraryHaskellDepends = [ - base - blaze-html - bytestring - configurator - ses-html - snap - text - transformers - ]; - description = "Snaplet for the ses-html package"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "sessions" = callPackage ( - { - mkDerivation, - base, - binary, - bytestring, - containers, - mtl, - network, - }: - mkDerivation { - pname = "sessions"; - version = "2008.7.18"; - sha256 = "0zijfbakj3fh052b8nvaddg1xy87ysfbm3qnibisam93lx0agp2s"; - libraryHaskellDepends = [ - base - binary - bytestring - containers - mtl - network - ]; - description = "Session Types for Haskell"; - license = "GPL"; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "sessiontypes" = callPackage ( - { - mkDerivation, - base, - deepseq, - diagrams-lib, - diagrams-svg, - directory, - exceptions, - hspec, - mtl, - transformers, - vector, - }: - mkDerivation { - pname = "sessiontypes"; - version = "0.1.2"; - sha256 = "1xjf3yjapz9ipjkqhm8fljgbj6fww3iyl1mx1kjwh18s6b9ymq5s"; - revision = "1"; - editedCabalFile = "0qd48i92nn5yhp1lzs5vvvcmq5db785nr736y2yxgi7z4pk80r84"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - deepseq - diagrams-lib - diagrams-svg - mtl - transformers - vector - ]; - executableHaskellDepends = [ base ]; - testHaskellDepends = [ - base - directory - exceptions - hspec - ]; - description = "Session types library"; - license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - mainProgram = "test-visualizer"; - broken = true; - } - ) { }; - - "sessiontypes-distributed" = callPackage ( - { - mkDerivation, - base, - binary, - bytestring, - distributed-process, - distributed-static, - exceptions, - hspec, - network-transport-tcp, - rank1dynamic, - sessiontypes, - }: - mkDerivation { - pname = "sessiontypes-distributed"; - version = "0.1.1"; - sha256 = "0fi263sdpshzjwc51h9rqgg0zj7f5a6igrfj9487lbdgaz1cb1ya"; - revision = "1"; - editedCabalFile = "0r4xn7p21xwdimzpdd5jqjawds9mhniqzmg84bfipcpm3mwhjq5x"; - libraryHaskellDepends = [ - base - binary - bytestring - distributed-process - distributed-static - exceptions - rank1dynamic - sessiontypes - ]; - testHaskellDepends = [ - base - distributed-process - hspec - network-transport-tcp - sessiontypes - ]; - description = "Session types distributed"; - license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "set-cover" = callPackage ( { mkDerivation, @@ -603537,27 +349596,6 @@ self: { } ) { }; - "set-of" = callPackage ( - { - mkDerivation, - base, - containers, - }: - mkDerivation { - pname = "set-of"; - version = "0.1.0.2"; - sha256 = "0npsxff611frdb2a5xbyd4ipn3qb8ji6a1yygxid7pk7qsx0spj1"; - libraryHaskellDepends = [ - base - containers - ]; - description = "Sets of fixed size, with typelits"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "set-with" = callPackage ( { mkDerivation, @@ -603596,56 +349634,6 @@ self: { } ) { }; - "setdown" = callPackage ( - { - mkDerivation, - alex, - array, - base, - bytestring, - cmdargs, - containers, - directory, - filepath, - happy, - mtl, - split, - table-layout, - text, - uuid, - }: - mkDerivation { - pname = "setdown"; - version = "0.1.1.0"; - sha256 = "01kb0bw6f0rzs76r5mifmizx22az3w0kjkfsxmhcjfnxkhwiv5z7"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - array - base - bytestring - cmdargs - containers - directory - filepath - mtl - split - table-layout - text - uuid - ]; - executableToolDepends = [ - alex - happy - ]; - description = "Treating files as sets to perform rapid set manipulation"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "setdown"; - broken = true; - } - ) { }; - "setenv" = callPackage ( { mkDerivation, @@ -603667,35 +349655,6 @@ self: { } ) { }; - "setgame" = callPackage ( - { - mkDerivation, - base, - random, - vty, - }: - mkDerivation { - pname = "setgame"; - version = "1.1"; - sha256 = "1hr2kb4d7m22d48gh74h5z8c6shkprincf0qb9wc2fq2hj7c3c1l"; - revision = "2"; - editedCabalFile = "0cb1vajyh3fxrkq97cvlkvpskgrnn4zs2gk8al9dcnn3dq0j3v58"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - random - vty - ]; - executableHaskellDepends = [ base ]; - description = "A console interface to the game of Set"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "set-game"; - broken = true; - } - ) { }; - "setlocale" = callPackage ( { mkDerivation, base }: mkDerivation { @@ -603710,46 +349669,6 @@ self: { } ) { }; - "setoid" = callPackage ( - { - mkDerivation, - base, - containers, - mtl, - smallcheck, - tasty, - tasty-discover, - tasty-hunit, - tasty-quickcheck, - tasty-smallcheck, - }: - mkDerivation { - pname = "setoid"; - version = "0.1.0.0"; - sha256 = "0g2b191hxvp8hrxlghwb9csnz0y08a56bvh4nkxz084bzyj4fl0n"; - libraryHaskellDepends = [ - base - containers - ]; - testHaskellDepends = [ - base - containers - mtl - smallcheck - tasty - tasty-discover - tasty-hunit - tasty-quickcheck - tasty-smallcheck - ]; - testToolDepends = [ tasty-discover ]; - description = "A Haskell implementation of setoid"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "setop" = callPackage ( { mkDerivation, @@ -603913,31 +349832,6 @@ self: { } ) { }; - "setters" = callPackage ( - { - mkDerivation, - base, - mtl, - template-haskell, - }: - mkDerivation { - pname = "setters"; - version = "0.1"; - sha256 = "0rw9m9f7cqi0kvjcq81b7qrn3v672d4w0ch1k377m1151vg20a2z"; - revision = "1"; - editedCabalFile = "0rck3kizbzr5vffisnnhl3fsl4vw3n0s3mb7lcgggd4b40hp7zy4"; - libraryHaskellDepends = [ - base - mtl - template-haskell - ]; - description = "Small (TH) library to declare setters for typical `record' data type fields"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "settings" = callPackage ( { mkDerivation, @@ -604229,100 +350123,6 @@ self: { } ) { }; - "sext" = callPackage ( - { - mkDerivation, - base, - bytestring, - tasty, - tasty-hunit, - template-haskell, - text, - vector, - }: - mkDerivation { - pname = "sext"; - version = "0.1.3.1"; - sha256 = "0836faqrrb9wsw5hlm82587isw6rkn4v8i6dh9hzxsqif1izd363"; - libraryHaskellDepends = [ - base - bytestring - template-haskell - text - vector - ]; - testHaskellDepends = [ - base - bytestring - tasty - tasty-hunit - template-haskell - ]; - description = "Lists, Texts, ByteStrings and Vectors with type-encoded length"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "sfml-audio" = - callPackage - ( - { - mkDerivation, - base, - bytestring, - libsndfile, - openal, - }: - mkDerivation { - pname = "sfml-audio"; - version = "0.7.1.1816"; - sha256 = "057z0z2xbls1p43k0kixbw26v0pv6lsvfh5ycjx37r8xw8ks31ba"; - libraryHaskellDepends = [ - base - bytestring - ]; - librarySystemDepends = [ - libsndfile - openal - ]; - description = "minimal bindings to the audio module of sfml"; - license = "unknown"; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) - { - inherit (pkgs) libsndfile; - inherit (pkgs) openal; - }; - - "sfmt" = callPackage ( - { - mkDerivation, - base, - bytestring, - entropy, - primitive, - }: - mkDerivation { - pname = "sfmt"; - version = "0.1.1"; - sha256 = "1jwzsk43kkvlmw551z46bhbvccf9yn1ncrhd27lm4pn93as2v1p6"; - libraryHaskellDepends = [ - base - bytestring - entropy - primitive - ]; - description = "SIMD-oriented Fast Mersenne Twister(SFMT) binding"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "sfnt2woff" = callPackage ( { mkDerivation, @@ -604358,85 +350158,6 @@ self: { } ) { inherit (pkgs) zlib; }; - "sgd" = callPackage ( - { - mkDerivation, - ad, - base, - binary, - bytestring, - containers, - data-default, - deepseq, - filepath, - hmatrix, - logfloat, - monad-par, - mtl, - parallel, - pipes, - primitive, - random, - random-shuffle, - tasty, - tasty-hunit, - temporary, - vector, - }: - mkDerivation { - pname = "sgd"; - version = "0.8.0.3"; - sha256 = "0nl7hiw9b25jgp2742ykx8f4c7irz1b7rd9i19vpcmshkkmqcvsl"; - libraryHaskellDepends = [ - base - binary - bytestring - containers - data-default - deepseq - filepath - hmatrix - logfloat - monad-par - mtl - parallel - pipes - primitive - random - random-shuffle - temporary - vector - ]; - testHaskellDepends = [ - ad - base - binary - bytestring - containers - data-default - deepseq - filepath - hmatrix - logfloat - monad-par - mtl - parallel - pipes - primitive - random - random-shuffle - tasty - tasty-hunit - temporary - vector - ]; - description = "Stochastic gradient descent library"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "sgf" = callPackage ( { mkDerivation, @@ -604470,122 +350191,6 @@ self: { } ) { }; - "sgrep" = callPackage ( - { - mkDerivation, - base, - bio, - regex-compat, - }: - mkDerivation { - pname = "sgrep"; - version = "0.0"; - sha256 = "0ai9j735wj5lclixwlki5g2s50g2mscglfrir2q7bj0lwg76dygi"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - bio - regex-compat - ]; - description = "Sgrep - grep Fasta files for sequences matching a regular expression"; - license = "GPL"; - hydraPlatforms = lib.platforms.none; - mainProgram = "sgrep"; - } - ) { }; - - "sh2md" = callPackage ( - { - mkDerivation, - base, - containers, - Hclip, - optparse-applicative, - process, - text, - transformers, - unix, - }: - mkDerivation { - pname = "sh2md"; - version = "0.1.0.0"; - sha256 = "1yw47xzfi7yappsx2ra1a75xdxq9wfn7wrdnxflf6s9bzj9bhc1g"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - containers - Hclip - optparse-applicative - process - text - transformers - unix - ]; - executableHaskellDepends = [ - base - containers - Hclip - optparse-applicative - process - text - transformers - unix - ]; - testHaskellDepends = [ - base - containers - Hclip - optparse-applicative - process - text - transformers - unix - ]; - description = "Record your shell session and print in the markdown format"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "sh2md"; - broken = true; - } - ) { }; - - "sha-streams" = callPackage ( - { - mkDerivation, - base, - binary, - bytestring, - io-streams, - SHA, - }: - mkDerivation { - pname = "sha-streams"; - version = "0.2.1"; - sha256 = "0w4ky0ng6if5ydcfdcpp2dy72i0lla6bwsvws882aqaqxldbc2wj"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - binary - bytestring - io-streams - SHA - ]; - executableHaskellDepends = [ - base - io-streams - SHA - ]; - description = "SHA hashes for io-streams"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "sha-streams"; - broken = true; - } - ) { }; - "sha-validation" = callPackage ( { mkDerivation, @@ -604690,31 +350295,6 @@ self: { } ) { }; - "shade" = callPackage ( - { - mkDerivation, - base, - mtl, - transformers, - }: - mkDerivation { - pname = "shade"; - version = "0.1.1.1"; - sha256 = "0yri1xy40lx04sg4nm6z4wg9ayqqq5nga6yk9hv4rpf5aw3n264r"; - revision = "1"; - editedCabalFile = "164nw1gg6yl3fb4pqbgxxphafw2120a8kryhqx0i09l8c1n49557"; - libraryHaskellDepends = [ - base - mtl - transformers - ]; - description = "A control structure used to combine heterogenous types with delayed effects"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "shaderc" = callPackage ( { mkDerivation, @@ -604768,58 +350348,6 @@ self: { } ) { inherit (pkgs) shaderc; }; - "shadower" = callPackage ( - { - mkDerivation, - base, - doctest, - filemanip, - fsnotify, - MissingH, - mtl, - process, - safe, - system-filepath, - text, - }: - mkDerivation { - pname = "shadower"; - version = "0.1.0.6"; - sha256 = "1m0zxnmxn536jnaj5l4qpj5k7xshffsbca0cl53y3dnb6ssq9fni"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - doctest - filemanip - fsnotify - MissingH - mtl - process - safe - system-filepath - text - ]; - testHaskellDepends = [ - base - doctest - filemanip - fsnotify - MissingH - mtl - process - safe - system-filepath - text - ]; - description = "An automated way to run doctests in files that are changing"; - license = lib.licenses.publicDomain; - hydraPlatforms = lib.platforms.none; - mainProgram = "shadower"; - broken = true; - } - ) { }; - "shadowsocks" = callPackage ( { mkDerivation, @@ -604887,84 +350415,6 @@ self: { } ) { }; - "shady-gen" = callPackage ( - { - mkDerivation, - applicative-numbers, - base, - Boolean, - containers, - data-treify, - MemoTrie, - mtl, - ty, - TypeCompose, - vector-space, - wl-pprint, - }: - mkDerivation { - pname = "shady-gen"; - version = "0.5.1"; - sha256 = "1vsk0ah6ngcgn5i6xda9j400xan1y843v25hc4lqcql37mg3ifn8"; - libraryHaskellDepends = [ - applicative-numbers - base - Boolean - containers - data-treify - MemoTrie - mtl - ty - TypeCompose - vector-space - wl-pprint - ]; - description = "Functional GPU programming - DSEL & compiler"; - license = "unknown"; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "shady-graphics" = callPackage ( - { - mkDerivation, - applicative-numbers, - base, - Boolean, - containers, - data-treify, - MemoTrie, - mtl, - shady-gen, - ty, - TypeCompose, - vector-space, - wl-pprint, - }: - mkDerivation { - pname = "shady-graphics"; - version = "0.5.0"; - sha256 = "1wzlygmpjfys4ijyqh8ymv2f75swy9zd0g05gxpqhxkvlrw3jdk4"; - libraryHaskellDepends = [ - applicative-numbers - base - Boolean - containers - data-treify - MemoTrie - mtl - shady-gen - ty - TypeCompose - vector-space - wl-pprint - ]; - description = "Functional GPU programming - DSEL & compiler"; - license = "unknown"; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "shake" = callPackage ( { mkDerivation, @@ -605075,48 +350525,6 @@ self: { } ) { }; - "shake-ats" = callPackage ( - { - mkDerivation, - base, - binary, - cdeps, - dependency, - directory, - hs2ats, - language-ats, - microlens, - shake, - shake-c, - shake-cabal, - shake-ext, - text, - }: - mkDerivation { - pname = "shake-ats"; - version = "1.10.4.2"; - sha256 = "0j230aijhnz1r07yx7ya452jz72926m93pdhfdrq5613mgy7l22n"; - libraryHaskellDepends = [ - base - binary - cdeps - dependency - directory - hs2ats - language-ats - microlens - shake - shake-c - shake-cabal - shake-ext - text - ]; - description = "Utilities for building ATS projects with shake"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "shake-bench" = callPackage ( { mkDerivation, @@ -605167,39 +350575,6 @@ self: { } ) { }; - "shake-bindist" = callPackage ( - { - mkDerivation, - archive-sig, - base, - bytestring, - bz2, - lzlib, - shake, - zlib, - zstd, - }: - mkDerivation { - pname = "shake-bindist"; - version = "1.0.0.0"; - sha256 = "0fzq62a8rjh9jc9dc7rfi6ypp0fax7fhlf632a30mrbpk1hqyfz8"; - libraryHaskellDepends = [ - archive-sig - base - bytestring - bz2 - lzlib - shake - zlib - zstd - ]; - description = "Rules for binary distributions"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "shake-c" = callPackage ( { mkDerivation, @@ -605292,36 +350667,6 @@ self: { } ) { }; - "shake-cabal-build" = callPackage ( - { - mkDerivation, - base, - Cabal, - directory, - filepath, - process, - }: - mkDerivation { - pname = "shake-cabal-build"; - version = "0.1.0"; - sha256 = "1ql2w164f2sfmbcqk2da00nihwfr6a85f99apx5dwpbkfbc53n8l"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - Cabal - directory - filepath - process - ]; - description = "Utility for building Shake build systems using Cabal sandboxes"; - license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; - mainProgram = "shake-cabal-build"; - broken = true; - } - ) { }; - "shake-ccjs" = callPackage ( { mkDerivation, @@ -605343,44 +350688,6 @@ self: { } ) { }; - "shake-dhall" = callPackage ( - { - mkDerivation, - base, - containers, - dhall, - directory, - filepath, - shake, - tasty, - tasty-hunit, - text, - }: - mkDerivation { - pname = "shake-dhall"; - version = "0.1.1.3"; - sha256 = "1crakjnib9hvqph8f0wn0ii0y4hp9vix40kd8fpz85mdqfsynf5q"; - libraryHaskellDepends = [ - base - containers - dhall - directory - filepath - shake - text - ]; - testHaskellDepends = [ - base - tasty - tasty-hunit - ]; - description = "Dhall dependencies"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "shake-elm" = callPackage ( { mkDerivation, @@ -605421,35 +350728,6 @@ self: { } ) { }; - "shake-extras" = callPackage ( - { - mkDerivation, - base, - bytestring, - cmdargs, - directory, - filepath, - shake, - }: - mkDerivation { - pname = "shake-extras"; - version = "0.1.1"; - sha256 = "0qqzdhd6q8hhix7lx4j1v4j37b8jnv710clilk2wxbyvz03rbblz"; - libraryHaskellDepends = [ - base - bytestring - cmdargs - directory - filepath - shake - ]; - description = "Extra utilities for shake build systems"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "shake-futhark" = callPackage ( { mkDerivation, @@ -605500,47 +350778,6 @@ self: { } ) { }; - "shake-language-c" = callPackage ( - { - mkDerivation, - base, - data-default-class, - directory, - doctest, - fclabels, - hspec, - process, - shake, - split, - unordered-containers, - }: - mkDerivation { - pname = "shake-language-c"; - version = "0.12.0"; - sha256 = "1c0smbshksjw114m09n5i1ynkhibvd9kix9n7h696p75g40ka7k6"; - libraryHaskellDepends = [ - base - data-default-class - fclabels - process - shake - split - unordered-containers - ]; - testHaskellDepends = [ - base - directory - doctest - hspec - shake - ]; - doCheck = false; - description = "Utilities for cross-compiling with Shake"; - license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "shake-literate" = callPackage ( { mkDerivation, @@ -605562,149 +350799,6 @@ self: { } ) { }; - "shake-minify" = callPackage ( - { - mkDerivation, - base, - bytestring, - css-text, - hjsmin, - shake, - text, - }: - mkDerivation { - pname = "shake-minify"; - version = "0.1.4"; - sha256 = "17q0xzjj6xl9h3s6dlxgkxxz2dd4ycbh918ali1lrq2dq9gig3ir"; - libraryHaskellDepends = [ - base - bytestring - css-text - hjsmin - shake - text - ]; - description = "Shake Minify Rules"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "shake-minify-css" = callPackage ( - { - mkDerivation, - base, - directory, - filepath, - hasmin, - shake, - text, - }: - mkDerivation { - pname = "shake-minify-css"; - version = "0.1.0.0"; - sha256 = "0gy3h108gbv93jr74sp3wa3r3vkm8k53wr3z9bmm6c9rg7zwr2q7"; - libraryHaskellDepends = [ - base - directory - filepath - hasmin - shake - text - ]; - description = "Shake rules for CSS"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "shake-pack" = callPackage ( - { - mkDerivation, - base, - bytestring, - bzlib, - shake, - tar, - }: - mkDerivation { - pname = "shake-pack"; - version = "0.2.0"; - sha256 = "13v9p6idndg3xy8fb63g037csgmj5kaxj0903kx5py050cj6rbaz"; - libraryHaskellDepends = [ - base - bytestring - bzlib - shake - tar - ]; - description = "Shake File Pack Rule"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "shake-path" = callPackage ( - { - mkDerivation, - base, - path, - path-io, - shake, - }: - mkDerivation { - pname = "shake-path"; - version = "0.0.0.1"; - sha256 = "0sjw0hcs6i9c8vfirrk90y5xd3cf0f9c0wa2p5pqimc5wfid9plk"; - libraryHaskellDepends = [ - base - path - path-io - shake - ]; - description = "path alternatives to shake functions"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "shake-persist" = callPackage ( - { - mkDerivation, - base, - binary, - directory, - shake, - template-haskell, - }: - mkDerivation { - pname = "shake-persist"; - version = "0.1.0.0"; - sha256 = "0slqhzpmalgqmc3dx8j197sxdqdabwvmirmkmwvbv2vssqwws114"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - binary - directory - shake - template-haskell - ]; - executableHaskellDepends = [ - base - shake - ]; - description = "Shake build system on-disk caching"; - license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - mainProgram = "ex.shake-persist"; - broken = true; - } - ) { }; - "shake-plus" = callPackage ( { mkDerivation, @@ -605926,88 +351020,6 @@ self: { ]; description = "Shake-based technical documentation generator; HTML & PDF"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "shaker" = callPackage ( - { - mkDerivation, - base, - bytestring, - Cabal, - containers, - directory, - filepath, - ghc, - ghc-paths, - haskeline, - haskell-src, - HUnit, - mtl, - old-time, - parsec3, - QuickCheck, - regex-posix, - template-haskell, - test-framework, - test-framework-hunit, - test-framework-quickcheck2, - }: - mkDerivation { - pname = "shaker"; - version = "0.5.1"; - sha256 = "1m4b7pvpr5mg6g5sc9xhnn7i9lx65vb3ass38zkyrfgksg65lwhf"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - bytestring - Cabal - containers - directory - filepath - ghc - ghc-paths - haskeline - haskell-src - HUnit - mtl - old-time - parsec3 - QuickCheck - regex-posix - template-haskell - test-framework - test-framework-hunit - test-framework-quickcheck2 - ]; - executableHaskellDepends = [ - base - bytestring - Cabal - containers - directory - filepath - ghc - ghc-paths - haskeline - haskell-src - HUnit - mtl - old-time - parsec3 - QuickCheck - regex-posix - template-haskell - test-framework - test-framework-hunit - test-framework-quickcheck2 - ]; - description = "simple and interactive command-line build tool"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "shaker"; } ) { }; @@ -606191,37 +351203,6 @@ self: { } ) { }; - "shakespeare-babel" = callPackage ( - { - mkDerivation, - base, - classy-prelude, - data-default, - directory, - process, - shakespeare, - template-haskell, - }: - mkDerivation { - pname = "shakespeare-babel"; - version = "0.2.0.0"; - sha256 = "1pvbrqxn4f0dsxnrrvpww0ranq9wr2ix74bhkw2n8x20hbrncgyg"; - libraryHaskellDepends = [ - base - classy-prelude - data-default - directory - process - shakespeare - template-haskell - ]; - description = "compile es2015"; - license = lib.licenses.publicDomain; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "shakespeare-css" = callPackage ( { mkDerivation, @@ -606282,35 +351263,6 @@ self: { } ) { }; - "shakespeare-sass" = callPackage ( - { - mkDerivation, - base, - hsass, - shakespeare, - template-haskell, - yesod, - yesod-core, - }: - mkDerivation { - pname = "shakespeare-sass"; - version = "0.1.4.1"; - sha256 = "0y4z898dkmkmvfv1lhsq5rgsda5dz6ginvp62hmshbml8yg8hps7"; - libraryHaskellDepends = [ - base - hsass - shakespeare - template-haskell - yesod - yesod-core - ]; - description = "SASS support for Shakespeare and Yesod"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "shakespeare-text" = callPackage ( { mkDerivation, @@ -606410,201 +351362,6 @@ self: { } ) { }; - "shapefile" = callPackage ( - { - mkDerivation, - base, - binary, - bytestring, - data-binary-ieee754, - dbf, - filepath, - rwlock, - }: - mkDerivation { - pname = "shapefile"; - version = "0.0.0.1"; - sha256 = "0j6c01igj767ab3pd5yzkjkd8374rmjr57f2gw5c69qnh288c6w6"; - libraryHaskellDepends = [ - base - binary - bytestring - data-binary-ieee754 - dbf - filepath - rwlock - ]; - description = "Parser and related tools for ESRI shapefile format"; - license = lib.licenses.publicDomain; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "shapely-data" = callPackage ( - { - mkDerivation, - base, - containers, - proxy-kindness, - QuickCheck, - tagged, - template-haskell, - }: - mkDerivation { - pname = "shapely-data"; - version = "0.1"; - sha256 = "1yn1rim4y6j834ngpz47wsi5pyhbi2gaznj0pyrqrmallzv0zin8"; - libraryHaskellDepends = [ - base - proxy-kindness - tagged - template-haskell - ]; - testHaskellDepends = [ - base - containers - proxy-kindness - QuickCheck - tagged - template-haskell - ]; - description = "Generics using @(,)@ and @Either@, with algebraic operations and typed conversions"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "shapes" = callPackage ( - { - mkDerivation, - array, - base, - containers, - criterion, - deepseq, - either, - ghc-prim, - hspec, - lens, - linear, - mtl, - QuickCheck, - shapes-math, - transformers, - vector, - vector-th-unbox, - }: - mkDerivation { - pname = "shapes"; - version = "0.1.0.0"; - sha256 = "0kfhw97y5a0vs75w0as6jwm0zxlkwkxar2a0afqrxlcplgwxvnpi"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - array - base - containers - deepseq - either - ghc-prim - lens - linear - mtl - shapes-math - transformers - vector - vector-th-unbox - ]; - executableHaskellDepends = [ - array - base - containers - criterion - deepseq - either - ghc-prim - lens - linear - mtl - shapes-math - transformers - vector - vector-th-unbox - ]; - testHaskellDepends = [ - array - base - containers - deepseq - either - ghc-prim - hspec - lens - linear - mtl - QuickCheck - shapes-math - transformers - vector - vector-th-unbox - ]; - description = "physics engine and other tools for 2D shapes"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "shapes-bench"; - broken = true; - } - ) { }; - - "shapes-demo" = callPackage ( - { - mkDerivation, - array, - base, - containers, - either, - ghc-prim, - lens, - linear, - monad-extras, - mtl, - sdl2, - shapes, - StateVar, - text, - transformers, - vector, - }: - mkDerivation { - pname = "shapes-demo"; - version = "0.1.0.0"; - sha256 = "0ks0wnp2g1fdqwka03rw71dkpxvb89fvilx2avrxsh2cg1g1lari"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - array - base - containers - either - ghc-prim - lens - linear - monad-extras - mtl - sdl2 - shapes - StateVar - text - transformers - vector - ]; - description = "demos for the 'shapes' package"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "shapes-demo"; - } - ) { }; - "shapes-math" = callPackage ( { mkDerivation, @@ -606662,72 +351419,6 @@ self: { } ) { }; - "shared-buffer" = callPackage ( - { - mkDerivation, - base, - bytestring, - QuickCheck, - test-framework, - test-framework-quickcheck2, - unix, - }: - mkDerivation { - pname = "shared-buffer"; - version = "0.2.2"; - sha256 = "031aabqynp5d4k47rjjwyx3xjzh4f1k4csfgdnnhsf45xv5nc3kc"; - libraryHaskellDepends = [ - base - bytestring - unix - ]; - testHaskellDepends = [ - base - bytestring - QuickCheck - test-framework - test-framework-quickcheck2 - unix - ]; - description = "A circular buffer built on shared memory"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "shared-fields" = callPackage ( - { - mkDerivation, - base, - Cabal, - hspec, - lens, - template-haskell, - text, - }: - mkDerivation { - pname = "shared-fields"; - version = "0.2.0.0"; - sha256 = "107n6w4dn0n4iv7qmfm1d9y04rgj3ab3qc8kyqqddnbnfa44y157"; - libraryHaskellDepends = [ - base - template-haskell - ]; - testHaskellDepends = [ - base - Cabal - hspec - lens - text - ]; - description = "a tiny library for using shared lens fields"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "shared-memory" = callPackage ( { mkDerivation, @@ -606765,39 +351456,6 @@ self: { } ) { }; - "she" = callPackage ( - { - mkDerivation, - base, - filepath, - mtl, - }: - mkDerivation { - pname = "she"; - version = "0.6"; - sha256 = "0x3jc2c4j0b8xavap7hj4673zb89zgww1pv13sddkn6p49pk1zvc"; - revision = "1"; - editedCabalFile = "0f3sdfkfr0asbqgbzlvqc1vpars535cris4i4acpznm4ahdhj6m8"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - filepath - mtl - ]; - executableHaskellDepends = [ - base - filepath - mtl - ]; - description = "A Haskell preprocessor adding miscellaneous features"; - license = lib.licenses.publicDomain; - hydraPlatforms = lib.platforms.none; - mainProgram = "she"; - broken = true; - } - ) { }; - "shebanger" = callPackage ( { mkDerivation, @@ -606828,177 +351486,70 @@ self: { isLibrary = true; isExecutable = true; setupHaskellDepends = [ - base - cabal-doctest - ]; - libraryHaskellDepends = [ - base - base64-bytestring - bytestring - containers - directory - filepath - from-sum - optparse-applicative - pretty-simple - process - text - time - unix - ]; - executableHaskellDepends = [ base ]; - testHaskellDepends = [ - base - doctest - QuickCheck - tasty - tasty-hunit - template-haskell - ]; - description = "Transform a shell script into a series of scripts with only shebang lines"; - license = lib.licenses.bsd3; - mainProgram = "shebanger"; - } - ) { }; - - "sheets" = callPackage ( - { - mkDerivation, - aeson, - base, - base64-bytestring, - bytestring, - cassava, - composite-base, - composite-cassava, - text, - vector, - }: - mkDerivation { - pname = "sheets"; - version = "0.1.0.0"; - sha256 = "0v7xii2sabpc61gy4jrym5cg6nzj6x3fl8iif6cfq7z5afk6ylyr"; - libraryHaskellDepends = [ - aeson - base - base64-bytestring - bytestring - cassava - composite-base - composite-cassava - text - vector - ]; - description = "Spreadsheet type for composite"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "shelduck" = callPackage ( - { - mkDerivation, - aeson, - aeson-pretty, - async, - base, - bytestring, - directory, - exceptions, - hastache, - hspec, - http-client, - lens, - lens-aeson, - mtl, - random, - regex-compat, - shelly, - Spock, - stm, - text, - time, - transformers, - unix, - unordered-containers, - uuid, - wreq, - yesod, - }: - mkDerivation { - pname = "shelduck"; - version = "0.2.0.0"; - sha256 = "1hgzj9qr90mbhxk0mx8y93jcad7srgxplvkmswxynidfaphvfqry"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson - aeson-pretty - async - base - bytestring - directory - exceptions - hastache - http-client - lens - lens-aeson - mtl - random - shelly - Spock - stm - text - time - transformers - unordered-containers - uuid - wreq - yesod + base + cabal-doctest ]; - executableHaskellDepends = [ - aeson - aeson-pretty - async + libraryHaskellDepends = [ base + base64-bytestring bytestring + containers directory - exceptions - hastache - http-client - lens - lens-aeson - mtl - random - shelly - Spock - stm + filepath + from-sum + optparse-applicative + pretty-simple + process text time - transformers unix - unordered-containers - uuid - wreq - yesod ]; + executableHaskellDepends = [ base ]; testHaskellDepends = [ + base + doctest + QuickCheck + tasty + tasty-hunit + template-haskell + ]; + description = "Transform a shell script into a series of scripts with only shebang lines"; + license = lib.licenses.bsd3; + mainProgram = "shebanger"; + } + ) { }; + + "sheets" = callPackage ( + { + mkDerivation, + aeson, + base, + base64-bytestring, + bytestring, + cassava, + composite-base, + composite-cassava, + text, + vector, + }: + mkDerivation { + pname = "sheets"; + version = "0.1.0.0"; + sha256 = "0v7xii2sabpc61gy4jrym5cg6nzj6x3fl8iif6cfq7z5afk6ylyr"; + libraryHaskellDepends = [ aeson base - hspec - http-client - lens - mtl - regex-compat - stm + base64-bytestring + bytestring + cassava + composite-base + composite-cassava text - transformers - wreq + vector ]; - description = "Test webhooks locally"; - license = lib.licenses.asl20; + description = "Spreadsheet type for composite"; + license = lib.licenses.bsd3; hydraPlatforms = lib.platforms.none; - mainProgram = "shelduck"; } ) { }; @@ -607110,24 +351661,6 @@ self: { } ) { }; - "shell-pipe" = callPackage ( - { mkDerivation, base }: - mkDerivation { - pname = "shell-pipe"; - version = "0.1"; - sha256 = "0xyarxm2hs8yypmz8w4zbnjvv5xl9dd657j7j3a82gbghsb93vyy"; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ base ]; - executableHaskellDepends = [ base ]; - description = "Pipe streams through external shell commands"; - license = "GPL"; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "shell-utility" = callPackage ( { mkDerivation, base }: mkDerivation { @@ -607205,112 +351738,6 @@ self: { } ) { }; - "shellish" = callPackage ( - { - mkDerivation, - base, - bytestring, - directory, - filepath, - mtl, - process, - strict, - time, - unix-compat, - }: - mkDerivation { - pname = "shellish"; - version = "0.1.4"; - sha256 = "1ldwid270mwyky6zmggbvn72hvs4s39hhf2zj8r0jahxnwlpbfan"; - libraryHaskellDepends = [ - base - bytestring - directory - filepath - mtl - process - strict - time - unix-compat - ]; - description = "shell-/perl- like (systems) programming in Haskell"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "shellmate" = callPackage ( - { - mkDerivation, - base, - bytestring, - directory, - filepath, - process, - temporary, - transformers, - unix, - }: - mkDerivation { - pname = "shellmate"; - version = "0.3.4.3"; - sha256 = "1cn3kh5rszyis2pqvh3s35zlchxwyf7vssd8md9z8vgqs6apd49r"; - libraryHaskellDepends = [ - base - bytestring - directory - filepath - process - temporary - transformers - unix - ]; - description = "Simple interface for shell scripting in Haskell"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "shellmate-extras" = callPackage ( - { - mkDerivation, - base, - bytestring, - feed, - http-conduit, - http-types, - mime-types, - shellmate, - tagsoup, - text, - utf8-string, - xml, - }: - mkDerivation { - pname = "shellmate-extras"; - version = "0.3.4.3"; - sha256 = "1aqc0bslqwrfr8b9nkk52n3fjw2b91gnn7pzzp24smm1cbm2x50d"; - libraryHaskellDepends = [ - base - bytestring - feed - http-conduit - http-types - mime-types - shellmate - tagsoup - text - utf8-string - xml - ]; - description = "Extra functionality for shellmate"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "shellmet" = callPackage ( { mkDerivation, @@ -607573,46 +352000,6 @@ self: { } ) { }; - "shentong" = callPackage ( - { - mkDerivation, - base, - bytestring, - hashmap, - mtl, - parallel, - text, - time, - uniplate, - unordered-containers, - vector, - }: - mkDerivation { - pname = "shentong"; - version = "0.3.2"; - sha256 = "0519wcb9pgyv3rwgw0qvvjr9s18wr1j4rhyxbv4vn4czv880ds43"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - bytestring - hashmap - mtl - parallel - text - time - uniplate - unordered-containers - vector - ]; - description = "A Haskell implementation of the Shen programming language"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "shen"; - broken = true; - } - ) { }; - "shh" = callPackage ( { mkDerivation, @@ -607809,46 +352196,6 @@ self: { } ) { }; - "shimmer" = callPackage ( - { - mkDerivation, - base, - bytestring, - containers, - filepath, - haskeline, - text, - }: - mkDerivation { - pname = "shimmer"; - version = "0.1.3.4"; - sha256 = "1py65pz0kmp8fh102gqy4zvmdppyhpdg8h185nbx15zx4qq60i1c"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - bytestring - containers - filepath - haskeline - text - ]; - executableHaskellDepends = [ - base - bytestring - containers - filepath - haskeline - text - ]; - description = "The Reflective Lambda Machine"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - mainProgram = "shimmer"; - broken = true; - } - ) { }; - "shine" = callPackage ( { mkDerivation, @@ -607880,163 +352227,6 @@ self: { } ) { ghcjs-prim = null; }; - "shine-examples" = callPackage ( - { mkDerivation }: - mkDerivation { - pname = "shine-examples"; - version = "0.1"; - sha256 = "1xnykm61gqsf127zksa8hs07z238vp67kx2rxvwqyjvkvbi5ik7m"; - isLibrary = false; - isExecutable = true; - description = "Examples for the shine package"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "shine-varying" = callPackage ( - { - mkDerivation, - base, - ghcjs-dom, - keycode, - shine, - varying, - }: - mkDerivation { - pname = "shine-varying"; - version = "0.1.0.0"; - sha256 = "13mnzf8i9y7ifn73mvsrzv0dh01vc20cymqli29j384z1491sc40"; - revision = "4"; - editedCabalFile = "1q46j41fxi8y52vzx7g18izndwrckcny56xdzyzrj5455znhwrsy"; - libraryHaskellDepends = [ - base - ghcjs-dom - keycode - shine - varying - ]; - testHaskellDepends = [ - base - ghcjs-dom - keycode - shine - varying - ]; - description = "FRP interface for shine using the varying package"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "shivers-cfg" = callPackage ( - { - mkDerivation, - base, - containers, - directory, - HPDF, - language-dot, - mtl, - pretty, - process, - }: - mkDerivation { - pname = "shivers-cfg"; - version = "0.1.1"; - sha256 = "1hb4fsglp7qvjscsbxh4372yg21zi7sdhaa362jzk63a1svxzx7c"; - libraryHaskellDepends = [ - base - containers - directory - HPDF - language-dot - mtl - pretty - process - ]; - description = "Implementation of Shivers' Control-Flow Analysis"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "shoap" = callPackage ( - { - mkDerivation, - base, - curl, - }: - mkDerivation { - pname = "shoap"; - version = "0.2"; - sha256 = "0ywb8bfkdpqqv2spb92j9rzx4fv5k1c7b65wj0zwnn9rp7ckq59v"; - libraryHaskellDepends = [ - base - curl - ]; - description = "A very basic SOAP package"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "shopify" = callPackage ( - { - mkDerivation, - aeson, - aeson-pretty, - attoparsec, - base, - base64-bytestring, - bytestring, - containers, - control-monad-exception, - http-conduit, - http-types, - lifted-base, - mtl, - resourcet, - safe, - text, - time, - unordered-containers, - vector, - }: - mkDerivation { - pname = "shopify"; - version = "0"; - sha256 = "17ws133ysx133jpacsivracys4rn9mj5ppfa1sr5gjbk6xzsi65h"; - libraryHaskellDepends = [ - aeson - aeson-pretty - attoparsec - base - base64-bytestring - bytestring - containers - control-monad-exception - http-conduit - http-types - lifted-base - mtl - resourcet - safe - text - time - unordered-containers - vector - ]; - description = "A haskell API binding for shopify.com"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "short-vec" = callPackage ( { mkDerivation, @@ -608258,27 +352448,6 @@ self: { } ) { }; - "shorten-strings" = callPackage ( - { - mkDerivation, - base, - text, - }: - mkDerivation { - pname = "shorten-strings"; - version = "0.1.0.1"; - sha256 = "1srqbc2kx1zn0xlzv94y7kqdrflmdck3jy6d2fl75zhf11wilxw3"; - libraryHaskellDepends = [ - base - text - ]; - description = "Shorten a variety of string-like types adding ellipsis"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "should-not-typecheck" = callPackage ( { mkDerivation, @@ -608370,84 +352539,6 @@ self: { } ) { }; - "show-prettyprint" = callPackage ( - { - mkDerivation, - ansi-wl-pprint, - base, - containers, - doctest, - prettyprinter, - trifecta, - }: - mkDerivation { - pname = "show-prettyprint"; - version = "0.3.0.1"; - sha256 = "030dzprz07ib41f8pg2409zdxymvkk8jq4m0vczvgaajq3gghkdk"; - revision = "1"; - editedCabalFile = "1sfspc1a5nhwap6mwx1wn75ar8csb2kx8r0rpampdrpk427idvzs"; - libraryHaskellDepends = [ - ansi-wl-pprint - base - prettyprinter - trifecta - ]; - testHaskellDepends = [ - base - containers - doctest - prettyprinter - trifecta - ]; - description = "Robust prettyprinter for output of auto-generated Show instances"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "show-type" = callPackage ( - { mkDerivation, base }: - mkDerivation { - pname = "show-type"; - version = "0.1.1"; - sha256 = "1sppi8vj1cg7gwz7vagc1cry22b814wlwbm6jjj1c4d5f4kmpyyv"; - libraryHaskellDepends = [ base ]; - description = "convert types into string values in haskell"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "showdown" = callPackage ( - { - mkDerivation, - base, - glade, - gtk, - random, - }: - mkDerivation { - pname = "showdown"; - version = "0.5.3"; - sha256 = "1gpjb8lw5zmnsd8ic739j91iqsv9a707nd9j5mbnhq6gilk61nrh"; - isLibrary = false; - isExecutable = true; - enableSeparateDataOutput = true; - executableHaskellDepends = [ - base - glade - gtk - random - ]; - description = "A simple gtk based Russian Roulette game"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "showdown"; - } - ) { }; - "shower" = callPackage ( { mkDerivation, @@ -608504,44 +352595,6 @@ self: { } ) { }; - "shpider" = callPackage ( - { - mkDerivation, - base, - bytestring, - containers, - curl, - mtl, - regex-posix, - tagsoup, - tagsoup-parsec, - time, - url, - web-encodings, - }: - mkDerivation { - pname = "shpider"; - version = "0.2.1.1"; - sha256 = "19741zlma2fp3jbfsmqgl0004bvfpizbjljg2k5xam1k4v144kwd"; - libraryHaskellDepends = [ - base - bytestring - containers - curl - mtl - regex-posix - tagsoup - tagsoup-parsec - time - url - web-encodings - ]; - description = "Web automation library in Haskell"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "shplit" = callPackage ( { mkDerivation, @@ -608591,58 +352644,6 @@ self: { } ) { }; - "shuffle" = callPackage ( - { - mkDerivation, - array, - base, - Cabal, - containers, - directory, - filepath, - network, - network-uri, - process, - uhc-util, - uuagc, - uuagc-cabal, - uulib, - }: - mkDerivation { - pname = "shuffle"; - version = "0.1.4.0"; - sha256 = "1xqppg8yi6rqfnd7j7qrw1j7qqnp3hhzrcdv6d2hzmrhfzgrnmic"; - isLibrary = true; - isExecutable = true; - setupHaskellDepends = [ - base - Cabal - uuagc - uuagc-cabal - ]; - libraryHaskellDepends = [ - array - base - Cabal - containers - directory - filepath - network - network-uri - process - uhc-util - uuagc - uuagc-cabal - uulib - ]; - executableHaskellDepends = [ base ]; - description = "Shuffle tool for UHC"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "shuffle"; - } - ) { }; - "shunya-library" = callPackage ( { mkDerivation, base }: mkDerivation { @@ -608667,75 +352668,6 @@ self: { } ) { }; - "shwifty" = callPackage ( - { - mkDerivation, - base, - bytestring, - case-insensitive, - containers, - mtl, - primitive, - template-haskell, - text, - th-abstraction, - time, - unordered-containers, - uuid-types, - vector, - }: - mkDerivation { - pname = "shwifty"; - version = "0.0.3.0"; - sha256 = "1cb30rc45p59clrjdwxm98vbpp7vmnp1r5z82iii46x9dapymmi8"; - libraryHaskellDepends = [ - base - bytestring - case-insensitive - containers - mtl - primitive - template-haskell - text - th-abstraction - time - unordered-containers - uuid-types - vector - ]; - description = "Generate swift types from haskell types"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "si-clock" = callPackage ( - { - mkDerivation, - base, - bytestring, - hsI2C, - time, - transformers, - }: - mkDerivation { - pname = "si-clock"; - version = "0.1.3.1"; - sha256 = "15fk63nynpk5wz9ikij18g5vnrslsrv97fn649dkssmsdwifjfj5"; - libraryHaskellDepends = [ - base - bytestring - hsI2C - time - transformers - ]; - description = "An interface to the Silicon Labs Si5351 clock chip"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "si-timers" = callPackage ( { mkDerivation, @@ -608778,72 +352710,6 @@ self: { } ) { }; - "sibe" = callPackage ( - { - mkDerivation, - base, - Chart, - Chart-cairo, - containers, - data-default-class, - deepseq, - directory, - hmatrix, - JuicyPixels, - lens, - random, - random-shuffle, - regex-base, - regex-pcre, - split, - stemmer, - text, - vector, - }: - mkDerivation { - pname = "sibe"; - version = "0.2.0.5"; - sha256 = "0sj4k0z3w18hwzfb32dnscidksj05awspvqdhx49j7ckbc155aic"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - Chart - Chart-cairo - containers - data-default-class - deepseq - hmatrix - lens - random - random-shuffle - regex-base - regex-pcre - split - stemmer - text - vector - ]; - executableHaskellDepends = [ - base - Chart - Chart-cairo - containers - data-default-class - directory - hmatrix - JuicyPixels - random - random-shuffle - split - vector - ]; - description = "Machine Learning algorithms"; - license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "sieve" = callPackage ( { mkDerivation, base }: mkDerivation { @@ -608856,127 +352722,6 @@ self: { } ) { }; - "sifflet" = callPackage ( - { - mkDerivation, - base, - Cabal, - cairo, - containers, - directory, - fgl, - filepath, - glib, - gtk, - HUnit, - hxt, - mtl, - parsec, - process, - text, - unix, - }: - mkDerivation { - pname = "sifflet"; - version = "2.3.0"; - sha256 = "1m0f5n2dz02mvd2hlsv3gdq8y4xqba7dmyqn2x123sbvm9yvj584"; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base - cairo - containers - directory - fgl - filepath - glib - gtk - hxt - mtl - parsec - process - text - unix - ]; - executableHaskellDepends = [ - base - unix - ]; - testHaskellDepends = [ - base - Cabal - cairo - containers - fgl - HUnit - parsec - process - ]; - description = "Simple, visual, functional language for learning about recursion"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "sifflet"; - broken = true; - } - ) { }; - - "sifflet-lib" = - callPackage - ( - { - mkDerivation, - base, - cairo, - containers, - directory, - fgl, - filepath, - gdk_x11, - glib, - gtk, - gtk_x11, - hxt, - mtl, - parsec, - process, - unix, - }: - mkDerivation { - pname = "sifflet-lib"; - version = "2.2.1"; - sha256 = "1snaq0vlsk4r2lbg2sk389ppwnz22mqwhf1lgwjh3cg91ab905n4"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base - cairo - containers - directory - fgl - filepath - glib - gtk - hxt - mtl - parsec - process - unix - ]; - librarySystemDepends = [ - gdk_x11 - gtk_x11 - ]; - description = "Library of modules shared by sifflet and its tests and its exporters"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) - { - gdk_x11 = null; - gtk_x11 = null; - }; - "siggy-chardust" = callPackage ( { mkDerivation, @@ -609011,47 +352756,6 @@ self: { } ) { }; - "sigma-ij" = callPackage ( - { - mkDerivation, - array, - base, - combinat, - containers, - optparse-applicative, - parsec2, - random, - time, - }: - mkDerivation { - pname = "sigma-ij"; - version = "0.2.0.2"; - sha256 = "06cs1abh2kb9ciq0va15zb56fhfkwdf3rx8c2700jrc1pf65m8vc"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - array - base - combinat - containers - optparse-applicative - parsec2 - random - time - ]; - executableHaskellDepends = [ - base - combinat - optparse-applicative - time - ]; - description = "Thom polynomials of second order Thom-Boardman singularities"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "sigma-ij"; - } - ) { }; - "sigmacord" = callPackage ( { mkDerivation, @@ -609349,77 +353053,6 @@ self: { } ) { }; - "signals" = callPackage ( - { - mkDerivation, - base, - containers, - hashable, - imperative-edsl-vhdl, - language-vhdl, - mtl, - observable-sharing, - operational-alacarte, - }: - mkDerivation { - pname = "signals"; - version = "0.2.0.2"; - sha256 = "1ap4iqmz2k7i0qspvijndxc0map1qrn1zgh0dnqyy84w9w54ph9d"; - libraryHaskellDepends = [ - base - containers - hashable - imperative-edsl-vhdl - language-vhdl - mtl - observable-sharing - operational-alacarte - ]; - description = "Synchronous signal processing for DSLs"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "signature" = callPackage ( - { - mkDerivation, - aeson, - base, - byteable, - bytestring, - case-insensitive, - cryptohash, - hexstring, - scientific, - text, - unordered-containers, - vector, - }: - mkDerivation { - pname = "signature"; - version = "0.1.1.0"; - sha256 = "0ciwxpmcdw5zn6005qpafx2q005bbyalr7zw22kj7grm95ffp5xq"; - libraryHaskellDepends = [ - aeson - base - byteable - bytestring - case-insensitive - cryptohash - hexstring - scientific - text - unordered-containers - vector - ]; - description = "Hmac sha256 signature json and http payload"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "signed-multiset" = callPackage ( { mkDerivation, @@ -609668,71 +353301,6 @@ self: { } ) { }; - "silvi" = callPackage ( - { - mkDerivation, - attoparsec, - base, - bytestring, - chronos, - http-types, - ip, - quantification, - savage, - text, - }: - mkDerivation { - pname = "silvi"; - version = "0.1.0"; - sha256 = "1sgx40fmlf3188j4bl647f8psvpf7xfbzzzilgicg3w49dwxxq2q"; - libraryHaskellDepends = [ - attoparsec - base - bytestring - chronos - http-types - ip - quantification - savage - text - ]; - testHaskellDepends = [ - base - quantification - savage - text - ]; - description = "A generator for different kinds of data"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "simd" = callPackage ( - { - mkDerivation, - base, - ghc-prim, - primitive, - vector, - }: - mkDerivation { - pname = "simd"; - version = "0.1.0.1"; - sha256 = "0rmp715k7k41h7nnfg3ik28pf602jvh5wb23yzbpz0j8vkfysn8m"; - libraryHaskellDepends = [ - base - ghc-prim - primitive - vector - ]; - description = "simple interface to GHC's SIMD instructions"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "simdutf" = callPackage ( { mkDerivation, @@ -609826,39 +353394,6 @@ self: { } ) { }; - "simgi" = callPackage ( - { - mkDerivation, - base, - containers, - haskell98, - mersenne-random-pure64, - mtl, - parsec, - random, - }: - mkDerivation { - pname = "simgi"; - version = "0.3"; - sha256 = "1yqd9799ys8y4n325mayq8qps99ajv1r4j8h6r16l5n94wvyw1ba"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - containers - haskell98 - mersenne-random-pure64 - mtl - parsec - random - ]; - description = "stochastic simulation engine"; - license = "GPL"; - hydraPlatforms = lib.platforms.none; - mainProgram = "simgi"; - } - ) { }; - "simple" = callPackage ( { mkDerivation, @@ -609960,33 +353495,6 @@ self: { } ) { }; - "simple-actors" = callPackage ( - { - mkDerivation, - base, - chan-split, - contravariant, - mtl, - transformers, - }: - mkDerivation { - pname = "simple-actors"; - version = "0.4.0"; - sha256 = "13xjyr6gf55yxinaah4c8fx56a9fyr191v4lwycnlkdz8vvizw25"; - libraryHaskellDepends = [ - base - chan-split - contravariant - mtl - transformers - ]; - description = "A library for more structured concurrent programming, based on the Actor Model"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "simple-affine-space" = callPackage ( { mkDerivation, @@ -610091,107 +353599,6 @@ self: { inherit (pkgs) mpfr; }; - "simple-atom" = callPackage ( - { - mkDerivation, - base, - containers, - deepseq, - }: - mkDerivation { - pname = "simple-atom"; - version = "0.2"; - sha256 = "1kqkaay3r03plxvvyan3hdgj2rfynygnisi6hrsjwqgj4nw6va17"; - libraryHaskellDepends = [ - base - containers - deepseq - ]; - description = "Atom (or symbol) datatype for fast comparision and sorting"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "simple-bluetooth" = callPackage ( - { - mkDerivation, - base, - bluetooth, - bytestring, - network, - }: - mkDerivation { - pname = "simple-bluetooth"; - version = "0.1.0.0"; - sha256 = "1qrlvqy2vcl36db3403nb1c0sx233d3vwxrbqb7jip13hy0h6jf4"; - libraryHaskellDepends = [ - base - bytestring - network - ]; - librarySystemDepends = [ bluetooth ]; - description = "Simple Bluetooth API for Windows and Linux (bluez)"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { bluetooth = null; }; - - "simple-c-value" = callPackage ( - { - mkDerivation, - base, - checkers, - DebugTraceHelpers, - derive, - dlist, - ghc-prim, - HUnit, - mtl, - QuickCheck, - template-haskell, - test-framework, - test-framework-hunit, - test-framework-quickcheck2, - tuple, - uniplate, - }: - mkDerivation { - pname = "simple-c-value"; - version = "0.0.0.1"; - sha256 = "0ky0yilcc54hx8sl11z4dl14n6k9wfz0w9bwv3pbgyi44ravr8gs"; - libraryHaskellDepends = [ - base - DebugTraceHelpers - dlist - ghc-prim - tuple - ]; - testHaskellDepends = [ - base - checkers - DebugTraceHelpers - derive - dlist - ghc-prim - HUnit - mtl - QuickCheck - template-haskell - test-framework - test-framework-hunit - test-framework-quickcheck2 - tuple - uniplate - ]; - description = "A simple C value type"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "simple-cabal" = callPackage ( { mkDerivation, @@ -610326,258 +353733,6 @@ self: { } ) { }; - "simple-conduit" = callPackage ( - { - mkDerivation, - base, - bifunctors, - bytestring, - CC-delcont, - chunked-data, - conduit, - conduit-combinators, - conduit-extra, - containers, - criterion, - either, - exceptions, - filepath, - foldl, - free, - hspec, - lifted-async, - lifted-base, - mmorph, - monad-control, - mono-traversable, - mtl, - mwc-random, - primitive, - QuickCheck, - semigroups, - stm, - streaming-commons, - text, - transformers, - transformers-base, - vector, - void, - }: - mkDerivation { - pname = "simple-conduit"; - version = "0.6.0"; - sha256 = "1zhl4k5h14fgak9nhz6rpn4lmky6higgj6hilzqr4685b9alci0q"; - libraryHaskellDepends = [ - base - bifunctors - bytestring - chunked-data - containers - either - exceptions - filepath - free - lifted-async - lifted-base - mmorph - monad-control - mono-traversable - mtl - mwc-random - primitive - semigroups - stm - streaming-commons - text - transformers - transformers-base - vector - ]; - benchmarkHaskellDepends = [ - base - bifunctors - bytestring - CC-delcont - chunked-data - conduit - conduit-combinators - conduit-extra - containers - criterion - either - exceptions - filepath - foldl - free - hspec - lifted-async - lifted-base - mmorph - monad-control - mono-traversable - mtl - mwc-random - primitive - QuickCheck - semigroups - stm - streaming-commons - text - transformers - transformers-base - vector - void - ]; - description = "A simple streaming I/O library based on monadic folds"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "simple-config" = callPackage ( - { - mkDerivation, - base, - bytestring, - data-default, - hspec, - network-uri, - parsec, - template-haskell, - transformers, - }: - mkDerivation { - pname = "simple-config"; - version = "1.2.2.1"; - sha256 = "1ndczlpqycrmyjm8v3gpsw1f946lfvc70kzmipli4ir9cbqh5d5k"; - libraryHaskellDepends = [ - base - bytestring - data-default - network-uri - parsec - template-haskell - transformers - ]; - testHaskellDepends = [ - base - hspec - ]; - description = "Simple config file parser generator"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "simple-css" = callPackage ( - { - mkDerivation, - base, - blaze-html, - hashable, - language-css, - unordered-containers, - }: - mkDerivation { - pname = "simple-css"; - version = "0.0.4"; - sha256 = "19a2yfp9gji7w5ps5lh8jwvnhma21d83v4fm2hrc92490fpq9aid"; - libraryHaskellDepends = [ - base - blaze-html - hashable - language-css - unordered-containers - ]; - description = "simple binding of css and html"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "simple-download" = callPackage ( - { - mkDerivation, - base, - conduit-combinators, - http-client, - http-conduit, - mtl, - transformers, - }: - mkDerivation { - pname = "simple-download"; - version = "0.0.2"; - sha256 = "1khgz6wljxzxsasvm20jinxyd59amw0izx50pfv12j5mbsszxajp"; - libraryHaskellDepends = [ - base - conduit-combinators - http-client - http-conduit - mtl - transformers - ]; - description = "A simple wrapper of http-conduit for file download"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "simple-effects" = callPackage ( - { - mkDerivation, - array, - async, - base, - bytestring, - criterion, - exceptions, - list-t, - monad-control, - MonadRandom, - mtl, - text, - transformers, - transformers-base, - }: - mkDerivation { - pname = "simple-effects"; - version = "0.13.0.0"; - sha256 = "14ik7rw9qszfq010g6c951r59g1gds3lpczsrqi4gq932s1rr4rn"; - revision = "1"; - editedCabalFile = "15zca24ldx643cyp1f7l5d69g3micqrha2sk5arz5xygxhas2yrm"; - libraryHaskellDepends = [ - array - async - base - bytestring - exceptions - list-t - monad-control - MonadRandom - mtl - text - transformers - transformers-base - ]; - testHaskellDepends = [ base ]; - benchmarkHaskellDepends = [ - base - criterion - mtl - transformers - ]; - description = "A simple effect system that integrates with MTL"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "simple-enumeration" = callPackage ( { mkDerivation, @@ -610604,38 +353759,6 @@ self: { } ) { }; - "simple-eval" = callPackage ( - { - mkDerivation, - base, - parsec, - text, - transformers, - }: - mkDerivation { - pname = "simple-eval"; - version = "0.1.0.1"; - sha256 = "185dgpfc7b1ayw0ajfdnf28fy1a87b3kqn4fh9y5l9krzlqs2lfl"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - parsec - text - transformers - ]; - executableHaskellDepends = [ - base - text - ]; - description = "Evaluate a Text to an Integer: \"1 + 1\" -> 2"; - license = lib.licenses.gpl2Only; - hydraPlatforms = lib.platforms.none; - mainProgram = "Eval"; - broken = true; - } - ) { }; - "simple-expr" = callPackage ( { mkDerivation, @@ -610679,96 +353802,6 @@ self: { } ) { }; - "simple-firewire" = callPackage ( - { - mkDerivation, - base, - bindings-dc1394, - CV, - }: - mkDerivation { - pname = "simple-firewire"; - version = "0.1.3.4"; - sha256 = "14fh3z3vqkmfgvgxja431ivm3lk1ksgrxaqjzz25wdc493j640ka"; - libraryHaskellDepends = [ - base - bindings-dc1394 - CV - ]; - description = "Simplified interface for firewire cameras"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "simple-form" = callPackage ( - { - mkDerivation, - base, - blaze-html, - digestive-functors, - email-validate, - network-uri, - old-locale, - text, - time, - transformers, - }: - mkDerivation { - pname = "simple-form"; - version = "0.5.0"; - sha256 = "01pqp7593vxf32fw18g7351qblj4lxvbgvs0psgb9aghsw3dss53"; - libraryHaskellDepends = [ - base - blaze-html - digestive-functors - email-validate - network-uri - old-locale - text - time - transformers - ]; - description = "Forms that configure themselves based on type"; - license = "unknown"; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "simple-genetic-algorithm" = callPackage ( - { - mkDerivation, - base, - deepseq, - parallel, - random, - }: - mkDerivation { - pname = "simple-genetic-algorithm"; - version = "0.2.0.0"; - sha256 = "14gy8bmkvv81zd1hmdzmmdzf4pspn4nymfpjx07jxcgm5isn49qi"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - parallel - random - ]; - executableHaskellDepends = [ - base - deepseq - parallel - random - ]; - description = "Simple parallel genetic algorithm implementation"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "ga-sin-example"; - broken = true; - } - ) { }; - "simple-genetic-algorithm-mr" = callPackage ( { mkDerivation, @@ -610831,117 +353864,6 @@ self: { } ) { }; - "simple-index" = callPackage ( - { - mkDerivation, - base, - containers, - hashable, - safecopy, - unordered-containers, - }: - mkDerivation { - pname = "simple-index"; - version = "0.1.0.1"; - sha256 = "0w5nqhabv1rdbgnjw5vgx6p19dhqiq6xn5ljld3s7ndfk8nfddgy"; - libraryHaskellDepends = [ - base - containers - hashable - safecopy - unordered-containers - ]; - description = "Allows simple indexation on any data type"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "simple-log" = callPackage ( - { - mkDerivation, - async, - base, - base-unicode-symbols, - containers, - data-default, - deepseq, - directory, - exceptions, - filepath, - hformat, - hspec, - microlens, - microlens-platform, - mmorph, - mtl, - SafeSemaphore, - text, - time, - transformers, - }: - mkDerivation { - pname = "simple-log"; - version = "0.9.12"; - sha256 = "1038asbw9yi1wz3di0ggx62nazljh9m07dvf3lmjrvj1k8i7842w"; - libraryHaskellDepends = [ - async - base - base-unicode-symbols - containers - data-default - deepseq - directory - exceptions - filepath - hformat - microlens - microlens-platform - mmorph - mtl - SafeSemaphore - text - time - transformers - ]; - testHaskellDepends = [ - base - hspec - microlens-platform - text - ]; - description = "Simple log for Haskell"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "simple-log-syslog" = callPackage ( - { - mkDerivation, - base, - hsyslog, - simple-log, - text, - }: - mkDerivation { - pname = "simple-log-syslog"; - version = "0.2.0"; - sha256 = "1619jsxgz5afmwhjcixg54i7dhh8jl29cmziifjrg60mm4rf2c34"; - libraryHaskellDepends = [ - base - hsyslog - simple-log - text - ]; - description = "Syslog backend for simple-log"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "simple-logger" = callPackage ( { mkDerivation, @@ -610967,69 +353889,6 @@ self: { } ) { }; - "simple-logging" = callPackage ( - { - mkDerivation, - aeson, - base, - bytestring, - directory, - exceptions, - filepath, - hscolour, - iso8601-time, - lens, - mtl, - simple-effects, - string-conv, - text, - time, - uuid, - vector, - }: - mkDerivation { - pname = "simple-logging"; - version = "0.2.0.5"; - sha256 = "1xli7ypsqbqv0yx58z0g7fbg5i83rkwwgv65hlx5cpfip4ks3qnn"; - libraryHaskellDepends = [ - aeson - base - bytestring - directory - exceptions - filepath - hscolour - iso8601-time - lens - mtl - simple-effects - string-conv - text - time - uuid - vector - ]; - testHaskellDepends = [ - aeson - base - bytestring - exceptions - hscolour - iso8601-time - lens - mtl - simple-effects - string-conv - text - time - vector - ]; - description = "Logging effect to plug into the simple-effects framework"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "simple-ltl" = callPackage ( { mkDerivation, @@ -611117,118 +353976,6 @@ self: { } ) { }; - "simple-money" = callPackage ( - { - mkDerivation, - base, - containers, - }: - mkDerivation { - pname = "simple-money"; - version = "0.2.0.1"; - sha256 = "0bhiqnk7nh2y4qk7zkbfygna7kcg0gwqy8a5m70dqxs3f34h3fwf"; - libraryHaskellDepends = [ - base - containers - ]; - description = "Simple library to handle and interexchange money"; - license = lib.licenses.publicDomain; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "simple-neural-networks" = callPackage ( - { - mkDerivation, - base, - containers, - deepseq, - parallel, - random, - split, - }: - mkDerivation { - pname = "simple-neural-networks"; - version = "0.2.0.1"; - sha256 = "07brvfs19qprbpiys38gw3ypkwyx8y31fdil3kkzc9gszvcfi7vy"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - containers - deepseq - parallel - random - split - ]; - executableHaskellDepends = [ - base - containers - deepseq - parallel - random - split - ]; - description = "Simple parallel neural networks implementation"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "simple-nix" = callPackage ( - { - mkDerivation, - base, - classy-prelude, - error-list, - hspec, - hspec-expectations, - MissingH, - mtl, - parsec, - system-filepath, - text, - text-render, - unordered-containers, - }: - mkDerivation { - pname = "simple-nix"; - version = "0.1.0.4"; - sha256 = "1kyarxkp9zdf6k1jpx9a5yjrjghbr52ranfzrbcnb8kdnzi0mh0f"; - libraryHaskellDepends = [ - base - classy-prelude - error-list - MissingH - mtl - parsec - system-filepath - text - text-render - unordered-containers - ]; - testHaskellDepends = [ - base - classy-prelude - error-list - hspec - hspec-expectations - MissingH - mtl - parsec - system-filepath - text - text-render - unordered-containers - ]; - description = "Simple parsing/pretty printing for Nix expressions"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "simple-observer" = callPackage ( { mkDerivation, base }: mkDerivation { @@ -611367,70 +354114,6 @@ self: { } ) { }; - "simple-pascal" = callPackage ( - { - mkDerivation, - base, - containers, - filepath, - mtl, - parsec, - simple-stacked-vm, - }: - mkDerivation { - pname = "simple-pascal"; - version = "0.1"; - sha256 = "1nrm52agsgr2gxljv14l7f713jvbfa99qnzkcni2s7777xc33dkk"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - containers - filepath - mtl - parsec - simple-stacked-vm - ]; - description = "Simplified Pascal language to SSVM compiler"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "spc"; - } - ) { }; - - "simple-pipe" = callPackage ( - { - mkDerivation, - base, - bytestring, - lifted-base, - monad-control, - monads-tf, - stm, - transformers-base, - }: - mkDerivation { - pname = "simple-pipe"; - version = "0.0.0.29"; - sha256 = "0ilc781520h1x65x3cqdzp2067g7rf7vdlnss8wsg2x1f5cxs6yh"; - revision = "1"; - editedCabalFile = "1bp8dwhympy43g43496vgp6dclbfjibdwgqsild681bn83yprsdz"; - libraryHaskellDepends = [ - base - bytestring - lifted-base - monad-control - monads-tf - stm - transformers-base - ]; - description = "simple pipeline library like conduit"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "simple-postgresql-orm" = callPackage ( { mkDerivation, @@ -611462,6 +354145,7 @@ self: { description = "Connector package for integrating postgresql-orm with the Simple web framework"; license = lib.licenses.lgpl3Only; hydraPlatforms = lib.platforms.none; + broken = true; } ) { }; @@ -611504,29 +354188,6 @@ self: { } ) { }; - "simple-rope" = callPackage ( - { - mkDerivation, - base, - bytestring, - QuickCheck, - }: - mkDerivation { - pname = "simple-rope"; - version = "0.1"; - sha256 = "187ghgn8nivvn5m8nsn0vrjh8mr6h7n6r1p1119gr4h3m2hpmrpl"; - libraryHaskellDepends = [ - base - bytestring - QuickCheck - ]; - description = "Memory-efficient strings with concatenation and splitting"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "simple-sendfile" = callPackage ( { mkDerivation, @@ -611573,39 +354234,6 @@ self: { } ) { }; - "simple-server" = callPackage ( - { - mkDerivation, - base, - bytestring, - concurrent-extra, - containers, - hashtables, - network, - time, - unbounded-delays, - }: - mkDerivation { - pname = "simple-server"; - version = "0.0.3"; - sha256 = "0qmqkcyikyjcfsq82w0i54ydizfnp72h0qfsbjw5qjizf4l3awcr"; - libraryHaskellDepends = [ - base - bytestring - concurrent-extra - containers - hashtables - network - time - unbounded-delays - ]; - description = "Simple Server interface"; - license = "GPL"; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "simple-session" = callPackage ( { mkDerivation, @@ -611774,83 +354402,6 @@ self: { } ) { }; - "simple-stacked-vm" = callPackage ( - { - mkDerivation, - array, - base, - binary-state, - containers, - filepath, - mtl, - parsec, - }: - mkDerivation { - pname = "simple-stacked-vm"; - version = "0.1.2"; - sha256 = "1y9zcwwhri56av1phcp8v8mby6kmv6fplxic892y6hyrbxzwy78q"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - array - base - binary-state - containers - filepath - mtl - parsec - ]; - description = "Simple stacked virtual machine: assembler, disassembler, bytecode interpreter"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "ssvm"; - broken = true; - } - ) { }; - - "simple-tabular" = callPackage ( - { mkDerivation, base }: - mkDerivation { - pname = "simple-tabular"; - version = "0.1.0.0"; - sha256 = "0p7rd8y6rhwg0ap6cib7l32bglvfkvbzg938pdwpb2ss6cv8b9zs"; - libraryHaskellDepends = [ base ]; - description = "Simple tabular-text formatter"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "simple-tar" = callPackage ( - { - mkDerivation, - base, - bytestring, - cereal, - containers, - filepath, - time, - }: - mkDerivation { - pname = "simple-tar"; - version = "0.5.1"; - sha256 = "0pqfvahhrjxxgimn2hvxns62yr4bi2izrpbriygvkgr791aa8gnm"; - libraryHaskellDepends = [ - base - bytestring - cereal - containers - filepath - time - ]; - description = "Simple, pure, file-system-free reading of tar files"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "simple-templates" = callPackage ( { mkDerivation, @@ -612024,33 +354575,6 @@ self: { } ) { }; - "simple-zipper" = callPackage ( - { - mkDerivation, - base, - hspec, - lens, - }: - mkDerivation { - pname = "simple-zipper"; - version = "0.1.0.0"; - sha256 = "1ai59qp617y4gvij602ykzc245w49mby2jag3r0rzr868v1vzzsy"; - libraryHaskellDepends = [ - base - lens - ]; - testHaskellDepends = [ - base - hspec - lens - ]; - description = "Zippers made slightly easier"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "simpleargs" = callPackage ( { mkDerivation, base }: mkDerivation { @@ -612068,106 +354592,6 @@ self: { } ) { }; - "simpleconfig" = callPackage ( - { - mkDerivation, - base, - containers, - either, - generic-deriving, - hspec, - lens, - text, - }: - mkDerivation { - pname = "simpleconfig"; - version = "0.0.10"; - sha256 = "0yrhgzwc138svs8p8pmlb1nbglhij3zi7228y32j9axzwmsszpg6"; - libraryHaskellDepends = [ - base - containers - either - lens - ]; - testHaskellDepends = [ - base - containers - either - generic-deriving - hspec - lens - text - ]; - description = "Short description of your package"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "simpleirc" = callPackage ( - { - mkDerivation, - base, - bytestring, - connection, - containers, - hspec, - HUnit, - knob, - network, - old-locale, - time, - }: - mkDerivation { - pname = "simpleirc"; - version = "0.3.1"; - sha256 = "1mwhqa5gby38hlbq0shjbff4whhblw00x8wksqbh47jd6i6ihww5"; - libraryHaskellDepends = [ - base - bytestring - connection - containers - network - old-locale - time - ]; - testHaskellDepends = [ - base - bytestring - hspec - HUnit - knob - ]; - description = "Simple IRC Library"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "simpleirc-lens" = callPackage ( - { - mkDerivation, - base, - bytestring, - simpleirc, - }: - mkDerivation { - pname = "simpleirc-lens"; - version = "0.2.0.0"; - sha256 = "1cmzln3lya1scz10c6p33aqwy7djivc1dm9qkpkbwp2c8adq02bw"; - libraryHaskellDepends = [ - base - bytestring - simpleirc - ]; - description = "Lenses for simpleirc types"; - license = lib.licenses.bsd2; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "simplelru" = callPackage ( { mkDerivation, base }: mkDerivation { @@ -612203,192 +354627,6 @@ self: { } ) { }; - "simplenote" = callPackage ( - { - mkDerivation, - base, - bytestring, - curl, - dataenc, - download-curl, - HTTP, - json, - time, - utf8-string, - }: - mkDerivation { - pname = "simplenote"; - version = "1.0"; - sha256 = "0kggnvbhvzrsqj387vqq2xpspk4xn3830k65g4cc642gmw4l803v"; - libraryHaskellDepends = [ - base - bytestring - curl - dataenc - download-curl - HTTP - json - time - utf8-string - ]; - description = "Haskell interface for the simplenote API"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "simpleprelude" = callPackage ( - { - mkDerivation, - base, - ghc-paths, - haskell-src-exts, - process, - uniplate, - }: - mkDerivation { - pname = "simpleprelude"; - version = "1.0.1.3"; - sha256 = "0qlhh9m455fh8w9hdzykgxbw699mkd926ar031j99dhimca2d4hj"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base ]; - executableHaskellDepends = [ - base - ghc-paths - haskell-src-exts - process - uniplate - ]; - description = "A simplified Haskell prelude for teaching"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "simplesmtpclient" = callPackage ( - { - mkDerivation, - array, - base, - directory, - network, - old-time, - }: - mkDerivation { - pname = "simplesmtpclient"; - version = "0.2"; - sha256 = "0z8g82222nvh3yhn8qisr8qqnsv02zxjyzs32qrcg2pshbd5mdj8"; - revision = "1"; - editedCabalFile = "09dd2d70jhkw3svsf4680f9250w4c7s9396w6dac2l2ypxxiq0p6"; - libraryHaskellDepends = [ - array - base - directory - network - old-time - ]; - description = "Very simple SMTP Client"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "simplessh" = callPackage ( - { - mkDerivation, - base, - bytestring, - libssh2, - mtl, - }: - mkDerivation { - pname = "simplessh"; - version = "0.2.0.6"; - sha256 = "1w67k70740dyrrp1k2xz5vbj6qm2smrq9g867z81dphwscqaknm3"; - libraryHaskellDepends = [ - base - bytestring - mtl - ]; - librarySystemDepends = [ libssh2 ]; - description = "Simple wrapper around libssh2"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { inherit (pkgs) libssh2; }; - - "simplest-sqlite" = callPackage ( - { - mkDerivation, - base, - bytestring, - exception-hierarchy, - sqlite, - template-haskell, - text, - }: - mkDerivation { - pname = "simplest-sqlite"; - version = "0.1.0.2"; - sha256 = "02ws0f4cf9mdbkadzp4val5kqiflgwskil71iq7mb90d41j1khmp"; - libraryHaskellDepends = [ - base - bytestring - exception-hierarchy - template-haskell - text - ]; - librarySystemDepends = [ sqlite ]; - description = "Simplest SQLite3 binding"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { inherit (pkgs) sqlite; }; - - "simplex" = callPackage ( - { - mkDerivation, - base, - directory, - filepath, - mtl, - process, - random, - regex-compat, - split, - time, - }: - mkDerivation { - pname = "simplex"; - version = "0.3.8"; - sha256 = "0z8ysg43dydij5l271ary8g5l26k0fvsymi99ycyjnl2ij1sg482"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - directory - filepath - mtl - process - random - regex-compat - split - time - ]; - description = "A simple markup language that translates to LaTeX"; - license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - mainProgram = "simplex"; - broken = true; - } - ) { }; - "simplex-basic" = callPackage ( { mkDerivation, @@ -612671,35 +354909,6 @@ self: { } ) { }; - "simplistic-generics" = callPackage ( - { - mkDerivation, - base, - containers, - deepseq, - kind-apply, - mtl, - template-haskell, - }: - mkDerivation { - pname = "simplistic-generics"; - version = "2.0.0"; - sha256 = "178sy401xh8g4a7gs0iiwpcgqb9nif8yaa7rsr0ryjkhi5xpbb6q"; - libraryHaskellDepends = [ - base - containers - deepseq - kind-apply - mtl - template-haskell - ]; - description = "Generic programming without too many type classes"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "simpoole" = callPackage ( { mkDerivation, @@ -612733,34 +354942,6 @@ self: { } ) { }; - "simseq" = callPackage ( - { - mkDerivation, - base, - bio, - bytestring, - random, - }: - mkDerivation { - pname = "simseq"; - version = "0.0"; - sha256 = "0i60ksi5xc0d0rg5xzhbdjv2f3b5jr6rl9khn9i2b1n9sh1lv36m"; - isLibrary = false; - isExecutable = true; - enableSeparateDataOutput = true; - executableHaskellDepends = [ - base - bio - bytestring - random - ]; - description = "Simulate sequencing with different models for priming and errors"; - license = "GPL"; - hydraPlatforms = lib.platforms.none; - mainProgram = "simseq"; - } - ) { }; - "simtreelo" = callPackage ( { mkDerivation, @@ -612938,28 +355119,6 @@ self: { } ) { }; - "singlethongs" = callPackage ( - { - mkDerivation, - base, - template-haskell, - }: - mkDerivation { - pname = "singlethongs"; - version = "0.1"; - sha256 = "14f7nnlw4hwvv767qgm6cb3ywijm9gyzjprr0i4ffa04r283mm3q"; - libraryHaskellDepends = [ - base - template-haskell - ]; - testHaskellDepends = [ base ]; - description = "Like singletons, but much smaller"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "singleton-bool" = callPackage ( { mkDerivation, @@ -612987,27 +355146,6 @@ self: { } ) { }; - "singleton-dict" = callPackage ( - { - mkDerivation, - base, - singletons, - }: - mkDerivation { - pname = "singleton-dict"; - version = "0.1.0.0"; - sha256 = "125mb6j4gf3qcgmvjf6zibnzl7sw8jcmrh60nig16ahk55cjczic"; - libraryHaskellDepends = [ - base - singletons - ]; - description = "Typelevel balanced search trees via a singletonized Data.Map"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "singleton-nats" = callPackage ( { mkDerivation, @@ -613031,20 +355169,6 @@ self: { } ) { }; - "singleton-typelits" = callPackage ( - { mkDerivation, base }: - mkDerivation { - pname = "singleton-typelits"; - version = "0.1.0.0"; - sha256 = "08xn7qv9kwhj9i69bpzigd76581rpq2jz410gmvr29g5ag1d0k08"; - libraryHaskellDepends = [ base ]; - description = "Singletons and induction over GHC TypeLits"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "singletons" = callPackage ( { mkDerivation, base }: mkDerivation { @@ -613328,80 +355452,6 @@ self: { } ) { }; - "singnal" = callPackage ( - { mkDerivation, base }: - mkDerivation { - pname = "singnal"; - version = "0.1.1.0"; - sha256 = "16f0grf63wgkaab64mmqhxwwk50pzzy354i3v23lzw7s5x0bk8sj"; - libraryHaskellDepends = [ base ]; - description = "Singnal"; - license = lib.licenses.agpl3Only; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "singular-factory" = callPackage ( - { - mkDerivation, - base, - containers, - directory, - filepath, - hgmp, - process, - QuickCheck, - random, - singular-factory, - tasty, - tasty-hunit, - tasty-quickcheck, - text, - }: - mkDerivation { - pname = "singular-factory"; - version = "0.1"; - sha256 = "0gz9p32y37ci7i1xnq4n086p1ql5nli84z15xyq6dl1jaz0f541r"; - libraryHaskellDepends = [ - base - containers - directory - filepath - hgmp - process - text - ]; - libraryPkgconfigDepends = [ singular-factory ]; - testHaskellDepends = [ - base - QuickCheck - random - tasty - tasty-hunit - tasty-quickcheck - ]; - description = "Multivariate polynomial factorization via bindings to Singular-factory"; - license = "GPL"; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { singular-factory = null; }; - - "sink" = callPackage ( - { mkDerivation, base }: - mkDerivation { - pname = "sink"; - version = "0.1.0.1"; - sha256 = "04ny9450h2mlw1j0gn6a1vvgwsk3gbhhzshqv2sbcg5pwkzkdrzp"; - libraryHaskellDepends = [ base ]; - description = "An alternative to lazy I/O that doesn't conflate execution with evaluation"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "sint" = callPackage ( { mkDerivation, @@ -613526,102 +355576,6 @@ self: { } ) { }; - "siren-json" = callPackage ( - { - mkDerivation, - aeson, - base, - bytestring, - containers, - hspec, - hspec-discover, - http-media, - http-types, - network-arbitrary, - network-uri, - network-uri-json, - QuickCheck, - quickcheck-instances, - test-invariant, - text, - unordered-containers, - }: - mkDerivation { - pname = "siren-json"; - version = "0.3.1.1"; - sha256 = "0idkblh14jz1l2miphb07lynpw8n1bshxf3q37chclc25wr156zk"; - libraryHaskellDepends = [ - aeson - base - bytestring - containers - http-media - http-types - network-uri - network-uri-json - text - unordered-containers - ]; - testHaskellDepends = [ - aeson - base - bytestring - containers - hspec - http-media - http-types - network-arbitrary - network-uri - network-uri-json - QuickCheck - quickcheck-instances - test-invariant - text - unordered-containers - ]; - testToolDepends = [ hspec-discover ]; - description = "Siren Tools for Haskell"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "sirkel" = callPackage ( - { - mkDerivation, - base, - binary, - bytestring, - containers, - hashtables, - haskell98, - random, - remote, - SHA, - transformers, - }: - mkDerivation { - pname = "sirkel"; - version = "0.1"; - sha256 = "0hhphhdvzcq9az5zriip7sgypfwbf5plx65s96nvrm2lznw4pzan"; - libraryHaskellDepends = [ - base - binary - bytestring - containers - hashtables - haskell98 - random - remote - SHA - transformers - ]; - description = "Sirkel, a Chord DHT"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "sitemap" = callPackage ( { mkDerivation, @@ -613781,80 +355735,6 @@ self: { } ) { }; - "sixfiguregroup" = callPackage ( - { - mkDerivation, - base, - digit, - directory, - doctest, - filepath, - lens, - parsec, - parsers, - QuickCheck, - template-haskell, - }: - mkDerivation { - pname = "sixfiguregroup"; - version = "0.0.1"; - sha256 = "1l0lgilcxfgrkgdaypkkrpqm8fgak8sq8qmr3pf5mld1vzi0v36r"; - libraryHaskellDepends = [ - base - digit - lens - parsers - ]; - testHaskellDepends = [ - base - directory - doctest - filepath - parsec - QuickCheck - template-haskell - ]; - description = "A six figure group of time"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "sixty-five-oh-two" = callPackage ( - { - mkDerivation, - base, - bytestring, - containers, - lens, - mtl, - }: - mkDerivation { - pname = "sixty-five-oh-two"; - version = "1.2.0.0"; - sha256 = "0xxx8k6zx8h2a3ddgic5k52nhzlxz8r7kkfmsyhaycwhkrgkfvsq"; - libraryHaskellDepends = [ - base - bytestring - containers - lens - mtl - ]; - testHaskellDepends = [ - base - bytestring - containers - lens - mtl - ]; - description = "An eDSL for writing 65(C)02 bytecode"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "size-based" = callPackage ( { mkDerivation, @@ -613864,217 +355744,84 @@ self: { testing-type-modifiers, }: mkDerivation { - pname = "size-based"; - version = "0.1.3.3"; - sha256 = "1xc31iy57v9hm97hhr26ws2wwsf56gczwnq7q8ckiy5pgw6fmr1g"; - revision = "1"; - editedCabalFile = "0idqj2k42anjwaq0zi6x7iz9jbwy6z3q1zjiml44v2ak21dswxga"; - libraryHaskellDepends = [ - base - dictionary-sharing - template-haskell - testing-type-modifiers - ]; - description = "Sized functors, for size-based enumerations"; - license = lib.licenses.bsd3; - } - ) { }; - - "sized" = callPackage ( - { - mkDerivation, - base, - constraints, - containers, - deepseq, - equational-reasoning, - ghc-typelits-knownnat, - ghc-typelits-presburger, - hashable, - inspection-testing, - lens, - mono-traversable, - primitive, - subcategories, - tasty, - tasty-inspection-testing, - template-haskell, - th-lift, - these, - type-natural, - vector, - }: - mkDerivation { - pname = "sized"; - version = "1.1.0.2"; - sha256 = "0644x908zr74bj98apbyr6368lmr9vya7hh6iyykswi6afh7967l"; - revision = "1"; - editedCabalFile = "1ggkqapilmj2chxncwnwqbsz807gy7pskak8ai3pqyc4jn4c44f1"; - libraryHaskellDepends = [ - base - constraints - containers - deepseq - equational-reasoning - ghc-typelits-knownnat - ghc-typelits-presburger - hashable - lens - mono-traversable - subcategories - these - type-natural - vector - ]; - testHaskellDepends = [ - base - containers - inspection-testing - mono-traversable - primitive - subcategories - tasty - tasty-inspection-testing - template-haskell - th-lift - type-natural - vector - ]; - description = "Sized sequence data-types"; - license = lib.licenses.bsd3; - } - ) { }; - - "sized-grid" = callPackage ( - { - mkDerivation, - adjunctions, - aeson, - ansi-terminal, - base, - comonad, - constraints, - distributive, - generics-sop, - HUnit, - lens, - markdown-unlit, - mtl, - QuickCheck, - random, - tasty, - tasty-hunit, - tasty-quickcheck, - vector, - vector-space, - }: - mkDerivation { - pname = "sized-grid"; - version = "0.2.0.1"; - sha256 = "15js3x76bz9p38bxk355kpp8aq0ns68yxqnc64bp956wqss69vgi"; - libraryHaskellDepends = [ - adjunctions - aeson - base - comonad - constraints - distributive - generics-sop - lens - mtl - random - vector - vector-space - ]; - testHaskellDepends = [ - adjunctions - aeson - ansi-terminal - base - comonad - distributive - generics-sop - HUnit - lens - markdown-unlit - QuickCheck - tasty - tasty-hunit - tasty-quickcheck - vector - vector-space - ]; - testToolDepends = [ markdown-unlit ]; - description = "Multidimensional grids with sized specified at compile time"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "sized-types" = callPackage ( - { - mkDerivation, - array, - base, - base-compat, - containers, - singletons, - }: - mkDerivation { - pname = "sized-types"; - version = "0.5.1"; - sha256 = "1nwr92gy8031f18w367ys0l27q4qvpkrkikbj03m93q2i7y74ry7"; - revision = "3"; - editedCabalFile = "0m0ylgwljblijmn3is5yhzz4zw80w36b7fy55yhygyz7k1jpxxzc"; - isLibrary = true; - isExecutable = true; + pname = "size-based"; + version = "0.1.3.3"; + sha256 = "1xc31iy57v9hm97hhr26ws2wwsf56gczwnq7q8ckiy5pgw6fmr1g"; + revision = "1"; + editedCabalFile = "0idqj2k42anjwaq0zi6x7iz9jbwy6z3q1zjiml44v2ak21dswxga"; libraryHaskellDepends = [ - array base - base-compat - containers - singletons + dictionary-sharing + template-haskell + testing-type-modifiers ]; - description = "Sized types in Haskell using the GHC Nat kind"; + description = "Sized functors, for size-based enumerations"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; } ) { }; - "sized-vector" = callPackage ( + "sized" = callPackage ( { mkDerivation, base, constraints, + containers, deepseq, equational-reasoning, + ghc-typelits-knownnat, + ghc-typelits-presburger, hashable, - monomorphic, - singletons, + inspection-testing, + lens, + mono-traversable, + primitive, + subcategories, + tasty, + tasty-inspection-testing, template-haskell, + th-lift, + these, type-natural, + vector, }: mkDerivation { - pname = "sized-vector"; - version = "1.4.3.1"; - sha256 = "0alnqqjhv5qn3sa5snzrwd8q88krnmdaqi0h11f2qdlv4l1gqga3"; + pname = "sized"; + version = "1.1.0.2"; + sha256 = "0644x908zr74bj98apbyr6368lmr9vya7hh6iyykswi6afh7967l"; + revision = "1"; + editedCabalFile = "1ggkqapilmj2chxncwnwqbsz807gy7pskak8ai3pqyc4jn4c44f1"; libraryHaskellDepends = [ base constraints + containers deepseq equational-reasoning + ghc-typelits-knownnat + ghc-typelits-presburger hashable - monomorphic - singletons + lens + mono-traversable + subcategories + these + type-natural + vector + ]; + testHaskellDepends = [ + base + containers + inspection-testing + mono-traversable + primitive + subcategories + tasty + tasty-inspection-testing template-haskell + th-lift type-natural + vector ]; - description = "Size-parameterized vector types and functions"; + description = "Sized sequence data-types"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; } ) { }; @@ -614224,50 +355971,6 @@ self: { } ) { }; - "sjsp" = callPackage ( - { - mkDerivation, - alex, - base, - blaze-builder, - bytestring, - filepath, - ghc-prim, - happy, - language-javascript, - syb, - unordered-containers, - }: - mkDerivation { - pname = "sjsp"; - version = "0.1.0"; - sha256 = "0x76hrzm0ikijsf5n425bagzin2x463mcmlnjqvinrb6ni47f4bl"; - revision = "1"; - editedCabalFile = "09yp9m4pqqzhqd1232l45b3y2s0svkr8bi4jsbibmhdj1l8017ih"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - blaze-builder - bytestring - filepath - ghc-prim - language-javascript - syb - unordered-containers - ]; - executableToolDepends = [ - alex - happy - ]; - description = "Simple JavaScript Profiler"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - mainProgram = "sjsp"; - broken = true; - } - ) { }; - "skein" = callPackage ( { mkDerivation, @@ -614304,46 +356007,6 @@ self: { } ) { }; - "skeletal-set" = callPackage ( - { - mkDerivation, - base, - containers, - mtl, - smallcheck, - tasty, - tasty-discover, - tasty-hunit, - tasty-quickcheck, - tasty-smallcheck, - }: - mkDerivation { - pname = "skeletal-set"; - version = "0.1.0.0"; - sha256 = "0f8mc705bk6nc6l95y65fvcxi772fwvqy3cgm0sb3rv13h4rn468"; - libraryHaskellDepends = [ - base - containers - ]; - testHaskellDepends = [ - base - containers - mtl - smallcheck - tasty - tasty-discover - tasty-hunit - tasty-quickcheck - tasty-smallcheck - ]; - testToolDepends = [ tasty-discover ]; - description = "Skeletal set - a set with equivalence relation different from equality"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "skeletest" = callPackage ( { mkDerivation, @@ -614418,151 +356081,6 @@ self: { } ) { }; - "skeleton" = callPackage ( - { - mkDerivation, - argparser, - attoparsec, - base, - bytestring, - filepath, - hex, - posix-escape, - process, - time, - }: - mkDerivation { - pname = "skeleton"; - version = "0.1.0.0"; - sha256 = "10bcw4l4w7myrbpmalg4mvpcyzbrnr8dafsplxkjlb6bnhc33scb"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - argparser - attoparsec - base - bytestring - filepath - hex - posix-escape - process - time - ]; - description = "a tool to access the OSX keychain"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - mainProgram = "skeleton"; - } - ) { }; - - "skeletons" = callPackage ( - { - mkDerivation, - ansi-wl-pprint, - base, - containers, - directory, - filepath, - text, - tinytemplate, - transformers, - transformers-compat, - }: - mkDerivation { - pname = "skeletons"; - version = "0.4.0"; - sha256 = "1imwdzgrpg2v8nn1c49f5lqs8kd5nj02jidrjjkk850k15fh9m9x"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - ansi-wl-pprint - base - containers - directory - filepath - text - tinytemplate - transformers - transformers-compat - ]; - description = "Manage project skeletons"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - mainProgram = "skeletons"; - } - ) { }; - - "skell" = callPackage ( - { - mkDerivation, - base, - blaze-html, - bytestring, - containers, - http-types, - text, - wai, - }: - mkDerivation { - pname = "skell"; - version = "0.1.0.0"; - sha256 = "0lnlqcw5slv5gshdq35il16pm57fh07hkd7zx95gfxx1aipyr4lp"; - libraryHaskellDepends = [ - base - blaze-html - bytestring - containers - http-types - text - wai - ]; - description = "An overly complex Haskell web framework"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "skemmtun" = callPackage ( - { - mkDerivation, - base, - bytestring, - data-default, - http-client, - http-types, - lens, - text, - time, - wreq, - xml-conduit, - }: - mkDerivation { - pname = "skemmtun"; - version = "0.1.0.0"; - sha256 = "04bcmfx2l7si6973kp6zdzzqfcqs52kj066w327qfhcpaqz0c0ln"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - bytestring - data-default - http-client - http-types - lens - text - time - wreq - xml-conduit - ]; - description = "A MyAnimeList.net client."; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - mainProgram = "mal"; - broken = true; - } - ) { }; - "sketch-frp-copilot" = callPackage ( { mkDerivation, @@ -614769,74 +356287,6 @@ self: { } ) { }; - "skulk" = callPackage ( - { - mkDerivation, - base, - hspec, - QuickCheck, - }: - mkDerivation { - pname = "skulk"; - version = "0.1.3.0"; - sha256 = "1afqqj89i2jg3ix1zw50r35vjrk8dfjv7am39zcir2cqx4r3srar"; - libraryHaskellDepends = [ base ]; - testHaskellDepends = [ - base - hspec - QuickCheck - ]; - description = "Eclectic collection of utility functions"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "skylark-client" = callPackage ( - { - mkDerivation, - base, - conduit, - conduit-extra, - http-conduit, - http-types, - lifted-async, - optparse-generic, - preamble, - shakers, - stm, - stm-conduit, - }: - mkDerivation { - pname = "skylark-client"; - version = "0.1.7"; - sha256 = "18mxisr9p9x027w2vi7w8aqrcxia0jdcdr5y934f848k4wv1h2h7"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - conduit - http-conduit - http-types - lifted-async - preamble - stm - stm-conduit - ]; - executableHaskellDepends = [ - base - conduit-extra - optparse-generic - preamble - shakers - ]; - description = "Skylark client"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "skylighting" = callPackage ( { mkDerivation, @@ -615303,47 +356753,6 @@ self: { } ) { }; - "skype4hs" = callPackage ( - { - mkDerivation, - attoparsec, - base, - bytestring, - lifted-base, - monad-control, - mtl, - stm, - text, - time, - transformers-base, - word8, - X11, - }: - mkDerivation { - pname = "skype4hs"; - version = "0.0.0.0"; - sha256 = "0mrd63yfmxxmv3l5v5i01rh4lyl831pfb06k9bxvc6m5q88fxglp"; - libraryHaskellDepends = [ - attoparsec - base - bytestring - lifted-base - monad-control - mtl - stm - text - time - transformers-base - word8 - X11 - ]; - description = "Skype Desktop API binding for Haskell"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "skypelogexport" = callPackage ( { mkDerivation, @@ -615495,248 +356904,6 @@ self: { } ) { }; - "slack" = callPackage ( - { - mkDerivation, - aeson, - base, - containers, - either, - http-conduit, - mtl, - old-locale, - text, - time, - transformers, - }: - mkDerivation { - pname = "slack"; - version = "0.1.0.0"; - sha256 = "0sqi4g8wavxdd98cnv869qx2p9g77f6dznxlfmgv1jlvd4a1ya67"; - libraryHaskellDepends = [ - aeson - base - containers - either - http-conduit - mtl - old-locale - text - time - transformers - ]; - description = "Haskell API for interacting with Slack"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "slack-api" = callPackage ( - { - mkDerivation, - aeson, - base, - bytestring, - containers, - errors, - hashable, - io-streams, - lens, - lens-aeson, - monad-loops, - mtl, - network, - network-uri, - text, - time, - time-locale-compat, - tls, - transformers, - websockets, - wreq, - wuss, - }: - mkDerivation { - pname = "slack-api"; - version = "0.12"; - sha256 = "0dmwq9sywilqp524j503icvxrmkd646f3fg02h304ymnpqydwp4v"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson - base - bytestring - containers - errors - hashable - io-streams - lens - lens-aeson - monad-loops - mtl - network - network-uri - text - time - time-locale-compat - tls - transformers - websockets - wreq - wuss - ]; - executableHaskellDepends = [ - base - lens - mtl - text - ]; - testHaskellDepends = [ base ]; - description = "Bindings to the Slack RTM API"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "slack-notify-haskell" = callPackage ( - { - mkDerivation, - base, - bytestring, - containers, - HTTP, - http-client, - http-client-tls, - network, - text, - }: - mkDerivation { - pname = "slack-notify-haskell"; - version = "0.2.3"; - sha256 = "0sz05v40b78qdpz8cqpnblhjy4dxqsz5175hq5083j7iv3xi3kc7"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - bytestring - containers - HTTP - http-client - http-client-tls - network - text - ]; - executableHaskellDepends = [ base ]; - description = "Slack notifier for Haskell project"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - mainProgram = "example"; - broken = true; - } - ) { }; - - "slack-progressbar" = callPackage ( - { - mkDerivation, - aeson, - base, - bytestring, - interpolate, - lens, - lens-aeson, - mtl, - network-uri, - text, - transformers, - wreq, - }: - mkDerivation { - pname = "slack-progressbar"; - version = "0.1.0.1"; - sha256 = "12iy8d0mvk0gcs65pb797qm9kx7d9wpa5gdkg4mvb4r13vqb5x9d"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson - base - bytestring - interpolate - lens - lens-aeson - mtl - network-uri - text - transformers - wreq - ]; - executableHaskellDepends = [ - aeson - base - bytestring - interpolate - lens - lens-aeson - mtl - network-uri - text - transformers - wreq - ]; - testHaskellDepends = [ - aeson - base - bytestring - interpolate - lens - lens-aeson - mtl - network-uri - text - transformers - wreq - ]; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - mainProgram = "slack-progressbar-exe"; - broken = true; - } - ) { }; - - "slack-verify" = callPackage ( - { - mkDerivation, - base, - base16-bytestring, - bytestring, - cryptonite, - hspec, - }: - mkDerivation { - pname = "slack-verify"; - version = "0.1.0.0"; - sha256 = "0rkanwf4q9mlhsxmxhpnn5svnrz0hkd9iw4yczjidm5mb0xrdqs1"; - libraryHaskellDepends = [ - base - base16-bytestring - bytestring - cryptonite - ]; - testHaskellDepends = [ - base - base16-bytestring - bytestring - cryptonite - hspec - ]; - description = "Slack API Request Verification HMAC"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "slack-web" = callPackage ( { mkDerivation, @@ -615850,61 +357017,6 @@ self: { } ) { }; - "slate" = callPackage ( - { - mkDerivation, - base, - directory, - filepath, - htoml, - optparse-applicative, - process, - string-conversions, - unordered-containers, - }: - mkDerivation { - pname = "slate"; - version = "0.13.1.0"; - sha256 = "08d6i7dacfcgsc4iijhs4sbkfhy720hk3m0v9d1gwg5ycjys1qdr"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - directory - filepath - htoml - optparse-applicative - process - string-conversions - unordered-containers - ]; - executableHaskellDepends = [ - base - directory - filepath - htoml - optparse-applicative - process - string-conversions - unordered-containers - ]; - testHaskellDepends = [ - base - directory - filepath - htoml - optparse-applicative - process - string-conversions - unordered-containers - ]; - description = "A note taking CLI tool"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - mainProgram = "slate"; - } - ) { }; - "slave-thread" = callPackage ( { mkDerivation, @@ -616000,64 +357112,6 @@ self: { } ) { }; - "sliceofpy" = callPackage ( - { - mkDerivation, - base, - bytestring, - containers, - lens, - process, - split, - tasty, - tasty-hspec, - template-haskell, - text, - }: - mkDerivation { - pname = "sliceofpy"; - version = "1.0.0"; - sha256 = "0jc6abvgyrljyvzxw3v3nhxzqw3fjh2r51xag2v2xg3zb9qx8fra"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - bytestring - lens - process - split - template-haskell - text - ]; - executableHaskellDepends = [ - base - bytestring - lens - process - split - template-haskell - text - ]; - testHaskellDepends = [ - base - bytestring - containers - lens - process - split - tasty - tasty-hspec - template-haskell - text - ]; - description = "Python-ish slicing traversals for Haskell"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "gen-sliceofpy-examples"; - broken = true; - } - ) { }; - "slick" = callPackage ( { mkDerivation, @@ -616093,123 +357147,6 @@ self: { } ) { }; - "slidemews" = callPackage ( - { - mkDerivation, - aeson, - base, - bytestring, - MonadCatchIO-transformers, - mtl, - pandoc, - snap-core, - snap-server, - utf8-string, - }: - mkDerivation { - pname = "slidemews"; - version = "0.3"; - sha256 = "0x6blvdqwf9sqspwj48drasizx1pb1i92a0lp06szwa2nszdvzf0"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - aeson - base - bytestring - MonadCatchIO-transformers - mtl - pandoc - snap-core - snap-server - utf8-string - ]; - description = "ws convert markdown to reveal-js"; - license = "GPL"; - hydraPlatforms = lib.platforms.none; - mainProgram = "slidemews"; - broken = true; - } - ) { }; - - "slim" = callPackage ( - { - mkDerivation, - base, - containers, - hspec, - mtl, - pretty, - transformers, - }: - mkDerivation { - pname = "slim"; - version = "0.0.1"; - sha256 = "1f3zfibb4as9faw27si4wsay40yidzpj0r15fhmqgrci048xnday"; - libraryHaskellDepends = [ - base - containers - mtl - pretty - transformers - ]; - testHaskellDepends = [ - base - hspec - ]; - description = "Functional reactive user interface programming"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "slip32" = callPackage ( - { - mkDerivation, - base, - base16-bytestring, - bech32, - binary, - bip32, - bitcoin-keys, - bytestring, - hedgehog, - tasty, - tasty-hedgehog, - tasty-hunit, - text, - }: - mkDerivation { - pname = "slip32"; - version = "0.2.1"; - sha256 = "00ivmrdw79n543s7rb1bzpp9xn6i1gys8zbad20lams20f7a01fa"; - libraryHaskellDepends = [ - base - bech32 - binary - bip32 - bitcoin-keys - bytestring - text - ]; - testHaskellDepends = [ - base - base16-bytestring - bip32 - bitcoin-keys - bytestring - hedgehog - tasty - tasty-hedgehog - tasty-hunit - text - ]; - description = "SLIP-0032: Extended serialization format for BIP-32 wallets"; - license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "slist" = callPackage ( { mkDerivation, @@ -616244,62 +357181,6 @@ self: { } ) { }; - "sloane" = callPackage ( - { - mkDerivation, - aeson, - ansi-terminal, - attoparsec, - base, - bloomfilter, - bytestring, - conduit, - conduit-extra, - containers, - directory, - filepath, - http-conduit, - http-types, - optparse-applicative, - resourcet, - stringsearch, - text, - transformers, - }: - mkDerivation { - pname = "sloane"; - version = "5.0.1"; - sha256 = "14ffww6vfyv32nr1i17x8c8nc3y583yhza2dy6g6cfphcjw0zwf2"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - aeson - ansi-terminal - attoparsec - base - bloomfilter - bytestring - conduit - conduit-extra - containers - directory - filepath - http-conduit - http-types - optparse-applicative - resourcet - stringsearch - text - transformers - ]; - description = "A command line interface to Sloane's OEIS"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "sloane"; - broken = true; - } - ) { }; - "slope-field" = callPackage ( { mkDerivation, @@ -616336,60 +357217,6 @@ self: { } ) { }; - "slot-lambda" = callPackage ( - { - mkDerivation, - base, - containers, - haskell-src-exts, - haskell-src-meta, - syb, - template-haskell, - vector, - }: - mkDerivation { - pname = "slot-lambda"; - version = "0.1.0.3"; - sha256 = "1npin7yaharbi5nzwksj1j7rf2k1nvmr1jgcf2xpnvvbcga7l69i"; - libraryHaskellDepends = [ - base - containers - haskell-src-exts - haskell-src-meta - syb - template-haskell - vector - ]; - description = "Write lambdas without naming the parameters"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "sloth" = callPackage ( - { - mkDerivation, - base, - mtl, - process, - }: - mkDerivation { - pname = "sloth"; - version = "0.0.2"; - sha256 = "0x3iw1mqbl3q723kkxr6b0i1hxcfb4sink4kmg6xnpzd3hwaspq9"; - libraryHaskellDepends = [ - base - mtl - process - ]; - description = "Testing for minimal strictness"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "slotmap" = callPackage ( { mkDerivation, @@ -616418,51 +357245,6 @@ self: { } ) { }; - "slug" = callPackage ( - { - mkDerivation, - aeson, - base, - exceptions, - hspec, - http-api-data, - path-pieces, - persistent, - QuickCheck, - text, - }: - mkDerivation { - pname = "slug"; - version = "0.1.7"; - sha256 = "1pkxcb2ip4mb6szmqz3g7m3m8qfrvknjr5ii0wnd0icbzm1q4vyp"; - revision = "4"; - editedCabalFile = "18h2wl2a3bb9094yq9dp6sjschb75ki4zlp1vrfzkpsrwb4v3ndr"; - libraryHaskellDepends = [ - aeson - base - exceptions - http-api-data - path-pieces - persistent - QuickCheck - text - ]; - testHaskellDepends = [ - base - exceptions - hspec - http-api-data - path-pieces - QuickCheck - text - ]; - description = "Type-safe slugs for Yesod ecosystem"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "slugger" = callPackage ( { mkDerivation, @@ -616663,82 +357445,6 @@ self: { } ) { }; - "smallarray" = callPackage ( - { - mkDerivation, - base, - bytestring, - deepseq, - hashable, - }: - mkDerivation { - pname = "smallarray"; - version = "0.2.2.4"; - sha256 = "16fgxsg8grxhqx6d4s3mm89qbkw2k72qvr4r701ih1i8gmf1ms1z"; - libraryHaskellDepends = [ - base - bytestring - deepseq - hashable - ]; - description = "low-level unboxed arrays, with minimal features"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "smallcaps" = callPackage ( - { - mkDerivation, - attoparsec, - base, - containers, - data-default, - directory, - filepath, - parsec, - text, - transformers, - }: - mkDerivation { - pname = "smallcaps"; - version = "0.6.0.6"; - sha256 = "10853yxysjzv3nq2z4p0klqz2jakcdknbwmdfvppzp604v7ip4jm"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - attoparsec - base - containers - data-default - directory - filepath - parsec - text - transformers - ]; - executableHaskellDepends = [ - base - containers - data-default - text - ]; - testHaskellDepends = [ - attoparsec - base - containers - data-default - parsec - text - ]; - description = "Flatten camel case text in LaTeX files"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "smallcheck" = callPackage ( { mkDerivation, @@ -616762,85 +357468,6 @@ self: { } ) { }; - "smallcheck-kind-generics" = callPackage ( - { - mkDerivation, - base, - gauge, - kind-generics, - kind-generics-th, - smallcheck, - }: - mkDerivation { - pname = "smallcheck-kind-generics"; - version = "0.0.0.1"; - sha256 = "08g6xa7gp55b1cmg8ys18qm5lxn7fdhl360rrsznfzfylihfp0dn"; - libraryHaskellDepends = [ - base - kind-generics - kind-generics-th - smallcheck - ]; - testHaskellDepends = [ base ]; - benchmarkHaskellDepends = [ - base - gauge - ]; - description = "See README for more info"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "smallcheck-laws" = callPackage ( - { - mkDerivation, - base, - smallcheck, - smallcheck-series, - }: - mkDerivation { - pname = "smallcheck-laws"; - version = "0.3"; - sha256 = "1jyn1bsn78jsnf5lzscvqzbf68ljf82vclq0k9aba58r2dayxn47"; - libraryHaskellDepends = [ - base - smallcheck - smallcheck-series - ]; - description = "SmallCheck properties for common laws"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "smallcheck-lens" = callPackage ( - { - mkDerivation, - base, - lens, - smallcheck, - smallcheck-series, - transformers, - }: - mkDerivation { - pname = "smallcheck-lens"; - version = "0.3"; - sha256 = "1vqqg127v81zscs32y2a6lbs943j3j0v293f6xgk3w1lfndia8q1"; - libraryHaskellDepends = [ - base - lens - smallcheck - smallcheck-series - transformers - ]; - description = "SmallCheck properties for lens"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "smallcheck-series" = callPackage ( { mkDerivation, @@ -616886,60 +357513,6 @@ self: { } ) { }; - "smallpt-hs" = callPackage ( - { - mkDerivation, - base, - vector, - }: - mkDerivation { - pname = "smallpt-hs"; - version = "0.1"; - sha256 = "1g4g2sgj39pkm3ll4yv0q9dcmq2lyd26qkr1gir1svmxs6hdwp59"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - vector - ]; - description = "A Haskell port of the smallpt path tracer"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "smallpt-hs"; - broken = true; - } - ) { }; - - "smallstring" = callPackage ( - { - mkDerivation, - base, - bytestring, - deepseq, - hashable, - smallarray, - text, - utf8-string, - }: - mkDerivation { - pname = "smallstring"; - version = "0.3.3"; - sha256 = "1wkgbnknx9k56ikl6hpv91r9sav8v5qvl2w7z2jadgrlj29fy755"; - libraryHaskellDepends = [ - base - bytestring - deepseq - hashable - smallarray - text - utf8-string - ]; - description = "A Unicode text type, optimized for low memory overhead"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "smaoin" = callPackage ( { mkDerivation, @@ -616973,175 +357546,6 @@ self: { } ) { }; - "smap" = callPackage ( - { - mkDerivation, - attoparsec, - base, - bytestring, - hashable, - memory, - mmorph, - optparse-applicative, - resourcet, - streaming, - streaming-bytestring, - strict, - text, - transformers, - unordered-containers, - }: - mkDerivation { - pname = "smap"; - version = "0.3.3"; - sha256 = "17qdn1ag4pdizgdng1747jdpad6xca208w7633pw24j5nkfy72dx"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - attoparsec - base - bytestring - hashable - memory - mmorph - optparse-applicative - resourcet - streaming - streaming-bytestring - strict - text - transformers - unordered-containers - ]; - executableHaskellDepends = [ - attoparsec - base - bytestring - hashable - memory - mmorph - optparse-applicative - resourcet - streaming - streaming-bytestring - strict - text - transformers - unordered-containers - ]; - testHaskellDepends = [ - attoparsec - base - bytestring - hashable - memory - mmorph - optparse-applicative - resourcet - streaming - streaming-bytestring - strict - text - transformers - unordered-containers - ]; - description = "A command line tool for working with sets and maps"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "smap"; - broken = true; - } - ) { }; - - "smartGroup" = callPackage ( - { - mkDerivation, - base, - bytestring, - containers, - template-haskell, - }: - mkDerivation { - pname = "smartGroup"; - version = "0.3.0"; - sha256 = "10wb5v87xl54bsl2xxsh1fh54bgqbhmmkhyaa3ly23nm2f01cpnp"; - libraryHaskellDepends = [ - base - bytestring - containers - template-haskell - ]; - description = "group strings or bytestrings by words in common"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "smartcheck" = callPackage ( - { - mkDerivation, - base, - containers, - generic-deriving, - ghc-prim, - mtl, - QuickCheck, - random, - }: - mkDerivation { - pname = "smartcheck"; - version = "0.2.4"; - sha256 = "0wj6xwassh69z97p47xh7i68xs7mvi05fni4qxizyicmbr8k27il"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - containers - generic-deriving - ghc-prim - mtl - QuickCheck - random - ]; - executableHaskellDepends = [ - base - containers - generic-deriving - ghc-prim - mtl - QuickCheck - random - ]; - description = "A smarter QuickCheck"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "sc-qc"; - broken = true; - } - ) { }; - - "smartconstructor" = callPackage ( - { - mkDerivation, - base, - template-haskell, - }: - mkDerivation { - pname = "smartconstructor"; - version = "0.2.0.0"; - sha256 = "1082siphwd4xx9akqip78kzpqi19i3l53h0s2vghhdm5lwplcvlv"; - libraryHaskellDepends = [ - base - template-haskell - ]; - description = "A package exposing a helper function for generating smart constructors"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "smarties" = callPackage ( { mkDerivation, @@ -617203,35 +357607,6 @@ self: { } ) { }; - "smartword" = callPackage ( - { - mkDerivation, - base, - haskell98, - pretty, - unix, - utf8-string, - }: - mkDerivation { - pname = "smartword"; - version = "0.0.0.5"; - sha256 = "0dxw4jgmwcz92n2rymdrfaz1v8lc2wknql9ca5p98jc14l8c2bl3"; - isLibrary = false; - isExecutable = true; - enableSeparateDataOutput = true; - executableHaskellDepends = [ - base - haskell98 - pretty - unix - utf8-string - ]; - description = "Web based flash card for Word Smart I and II vocabularies"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "smash" = callPackage ( { mkDerivation, @@ -617478,69 +357853,6 @@ self: { } ) { }; - "sme" = callPackage ( - { mkDerivation, base }: - mkDerivation { - pname = "sme"; - version = "0.1"; - sha256 = "1d3kjyskwzc7p5bi6pv9yxfa6l6dqkkqc24dmmxl5wx7vmbfma25"; - libraryHaskellDepends = [ base ]; - description = "A library for Secure Multi-Execution in Haskell"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "smerdyakov" = callPackage ( - { - mkDerivation, - base, - doctest, - exceptions, - free, - Glob, - hspec, - mtl, - process, - QuickCheck, - text, - transformers, - yaml, - }: - mkDerivation { - pname = "smerdyakov"; - version = "0.0.0.0"; - sha256 = "02d7xql0qx070ifrhw0cpw4ipzcr6bgw7q4y9xw1b2dwxszvidij"; - libraryHaskellDepends = [ - base - exceptions - free - mtl - process - text - transformers - ]; - testHaskellDepends = [ - base - doctest - exceptions - free - Glob - hspec - mtl - process - QuickCheck - text - transformers - yaml - ]; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "smh" = callPackage ( { mkDerivation, @@ -617594,37 +357906,6 @@ self: { } ) { }; - "smiles" = callPackage ( - { - mkDerivation, - base, - hspec, - megaparsec, - QuickCheck, - text, - }: - mkDerivation { - pname = "smiles"; - version = "0.2.0.0"; - sha256 = "0k1yy1bhgavsmm40zz1i6ihyfksb6fr06wxlbqyj1y0igmrrrlrw"; - libraryHaskellDepends = [ - base - megaparsec - text - ]; - testHaskellDepends = [ - base - hspec - megaparsec - QuickCheck - text - ]; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "smith" = callPackage ( { mkDerivation, @@ -617648,241 +357929,6 @@ self: { } ) { }; - "smith-cli" = callPackage ( - { - mkDerivation, - attoparsec, - base, - base64-bytestring, - bytestring, - cereal, - crypto-pubkey-openssh, - crypto-pubkey-types, - directory, - filepath, - HsOpenSSL, - network, - openssh-protocol, - optparse-applicative, - smith-client, - text, - transformers, - transformers-bifunctors, - unix, - }: - mkDerivation { - pname = "smith-cli"; - version = "0.0.1"; - sha256 = "1iqqzzq7wxasq7s1fkar6ydz1mnqb0krc0g49lq9i8qx71c7ylqq"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - attoparsec - base - base64-bytestring - bytestring - cereal - crypto-pubkey-openssh - crypto-pubkey-types - directory - filepath - HsOpenSSL - network - openssh-protocol - optparse-applicative - smith-client - text - transformers - transformers-bifunctors - unix - ]; - description = "Command line tool for ."; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "smith"; - } - ) { }; - - "smith-client" = callPackage ( - { - mkDerivation, - aeson, - base, - bytestring, - case-insensitive, - directory, - filepath, - hedgehog, - http-client, - http-client-tls, - http-types, - jose, - oauth2-jwt-bearer, - text, - transformers, - transformers-bifunctors, - }: - mkDerivation { - pname = "smith-client"; - version = "0.0.1"; - sha256 = "1szg4pcqjxa36bd9b1b8pmk2z0482qr86daxmkdnvapslc4l9xnw"; - libraryHaskellDepends = [ - aeson - base - bytestring - directory - filepath - http-client - http-client-tls - http-types - jose - oauth2-jwt-bearer - text - transformers - transformers-bifunctors - ]; - testHaskellDepends = [ - aeson - base - bytestring - case-insensitive - hedgehog - http-types - text - transformers - ]; - description = "API client for ."; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "smoothie" = callPackage ( - { - mkDerivation, - aeson, - base, - linear, - text, - vector, - }: - mkDerivation { - pname = "smoothie"; - version = "0.4.2.11"; - sha256 = "1jljw2ggfzmfds14zp00qwkqfmrd0f4fwfpdiz4qzwl6zvd07d8c"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - aeson - base - linear - text - vector - ]; - description = "Smooth curves via several interpolation modes"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "smsaero" = callPackage ( - { - mkDerivation, - aeson, - base, - containers, - http-api-data, - http-client, - servant, - servant-client, - servant-docs, - text, - time, - }: - mkDerivation { - pname = "smsaero"; - version = "0.7.1"; - sha256 = "146915lzy5js1wr247baafhfqhd2pn87yph31z78b8hypmzmkv6g"; - libraryHaskellDepends = [ - aeson - base - containers - http-api-data - http-client - servant - servant-client - servant-docs - text - time - ]; - description = "SMSAero API and HTTP client based on servant library"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "smt" = callPackage ( - { - mkDerivation, - base, - base-unicode-symbols, - criterion, - smallcheck, - tasty, - tasty-smallcheck, - util, - }: - mkDerivation { - pname = "smt"; - version = "0.0.0.0"; - sha256 = "18y09ps8a3xxnvddfmlzip7b13747rmn8xxj1422akwmv565ad4l"; - libraryHaskellDepends = [ - base - base-unicode-symbols - util - ]; - testHaskellDepends = [ - base - smallcheck - tasty - tasty-smallcheck - ]; - benchmarkHaskellDepends = [ - base - criterion - ]; - description = "Interface to Satisfiability Modulo Theories solvers"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "smt-lib" = callPackage ( - { - mkDerivation, - array, - base, - directory, - polyparse, - }: - mkDerivation { - pname = "smt-lib"; - version = "0.0.2"; - sha256 = "1phm50pabahrpxrzp25mfhpafzhp4hz8cxp6fp93rwh4cl7cckky"; - libraryHaskellDepends = [ - array - base - directory - polyparse - ]; - description = "Parsing and printing SMT-LIB"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "smt2-parser" = callPackage ( { mkDerivation, @@ -618097,148 +358143,6 @@ self: { } ) { }; - "smtlib2-debug" = callPackage ( - { - mkDerivation, - ansi-terminal, - atto-lisp, - base, - containers, - dependent-map, - dependent-sum, - mtl, - smtlib2, - smtlib2-pipe, - text, - }: - mkDerivation { - pname = "smtlib2-debug"; - version = "1.0"; - sha256 = "0qfphz53la9yhq0yfwmrsby09kjghmcfymlfhpr5gcpv2dl163hi"; - libraryHaskellDepends = [ - ansi-terminal - atto-lisp - base - containers - dependent-map - dependent-sum - mtl - smtlib2 - smtlib2-pipe - text - ]; - description = "Dump the communication with an SMT solver for debugging purposes"; - license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "smtlib2-pipe" = callPackage ( - { - mkDerivation, - atto-lisp, - attoparsec, - base, - blaze-builder, - bytestring, - Cabal, - cabal-test-quickcheck, - containers, - dependent-sum, - mtl, - process, - smtlib2, - smtlib2-quickcheck, - text, - transformers, - }: - mkDerivation { - pname = "smtlib2-pipe"; - version = "1.0"; - sha256 = "0v9wf98la9c8p42zvw22daq22zb4r0fh85i70abwf2fbcnjz88v6"; - libraryHaskellDepends = [ - atto-lisp - attoparsec - base - blaze-builder - bytestring - containers - dependent-sum - mtl - process - smtlib2 - text - transformers - ]; - testHaskellDepends = [ - base - Cabal - cabal-test-quickcheck - smtlib2 - smtlib2-quickcheck - ]; - description = "A type-safe interface to communicate with an SMT solver"; - license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "smtlib2-quickcheck" = callPackage ( - { - mkDerivation, - base, - containers, - dependent-map, - dependent-sum, - mtl, - QuickCheck, - smtlib2, - }: - mkDerivation { - pname = "smtlib2-quickcheck"; - version = "1.0"; - sha256 = "0k5cg3r2v0xh2b441rfzjpbwiv4q9lllmh77afhd10cy6ldp0zr6"; - libraryHaskellDepends = [ - base - containers - dependent-map - dependent-sum - mtl - QuickCheck - smtlib2 - ]; - description = "Helper functions to create SMTLib expressions in QuickCheck"; - license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "smtlib2-timing" = callPackage ( - { - mkDerivation, - base, - dependent-sum, - mtl, - smtlib2, - time, - }: - mkDerivation { - pname = "smtlib2-timing"; - version = "1.0"; - sha256 = "12828gfip43pwjwnhd0smvkz1ar71gbp4lkv3njli6yp5dbcwfi5"; - libraryHaskellDepends = [ - base - dependent-sum - mtl - smtlib2 - time - ]; - description = "Get timing informations for SMT queries"; - license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "smtp-mail" = callPackage ( { mkDerivation, @@ -618285,88 +358189,6 @@ self: { } ) { }; - "smtp-mail-ng" = callPackage ( - { - mkDerivation, - attoparsec, - base, - base16-bytestring, - base64-bytestring, - bytestring, - crypto-random, - cryptohash, - filepath, - haskeline, - mime-mail, - mtl, - network, - stringsearch, - text, - tls, - transformers, - transformers-compat, - x509-store, - x509-system, - }: - mkDerivation { - pname = "smtp-mail-ng"; - version = "0.1.0.2"; - sha256 = "0jvjb3ps22p71b0vq7lgfyxmhjbzhsc3crs0cv3qsnkhz4ghvgbh"; - libraryHaskellDepends = [ - attoparsec - base - base16-bytestring - base64-bytestring - bytestring - crypto-random - cryptohash - filepath - haskeline - mime-mail - mtl - network - stringsearch - text - tls - transformers - transformers-compat - x509-store - x509-system - ]; - description = "An SMTP client EDSL"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "smtp2mta" = callPackage ( - { - mkDerivation, - base, - haskell98, - network, - process, - }: - mkDerivation { - pname = "smtp2mta"; - version = "0.2"; - sha256 = "0z36zvrh6xhg8s7wai65d2y6hz0qz016ick9a4yrjpqxxk78h902"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - haskell98 - network - process - ]; - description = "Listen for SMTP traffic and send it to an MTA script"; - license = "unknown"; - hydraPlatforms = lib.platforms.none; - mainProgram = "smtp2mta"; - } - ) { }; - "smtpbz" = callPackage ( { mkDerivation, @@ -618394,98 +358216,6 @@ self: { } ) { }; - "smtps-gmail" = callPackage ( - { - mkDerivation, - attoparsec, - base, - base64-bytestring, - bytestring, - conduit, - conduit-extra, - data-default, - filepath, - mime-mail, - network, - resourcet, - stringsearch, - text, - tls, - transformers, - }: - mkDerivation { - pname = "smtps-gmail"; - version = "1.3.2"; - sha256 = "07483r4yd88aw1c5q38c2kcm25rqd8nln25kjmp0drmvn95zhv0g"; - libraryHaskellDepends = [ - attoparsec - base - base64-bytestring - bytestring - conduit - conduit-extra - data-default - filepath - mime-mail - network - resourcet - stringsearch - text - tls - transformers - ]; - description = "Gmail SMTP Client"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "smuggler" = callPackage ( - { - mkDerivation, - base, - bytestring, - containers, - directory, - filepath, - ghc, - ghc-exactprint, - hash-store, - unordered-containers, - }: - mkDerivation { - pname = "smuggler"; - version = "0.1.0"; - sha256 = "0iyisn5s39haik3g1wld67pdpnl8h3zafxhkgyd3ajx9lg9nf741"; - revision = "1"; - editedCabalFile = "1lbkir8l81f6dq3d2q9h6a1bpi03cq69qg3xr6h9ppx8ksswsw1d"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - bytestring - containers - filepath - ghc - ghc-exactprint - hash-store - unordered-containers - ]; - executableHaskellDepends = [ base ]; - testHaskellDepends = [ - base - directory - filepath - ]; - description = "GHC Source Plugin that helps to manage imports"; - license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; - mainProgram = "play-smuggler"; - broken = true; - } - ) { }; - "smuggler2" = callPackage ( { mkDerivation, @@ -618620,59 +358350,6 @@ self: { } ) { }; - "snake" = callPackage ( - { - mkDerivation, - base, - random, - split, - terminal-size, - }: - mkDerivation { - pname = "snake"; - version = "0.1.0.0"; - sha256 = "1y2645k6f22v30xf33fvqac8pwinn4mmpbq5l8vxkw05v8m8jm9h"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - random - split - terminal-size - ]; - description = "A basic console snake game"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - mainProgram = "snake"; - broken = true; - } - ) { }; - - "snake-game" = callPackage ( - { - mkDerivation, - base, - GLUT, - OpenGL, - random, - }: - mkDerivation { - pname = "snake-game"; - version = "1.2"; - sha256 = "1iy3m20ldc98agdi7n71ik8k2f62ybfg719z79lcf8pzynbfsrbd"; - libraryHaskellDepends = [ - base - GLUT - OpenGL - random - ]; - description = "Snake Game Using OpenGL"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "snap" = callPackage ( { mkDerivation, @@ -618808,33 +358485,6 @@ self: { } ) { }; - "snap-accept" = callPackage ( - { - mkDerivation, - base, - bytestring, - case-insensitive, - http-media, - snap-core, - }: - mkDerivation { - pname = "snap-accept"; - version = "0.2.1"; - sha256 = "0847vq58nkhhr9msiy27cg9app6fzsswzy1dp1iylxygc9wbws6q"; - libraryHaskellDepends = [ - base - bytestring - case-insensitive - http-media - snap-core - ]; - description = "Accept header branching for the Snap web framework"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "snap-app" = callPackage ( { mkDerivation }: mkDerivation { @@ -618847,49 +358497,6 @@ self: { } ) { }; - "snap-auth-cli" = callPackage ( - { - mkDerivation, - aeson, - aeson-pretty, - base, - bytestring, - clientsession, - cmdargs, - snap, - snaplet-sqlite-simple, - sqlite-simple, - text, - unordered-containers, - utf8-string, - }: - mkDerivation { - pname = "snap-auth-cli"; - version = "0.2"; - sha256 = "1h93v7fkrdpp5ls2b2g7r7wnf6abfl8q0nld1qzzqj927lzgnzwa"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - aeson - aeson-pretty - base - bytestring - clientsession - cmdargs - snap - snaplet-sqlite-simple - sqlite-simple - text - unordered-containers - utf8-string - ]; - description = "Command-line tool to manage Snap AuthManager database"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "snap-auth-cli"; - } - ) { }; - "snap-blaze" = callPackage ( { mkDerivation, @@ -618911,56 +358518,6 @@ self: { } ) { }; - "snap-blaze-clay" = callPackage ( - { - mkDerivation, - base, - blaze-html, - clay, - snap-core, - }: - mkDerivation { - pname = "snap-blaze-clay"; - version = "0.1.0.0"; - sha256 = "05zi9rjd37xznjj8yhm5har12mfrclsrwd9fbcwh5ngccd7h7fiy"; - libraryHaskellDepends = [ - base - blaze-html - clay - snap-core - ]; - description = "blaze-html-clay integration for Snap"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "snap-configuration-utilities" = callPackage ( - { - mkDerivation, - base, - configurator, - text, - unordered-containers, - }: - mkDerivation { - pname = "snap-configuration-utilities"; - version = "0.1.0.0"; - sha256 = "07cm60v7bz585fawfc8mml178z54zqfg8kb7ldln5bsa0ggpha2z"; - libraryHaskellDepends = [ - base - configurator - text - unordered-containers - ]; - description = "Methods to manipulate Configurator objects for Snap & Snaplets"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "snap-core" = callPackage ( { mkDerivation, @@ -619088,75 +358645,6 @@ self: { } ) { }; - "snap-elm" = callPackage ( - { - mkDerivation, - base, - bytestring, - directory, - Elm, - filepath, - process, - snap-core, - text, - transformers, - }: - mkDerivation { - pname = "snap-elm"; - version = "0.1.1.2"; - sha256 = "1lp76s5yqgw5zvkv13b4552zq9f2mrngp5l5vd8kwz9rhawgl6kr"; - libraryHaskellDepends = [ - base - bytestring - directory - Elm - filepath - process - snap-core - text - transformers - ]; - description = "Serve Elm files through the Snap web framework"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "snap-error-collector" = callPackage ( - { - mkDerivation, - async, - base, - containers, - lifted-base, - monad-loops, - snap, - stm, - time, - transformers, - }: - mkDerivation { - pname = "snap-error-collector"; - version = "1.1.5"; - sha256 = "0xpz24f2h1rzqs9j15skz1cmk18mh472zsix620shp3qjlma3da4"; - libraryHaskellDepends = [ - async - base - containers - lifted-base - monad-loops - snap - stm - time - transformers - ]; - description = "Collect errors in batches and dispatch them"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "snap-extras" = callPackage ( { mkDerivation, @@ -619219,56 +358707,30 @@ self: { heist jmacro lens - map-syntax - mtl - pcre-light - readable - safe - snap - snap-core - text - time - transformers - wl-pprint-text - xmlhtml - ]; - testHaskellDepends = [ - base - bytestring - containers - QuickCheck - snap-core - tasty - tasty-hunit - tasty-quickcheck - ]; - description = "A collection of useful helpers and utilities for Snap web applications"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "snap-language" = callPackage ( - { - mkDerivation, - attoparsec, - base, - bytestring, - containers, - snap-core, - }: - mkDerivation { - pname = "snap-language"; - version = "0.1.0.5"; - sha256 = "04zn5d8qz17gm1c77xmas059hvl4ach8sayh81q676fkadiwk3x7"; - libraryHaskellDepends = [ - attoparsec + map-syntax + mtl + pcre-light + readable + safe + snap + snap-core + text + time + transformers + wl-pprint-text + xmlhtml + ]; + testHaskellDepends = [ base bytestring containers + QuickCheck snap-core + tasty + tasty-hunit + tasty-quickcheck ]; - description = "Language handling for Snap"; + description = "A collection of useful helpers and utilities for Snap web applications"; license = lib.licenses.bsd3; hydraPlatforms = lib.platforms.none; broken = true; @@ -619329,105 +358791,6 @@ self: { } ) { }; - "snap-predicates" = callPackage ( - { - mkDerivation, - attoparsec, - base, - bytestring, - case-insensitive, - containers, - HUnit, - monads-tf, - QuickCheck, - snap-core, - test-framework, - test-framework-hunit, - test-framework-quickcheck2, - text, - transformers, - }: - mkDerivation { - pname = "snap-predicates"; - version = "0.3.1"; - sha256 = "02rksb2p8wgpla86313z6lwqli5f4ryv4wr95s61kamcpbmf18y5"; - revision = "1"; - editedCabalFile = "1ba658wqfw6qp4b89qg3sidlm998n6j28hy1nizlnwzacjhdrgkg"; - libraryHaskellDepends = [ - attoparsec - base - bytestring - case-insensitive - containers - monads-tf - snap-core - text - transformers - ]; - testHaskellDepends = [ - attoparsec - base - bytestring - case-insensitive - containers - HUnit - monads-tf - QuickCheck - snap-core - test-framework - test-framework-hunit - test-framework-quickcheck2 - text - transformers - ]; - description = "Declarative routing for Snap"; - license = "unknown"; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "snap-routes" = callPackage ( - { - mkDerivation, - base, - blaze-builder, - bytestring, - containers, - filepath, - http-types, - mime-types, - path-pieces, - random, - snap, - template-haskell, - text, - }: - mkDerivation { - pname = "snap-routes"; - version = "0.0.1"; - sha256 = "1jzv58qwlfh0nnvkav4wl3q6dwcfzq0vry8qjgcg3bkl8kqbziay"; - libraryHaskellDepends = [ - base - blaze-builder - bytestring - containers - filepath - http-types - mime-types - path-pieces - random - snap - template-haskell - text - ]; - description = "Typesafe URLs for Snap applications"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "snap-server" = callPackage ( { mkDerivation, @@ -619629,173 +358992,6 @@ self: { } ) { }; - "snap-testing" = callPackage ( - { - mkDerivation, - async, - base, - bytestring, - containers, - digestive-functors, - HandsomeSoup, - hxt, - io-streams, - lens, - mtl, - process, - QuickCheck, - snap, - snap-core, - text, - transformers, - }: - mkDerivation { - pname = "snap-testing"; - version = "0.6.0.0"; - sha256 = "1kzcdlfahhrpczihbr4f41p4ijps27lhghrh29csl6jl7n71lvqk"; - libraryHaskellDepends = [ - async - base - bytestring - containers - digestive-functors - HandsomeSoup - hxt - io-streams - mtl - process - QuickCheck - snap - snap-core - text - transformers - ]; - testHaskellDepends = [ - async - base - bytestring - containers - digestive-functors - HandsomeSoup - hxt - io-streams - lens - mtl - process - QuickCheck - snap - snap-core - text - transformers - ]; - description = "A library for BDD-style testing with the Snap Web Framework"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "snap-utils" = callPackage ( - { - mkDerivation, - base, - bytestring, - heist, - http-types, - MonadCatchIO-transformers, - mtl, - snap, - snap-core, - text, - xmlhtml, - }: - mkDerivation { - pname = "snap-utils"; - version = "0.1.2"; - sha256 = "1kr09fj1jfs6sfmca51k0gwn4acya70s9irzay9yf5b9yyvka391"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base - bytestring - heist - http-types - MonadCatchIO-transformers - mtl - snap - snap-core - text - xmlhtml - ]; - description = "Snap Framework utilities"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "snap-web-routes" = callPackage ( - { - mkDerivation, - base, - bytestring, - heist, - mtl, - snap, - snap-core, - text, - web-routes, - xmlhtml, - }: - mkDerivation { - pname = "snap-web-routes"; - version = "0.5.1.0"; - sha256 = "1q4dpk3na9fy0k4mksgy85g3lifn45mmk0aaa3z175nnjdqjblm2"; - libraryHaskellDepends = [ - base - bytestring - heist - mtl - snap - snap-core - text - web-routes - xmlhtml - ]; - description = "Type safe URLs for Snap"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "snaplet-acid-state" = callPackage ( - { - mkDerivation, - acid-state, - base, - mtl, - snap, - text, - transformers, - }: - mkDerivation { - pname = "snaplet-acid-state"; - version = "0.2.7"; - sha256 = "0vjqcmcp0p8vmh7vzwv62bigbx1ck2vnaxlkqmg5wddn0mhfm6gx"; - libraryHaskellDepends = [ - acid-state - base - mtl - snap - text - transformers - ]; - description = "acid-state snaplet for Snap Framework"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "snaplet-actionlog" = callPackage ( { mkDerivation, @@ -619853,105 +359049,6 @@ self: { ]; description = "Generic action log snaplet for the Snap Framework"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "snaplet-amqp" = callPackage ( - { - mkDerivation, - amqp, - base, - bytestring, - configurator, - lens, - monad-control, - mtl, - network, - resource-pool, - snap, - transformers, - }: - mkDerivation { - pname = "snaplet-amqp"; - version = "1.1.0.0"; - sha256 = "01qw28paifysk402lpb7y8dyhf401ls1l0dcn6fiigvczwxzmk91"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - amqp - base - bytestring - configurator - lens - monad-control - mtl - network - resource-pool - snap - transformers - ]; - description = "Snap framework snaplet for the AMQP library"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "snaplet-auth-acid" = callPackage ( - { - mkDerivation, - acid-state, - aeson, - attoparsec, - base, - cereal, - clientsession, - directory, - errors, - filepath, - hashable, - lens, - MonadCatchIO-transformers, - mtl, - safecopy, - scientific, - snap, - snap-core, - text, - time, - unordered-containers, - vector, - }: - mkDerivation { - pname = "snaplet-auth-acid"; - version = "0.1.0"; - sha256 = "0i0py2rj2vkivl97fxnv87bpbsbms2ncdqbq4zs0777nbr717swm"; - libraryHaskellDepends = [ - acid-state - aeson - attoparsec - base - cereal - clientsession - directory - errors - filepath - hashable - lens - MonadCatchIO-transformers - mtl - safecopy - scientific - snap - snap-core - text - time - unordered-containers - vector - ]; - description = "Provides an Acid-State backend for the Auth Snaplet"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; } ) { }; @@ -619993,41 +359090,6 @@ self: { } ) { }; - "snaplet-css-min" = callPackage ( - { - mkDerivation, - base, - bytestring, - css-text, - directory, - filepath, - lens, - snap, - text, - utf8-string, - }: - mkDerivation { - pname = "snaplet-css-min"; - version = "0.1.2"; - sha256 = "1bp6y0x03dpflbp4b1kkbxnqwsgnynbbpdgcpswwxz48xkpcp0ij"; - libraryHaskellDepends = [ - base - bytestring - css-text - directory - filepath - lens - snap - text - utf8-string - ]; - description = "A Snaplet for CSS minification"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "snaplet-customauth" = callPackage ( { mkDerivation, @@ -620107,82 +359169,6 @@ self: { } ) { }; - "snaplet-environments" = callPackage ( - { - mkDerivation, - base, - bson, - configurator, - mtl, - regex-tdfa, - snap, - snap-core, - text, - unordered-containers, - }: - mkDerivation { - pname = "snaplet-environments"; - version = "0.1.1"; - sha256 = "1kk2ry19z73cmmwh3hmg87n00hqhzpmdvnb36b7yf9ck4zkhgy3h"; - libraryHaskellDepends = [ - base - bson - configurator - mtl - regex-tdfa - snap - snap-core - text - unordered-containers - ]; - description = "DEPRECATED! You should use standard Snap >= 0.9 \"environments\" functionality. It provided ability to easly read configuration based on given app environment given at command line, envs are defined in app configuration file"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "snaplet-fay" = callPackage ( - { - mkDerivation, - aeson, - base, - bytestring, - configurator, - directory, - fay, - filepath, - mtl, - snap, - snap-core, - transformers, - }: - mkDerivation { - pname = "snaplet-fay"; - version = "0.3.3.14"; - sha256 = "01s2mj5vml5k9q0x291snhzhdpilb37ksvhavxjf0fz0j3na7acp"; - revision = "1"; - editedCabalFile = "06c6psa499aiz4nqwps1q6nw6imgkbcn0vird2b20kzi79lj7wsq"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - aeson - base - bytestring - configurator - directory - fay - filepath - mtl - snap - snap-core - transformers - ]; - description = "Fay integration for Snap with request- and pre-compilation"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "snaplet-ghcjs" = callPackage ( { mkDerivation, @@ -620218,151 +359204,6 @@ self: { } ) { }; - "snaplet-hasql" = callPackage ( - { - mkDerivation, - aeson, - base, - bytestring, - clientsession, - configurator, - hasql, - hasql-backend, - lens, - mtl, - snap, - text, - time, - }: - mkDerivation { - pname = "snaplet-hasql"; - version = "1.0.2"; - sha256 = "08gx096vg0swjc7z10nzlqsnjlr43cp190q4krkf08jb54ln3kcv"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - aeson - base - bytestring - clientsession - configurator - hasql - hasql-backend - lens - mtl - snap - text - time - ]; - description = "A Hasql snaplet"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "snaplet-haxl" = callPackage ( - { - mkDerivation, - base, - haxl, - MonadCatchIO-transformers, - snap, - transformers, - }: - mkDerivation { - pname = "snaplet-haxl"; - version = "0.0.0.2"; - sha256 = "0xqz62qrhzr0ik60055w7jawxkps6cn5k6v1g7nx2zzhyvg1w4wl"; - libraryHaskellDepends = [ - base - haxl - MonadCatchIO-transformers - snap - transformers - ]; - description = "Snaplet for Facebook's Haxl"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "snaplet-hdbc" = callPackage ( - { - mkDerivation, - base, - bytestring, - clientsession, - containers, - convertible, - data-lens, - data-lens-template, - HDBC, - MonadCatchIO-transformers, - mtl, - resource-pool-catchio, - snap, - text, - time, - transformers, - unordered-containers, - }: - mkDerivation { - pname = "snaplet-hdbc"; - version = "0.9.1"; - sha256 = "17r7ailc2cnfny1ki7b027b5xipg2nvgr2yxvfh0sfzq8xkqa8ym"; - libraryHaskellDepends = [ - base - bytestring - clientsession - containers - convertible - data-lens - data-lens-template - HDBC - MonadCatchIO-transformers - mtl - resource-pool-catchio - snap - text - time - transformers - unordered-containers - ]; - description = "HDBC snaplet for Snap Framework"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "snaplet-hslogger" = callPackage ( - { - mkDerivation, - base, - configurator, - hslogger, - mtl, - snap, - transformers, - }: - mkDerivation { - pname = "snaplet-hslogger"; - version = "1.0.0.2"; - sha256 = "15cvpiz3p1qhb80sgz61mabvkb8h6j713jrny6mbg6qj945jbb0x"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base - configurator - hslogger - mtl - snap - transformers - ]; - description = "Snap framework snaplet for the Logger API library"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "snaplet-i18n" = callPackage ( { mkDerivation, @@ -620420,320 +359261,6 @@ self: { } ) { }; - "snaplet-influxdb" = callPackage ( - { - mkDerivation, - base, - bytestring, - configurator, - http-client, - influxdb, - lens, - monad-control, - mtl, - network, - snap, - text, - transformers, - }: - mkDerivation { - pname = "snaplet-influxdb"; - version = "1.0.1.1"; - sha256 = "1dv800rclzl0b251bixksfl7jf28z82ql7nikf5dvginfpm71j7j"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base - bytestring - configurator - http-client - influxdb - lens - monad-control - mtl - network - snap - text - transformers - ]; - description = "Snap framework snaplet for the InfluxDB library"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "snaplet-lss" = callPackage ( - { - mkDerivation, - base, - directory, - filepath, - heist, - hspec-snap, - hspec2, - lens, - lss, - snap, - text, - xmlhtml, - }: - mkDerivation { - pname = "snaplet-lss"; - version = "0.1.0.0"; - sha256 = "0gll9r65xahx5vai4pbi0nrvscg6z964m30s58kkzy3898j000gx"; - libraryHaskellDepends = [ - base - directory - filepath - heist - lss - snap - text - xmlhtml - ]; - testHaskellDepends = [ - base - hspec-snap - hspec2 - lens - snap - text - ]; - description = "Lexical Style Sheets - Snap Web Framework adaptor"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "snaplet-mandrill" = callPackage ( - { - mkDerivation, - base, - configurator, - mandrill, - mtl, - network, - snap, - transformers, - }: - mkDerivation { - pname = "snaplet-mandrill"; - version = "0.1.0.3"; - sha256 = "0yyb0qbd14v6xw5vix08pv40w9l8p2vwvmh67sa9b4q9wkvwv962"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base - configurator - mandrill - mtl - network - snap - transformers - ]; - description = "Snap framework snaplet for the Mandrill API library"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "snaplet-mongoDB" = callPackage ( - { - mkDerivation, - base, - bson, - bytestring, - compact-string-fix, - containers, - haskell-src-exts, - MonadCatchIO-transformers, - mongoDB, - mtl, - parsec, - regular, - safe, - snap, - snap-core, - template-haskell, - text, - time, - }: - mkDerivation { - pname = "snaplet-mongoDB"; - version = "0.2"; - sha256 = "0hpm2bhvb8gh4sz4dfx53s24gkkk2c234szhwbrn10bmd7hrapaw"; - libraryHaskellDepends = [ - base - bson - bytestring - compact-string-fix - containers - haskell-src-exts - MonadCatchIO-transformers - mongoDB - mtl - parsec - regular - safe - snap - snap-core - template-haskell - text - time - ]; - description = "Snap Framework MongoDB support as Snaplet"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "snaplet-mongodb-minimalistic" = callPackage ( - { - mkDerivation, - base, - lens, - mongoDB, - mtl, - snap, - text, - transformers, - }: - mkDerivation { - pname = "snaplet-mongodb-minimalistic"; - version = "0.0.6.12"; - sha256 = "0d0hnn0qp4zd453wzh1d3adls68gpv28dnkr7dcmjfl4f5igdran"; - libraryHaskellDepends = [ - base - lens - mongoDB - mtl - snap - text - transformers - ]; - description = "Minimalistic MongoDB Snaplet"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "snaplet-mysql-simple" = callPackage ( - { - mkDerivation, - base, - bytestring, - clientsession, - configurator, - containers, - errors, - lens, - MonadCatchIO-transformers, - mtl, - mysql, - mysql-simple, - resource-pool-catchio, - snap, - text, - transformers, - unordered-containers, - }: - mkDerivation { - pname = "snaplet-mysql-simple"; - version = "0.2.2.0"; - sha256 = "0n2hjchcr3hh7hb5cpz2ahsffsyhiavp3gizr19pjwslgmq484a3"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base - bytestring - clientsession - configurator - containers - errors - lens - MonadCatchIO-transformers - mtl - mysql - mysql-simple - resource-pool-catchio - snap - text - transformers - unordered-containers - ]; - description = "mysql-simple snaplet for the Snap Framework"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "snaplet-oauth" = callPackage ( - { - mkDerivation, - aeson, - base, - bytestring, - bytestring-show, - data-lens, - data-lens-template, - failure, - hashable, - heist, - hoauth2, - http-conduit, - http-types, - HUnit, - MonadCatchIO-mtl, - snap, - snap-core, - snap-loader-dynamic, - snap-loader-static, - test-framework, - test-framework-hunit, - text, - unordered-containers, - }: - mkDerivation { - pname = "snaplet-oauth"; - version = "0.0.6"; - sha256 = "177yspz91nlzz9pw9x9zh4s4q7z7w9kl8gg5fd285xbadxazp3yl"; - libraryHaskellDepends = [ - aeson - base - bytestring - bytestring-show - data-lens - data-lens-template - failure - hashable - heist - hoauth2 - http-conduit - http-types - MonadCatchIO-mtl - snap - snap-core - snap-loader-dynamic - snap-loader-static - text - unordered-containers - ]; - testHaskellDepends = [ - aeson - base - bytestring - bytestring-show - HUnit - test-framework - test-framework-hunit - text - ]; - description = "snaplet-oauth"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "snaplet-persistent" = callPackage ( { mkDerivation, @@ -620794,89 +359321,6 @@ self: { } ) { }; - "snaplet-postgresql-simple" = callPackage ( - { - mkDerivation, - base, - bytestring, - clientsession, - configurator, - lens, - lifted-base, - monad-control, - mtl, - postgresql-simple, - resource-pool, - snap, - text, - transformers, - transformers-base, - unordered-containers, - }: - mkDerivation { - pname = "snaplet-postgresql-simple"; - version = "1.2.0.0"; - sha256 = "0an9b72vfnb562k49bz5wh72s637r3vrbm4x9brwf483rrmlmvrf"; - revision = "1"; - editedCabalFile = "1zzidcr5j6i6xnzrlzxlmpj6fs60knkbkjbagawa3y1v1wg3vmq7"; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base - bytestring - clientsession - configurator - lens - lifted-base - monad-control - mtl - postgresql-simple - resource-pool - snap - text - transformers - transformers-base - unordered-containers - ]; - description = "postgresql-simple snaplet for the Snap Framework"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "snaplet-postmark" = callPackage ( - { - mkDerivation, - base, - configurator, - mtl, - postmark, - snap, - text, - transformers, - }: - mkDerivation { - pname = "snaplet-postmark"; - version = "0.2.0"; - sha256 = "0006i88ssgh6z9g967wlw0km8abxmxdjjs7aalsddzla6xdp8wnx"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base - configurator - mtl - postmark - snap - text - transformers - ]; - description = "Postmark snaplet for the Snap Framework"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "snaplet-purescript" = callPackage ( { mkDerivation, @@ -620914,48 +359358,6 @@ self: { } ) { }; - "snaplet-recaptcha" = callPackage ( - { - mkDerivation, - aeson, - base, - blaze-builder, - bytestring, - configurator, - heist, - http-conduit, - lens, - MonadCatchIO-transformers, - mtl, - snap, - text, - transformers, - }: - mkDerivation { - pname = "snaplet-recaptcha"; - version = "1.0.3"; - sha256 = "02f5fv70r7zjzycrrqsd1jwgpa7sq1m6rci74dlcbnms7z9cpv26"; - libraryHaskellDepends = [ - aeson - base - blaze-builder - bytestring - configurator - heist - http-conduit - lens - MonadCatchIO-transformers - mtl - snap - text - transformers - ]; - description = "A ReCAPTCHA verification snaplet with Heist integration and connection sharing"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "snaplet-redis" = callPackage ( { mkDerivation, @@ -621001,639 +359403,6 @@ self: { } ) { }; - "snaplet-redson" = callPackage ( - { - mkDerivation, - aeson, - base, - bytestring, - configurator, - containers, - data-lens, - data-lens-template, - easy-file, - hedis, - mtl, - snap, - snap-core, - snaplet-redis, - text, - utf8-string, - websockets, - websockets-snap, - }: - mkDerivation { - pname = "snaplet-redson"; - version = "0.1.0.0"; - sha256 = "0pvan8fnddn27cps5x8gyrwmm88z96jjh124i9g3mi9aqpyx8z5d"; - libraryHaskellDepends = [ - aeson - base - bytestring - configurator - containers - data-lens - data-lens-template - easy-file - hedis - mtl - snap - snap-core - snaplet-redis - text - utf8-string - websockets - websockets-snap - ]; - description = "CRUD for JSON data with Redis storage"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "snaplet-rest" = callPackage ( - { - mkDerivation, - aeson, - base, - blaze-builder, - bytestring, - case-insensitive, - http-media, - lens, - mtl, - snap, - snap-accept, - snap-core, - text, - utf8-string, - xmlhtml, - }: - mkDerivation { - pname = "snaplet-rest"; - version = "0.1.0"; - sha256 = "1w1cy5zisn0mxj6rrz7wrw31ariia006cjxqwh9ahds6iwqh40y1"; - libraryHaskellDepends = [ - aeson - base - blaze-builder - bytestring - case-insensitive - http-media - lens - mtl - snap - snap-accept - snap-core - text - utf8-string - xmlhtml - ]; - description = "REST resources for the Snap web framework"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "snaplet-riak" = callPackage ( - { - mkDerivation, - aeson, - base, - containers, - data-lens, - data-lens-template, - mtl, - riak, - riak-protobuf, - snap, - snap-core, - time, - transformers, - }: - mkDerivation { - pname = "snaplet-riak"; - version = "0.2.1.1"; - sha256 = "1dmxbjl3cq0rj31l8n683z9r6z3dfvwxkb7jgkdf3f53mpf6rcnm"; - libraryHaskellDepends = [ - aeson - base - containers - data-lens - data-lens-template - mtl - riak - riak-protobuf - snap - snap-core - time - transformers - ]; - description = "A Snaplet for the Riak database"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "snaplet-sass" = callPackage ( - { - mkDerivation, - base, - bytestring, - configurator, - directory, - filepath, - mtl, - process, - snap, - snap-core, - transformers, - }: - mkDerivation { - pname = "snaplet-sass"; - version = "0.1.2.0"; - sha256 = "1aiznsi54lxzwxnilckspvp6rdfmksxppa3964kqxh93a9gvkr9z"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base - bytestring - configurator - directory - filepath - mtl - process - snap - snap-core - transformers - ]; - description = "Sass integration for Snap with request- and pre-compilation"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "snaplet-scoped-session" = callPackage ( - { - mkDerivation, - async, - base, - classy-prelude, - configurator, - data-default, - lens, - mtl, - snap, - time, - unordered-containers, - }: - mkDerivation { - pname = "snaplet-scoped-session"; - version = "0.1.1"; - sha256 = "0bvzk8ah8yfgabsc9vy2cm1157m16y13k21287jqghnrchzvkiq6"; - libraryHaskellDepends = [ - async - base - classy-prelude - configurator - data-default - lens - mtl - snap - time - unordered-containers - ]; - description = "Modularised session state for Snaplets, in a Snaplet"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "snaplet-sedna" = callPackage ( - { - mkDerivation, - base, - bytestring, - containers, - monad-control, - mtl, - resource-pool, - sednaDBXML, - snap, - }: - mkDerivation { - pname = "snaplet-sedna"; - version = "0.0.1.0"; - sha256 = "1rd0ymsnanf3nk02cim8lm9gppm739jfi2x6fzmp10xs9wmlhqab"; - libraryHaskellDepends = [ - base - bytestring - containers - monad-control - mtl - resource-pool - sednaDBXML - snap - ]; - description = "Snaplet for Sedna Bindings. Essentailly a rip of snaplet-hdbc."; - license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "snaplet-ses-html" = callPackage ( - { - mkDerivation, - adjunctions, - base, - blaze-html, - bytestring, - configurator, - lens, - ses-html, - snap, - text, - transformers, - }: - mkDerivation { - pname = "snaplet-ses-html"; - version = "0.1.1.0"; - sha256 = "1s5pyhwdnpw1ijy67h4kw052jz4pp73bpjcqii31passybvfd7k6"; - libraryHaskellDepends = [ - adjunctions - base - blaze-html - bytestring - configurator - lens - ses-html - snap - text - transformers - ]; - description = "Snaplet for the ses-html package"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "snaplet-sqlite-simple" = callPackage ( - { - mkDerivation, - aeson, - base, - bytestring, - clientsession, - configurator, - containers, - direct-sqlite, - directory, - errors, - exceptions, - HUnit, - lens, - lifted-base, - monad-control, - mtl, - SafeSemaphore, - snap, - snap-core, - sqlite-simple, - stm, - test-framework, - test-framework-hunit, - text, - time, - transformers, - transformers-base, - unordered-containers, - }: - mkDerivation { - pname = "snaplet-sqlite-simple"; - version = "1.0.0.2"; - sha256 = "1mv0sfz2dqhl82wbsb11c5brw3jadh9sliinlj3xb5m7n42z84id"; - revision = "1"; - editedCabalFile = "0gj934nif3h3695ckwi457zjih2zfmbjsbsh884v3dp4qlfz6jcw"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - aeson - base - bytestring - clientsession - configurator - direct-sqlite - lens - lifted-base - monad-control - mtl - snap - sqlite-simple - text - transformers - transformers-base - unordered-containers - ]; - testHaskellDepends = [ - aeson - base - bytestring - clientsession - configurator - containers - directory - errors - exceptions - HUnit - lens - mtl - SafeSemaphore - snap - snap-core - sqlite-simple - stm - test-framework - test-framework-hunit - text - time - transformers - unordered-containers - ]; - description = "sqlite-simple snaplet for the Snap Framework"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "snaplet-sqlite-simple-jwt-auth" = callPackage ( - { - mkDerivation, - aeson, - attoparsec, - base, - bcrypt, - bytestring, - clientsession, - containers, - directory, - either, - errors, - jwt, - lens, - mtl, - snap, - snap-core, - snaplet-sqlite-simple, - sqlite-simple, - text, - time, - unordered-containers, - }: - mkDerivation { - pname = "snaplet-sqlite-simple-jwt-auth"; - version = "0.2.0.0"; - sha256 = "00qjyg6mqjkbyzhah7aajb8sgyjhff9hkj9q86flzryfq07qfn7w"; - libraryHaskellDepends = [ - aeson - attoparsec - base - bcrypt - bytestring - clientsession - containers - directory - either - errors - jwt - lens - mtl - snap - snap-core - snaplet-sqlite-simple - sqlite-simple - text - time - unordered-containers - ]; - description = "Snaplet for JWT authentication with snaplet-sqlite-simple"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "snaplet-stripe" = callPackage ( - { - mkDerivation, - base, - bytestring, - configurator, - heist, - lens-family-core, - mtl, - snap, - stripe, - text, - text-format, - transformers, - xmlhtml, - }: - mkDerivation { - pname = "snaplet-stripe"; - version = "0.3.0"; - sha256 = "0j85vzfmw6skag8rfww4gsg1lyfc7qbxiqhmwbsh4vfjiagrc9wp"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base - bytestring - configurator - heist - lens-family-core - mtl - snap - stripe - text - text-format - transformers - xmlhtml - ]; - description = "Stripe snaplet for the Snap Framework"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "snaplet-tasks" = callPackage ( - { - mkDerivation, - base, - bytestring, - containers, - curl, - data-hash, - haskell98, - MissingH, - mtl, - network, - snap, - snap-core, - }: - mkDerivation { - pname = "snaplet-tasks"; - version = "0.1.2"; - sha256 = "0wkhjjjmd08jbhp41j6xvcvg3g7c74cz18mm89k8alwfc50krvc0"; - libraryHaskellDepends = [ - base - bytestring - containers - curl - data-hash - haskell98 - MissingH - mtl - network - snap - snap-core - ]; - description = "Snaplet for Snap Framework enabling developers to administrative tasks akin to Rake tasks from Ruby On Rails framework"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "snaplet-typed-sessions" = callPackage ( - { - mkDerivation, - base, - bytestring, - cereal, - clientsession, - containers, - hashtables, - mtl, - PSQueue, - random, - regex-posix, - snap, - snap-core, - time, - }: - mkDerivation { - pname = "snaplet-typed-sessions"; - version = "0.5"; - sha256 = "0gc6vnxsbwgciv281p6jff8ylcni4qpkmak2zqz710in86grjbgw"; - libraryHaskellDepends = [ - base - bytestring - cereal - clientsession - containers - hashtables - mtl - PSQueue - random - regex-posix - snap - snap-core - time - ]; - description = "Typed session snaplets and continuation-based programming for the Snap web framework"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "snaplet-wordpress" = callPackage ( - { - mkDerivation, - aeson, - async, - attoparsec, - base, - blaze-builder, - bytestring, - configurator, - containers, - data-default, - either, - hedis, - heist, - hspec, - hspec-core, - hspec-snap, - lens, - map-syntax, - mtl, - snap, - snap-core, - snaplet-redis, - text, - time, - unordered-containers, - vector, - wreq, - xmlhtml, - }: - mkDerivation { - pname = "snaplet-wordpress"; - version = "0.1.1.2"; - sha256 = "1vmkywrd0vfyd028d0pvfglywgbv1m26j1shwy9wmnr581vx9pab"; - libraryHaskellDepends = [ - aeson - async - attoparsec - base - blaze-builder - bytestring - configurator - containers - data-default - either - hedis - heist - hspec - hspec-snap - lens - map-syntax - mtl - snap - snap-core - snaplet-redis - text - time - unordered-containers - vector - wreq - xmlhtml - ]; - testHaskellDepends = [ - aeson - base - blaze-builder - containers - data-default - either - hedis - heist - hspec - hspec-core - hspec-snap - lens - mtl - snap - snaplet-redis - text - unordered-containers - xmlhtml - ]; - description = "A snaplet that communicates with wordpress over its api"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "snappy" = callPackage ( { mkDerivation, @@ -621732,31 +359501,6 @@ self: { } ) { inherit (pkgs) snappy; }; - "snappy-conduit" = callPackage ( - { - mkDerivation, - base, - bytestring, - conduit, - snappy, - }: - mkDerivation { - pname = "snappy-conduit"; - version = "0.1.0.0"; - sha256 = "0k93v3dyv7818xy45l7i5wykfmnwyqkykxjh6xr937zh8a4qapfi"; - libraryHaskellDepends = [ - base - bytestring - conduit - snappy - ]; - description = "Conduit bindings for Snappy (see snappy package)"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "snappy-framing" = callPackage ( { mkDerivation, @@ -621811,30 +359555,6 @@ self: { } ) { }; - "snappy-iteratee" = callPackage ( - { - mkDerivation, - base, - bytestring, - iteratee, - snappy, - }: - mkDerivation { - pname = "snappy-iteratee"; - version = "0.1"; - sha256 = "17jwsvw7ik2bjanmzw4h72mdjaz031b5a6hi7cjz4ba1yjkiqnmk"; - libraryHaskellDepends = [ - base - bytestring - iteratee - snappy - ]; - description = "An enumeratee that uses Google's snappy compression library"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "snappy-lazy" = callPackage ( { mkDerivation, @@ -621860,96 +359580,6 @@ self: { } ) { }; - "sndfile-enumerators" = callPackage ( - { - mkDerivation, - base, - binary, - bytestring, - containers, - filepath, - iteratee, - listlike-instances, - MonadCatchIO-transformers, - transformers, - vector, - word24, - }: - mkDerivation { - pname = "sndfile-enumerators"; - version = "0.10.0.0"; - sha256 = "1nnlbhnm88xy462sh3d54b751ndl0r2qggbxn2irrwqdnhc21v4r"; - libraryHaskellDepends = [ - base - binary - bytestring - containers - filepath - iteratee - listlike-instances - MonadCatchIO-transformers - transformers - vector - word24 - ]; - description = "Audio file reading/writing"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "sneakyterm" = callPackage ( - { - mkDerivation, - base, - classy-prelude, - containers, - lens, - linear, - mtl, - ncurses, - transformers, - }: - mkDerivation { - pname = "sneakyterm"; - version = "0.1"; - sha256 = "11sndwsgapdsz379w24qdnry8za6zwkni88vjgkzfwixyq327v3d"; - libraryHaskellDepends = [ - base - classy-prelude - containers - lens - linear - mtl - ncurses - transformers - ]; - description = "Tiny, declarative wrapper around ncurses"; - license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "sneathlane-haste" = callPackage ( - { - mkDerivation, - base, - haste-compiler, - }: - mkDerivation { - pname = "sneathlane-haste"; - version = "2"; - sha256 = "0yyway7rhx1x2p6mxfrs6xw22ylc780hsppbq2xkd4rpd1cdw54n"; - libraryHaskellDepends = [ - base - haste-compiler - ]; - description = "A compositional web UI library, which draws to a Canvas element"; - license = lib.licenses.bsd2; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "snelstart-import" = callPackage ( { mkDerivation, @@ -622040,33 +359670,6 @@ self: { } ) { }; - "snipcheck" = callPackage ( - { - mkDerivation, - base, - containers, - pandoc, - process, - text, - }: - mkDerivation { - pname = "snipcheck"; - version = "0.1.0.3"; - sha256 = "1x9jjfznvzz9pa4n54q6xja0axifnlgbp9aw93hvcr4w8f94gfp0"; - libraryHaskellDepends = [ - base - containers - pandoc - process - text - ]; - description = "Markdown tester"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "snippet-extractor" = callPackage ( { mkDerivation, @@ -622089,162 +359692,6 @@ self: { } ) { }; - "snm" = callPackage ( - { - mkDerivation, - base, - containers, - directory, - filepath, - HsSyck, - parsec, - safe, - spoonutil, - xhtml, - }: - mkDerivation { - pname = "snm"; - version = "0.0.4"; - sha256 = "1n2cj35qrp6a766w29qrqcpcrv81xcpk9agkbibxngxh03abyhji"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - containers - directory - filepath - HsSyck - parsec - safe - spoonutil - xhtml - ]; - executableHaskellDepends = [ - base - containers - directory - filepath - HsSyck - parsec - safe - spoonutil - ]; - description = "The Simple Nice-Looking Manual Generator"; - license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - mainProgram = "snm"; - } - ) { }; - - "snmp" = callPackage ( - { - mkDerivation, - base, - bytestring, - containers, - cryptonite, - ip, - language-asn, - memory, - network, - stm, - vector, - }: - mkDerivation { - pname = "snmp"; - version = "0.3.1.0"; - sha256 = "0lkvhghrcmjfy2dhwybx04j5rip0d1dpyv62f8n3viad8x2djhkr"; - revision = "2"; - editedCabalFile = "0r8j4238gjpb6dbcmd13ycnhg3cxds9wm4fw6hrng5r42zpq41c1"; - libraryHaskellDepends = [ - base - bytestring - containers - cryptonite - ip - language-asn - memory - network - stm - vector - ]; - description = "SNMP protocol library"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "snorkels" = callPackage ( - { - mkDerivation, - ansi-terminal, - base, - bimap, - containers, - monad-loops, - optparse-applicative, - parsec, - random, - }: - mkDerivation { - pname = "snorkels"; - version = "0.2.0.0"; - sha256 = "0lf2lsknbygv7hlrbb9h5v2qs5rjibc6dw5rnvdm7497a1y7z79v"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - ansi-terminal - base - bimap - containers - monad-loops - optparse-applicative - parsec - random - ]; - executableHaskellDepends = [ - ansi-terminal - base - bimap - containers - monad-loops - optparse-applicative - parsec - random - ]; - description = "Strategic board game of medium complexity"; - license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - mainProgram = "snorkels"; - broken = true; - } - ) { }; - - "snow-white" = callPackage ( - { - mkDerivation, - base, - binary, - bytestring, - mps, - }: - mkDerivation { - pname = "snow-white"; - version = "2009.12.1"; - sha256 = "007hzr8dpj0mhvmnpdg0gi296q3mlicnx36s6hmgifzmyaa8kssi"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base - binary - bytestring - mps - ]; - description = "encode any binary instance to white space"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "snowball" = callPackage ( { mkDerivation, @@ -622360,66 +359807,6 @@ self: { } ) { }; - "snowflake-core" = callPackage ( - { - mkDerivation, - base, - QuickCheck, - time-exts, - }: - mkDerivation { - pname = "snowflake-core"; - version = "0.1.0.1"; - sha256 = "0m49xyi3l2y540kgsb8p0i2x1w9k1wpf051w5i14rs5yhvx2f924"; - libraryHaskellDepends = [ - base - time-exts - ]; - testHaskellDepends = [ - base - QuickCheck - ]; - description = "twitter's snowflake"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "snowflake-server" = callPackage ( - { - mkDerivation, - base, - bytestring, - containers, - mtl, - random, - snap-core, - snap-server, - snowflake-core, - }: - mkDerivation { - pname = "snowflake-server"; - version = "0.1.0.0"; - sha256 = "074wg35bvzqyjq7qkqzs87pqb4cdmwj1ni5i1ry1rif9ykyswfxg"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - bytestring - containers - mtl - random - snap-core - snap-server - snowflake-core - ]; - description = "snowflake http server"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "snowflake-server"; - } - ) { }; - "snowglobe" = callPackage ( { mkDerivation, @@ -622454,38 +359841,6 @@ self: { } ) { }; - "snowtify" = callPackage ( - { - mkDerivation, - base, - either, - safe, - safe-exceptions, - text, - turtle, - }: - mkDerivation { - pname = "snowtify"; - version = "0.1.0.3"; - sha256 = "1l3x90mpxima1j95msshp3wpw3fn1vka9b0nk4dmavxj1s8qd32q"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - either - safe - safe-exceptions - text - turtle - ]; - description = "snowtify send your result of `stack build` (`stack test`) to notify-daemon :dog2:"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - mainProgram = "snowtify"; - broken = true; - } - ) { }; - "snumber" = callPackage ( { mkDerivation, @@ -622649,39 +360004,6 @@ self: { } ) { }; - "sock2stream" = callPackage ( - { - mkDerivation, - base, - binary, - bytestring, - containers, - directory, - haskell98, - network, - }: - mkDerivation { - pname = "sock2stream"; - version = "0.3"; - sha256 = "1vnrjza4x4jqlvz7mmihrjbdf4ngw02fkkn1j768w81m814vny7h"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - binary - bytestring - containers - directory - haskell98 - network - ]; - description = "Tunnel a socket over a single datastream (stdin/stdout)"; - license = "unknown"; - hydraPlatforms = lib.platforms.none; - mainProgram = "sock2stream"; - } - ) { }; - "sockaddr" = callPackage ( { mkDerivation, @@ -622741,311 +360063,93 @@ self: { } ) { }; - "socket-activation" = callPackage ( - { - mkDerivation, - base, - network, - transformers, - unix, - }: - mkDerivation { - pname = "socket-activation"; - version = "0.1.0.2"; - sha256 = "0fxl9v1mvlv31bhyjl8k1l4f4lr9n0gvcnsfr2m65m3c557pp7mr"; - revision = "1"; - editedCabalFile = "0bvm8ik8fp0v5gjw6q4h767zgs1i4ydckdypvqa85sarc985hkmp"; - libraryHaskellDepends = [ - base - network - transformers - unix - ]; - description = "systemd socket activation library"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "socket-icmp" = callPackage ( - { - mkDerivation, - base, - socket, - }: - mkDerivation { - pname = "socket-icmp"; - version = "0.1.0.1"; - sha256 = "1wvrdgz0ybacbzg91vi8jiswr02lj7hz61cksmcfii2qsmzpfgb7"; - libraryHaskellDepends = [ - base - socket - ]; - description = "Definitions for using ICMP with the `socket` library"; - license = lib.licenses.bsd3; - } - ) { }; - - "socket-io" = callPackage ( - { - mkDerivation, - aeson, - attoparsec, - base, - bytestring, - engine-io, - mtl, - stm, - text, - transformers, - unordered-containers, - vector, - }: - mkDerivation { - pname = "socket-io"; - version = "1.3.12"; - sha256 = "01aqvbg498pdwi4wv14qsc6spd7nyaidmdz22azq746599f7xnrm"; - libraryHaskellDepends = [ - aeson - attoparsec - base - bytestring - engine-io - mtl - stm - text - transformers - unordered-containers - vector - ]; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "socket-sctp" = callPackage ( - { - mkDerivation, - base, - bytestring, - lksctp-tools, - socket, - }: - mkDerivation { - pname = "socket-sctp"; - version = "0.3.0.0"; - sha256 = "0b098mybrs6ah3r44qp8w464kiq4jvvd6k8i79s527yjj2d9081k"; - libraryHaskellDepends = [ - base - bytestring - socket - ]; - librarySystemDepends = [ lksctp-tools ]; - testHaskellDepends = [ - base - bytestring - socket - ]; - description = "STCP socket extensions library"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { inherit (pkgs) lksctp-tools; }; - - "socket-unix" = callPackage ( - { - mkDerivation, - async, - base, - bytestring, - socket, - tasty, - tasty-hunit, - unix, - }: - mkDerivation { - pname = "socket-unix"; - version = "0.2.1.0"; - sha256 = "1f4lsqkh60d2111715qkjrgj7qv8hk3wrh0v6xzzkckvaaq41gyw"; - libraryHaskellDepends = [ - base - bytestring - socket - ]; - testHaskellDepends = [ - async - base - bytestring - socket - tasty - tasty-hunit - unix - ]; - description = "Unix domain sockets"; - license = lib.licenses.mit; - } - ) { }; - - "socketed" = callPackage ( - { - mkDerivation, - async, - base, - bytestring, - conduit-combinators, - conduit-extra, - http-types, - MissingH, - optparse-applicative, - stm, - stm-chans, - stm-conduit, - template-haskell, - text, - wai, - wai-websockets, - warp, - websockets, - }: - mkDerivation { - pname = "socketed"; - version = "0.1.0.0"; - sha256 = "0kwpir4dl70c8iipqirwdgrncicysqr3mknx8hvkwlpcfvy0shbi"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - async - base - bytestring - conduit-combinators - conduit-extra - http-types - MissingH - optparse-applicative - stm - stm-chans - stm-conduit - template-haskell - text - wai - wai-websockets - warp - websockets - ]; - executableHaskellDepends = [ - async - base - bytestring - conduit-combinators - conduit-extra - http-types - MissingH - optparse-applicative - stm - stm-chans - stm-conduit - template-haskell - text - wai - wai-websockets - warp - websockets + { + mkDerivation, + base, + socket, + }: + mkDerivation { + pname = "socket-icmp"; + version = "0.1.0.1"; + sha256 = "1wvrdgz0ybacbzg91vi8jiswr02lj7hz61cksmcfii2qsmzpfgb7"; + libraryHaskellDepends = [ + base + socket ]; - description = "simpe tool to serve piped data over http and websocket"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - mainProgram = "socketed"; - broken = true; + description = "Definitions for using ICMP with the `socket` library"; + license = lib.licenses.bsd3; } ) { }; - "socketio" = callPackage ( + "socket-io" = callPackage ( { mkDerivation, aeson, - ansi-terminal, attoparsec, base, - blaze-builder, bytestring, - conduit, - conduit-extra, - http-types, - HUnit, - lifted-base, - monad-control, + engine-io, mtl, - QuickCheck, - random, - scientific, - test-framework, - test-framework-hunit, - test-framework-quickcheck2, + stm, text, - transformers-base, + transformers, unordered-containers, vector, - wai, - warp, }: mkDerivation { - pname = "socketio"; - version = "0.1.3"; - sha256 = "19rwkix7fjj3znd7z5bzknnpcfkmkmpcmrksv3q51b9fwph8gwrq"; + pname = "socket-io"; + version = "1.3.12"; + sha256 = "01aqvbg498pdwi4wv14qsc6spd7nyaidmdz22azq746599f7xnrm"; libraryHaskellDepends = [ aeson - ansi-terminal attoparsec base - blaze-builder bytestring - conduit - conduit-extra - http-types - lifted-base - monad-control + engine-io mtl - random + stm text - transformers-base + transformers unordered-containers vector - wai - warp + ]; + license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + } + ) { }; + + "socket-unix" = callPackage ( + { + mkDerivation, + async, + base, + bytestring, + socket, + tasty, + tasty-hunit, + unix, + }: + mkDerivation { + pname = "socket-unix"; + version = "0.2.1.0"; + sha256 = "1f4lsqkh60d2111715qkjrgj7qv8hk3wrh0v6xzzkckvaaq41gyw"; + libraryHaskellDepends = [ + base + bytestring + socket ]; testHaskellDepends = [ - aeson - ansi-terminal - attoparsec + async base - blaze-builder bytestring - conduit - conduit-extra - http-types - HUnit - lifted-base - monad-control - mtl - QuickCheck - random - scientific - test-framework - test-framework-hunit - test-framework-quickcheck2 - text - transformers-base - unordered-containers - vector - wai - warp + socket + tasty + tasty-hunit + unix ]; - description = "Socket.IO server"; + description = "Unix domain sockets"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; } ) { }; @@ -623184,76 +360288,6 @@ self: { } ) { }; - "socketson" = callPackage ( - { - mkDerivation, - aeson, - base, - base64-bytestring, - bytestring, - cereal, - crypto-api, - data-default, - DRBG, - either, - errors, - http-types, - leveldb-haskell, - lifted-base, - mtl, - network, - text, - transformers, - transformers-base, - wai, - wai-websockets, - warp, - websockets, - }: - mkDerivation { - pname = "socketson"; - version = "0.1.0.0"; - sha256 = "0g19fvnh2z4x77d3gyh4cm59bvjaac37gkznl7kv6y0qq5i6dzvw"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson - base - base64-bytestring - bytestring - cereal - crypto-api - data-default - DRBG - either - errors - http-types - leveldb-haskell - lifted-base - mtl - text - transformers - transformers-base - wai - wai-websockets - warp - websockets - ]; - executableHaskellDepends = [ - aeson - base - bytestring - either - network - text - websockets - ]; - description = "A small websocket backend provider"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "socks" = callPackage ( { mkDerivation, @@ -623340,76 +360374,6 @@ self: { } ) { }; - "sodium" = callPackage ( - { - mkDerivation, - base, - containers, - mtl, - }: - mkDerivation { - pname = "sodium"; - version = "0.11.0.3"; - sha256 = "00qs1calial08a185ma5hm17lmmzig0yjf3710d5ikq1bmrgcqga"; - libraryHaskellDepends = [ - base - containers - mtl - ]; - description = "Sodium Reactive Programming (FRP) System"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "soegtk" = callPackage ( - { - mkDerivation, - base, - cairo, - gtk, - old-time, - stm, - }: - mkDerivation { - pname = "soegtk"; - version = "0.12.1"; - sha256 = "01f49hwxc5h85iwzgnddxlh1lmb3s27zddmghxrlq958gcrr2iar"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base - cairo - gtk - old-time - stm - ]; - description = "GUI functions as used in the book \"The Haskell School of Expression\""; - license = lib.licenses.lgpl21Only; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "softfloat-hs" = callPackage ( - { - mkDerivation, - base, - softfloat, - }: - mkDerivation { - pname = "softfloat-hs"; - version = "0.1.0"; - sha256 = "03ipzfr46gp6rz6vm8y3gwdpbpa6mxxmskcaz5ng8jpj570qq88k"; - libraryHaskellDepends = [ base ]; - librarySystemDepends = [ softfloat ]; - description = "Haskell bindings for SoftFloat"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { softfloat = null; }; - "solana-staking-csvs" = callPackage ( { mkDerivation, @@ -623470,185 +360434,6 @@ self: { } ) { }; - "solar" = callPackage ( - { - mkDerivation, - base, - time, - }: - mkDerivation { - pname = "solar"; - version = "0.1.0.0"; - sha256 = "1dyg4g89bxnik3hqzqbwmlv6278w8d6gpmjwm06af248vn34kvhk"; - revision = "1"; - editedCabalFile = "0r4786crxih8z4dwi0grpga2kp8ivvnmwa0lhddmn16bfqwa16s9"; - libraryHaskellDepends = [ - base - time - ]; - description = "Simple library for solar calculations"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "solga" = callPackage ( - { - mkDerivation, - aeson, - base, - bytestring, - containers, - hashable, - hspec, - hspec-wai, - hspec-wai-json, - http-types, - QuickCheck, - resourcet, - safe-exceptions, - scientific, - text, - unordered-containers, - vector, - wai, - wai-extra, - }: - mkDerivation { - pname = "solga"; - version = "0.1.0.2"; - sha256 = "0smh8j21s6m9yyp7ik1vdajw06nxwxgh27l4qq8x8mf8p9g85d7x"; - libraryHaskellDepends = [ - aeson - base - bytestring - containers - http-types - resourcet - safe-exceptions - text - wai - wai-extra - ]; - testHaskellDepends = [ - aeson - base - bytestring - hashable - hspec - hspec-wai - hspec-wai-json - http-types - QuickCheck - scientific - text - unordered-containers - vector - wai - wai-extra - ]; - description = "Simple typesafe web routing"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "solga-swagger" = callPackage ( - { - mkDerivation, - base, - bytestring, - dlist, - http-types, - insert-ordered-containers, - lens, - mtl, - solga, - swagger2, - text, - unordered-containers, - }: - mkDerivation { - pname = "solga-swagger"; - version = "0.1.0.2"; - sha256 = "1m1n4675lm2xggbkg8zplpziyx2rrv1cwgl46ngwx0hc149p7dyw"; - libraryHaskellDepends = [ - base - bytestring - dlist - http-types - insert-ordered-containers - lens - mtl - solga - swagger2 - text - unordered-containers - ]; - description = "Swagger generation for Solga"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "solr" = callPackage ( - { - mkDerivation, - attoparsec-data, - base, - base-prelude, - bytestring, - bytestring-tree-builder, - case-insensitive, - contravariant, - http-client, - http-client-tls, - http-response-decoder, - json-encoder, - json-incremental-decoder, - managed, - matcher, - optparse-applicative-simple, - profunctors, - semigroups, - text, - transformers, - uri-encode, - }: - mkDerivation { - pname = "solr"; - version = "0.4.3"; - sha256 = "00hq4gykcimwxa9zy3bmr4k4pxm13ryvfyq95yh4q28gy41wglk0"; - libraryHaskellDepends = [ - attoparsec-data - base - base-prelude - bytestring - bytestring-tree-builder - case-insensitive - contravariant - http-client - http-client-tls - http-response-decoder - json-encoder - json-incremental-decoder - managed - matcher - optparse-applicative-simple - profunctors - semigroups - text - transformers - uri-encode - ]; - description = "A minimal Solr client library"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "solve" = callPackage ( { mkDerivation, @@ -623768,55 +360553,6 @@ self: { } ) { }; - "sonic-visualiser" = callPackage ( - { - mkDerivation, - array, - base, - bytestring, - bzlib, - containers, - mtl, - pretty, - utf8-string, - xml, - }: - mkDerivation { - pname = "sonic-visualiser"; - version = "0.1.1"; - sha256 = "0gihsk7szq27ihhy9idiaslv164by23c9c70fhzwyqx3wk7z1aip"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - array - base - bytestring - bzlib - containers - mtl - pretty - utf8-string - xml - ]; - executableHaskellDepends = [ - array - base - bytestring - bzlib - containers - mtl - pretty - utf8-string - xml - ]; - description = "Sonic Visualiser"; - license = "GPL"; - hydraPlatforms = lib.platforms.none; - mainProgram = "svdump"; - broken = true; - } - ) { }; - "sop-core" = callPackage ( { mkDerivation, @@ -623952,20 +360688,6 @@ self: { } ) { }; - "sorted" = callPackage ( - { mkDerivation, base }: - mkDerivation { - pname = "sorted"; - version = "0.0.1"; - sha256 = "0rzcxhzc4s4sbdnysmjh1i8pd39jyx7a4hbhkarsp2qbx29s4h03"; - libraryHaskellDepends = [ base ]; - description = "Efficient, type-safe sorted sequences"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "sorted-list" = callPackage ( { mkDerivation, @@ -624050,20 +360772,6 @@ self: { } ) { }; - "sorting" = callPackage ( - { mkDerivation, base }: - mkDerivation { - pname = "sorting"; - version = "1.0.0.1"; - sha256 = "1i2vbmq7p7rja9rnhalyrspc2p5nc8yg6mfj9ia89j55vkc6225n"; - libraryHaskellDepends = [ base ]; - description = "Utils for sorting"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "sorting-network" = callPackage ( { mkDerivation, @@ -624102,30 +360810,6 @@ self: { } ) { }; - "sorty" = callPackage ( - { - mkDerivation, - base, - bytestring, - }: - mkDerivation { - pname = "sorty"; - version = "0.1.1"; - sha256 = "04bripdlc90rlkv5q6p44j10n7c1zdwv0ibiq5p365xijgribfaq"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - bytestring - ]; - description = "Sort lines per file size"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "sorty"; - broken = true; - } - ) { }; - "souffle-dsl" = callPackage ( { mkDerivation, @@ -624389,74 +361073,6 @@ self: { } ) { }; - "source-code-server" = callPackage ( - { - mkDerivation, - base, - bytestring, - containers, - curl, - data-default, - directory, - filepath, - hack, - hack-contrib, - hack-handler-happstack, - haskell98, - HDBC, - HDBC-sqlite3, - json, - loli, - mps, - mtl, - process, - safe, - StateVar, - stm, - template-haskell, - time, - unix, - }: - mkDerivation { - pname = "source-code-server"; - version = "2010.9.1"; - sha256 = "1934awipc837mdhkfa3ghmljxk0vb16wd4f31qdl4q9nxgwfv6c8"; - isLibrary = false; - isExecutable = true; - enableSeparateDataOutput = true; - executableHaskellDepends = [ - base - bytestring - containers - curl - data-default - directory - filepath - hack - hack-contrib - hack-handler-happstack - haskell98 - HDBC - HDBC-sqlite3 - json - loli - mps - mtl - process - safe - StateVar - stm - template-haskell - time - unix - ]; - description = "The server backend for the source code iPhone app"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "source-code-server"; - } - ) { }; - "source-constraints" = callPackage ( { mkDerivation, @@ -624551,47 +361167,6 @@ self: { } ) { }; - "sousit" = callPackage ( - { - mkDerivation, - base, - bytestring, - cereal, - mtl, - QuickCheck, - resourcet, - stm, - test-framework, - test-framework-quickcheck2, - transformers, - }: - mkDerivation { - pname = "sousit"; - version = "0.4"; - sha256 = "0vfgl4l3zwfsb2p5fds47bikyvfcsypmbjd1yvkjvi36x2g3pzwr"; - libraryHaskellDepends = [ - base - bytestring - cereal - mtl - resourcet - stm - transformers - ]; - testHaskellDepends = [ - base - mtl - QuickCheck - test-framework - test-framework-quickcheck2 - ]; - description = "Source/Sink/Transform: An alternative to lazy IO and iteratees"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "sox" = callPackage ( { mkDerivation, @@ -624668,46 +361243,6 @@ self: { } ) { inherit (pkgs) sox; }; - "soyuz" = callPackage ( - { - mkDerivation, - base, - bytestring, - cereal, - cmdargs, - containers, - pretty, - QuickCheck, - trifecta, - uniplate, - vector, - }: - mkDerivation { - pname = "soyuz"; - version = "0.0.0"; - sha256 = "1w8adkrics3jp8lc1gwjiwn4i94yfzxba13wf65qywhmdr9lcy3p"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - bytestring - cereal - cmdargs - containers - pretty - QuickCheck - trifecta - uniplate - vector - ]; - description = "DCPU-16 architecture utilities for Notch's 0x10c game"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - mainProgram = "soyuz"; - broken = true; - } - ) { }; - "space" = callPackage ( { mkDerivation, @@ -624876,27 +361411,6 @@ self: { } ) { }; - "spacepart" = callPackage ( - { - mkDerivation, - base, - vector-space, - }: - mkDerivation { - pname = "spacepart"; - version = "0.1.0.0"; - sha256 = "118wch92ix54jp1hi4qw9mk46571lnak4df8ji83bs2vz3vax6jp"; - libraryHaskellDepends = [ - base - vector-space - ]; - description = "Space partition data structures. Currently only a QuadTree."; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "spaceprobe" = callPackage ( { mkDerivation, @@ -625201,42 +361715,6 @@ self: { } ) { }; - "spanout" = callPackage ( - { - mkDerivation, - base, - containers, - gloss, - lens, - linear, - MonadRandom, - mtl, - netwire, - }: - mkDerivation { - pname = "spanout"; - version = "0.1"; - sha256 = "0qi1pm46fyrn4vv1b5kcwhd8im59nz5qil6z33r8wq16vv151qb4"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - containers - gloss - lens - linear - MonadRandom - mtl - netwire - ]; - description = "A breakout clone written in netwire and gloss"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "spanout"; - broken = true; - } - ) { }; - "sparkle" = callPackage ( { mkDerivation, @@ -625344,230 +361822,6 @@ self: { } ) { }; - "sparrow" = callPackage ( - { - mkDerivation, - aeson, - aeson-attoparsec, - async, - attoparsec, - attoparsec-uri, - base, - bytestring, - deepseq, - exceptions, - extractable-singleton, - hashable, - http-client, - http-client-tls, - http-types, - list-t, - monad-control, - monad-control-aligned, - mtl, - nested-routes, - path, - path-extra, - pred-trie, - purescript-iso, - stm, - strict, - text, - tmapchan, - tmapmvar, - transformers, - unordered-containers, - urlpath, - uuid, - wai, - wai-middleware-content-type, - wai-transformers, - websockets, - websockets-simple, - wuss, - }: - mkDerivation { - pname = "sparrow"; - version = "0.0.3.1"; - sha256 = "1rhmj14z9ypv9z5pg6494kbp4mr5906cpjgsrn1cc5rkgj1xlv59"; - libraryHaskellDepends = [ - aeson - aeson-attoparsec - async - attoparsec - attoparsec-uri - base - bytestring - deepseq - exceptions - extractable-singleton - hashable - http-client - http-client-tls - http-types - list-t - monad-control - monad-control-aligned - mtl - nested-routes - path - path-extra - pred-trie - purescript-iso - stm - strict - text - tmapchan - tmapmvar - transformers - unordered-containers - urlpath - uuid - wai - wai-middleware-content-type - wai-transformers - websockets - websockets-simple - wuss - ]; - description = "Unified streaming data-dependency framework for web apps"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "spars" = callPackage ( - { - mkDerivation, - base, - containers, - }: - mkDerivation { - pname = "spars"; - version = "0.1.0.0"; - sha256 = "1q1vpwrr96k41p9zj5x7mjd3817iq9a762q3jfqkwd0cb41iyka6"; - libraryHaskellDepends = [ - base - containers - ]; - description = "A sparse set-based parsing library for Haskell"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "sparse" = callPackage ( - { - mkDerivation, - array, - base, - bytestring, - containers, - contravariant, - criterion, - deepseq, - directory, - doctest, - filepath, - hlint, - hybrid-vectors, - lens, - linear, - mtl, - primitive, - QuickCheck, - semigroups, - simple-reflect, - test-framework, - test-framework-quickcheck2, - test-framework-th, - transformers, - vector, - vector-algorithms, - }: - mkDerivation { - pname = "sparse"; - version = "0.9.2"; - sha256 = "0ckjmpnav3rd40ylksrwc0awy4pigv6ngm15z1k6sicw73iyl3pd"; - libraryHaskellDepends = [ - base - contravariant - deepseq - hybrid-vectors - lens - primitive - transformers - vector - vector-algorithms - ]; - testHaskellDepends = [ - base - bytestring - containers - deepseq - directory - doctest - filepath - hlint - hybrid-vectors - lens - linear - mtl - QuickCheck - semigroups - simple-reflect - test-framework - test-framework-quickcheck2 - test-framework-th - transformers - vector - ]; - benchmarkHaskellDepends = [ - array - base - criterion - deepseq - vector - ]; - description = "A playground of sparse linear algebra primitives using Morton ordering"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "sparse-lin-alg" = callPackage ( - { - mkDerivation, - base, - containers, - QuickCheck, - test-framework, - test-framework-quickcheck2, - }: - mkDerivation { - pname = "sparse-lin-alg"; - version = "0.4.3"; - sha256 = "1255q13mb6196i3hv1i41agifg1x1840z535mx48jjkln297gmc9"; - libraryHaskellDepends = [ - base - containers - ]; - testHaskellDepends = [ - base - containers - QuickCheck - test-framework - test-framework-quickcheck2 - ]; - description = "Effective linear algebra on sparse matrices"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "sparse-linear-algebra" = callPackage ( { mkDerivation, @@ -625805,47 +362059,6 @@ self: { } ) { }; - "sparsebit" = callPackage ( - { - mkDerivation, - base, - haskell98, - }: - mkDerivation { - pname = "sparsebit"; - version = "0.5"; - sha256 = "1a4gsnmr1y8b05iws2vrmjqbs5y9svfsz0jb3k19dddn1aszzm07"; - libraryHaskellDepends = [ - base - haskell98 - ]; - description = "Sparse bitmaps for pattern match coverage"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "sparsecheck" = callPackage ( - { - mkDerivation, - base, - containers, - }: - mkDerivation { - pname = "sparsecheck"; - version = "0.1.0.3"; - sha256 = "19h9vy7arhi35rqafbq3nf9a50vnlw5mbfwvl6sp1j61w0yxai95"; - libraryHaskellDepends = [ - base - containers - ]; - description = "A Logic Programming Library for Test-Data Generation"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "sparser" = callPackage ( { mkDerivation, @@ -625912,72 +362125,6 @@ self: { } ) { }; - "spata" = callPackage ( - { - mkDerivation, - base, - dlist, - mps, - mtl, - }: - mkDerivation { - pname = "spata"; - version = "2010.10.10"; - sha256 = "1cr0d82l2b96jvszca4yavdgwq450yzigcyrrlddrf9m9908kkzy"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base - dlist - mps - mtl - ]; - description = "brainless form validation"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "spatial-math" = callPackage ( - { - mkDerivation, - base, - binary, - cereal, - doctest, - ghc-prim, - lens, - linear, - QuickCheck, - test-framework, - test-framework-quickcheck2, - TypeCompose, - }: - mkDerivation { - pname = "spatial-math"; - version = "0.5.0.1"; - sha256 = "0454q9laaasdqrd74cjcxfcl5z7jcfvnzpdg81gl58y2ay8z4769"; - libraryHaskellDepends = [ - base - binary - cereal - ghc-prim - lens - linear - TypeCompose - ]; - testHaskellDepends = [ - base - doctest - QuickCheck - test-framework - test-framework-quickcheck2 - ]; - description = "3d math including quaternions/euler angles/dcms and utility functions"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "spatial-rotations" = callPackage ( { mkDerivation, @@ -626118,70 +362265,6 @@ self: { } ) { }; - "special-functors" = callPackage ( - { - mkDerivation, - base, - mtl, - }: - mkDerivation { - pname = "special-functors"; - version = "1.0.0.1"; - sha256 = "0c68af104qxn9lhzshcy9s466q10n3ic7q4navqi53mmmmznivrd"; - libraryHaskellDepends = [ - base - mtl - ]; - description = "Control.Applicative, Data.Foldable, Data.Traversable (compatibility package)"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "special-keys" = callPackage ( - { - mkDerivation, - aeson, - base, - blaze-markup, - bytestring, - cereal, - deepseq, - hashable, - mwc-random, - path-pieces, - primitive, - safecopy, - text, - uuid, - }: - mkDerivation { - pname = "special-keys"; - version = "0.1.0.3"; - sha256 = "0r66rzyh9m9wsy8mhyq09ar0zbalfyr627z9xrxny8242nbsygpy"; - libraryHaskellDepends = [ - aeson - base - blaze-markup - bytestring - cereal - deepseq - hashable - mwc-random - path-pieces - primitive - safecopy - text - uuid - ]; - description = "Simple data types that help me here and there"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "special-values" = callPackage ( { mkDerivation, @@ -626209,76 +362292,6 @@ self: { } ) { }; - "specialize-th" = callPackage ( - { - mkDerivation, - base, - checkers, - composition, - DebugTraceHelpers, - derive, - HUnit, - MissingH, - mtl, - newtype, - newtype-th, - QuickCheck, - template-haskell, - test-framework, - test-framework-hunit, - test-framework-quickcheck2, - th-expand-syns, - tuple, - type-sub-th, - uniplate, - universe-th, - }: - mkDerivation { - pname = "specialize-th"; - version = "0.0.0.8"; - sha256 = "1b9bs08zja8id739zf0q47y91aq10gjr1ikbf7rvzav9i3w6djnc"; - libraryHaskellDepends = [ - base - composition - derive - MissingH - mtl - newtype - newtype-th - template-haskell - th-expand-syns - tuple - type-sub-th - uniplate - universe-th - ]; - testHaskellDepends = [ - base - checkers - composition - DebugTraceHelpers - derive - HUnit - MissingH - mtl - newtype - newtype-th - QuickCheck - template-haskell - test-framework - test-framework-hunit - test-framework-quickcheck2 - th-expand-syns - type-sub-th - uniplate - universe-th - ]; - description = "Create specialized types from polymorphic ones using TH"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "species" = callPackage ( { mkDerivation, @@ -626364,42 +362377,6 @@ self: { } ) { }; - "spectral-clustering" = callPackage ( - { - mkDerivation, - base, - clustering, - containers, - hmatrix, - hmatrix-svdlibc, - mwc-random, - safe, - sparse-linear-algebra, - statistics, - vector, - }: - mkDerivation { - pname = "spectral-clustering"; - version = "0.3.2.2"; - sha256 = "03f4mdrrfdivf0ynk4rfl64mng4nd82k8a64p05b3bymvd8lsdhn"; - libraryHaskellDepends = [ - base - clustering - containers - hmatrix - hmatrix-svdlibc - mwc-random - safe - sparse-linear-algebra - statistics - vector - ]; - description = "Library for spectral clustering"; - license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "speculate" = callPackage ( { mkDerivation, @@ -626430,45 +362407,6 @@ self: { } ) { }; - "speculation" = callPackage ( - { - mkDerivation, - base, - ghc-prim, - stm, - transformers, - }: - mkDerivation { - pname = "speculation"; - version = "1.5.0.3"; - sha256 = "0gsdxgi1bw33z7v23m2fq8ynqxz06swjv4ikl8mqmlp0hwd69gvk"; - libraryHaskellDepends = [ - base - ghc-prim - stm - transformers - ]; - description = "A framework for safe, programmable, speculative parallelism"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "speculation-transformers" = callPackage ( - { mkDerivation, speculation }: - mkDerivation { - pname = "speculation-transformers"; - version = "0.1.2"; - sha256 = "0050iy5q9m1ylkhbbnpff7yl99917pa46pgvj76isij4lvdl4f5a"; - libraryHaskellDepends = [ speculation ]; - doHaddock = false; - description = "Merged into 'speculation'. Use that instead."; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "specup" = callPackage ( { mkDerivation, @@ -626523,85 +362461,6 @@ self: { } ) { }; - "speechmatics" = callPackage ( - { - mkDerivation, - aeson, - base, - bytestring, - heavy-logger, - HsOpenSSL, - hspec, - http-client, - http-client-openssl, - http-types, - json-autotype, - lens, - mime-types, - monad-control, - mtl, - neat-interpolation, - options, - SHA, - split, - text, - text-format-heavy, - wreq, - }: - mkDerivation { - pname = "speechmatics"; - version = "0.7.2.0"; - sha256 = "0i8xmlk0czqkshkdmnskqp7xpy45ads1x7yzdjn9p5mn0z46h7vb"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson - base - bytestring - heavy-logger - HsOpenSSL - http-client - http-client-openssl - http-types - json-autotype - lens - mime-types - monad-control - mtl - split - text - text-format-heavy - wreq - ]; - executableHaskellDepends = [ - aeson - base - bytestring - heavy-logger - mime-types - mtl - options - SHA - text - text-format-heavy - ]; - testHaskellDepends = [ - base - bytestring - heavy-logger - hspec - mtl - neat-interpolation - text - text-format-heavy - ]; - description = "Speechmatics api client"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "speechmatics"; - } - ) { }; - "speedy-slice" = callPackage ( { mkDerivation, @@ -626640,41 +362499,6 @@ self: { } ) { }; - "spelling-suggest" = callPackage ( - { - mkDerivation, - base, - edit-distance, - parseargs, - phonetic-code, - sqlite, - }: - mkDerivation { - pname = "spelling-suggest"; - version = "0.5.2.1"; - sha256 = "0n0b2lbvj3pjg841pdw7pb09cpkz2d186dd4pmabjnm6r6wabm2n"; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base - edit-distance - phonetic-code - sqlite - ]; - executableHaskellDepends = [ - base - edit-distance - parseargs - phonetic-code - sqlite - ]; - description = "Spelling suggestion tool with library and command-line interfaces"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "spherical" = callPackage ( { mkDerivation, @@ -626694,34 +362518,6 @@ self: { } ) { }; - "sphero" = callPackage ( - { - mkDerivation, - base, - bytestring, - cereal, - containers, - mtl, - simple-bluetooth, - }: - mkDerivation { - pname = "sphero"; - version = "0.1.0.0"; - sha256 = "1b5i6zpp3xz8jcvs44g97iyam5vcig3fpy0hcsldg51cm762sv48"; - libraryHaskellDepends = [ - base - bytestring - cereal - containers - mtl - simple-bluetooth - ]; - description = "Orbotix Sphero client library"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "sphinx" = callPackage ( { mkDerivation, @@ -626755,99 +362551,6 @@ self: { } ) { }; - "sphinx-cli" = callPackage ( - { - mkDerivation, - base, - sphinx, - }: - mkDerivation { - pname = "sphinx-cli"; - version = "0.1"; - sha256 = "08fqfmd6462skjywv2j4ilnmpbzr28d6vwmb187w3sv0byvvjzw3"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - sphinx - ]; - description = "Sphinx CLI and demo of Haskell Sphinx library"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "sphinx-cli"; - broken = true; - } - ) { }; - - "sphinxesc" = callPackage ( - { - mkDerivation, - base, - MissingH, - optparse-applicative, - parsec, - split, - }: - mkDerivation { - pname = "sphinxesc"; - version = "0.1.0.1"; - sha256 = "0z7ajywi6hikir87dbyvsjq8c5p8smnvg41r7r7v3xvkfd454sgj"; - revision = "1"; - editedCabalFile = "0ji2y91fgyxa5h02fk6m03g9xsv7midl0sdzjw79g89m1f8pncc5"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - MissingH - parsec - split - ]; - executableHaskellDepends = [ - base - optparse-applicative - ]; - description = "Transform queries for sphinx input"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - mainProgram = "sphinxesc"; - broken = true; - } - ) { }; - - "spice" = callPackage ( - { - mkDerivation, - base, - bytestring, - containers, - data-default, - elerea, - GLFW, - JuicyPixels, - JuicyPixels-repa, - OpenGL, - }: - mkDerivation { - pname = "spice"; - version = "0.5.0.0"; - sha256 = "1xs09ipg9l38nq3kxpdyv6643ywivhw87w6il0q9bzhng4rpfj6g"; - libraryHaskellDepends = [ - base - bytestring - containers - data-default - elerea - GLFW - JuicyPixels - JuicyPixels-repa - OpenGL - ]; - description = "An FRP-based game engine written in Haskell"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "spike" = callPackage ( { mkDerivation, @@ -626923,84 +362626,6 @@ self: { } ) { }; - "spiros" = callPackage ( - { - mkDerivation, - base, - bytestring, - case-insensitive, - containers, - cpuinfo, - data-default-class, - deepseq, - directory, - doctest, - exceptions, - filepath, - generic-deriving, - hashable, - mtl, - prettyprinter, - process, - safe, - semigroups, - split, - stm, - string-conv, - template-haskell, - text, - th-lift-instances, - time, - transformers, - unix-compat, - unordered-containers, - }: - mkDerivation { - pname = "spiros"; - version = "0.4.2"; - sha256 = "0wgyqy2kdjzb481c24hcgbsc8wllb3z1w3kk2nqv3isj5kbjr3c3"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - bytestring - case-insensitive - containers - cpuinfo - data-default-class - deepseq - directory - exceptions - filepath - generic-deriving - hashable - mtl - prettyprinter - process - safe - semigroups - split - stm - string-conv - template-haskell - text - th-lift-instances - time - transformers - unix-compat - unordered-containers - ]; - testHaskellDepends = [ - base - doctest - ]; - description = "Spiros Boosalis's Custom Prelude"; - license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "spirv-enum" = callPackage ( { mkDerivation, base }: mkDerivation { @@ -627123,20 +362748,6 @@ self: { } ) { }; - "splay" = callPackage ( - { mkDerivation, base }: - mkDerivation { - pname = "splay"; - version = "0.0.6"; - sha256 = "1mq5n62lg2jbhzbl1py7yhnhdyxa0gn2xmihb9cm5r7p75p5wacl"; - libraryHaskellDepends = [ base ]; - description = "Generic splay-based sequence representation"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "splaytree" = callPackage ( { mkDerivation, @@ -627205,52 +362816,6 @@ self: { } ) { }; - "splines" = callPackage ( - { - mkDerivation, - base, - containers, - criterion, - polynomial, - QuickCheck, - test-framework, - test-framework-quickcheck2, - vector, - vector-space, - }: - mkDerivation { - pname = "splines"; - version = "0.5.0.1"; - sha256 = "1bq5m8izvkrw21v9anp381rrq41svsmkxa0fk86ncm0lkaj09l5b"; - libraryHaskellDepends = [ - base - containers - polynomial - vector - vector-space - ]; - testHaskellDepends = [ - base - containers - polynomial - QuickCheck - test-framework - test-framework-quickcheck2 - vector - vector-space - ]; - benchmarkHaskellDepends = [ - base - criterion - polynomial - vector - ]; - description = "B-Splines, other splines, and NURBS"; - license = lib.licenses.publicDomain; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "splint" = callPackage ( { mkDerivation, @@ -627308,36 +362873,6 @@ self: { } ) { }; - "split-morphism" = callPackage ( - { - mkDerivation, - base, - invariant, - lens, - QuickCheck, - }: - mkDerivation { - pname = "split-morphism"; - version = "0.1.0.1"; - sha256 = "0j7z4im0f0dblx8jzia21f3zg5qi2b3lpd9qf7w4ns8rhk4ycr58"; - libraryHaskellDepends = [ - base - invariant - lens - ]; - testHaskellDepends = [ - base - invariant - lens - QuickCheck - ]; - description = "Split Epimorphisms and Monomorphisms"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "split-record" = callPackage ( { mkDerivation, @@ -627520,80 +363055,6 @@ self: { } ) { }; - "splitter" = callPackage ( - { - mkDerivation, - base, - directory, - filepath, - parsec, - range, - }: - mkDerivation { - pname = "splitter"; - version = "0.1.0.0"; - sha256 = "1nibmm0ab7a2j9rdmnphzz2svc3xfq268jbn23a403465s0v6sq6"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - directory - filepath - parsec - range - ]; - description = "Use numerical ranges to split out certain lines from a file"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - mainProgram = "splitter"; - broken = true; - } - ) { }; - - "splot" = callPackage ( - { - mkDerivation, - base, - bytestring, - bytestring-lexing, - cairo, - colour, - containers, - HUnit, - mtl, - strptime, - template-haskell, - time, - vcs-revision, - }: - mkDerivation { - pname = "splot"; - version = "0.3.14"; - sha256 = "1vbqw5qv0yjmz9vlpg5y3r8054q7rz2pqyrgbc6aq8csx6xv5f3p"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - bytestring - bytestring-lexing - cairo - colour - containers - HUnit - mtl - strptime - template-haskell - time - vcs-revision - ]; - description = "A tool for visualizing the lifecycle of many concurrent multi-staged processes"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "splot"; - broken = true; - } - ) { }; - "spooky" = callPackage ( { mkDerivation, base }: mkDerivation { @@ -627650,36 +363111,6 @@ self: { } ) { }; - "spoonutil" = callPackage ( - { - mkDerivation, - base, - directory, - extensible-exceptions, - filepath, - parsec, - }: - mkDerivation { - pname = "spoonutil"; - version = "0.0.1"; - sha256 = "0xkarfm0c0931dz6yjs7pb5s2zizz1psnx9gfri5jq16skxk2nhd"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - directory - extensible-exceptions - filepath - parsec - ]; - description = "Spoon's utilities. Simple testing and nice looking error reporting."; - license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - mainProgram = "test"; - broken = true; - } - ) { }; - "spork" = callPackage ( { mkDerivation, @@ -627810,41 +363241,6 @@ self: { } ) { }; - "spoty" = callPackage ( - { - mkDerivation, - aeson, - base, - bytestring, - lens, - lens-aeson, - pipes, - text, - unordered-containers, - wreq, - }: - mkDerivation { - pname = "spoty"; - version = "0.1.0.2"; - sha256 = "0p1mn8yixlyj2al98mxzs10m0klqqmmdfjcwc9xax97xp4ixjcm3"; - libraryHaskellDepends = [ - aeson - base - bytestring - lens - lens-aeson - pipes - text - unordered-containers - wreq - ]; - description = "Spotify web API wrapper"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "spreadsheet" = callPackage ( { mkDerivation, @@ -627870,546 +363266,16 @@ self: { transformers utility-ht ]; - testHaskellDepends = [ - base - doctest-exitcode-stdio - doctest-lib - explicit-exception - QuickCheck - ]; - description = "Read and write spreadsheets from and to CSV files in a lazy way"; - license = lib.licenses.bsd3; - maintainers = [ lib.maintainers.thielema ]; - } - ) { }; - - "sprinkles" = callPackage ( - { - mkDerivation, - aeson, - aeson-pretty, - array, - async, - base, - base64-bytestring, - bcrypt, - bytestring, - Cabal, - case-insensitive, - cereal, - containers, - css-syntax, - curl, - data-default, - directory, - extra, - file-embed, - filepath, - ginger, - Glob, - hashable, - HDBC, - HDBC-mysql, - HDBC-postgresql, - HDBC-sqlite3, - heredoc, - hsyslog, - HTTP, - http-types, - lens, - memcache, - mime-types, - mtl, - network-uri, - nonce, - pandoc, - pandoc-types, - parsec, - process, - random, - random-shuffle, - regex-base, - regex-pcre, - safe, - scientific, - SHA, - split, - stm, - system-locale, - tagsoup, - tasty, - tasty-hunit, - tasty-quickcheck, - template-haskell, - temporary, - text, - time, - transformers, - unix-compat, - unix-time, - unordered-containers, - utf8-string, - vector, - wai, - wai-extra, - wai-handler-fastcgi, - warp, - yaml, - yeshql-hdbc, - }: - mkDerivation { - pname = "sprinkles"; - version = "0.6.0.0"; - sha256 = "0kc4zg3brys6w7ccih74k4drsrahkbr66islgv1kjqpbkjfh5bk7"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson - aeson-pretty - array - base - base64-bytestring - bcrypt - bytestring - Cabal - case-insensitive - cereal - containers - css-syntax - curl - data-default - directory - extra - file-embed - filepath - ginger - Glob - hashable - HDBC - HDBC-mysql - HDBC-postgresql - HDBC-sqlite3 - heredoc - hsyslog - HTTP - http-types - lens - memcache - mime-types - mtl - network-uri - nonce - pandoc - pandoc-types - parsec - process - random - random-shuffle - regex-base - regex-pcre - safe - scientific - SHA - split - stm - system-locale - tagsoup - template-haskell - text - time - transformers - unix-compat - unix-time - unordered-containers - utf8-string - vector - wai - wai-extra - wai-handler-fastcgi - warp - yaml - yeshql-hdbc - ]; - executableHaskellDepends = [ - async - base - data-default - parsec - safe - text - ]; - testHaskellDepends = [ - base - data-default - directory - filepath - heredoc - regex-base - regex-pcre - tasty - tasty-hunit - tasty-quickcheck - temporary - wai-extra - ]; - description = "JSON API to HTML website wrapper"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "sprinkles"; - } - ) { }; - - "spritz" = callPackage ( - { - mkDerivation, - base, - lens, - mtl, - vector, - }: - mkDerivation { - pname = "spritz"; - version = "0.1.0.0"; - sha256 = "1syv2l0z7c2s6bbi5103i4var40j8pavahiic813v8m9s6waa4fk"; - libraryHaskellDepends = [ - base - lens - mtl - vector - ]; - description = "An implementation of the Spritz RC4-like stream cipher in Haskell"; - license = lib.licenses.bsd2; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "sproxy" = callPackage ( - { - mkDerivation, - aeson, - attoparsec, - base, - base64-bytestring, - bytestring, - containers, - data-default, - docopt, - entropy, - http-conduit, - http-kit, - http-types, - interpolatedstring-perl6, - network, - postgresql-simple, - resource-pool, - SHA, - split, - text, - time, - tls, - unix, - utf8-string, - x509, - yaml, - }: - mkDerivation { - pname = "sproxy"; - version = "0.9.9"; - sha256 = "027vn7xqk7r15130hc6xikg2hyliqmg14y7n3wrrqaxvd4saa6qn"; - isLibrary = false; - isExecutable = true; - enableSeparateDataOutput = true; - executableHaskellDepends = [ - aeson - attoparsec - base - base64-bytestring - bytestring - containers - data-default - docopt - entropy - http-conduit - http-kit - http-types - interpolatedstring-perl6 - network - postgresql-simple - resource-pool - SHA - split - text - time - tls - unix - utf8-string - x509 - yaml - ]; - description = "HTTP proxy for authenticating users via OAuth2"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - mainProgram = "sproxy"; - } - ) { }; - - "sproxy-web" = callPackage ( - { - mkDerivation, - aeson, - base, - blaze-html, - blaze-markup, - bytestring, - data-default-class, - directory, - docopt, - fast-logger, - filepath, - http-types, - interpolatedstring-perl6, - mtl, - network, - postgresql-simple, - resource-pool, - scotty, - text, - unix, - wai, - wai-extra, - wai-middleware-static, - warp, - }: - mkDerivation { - pname = "sproxy-web"; - version = "0.4.1"; - sha256 = "0jvkvk5yqp4gibg61q67iczaqvfszikxvvgf04fg6xs23gjkpihp"; - isLibrary = false; - isExecutable = true; - enableSeparateDataOutput = true; - executableHaskellDepends = [ - aeson - base - blaze-html - blaze-markup - bytestring - data-default-class - directory - docopt - fast-logger - filepath - http-types - interpolatedstring-perl6 - mtl - network - postgresql-simple - resource-pool - scotty - text - unix - wai - wai-extra - wai-middleware-static - warp - ]; - description = "Web interface to sproxy database"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - mainProgram = "sproxy-web"; - broken = true; - } - ) { }; - - "sproxy2" = callPackage ( - { - mkDerivation, - aeson, - base, - base64-bytestring, - blaze-builder, - bytestring, - cereal, - conduit, - cookie, - docopt, - entropy, - Glob, - http-client, - http-conduit, - http-types, - interpolatedstring-perl6, - network, - postgresql-simple, - resource-pool, - SHA, - sqlite-simple, - text, - time, - unix, - unordered-containers, - wai, - wai-conduit, - warp, - warp-tls, - word8, - yaml, - }: - mkDerivation { - pname = "sproxy2"; - version = "1.97.1"; - sha256 = "1rbklqbmp0j9wy60j03bccbc0czd4s4ki8bl3l93p8mvkv55hcx4"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - aeson - base - base64-bytestring - blaze-builder - bytestring - cereal - conduit - cookie - docopt - entropy - Glob - http-client - http-conduit - http-types - interpolatedstring-perl6 - network - postgresql-simple - resource-pool - SHA - sqlite-simple - text - time - unix - unordered-containers - wai - wai-conduit - warp - warp-tls - word8 - yaml - ]; - description = "Secure HTTP proxy for authenticating users via OAuth2"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - mainProgram = "sproxy2"; - broken = true; - } - ) { }; - - "spsa" = callPackage ( - { - mkDerivation, - base, - criterion, - hmatrix, - HUnit, - mtl, - QuickCheck, - random, - test-framework, - test-framework-hunit, - test-framework-quickcheck2, - }: - mkDerivation { - pname = "spsa"; - version = "0.2.0.0"; - sha256 = "0jj08bkvmg8cj0lp7j8sd2ksanyrr5i2xxcz4kfwkrlyf8zhqxrh"; - libraryHaskellDepends = [ - base - hmatrix - mtl - random - ]; - testHaskellDepends = [ - base - hmatrix - HUnit - QuickCheck - random - test-framework - test-framework-hunit - test-framework-quickcheck2 - ]; - benchmarkHaskellDepends = [ - base - criterion - hmatrix - random - ]; - description = "Simultaneous Perturbation Stochastic Approximation Optimization Algorithm"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "spy" = callPackage ( - { - mkDerivation, - base, - cmdargs, - directory, - filemanip, - filepath, - fsnotify, - HUnit, - json, - process, - QuickCheck, - system-filepath, - test-framework, - test-framework-hunit, - test-framework-quickcheck2, - time, - unix, - }: - mkDerivation { - pname = "spy"; - version = "0.14"; - sha256 = "1xb50nn0dhxsy9y0yci2z5rnmbv1ms9f4ab0ywdvql2dam70hmy2"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - cmdargs - directory - filemanip - filepath - fsnotify - json - process - system-filepath - time - unix - ]; - testHaskellDepends = [ - base - cmdargs - directory - filemanip - filepath - fsnotify - HUnit - json - process + testHaskellDepends = [ + base + doctest-exitcode-stdio + doctest-lib + explicit-exception QuickCheck - system-filepath - test-framework - test-framework-hunit - test-framework-quickcheck2 - time - unix ]; - description = "A compact file system watcher for Mac OS X, Linux and Windows"; + description = "Read and write spreadsheets from and to CSV files in a lazy way"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "spy"; - broken = true; + maintainers = [ lib.maintainers.thielema ]; } ) { }; @@ -628655,143 +363521,6 @@ self: { } ) { }; - "sql-simple" = callPackage ( - { - mkDerivation, - base, - containers, - exceptions, - monad-control, - text, - transformers, - transformers-base, - }: - mkDerivation { - pname = "sql-simple"; - version = "0.3.1"; - sha256 = "1vhg8ijpa64qalgza5sr3j8y1ihk6ys5lyf34vwcmjv8nlpyhpwh"; - libraryHaskellDepends = [ - base - containers - exceptions - monad-control - text - transformers - transformers-base - ]; - description = "common middle-level sql client"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "sql-simple-mysql" = callPackage ( - { - mkDerivation, - base, - data-default-class, - mysql, - mysql-simple, - sql-simple, - text, - }: - mkDerivation { - pname = "sql-simple-mysql"; - version = "0.3.0"; - sha256 = "1i9xgzl3pjxii4mgx8az5gmygxq2vn1km7kmndwy07qkh26ynd7p"; - libraryHaskellDepends = [ - base - data-default-class - mysql - mysql-simple - sql-simple - text - ]; - description = "mysql backend for sql-simple"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "sql-simple-pool" = callPackage ( - { - mkDerivation, - base, - data-default-class, - monad-control, - resource-pool, - sql-simple, - text, - time, - }: - mkDerivation { - pname = "sql-simple-pool"; - version = "0.3.0"; - sha256 = "14pradqy01vsd2cngvcbwvrwq5r3c5a00awi6j5vmkb51dycizh9"; - libraryHaskellDepends = [ - base - data-default-class - monad-control - resource-pool - sql-simple - text - time - ]; - description = "conection pool for sql-simple"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "sql-simple-postgresql" = callPackage ( - { - mkDerivation, - base, - data-default-class, - postgresql-simple, - sql-simple, - text, - }: - mkDerivation { - pname = "sql-simple-postgresql"; - version = "0.3.0"; - sha256 = "0dk2829zkcwxyqw0p2nsrm9gw527cmggdslhflrylg8xr1ag6zs1"; - libraryHaskellDepends = [ - base - data-default-class - postgresql-simple - sql-simple - text - ]; - description = "postgresql backend for sql-simple"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "sql-simple-sqlite" = callPackage ( - { - mkDerivation, - base, - sql-simple, - sqlite-simple, - }: - mkDerivation { - pname = "sql-simple-sqlite"; - version = "0.3.0"; - sha256 = "07ji17b4q9b8w9q9r8digb218qkjcrxfc24113p0f3pmgbwci3f1"; - libraryHaskellDepends = [ - base - sql-simple - sqlite-simple - ]; - description = "sqlite backend for sql-simple"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "sql-words" = callPackage ( { mkDerivation, @@ -628880,101 +363609,6 @@ self: { } ) { }; - "sqlcipher" = callPackage ( - { - mkDerivation, - base, - bytestring, - Cabal, - directory, - filepath, - hspec, - openssl, - pretty, - temporary, - time, - utf8-string, - }: - mkDerivation { - pname = "sqlcipher"; - version = "1.0.1.2"; - sha256 = "0dcr98yv7sgrhk2wnfidf7gfsi1g6i7d4df3a9b0kcxl01gda548"; - setupHaskellDepends = [ - base - Cabal - directory - ]; - libraryHaskellDepends = [ - base - bytestring - directory - pretty - time - utf8-string - ]; - librarySystemDepends = [ openssl ]; - testHaskellDepends = [ - base - filepath - hspec - temporary - ]; - description = "Haskell binding to sqlcipher"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { inherit (pkgs) openssl; }; - - "sqlcli" = callPackage ( - { - mkDerivation, - base, - logging, - text, - transformers, - unixODBC, - }: - mkDerivation { - pname = "sqlcli"; - version = "0.2.2.0"; - sha256 = "1kscw8l14cx7q55vq72vg8ydfz19s41prdlbg9b11fhzv691iwgd"; - libraryHaskellDepends = [ - base - logging - text - transformers - ]; - librarySystemDepends = [ unixODBC ]; - description = "Bindings for SQL/CLI (ODBC) C API"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { inherit (pkgs) unixODBC; }; - - "sqlcli-odbc" = callPackage ( - { - mkDerivation, - base, - logging, - sqlcli, - }: - mkDerivation { - pname = "sqlcli-odbc"; - version = "0.2.0.1"; - sha256 = "1rfhdaa0wmvc78nbjhi93p9sv66xa6rjr79yyhlkqi1d335b8vb5"; - libraryHaskellDepends = [ - base - logging - sqlcli - ]; - description = "ODBC specific definitions to be used by SQL CLI clients"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "sqlite" = callPackage ( { mkDerivation, @@ -629113,38 +363747,6 @@ self: { } ) { }; - "sqlite-simple-errors" = callPackage ( - { - mkDerivation, - base, - mtl, - parsec, - sqlite-simple, - text, - }: - mkDerivation { - pname = "sqlite-simple-errors"; - version = "0.6.1.0"; - sha256 = "0vvim8zcrl3yqhf30j69x59qs5f6sdx5bvy4ihwmimkldm5gh0ai"; - libraryHaskellDepends = [ - base - parsec - sqlite-simple - text - ]; - testHaskellDepends = [ - base - mtl - sqlite-simple - text - ]; - description = "Wrapper around errors from sqlite-simple"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "sqlite-simple-interpolate" = callPackage ( { mkDerivation, @@ -629173,108 +363775,6 @@ self: { } ) { }; - "sqlite-simple-typed" = callPackage ( - { - mkDerivation, - base, - haskell-src-meta, - sqlite, - sqlite-simple, - template-haskell, - typedquery, - utf8-string, - }: - mkDerivation { - pname = "sqlite-simple-typed"; - version = "0.1.0.0"; - sha256 = "00flij4wv8ga0bpnnai6gwwga1fkra9kr3y9yw30j7czwl5r2h0r"; - libraryHaskellDepends = [ - base - haskell-src-meta - sqlite - sqlite-simple - template-haskell - typedquery - utf8-string - ]; - description = "Typed extension to sqlite simple"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "sqlvalue-list" = callPackage ( - { - mkDerivation, - base, - convertible, - HDBC, - template-haskell, - }: - mkDerivation { - pname = "sqlvalue-list"; - version = "0.2"; - sha256 = "1r9y3p355rl57pnm84flx734zzjxnnc53fkcfdkykxi5wi5j05v0"; - libraryHaskellDepends = [ - base - convertible - HDBC - template-haskell - ]; - description = "Class and instances for conversion to list of SqlValue"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "sqsd-local" = callPackage ( - { - mkDerivation, - amazonka, - amazonka-sqs, - base, - bytestring, - case-insensitive, - exceptions, - http-client, - lens, - lifted-base, - resourcet, - text, - unordered-containers, - wreq, - }: - mkDerivation { - pname = "sqsd-local"; - version = "0.2.0"; - sha256 = "0xms9blzm94bjj104n0pgsbcpa26a2v4shai2i58p55q7hw3g44h"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - amazonka - amazonka-sqs - base - bytestring - case-insensitive - exceptions - http-client - lens - lifted-base - resourcet - text - unordered-containers - wreq - ]; - testHaskellDepends = [ base ]; - description = "Initial project template from stack"; - license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; - mainProgram = "sqsd-local"; - broken = true; - } - ) { }; - "squares" = callPackage ( { mkDerivation, @@ -629562,62 +364062,6 @@ self: { } ) { }; - "squeeze" = callPackage ( - { - mkDerivation, - base, - Cabal, - data-default, - directory, - extra, - factory, - filepath, - mtl, - QuickCheck, - random, - toolshed, - }: - mkDerivation { - pname = "squeeze"; - version = "1.0.4.19"; - sha256 = "0zb4nbgwlifzaw28g09qhvvjk8a795zww0b746bj98wgzyxp6a50"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - Cabal - data-default - directory - factory - filepath - mtl - toolshed - ]; - executableHaskellDepends = [ - base - Cabal - data-default - factory - filepath - mtl - random - toolshed - ]; - testHaskellDepends = [ - base - Cabal - extra - factory - QuickCheck - toolshed - ]; - description = "A file-packing application"; - license = "GPL"; - hydraPlatforms = lib.platforms.none; - mainProgram = "squeeze"; - } - ) { }; - "sr-extra" = callPackage ( { mkDerivation, @@ -629727,44 +364171,6 @@ self: { } ) { }; - "srcinst" = callPackage ( - { - mkDerivation, - base, - directory, - hslogger, - MissingH, - network, - parsec, - process, - regex-compat, - unix, - }: - mkDerivation { - pname = "srcinst"; - version = "0.8.10"; - sha256 = "05ydsh4ippapxcx7j3fq8s64qiskcrmndgvilxkdp4qhxyi80gj9"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - directory - hslogger - MissingH - network - parsec - process - regex-compat - unix - ]; - description = "Build and install Debian packages completely from source"; - license = "GPL"; - hydraPlatforms = lib.platforms.none; - mainProgram = "srcinst"; - broken = true; - } - ) { }; - "srcloc" = callPackage ( { mkDerivation, base }: mkDerivation { @@ -630087,86 +364493,6 @@ self: { } ) { }; - "sscan" = callPackage ( - { - mkDerivation, - async, - base, - brick, - directory, - filepath, - microlens, - microlens-th, - process, - temporary, - text, - time, - vty, - }: - mkDerivation { - pname = "sscan"; - version = "0.2"; - sha256 = "0zy2fgxsx8p8350iclrbmhd74q429yrcyk37xfplq47hz394j3g5"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - async - base - brick - directory - filepath - microlens - microlens-th - process - temporary - text - time - vty - ]; - description = "text UI for scanning with SANE"; - license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - mainProgram = "sscan"; - broken = true; - } - ) { }; - - "sscgi" = callPackage ( - { - mkDerivation, - attoparsec, - base, - bytestring, - case-insensitive, - containers, - Glob, - MonadCatchIO-mtl, - mtl, - transformers, - utf8-string, - }: - mkDerivation { - pname = "sscgi"; - version = "0.3.1"; - sha256 = "0fygdzq1mr1ayc1yfiypzdqd513yg3x2yzwjpmar5qzshjix2989"; - libraryHaskellDepends = [ - attoparsec - base - bytestring - case-insensitive - containers - Glob - MonadCatchIO-mtl - mtl - transformers - utf8-string - ]; - description = "Simple SCGI Library"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "sscript" = callPackage ( { mkDerivation, @@ -630187,95 +364513,6 @@ self: { } ) { }; - "ssh" = callPackage ( - { - mkDerivation, - asn1-encoding, - asn1-types, - base, - base64-string, - binary, - bytestring, - cereal, - containers, - crypto-api, - crypto-pubkey-types, - cryptohash-cryptoapi, - directory, - filepath, - HsOpenSSL, - HUnit, - integer-gmp, - libssh2, - network, - process, - pseudomacros, - QuickCheck, - random, - RSA, - SHA, - SimpleAES, - split, - tasty, - tasty-hunit, - tasty-quickcheck, - template-haskell, - th-lift-instances, - transformers, - }: - mkDerivation { - pname = "ssh"; - version = "0.3.2"; - sha256 = "1gr64sv802n9l72lp608xxi9nbh165dzn22m52s0yc35vf717rq1"; - revision = "1"; - editedCabalFile = "1y5c3z86mi7fc0awlvmq85y40nhws4591njjs85xj0grxrizx5bg"; - libraryHaskellDepends = [ - asn1-encoding - asn1-types - base - base64-string - binary - bytestring - cereal - containers - crypto-api - crypto-pubkey-types - cryptohash-cryptoapi - HsOpenSSL - integer-gmp - network - process - random - RSA - SHA - SimpleAES - split - transformers - ]; - testHaskellDepends = [ - base - bytestring - containers - directory - filepath - HUnit - libssh2 - pseudomacros - QuickCheck - tasty - tasty-hunit - tasty-quickcheck - template-haskell - th-lift-instances - ]; - doCheck = false; - description = "A pure-Haskell SSH server library"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "ssh-known-hosts" = callPackage ( { mkDerivation, @@ -630319,243 +364556,6 @@ self: { } ) { }; - "ssh-tunnel" = callPackage ( - { - mkDerivation, - base, - foldl, - http-client, - managed, - text, - transformers, - turtle, - uuid, - }: - mkDerivation { - pname = "ssh-tunnel"; - version = "1.0.0.0"; - sha256 = "1yc2whzyrb0na9risf5q72ll304fh94rraik78ma6g27pjh2yvqx"; - revision = "1"; - editedCabalFile = "16h6n2p2v4ijhfap0ym7qidls9sc55jipnxn79g9i90jfsixc7m9"; - libraryHaskellDepends = [ - base - foldl - http-client - managed - text - transformers - turtle - uuid - ]; - description = "Proxy http-client via ssh tunnel"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "sshd-lint" = callPackage ( - { - mkDerivation, - base, - containers, - hspec, - keyword-args, - nagios-check, - parsec, - }: - mkDerivation { - pname = "sshd-lint"; - version = "0.1.0.1"; - sha256 = "0q34zx8cn0gs91c4x4bicmygfaary5kk42ib62jk0hlrh3rzdi7c"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - containers - keyword-args - nagios-check - parsec - ]; - testHaskellDepends = [ - base - containers - hspec - keyword-args - nagios-check - parsec - ]; - description = "Check sshd configuration for adherence to best practices"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - mainProgram = "sshd-lint"; - } - ) { }; - - "sshtun" = callPackage ( - { - mkDerivation, - base, - containers, - curl, - directory, - hdaemonize, - hslogger, - mtl, - process, - regex-compat, - stm, - unix, - }: - mkDerivation { - pname = "sshtun"; - version = "1.0.0"; - sha256 = "0794vsv043ppydzyjxnh06m4l3gbnga7x8nwsamh8skrzjfwn6jq"; - isLibrary = false; - isExecutable = true; - enableSeparateDataOutput = true; - executableHaskellDepends = [ - base - containers - curl - directory - hdaemonize - hslogger - mtl - process - regex-compat - stm - unix - ]; - description = "Wrapper daemon to manage an ssh tunnel"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "sshtun"; - broken = true; - } - ) { }; - - "sssp" = callPackage ( - { - mkDerivation, - attempt, - attoparsec, - aws, - base, - base64-bytestring, - blaze-builder, - bytestring, - case-insensitive, - cereal, - conduit, - containers, - cryptohash, - data-default, - http-conduit, - http-types, - mtl, - network-conduit, - text, - wai, - wai-extra, - warp, - }: - mkDerivation { - pname = "sssp"; - version = "1.1.1"; - sha256 = "1nr30nrldjd3q1iw3l967x3v1rvl9afz1p87hhhkvpy60gri8m7c"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - attempt - attoparsec - aws - base - base64-bytestring - blaze-builder - bytestring - case-insensitive - cereal - conduit - containers - cryptohash - data-default - http-conduit - http-types - mtl - network-conduit - text - wai - wai-extra - warp - ]; - executableHaskellDepends = [ - attempt - attoparsec - aws - base - base64-bytestring - blaze-builder - bytestring - case-insensitive - cereal - conduit - containers - cryptohash - data-default - http-conduit - http-types - mtl - network-conduit - text - wai - wai-extra - warp - ]; - description = "HTTP proxy for S3"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "sssp"; - } - ) { }; - - "sstable" = callPackage ( - { - mkDerivation, - array, - base, - binary, - bytestring, - cmdargs, - containers, - deepseq, - directory, - iteratee, - }: - mkDerivation { - pname = "sstable"; - version = "1.0"; - sha256 = "1siyjj75k1nsncpqwz53algbnvgbmr4syw45rfj1cpq4qbfwlcgm"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - array - base - binary - bytestring - containers - deepseq - directory - iteratee - ]; - executableHaskellDepends = [ cmdargs ]; - description = "SSTables in Haskell"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "sstable"; - } - ) { }; - "ssv" = callPackage ( { mkDerivation, @@ -630650,29 +364650,6 @@ self: { } ) { }; - "stable-maps" = callPackage ( - { - mkDerivation, - base, - containers, - ghc-prim, - }: - mkDerivation { - pname = "stable-maps"; - version = "0.0.5"; - sha256 = "1sjidykbj5f692di93nml0frazvyw9kxyhjwbyyvrb9gwgc2ms3w"; - libraryHaskellDepends = [ - base - containers - ghc-prim - ]; - description = "Heterogeneous maps keyed by StableNames"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "stable-marriage" = callPackage ( { mkDerivation, @@ -630721,67 +364698,6 @@ self: { } ) { }; - "stable-tree" = callPackage ( - { - mkDerivation, - base, - binary, - blaze-builder, - bytestring, - bytestring-arbitrary, - cereal, - containers, - mtl, - objectid, - QuickCheck, - tasty, - tasty-quickcheck, - text, - }: - mkDerivation { - pname = "stable-tree"; - version = "0.7.0"; - sha256 = "0mcb983sdwfsf39gd8zsls7pgndqrnnzvxsz8kn9c5nqjxwdll4p"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - binary - blaze-builder - bytestring - cereal - containers - mtl - objectid - text - ]; - executableHaskellDepends = [ - base - containers - mtl - objectid - text - ]; - testHaskellDepends = [ - base - bytestring - bytestring-arbitrary - cereal - containers - mtl - objectid - QuickCheck - tasty - tasty-quickcheck - text - ]; - description = "Trees whose branches are resistant to change"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "demo"; - } - ) { }; - "stache" = callPackage ( { mkDerivation, @@ -631222,71 +365138,6 @@ self: { } ) { }; - "stack-bump" = callPackage ( - { - mkDerivation, - ansi-terminal, - async, - base, - bytestring, - filepath, - Glob, - hspec, - lens, - lens-aeson, - optparse-applicative, - process, - QuickCheck, - strict, - text, - yaml, - }: - mkDerivation { - pname = "stack-bump"; - version = "0.7.1.0"; - sha256 = "1la7v19zly3rnq0rwzv2h6hj9ibx0c0gdgvj4cc1pi893fyggkgz"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - ansi-terminal - async - base - bytestring - filepath - Glob - lens - lens-aeson - optparse-applicative - process - strict - text - yaml - ]; - testHaskellDepends = [ - ansi-terminal - async - base - bytestring - filepath - Glob - hspec - lens - lens-aeson - optparse-applicative - process - QuickCheck - strict - text - yaml - ]; - description = "Dead simple version bumping for hpack packages"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - mainProgram = "stack-bump"; - broken = true; - } - ) { }; - "stack-clean-old" = callPackage ( { mkDerivation, @@ -631321,34 +365172,6 @@ self: { } ) { }; - "stack-fix" = callPackage ( - { - mkDerivation, - base, - options, - text, - turtle, - }: - mkDerivation { - pname = "stack-fix"; - version = "0.1.0.0"; - sha256 = "13x4pd1h2f2akpja5mxnqx0pw1ax57r2q76gsb3fs1f6kxykypwl"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - options - text - turtle - ]; - description = "Console program used to fix Stack build errors automatically"; - license = lib.licenses.agpl3Only; - hydraPlatforms = lib.platforms.none; - mainProgram = "stack-fix"; - broken = true; - } - ) { }; - "stack-hpc-coveralls" = callPackage ( { mkDerivation, @@ -631422,371 +365245,6 @@ self: { } ) { }; - "stack-lib" = callPackage ( - { - mkDerivation, - base, - monad-logger, - path, - stack, - time, - transformers, - }: - mkDerivation { - pname = "stack-lib"; - version = "0.1.0.0"; - sha256 = "0fb7svqqp2p3q3a2w5nkxxlqk3v3lmkhrdhfk8cfkkwjz2gpb4bf"; - libraryHaskellDepends = [ - base - monad-logger - path - stack - time - transformers - ]; - description = "Wrapper to use stack as a library"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "stack-network" = callPackage ( - { - mkDerivation, - ansi-terminal, - async, - base, - binary, - bytestring, - Cabal, - clock, - configurator, - directory, - dirstream, - distributed-process-lifted, - distributed-process-simplelocalnet, - exceptions, - filepath, - hspec, - lifted-base, - mtl, - optparse-applicative, - pipes, - pipes-safe, - process, - raw-strings-qq, - system-fileio, - system-filepath, - temporary, - text, - transformers, - yaml, - }: - mkDerivation { - pname = "stack-network"; - version = "0.1.0.1"; - sha256 = "1skq3sqr5krn6gh5h684vn2w2h8zvqkdcc7yhbyri2fswahy9g1x"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - ansi-terminal - async - base - binary - bytestring - Cabal - clock - configurator - directory - dirstream - distributed-process-lifted - distributed-process-simplelocalnet - exceptions - filepath - lifted-base - mtl - optparse-applicative - pipes - pipes-safe - process - system-fileio - system-filepath - temporary - text - transformers - ]; - executableHaskellDepends = [ - ansi-terminal - async - base - binary - bytestring - Cabal - clock - configurator - directory - dirstream - distributed-process-lifted - distributed-process-simplelocalnet - exceptions - filepath - lifted-base - mtl - optparse-applicative - pipes - pipes-safe - process - system-fileio - system-filepath - temporary - text - transformers - ]; - testHaskellDepends = [ - ansi-terminal - async - base - binary - bytestring - Cabal - clock - configurator - directory - dirstream - distributed-process-lifted - distributed-process-simplelocalnet - exceptions - filepath - hspec - lifted-base - mtl - optparse-applicative - pipes - pipes-safe - process - raw-strings-qq - system-fileio - system-filepath - temporary - text - transformers - yaml - ]; - description = "A program for extending Stack to add distributed capabilities"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "stack-network"; - } - ) { }; - - "stack-prism" = callPackage ( - { - mkDerivation, - base, - profunctors, - tagged, - template-haskell, - transformers, - }: - mkDerivation { - pname = "stack-prism"; - version = "0.1.7"; - sha256 = "0a09x8b78j08cn0l492hj6yx15fhs6bipaiwgjqsax37ynnrxhqz"; - revision = "1"; - editedCabalFile = "1xd0hcp003ijakpcjgcmllsa65i0924has9wllvsj8i0mnapcni3"; - libraryHaskellDepends = [ - base - profunctors - tagged - template-haskell - transformers - ]; - testHaskellDepends = [ - base - template-haskell - ]; - description = "Stack prisms"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "stack-run" = callPackage ( - { - mkDerivation, - ansi-terminal, - async, - base, - bytestring, - Cabal, - conduit, - conduit-extra, - directory, - filepath, - MissingH, - stm, - terminal-size, - time, - vty, - }: - mkDerivation { - pname = "stack-run"; - version = "0.1.1.4"; - sha256 = "16xc0sdwa2mz9rcixam1lnkhyyw7n82bm9m857lxg7wl35jvnrkk"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - ansi-terminal - async - base - bytestring - Cabal - conduit - conduit-extra - directory - filepath - MissingH - stm - terminal-size - time - vty - ]; - description = "An equivalent to cabal run for stack"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - mainProgram = "stack-run"; - broken = true; - } - ) { }; - - "stack-run-auto" = callPackage ( - { - mkDerivation, - async, - base, - directory, - extract-dependencies, - file-modules, - filepath, - lens, - lens-aeson, - MissingH, - process, - stm-containers, - text, - time, - wreq, - }: - mkDerivation { - pname = "stack-run-auto"; - version = "0.1.1.4"; - sha256 = "0hzm0pbc3g2ixmbrrjly23afs1mhifccg7704sp5cjn59slnxfay"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - async - base - directory - extract-dependencies - file-modules - filepath - lens - lens-aeson - MissingH - process - stm-containers - text - time - wreq - ]; - executableHaskellDepends = [ - async - base - directory - extract-dependencies - file-modules - filepath - lens - lens-aeson - MissingH - process - stm-containers - text - time - wreq - ]; - testHaskellDepends = [ - async - base - directory - extract-dependencies - file-modules - filepath - lens - lens-aeson - MissingH - process - stm-containers - text - time - wreq - ]; - description = "Initial project template from stack"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "stack-tag" = callPackage ( - { - mkDerivation, - async, - base, - containers, - directory, - hasktags, - mtl, - optparse-applicative, - process, - text, - }: - mkDerivation { - pname = "stack-tag"; - version = "0.2.0"; - sha256 = "08610hacra5sq22addh4fsqz4pwg98576lvwvvi4q8bly4ai23zb"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - async - base - containers - directory - hasktags - mtl - process - text - ]; - executableHaskellDepends = [ - async - base - containers - directory - hasktags - mtl - optparse-applicative - process - text - ]; - description = "Create etags for Haskell projects based on Stack snapshots"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - mainProgram = "stack-tag"; - broken = true; - } - ) { }; - "stack-templatizer" = callPackage ( { mkDerivation, @@ -631813,59 +365271,6 @@ self: { } ) { }; - "stack-type" = callPackage ( - { - mkDerivation, - base, - transformers, - }: - mkDerivation { - pname = "stack-type"; - version = "0.1.0.0"; - sha256 = "13kc36p62kmni6lksr3j5mlndc1rmmgir9p0k7qcv5ph6rbrc47k"; - libraryHaskellDepends = [ - base - transformers - ]; - description = "The basic stack type"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "stack-wrapper" = callPackage ( - { - mkDerivation, - base, - filepath, - process, - }: - mkDerivation { - pname = "stack-wrapper"; - version = "0.1.0"; - sha256 = "002id9nd6lsg3hyy93ylj9x1jjdwrg2xhahsnp6m1igxq2yns0xr"; - revision = "1"; - editedCabalFile = "0biz4w2xrfj0bsb6xj0sjlrs567zvd207f1bkh7c265ip47gfhni"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - filepath - process - ]; - executableHaskellDepends = [ - base - filepath - process - ]; - description = "Call ghc within stack by calling ghc"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "stack-yaml" = callPackage ( { mkDerivation, @@ -631982,423 +365387,6 @@ self: { } ) { }; - "stack2nix" = callPackage ( - { - mkDerivation, - async, - base, - bytestring, - Cabal, - cabal2nix, - containers, - directory, - distribution-nixpkgs, - filepath, - hackage-db, - hspec, - language-nix, - lens, - optparse-applicative, - path, - pretty, - process, - regex-pcre, - SafeSemaphore, - stack, - temporary, - text, - time, - }: - mkDerivation { - pname = "stack2nix"; - version = "0.2.3"; - sha256 = "0vc87jb5vam47ghh2bzs20wfsnxjs133j9qrxa6kzbw0s2ff75p3"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - async - base - bytestring - Cabal - cabal2nix - containers - directory - distribution-nixpkgs - filepath - hackage-db - language-nix - lens - optparse-applicative - path - pretty - process - regex-pcre - SafeSemaphore - stack - temporary - text - time - ]; - executableHaskellDepends = [ - base - Cabal - optparse-applicative - time - ]; - testHaskellDepends = [ - base - hspec - ]; - description = "Convert stack.yaml files into Nix build instructions."; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - mainProgram = "stack2nix"; - broken = true; - } - ) { }; - - "stackage" = callPackage ( - { - mkDerivation, - base, - stackage-build-plan, - stackage-cabal, - stackage-cli, - stackage-install, - stackage-sandbox, - stackage-setup, - stackage-update, - stackage-upload, - }: - mkDerivation { - pname = "stackage"; - version = "0.7.3.2"; - sha256 = "0npry3yxbfyz97q19b405h40mb4rypgkhlp78hgl7zqbxk28ysza"; - libraryHaskellDepends = [ - base - stackage-build-plan - stackage-cabal - stackage-cli - stackage-install - stackage-sandbox - stackage-setup - stackage-update - stackage-upload - ]; - description = "Dummy package forcing installation of other Stackage packages"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "stackage-build-plan" = callPackage ( - { - mkDerivation, - aeson, - base, - bytestring, - Cabal, - containers, - directory, - exceptions, - filepath, - http-client, - http-client-tls, - mtl, - optparse-applicative, - stackage-cli, - stackage-types, - text, - time, - yaml, - }: - mkDerivation { - pname = "stackage-build-plan"; - version = "0.1.1.0"; - sha256 = "1slqkcmvnrbbg50qdf368q5h7svngw77b984mpg39p44mc7ghwyg"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson - base - bytestring - Cabal - containers - directory - exceptions - filepath - http-client - http-client-tls - mtl - stackage-types - text - time - yaml - ]; - executableHaskellDepends = [ - aeson - base - optparse-applicative - stackage-cli - text - ]; - description = "Calculate and print (in different formats) Stackage build plans"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - mainProgram = "stackage-build-plan"; - } - ) { }; - - "stackage-cabal" = callPackage ( - { - mkDerivation, - base, - bytestring, - exceptions, - http-client, - http-client-tls, - http-types, - optparse-applicative, - parsec, - process, - stackage-cli, - system-fileio, - text, - }: - mkDerivation { - pname = "stackage-cabal"; - version = "0.1.1"; - sha256 = "0797izw5451mqr41a22xvv5c6c0936hi44cfmp9rzhj6mh92iwzj"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base ]; - executableHaskellDepends = [ - base - bytestring - exceptions - http-client - http-client-tls - http-types - optparse-applicative - parsec - process - stackage-cli - system-fileio - text - ]; - description = "A CLI executable for cabal-based stackage commands"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "stackage-cli" = callPackage ( - { - mkDerivation, - base, - conduit, - directory, - either, - exceptions, - filepath, - hashable, - optparse-applicative, - optparse-simple, - process, - split, - text, - transformers, - unordered-containers, - }: - mkDerivation { - pname = "stackage-cli"; - version = "0.1.0.2"; - sha256 = "10asq1zg7b4zqsn51ap03809j0bxrwh1gacc387wdi1p3zakn88n"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - conduit - directory - either - exceptions - filepath - hashable - optparse-applicative - optparse-simple - process - split - text - transformers - unordered-containers - ]; - executableHaskellDepends = [ - base - text - ]; - description = "A CLI library for stackage commands"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "stackage-curator" = callPackage ( - { - mkDerivation, - aeson, - amazonka, - amazonka-core, - amazonka-s3, - async, - base, - blaze-html, - bytestring, - Cabal, - classy-prelude-conduit, - conduit, - conduit-extra, - containers, - cryptonite, - cryptonite-conduit, - data-default-class, - directory, - exceptions, - filepath, - hashable, - hspec, - html-conduit, - http-client, - http-client-tls, - http-conduit, - lucid, - memory, - mime-types, - monad-unlift, - monad-unlift-ref, - mono-traversable, - mtl, - old-locale, - optparse-applicative, - optparse-simple, - process, - QuickCheck, - resourcet, - safe, - semigroups, - stm, - store, - streaming-commons, - syb, - system-fileio, - system-filepath, - tar, - temporary, - text, - time, - transformers, - unix-compat, - unordered-containers, - utf8-string, - vector, - xml-conduit, - xml-types, - yaml, - zlib, - }: - mkDerivation { - pname = "stackage-curator"; - version = "0.16.0.0"; - sha256 = "17mnrxnnb70fd0h571i049pfkmpmsxrgpr970z6w6jli6mp1721j"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson - amazonka - amazonka-core - amazonka-s3 - async - base - blaze-html - bytestring - Cabal - classy-prelude-conduit - conduit - conduit-extra - containers - cryptonite - cryptonite-conduit - data-default-class - directory - exceptions - filepath - hashable - html-conduit - http-client - http-client-tls - http-conduit - lucid - memory - mime-types - monad-unlift - monad-unlift-ref - mono-traversable - mtl - old-locale - process - resourcet - safe - semigroups - stm - store - streaming-commons - syb - system-fileio - system-filepath - tar - temporary - text - time - transformers - unix-compat - unordered-containers - utf8-string - vector - xml-conduit - xml-types - yaml - zlib - ]; - executableHaskellDepends = [ - aeson - base - http-client - http-client-tls - optparse-applicative - optparse-simple - system-filepath - text - ]; - testHaskellDepends = [ - base - Cabal - classy-prelude-conduit - containers - directory - hspec - http-client - http-client-tls - QuickCheck - text - yaml - ]; - description = "Tools for curating Stackage bundles"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "stackage-install" = callPackage ( { mkDerivation, @@ -632448,341 +365436,6 @@ self: { } ) { }; - "stackage-metadata" = callPackage ( - { - mkDerivation, - aeson, - base, - base16-bytestring, - bytestring, - Cabal, - conduit, - containers, - cryptohash, - directory, - filepath, - http-client, - http-client-tls, - pretty, - resourcet, - stackage-install, - stackage-update, - tar, - text, - transformers, - yaml, - zlib, - }: - mkDerivation { - pname = "stackage-metadata"; - version = "0.3.0.0"; - sha256 = "08hs6gnya0ci07gsacc01hvjamwh9xnfni9ihg7wf77w4vrncssx"; - revision = "1"; - editedCabalFile = "1kfdzvvfxlc0y23mdwklm3szb91zjwpzibb68jgjf1hkmv5kfzk3"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson - base - bytestring - Cabal - conduit - containers - directory - filepath - pretty - resourcet - tar - text - transformers - zlib - ]; - executableHaskellDepends = [ - base - base16-bytestring - bytestring - Cabal - conduit - containers - cryptohash - directory - filepath - http-client - http-client-tls - resourcet - stackage-install - stackage-update - tar - text - transformers - yaml - ]; - description = "DEPRECATED Grab current metadata for all packages"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - mainProgram = "all-cabal-metadata-tool"; - broken = true; - } - ) { }; - - "stackage-query" = callPackage ( - { - mkDerivation, - aeson, - base, - bytestring, - Cabal, - containers, - directory, - exceptions, - filepath, - hashable, - http-directory, - optparse-applicative, - process, - safe, - semigroups, - simple-cmd, - simple-cmd-args, - text, - time, - unix, - unordered-containers, - vector, - yaml, - }: - mkDerivation { - pname = "stackage-query"; - version = "0.2.0"; - sha256 = "1aqra70mfnxxirbv61q71ia00jnrcdfyhrrswnzrd4jf7ar2ja02"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - aeson - base - bytestring - Cabal - containers - directory - exceptions - filepath - hashable - http-directory - optparse-applicative - process - safe - semigroups - simple-cmd - simple-cmd-args - text - time - unix - unordered-containers - vector - yaml - ]; - description = "Tool for querying Stackage"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - mainProgram = "stackage"; - } - ) { }; - - "stackage-sandbox" = callPackage ( - { - mkDerivation, - attoparsec, - base, - bytestring, - conduit-combinators, - conduit-extra, - directory, - filepath, - optparse-applicative, - process, - stackage-cli, - text, - }: - mkDerivation { - pname = "stackage-sandbox"; - version = "0.1.6"; - sha256 = "1nqvxw6k2sgziic8nfw61sss7svg0zrnhkp6jjaqcx91p5kmzr5d"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base ]; - executableHaskellDepends = [ - attoparsec - base - bytestring - conduit-combinators - conduit-extra - directory - filepath - optparse-applicative - process - stackage-cli - text - ]; - description = "Work with shared stackage sandboxes"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - mainProgram = "stackage-sandbox"; - } - ) { }; - - "stackage-setup" = callPackage ( - { - mkDerivation, - aeson, - base, - bytestring, - classy-prelude-conduit, - cryptohash, - cryptohash-conduit, - directory, - filepath, - http-client-tls, - http-conduit, - http-types, - optparse-applicative, - process, - stackage-cli, - text, - unordered-containers, - yaml, - }: - mkDerivation { - pname = "stackage-setup"; - version = "0.0.2"; - sha256 = "1101sb822v42zjjgabn4s80qyvn6nvzkfagaxpzjm6dp5svl3biv"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base ]; - executableHaskellDepends = [ - aeson - base - bytestring - classy-prelude-conduit - cryptohash - cryptohash-conduit - directory - filepath - http-client-tls - http-conduit - http-types - optparse-applicative - process - stackage-cli - text - unordered-containers - yaml - ]; - description = "An executable for downloading a Haskell setup"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - mainProgram = "stackage-setup"; - } - ) { }; - - "stackage-to-hackage" = callPackage ( - { - mkDerivation, - base, - bytestring, - Cabal, - containers, - directory, - extra, - filepath, - HsYAML, - http-client, - http-client-tls, - optparse-applicative, - text, - }: - mkDerivation { - pname = "stackage-to-hackage"; - version = "1.1.1"; - sha256 = "10zd3wqla54mfnwv65gklvmglhcpzhanqfka0l0ilnbkqlgx4acm"; - revision = "3"; - editedCabalFile = "07iflizm4w02w8samh5bcydd3jiqxhcwx2w5zylga8g1107cpaa3"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - bytestring - Cabal - containers - directory - extra - filepath - HsYAML - http-client - http-client-tls - text - ]; - executableHaskellDepends = [ - base - bytestring - Cabal - containers - directory - extra - filepath - optparse-applicative - text - ]; - description = "Convert stack.yaml to cabal.project + cabal.project.freeze"; - license = lib.licenses.gpl3Plus; - hydraPlatforms = lib.platforms.none; - mainProgram = "stackage-to-hackage"; - broken = true; - } - ) { }; - - "stackage-types" = callPackage ( - { - mkDerivation, - aeson, - base, - Cabal, - containers, - exceptions, - hashable, - safe, - semigroups, - text, - time, - unordered-containers, - vector, - }: - mkDerivation { - pname = "stackage-types"; - version = "1.2.0"; - sha256 = "1jzlxnibl4fn6mqbxv9c8hw4zp7adyicwwkknr5w1am5k825a0n0"; - revision = "1"; - editedCabalFile = "0myabw8i41607z2yk5zz5y4mm0bm37qxp2zmnlfnb4267qq15klz"; - libraryHaskellDepends = [ - aeson - base - Cabal - containers - exceptions - hashable - safe - semigroups - text - time - unordered-containers - vector - ]; - description = "Shared data types between various Stackage packages"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "stackage-update" = callPackage ( { mkDerivation, @@ -632810,135 +365463,6 @@ self: { } ) { }; - "stackage-upload" = callPackage ( - { - mkDerivation, - aeson, - base, - bytestring, - directory, - filepath, - http-client, - http-client-tls, - http-types, - optparse-applicative, - process, - stackage-cli, - temporary, - text, - }: - mkDerivation { - pname = "stackage-upload"; - version = "0.1.0.6"; - sha256 = "17ll2cv4n3vgljqfsw6jccb8k71jgh82110hmj84bnxcrkii37vg"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson - base - bytestring - directory - filepath - http-client - http-client-tls - http-types - process - temporary - text - ]; - executableHaskellDepends = [ - base - optparse-applicative - stackage-cli - ]; - description = "A more secure version of cabal upload which uses HTTPS"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - mainProgram = "stackage-upload"; - } - ) { }; - - "stackage2nix" = callPackage ( - { - mkDerivation, - aeson, - base, - bytestring, - Cabal, - cabal2nix, - containers, - deepseq, - distribution-nixpkgs, - exceptions, - filepath, - gitlib, - gitlib-libgit2, - hopenssl, - hspec, - inflections, - language-nix, - lens, - network-uri, - optparse-applicative, - pretty, - QuickCheck, - shakespeare, - stackage-curator, - text, - unordered-containers, - yaml, - }: - mkDerivation { - pname = "stackage2nix"; - version = "0.7.2"; - sha256 = "0mxyc3jkm7ykmpxydlcg9vxaznwmjdnd76j3msva2g2i4cjx0m5d"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson - base - bytestring - Cabal - cabal2nix - containers - deepseq - distribution-nixpkgs - exceptions - filepath - gitlib - gitlib-libgit2 - hopenssl - inflections - language-nix - lens - network-uri - optparse-applicative - pretty - QuickCheck - stackage-curator - text - unordered-containers - yaml - ]; - executableHaskellDepends = [ base ]; - testHaskellDepends = [ - base - bytestring - Cabal - hspec - network-uri - pretty - shakespeare - text - yaml - ]; - description = "Convert Stack files into Nix build instructions"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "stackage2nix"; - } - ) { }; - "stackcollapse-ghc" = callPackage ( { mkDerivation, @@ -633426,61 +365950,6 @@ self: { } ) { }; - "standalone-derive-topdown" = callPackage ( - { - mkDerivation, - base, - mtl, - template-haskell, - }: - mkDerivation { - pname = "standalone-derive-topdown"; - version = "0.0.0.2"; - sha256 = "179pm3wixdqg7786l8ys2nwpx7anpnvsl63bj25cgs8082g587v0"; - libraryHaskellDepends = [ - base - mtl - template-haskell - ]; - description = "This package will derive class instance along the data type declaration tree. (Deprecated)"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "standalone-haddock" = callPackage ( - { - mkDerivation, - base, - Cabal, - containers, - directory, - filepath, - optparse-applicative, - }: - mkDerivation { - pname = "standalone-haddock"; - version = "1.4.0.0"; - sha256 = "0ans74cbh592yramp50056n66cqn3fmyv4qkd1gz4awx6d6xryc1"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - Cabal - containers - directory - filepath - optparse-applicative - ]; - description = "Generate standalone haddock documentation for a set of packages"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - mainProgram = "standalone-haddock"; - broken = true; - } - ) { }; - "star" = callPackage ( { mkDerivation, base }: mkDerivation { @@ -633524,94 +365993,6 @@ self: { } ) { }; - "starling" = callPackage ( - { - mkDerivation, - base, - binary, - bytestring, - failure, - transformers, - }: - mkDerivation { - pname = "starling"; - version = "0.3.0"; - sha256 = "0i0f19k2b5y6vb0jngqwnf035csgiaqjgiw37wvj8vs2lbh907bp"; - libraryHaskellDepends = [ - base - binary - bytestring - failure - transformers - ]; - description = "A memcached client"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "starrover2" = callPackage ( - { - mkDerivation, - base, - bytestring, - directory, - EdisonCore, - FTGL, - haskell98, - mtl, - OpenGL, - random, - SDL, - }: - mkDerivation { - pname = "starrover2"; - version = "0.1.1"; - sha256 = "0rdkxyhy62h87vdq08znqpjhg4wriwvbmn0pwak9nqsd5xk6slka"; - isLibrary = false; - isExecutable = true; - enableSeparateDataOutput = true; - executableHaskellDepends = [ - base - bytestring - directory - EdisonCore - FTGL - haskell98 - mtl - OpenGL - random - SDL - ]; - description = "Space simulation game"; - license = "unknown"; - hydraPlatforms = lib.platforms.none; - mainProgram = "starrover2"; - } - ) { }; - - "starter" = callPackage ( - { - mkDerivation, - base, - fsnotify, - }: - mkDerivation { - pname = "starter"; - version = "0.3.0"; - sha256 = "14rxrs1gjsm26m7rk4rj9b2389zca0j24kjl7sfznqpxgk99qmpx"; - libraryHaskellDepends = [ - base - fsnotify - ]; - description = "Develop applications without restarts"; - license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "starter-snake-haskell" = callPackage ( { mkDerivation, @@ -633656,95 +366037,6 @@ self: { } ) { }; - "stash" = callPackage ( - { - mkDerivation, - aeson, - attoparsec, - base, - bytestring, - directory, - hashable, - text, - vector, - }: - mkDerivation { - pname = "stash"; - version = "0.1"; - sha256 = "01h3s19agw2aa6a0hw8f9k2qibmckqllvnx2yy2w2p1xlw8g9jwm"; - libraryHaskellDepends = [ - aeson - attoparsec - base - bytestring - directory - hashable - text - vector - ]; - description = "To be written"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "state" = callPackage ( - { - mkDerivation, - arrows, - base, - mtl, - }: - mkDerivation { - pname = "state"; - version = "0.1"; - sha256 = "0j5hbh0rkcwfigvskmgb0hql95qs0cjbys61c6sni2hc719bshx6"; - libraryHaskellDepends = [ - arrows - base - mtl - ]; - description = "Data.State"; - license = "LGPL"; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "state-bag" = callPackage ( - { - mkDerivation, - base, - ghc-prim, - hspec, - primitive, - transformers, - vector, - }: - mkDerivation { - pname = "state-bag"; - version = "0.1.0.0"; - sha256 = "0i1580w2dg4mqbig124lsl9ndynd2rd5kjpzgr114izxindskfmc"; - libraryHaskellDepends = [ - base - ghc-prim - primitive - transformers - vector - ]; - testHaskellDepends = [ - base - hspec - transformers - ]; - description = "Monad transformers for holding bags of state"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "state-codes" = callPackage ( { mkDerivation, @@ -633806,29 +366098,6 @@ self: { } ) { }; - "state-record" = callPackage ( - { - mkDerivation, - base, - mtl, - template-haskell, - }: - mkDerivation { - pname = "state-record"; - version = "0.0.1"; - sha256 = "1y9ql1dlv2kf564x153gyw5h967pjn5zilfq88px8rqmkydqix7g"; - libraryHaskellDepends = [ - base - mtl - template-haskell - ]; - description = "Better records for State monad states"; - license = "GPL"; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "stateWriter" = callPackage ( { mkDerivation, @@ -633899,28 +366168,6 @@ self: { } ) { }; - "stateful-mtl" = callPackage ( - { - mkDerivation, - base, - MaybeT, - mtl, - }: - mkDerivation { - pname = "stateful-mtl"; - version = "1.0.7"; - sha256 = "19645rqfqbcvngq8hj7bryl35lgx7p5k55vgsxa1a2hm2kq8vm5h"; - libraryHaskellDepends = [ - base - MaybeT - mtl - ]; - description = "Typeclass instances for monad transformer stacks with an ST thread at the bottom"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "stateref" = callPackage ( { mkDerivation, @@ -634015,52 +366262,6 @@ self: { } ) { inherit (pkgs) libstatgrab; }; - "static" = callPackage ( - { - mkDerivation, - base, - binary, - bytestring, - constraints, - doctest, - mtl, - serialise, - singletons, - tasty, - tasty-hunit, - template-haskell, - text, - transformers, - }: - mkDerivation { - pname = "static"; - version = "0.1.0.1"; - sha256 = "1w99kc32r0pfsi3l1bjy7sp5hga5j7fqv0ix8gszzhz600yzphlq"; - libraryHaskellDepends = [ - base - binary - bytestring - constraints - serialise - singletons - template-haskell - text - ]; - testHaskellDepends = [ - base - doctest - mtl - tasty - tasty-hunit - transformers - ]; - description = "Type-safe and interoperable static values and closures"; - license = lib.licenses.gpl3Plus; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "static-bytes" = callPackage ( { mkDerivation, @@ -634133,36 +366334,6 @@ self: { } ) { }; - "static-closure" = callPackage ( - { - mkDerivation, - base, - binary, - bytestring, - constraints, - containers, - ghc-instances, - template-haskell, - }: - mkDerivation { - pname = "static-closure"; - version = "0.1.0.0"; - sha256 = "16cjjyn51wsv3ngc8fbivlshnjp085xxxnv0snyywyxpna1nn79d"; - libraryHaskellDepends = [ - base - binary - bytestring - constraints - containers - ghc-instances - template-haskell - ]; - description = "Serialisable static pointers to functions"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "static-hash" = callPackage ( { mkDerivation, @@ -634298,117 +366469,6 @@ self: { } ) { }; - "static-resources" = callPackage ( - { - mkDerivation, - base, - directory, - filepath, - hslogger, - HUnit, - MissingH, - mtl, - old-time, - process, - syb, - test-framework, - test-framework-hunit, - test-framework-quickcheck2, - time, - }: - mkDerivation { - pname = "static-resources"; - version = "0.1.7"; - sha256 = "0wf9kpn1l2iq00m1ms46vn2lrnyy8ip1z54ya2h4kqarcy5sr8m9"; - libraryHaskellDepends = [ - base - directory - filepath - hslogger - MissingH - mtl - old-time - process - syb - time - ]; - testHaskellDepends = [ - base - directory - hslogger - HUnit - MissingH - mtl - old-time - syb - test-framework - test-framework-hunit - test-framework-quickcheck2 - time - ]; - description = "JavaScript and Css files concat for http optimization. Now with LESS support."; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "static-tensor" = callPackage ( - { - mkDerivation, - base, - criterion, - deepseq, - Diff, - lens, - linear, - mono-traversable, - mwc-random, - singletons, - split, - tasty, - tasty-golden, - template-haskell, - text, - typed-process, - vector, - }: - mkDerivation { - pname = "static-tensor"; - version = "0.2.1.0"; - sha256 = "0h95kmrm2kqs84kcp2n3cdrkqn7ygnypqj357gvwxv3wj6zldrp2"; - libraryHaskellDepends = [ - base - deepseq - lens - mono-traversable - singletons - split - template-haskell - ]; - testHaskellDepends = [ - base - Diff - tasty - tasty-golden - text - typed-process - ]; - benchmarkHaskellDepends = [ - base - criterion - deepseq - linear - mwc-random - vector - ]; - description = "Tensors of statically known size"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "static-text" = callPackage ( { mkDerivation, @@ -634552,80 +366612,6 @@ self: { } ) { }; - "statistics-dirichlet" = callPackage ( - { - mkDerivation, - base, - deepseq, - hmatrix-special, - nonlinear-optimization, - vector, - }: - mkDerivation { - pname = "statistics-dirichlet"; - version = "0.6.3"; - sha256 = "1sx7hxv5gvzr270h4lb76dihcqcqwgdm6mq2394s407iipb2clbw"; - libraryHaskellDepends = [ - base - deepseq - hmatrix-special - nonlinear-optimization - vector - ]; - description = "Functions for working with Dirichlet densities and mixtures on vectors"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "statistics-fusion" = callPackage ( - { - mkDerivation, - base, - vector, - }: - mkDerivation { - pname = "statistics-fusion"; - version = "1.0.1"; - sha256 = "17w7vz0jarbyf9y72bn9yg134q6ja5ymfyl1v9nx94glbhbybrlf"; - libraryHaskellDepends = [ - base - vector - ]; - description = "An implementation of high performance, minimal statistics functions"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "statistics-hypergeometric-genvar" = callPackage ( - { - mkDerivation, - base, - math-functions, - mwc-random, - primitive, - statistics, - }: - mkDerivation { - pname = "statistics-hypergeometric-genvar"; - version = "0.1.0.0"; - sha256 = "05j83vaklwi73yr4q4yq5f36wzmbas73lxkj0dkg0w1ss97syv7m"; - libraryHaskellDepends = [ - base - math-functions - mwc-random - primitive - statistics - ]; - description = "Random variate generation from hypergeometric distributions"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "statistics-linreg" = callPackage ( { mkDerivation, @@ -634721,34 +366707,6 @@ self: { } ) { }; - "stats" = callPackage ( - { - mkDerivation, - base, - statistics, - text, - vector, - }: - mkDerivation { - pname = "stats"; - version = "0.1.1"; - sha256 = "08ig4nrlqshxmiar739zfbs95hlrp8l212hszh4zs0w2x4i3s17f"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - statistics - text - vector - ]; - description = "command line statistics"; - license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - mainProgram = "stats"; - broken = true; - } - ) { }; - "stats-monad" = callPackage ( { mkDerivation, base }: mkDerivation { @@ -634761,75 +366719,6 @@ self: { } ) { }; - "statsd" = callPackage ( - { - mkDerivation, - base, - bytestring, - monad-control, - mtl, - network, - random, - }: - mkDerivation { - pname = "statsd"; - version = "0.1.0.1"; - sha256 = "13bcqms31rvzs3lfbmx43wqkmp21jbzj326yn971334cf722f0a1"; - libraryHaskellDepends = [ - base - bytestring - monad-control - mtl - network - random - ]; - description = "StatsD API"; - license = lib.licenses.lgpl3Only; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "statsd-client" = callPackage ( - { - mkDerivation, - base, - byteable, - bytestring, - crypto-api, - cryptohash, - digest-pure, - DRBG, - network, - network-uri, - old-time, - random, - time-units, - }: - mkDerivation { - pname = "statsd-client"; - version = "0.3.0.0"; - sha256 = "01nz6lyy1yvifgw12izx45ydvwq8fl65bd7bw8w0zbbb038zl32l"; - libraryHaskellDepends = [ - base - byteable - bytestring - crypto-api - cryptohash - digest-pure - DRBG - network - network-uri - old-time - random - time-units - ]; - description = "Statsd UDP client"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "statsd-datadog" = callPackage ( { mkDerivation, @@ -634896,63 +366785,6 @@ self: { } ) { }; - "statsdi" = callPackage ( - { - mkDerivation, - base, - bytestring, - dequeue, - ether, - hashable, - hspec, - network, - random, - stm, - tasty, - tasty-hspec, - template-haskell, - time, - transformers, - transformers-lift, - unordered-containers, - }: - mkDerivation { - pname = "statsdi"; - version = "0.2.0.0"; - sha256 = "1gbaxrvn8ilrj808hplqlibawy9kdmfb5pc2yzzdghmcsjys24g1"; - revision = "1"; - editedCabalFile = "02kf7pigkvqsm720l8rn6m3gdjqrdhli5yijsjf8n11mj6k8xrk0"; - libraryHaskellDepends = [ - base - bytestring - dequeue - ether - hashable - network - random - stm - template-haskell - time - transformers - transformers-lift - unordered-containers - ]; - testHaskellDepends = [ - base - bytestring - hspec - network - stm - tasty - tasty-hspec - time - ]; - description = "A lovely [Dog]StatsD implementation"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "status-notifier-item" = callPackage ( { mkDerivation, @@ -635005,20 +366837,6 @@ self: { } ) { }; - "statvfs" = callPackage ( - { mkDerivation, base }: - mkDerivation { - pname = "statvfs"; - version = "0.2"; - sha256 = "16z9fddgvf5sl7zy7p74fng9lkdw5m9i5np3q4s2h8jdi43mwmg1"; - libraryHaskellDepends = [ base ]; - description = "Get unix filesystem statistics with statfs, statvfs"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "staversion" = callPackage ( { mkDerivation, @@ -635122,33 +366940,6 @@ self: { } ) { }; - "stb-image-redux" = callPackage ( - { - mkDerivation, - base, - hspec, - vector, - }: - mkDerivation { - pname = "stb-image-redux"; - version = "0.2.1.2"; - sha256 = "1s23f38za0zv9vzj4qn5qq2ajhgr6g9gsd2nck2hmkqfjpw1mx1v"; - libraryHaskellDepends = [ - base - vector - ]; - testHaskellDepends = [ - base - hspec - vector - ]; - description = "Image loading and writing microlibrary"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "stb-truetype" = callPackage ( { mkDerivation, @@ -635276,31 +367067,6 @@ self: { } ) { }; - "stdata" = callPackage ( - { - mkDerivation, - base, - parsec, - syb, - template-haskell, - }: - mkDerivation { - pname = "stdata"; - version = "0.0.4"; - sha256 = "0ijir2knl4vc1cpzzmf32wcjfdc958li1wd7w5vdmgk4bx45kybf"; - libraryHaskellDepends = [ - base - parsec - syb - template-haskell - ]; - description = "Structure Data Library"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "stdcxx" = callPackage ( { mkDerivation, @@ -635322,153 +367088,6 @@ self: { } ) { }; - "stdf" = callPackage ( - { - mkDerivation, - aeson, - base, - base64-bytestring, - binary, - bytestring, - containers, - data-binary-ieee754, - split, - text, - time, - unix-time, - zlib, - }: - mkDerivation { - pname = "stdf"; - version = "0.2.0.0"; - sha256 = "1blwf18qvsrhkxfakyznr3ljr35dw6d027jybr2hh4a5yfqn6zyd"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson - base - base64-bytestring - binary - bytestring - containers - data-binary-ieee754 - split - text - time - unix-time - zlib - ]; - executableHaskellDepends = [ - aeson - base - base64-bytestring - binary - bytestring - split - text - ]; - description = "Parse Structured Test Data Format (STDF)"; - license = lib.licenses.gpl2Only; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "stdio" = callPackage ( - { - mkDerivation, - base, - case-insensitive, - deepseq, - exceptions, - ghc-prim, - hashable, - hspec, - hspec-discover, - HUnit, - integer-gmp, - libuv, - primitive, - QuickCheck, - quickcheck-instances, - scientific, - stm, - tagged, - template-haskell, - time, - unordered-containers, - word8, - }: - mkDerivation { - pname = "stdio"; - version = "0.2.0.0"; - sha256 = "0j2ywcrzwx2q9fwa8slx7clzgrmfsnfz22ma08b77ii0yg0za271"; - libraryHaskellDepends = [ - base - case-insensitive - deepseq - exceptions - ghc-prim - hashable - integer-gmp - primitive - QuickCheck - scientific - stm - tagged - template-haskell - time - unordered-containers - ]; - libraryPkgconfigDepends = [ libuv ]; - libraryToolDepends = [ hspec-discover ]; - testHaskellDepends = [ - base - hashable - hspec - HUnit - integer-gmp - primitive - QuickCheck - quickcheck-instances - scientific - word8 - ]; - description = "A simple and high performance IO toolkit for Haskell"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { inherit (pkgs) libuv; }; - - "steambrowser" = callPackage ( - { - mkDerivation, - base, - directory, - parsec, - transformers, - }: - mkDerivation { - pname = "steambrowser"; - version = "0.1.0.0"; - sha256 = "071ial002ip6lsm422wf9xzq7ka70h4va67382smkbgiinbma5g4"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - directory - parsec - transformers - ]; - description = "List and launch steam games from the cli"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - mainProgram = "steambrowser"; - broken = true; - } - ) { }; - "steeloverseer" = callPackage ( { mkDerivation, @@ -635570,76 +367189,6 @@ self: { } ) { }; - "stego-uuid" = callPackage ( - { - mkDerivation, - base, - bytestring, - cryptonite, - memory, - random, - uuid, - }: - mkDerivation { - pname = "stego-uuid"; - version = "1.0.0.0"; - sha256 = "1czdfnfama0phsbgv1a55815gnnkrqm5wggw9n10g4lfl866qbyv"; - libraryHaskellDepends = [ - base - bytestring - cryptonite - memory - uuid - ]; - testHaskellDepends = [ - base - random - uuid - ]; - description = "Generator and verifier for steganographic numbers"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "stemmer" = callPackage ( - { mkDerivation, base }: - mkDerivation { - pname = "stemmer"; - version = "0.5.2"; - sha256 = "1pg6bk9p1agip8nqzvdpw1hjjf0nwq9fmr58750wda6il7nljx3m"; - libraryHaskellDepends = [ base ]; - description = "Haskell bindings to the Snowball stemming library"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "stemmer-german" = callPackage ( - { - mkDerivation, - base, - text, - }: - mkDerivation { - pname = "stemmer-german"; - version = "0.1.1.1"; - sha256 = "037dw03zb4xdfbzp8js04ymrxii7rsin7pwiansa9khb29w2jqsn"; - revision = "1"; - editedCabalFile = "0pvghdxgd56yjm33lrzk6343lklnfdw77g30vhbfddwwdx1ifx2v"; - libraryHaskellDepends = [ - base - text - ]; - description = "Extract the stem of a German inflected word form"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "step-function" = callPackage ( { mkDerivation, @@ -635669,144 +367218,6 @@ self: { } ) { }; - "stepwise" = callPackage ( - { - mkDerivation, - base, - containers, - mtl, - }: - mkDerivation { - pname = "stepwise"; - version = "1.0.2"; - sha256 = "059k8g3wb4hkxk42vm83vv6kh3igrpf7fc97xvn3qai5rx3jmgqf"; - libraryHaskellDepends = [ - base - containers - mtl - ]; - license = "LGPL"; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "stern-brocot" = callPackage ( - { - mkDerivation, - alg, - base, - criterion, - smallcheck, - tasty, - tasty-smallcheck, - universe-base, - }: - mkDerivation { - pname = "stern-brocot"; - version = "0.1.0.0"; - sha256 = "0x3d6k1vbwa0gn41z3lq877l70mghq1gic37l6vg1v4s5cyx0w6m"; - libraryHaskellDepends = [ - alg - base - universe-base - ]; - testHaskellDepends = [ - base - smallcheck - tasty - tasty-smallcheck - universe-base - ]; - benchmarkHaskellDepends = [ - base - criterion - ]; - description = "Positive rational numbers represented as paths in the Stern-Brocot tree"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "stgi" = callPackage ( - { - mkDerivation, - ansi-terminal, - ansi-wl-pprint, - base, - containers, - deepseq, - parsers, - prettyprinter, - prettyprinter-ansi-terminal, - QuickCheck, - semigroups, - smallcheck, - tasty, - tasty-html, - tasty-hunit, - tasty-quickcheck, - tasty-rerun, - tasty-smallcheck, - template-haskell, - text, - th-lift, - transformers, - trifecta, - }: - mkDerivation { - pname = "stgi"; - version = "1.1"; - sha256 = "1kl2nxwm8r2pjciy5kmkf4mqqrrc8iy5i02h76xm0ysmwzndq1ck"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - ansi-wl-pprint - base - containers - deepseq - parsers - prettyprinter - prettyprinter-ansi-terminal - semigroups - template-haskell - text - th-lift - transformers - trifecta - ]; - executableHaskellDepends = [ - ansi-terminal - base - semigroups - text - ]; - testHaskellDepends = [ - ansi-wl-pprint - base - containers - deepseq - prettyprinter - QuickCheck - semigroups - smallcheck - tasty - tasty-html - tasty-hunit - tasty-quickcheck - tasty-rerun - tasty-smallcheck - template-haskell - text - ]; - description = "Educational implementation of the STG (Spineless Tagless G-machine)"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "stgi-exe"; - broken = true; - } - ) { }; - "stickyKeysHotKey" = callPackage ( { mkDerivation, base }: mkDerivation { @@ -635954,40 +367365,6 @@ self: { } ) { }; - "stm-chunked-queues" = callPackage ( - { - mkDerivation, - async, - base, - HUnit, - stm, - tasty, - tasty-hunit, - }: - mkDerivation { - pname = "stm-chunked-queues"; - version = "0.1.0.0"; - sha256 = "0264air2mhwbya2sxskrh4z1bs8il7d9iv4vm6wyz8zxxc95v1nj"; - libraryHaskellDepends = [ - async - base - stm - ]; - testHaskellDepends = [ - async - base - HUnit - stm - tasty - tasty-hunit - ]; - description = "Chunked Communication Queues"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "stm-conduit" = callPackage ( { mkDerivation, @@ -636150,55 +367527,6 @@ self: { } ) { }; - "stm-firehose" = callPackage ( - { - mkDerivation, - base, - blaze-builder, - conduit, - hspec, - http-types, - HUnit, - resourcet, - stm, - stm-chans, - stm-conduit, - transformers, - wai, - wai-conduit, - warp, - }: - mkDerivation { - pname = "stm-firehose"; - version = "0.3.0.2"; - sha256 = "1y6pis2p93kmwlxzdlx1sc975wpdkswv3srrpl60wmxsgvxb66b5"; - libraryHaskellDepends = [ - base - blaze-builder - conduit - http-types - resourcet - stm - stm-chans - stm-conduit - transformers - wai - wai-conduit - warp - ]; - testHaskellDepends = [ - base - hspec - HUnit - stm - ]; - description = "Conduits and STM operations for fire hoses"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "stm-hamt" = callPackage ( { mkDerivation, @@ -636307,29 +367635,6 @@ self: { } ) { }; - "stm-lifted" = callPackage ( - { - mkDerivation, - base, - stm, - transformers, - }: - mkDerivation { - pname = "stm-lifted"; - version = "2.5.0.0"; - sha256 = "0zsah3s288cgb2h4gdjqvby1c3xp95nvgd561sdhigxcwlxk2658"; - libraryHaskellDepends = [ - base - stm - transformers - ]; - description = "Software Transactional Memory lifted to MonadIO"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "stm-linkedlist" = callPackage ( { mkDerivation, @@ -636368,39 +367673,6 @@ self: { } ) { }; - "stm-promise" = callPackage ( - { - mkDerivation, - base, - mtl, - process, - QuickCheck, - stm, - unix, - }: - mkDerivation { - pname = "stm-promise"; - version = "0.0.3.1"; - sha256 = "07wrbj88gwdbsczjr225g0z1ai1v13mdg71gl9qsmipqs0s0pfwc"; - libraryHaskellDepends = [ - base - mtl - process - stm - unix - ]; - testHaskellDepends = [ - base - QuickCheck - stm - ]; - description = "Simple STM Promises for IO computations and external processes"; - license = lib.licenses.lgpl3Only; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "stm-queue" = callPackage ( { mkDerivation, @@ -636502,33 +367774,6 @@ self: { } ) { }; - "stm-stats" = callPackage ( - { - mkDerivation, - base, - containers, - stm, - template-haskell, - time, - }: - mkDerivation { - pname = "stm-stats"; - version = "0.2.0.0"; - sha256 = "0i8ky2l8lvh7nymxglvbifp0ylbyjw20p75avzb51zpzx6qkjkqa"; - libraryHaskellDepends = [ - base - containers - stm - template-haskell - time - ]; - description = "retry statistics for STM transactions"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "stm-supply" = callPackage ( { mkDerivation, @@ -636578,66 +367823,6 @@ self: { } ) { }; - "stmcontrol" = callPackage ( - { - mkDerivation, - base, - haskell98, - mtl, - stm, - }: - mkDerivation { - pname = "stmcontrol"; - version = "0.1"; - sha256 = "0m42pgnvzqadqycq0qbml5da0zw7myc24y5vka1qydz7rdfyaa24"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base - haskell98 - mtl - stm - ]; - description = "Control communication among retrying transactions"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "stochastic" = callPackage ( - { - mkDerivation, - base, - Chart, - Chart-cairo, - containers, - mtl, - random, - }: - mkDerivation { - pname = "stochastic"; - version = "0.1.1.1"; - sha256 = "0qssg3mmk4qz2p8isg70m278yi3mraigk7vrvahsfnx8kmx85f84"; - libraryHaskellDepends = [ - base - containers - mtl - random - ]; - testHaskellDepends = [ - base - Chart - Chart-cairo - containers - mtl - random - ]; - description = "Monadic composition of probabilistic functions and sampling"; - license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "stocks" = callPackage ( { mkDerivation, @@ -636874,27 +368059,6 @@ self: { } ) { }; - "storable" = callPackage ( - { - mkDerivation, - base, - mtl, - }: - mkDerivation { - pname = "storable"; - version = "0.1"; - sha256 = "10289mf3fskfpg0jwgzyhvg4arb0hcj3r94jngb3hlbidvf8k1jg"; - libraryHaskellDepends = [ - base - mtl - ]; - description = "Storable type class for variable-sized data"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "storable-complex" = callPackage ( { mkDerivation, @@ -637194,32 +368358,6 @@ self: { } ) { }; - "storablevector-streamfusion" = callPackage ( - { - mkDerivation, - base, - storablevector, - stream-fusion, - utility-ht, - }: - mkDerivation { - pname = "storablevector-streamfusion"; - version = "0.0"; - sha256 = "1qgnakr01f28iarq1qd5x86919fj7zwf19nb80w7757l0dhdjb6m"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - storablevector - stream-fusion - utility-ht - ]; - description = "Conversion between storablevector and stream-fusion lists with fusion"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "store" = callPackage ( { mkDerivation, @@ -637510,68 +368648,6 @@ self: { } ) { }; - "stp" = callPackage ( - { - mkDerivation, - base, - containers, - regex-compat, - }: - mkDerivation { - pname = "stp"; - version = "0.1.0.1"; - sha256 = "1vg2w6iawqydg2n4k6m6pzfxr7sr10cx33aabyx6b9wp1i8xa5kl"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - containers - ]; - executableHaskellDepends = [ - base - regex-compat - ]; - description = "Simple Theorem Prover"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "mu-test"; - broken = true; - } - ) { }; - - "str" = callPackage ( - { - mkDerivation, - base, - base16-bytestring, - bytestring, - Crypto, - hashable, - MissingH, - text, - utf8-string, - }: - mkDerivation { - pname = "str"; - version = "0.1.0.0"; - sha256 = "093bgzjj183g48gapmjvbrbp7ns7wfcf94ishgwy84gajpkyb6sr"; - libraryHaskellDepends = [ - base - base16-bytestring - bytestring - Crypto - hashable - MissingH - text - utf8-string - ]; - description = "A type class to abstract between many different string types"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "stratosphere" = callPackage ( { mkDerivation, @@ -637626,156 +368702,6 @@ self: { } ) { }; - "stratum-tool" = callPackage ( - { - mkDerivation, - aeson, - async, - base, - bytestring, - bytestring-builder, - cmdargs, - connection, - containers, - curl, - curl-aeson, - network, - stm, - text, - time, - unordered-containers, - vector, - }: - mkDerivation { - pname = "stratum-tool"; - version = "0.0.4"; - sha256 = "02m8znx5spg8mjphbqw4kw5mavjki8hjfqf6x9j9i0xsja88958p"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - aeson - async - base - bytestring - bytestring-builder - cmdargs - connection - containers - curl - curl-aeson - network - stm - text - time - unordered-containers - vector - ]; - description = "Client for Stratum protocol"; - license = lib.licenses.agpl3Only; - hydraPlatforms = lib.platforms.none; - mainProgram = "stratum-tool"; - } - ) { }; - - "stratux" = callPackage ( - { - mkDerivation, - base, - stratux-http, - stratux-types, - stratux-websockets, - }: - mkDerivation { - pname = "stratux"; - version = "0.0.10"; - sha256 = "0km05c7i6yxlxy4fa39rrll1xmf5yzb6vk1b8s8rmh19520dzb07"; - libraryHaskellDepends = [ - base - stratux-http - stratux-types - stratux-websockets - ]; - description = "A library for stratux"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "stratux-demo" = callPackage ( - { - mkDerivation, - base, - lens, - network-uri, - optparse-applicative, - stratux, - text, - time, - transformers, - }: - mkDerivation { - pname = "stratux-demo"; - version = "0.0.12"; - sha256 = "0rarr1z6rk6idjyxzb0053p90rpixqwc767bslcm6dvj9rxbgsvp"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - lens - network-uri - optparse-applicative - stratux - text - time - transformers - ]; - executableHaskellDepends = [ - base - lens - network-uri - optparse-applicative - stratux - text - time - transformers - ]; - description = "A demonstration of the stratux library"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "stratux-demo"; - } - ) { }; - - "stratux-http" = callPackage ( - { - mkDerivation, - aeson, - base, - HTTP, - network-uri, - stratux-types, - transformers, - utf8-string, - }: - mkDerivation { - pname = "stratux-http"; - version = "0.0.11"; - sha256 = "056fz3fs1giwlh9yfj462p0bg98gzikbqvkkwcyrmyqpxjsala15"; - libraryHaskellDepends = [ - aeson - base - HTTP - network-uri - stratux-types - transformers - utf8-string - ]; - description = "A library for using HTTP with stratux"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "stratux-types" = callPackage ( { mkDerivation, @@ -637807,196 +368733,6 @@ self: { } ) { }; - "stratux-websockets" = callPackage ( - { - mkDerivation, - aeson, - base, - either, - network, - stratux-types, - text, - transformers, - websockets, - }: - mkDerivation { - pname = "stratux-websockets"; - version = "0.0.11"; - sha256 = "0602y8h37zplp1g0fmdim1f8pmdz713jydc4qsh6ii3x58i8klj5"; - libraryHaskellDepends = [ - aeson - base - either - network - stratux-types - text - transformers - websockets - ]; - description = "A library for using websockets with stratux"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "stream" = callPackage ( - { - mkDerivation, - base, - bytestring, - criterion, - exceptions, - ghc-prim, - hspec, - mtl, - streaming-commons, - temporary, - transformers, - vector, - }: - mkDerivation { - pname = "stream"; - version = "0.1.0.0"; - sha256 = "1ypi59amwqm8d8w89hchxxcahzjvym8d3yv5imsnip9f2cqhb7jy"; - libraryHaskellDepends = [ - base - bytestring - exceptions - mtl - streaming-commons - transformers - ]; - testHaskellDepends = [ - base - bytestring - hspec - temporary - ]; - benchmarkHaskellDepends = [ - base - bytestring - criterion - ghc-prim - temporary - vector - ]; - description = "Initial project template from stack"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "stream-fusion" = callPackage ( - { mkDerivation, base }: - mkDerivation { - pname = "stream-fusion"; - version = "0.1.2.5"; - sha256 = "006fz03jdwd9d0kwf8ma3077xxmg6zym94pwbb4sx1xcn7zf4yc6"; - revision = "1"; - editedCabalFile = "1jyb8mc99ag72y4bqxw997klrikhnxqrbacmx2ag5kmwsd1v1p12"; - libraryHaskellDepends = [ base ]; - description = "Faster Haskell lists using stream fusion"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "stream-monad" = callPackage ( - { - mkDerivation, - base, - logict, - }: - mkDerivation { - pname = "stream-monad"; - version = "0.4.0.2"; - sha256 = "0311j6a378pm26g9qqfjpnjq7909qj69fhiw253ln603z5q5gkc6"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - logict - ]; - description = "Simple, Fair and Terminating Backtracking Monad"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "streamdeck" = callPackage ( - { - mkDerivation, - base, - bytestring, - hidapi, - mtl, - split, - }: - mkDerivation { - pname = "streamdeck"; - version = "0.1.0"; - sha256 = "0dg5hmv61jnpqby4v5g4wpsb7ynsm56fmb3xj2pixswnzqz31ian"; - libraryHaskellDepends = [ - base - bytestring - hidapi - mtl - split - ]; - description = "Control library for the Elgato Stream Deck"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "streamed" = callPackage ( - { - mkDerivation, - alsa-core, - alsa-seq, - base, - containers, - data-accessor, - data-accessor-transformers, - event-list, - midi, - midi-alsa, - non-negative, - random, - transformers, - utility-ht, - }: - mkDerivation { - pname = "streamed"; - version = "0.2"; - sha256 = "0dql0vxw28nr60979zhhc9frwqhg6cmj8g03r4m8zlb6anqwv7xa"; - libraryHaskellDepends = [ - alsa-core - alsa-seq - base - containers - data-accessor - data-accessor-transformers - event-list - midi - midi-alsa - non-negative - random - transformers - utility-ht - ]; - description = "Programmatically edit MIDI event streams via ALSA"; - license = lib.licenses.bsd3; - platforms = lib.platforms.linux; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "streaming" = callPackage ( { mkDerivation, @@ -638069,47 +368805,6 @@ self: { } ) { }; - "streaming-base64" = callPackage ( - { - mkDerivation, - base, - base-compat-batteries, - filepath, - safe-exceptions, - streaming, - streaming-bytestring, - streaming-with, - tasty, - tasty-golden, - transformers, - }: - mkDerivation { - pname = "streaming-base64"; - version = "0.1.1.0"; - sha256 = "0yyjdld05i4bfx73maf5vzdrp7hx65784sv7bnnw4xfal1k20vlj"; - libraryHaskellDepends = [ - base - base-compat-batteries - safe-exceptions - streaming - streaming-bytestring - transformers - ]; - testHaskellDepends = [ - base - base-compat-batteries - filepath - streaming-bytestring - streaming-with - tasty - tasty-golden - ]; - description = "Streaming conversion from/to base64"; - license = lib.licenses.publicDomain; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "streaming-benchmarks" = callPackage ( { mkDerivation, @@ -638236,49 +368931,6 @@ self: { } ) { }; - "streaming-brotli" = callPackage ( - { - mkDerivation, - base, - brotli, - bytestring, - HUnit, - QuickCheck, - streaming, - streaming-bytestring, - test-framework, - test-framework-hunit, - test-framework-quickcheck2, - }: - mkDerivation { - pname = "streaming-brotli"; - version = "0.0.0.0"; - sha256 = "12bp033sjcjf3l16ihg2xa69yl7ai0886jriqpipsddfkcjnx7mr"; - libraryHaskellDepends = [ - base - brotli - bytestring - streaming - streaming-bytestring - ]; - testHaskellDepends = [ - base - bytestring - HUnit - QuickCheck - streaming - streaming-bytestring - test-framework - test-framework-hunit - test-framework-quickcheck2 - ]; - description = "Streaming interface for Brotli (RFC7932) compression"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "streaming-bytestring" = callPackage ( { mkDerivation, @@ -638444,59 +369096,6 @@ self: { } ) { }; - "streaming-concurrency" = callPackage ( - { - mkDerivation, - base, - exceptions, - hspec, - HUnit, - lifted-async, - monad-control, - QuickCheck, - quickcheck-instances, - stm, - streaming, - streaming-with, - testbench, - transformers-base, - }: - mkDerivation { - pname = "streaming-concurrency"; - version = "0.3.1.3"; - sha256 = "07fk9kdfh2983qawl78sy0ibqa8ngwna2slz3ckbm1fgc8sybzip"; - libraryHaskellDepends = [ - base - exceptions - lifted-async - monad-control - stm - streaming - streaming-with - transformers-base - ]; - testHaskellDepends = [ - base - hspec - QuickCheck - quickcheck-instances - streaming - ]; - benchmarkHaskellDepends = [ - base - exceptions - HUnit - lifted-async - monad-control - streaming - testbench - ]; - description = "Concurrency support for the streaming ecosystem"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "streaming-conduit" = callPackage ( { mkDerivation, @@ -638533,41 +369132,6 @@ self: { } ) { }; - "streaming-events" = callPackage ( - { - mkDerivation, - attoparsec, - base, - binary, - bytestring, - http-client, - streaming, - streaming-attoparsec, - streaming-bytestring, - wai-extra, - }: - mkDerivation { - pname = "streaming-events"; - version = "1.0.1"; - sha256 = "0cgd3lvxb91jd1nkw4vci5zjp6s6q545cqgd9fq6i4mxrgn7ky7h"; - libraryHaskellDepends = [ - attoparsec - base - binary - bytestring - http-client - streaming - streaming-attoparsec - streaming-bytestring - wai-extra - ]; - description = "Client-side consumption of a ServerEvent"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "streaming-eversion" = callPackage ( { mkDerivation, @@ -638613,34 +369177,6 @@ self: { } ) { }; - "streaming-fft" = callPackage ( - { - mkDerivation, - base, - contiguous-fft, - ghc-prim, - prim-instances, - primitive, - streaming, - }: - mkDerivation { - pname = "streaming-fft"; - version = "0.1.0.1"; - sha256 = "1bs0wqcns0nn62rw04a1574qakqhflxhsybchf9pzig0gyrj4538"; - libraryHaskellDepends = [ - base - contiguous-fft - ghc-prim - prim-instances - primitive - streaming - ]; - description = "online streaming fft"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "streaming-histogram" = callPackage ( { mkDerivation, @@ -638675,49 +369211,6 @@ self: { } ) { }; - "streaming-lzma" = callPackage ( - { - mkDerivation, - base, - bytestring, - HUnit, - lzma, - QuickCheck, - streaming, - streaming-bytestring, - test-framework, - test-framework-hunit, - test-framework-quickcheck2, - }: - mkDerivation { - pname = "streaming-lzma"; - version = "0.0.0.0"; - sha256 = "0nqy6400fzr7mrl70wshcdfzz531wxy5x1mqg8zixg128xc0cnfb"; - libraryHaskellDepends = [ - base - bytestring - lzma - streaming - streaming-bytestring - ]; - testHaskellDepends = [ - base - bytestring - HUnit - QuickCheck - streaming - streaming-bytestring - test-framework - test-framework-hunit - test-framework-quickcheck2 - ]; - description = "Streaming interface for LZMA/XZ compression"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "streaming-nonempty" = callPackage ( { mkDerivation, @@ -638743,60 +369236,6 @@ self: { } ) { }; - "streaming-osm" = callPackage ( - { - mkDerivation, - attoparsec, - base, - bytestring, - containers, - resourcet, - streaming, - streaming-attoparsec, - streaming-bytestring, - tasty, - tasty-hunit, - text, - transformers, - vector, - zlib, - }: - mkDerivation { - pname = "streaming-osm"; - version = "1.0.2"; - sha256 = "0szw191ixqdm1cbmz0i987mm3ipr0aydjw3vq4q0yky4q7wkimc6"; - libraryHaskellDepends = [ - attoparsec - base - bytestring - containers - resourcet - streaming - streaming-attoparsec - streaming-bytestring - text - transformers - vector - zlib - ]; - testHaskellDepends = [ - attoparsec - base - bytestring - resourcet - streaming - tasty - tasty-hunit - vector - zlib - ]; - description = "A hand-written streaming byte parser for OpenStreetMap Protobuf data"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "streaming-pcap" = callPackage ( { mkDerivation, @@ -638844,51 +369283,6 @@ self: { } ) { }; - "streaming-png" = callPackage ( - { - mkDerivation, - base, - bytestring, - cereal, - exceptions, - JuicyPixels, - mmorph, - mtl, - resourcet, - streaming, - streaming-bytestring, - streaming-commons, - transformers, - vector, - }: - mkDerivation { - pname = "streaming-png"; - version = "0.1.0.0"; - sha256 = "1ji0ji1xj0k4q54asllzzyf8b6pv1367djb57gmps7a856f51czc"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - bytestring - cereal - exceptions - JuicyPixels - mmorph - mtl - resourcet - streaming - streaming-bytestring - streaming-commons - transformers - vector - ]; - description = "Perfectly streaming PNG image decoding"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "streaming-postgresql-simple" = callPackage ( { mkDerivation, @@ -638926,111 +369320,6 @@ self: { } ) { }; - "streaming-process" = callPackage ( - { - mkDerivation, - base, - bytestring, - directory, - exceptions, - hspec, - lifted-async, - monad-control, - process, - QuickCheck, - quickcheck-instances, - streaming, - streaming-bytestring, - streaming-commons, - streaming-concurrency, - streaming-with, - transformers, - transformers-base, - }: - mkDerivation { - pname = "streaming-process"; - version = "0.1.0.0"; - sha256 = "0q0h48pzrq4zqwx4v6gyw6srfp8za6mxa241sl00g2pn90v0ma0j"; - libraryHaskellDepends = [ - base - bytestring - directory - exceptions - lifted-async - monad-control - process - streaming - streaming-bytestring - streaming-commons - streaming-concurrency - streaming-with - transformers - transformers-base - ]; - testHaskellDepends = [ - base - bytestring - hspec - QuickCheck - quickcheck-instances - streaming - streaming-bytestring - ]; - description = "Streaming support for running system process"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "streaming-sort" = callPackage ( - { - mkDerivation, - base, - binary, - bytestring, - directory, - exceptions, - hspec, - QuickCheck, - streaming, - streaming-binary, - streaming-bytestring, - streaming-with, - transformers, - }: - mkDerivation { - pname = "streaming-sort"; - version = "0.1.0.2"; - sha256 = "0877zzip19zdfn7a5b59x911rh7cjxqmxyrr9ivhahgh8igfsjf9"; - libraryHaskellDepends = [ - base - binary - bytestring - directory - exceptions - streaming - streaming-binary - streaming-bytestring - streaming-with - transformers - ]; - testHaskellDepends = [ - base - binary - directory - exceptions - hspec - QuickCheck - streaming - streaming-with - transformers - ]; - description = "Sorting streams"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "streaming-utils" = callPackage ( { mkDerivation, @@ -639307,41 +369596,6 @@ self: { } ) { archive = null; }; - "streamly-binary" = callPackage ( - { - mkDerivation, - base, - binary, - bytestring, - hspec, - QuickCheck, - streamly, - }: - mkDerivation { - pname = "streamly-binary"; - version = "1.0.0.1"; - sha256 = "16pl68dhhknda7ag1mjhwa14d3rdns70rzwvm947p8n3bv8yxsar"; - libraryHaskellDepends = [ - base - binary - bytestring - streamly - ]; - testHaskellDepends = [ - base - binary - bytestring - hspec - QuickCheck - streamly - ]; - description = "Integration of streamly and binary"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "streamly-bytestring" = callPackage ( { mkDerivation, @@ -639453,74 +369707,6 @@ self: { } ) { }; - "streamly-cassava" = callPackage ( - { - mkDerivation, - base, - bytestring, - cassava, - criterion, - exceptions, - hspec, - mtl, - QuickCheck, - quickcheck-instances, - streaming, - streaming-bytestring, - streaming-cassava, - streaming-with, - streamly, - text, - vector, - weigh, - }: - mkDerivation { - pname = "streamly-cassava"; - version = "0.1.1.0"; - sha256 = "1mkqmaqzb252plx2cas2kqm82bddwqjk615n6paw035frgvbx9j9"; - libraryHaskellDepends = [ - base - bytestring - cassava - exceptions - mtl - streamly - ]; - testHaskellDepends = [ - base - bytestring - cassava - exceptions - hspec - mtl - QuickCheck - quickcheck-instances - streamly - text - vector - ]; - benchmarkHaskellDepends = [ - base - bytestring - cassava - criterion - exceptions - mtl - streaming - streaming-bytestring - streaming-cassava - streaming-with - streamly - vector - weigh - ]; - description = "CSV streaming support via cassava for the streamly ecosystem"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "streamly-core" = callPackage ( { mkDerivation, @@ -640140,133 +370326,6 @@ self: { } ) { }; - "strelka" = callPackage ( - { - mkDerivation, - attoparsec, - attoparsec-data, - base, - base-prelude, - base64-bytestring, - bifunctors, - bytestring, - bytestring-tree-builder, - hashable, - http-media, - mtl, - scientific, - semigroups, - strelka-core, - text, - text-builder, - time, - transformers, - unordered-containers, - url-decoders, - uuid, - }: - mkDerivation { - pname = "strelka"; - version = "2.0.5"; - sha256 = "04z2ibka7gzgkcwqjg6xi0cj42hmix1pm4r8kmfqbb68a39hqbp6"; - libraryHaskellDepends = [ - attoparsec - attoparsec-data - base - base-prelude - base64-bytestring - bifunctors - bytestring - bytestring-tree-builder - hashable - http-media - mtl - scientific - semigroups - strelka-core - text - text-builder - time - transformers - unordered-containers - url-decoders - uuid - ]; - description = "A simple, flexible and composable web-router"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "strelka-core" = callPackage ( - { - mkDerivation, - base, - bytestring, - hashable, - mmorph, - mtl, - text, - transformers, - unordered-containers, - }: - mkDerivation { - pname = "strelka-core"; - version = "0.3.1"; - sha256 = "1gy382layyir0cy96igf5kyfsjzvqpb4v8bca5vl911rwmp5095v"; - libraryHaskellDepends = [ - base - bytestring - hashable - mmorph - mtl - text - transformers - unordered-containers - ]; - description = "Core components of \"strelka\""; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "strelka-wai" = callPackage ( - { - mkDerivation, - base, - base-prelude, - bytestring, - case-insensitive, - http-types, - strelka-core, - text, - unordered-containers, - wai, - warp, - }: - mkDerivation { - pname = "strelka-wai"; - version = "1.0.1.1"; - sha256 = "05l26v777fifb5rpvmkyvaqr12f7q8i9780savx6wfabi6wvqh5i"; - libraryHaskellDepends = [ - base - base-prelude - bytestring - case-insensitive - http-types - strelka-core - text - unordered-containers - wai - warp - ]; - description = "WAI compatibility layer for \"strelka\""; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "strict" = callPackage ( { mkDerivation, @@ -640519,96 +370578,6 @@ self: { } ) { }; - "strict-data" = callPackage ( - { - mkDerivation, - aeson, - base, - containers, - deepseq, - doctest, - exceptions, - fail, - hashable, - HTF, - monad-control, - mtl, - pretty, - QuickCheck, - resourcet, - strict, - text, - transformers, - transformers-base, - unordered-containers, - util-plus, - vector, - vector-algorithms, - }: - mkDerivation { - pname = "strict-data"; - version = "0.2.0.2"; - sha256 = "1xr1qd707grip4kan9d2nh5flqc61m2m3z8kf4wzgdd3m42zdg7q"; - libraryHaskellDepends = [ - aeson - base - containers - deepseq - exceptions - fail - hashable - monad-control - mtl - pretty - QuickCheck - resourcet - strict - text - transformers - transformers-base - unordered-containers - util-plus - vector - vector-algorithms - ]; - testHaskellDepends = [ - base - containers - deepseq - doctest - hashable - HTF - vector - ]; - description = "A collection of commonly used strict data structures"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "strict-ghc-plugin" = callPackage ( - { - mkDerivation, - base, - ghc, - syb, - }: - mkDerivation { - pname = "strict-ghc-plugin"; - version = "0.1.1"; - sha256 = "0hx1zp99npwdp5w3q93xfidcw59lxskilmbqc80xi97d4w4h8jrb"; - libraryHaskellDepends = [ - base - ghc - syb - ]; - description = "Compiler plugin for making Haskell strict"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "strict-identity" = callPackage ( { mkDerivation, base }: mkDerivation { @@ -640648,29 +370617,6 @@ self: { } ) { }; - "strict-io" = callPackage ( - { - mkDerivation, - base, - deepseq, - extensible-exceptions, - }: - mkDerivation { - pname = "strict-io"; - version = "0.2.2"; - sha256 = "1jcm1p1slbdxmbnmvqihvgf2czfaj4yks4hyqiv9ng95w9cfpagr"; - libraryHaskellDepends = [ - base - deepseq - extensible-exceptions - ]; - description = "A library wrapping standard IO modules to provide strict IO"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "strict-lens" = callPackage ( { mkDerivation, @@ -640921,32 +370867,6 @@ self: { } ) { }; - "strict-writer" = callPackage ( - { - mkDerivation, - base, - doctest, - mtl, - }: - mkDerivation { - pname = "strict-writer"; - version = "0.4.0.0"; - sha256 = "1ajchh99m0bafcy0q3zvbhnzwlb5zvak5i0x97mn2sprhj1vbqds"; - libraryHaskellDepends = [ - base - mtl - ]; - testHaskellDepends = [ - base - doctest - ]; - description = "A stricter writer, which uses StateT in order to avoid space leaks"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "strictify" = callPackage ( { mkDerivation, @@ -640975,27 +370895,6 @@ self: { } ) { }; - "strictly" = callPackage ( - { - mkDerivation, - base, - deepseq, - }: - mkDerivation { - pname = "strictly"; - version = "1.0.0.0"; - sha256 = "1a3azrg9ksb4kmbckjqw3krxj0app6q19ighd6k3z7xpf682qx3c"; - libraryHaskellDepends = [ - base - deepseq - ]; - description = "Combinators for strictifying functions"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "string" = callPackage ( { mkDerivation }: mkDerivation { @@ -641304,35 +371203,6 @@ self: { } ) { }; - "string-isos" = callPackage ( - { - mkDerivation, - base, - bytestring, - mono-traversable, - safe, - text, - type-iso, - }: - mkDerivation { - pname = "string-isos"; - version = "0.1.0.1"; - sha256 = "0sjla0l2pgc2bz1f0hlaxpzjl6ngpxca7l5x7mfsqi0grs8g4jqw"; - libraryHaskellDepends = [ - base - bytestring - mono-traversable - safe - text - type-iso - ]; - description = "Tools for working with isomorphisms of strings"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "string-like" = callPackage ( { mkDerivation, @@ -641380,28 +371250,6 @@ self: { } ) { }; - "string-quote" = callPackage ( - { - mkDerivation, - base, - template-haskell, - }: - mkDerivation { - pname = "string-quote"; - version = "0.0.1"; - sha256 = "1pfkd3lwdphvl00gly7zbpvsmlw6b2d5568rxyqmq2qw6vzf9134"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base - template-haskell - ]; - description = "QuasiQuoter for non-interpolated strings, texts and bytestrings"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "string-random" = callPackage ( { mkDerivation, @@ -641523,30 +371371,6 @@ self: { } ) { }; - "string-typelits" = callPackage ( - { - mkDerivation, - base, - template-haskell, - type-combinators, - type-combinators-quote, - }: - mkDerivation { - pname = "string-typelits"; - version = "0.1.0.0"; - sha256 = "1fxb6hlyycdf9g223dbchxkfiwxc274wi5fl7y7s3rxq4pmvcdgz"; - libraryHaskellDepends = [ - base - template-haskell - type-combinators - type-combinators-quote - ]; - description = "Type-level Chars and Strings, with decidable equality"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "string-variants" = callPackage ( { mkDerivation, @@ -641645,42 +371469,6 @@ self: { } ) { }; - "stringlike" = callPackage ( - { - mkDerivation, - base, - bytestring, - QuickCheck, - quickcheck-instances, - test-framework, - test-framework-quickcheck2, - text, - }: - mkDerivation { - pname = "stringlike"; - version = "0.0.0"; - sha256 = "0wrhma5g73lnyazbb11z2xhd7fdz93mb1kgbqxjn1prhlc3j7ahy"; - libraryHaskellDepends = [ - base - bytestring - text - ]; - testHaskellDepends = [ - base - bytestring - QuickCheck - quickcheck-instances - test-framework - test-framework-quickcheck2 - text - ]; - description = "Transformations to several string-like types"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "stringprep" = callPackage ( { mkDerivation, @@ -641766,33 +371554,6 @@ self: { } ) { }; - "stringtable-atom" = callPackage ( - { - mkDerivation, - base, - binary, - bytestring, - containers, - syb, - }: - mkDerivation { - pname = "stringtable-atom"; - version = "0.0.7"; - sha256 = "1wp6w12bflrqcwi09y7s1crj72n4pbj8bkpwj2ia5gaqn5x56wjs"; - libraryHaskellDepends = [ - base - binary - bytestring - containers - syb - ]; - description = "Memoize Strings as Atoms for fast comparison and sorting, with maps and sets"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "stringz" = callPackage ( { mkDerivation, @@ -641888,43 +371649,6 @@ self: { } ) { }; - "stripe" = callPackage ( - { - mkDerivation, - aeson, - base, - bytestring, - http-conduit, - http-types, - mtl, - text, - time, - unordered-containers, - utf8-string, - }: - mkDerivation { - pname = "stripe"; - version = "0.8.3"; - sha256 = "1lqz116lvj2444sf2j58dg1nkjwaxm9abrizp1zqkmixbl7ykaqh"; - libraryHaskellDepends = [ - aeson - base - bytestring - http-conduit - http-types - mtl - text - time - unordered-containers - utf8-string - ]; - description = "A Haskell implementation of the Stripe API"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "stripe-concepts" = callPackage ( { mkDerivation, @@ -641947,61 +371671,6 @@ self: { } ) { }; - "stripe-core" = callPackage ( - { - mkDerivation, - aeson, - base, - bytestring, - mtl, - text, - time, - transformers, - unordered-containers, - }: - mkDerivation { - pname = "stripe-core"; - version = "2.6.2"; - sha256 = "00bjr71lawn1ar18vm3p849ffr6r6fmgwn2ksg4vas5rmmy2vwib"; - libraryHaskellDepends = [ - aeson - base - bytestring - mtl - text - time - transformers - unordered-containers - ]; - description = "Stripe API for Haskell - Pure Core"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "stripe-haskell" = callPackage ( - { - mkDerivation, - base, - stripe-core, - stripe-http-client, - }: - mkDerivation { - pname = "stripe-haskell"; - version = "2.6.2"; - sha256 = "02ydf9i632r2clhvf1f9v0yx7vmpmh37mch1jshazrw3my6sq1vl"; - libraryHaskellDepends = [ - base - stripe-core - stripe-http-client - ]; - description = "Stripe API for Haskell"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "stripe-hs" = callPackage ( { mkDerivation, @@ -642078,94 +371747,6 @@ self: { } ) { }; - "stripe-http-client" = callPackage ( - { - mkDerivation, - aeson, - base, - bytestring, - free, - hspec, - http-client, - http-client-tls, - http-types, - stripe-core, - stripe-tests, - text, - }: - mkDerivation { - pname = "stripe-http-client"; - version = "2.6.2"; - sha256 = "0xz8dc2mh5mscc3mp5n4h2sch1winpaf7sy1w4s87vv68304jfg3"; - libraryHaskellDepends = [ - aeson - base - bytestring - http-client - http-client-tls - http-types - stripe-core - text - ]; - testHaskellDepends = [ - base - free - hspec - http-client - stripe-core - stripe-tests - ]; - description = "Stripe API for Haskell - http-client backend"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "stripe-http-streams" = callPackage ( - { - mkDerivation, - aeson, - base, - bytestring, - free, - HsOpenSSL, - hspec, - http-streams, - io-streams, - stripe-core, - stripe-tests, - text, - }: - mkDerivation { - pname = "stripe-http-streams"; - version = "2.4.1"; - sha256 = "0ln0w5q5g0g4p4zrcpb6pfv6jna7mmyq48bwb27cq6zn20i0m2vc"; - libraryHaskellDepends = [ - aeson - base - bytestring - HsOpenSSL - http-streams - io-streams - stripe-core - text - ]; - testHaskellDepends = [ - base - free - HsOpenSSL - hspec - http-streams - stripe-core - stripe-tests - ]; - doCheck = false; - description = "Stripe API for Haskell - http-streams backend"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "stripe-scotty" = callPackage ( { mkDerivation, @@ -642268,48 +371849,6 @@ self: { } ) { }; - "stripe-tests" = callPackage ( - { - mkDerivation, - aeson, - base, - bytestring, - free, - hspec, - hspec-core, - mtl, - random, - stripe-core, - text, - time, - transformers, - unordered-containers, - }: - mkDerivation { - pname = "stripe-tests"; - version = "2.6.2"; - sha256 = "06r1jyf6rjmnd6p2grfs0s0f5x6sswsxw9ip7x81rh9cz5qdshdg"; - libraryHaskellDepends = [ - aeson - base - bytestring - free - hspec - hspec-core - mtl - random - stripe-core - text - time - transformers - unordered-containers - ]; - description = "Tests for Stripe API bindings for Haskell"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "stripe-wreq" = callPackage ( { mkDerivation, @@ -642530,845 +372069,251 @@ self: { tasty-hspec tasty-quickcheck ]; - testToolDepends = [ tasty-discover ]; - description = "Strongly typed paths in Haskell"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "strongswan-sql" = callPackage ( - { - mkDerivation, - asn1-encoding, - asn1-types, - attoparsec, - base, - bytestring, - data-default, - failable, - haskeline, - io-streams, - iproute, - lens, - mtl, - mysql-haskell, - network, - structured-cli, - text, - transformers, - }: - mkDerivation { - pname = "strongswan-sql"; - version = "1.3.0.1"; - sha256 = "1n61xxgp4saljyq6zywi5x5nlcwzp3i9vhwlmib790wr19znnxky"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - asn1-encoding - asn1-types - attoparsec - base - bytestring - data-default - failable - haskeline - io-streams - iproute - lens - mtl - mysql-haskell - network - structured-cli - text - transformers - ]; - executableHaskellDepends = [ - asn1-encoding - asn1-types - attoparsec - base - bytestring - data-default - failable - haskeline - io-streams - iproute - lens - mtl - mysql-haskell - network - structured-cli - text - transformers - ]; - testHaskellDepends = [ - asn1-encoding - asn1-types - attoparsec - base - bytestring - data-default - failable - haskeline - io-streams - iproute - lens - mtl - mysql-haskell - network - structured-cli - text - transformers - ]; - description = "Interface library for strongSwan SQL backend"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "strongswan-sql"; - } - ) { }; - - "strongweak" = callPackage ( - { - mkDerivation, - base, - generic-random, - hspec, - hspec-discover, - QuickCheck, - quickcheck-instances, - rerefined, - text, - text-builder-linear, - vector, - vector-sized, - }: - mkDerivation { - pname = "strongweak"; - version = "0.12.0"; - sha256 = "1z3p0wq88h6l056pyfvchxpwrlwypnxaad0g1wqdz7nsigd3fn12"; - libraryHaskellDepends = [ - base - rerefined - text - text-builder-linear - vector - vector-sized - ]; - testHaskellDepends = [ - base - generic-random - hspec - QuickCheck - quickcheck-instances - rerefined - text - text-builder-linear - vector - vector-sized - ]; - testToolDepends = [ hspec-discover ]; - description = "Convert between strong and weak representations of types"; - license = lib.licenses.mit; - maintainers = [ lib.maintainers.raehik ]; - } - ) { }; - - "strptime" = callPackage ( - { - mkDerivation, - base, - bytestring, - text, - time, - }: - mkDerivation { - pname = "strptime"; - version = "1.0.10"; - sha256 = "1f42yf49fqr2fyjfakscmmlnmw3w5rg7wyy6gjyrf0gcgsh0h9fd"; - libraryHaskellDepends = [ - base - bytestring - text - time - ]; - description = "Efficient parsing of LocalTime using a binding to C's strptime, with some extra features (i.e. fractional seconds)"; - license = lib.licenses.bsd3; - } - ) { }; - - "struct-inspector" = callPackage ( - { - mkDerivation, - base, - bytestring, - directory, - dlist-nonempty, - filepath, - language-c, - multi-except, - optparse-applicative, - pretty, - process, - utf8-string, - }: - mkDerivation { - pname = "struct-inspector"; - version = "1.1.0"; - sha256 = "08bihms2jbrzshn6z0x6fq79gfp28950xfl3w783fv4f2xphnn96"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - bytestring - directory - dlist-nonempty - filepath - language-c - multi-except - optparse-applicative - pretty - process - utf8-string - ]; - description = "Inspect the padding and size of C data declarations and their fields"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "struct-inspector"; - broken = true; - } - ) { }; - - "structs" = callPackage ( - { - mkDerivation, - base, - deepseq, - ghc-prim, - primitive, - QuickCheck, - tasty, - tasty-hunit, - tasty-quickcheck, - template-haskell, - th-abstraction, - }: - mkDerivation { - pname = "structs"; - version = "0.1.9"; - sha256 = "033vx729k9jn4w4hs3kp8nlnf0ylsqgg3q4cmb7zjfpgk4bk511w"; - revision = "3"; - editedCabalFile = "05ymnx9vzba6jqkx2jil2qj15399qz9dxzqsy6gfpx1j65spjrva"; - libraryHaskellDepends = [ - base - deepseq - ghc-prim - primitive - template-haskell - th-abstraction - ]; - testHaskellDepends = [ - base - primitive - QuickCheck - tasty - tasty-hunit - tasty-quickcheck - ]; - description = "Strict GC'd imperative object-oriented programming with cheap pointers"; - license = lib.licenses.bsd3; - } - ) { }; - - "structural-induction" = callPackage ( - { - mkDerivation, - base, - containers, - genifunctors, - geniplate, - language-haskell-extract, - mtl, - pretty, - QuickCheck, - safe, - testing-feat, - }: - mkDerivation { - pname = "structural-induction"; - version = "0.3"; - sha256 = "1wykd33phjmz2aky2dynsxmrmxqpkh4h41majq57lh3dag87cwax"; - libraryHaskellDepends = [ - base - containers - genifunctors - mtl - pretty - safe - ]; - testHaskellDepends = [ - base - geniplate - language-haskell-extract - mtl - pretty - QuickCheck - safe - testing-feat - ]; - description = "Instantiate structural induction schemas for algebraic data types"; - license = lib.licenses.lgpl3Only; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "structural-traversal" = callPackage ( - { - mkDerivation, - base, - HUnit, - mtl, - template-haskell, - }: - mkDerivation { - pname = "structural-traversal"; - version = "0.1.1.1"; - sha256 = "1sb1w8p473xb3r0pmbg265g841qx7cyg4cgc4cfbvaiym1j02rcg"; - libraryHaskellDepends = [ - base - mtl - template-haskell - ]; - testHaskellDepends = [ - base - HUnit - mtl - ]; - description = "Initial project template from stack"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "structured" = callPackage ( - { - mkDerivation, - aeson, - array, - base, - base16-bytestring, - binary, - bytestring, - containers, - hashable, - scientific, - tagged, - text, - time-compat, - transformers, - unordered-containers, - uuid-types, - vector, - }: - mkDerivation { - pname = "structured"; - version = "0.1.1"; - sha256 = "1mz02ys85z79nj24ylsmgh8v2m7zv2rixf7w0iqnwc49lax52w4q"; - revision = "8"; - editedCabalFile = "02bmn23733plxrpcsfmsfn56hk7i0bjsp4ml85q868zq18m46kwg"; - libraryHaskellDepends = [ - aeson - array - base - base16-bytestring - binary - bytestring - containers - hashable - scientific - tagged - text - time-compat - transformers - unordered-containers - uuid-types - vector - ]; - description = "Structure (hash) of your data types"; - license = lib.licenses.bsd3; - } - ) { }; - - "structured-cli" = callPackage ( - { - mkDerivation, - base, - data-default, - exceptions, - haskeline, - mtl, - split, - transformers, - }: - mkDerivation { - pname = "structured-cli"; - version = "2.7.0.1"; - sha256 = "18l4jy328djmrwhmcmli73592qlld85fwbwby95mghwdbdy2i68g"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - data-default - exceptions - haskeline - mtl - split - transformers - ]; - executableHaskellDepends = [ - base - data-default - mtl - split - ]; - description = "Application library for building interactive console CLIs"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "some-cli"; - broken = true; - } - ) { }; - - "structured-haskell-mode" = callPackage ( - { - mkDerivation, - base, - descriptive, - ghc-prim, - haskell-src-exts, - text, - }: - mkDerivation { - pname = "structured-haskell-mode"; - version = "1.1.0"; - sha256 = "1d1qv9d8qifcxbxqb6a6j0fsi65lg8sndn7hn2s38hgnxdb7llf5"; - revision = "1"; - editedCabalFile = "0z3rd0wpnw9xrz2jrda6n8lg0mnzmgkjrjc48vzdjsf76ysjnfka"; - isLibrary = false; - isExecutable = true; - enableSeparateDataOutput = true; - executableHaskellDepends = [ - base - descriptive - ghc-prim - haskell-src-exts - text - ]; - description = "Structured editing Emacs mode for Haskell"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "structured-haskell-mode"; - maintainers = [ lib.maintainers.peti ]; - } - ) { }; - - "structured-mongoDB" = callPackage ( - { - mkDerivation, - array, - base, - bson, - bytestring, - compact-string-fix, - containers, - monad-control, - mongoDB, - mtl, - old-time, - template-haskell, - transformers, - transformers-base, - }: - mkDerivation { - pname = "structured-mongoDB"; - version = "0.3"; - sha256 = "0f4s4zi6h53jhcj3f43a2arra02fk1i2almdm6x2mjy1mzhdkjdx"; - libraryHaskellDepends = [ - array - base - bson - bytestring - compact-string-fix - containers - monad-control - mongoDB - mtl - old-time - template-haskell - transformers - transformers-base - ]; - description = "Structured MongoDB interface"; - license = "GPL"; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "structures" = callPackage ( - { - mkDerivation, - array, - base, - bytestring, - containers, - contravariant, - criterion, - deepseq, - directory, - doctest, - filepath, - free, - ghc, - ghc-prim, - hashable, - hlint, - hybrid-vectors, - lens, - monad-st, - MonadRandom, - parallel, - primitive, - QuickCheck, - semigroups, - tasty, - tasty-quickcheck, - tasty-th, - transformers, - unordered-containers, - vector, - vector-algorithms, - }: - mkDerivation { - pname = "structures"; - version = "0.2"; - sha256 = "000misbp9fsnmzhqi7na9b56h45c18ac86j7gfaxv7fgqz82zis8"; - libraryHaskellDepends = [ - base - containers - contravariant - deepseq - free - ghc - ghc-prim - hashable - hybrid-vectors - lens - monad-st - parallel - primitive - semigroups - transformers - vector - vector-algorithms - ]; - testHaskellDepends = [ - base - bytestring - containers - deepseq - directory - doctest - filepath - hlint - QuickCheck - semigroups - tasty - tasty-quickcheck - tasty-th - unordered-containers - ]; - benchmarkHaskellDepends = [ - array - base - containers - criterion - deepseq - MonadRandom - unordered-containers - vector - ]; - description = "\"Advanced\" Data Structures"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "stt" = callPackage ( - { - mkDerivation, - base, - mtl, - primitive, - tasty, - tasty-hunit, - tasty-quickcheck, - transformers, - }: - mkDerivation { - pname = "stt"; - version = "0.2.1"; - sha256 = "0xminpfrvgk4aldw7v1ci3nxjlizsp9s7sfba9f3gjc6jhyxbdfv"; - libraryHaskellDepends = [ - base - mtl - primitive - ]; - testHaskellDepends = [ - base - tasty - tasty-hunit - tasty-quickcheck - transformers - ]; - description = "A monad transformer version of the ST monad"; + testToolDepends = [ tasty-discover ]; + description = "Strongly typed paths in Haskell"; license = lib.licenses.mit; hydraPlatforms = lib.platforms.none; broken = true; } ) { }; - "stunclient" = callPackage ( + "strongweak" = callPackage ( { mkDerivation, base, - bytestring, - cereal, - crypto-api, - cryptohash, - cryptohash-cryptoapi, - digest, - network, + generic-random, + hspec, + hspec-discover, QuickCheck, - random, - stringprep, - test-framework, - test-framework-quickcheck2, + quickcheck-instances, + rerefined, text, - transformers, - unbounded-delays, + text-builder-linear, + vector, + vector-sized, }: mkDerivation { - pname = "stunclient"; - version = "0.1.0.1"; - sha256 = "0i9sbicwx6d3vsp2fxjr31msd1n5nqh1vxb2hn4in5n8y6d32qlx"; + pname = "strongweak"; + version = "0.12.0"; + sha256 = "1z3p0wq88h6l056pyfvchxpwrlwypnxaad0g1wqdz7nsigd3fn12"; libraryHaskellDepends = [ base - bytestring - cereal - crypto-api - cryptohash - cryptohash-cryptoapi - digest - network - random - stringprep + rerefined text - transformers - unbounded-delays + text-builder-linear + vector + vector-sized ]; testHaskellDepends = [ base - bytestring - cereal - digest - network + generic-random + hspec QuickCheck - random - test-framework - test-framework-quickcheck2 + quickcheck-instances + rerefined text - transformers - unbounded-delays + text-builder-linear + vector + vector-sized ]; - description = "RFC 5389: Session Traversal Utilities for NAT (STUN) client"; + testToolDepends = [ hspec-discover ]; + description = "Convert between strong and weak representations of types"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; + maintainers = [ lib.maintainers.raehik ]; } ) { }; - "stunts" = callPackage ( + "strptime" = callPackage ( + { + mkDerivation, + base, + bytestring, + text, + time, + }: + mkDerivation { + pname = "strptime"; + version = "1.0.10"; + sha256 = "1f42yf49fqr2fyjfakscmmlnmw3w5rg7wyy6gjyrf0gcgsh0h9fd"; + libraryHaskellDepends = [ + base + bytestring + text + time + ]; + description = "Efficient parsing of LocalTime using a binding to C's strptime, with some extra features (i.e. fractional seconds)"; + license = lib.licenses.bsd3; + } + ) { }; + + "struct-inspector" = callPackage ( { mkDerivation, base, - binary, - bullet, bytestring, - containers, directory, - elerea, - GLFW-b, - lambdacube-bullet, - lambdacube-engine, - mtl, - random, - vector, + dlist-nonempty, + filepath, + language-c, + multi-except, + optparse-applicative, + pretty, + process, + utf8-string, }: mkDerivation { - pname = "stunts"; - version = "0.1.2"; - sha256 = "075rbdhlrz88qkwx54jrmb4h4jq8q5wk4ncb858llaswcbsfgl8w"; + pname = "struct-inspector"; + version = "1.1.0"; + sha256 = "08bihms2jbrzshn6z0x6fq79gfp28950xfl3w783fv4f2xphnn96"; isLibrary = false; isExecutable = true; - enableSeparateDataOutput = true; executableHaskellDepends = [ base - binary - bullet bytestring - containers directory - elerea - GLFW-b - lambdacube-bullet - lambdacube-engine - mtl - random - vector + dlist-nonempty + filepath + language-c + multi-except + optparse-applicative + pretty + process + utf8-string ]; - description = "A revival of the classic game Stunts (LambdaCube tech demo)"; + description = "Inspect the padding and size of C data declarations and their fields"; license = lib.licenses.bsd3; hydraPlatforms = lib.platforms.none; - mainProgram = "stunts"; + mainProgram = "struct-inspector"; + broken = true; } ) { }; - "stutter" = callPackage ( + "structs" = callPackage ( { mkDerivation, - attoparsec, base, - bytestring, - conduit, - conduit-combinators, - conduit-extra, - exceptions, - mtl, - optparse-applicative, - resourcet, - snipcheck, + deepseq, + ghc-prim, + primitive, + QuickCheck, tasty, - tasty-ant-xml, tasty-hunit, - text, + tasty-quickcheck, + template-haskell, + th-abstraction, }: mkDerivation { - pname = "stutter"; - version = "0.1.0.2"; - sha256 = "1cha46fnx9balwkvwcc5b7irq410mr357rqvw85g91vv8ww209sj"; - isLibrary = true; - isExecutable = true; + pname = "structs"; + version = "0.1.9"; + sha256 = "033vx729k9jn4w4hs3kp8nlnf0ylsqgg3q4cmb7zjfpgk4bk511w"; + revision = "3"; + editedCabalFile = "05ymnx9vzba6jqkx2jil2qj15399qz9dxzqsy6gfpx1j65spjrva"; libraryHaskellDepends = [ - attoparsec - base - bytestring - conduit - conduit-combinators - conduit-extra - exceptions - mtl - resourcet - text - ]; - executableHaskellDepends = [ - attoparsec base - conduit - conduit-combinators - optparse-applicative - text + deepseq + ghc-prim + primitive + template-haskell + th-abstraction ]; testHaskellDepends = [ - attoparsec base - snipcheck + primitive + QuickCheck tasty - tasty-ant-xml tasty-hunit + tasty-quickcheck ]; - description = "(Stutter Text|String)-Utterer"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - mainProgram = "stutter"; + description = "Strict GC'd imperative object-oriented programming with cheap pointers"; + license = lib.licenses.bsd3; } ) { }; - "stylish-cabal" = callPackage ( + "structured" = callPackage ( { mkDerivation, - ansi-wl-pprint, + aeson, + array, base, - base-compat, + base16-bytestring, + binary, bytestring, - Cabal, containers, + hashable, + scientific, + tagged, + text, + time-compat, + transformers, + unordered-containers, + uuid-types, + vector, + }: + mkDerivation { + pname = "structured"; + version = "0.1.1"; + sha256 = "1mz02ys85z79nj24ylsmgh8v2m7zv2rixf7w0iqnwc49lax52w4q"; + revision = "8"; + editedCabalFile = "02bmn23733plxrpcsfmsfn56hk7i0bjsp4ml85q868zq18m46kwg"; + libraryHaskellDepends = [ + aeson + array + base + base16-bytestring + binary + bytestring + containers + hashable + scientific + tagged + text + time-compat + transformers + unordered-containers + uuid-types + vector + ]; + description = "Structure (hash) of your data types"; + license = lib.licenses.bsd3; + } + ) { }; + + "structured-cli" = callPackage ( + { + mkDerivation, + base, data-default, - deepseq, - haddock-library, - hspec, - hspec-core, - microlens, - microlens-th, + exceptions, + haskeline, mtl, - optparse-applicative, split, - template-haskell, - utf8-string, + transformers, }: mkDerivation { - pname = "stylish-cabal"; - version = "0.5.0.0"; - sha256 = "0gfvbp7x8fik91f2w7m0ps14m1h3wg3a1acx9zn7pks8xpndnd1d"; + pname = "structured-cli"; + version = "2.7.0.1"; + sha256 = "18l4jy328djmrwhmcmli73592qlld85fwbwby95mghwdbdy2i68g"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ - ansi-wl-pprint base - base-compat - Cabal - containers data-default - deepseq - haddock-library - hspec - hspec-core - microlens - microlens-th + exceptions + haskeline mtl split - template-haskell - utf8-string + transformers ]; executableHaskellDepends = [ base - base-compat - bytestring - optparse-applicative - ]; - testHaskellDepends = [ - base - base-compat - bytestring - hspec + data-default + mtl + split ]; - doHaddock = false; - description = "Format Cabal files"; + description = "Application library for building interactive console CLIs"; license = lib.licenses.bsd3; hydraPlatforms = lib.platforms.none; - mainProgram = "stylish-cabal"; + mainProgram = "some-cli"; broken = true; } ) { }; @@ -643858,67 +372803,6 @@ self: { } ) { }; - "stylized" = callPackage ( - { - mkDerivation, - ansi-terminal, - base, - }: - mkDerivation { - pname = "stylized"; - version = "0.1.3"; - sha256 = "09gacqlq3vlnsnbjjr44pjypw9v3amg8sqsxg0xwl8ricxpww774"; - libraryHaskellDepends = [ - ansi-terminal - base - ]; - description = "Ways to output stylized text on ANSI consoles"; - license = "GPL"; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "styx" = callPackage ( - { - mkDerivation, - aeson, - base, - containers, - directory, - filepath, - mtl, - optparse-applicative, - process, - text, - yaml, - }: - mkDerivation { - pname = "styx"; - version = "1.3.1"; - sha256 = "0g2pgczmk647ckyfq6yvb8isjjswjvymz4l065w4m79by9wkjlmb"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - aeson - base - containers - directory - filepath - mtl - optparse-applicative - process - text - yaml - ]; - description = "A generator of nix files"; - license = "GPL"; - hydraPlatforms = lib.platforms.none; - mainProgram = "styx"; - broken = true; - } - ) { }; - "suavemente" = callPackage ( { mkDerivation, @@ -643980,42 +372864,6 @@ self: { } ) { }; - "sub-state" = callPackage ( - { - mkDerivation, - base, - mtl, - QuickCheck, - quickcheck-instances, - sets, - tasty, - tasty-hunit, - tasty-quickcheck, - }: - mkDerivation { - pname = "sub-state"; - version = "0.0.0.1"; - sha256 = "1pkdid39fm98jkkapky7l1ckmgslam8ihirzariiw512bdcq004p"; - libraryHaskellDepends = [ - base - mtl - sets - ]; - testHaskellDepends = [ - base - QuickCheck - quickcheck-instances - tasty - tasty-hunit - tasty-quickcheck - ]; - description = "Get the total, put a single element"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "subG" = callPackage ( { mkDerivation, base }: mkDerivation { @@ -644135,135 +372983,6 @@ self: { } ) { }; - "subhask" = callPackage ( - { - mkDerivation, - approximate, - array, - base, - bloomfilter, - bytes, - bytestring, - cassava, - containers, - criterion, - deepseq, - erf, - gamma, - ghc-prim, - hmatrix, - hyperloglog, - lens, - monad-primitive, - MonadRandom, - mtl, - parallel, - primitive, - QuickCheck, - semigroups, - template-haskell, - test-framework, - test-framework-quickcheck2, - vector, - }: - mkDerivation { - pname = "subhask"; - version = "0.1.1.0"; - sha256 = "14f7vl60bmcm4sqla8r5xydx3spsw9mi70qh596cp2lqxlksgrf3"; - libraryHaskellDepends = [ - approximate - array - base - bloomfilter - bytes - bytestring - cassava - containers - deepseq - erf - gamma - ghc-prim - hmatrix - hyperloglog - lens - monad-primitive - MonadRandom - mtl - parallel - primitive - QuickCheck - semigroups - template-haskell - vector - ]; - testHaskellDepends = [ - base - test-framework - test-framework-quickcheck2 - ]; - benchmarkHaskellDepends = [ - base - criterion - MonadRandom - ]; - description = "Type safe interface for programming in subcategories of Hask"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "subleq-toolchain" = callPackage ( - { - mkDerivation, - base, - cmdargs, - containers, - lens, - mtl, - parsec, - pretty, - template-haskell, - }: - mkDerivation { - pname = "subleq-toolchain"; - version = "0.1.8.5"; - sha256 = "1imb3cp2px42gg4jzqf7agh6wr9d14y67plv1zp5ajqa3bj3x6ba"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - containers - lens - mtl - parsec - pretty - ]; - executableHaskellDepends = [ - base - cmdargs - containers - lens - mtl - parsec - pretty - ]; - testHaskellDepends = [ - base - containers - lens - mtl - parsec - pretty - template-haskell - ]; - description = "Toolchain of subleq computer"; - license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - mainProgram = "subleq"; - broken = true; - } - ) { }; - "sublists" = callPackage ( { mkDerivation, base }: mkDerivation { @@ -644341,87 +373060,6 @@ self: { } ) { }; - "subsample" = callPackage ( - { - mkDerivation, - base, - bytestring, - cassava, - containers, - optparse-generic, - random-fu, - text, - vector, - }: - mkDerivation { - pname = "subsample"; - version = "0.1.0.0"; - sha256 = "1ahl7vjsg0by3q9zfkfqslvpq3p9v5754iippi2f5z8rax1s7di0"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - containers - random-fu - text - vector - ]; - executableHaskellDepends = [ - base - bytestring - cassava - containers - optparse-generic - text - vector - ]; - description = "Subsample data"; - license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - mainProgram = "subsample"; - broken = true; - } - ) { }; - - "substring-parser" = callPackage ( - { - mkDerivation, - attoparsec, - base, - dlist, - hspec, - NoTrace, - parsers, - QuickCheck, - text, - }: - mkDerivation { - pname = "substring-parser"; - version = "0.4.1.0"; - sha256 = "1d49py3dn7jh9y0pqm9in6qhhk5xi8dr8m143h5raqji4q53mfva"; - libraryHaskellDepends = [ - attoparsec - base - dlist - NoTrace - parsers - text - ]; - testHaskellDepends = [ - attoparsec - base - hspec - NoTrace - parsers - QuickCheck - text - ]; - description = "Match / replace substrings with a parser combinators"; - license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "subtitleParser" = callPackage ( { mkDerivation, @@ -644467,34 +373105,6 @@ self: { } ) { }; - "subwordgraph" = callPackage ( - { - mkDerivation, - base, - containers, - mtl, - QuickCheck, - }: - mkDerivation { - pname = "subwordgraph"; - version = "1.0.2"; - sha256 = "0dnwpccvm0y5cysv2w541gkjvx88v64pvjdviqaw1q5k8sx3iz9v"; - libraryHaskellDepends = [ - base - containers - mtl - ]; - testHaskellDepends = [ - base - QuickCheck - ]; - description = "Subword graph implementation"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "subzero" = callPackage ( { mkDerivation, @@ -644520,33 +373130,6 @@ self: { } ) { }; - "success" = callPackage ( - { - mkDerivation, - base, - monad-control, - mtl, - transformers, - transformers-base, - }: - mkDerivation { - pname = "success"; - version = "0.2.6"; - sha256 = "1dnsya1cbj0z2fag4vp43bm3v18p9mm1yxza8gaw8fz1i9zfg5g9"; - libraryHaskellDepends = [ - base - monad-control - mtl - transformers - transformers-base - ]; - description = "A version of Either specialised for encoding of success or failure"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "successors" = callPackage ( { mkDerivation, base }: mkDerivation { @@ -644777,78 +373360,6 @@ self: { } ) { }; - "suffix-array" = callPackage ( - { - mkDerivation, - array, - base, - containers, - criterion, - random, - tasty, - tasty-hunit, - tasty-quickcheck, - }: - mkDerivation { - pname = "suffix-array"; - version = "0.3.0.0"; - sha256 = "1527wqvg53k9gdgf6zm3l3f3qipvqg1llw6g9acc6ip3796sy2a1"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - array - base - ]; - executableHaskellDepends = [ base ]; - testHaskellDepends = [ - array - base - containers - tasty - tasty-hunit - tasty-quickcheck - ]; - benchmarkHaskellDepends = [ - base - criterion - random - ]; - description = "Simple and moderately efficient suffix array implementation"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "suffix-array-exe"; - broken = true; - } - ) { }; - - "suffixarray" = callPackage ( - { - mkDerivation, - base, - HUnit, - vector, - }: - mkDerivation { - pname = "suffixarray"; - version = "0.0.3.1"; - sha256 = "0wa2yfz5y90dq9mf3xyl7126rvjldnaa32gmg253bfv6hjvk4hhp"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - vector - ]; - executableHaskellDepends = [ - base - HUnit - ]; - description = "n log n implementation of suffix array"; - license = lib.licenses.gpl2Only; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "suffixtree" = callPackage ( { mkDerivation, @@ -645047,29 +373558,6 @@ self: { } ) { }; - "sugarhaskell" = callPackage ( - { - mkDerivation, - base, - process, - }: - mkDerivation { - pname = "sugarhaskell"; - version = "0.1"; - sha256 = "1hlzckm5c1dih79nmwy2gk4fjnn4kxzp3pk0adfyhldapkq6wpmq"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - process - ]; - description = "Library-based syntactic extensibility for Haskell"; - license = "GPL"; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "suitable" = callPackage ( { mkDerivation, @@ -645149,33 +373637,6 @@ self: { } ) { }; - "sum-type-boilerplate" = callPackage ( - { - mkDerivation, - base, - hspec, - template-haskell, - }: - mkDerivation { - pname = "sum-type-boilerplate"; - version = "0.1.1"; - sha256 = "17xby0mqdsbax0afrfr3p8c6cj5r94byy8gprgyrmq84qqadls9i"; - libraryHaskellDepends = [ - base - template-haskell - ]; - testHaskellDepends = [ - base - hspec - template-haskell - ]; - description = "Library for reducing the boilerplate involved with sum types"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "summer" = callPackage ( { mkDerivation, @@ -645202,160 +373663,6 @@ self: { } ) { }; - "summoner" = callPackage ( - { - mkDerivation, - aeson, - base, - colourista, - containers, - directory, - filepath, - generic-data, - gitrev, - hedgehog, - hspec, - hspec-hedgehog, - neat-interpolation, - optparse-applicative, - process, - relude, - shellmet, - text, - time, - tomland, - tree-diff, - validation-selective, - }: - mkDerivation { - pname = "summoner"; - version = "2.0.1.1"; - sha256 = "15n4dwhy4ri1vi446fa2k9i6cxvfrl79hjjgsdjhpyz290lfwvjv"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson - base - colourista - containers - directory - filepath - generic-data - gitrev - neat-interpolation - optparse-applicative - process - relude - shellmet - text - time - tomland - validation-selective - ]; - executableHaskellDepends = [ - base - relude - ]; - testHaskellDepends = [ - base - directory - filepath - hedgehog - hspec - hspec-hedgehog - neat-interpolation - relude - text - tomland - tree-diff - validation-selective - ]; - description = "Tool for scaffolding fully configured batteries-included production-level Haskell projects"; - license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; - mainProgram = "summon"; - broken = true; - } - ) { }; - - "summoner-tui" = callPackage ( - { - mkDerivation, - base, - brick, - colourista, - directory, - microlens, - microlens-th, - relude, - summoner, - text, - validation-selective, - vty, - }: - mkDerivation { - pname = "summoner-tui"; - version = "2.0.1.1"; - sha256 = "09rc3yyngma602yyd7bmc6cix9rcwmanfphcxnsv8m1cswjhz14z"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - brick - colourista - directory - microlens - microlens-th - relude - summoner - text - validation-selective - vty - ]; - executableHaskellDepends = [ - base - relude - ]; - description = "Tool for scaffolding fully configured batteries-included production-level Haskell projects using TUI"; - license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; - mainProgram = "summon-tui"; - } - ) { }; - - "sump" = callPackage ( - { - mkDerivation, - base, - bytestring, - data-default, - lens, - serialport, - transformers, - vector, - }: - mkDerivation { - pname = "sump"; - version = "0.1.0.2"; - sha256 = "1g23rijpalqalcshnmzhfvlp205r12lgc9avzs38acjs8r5gxdda"; - revision = "1"; - editedCabalFile = "1m1vha9kyhwf9da6xy00q7p4mmwc2bcpvd8qamjvjmsdvmzb4qiz"; - libraryHaskellDepends = [ - base - bytestring - data-default - lens - serialport - transformers - vector - ]; - description = "A Haskell interface to SUMP-compatible logic analyzers"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "sundown" = callPackage ( { mkDerivation, @@ -645377,308 +373684,6 @@ self: { } ) { }; - "sunlight" = callPackage ( - { - mkDerivation, - base, - bytestring, - Cabal, - directory, - old-locale, - process, - random, - time, - tuple, - }: - mkDerivation { - pname = "sunlight"; - version = "0.6.0.0"; - sha256 = "1q90fxv40jz5ngh6xi1n6xjx6hh1as223wjjhchk6k0y0frdg55x"; - libraryHaskellDepends = [ - base - bytestring - Cabal - directory - old-locale - process - random - time - tuple - ]; - description = "Test Cabalized package against multiple dependency versions"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "sunroof-compiler" = callPackage ( - { - mkDerivation, - base, - Boolean, - containers, - data-default, - data-reify, - mtl, - operational, - semigroups, - tagged, - template-haskell, - transformers, - vector-space, - }: - mkDerivation { - pname = "sunroof-compiler"; - version = "0.2"; - sha256 = "1r03aw55s4vnpbfk0n39li0aai3wvm209pqdimfkkk3kkan648cz"; - libraryHaskellDepends = [ - base - Boolean - containers - data-default - data-reify - mtl - operational - semigroups - tagged - template-haskell - transformers - vector-space - ]; - description = "Monadic Javascript Compiler"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "sunroof-examples" = callPackage ( - { - mkDerivation, - base, - Boolean, - containers, - data-default, - directory, - filepath, - parallel-io, - process, - QuickCheck, - random, - semigroups, - shake, - stm, - sunroof-compiler, - sunroof-server, - }: - mkDerivation { - pname = "sunroof-examples"; - version = "0.2.2"; - sha256 = "0bcxai3gq1akbcxqkkj0n52a43zqcnw865bnngy9b4z26b43kj5k"; - isLibrary = false; - isExecutable = true; - enableSeparateDataOutput = true; - executableHaskellDepends = [ - base - Boolean - containers - data-default - directory - filepath - parallel-io - process - QuickCheck - random - semigroups - shake - stm - sunroof-compiler - sunroof-server - ]; - description = "Tests for Sunroof"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "sunroof-server" = callPackage ( - { - mkDerivation, - aeson, - base, - containers, - data-default, - filepath, - kansas-comet, - scientific, - scotty, - semigroups, - stm, - sunroof-compiler, - tagged, - text, - time, - transformers, - unordered-containers, - vector, - vector-space, - wai-middleware-static, - warp, - }: - mkDerivation { - pname = "sunroof-server"; - version = "0.2.1"; - sha256 = "11acyb846wga6g6zcvlaffh299qn0l8jic8syg76cchm3l3348d5"; - libraryHaskellDepends = [ - aeson - base - containers - data-default - filepath - kansas-comet - scientific - scotty - semigroups - stm - sunroof-compiler - tagged - text - time - transformers - unordered-containers - vector - vector-space - wai-middleware-static - warp - ]; - description = "Monadic Javascript Compiler - Server Utilities"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "super-user-spark" = callPackage ( - { - mkDerivation, - aeson, - aeson-pretty, - base, - bytestring, - directory, - filepath, - genvalidity, - genvalidity-hspec, - genvalidity-hspec-aeson, - genvalidity-path, - hashable, - hspec, - hspec-core, - mtl, - optparse-applicative, - parsec, - path, - path-io, - process, - QuickCheck, - text, - transformers, - unix, - validity, - validity-path, - }: - mkDerivation { - pname = "super-user-spark"; - version = "0.4.0.4"; - sha256 = "1zn9bp9zn0k8kvjik03fpq5ps1fz980b06z7s178r00dmx6abjl0"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson - aeson-pretty - base - bytestring - directory - filepath - hashable - mtl - optparse-applicative - parsec - path - path-io - process - text - unix - validity - validity-path - ]; - executableHaskellDepends = [ base ]; - testHaskellDepends = [ - aeson - aeson-pretty - base - bytestring - directory - filepath - genvalidity - genvalidity-hspec - genvalidity-hspec-aeson - genvalidity-path - hashable - hspec - hspec-core - mtl - optparse-applicative - parsec - path - path-io - process - QuickCheck - text - transformers - unix - validity - validity-path - ]; - description = "Configure your dotfile deployment with a DSL"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - mainProgram = "super-user-spark"; - broken = true; - } - ) { }; - - "superbubbles" = callPackage ( - { - mkDerivation, - base, - containers, - hspec, - mtl, - }: - mkDerivation { - pname = "superbubbles"; - version = "0.1.0"; - sha256 = "1lm1jjzjk5f8knm3dh0mrjanizv3lzpwnkvpn3h60ni2ja1ffim0"; - revision = "3"; - editedCabalFile = "1140dgrvc5i0dv7iqj4ykyrf3bk8dr450ihqbgglk2zmgzcb2zaz"; - libraryHaskellDepends = [ - base - containers - mtl - ]; - testHaskellDepends = [ - base - containers - hspec - ]; - description = "Find \"superbubbles\", as described in https://arxiv.org/abs/1307.7925"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "superbuffer" = callPackage ( { mkDerivation, @@ -645717,122 +373722,6 @@ self: { } ) { }; - "supercollider-ht" = callPackage ( - { - mkDerivation, - base, - hosc, - hsc3, - opensoundcontrol-ht, - process, - random, - transformers, - }: - mkDerivation { - pname = "supercollider-ht"; - version = "0.3"; - sha256 = "1v8nqcfdn2dasiv24lny73bc0xz2d26wvvybhxw6s7dz4bkb9kiw"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - hosc - hsc3 - opensoundcontrol-ht - process - random - transformers - ]; - description = "Haskell SuperCollider utilities"; - license = "GPL"; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "supercollider-midi" = callPackage ( - { - mkDerivation, - alsa-seq, - array, - base, - containers, - data-accessor, - data-accessor-transformers, - event-list, - hosc, - hsc3, - midi, - midi-alsa, - non-negative, - opensoundcontrol-ht, - random, - supercollider-ht, - transformers, - utility-ht, - }: - mkDerivation { - pname = "supercollider-midi"; - version = "0.2.1"; - sha256 = "1m3h6d49bjwhldbf4khyp6p8k4vr05m5392nk3d33x3d9pfhl20k"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - alsa-seq - array - base - containers - data-accessor - data-accessor-transformers - event-list - hosc - hsc3 - midi - midi-alsa - non-negative - opensoundcontrol-ht - random - supercollider-ht - transformers - utility-ht - ]; - description = "Demonstrate how to control SuperCollider via ALSA-MIDI"; - license = "GPL"; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "superconstraints" = callPackage ( - { - mkDerivation, - base, - constraints, - containers, - haskell-src-meta, - mtl, - tagged, - template-haskell, - type-eq, - }: - mkDerivation { - pname = "superconstraints"; - version = "0.0.2"; - sha256 = "0wdh3vjqls9mdvii7qxcv993305ahznffiv0qkfkwg0lxsshwdxy"; - libraryHaskellDepends = [ - base - constraints - containers - haskell-src-meta - mtl - tagged - template-haskell - type-eq - ]; - description = "Access an instance's constraints"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "superdoc" = callPackage ( { mkDerivation, @@ -645865,123 +373754,6 @@ self: { } ) { }; - "superevent" = callPackage ( - { - mkDerivation, - aeson, - async, - base, - bytestring, - conduit, - containers, - contravariant, - hashable, - hasql, - hasql-migration, - hasql-pool, - hasql-transaction, - hspec, - mtl, - QuickCheck, - random, - stm, - string-qq, - temporary, - text, - time, - timespan, - transformers, - unordered-containers, - uuid, - vector, - }: - mkDerivation { - pname = "superevent"; - version = "0.1.0.1"; - sha256 = "0bda6fpljydp9i3sdyb8n0sy0dbfnryz83hpmnz59jarhhzw6nxd"; - libraryHaskellDepends = [ - aeson - async - base - bytestring - conduit - containers - contravariant - hashable - hasql - hasql-migration - hasql-pool - hasql-transaction - mtl - random - stm - string-qq - text - time - timespan - transformers - unordered-containers - uuid - vector - ]; - testHaskellDepends = [ - aeson - async - base - conduit - hspec - mtl - QuickCheck - stm - temporary - text - transformers - uuid - vector - ]; - description = "A simple opinionated event store implementation"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "supermonad" = callPackage ( - { - mkDerivation, - base, - containers, - fgl, - ghc, - mtl, - QuickCheck, - transformers, - }: - mkDerivation { - pname = "supermonad"; - version = "0.2.1.1"; - sha256 = "1bnj0kva6nh1565fvakwqbx8as7v415fqd7s33dvbfzk8dpkld8z"; - libraryHaskellDepends = [ - base - containers - fgl - ghc - mtl - transformers - ]; - testHaskellDepends = [ - base - containers - ghc - QuickCheck - ]; - description = "Plugin and base library to support supermonads in Haskell"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "supernova" = callPackage ( { mkDerivation, @@ -646037,45 +373809,6 @@ self: { description = "Apache Pulsar client for Haskell"; license = lib.licenses.asl20; hydraPlatforms = lib.platforms.none; - } - ) { }; - - "supero" = callPackage ( - { - mkDerivation, - base, - containers, - cpphs, - directory, - filepath, - haskell-src-exts, - mtl, - process, - time, - uniplate, - }: - mkDerivation { - pname = "supero"; - version = "3.0"; - sha256 = "0jnip7wahy4z1jiablqzvmbk40as1ala65m7da7gsp0xvf2q7hwf"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - containers - cpphs - directory - filepath - haskell-src-exts - mtl - process - time - uniplate - ]; - description = "A Supercompiler"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "supero"; broken = true; } ) { }; @@ -646135,33 +373868,6 @@ self: { } ) { }; - "supervisor" = callPackage ( - { - mkDerivation, - base, - containers, - exceptions, - monadloc, - mtl, - }: - mkDerivation { - pname = "supervisor"; - version = "0.1.1.0"; - sha256 = "1gdgqm89ig236hkrz8sjgy3shqnl961401qgavs4qpqw7r2xk8vx"; - libraryHaskellDepends = [ - base - containers - exceptions - monadloc - mtl - ]; - description = "Control an internal monad execution for trace generation, backtrakcking, testing and other purposes"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "supervisors" = callPackage ( { mkDerivation, @@ -646194,45 +373900,6 @@ self: { } ) { }; - "supplemented" = callPackage ( - { - mkDerivation, - base, - base-prelude, - QuickCheck, - quickcheck-instances, - rebase, - tasty, - tasty-hunit, - tasty-quickcheck, - tasty-smallcheck, - transformers, - }: - mkDerivation { - pname = "supplemented"; - version = "0.5.1"; - sha256 = "15rg62lc67262sk5yq0x2g0dj7bbasxygcxpfbf3hpmmw0za5zxx"; - libraryHaskellDepends = [ - base - base-prelude - transformers - ]; - testHaskellDepends = [ - QuickCheck - quickcheck-instances - rebase - tasty - tasty-hunit - tasty-quickcheck - tasty-smallcheck - ]; - description = "Early termination for monads"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "supply-chain" = callPackage ( { mkDerivation, @@ -646317,31 +373984,6 @@ self: { } ) { }; - "surjective" = callPackage ( - { - mkDerivation, - base, - lens, - mtl, - template-haskell, - }: - mkDerivation { - pname = "surjective"; - version = "0.1.0.0"; - sha256 = "1nhq7lfzsbh9ra1m1n7649q35ch6l1lgm110p1qbxgvv6w6xmz41"; - libraryHaskellDepends = [ - base - lens - mtl - template-haskell - ]; - description = "An output coverage checker"; - license = lib.licenses.publicDomain; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "suspend" = callPackage ( { mkDerivation, @@ -646363,246 +374005,6 @@ self: { } ) { }; - "sv" = callPackage ( - { - mkDerivation, - attoparsec, - base, - bifunctors, - bytestring, - cassava, - contravariant, - criterion, - deepseq, - hedgehog, - hw-dsv, - lens, - Only, - parsers, - semigroupoids, - semigroups, - sv-core, - tasty, - tasty-hedgehog, - tasty-hunit, - text, - transformers, - trifecta, - utf8-string, - validation, - vector, - }: - mkDerivation { - pname = "sv"; - version = "1.4.0.1"; - sha256 = "1ak58rqg9f8xh43sgflcqnvpc62580y3ip1sxdg9w2scr8fqc6y2"; - libraryHaskellDepends = [ - attoparsec - base - bifunctors - bytestring - contravariant - hw-dsv - semigroupoids - sv-core - transformers - utf8-string - validation - ]; - testHaskellDepends = [ - base - bytestring - cassava - contravariant - hedgehog - lens - Only - parsers - semigroupoids - semigroups - tasty - tasty-hedgehog - tasty-hunit - text - trifecta - utf8-string - validation - vector - ]; - benchmarkHaskellDepends = [ - attoparsec - base - bytestring - criterion - deepseq - hw-dsv - lens - text - vector - ]; - description = "Encode and decode separated values (CSV, PSV, ...)"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "sv-cassava" = callPackage ( - { - mkDerivation, - attoparsec, - base, - bytestring, - cassava, - HUnit, - sv-core, - text, - utf8-string, - validation, - vector, - }: - mkDerivation { - pname = "sv-cassava"; - version = "0.3"; - sha256 = "1c4wacp7k5sgr5fy73h9if98d08apmcs6p4p3f3fvpqkm8jmf71b"; - revision = "3"; - editedCabalFile = "13414sn9rllq842bz0lv8qzdy6fxv72jbhmk64krrxq2xmw7wkhb"; - libraryHaskellDepends = [ - attoparsec - base - bytestring - cassava - sv-core - utf8-string - validation - vector - ]; - testHaskellDepends = [ - base - bytestring - cassava - HUnit - sv-core - text - validation - vector - ]; - description = "Integration to use sv with cassava's parser"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "sv-core" = callPackage ( - { - mkDerivation, - attoparsec, - base, - bifunctors, - bytestring, - containers, - contravariant, - deepseq, - double-conversion, - lens, - mtl, - parsec, - profunctors, - QuickCheck, - readable, - semigroupoids, - semigroups, - tasty, - tasty-quickcheck, - text, - transformers, - trifecta, - utf8-string, - validation, - vector, - void, - }: - mkDerivation { - pname = "sv-core"; - version = "0.5"; - sha256 = "1x5gmv2pbn3hx1dhpkigivjkbg6n6xy7lc36wmccsw2qqn9r5qxa"; - revision = "3"; - editedCabalFile = "0z077qfw5v6ar1jmlfgzjjj35zqpc77xzjqwihk5v5h6hifanp9d"; - libraryHaskellDepends = [ - attoparsec - base - bifunctors - bytestring - containers - contravariant - deepseq - double-conversion - lens - mtl - parsec - profunctors - readable - semigroupoids - semigroups - text - transformers - trifecta - utf8-string - validation - vector - void - ]; - testHaskellDepends = [ - base - bytestring - profunctors - QuickCheck - semigroupoids - semigroups - tasty - tasty-quickcheck - text - validation - vector - ]; - description = "Encode and decode separated values (CSV, PSV, ...)"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "sv-svfactor" = callPackage ( - { - mkDerivation, - base, - bytestring, - lens, - profunctors, - sv-core, - svfactor, - validation, - }: - mkDerivation { - pname = "sv-svfactor"; - version = "0.2"; - sha256 = "1fjgryypq6i4r3w9zdb282aq5lqp4577mzzycafklphc0d2ancgb"; - revision = "3"; - editedCabalFile = "1qvpbc5qhljmfaxlbfjddiq51dymd9zlp66ya99sypb0anydc5n2"; - libraryHaskellDepends = [ - base - bytestring - lens - profunctors - sv-core - svfactor - validation - ]; - description = "sv-core + svfactor"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "sv2v" = callPackage ( { mkDerivation, @@ -646647,76 +374049,6 @@ self: { } ) { }; - "svfactor" = callPackage ( - { - mkDerivation, - attoparsec, - base, - bifunctors, - bytestring, - charset, - deepseq, - hedgehog, - lens, - parsec, - parsers, - semigroupoids, - semigroups, - tasty, - tasty-hedgehog, - tasty-hunit, - text, - transformers, - trifecta, - utf8-string, - vector, - }: - mkDerivation { - pname = "svfactor"; - version = "0.1"; - sha256 = "1vjdv7xgd33z3iwwlh8xwp9za06jvqxpbssc4m5bmcx1wihsnn35"; - revision = "1"; - editedCabalFile = "1ffm727zmg402s0v2mbcxjng6b0s1idci6x01njfw4s6zwl144fv"; - libraryHaskellDepends = [ - attoparsec - base - bifunctors - bytestring - charset - deepseq - lens - parsec - parsers - semigroupoids - semigroups - text - transformers - trifecta - utf8-string - vector - ]; - testHaskellDepends = [ - base - bytestring - hedgehog - lens - parsers - semigroups - tasty - tasty-hedgehog - tasty-hunit - text - trifecta - utf8-string - vector - ]; - description = "Syntax-preserving CSV manipulation"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "svg-builder" = callPackage ( { mkDerivation, @@ -646746,35 +374078,6 @@ self: { } ) { }; - "svg-builder-fork" = callPackage ( - { - mkDerivation, - base, - blaze-builder, - bytestring, - hashable, - text, - unordered-containers, - }: - mkDerivation { - pname = "svg-builder-fork"; - version = "0.1.0.3"; - sha256 = "16y8azlayb5925aybm2780aqbq4qhqpv9c96k22h3ci7ybb9zk92"; - libraryHaskellDepends = [ - base - blaze-builder - bytestring - hashable - text - unordered-containers - ]; - description = "DSL for building SVG"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "svg-icons" = callPackage ( { mkDerivation, @@ -646853,39 +374156,6 @@ self: { } ) { }; - "svg2q" = callPackage ( - { - mkDerivation, - base, - haskell98, - language-c, - pretty, - svgutils, - syb, - xml, - }: - mkDerivation { - pname = "svg2q"; - version = "0.3.2"; - sha256 = "0bkhh1klwp3lgsx0s62bpdhsw9sa1cdw8gjijj9npnygznbi7jhj"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - haskell98 - language-c - pretty - svgutils - syb - xml - ]; - description = "Code generation tool for Quartz code from a SVG"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "svg2q"; - } - ) { }; - "svgcairo" = callPackage ( { mkDerivation, @@ -647030,36 +374300,6 @@ self: { } ) { }; - "svgutils" = callPackage ( - { - mkDerivation, - base, - filepath, - xml, - }: - mkDerivation { - pname = "svgutils"; - version = "0.1"; - sha256 = "131mic1c09adcphry7153bviiib59avxrd7dgwny0vdmw23cgfs1"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - xml - ]; - executableHaskellDepends = [ - base - filepath - xml - ]; - description = "Helper functions for dealing with SVG files"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "SVGtile"; - broken = true; - } - ) { }; - "svm" = callPackage ( { mkDerivation, @@ -647079,70 +374319,6 @@ self: { } ) { }; - "svm-light-utils" = callPackage ( - { - mkDerivation, - attoparsec, - base, - bytestring, - containers, - }: - mkDerivation { - pname = "svm-light-utils"; - version = "0.1.4"; - sha256 = "01wz59ldv5n0xwl3d1sll11n3yy3wf2qrm67v4cskmrl7rib7177"; - revision = "2"; - editedCabalFile = "0mrnfxg1h3mrbx192n8hl7m9i64n8cfrai2yksvhkgp6b8qxqnma"; - libraryHaskellDepends = [ - attoparsec - base - bytestring - containers - ]; - description = "Parsers and formatters for the SVMlight input file format"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "svm-simple" = callPackage ( - { - mkDerivation, - base, - binary, - bindings-svm, - bytestring, - containers, - deepseq, - directory, - monad-par, - mwc-random, - vector, - }: - mkDerivation { - pname = "svm-simple"; - version = "0.2.7.1"; - sha256 = "07s9mly01ar6c3p4fdl7wsi5j4bziagjjlbssr7x6s3ab5r8k9vd"; - libraryHaskellDepends = [ - base - binary - bindings-svm - bytestring - containers - deepseq - directory - monad-par - mwc-random - vector - ]; - description = "Medium level, simplified, bindings to libsvm"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "svndump" = callPackage ( { mkDerivation, @@ -647190,215 +374366,6 @@ self: { } ) { }; - "swagger" = callPackage ( - { - mkDerivation, - aeson, - base, - bytestring, - tasty, - tasty-hunit, - text, - time, - transformers, - }: - mkDerivation { - pname = "swagger"; - version = "0.3.0"; - sha256 = "1l2liyiycbix23yayf8zq1fndavfjc06529s8sr3w8hd5ar4y567"; - libraryHaskellDepends = [ - aeson - base - bytestring - text - time - transformers - ]; - testHaskellDepends = [ - aeson - base - bytestring - tasty - tasty-hunit - ]; - description = "Implementation of swagger data model"; - license = "unknown"; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "swagger-petstore" = callPackage ( - { - mkDerivation, - aeson, - base, - base64-bytestring, - bytestring, - case-insensitive, - containers, - deepseq, - exceptions, - hspec, - http-api-data, - http-client, - http-client-tls, - http-media, - http-types, - iso8601-time, - katip, - microlens, - mtl, - network, - QuickCheck, - random, - safe-exceptions, - semigroups, - text, - time, - transformers, - unordered-containers, - vector, - }: - mkDerivation { - pname = "swagger-petstore"; - version = "0.0.2.0"; - sha256 = "10sd2agpmj4iiza850w6klqh5jv873kfmvp5qimsqcfaxdwszc5i"; - libraryHaskellDepends = [ - aeson - base - base64-bytestring - bytestring - case-insensitive - containers - deepseq - exceptions - http-api-data - http-client - http-client-tls - http-media - http-types - iso8601-time - katip - microlens - mtl - network - random - safe-exceptions - text - time - transformers - unordered-containers - vector - ]; - testHaskellDepends = [ - aeson - base - bytestring - containers - hspec - iso8601-time - mtl - QuickCheck - semigroups - text - time - transformers - unordered-containers - vector - ]; - description = "Auto-generated openapi-petstore API Client"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "swagger-test" = callPackage ( - { - mkDerivation, - aeson, - async, - attoparsec, - base, - binary, - blaze-html, - bytestring, - case-insensitive, - containers, - directory, - filepath, - http-client, - http-client-tls, - http-media, - http-types, - insert-ordered-containers, - lens, - optparse-applicative, - QuickCheck, - random, - scientific, - swagger2, - syb, - text, - time, - unordered-containers, - vector, - }: - mkDerivation { - pname = "swagger-test"; - version = "0.2.7"; - sha256 = "04rhgkdg8c4cy6mj5jxykirp4m1f5n3nik4pdmvyjv71q3gdwkjp"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson - async - attoparsec - base - binary - blaze-html - bytestring - case-insensitive - containers - filepath - http-client - http-client-tls - http-media - http-types - insert-ordered-containers - lens - QuickCheck - random - scientific - swagger2 - syb - text - time - unordered-containers - vector - ]; - executableHaskellDepends = [ - aeson - async - base - bytestring - directory - filepath - lens - optparse-applicative - random - swagger2 - text - ]; - description = "Testing of Swagger APIs"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "swagger-test"; - broken = true; - } - ) { }; - "swagger2" = callPackage ( { mkDerivation, @@ -647502,38 +374469,6 @@ self: { } ) { }; - "swapper" = callPackage ( - { - mkDerivation, - base, - binary, - bytestring, - deepseq, - happstack-data, - happstack-state, - parallel, - tokyocabinet, - }: - mkDerivation { - pname = "swapper"; - version = "0.1"; - sha256 = "0a9g6cv7pvwna11cz1xc274rs0dgyhb84hqqdg5zyga7kkx0i06l"; - libraryHaskellDepends = [ - base - binary - bytestring - deepseq - happstack-data - happstack-state - parallel - ]; - librarySystemDepends = [ tokyocabinet ]; - description = "Transparently swapping data from in-memory structures to disk"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { inherit (pkgs) tokyocabinet; }; - "swarm" = callPackage ( { mkDerivation, @@ -647801,50 +374736,6 @@ self: { } ) { }; - "swearjure" = callPackage ( - { - mkDerivation, - attoparsec, - base, - containers, - fixplate, - mtl, - pretty, - random, - random-shuffle, - readline, - system-fileio, - system-filepath, - text, - }: - mkDerivation { - pname = "swearjure"; - version = "1.0.0"; - sha256 = "0g3xq3abwkv6rs7kvv6niwdhx50c90ys1zrrzspx2g47c9fbs2iq"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - attoparsec - base - containers - fixplate - mtl - pretty - random - random-shuffle - readline - system-fileio - system-filepath - text - ]; - description = "Clojure without alphanumerics"; - license = lib.licenses.lgpl3Only; - hydraPlatforms = lib.platforms.none; - mainProgram = "swearjure"; - broken = true; - } - ) { }; - "sweet-egison" = callPackage ( { mkDerivation, @@ -647896,60 +374787,6 @@ self: { } ) { }; - "swf" = callPackage ( - { - mkDerivation, - base, - mtl, - pretty, - }: - mkDerivation { - pname = "swf"; - version = "1.0.1"; - sha256 = "1jx5941kb97w4zpgz7m1r2x2lxllmi1i9a9nmwflinyj74xxg1rl"; - libraryHaskellDepends = [ - base - mtl - pretty - ]; - description = "A library for creating Shockwave Flash (SWF) files"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "swift-lda" = callPackage ( - { - mkDerivation, - array, - base, - containers, - ghc-prim, - mwc-random, - primitive, - vector, - }: - mkDerivation { - pname = "swift-lda"; - version = "0.7.0.0"; - sha256 = "0cjvj7v8kjabv6a146hwgyk8k6b4z7gz4yrhz3d0nxa86ilvjl9q"; - libraryHaskellDepends = [ - array - base - containers - ghc-prim - mwc-random - primitive - vector - ]; - description = "Online sampler for Latent Dirichlet Allocation"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "swish" = callPackage ( { mkDerivation, @@ -648158,6 +374995,7 @@ self: { description = "Nintendo Switch Controller Library"; license = lib.licenses.bsd3; hydraPlatforms = lib.platforms.none; + broken = true; } ) { }; @@ -648407,31 +375245,6 @@ self: { } ) { }; - "syb-extras" = callPackage ( - { - mkDerivation, - base, - eq, - prelude-extras, - }: - mkDerivation { - pname = "syb-extras"; - version = "0.3"; - sha256 = "1l1637kf1f7n5nvcp2hv516qah7baykh5w2wmil2b909k75iq2x9"; - revision = "2"; - editedCabalFile = "1a0kb7an663vhhi4wd4hfc5235bampxcyl8g5ssajm6ggs7n7gm3"; - libraryHaskellDepends = [ - base - eq - prelude-extras - ]; - description = "Higher order versions of the Scrap Your Boilerplate classes"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "syb-with-class" = callPackage ( { mkDerivation, @@ -648464,28 +375277,6 @@ self: { } ) { }; - "syb-with-class-instances-text" = callPackage ( - { - mkDerivation, - base, - syb-with-class, - text, - }: - mkDerivation { - pname = "syb-with-class-instances-text"; - version = "0.0.1"; - sha256 = "0vnpqk89nxs0anx62mzasl9wrcscw18vwc284y067ryb086aj2hf"; - libraryHaskellDepends = [ - base - syb-with-class - text - ]; - description = "Scrap Your Boilerplate With Class Text instance"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "sydtest" = callPackage ( { mkDerivation, @@ -649431,104 +376222,6 @@ self: { } ) { }; - "syfco" = callPackage ( - { - mkDerivation, - array, - base, - containers, - convertible, - directory, - mtl, - parsec, - transformers, - }: - mkDerivation { - pname = "syfco"; - version = "1.1.0.0"; - sha256 = "076094ygbcwriqjmajs0xyr7zqf86b5nikfm9k0ax7hla75x9b5m"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - array - base - containers - convertible - directory - mtl - parsec - transformers - ]; - executableHaskellDepends = [ - array - base - containers - convertible - directory - mtl - parsec - transformers - ]; - description = "Synthesis Format Conversion Tool / Library"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - mainProgram = "syfco"; - broken = true; - } - ) { }; - - "sylvia" = callPackage ( - { - mkDerivation, - base, - cairo, - comonad-transformers, - data-default, - data-lens, - data-lens-template, - gtk, - optparse-applicative, - parsec, - smallcheck, - test-framework, - test-framework-smallcheck, - transformers, - void, - }: - mkDerivation { - pname = "sylvia"; - version = "0.2.2"; - sha256 = "1yjvjfkg623kpnzpkknljfgcizyf3jsvkncz49yjsy9j2iklqg2k"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - cairo - comonad-transformers - data-default - data-lens - data-lens-template - gtk - optparse-applicative - parsec - transformers - void - ]; - testHaskellDepends = [ - base - parsec - smallcheck - test-framework - test-framework-smallcheck - void - ]; - description = "Lambda calculus visualization"; - license = "GPL"; - hydraPlatforms = lib.platforms.none; - mainProgram = "sylvia"; - } - ) { }; - "sym" = callPackage ( { mkDerivation, @@ -649581,89 +376274,6 @@ self: { } ) { }; - "symantic" = callPackage ( - { - mkDerivation, - base, - containers, - mono-traversable, - symantic-document, - symantic-grammar, - text, - transformers, - }: - mkDerivation { - pname = "symantic"; - version = "6.3.4.20190712"; - sha256 = "0khx7ddr9cdwyqz22xai8vmjn37c3w9gf4mlzil8lqvdf2cwk6wk"; - libraryHaskellDepends = [ - base - containers - mono-traversable - symantic-document - symantic-grammar - text - transformers - ]; - description = "Library for Typed Tagless-Final Higher-Order Composable DSL"; - license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "symantic-atom" = callPackage ( - { - mkDerivation, - base, - bytestring, - containers, - deepseq, - hashable, - megaparsec, - symantic-xml, - tasty, - tasty-golden, - text, - time, - transformers, - treeseq, - }: - mkDerivation { - pname = "symantic-atom"; - version = "0.0.0.20200523"; - sha256 = "05lw93cx4zpwy7mq4ad6ly2wl51japczxcpss64svklwl78awcz2"; - libraryHaskellDepends = [ - base - containers - megaparsec - symantic-xml - text - time - transformers - treeseq - ]; - testHaskellDepends = [ - base - bytestring - containers - deepseq - hashable - megaparsec - symantic-xml - tasty - tasty-golden - text - time - transformers - treeseq - ]; - description = "Library for reading and writing Atom"; - license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "symantic-base" = callPackage ( { mkDerivation, @@ -649691,37 +376301,6 @@ self: { } ) { }; - "symantic-cli" = callPackage ( - { - mkDerivation, - base, - bytestring, - containers, - megaparsec, - symantic-document, - text, - transformers, - }: - mkDerivation { - pname = "symantic-cli"; - version = "2.4.2.20190806"; - sha256 = "0ms0g6zz6xck4xllakdwmnxj9gi7sfj9n2jqh9m2zdv0va41ncy3"; - libraryHaskellDepends = [ - base - bytestring - containers - megaparsec - symantic-document - text - transformers - ]; - description = "Symantics for parsing and documenting a CLI"; - license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "symantic-document" = callPackage ( { mkDerivation, @@ -649820,127 +376399,6 @@ self: { } ) { }; - "symantic-http-client" = callPackage ( - { - mkDerivation, - base, - base64-bytestring, - bytestring, - containers, - http-api-data, - http-client, - http-media, - http-types, - monad-classes, - network-uri, - stm, - symantic-http, - text, - time, - transformers, - word8, - }: - mkDerivation { - pname = "symantic-http-client"; - version = "0.0.1.20190410"; - sha256 = "0nzah75fbfq696k3r7sgxxykwp924dv6zmxn8ni6s1qra5r989wy"; - libraryHaskellDepends = [ - base - base64-bytestring - bytestring - containers - http-api-data - http-client - http-media - http-types - monad-classes - network-uri - stm - symantic-http - text - time - transformers - word8 - ]; - description = "symantic-http applied to the derivation of HTTP clients"; - license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "symantic-http-demo" = callPackage ( - { - mkDerivation, - base, - base64-bytestring, - bytestring, - containers, - http-api-data, - http-client, - http-media, - http-types, - monad-classes, - network, - network-uri, - pipes, - pipes-bytestring, - pipes-safe, - symantic-http, - symantic-http-client, - symantic-http-pipes, - symantic-http-server, - text, - time, - transformers, - wai, - wai-extra, - warp, - }: - mkDerivation { - pname = "symantic-http-demo"; - version = "0.0.0.0"; - sha256 = "09fkni3zal4bvhf00b57qpf83bk7azcxps4s9nd01zsmnzvhlfs7"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - pipes - symantic-http - text - ]; - executableHaskellDepends = [ - base - base64-bytestring - bytestring - containers - http-api-data - http-client - http-media - http-types - monad-classes - network - network-uri - pipes - pipes-bytestring - pipes-safe - symantic-http - symantic-http-client - symantic-http-pipes - symantic-http-server - text - time - transformers - wai - wai-extra - warp - ]; - description = "Demo for symantic-http and its companion libraries"; - license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "symantic-http-pipes" = callPackage ( { mkDerivation, @@ -650047,139 +376505,6 @@ self: { } ) { }; - "symantic-http-test" = callPackage ( - { - mkDerivation, - base, - base64-bytestring, - bytestring, - containers, - deepseq, - filepath, - hashable, - hspec, - hspec-wai, - http-api-data, - http-client, - http-media, - http-types, - monad-classes, - network, - network-uri, - pipes, - pipes-bytestring, - pipes-safe, - symantic-http, - symantic-http-client, - symantic-http-pipes, - symantic-http-server, - tasty, - tasty-hspec, - tasty-hunit, - text, - time, - transformers, - wai, - wai-extra, - warp, - }: - mkDerivation { - pname = "symantic-http-test"; - version = "0.0.1.20190410"; - sha256 = "1nqvg801wbh2w1minb4hrfjasia823lqdyyh8dr3287wvdkwb74v"; - isLibrary = false; - isExecutable = false; - testHaskellDepends = [ - base - base64-bytestring - bytestring - containers - deepseq - filepath - hashable - hspec - hspec-wai - http-api-data - http-client - http-media - http-types - monad-classes - network - network-uri - pipes - pipes-bytestring - pipes-safe - symantic-http - symantic-http-client - symantic-http-pipes - symantic-http-server - tasty - tasty-hspec - tasty-hunit - text - time - transformers - wai - wai-extra - warp - ]; - description = "Test symantic-http and its companion libraries"; - license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "symantic-lib" = callPackage ( - { - mkDerivation, - base, - bytestring, - containers, - megaparsec, - monad-classes, - mono-traversable, - symantic, - symantic-grammar, - tasty, - tasty-golden, - tasty-hunit, - text, - transformers, - }: - mkDerivation { - pname = "symantic-lib"; - version = "0.0.5.20190614"; - sha256 = "02rzm43h71ivdx8vwbsa8ij5vv7jkf2y78f568lvkwgr1av84hz9"; - libraryHaskellDepends = [ - base - containers - mono-traversable - symantic - symantic-grammar - text - transformers - ]; - testHaskellDepends = [ - base - bytestring - containers - megaparsec - monad-classes - mono-traversable - symantic - symantic-grammar - tasty - tasty-golden - tasty-hunit - text - transformers - ]; - description = "Symantics for common types"; - license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "symantic-parser" = callPackage ( { mkDerivation, @@ -650277,166 +376602,6 @@ self: { } ) { }; - "symantic-xml" = callPackage ( - { - mkDerivation, - base, - bytestring, - containers, - deepseq, - hashable, - hxt-charproperties, - megaparsec, - symantic-base, - tasty, - tasty-golden, - text, - transformers, - treeseq, - unordered-containers, - }: - mkDerivation { - pname = "symantic-xml"; - version = "2.0.0.20200523"; - sha256 = "1fz68n63i32rkyvmz99wyg20xhdniqqm1fds0xn320gi2z35092b"; - revision = "1"; - editedCabalFile = "1dvfglys9jza910wr7r7kda1jisbk9gj3d6rfccaip78hyra1z8l"; - libraryHaskellDepends = [ - base - bytestring - containers - hashable - hxt-charproperties - megaparsec - symantic-base - text - transformers - treeseq - unordered-containers - ]; - testHaskellDepends = [ - base - bytestring - containers - deepseq - hashable - megaparsec - symantic-base - tasty - tasty-golden - text - transformers - treeseq - ]; - description = "Library for reading, validating and writing XML"; - license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "symbiote" = callPackage ( - { - mkDerivation, - abides, - aeson, - async, - base, - bytestring, - cereal, - chan, - containers, - exceptions, - extractable-singleton, - hashable, - http-types, - monad-control-aligned, - mtl, - QuickCheck, - quickcheck-instances, - stm, - tasty, - tasty-hunit, - tasty-quickcheck, - text, - threaded, - uuid, - wai, - wai-extra, - wai-transformers, - wai-websockets, - warp, - websockets, - websockets-simple, - websockets-simple-extra, - }: - mkDerivation { - pname = "symbiote"; - version = "0.0.5"; - sha256 = "1igdig2w7j7l3valixsiw9jwj9na2n2k1rn7x7ay904jh11a8400"; - libraryHaskellDepends = [ - abides - aeson - async - base - bytestring - cereal - chan - containers - exceptions - extractable-singleton - hashable - monad-control-aligned - mtl - QuickCheck - quickcheck-instances - stm - text - threaded - uuid - wai-transformers - websockets-simple - websockets-simple-extra - ]; - testHaskellDepends = [ - abides - aeson - async - base - bytestring - cereal - chan - containers - exceptions - extractable-singleton - hashable - http-types - monad-control-aligned - mtl - QuickCheck - quickcheck-instances - stm - tasty - tasty-hunit - tasty-quickcheck - text - threaded - uuid - wai - wai-extra - wai-transformers - wai-websockets - warp - websockets - websockets-simple - websockets-simple-extra - ]; - description = "Data serialization, communication, and operation verification implementation"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "symbol" = callPackage ( { mkDerivation, @@ -650483,37 +376648,6 @@ self: { } ) { }; - "symbolic-link" = callPackage ( - { - mkDerivation, - base, - directory, - tasty, - tasty-hunit, - unix, - }: - mkDerivation { - pname = "symbolic-link"; - version = "0.1.1.1"; - sha256 = "1g5w67kviqzz5q9xpln6nh8g86yh1v2wmgmgjmn5ai1qj4x80rf8"; - libraryHaskellDepends = [ - base - directory - unix - ]; - testHaskellDepends = [ - base - tasty - tasty-hunit - unix - ]; - description = "Symlink functions"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "symbolise" = callPackage ( { mkDerivation, @@ -650828,818 +376962,215 @@ self: { "symtegration" = callPackage ( { mkDerivation, - ad, - base, - containers, - doctest-parallel, - hspec, - hspec-discover, - QuickCheck, - text, - text-show, - }: - mkDerivation { - pname = "symtegration"; - version = "0.6.1"; - sha256 = "0nkzz3wgary18mabfj1nhrwcqf3dn4r00qq3wiw40rllqls5zvwf"; - libraryHaskellDepends = [ - ad - base - containers - text - text-show - ]; - testHaskellDepends = [ - ad - base - containers - doctest-parallel - hspec - QuickCheck - text - text-show - ]; - testToolDepends = [ hspec-discover ]; - description = "Library for symbolic integration of mathematical expressions"; - license = lib.licenses.asl20; - } - ) { }; - - "synapse" = callPackage ( - { - mkDerivation, - base, - easyplot, - hashable, - HUnit, - random, - terminal-progress-bar, - unordered-containers, - vector, - }: - mkDerivation { - pname = "synapse"; - version = "0.1.0.0"; - sha256 = "1i6y4cq91kdlwpg9vqdbn92ypkkrk12blxpp2p70y7xxb4drc9cb"; - libraryHaskellDepends = [ - base - hashable - random - terminal-progress-bar - unordered-containers - vector - ]; - testHaskellDepends = [ - base - easyplot - HUnit - random - ]; - description = "Synapse is a machine learning library written in pure Haskell"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "sync" = callPackage ( - { - mkDerivation, - base, - stm, - }: - mkDerivation { - pname = "sync"; - version = "0.1"; - sha256 = "10c2divizmjij5w7x2ky6dzhq6y6wr6qq1pwl7wlhgv663y9yalk"; - libraryHaskellDepends = [ - base - stm - ]; - description = "A fast implementation of synchronous channels with a CML-like API"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "sync-mht" = callPackage ( - { - mkDerivation, - aeson, - array, - base, - base16-bytestring, - byteable, - bytes, - bytestring, - cereal, - containers, - cryptohash, - directory, - exceptions, - filepath, - HUnit, - io-streams, - mtl, - process, - random, - regex-compat, - temporary, - text, - time, - transformers, - unix, - zlib, - }: - mkDerivation { - pname = "sync-mht"; - version = "0.3.8.5"; - sha256 = "1apx1vwq3m1xahhv64c3a6shh2cv9rp4r7xg9f6cbfs5k1w2wv0l"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - array - base - base16-bytestring - byteable - bytes - bytestring - cereal - containers - cryptohash - directory - exceptions - filepath - HUnit - io-streams - mtl - process - random - regex-compat - temporary - text - time - transformers - unix - zlib - ]; - executableHaskellDepends = [ - array - base - base16-bytestring - byteable - bytes - bytestring - cereal - containers - cryptohash - directory - exceptions - filepath - HUnit - io-streams - mtl - process - random - regex-compat - temporary - text - time - transformers - unix - zlib - ]; - testHaskellDepends = [ - array - base - base16-bytestring - byteable - bytes - bytestring - cereal - containers - cryptohash - directory - exceptions - filepath - HUnit - io-streams - mtl - process - random - regex-compat - temporary - text - time - transformers - unix - zlib - ]; - benchmarkHaskellDepends = [ - aeson - base - bytestring - directory - filepath - process - temporary - time - ]; - description = "Fast incremental file transfer using Merkle-Hash-Trees"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - mainProgram = "sync-mht"; - broken = true; - } - ) { }; - - "synchronous-channels" = callPackage ( - { mkDerivation, base }: - mkDerivation { - pname = "synchronous-channels"; - version = "0.2"; - sha256 = "0xzpjq3h3mqdi553v7p6xm3i74nvbhz5igjlhfh6snlmr7p1cdvb"; - libraryHaskellDepends = [ base ]; - description = "Synchronous communication channels"; - license = lib.licenses.bsd3; - } - ) { }; - - "syncthing-hs" = callPackage ( - { - mkDerivation, - aeson, - base, - bytestring, - connection, - containers, - data-default, - derive, - either, - exceptions, - http-client, - http-client-tls, - http-types, - lens, - quickcheck-instances, - regex-posix, - scientific, - tasty, - tasty-hunit, - tasty-quickcheck, - text, - time, - time-locale-compat, - transformers, - unordered-containers, - vector, - wreq, - }: - mkDerivation { - pname = "syncthing-hs"; - version = "0.3.0.0"; - sha256 = "0mancdrf3miicjcsrszxgv5bnka9nvbcsynyw4ljn19c2mk2628r"; - libraryHaskellDepends = [ - aeson - base - bytestring - connection - containers - either - exceptions - http-client - http-client-tls - lens - regex-posix - text - time - time-locale-compat - transformers - unordered-containers - vector - wreq - ]; - testHaskellDepends = [ - aeson - base - bytestring - containers - data-default - derive - either - exceptions - http-client - http-types - lens - quickcheck-instances - scientific - tasty - tasty-hunit - tasty-quickcheck - text - transformers - vector - wreq - ]; - description = "Haskell bindings for the Syncthing REST API"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "synt" = callPackage ( - { - mkDerivation, - argparser, - base, - haskell-src-exts, - hpc, - hspec, - regexpr, - split, - Synt, - }: - mkDerivation { - pname = "synt"; - version = "0.1.2"; - sha256 = "12d9ilb81vcm24s8whk2cbq1nxlrzdsr7049962q6b0vkrk64v5v"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - argparser - base - haskell-src-exts - regexpr - split - ]; - executableHaskellDepends = [ - argparser - base - haskell-src-exts - regexpr - split - ]; - testHaskellDepends = [ - argparser - base - haskell-src-exts - hpc - hspec - regexpr - split - Synt - ]; - description = "Similar code analysis"; - license = "unknown"; - hydraPlatforms = lib.platforms.none; - mainProgram = "synt"; - broken = true; - } - ) { Synt = null; }; - - "syntactic" = callPackage ( - { - mkDerivation, - base, - constraints, - containers, - criterion, - data-hash, - deepseq, - mtl, - QuickCheck, - syb, - tagged, - tasty, - tasty-golden, - tasty-hunit, - tasty-quickcheck, - tasty-th, - template-haskell, - tree-view, - utf8-string, - }: - mkDerivation { - pname = "syntactic"; - version = "3.8.4"; - sha256 = "13hsv7yr35jaimag4v0c0l56clcdcny4b1m0q6h83qcidcrqxcfc"; - libraryHaskellDepends = [ - base - constraints - containers - data-hash - deepseq - mtl - syb - template-haskell - tree-view - ]; - testHaskellDepends = [ - base - containers - mtl - QuickCheck - tagged - tasty - tasty-golden - tasty-hunit - tasty-quickcheck - tasty-th - utf8-string - ]; - benchmarkHaskellDepends = [ - base - criterion - deepseq - ]; - description = "Generic representation and manipulation of abstract syntax"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "syntactical" = callPackage ( - { mkDerivation, base }: - mkDerivation { - pname = "syntactical"; - version = "0.1"; - sha256 = "1sqnmarmdm4mha28h8gbp3jddlig84v7zqn53a29047w3877g3gw"; - libraryHaskellDepends = [ base ]; - description = "Distfix expression parsing library"; - license = lib.licenses.bsd3; - } - ) { }; - - "syntax" = callPackage ( - { - mkDerivation, - base, - lens, - mono-traversable, - scientific, - semi-iso, - text, - vector, - }: - mkDerivation { - pname = "syntax"; - version = "1.0.0.0"; - sha256 = "1dhbzbf1zlpfjhnacqfhzvjznwlzv39c12a3y8ivqhplnkmqsm7x"; - revision = "2"; - editedCabalFile = "0vcnwqlpjz276avbx25q1n5qixji4nb0ccv4pz8y3wm2rsqbqn9r"; - libraryHaskellDepends = [ - base - lens - mono-traversable - scientific - semi-iso - text - vector - ]; - description = "Reversible parsing and pretty-printing"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "syntax-attoparsec" = callPackage ( - { - mkDerivation, - attoparsec, - base, - bytestring, - scientific, - semi-iso, - syntax, - text, - vector, - }: - mkDerivation { - pname = "syntax-attoparsec"; - version = "1.0.0.0"; - sha256 = "1ygikzc7s967bh9yz19r9zd2r1jychlf04cylbigaakrxnnkj4hi"; - libraryHaskellDepends = [ - attoparsec - base - bytestring - scientific - semi-iso - syntax - text - vector - ]; - description = "Syntax instances for Attoparsec"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "syntax-example" = callPackage ( - { - mkDerivation, - attoparsec, - base, - lens, - scientific, - semi-iso, - syntax, - syntax-attoparsec, - syntax-printer, - text, - }: - mkDerivation { - pname = "syntax-example"; - version = "1.0.0.0"; - sha256 = "1szfapnlcgr19cipm4q68w7p52sw2hapks63vcnn9qfjnav17ljr"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - attoparsec - base - lens - scientific - semi-iso - syntax - syntax-attoparsec - syntax-printer - text - ]; - description = "Example application using syntax, a library for abstract syntax descriptions"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - mainProgram = "syntax-example"; - } - ) { }; - - "syntax-example-json" = callPackage ( - { - mkDerivation, - attoparsec, - base, - containers, - lens, - scientific, - semi-iso, - syntax, - syntax-attoparsec, - syntax-printer, - text, - }: - mkDerivation { - pname = "syntax-example-json"; - version = "1.0.0.0"; - sha256 = "1bgv2y97rk5jr2gkl4d1pm19v3pl1gziz4sxnlv9w539dna0dwim"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - attoparsec - base - containers - lens - scientific - semi-iso - syntax - syntax-attoparsec - syntax-printer - text - ]; - description = "Example JSON parser/pretty-printer"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - mainProgram = "syntax-example-json"; - } - ) { }; - - "syntax-pretty" = callPackage ( - { - mkDerivation, - base, - pretty, - scientific, - semi-iso, - syntax, - text, - }: - mkDerivation { - pname = "syntax-pretty"; - version = "0.2.0.0"; - sha256 = "1dyv0d998lbjndiw05hz9rmiazzz3rvw8hqdx5npb6yjmq237zmf"; - libraryHaskellDepends = [ - base - pretty - scientific - semi-iso - syntax - text - ]; - description = "Syntax instance for pretty, the pretty printing library"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "syntax-printer" = callPackage ( - { - mkDerivation, + ad, base, - bifunctors, - bytestring, - scientific, - semi-iso, - semigroupoids, - syntax, + containers, + doctest-parallel, + hspec, + hspec-discover, + QuickCheck, text, - vector, + text-show, }: mkDerivation { - pname = "syntax-printer"; - version = "1.0.0.0"; - sha256 = "051gkxj9qgrmjp8jl48nb7487y2hd6ymrzjl62k2faa0cfz6sbqz"; + pname = "symtegration"; + version = "0.6.1"; + sha256 = "0nkzz3wgary18mabfj1nhrwcqf3dn4r00qq3wiw40rllqls5zvwf"; libraryHaskellDepends = [ + ad base - bifunctors - bytestring - scientific - semi-iso - semigroupoids - syntax + containers text - vector + text-show ]; - description = "Text and ByteString printers for 'syntax'"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; + testHaskellDepends = [ + ad + base + containers + doctest-parallel + hspec + QuickCheck + text + text-show + ]; + testToolDepends = [ hspec-discover ]; + description = "Library for symbolic integration of mathematical expressions"; + license = lib.licenses.asl20; } ) { }; - "syntax-trees" = callPackage ( + "synapse" = callPackage ( { mkDerivation, base, - haskell-src-exts, - hint, - mtl, - template-haskell, - uniplate, + easyplot, + hashable, + HUnit, + random, + terminal-progress-bar, + unordered-containers, + vector, }: mkDerivation { - pname = "syntax-trees"; - version = "0.1.2"; - sha256 = "19lgaiql3d8v6w8dl0a7adrfw63ch5376dz6y4jzndrwzi43p9sb"; + pname = "synapse"; + version = "0.1.0.0"; + sha256 = "1i6y4cq91kdlwpg9vqdbn92ypkkrk12blxpp2p70y7xxb4drc9cb"; libraryHaskellDepends = [ base - haskell-src-exts - hint - mtl - template-haskell - uniplate + hashable + random + terminal-progress-bar + unordered-containers + vector ]; - description = "Convert between different Haskell syntax trees"; - license = lib.licenses.bsd3; + testHaskellDepends = [ + base + easyplot + HUnit + random + ]; + description = "Synapse is a machine learning library written in pure Haskell"; + license = lib.licenses.mit; hydraPlatforms = lib.platforms.none; - broken = true; } ) { }; - "syntax-trees-fork-bairyn" = callPackage ( - { - mkDerivation, - base, - haskell-src-exts, - hint, - mtl, - template-haskell, - uniplate, - }: + "synchronous-channels" = callPackage ( + { mkDerivation, base }: mkDerivation { - pname = "syntax-trees-fork-bairyn"; - version = "0.1.2.5"; - sha256 = "1n4k8m4zl5phxyrh6s46ijxcba9iljyh7zvhrrzzaw3d00nfvqg6"; - libraryHaskellDepends = [ - base - haskell-src-exts - hint - mtl - template-haskell - uniplate - ]; - description = "Convert between different Haskell syntax trees. Bairyn's fork."; + pname = "synchronous-channels"; + version = "0.2"; + sha256 = "0xzpjq3h3mqdi553v7p6xm3i74nvbhz5igjlhfh6snlmr7p1cdvb"; + libraryHaskellDepends = [ base ]; + description = "Synchronous communication channels"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; } ) { }; - "syntaxnet-haskell" = callPackage ( + "synt" = callPackage ( { mkDerivation, - aeson, + argparser, base, - bytestring, - cassava, - containers, - data-default, - haskell-conll, + haskell-src-exts, + hpc, hspec, - lens, - protolude, - safe, + regexpr, split, - text, - text-format, - vector, + Synt, }: mkDerivation { - pname = "syntaxnet-haskell"; - version = "0.1.1.0"; - sha256 = "0lcgn91kbsjkpnbw7fczqsjmzvhrx5fixhgzjzmjaiwndw09b5z5"; + pname = "synt"; + version = "0.1.2"; + sha256 = "12d9ilb81vcm24s8whk2cbq1nxlrzdsr7049962q6b0vkrk64v5v"; + isLibrary = true; + isExecutable = true; libraryHaskellDepends = [ - aeson + argparser base - bytestring - cassava - containers - data-default - haskell-conll - lens - protolude - safe + haskell-src-exts + regexpr + split + ]; + executableHaskellDepends = [ + argparser + base + haskell-src-exts + regexpr split - text - text-format - vector ]; testHaskellDepends = [ - aeson + argparser base - cassava - haskell-conll + haskell-src-exts + hpc hspec + regexpr + split + Synt ]; - description = "Working with Google's SyntaxNet output files - CoNLL, Tree"; - license = lib.licenses.mit; + description = "Similar code analysis"; + license = "unknown"; hydraPlatforms = lib.platforms.none; + mainProgram = "synt"; + broken = true; } - ) { }; + ) { Synt = null; }; - "synthesizer" = callPackage ( + "syntactic" = callPackage ( { mkDerivation, - array, base, - binary, - bytestring, + constraints, containers, - event-list, - filepath, - gnuplot, - non-negative, - numeric-prelude, - numeric-quest, - process, + criterion, + data-hash, + deepseq, + mtl, QuickCheck, - random, - sox, - storable-record, - storablevector, - transformers, - utility-ht, + syb, + tagged, + tasty, + tasty-golden, + tasty-hunit, + tasty-quickcheck, + tasty-th, + template-haskell, + tree-view, + utf8-string, }: mkDerivation { - pname = "synthesizer"; - version = "0.2.0.1"; - sha256 = "1n5r7061x8212a8wfv0j9g28l79lxgbymr1f0m1qgzkhqf80gz3d"; - isLibrary = true; - isExecutable = true; + pname = "syntactic"; + version = "3.8.4"; + sha256 = "13hsv7yr35jaimag4v0c0l56clcdcny4b1m0q6h83qcidcrqxcfc"; libraryHaskellDepends = [ - array base - binary - bytestring + constraints containers - event-list - filepath - gnuplot - non-negative - numeric-prelude - numeric-quest - process + data-hash + deepseq + mtl + syb + template-haskell + tree-view + ]; + testHaskellDepends = [ + base + containers + mtl QuickCheck - random - sox - storable-record - storablevector - transformers - utility-ht + tagged + tasty + tasty-golden + tasty-hunit + tasty-quickcheck + tasty-th + utf8-string ]; - description = "Audio signal processing coded in Haskell"; - license = "GPL"; + benchmarkHaskellDepends = [ + base + criterion + deepseq + ]; + description = "Generic representation and manipulation of abstract syntax"; + license = lib.licenses.bsd3; hydraPlatforms = lib.platforms.none; broken = true; } ) { }; + "syntactical" = callPackage ( + { mkDerivation, base }: + mkDerivation { + pname = "syntactical"; + version = "0.1"; + sha256 = "1sqnmarmdm4mha28h8gbp3jddlig84v7zqn53a29047w3877g3gw"; + libraryHaskellDepends = [ base ]; + description = "Distfix expression parsing library"; + license = lib.licenses.bsd3; + } + ) { }; + "synthesizer-alsa" = callPackage ( { mkDerivation, @@ -651839,37 +377370,6 @@ self: { } ) { }; - "synthesizer-filter" = callPackage ( - { - mkDerivation, - base, - containers, - numeric-prelude, - numeric-quest, - synthesizer-core, - transformers, - utility-ht, - }: - mkDerivation { - pname = "synthesizer-filter"; - version = "0.4.1.1"; - sha256 = "0130y7v7r6fhclyg4fg4jj07x1lvn8cvh40w43m2j3sdcmzaa25a"; - libraryHaskellDepends = [ - base - containers - numeric-prelude - numeric-quest - synthesizer-core - transformers - utility-ht - ]; - description = "Audio signal processing coded in Haskell: Filter networks"; - license = "GPL"; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "synthesizer-inference" = callPackage ( { mkDerivation, @@ -652083,55 +377583,6 @@ self: { } ) { }; - "sys-process" = callPackage ( - { - mkDerivation, - base, - bifunctors, - directory, - doctest, - filepath, - lens, - mtl, - notzero, - process, - QuickCheck, - semigroupoids, - semigroups, - template-haskell, - transformers, - }: - mkDerivation { - pname = "sys-process"; - version = "0.2.0"; - sha256 = "1djl5d9865w55zxlbmfp3xkzjk3744hz32iz06q8jjw9ifpj3209"; - libraryHaskellDepends = [ - base - bifunctors - directory - filepath - lens - mtl - notzero - process - semigroupoids - semigroups - transformers - ]; - testHaskellDepends = [ - base - directory - doctest - filepath - QuickCheck - template-haskell - ]; - description = "A replacement for System.Exit and System.Process."; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "sysinfo" = callPackage ( { mkDerivation, @@ -652213,76 +377664,6 @@ self: { } ) { }; - "system-canonicalpath" = callPackage ( - { - mkDerivation, - base, - basic-prelude, - chell, - directory, - system-filepath, - text, - }: - mkDerivation { - pname = "system-canonicalpath"; - version = "0.3.2.0"; - sha256 = "031m5j7xglxdgp3rkgf2v37jya1a3hhjp3mxbfyyjl27wv7pzhjy"; - libraryHaskellDepends = [ - base - basic-prelude - directory - system-filepath - text - ]; - testHaskellDepends = [ - base - basic-prelude - chell - system-filepath - ]; - description = "Abstract data type for canonical paths with some utilities"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "system-command" = callPackage ( - { - mkDerivation, - base, - directory, - doctest, - filepath, - process, - QuickCheck, - transformers, - }: - mkDerivation { - pname = "system-command"; - version = "0.0.10"; - sha256 = "11lfr6xm5xpvq4244pc7a0psy2m1krz0b1jd9pdw6kzn5ammi1b2"; - libraryHaskellDepends = [ - base - directory - filepath - process - transformers - ]; - testHaskellDepends = [ - base - directory - doctest - filepath - QuickCheck - ]; - description = "A replacement for System.Exit and System.Process"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "system-error" = callPackage ( { mkDerivation, base }: mkDerivation { @@ -652295,38 +377676,6 @@ self: { } ) { }; - "system-extra" = callPackage ( - { - mkDerivation, - base, - bytestring, - directory, - hspec, - process, - QuickCheck, - }: - mkDerivation { - pname = "system-extra"; - version = "0.1.0"; - sha256 = "0x4xikvlj61r0sl8b98nccijkp99jalz0qkc6z5l48p81bj3qrl1"; - libraryHaskellDepends = [ - base - bytestring - directory - process - ]; - testHaskellDepends = [ - base - hspec - QuickCheck - ]; - description = "A bunch of system utilities used by other projects"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "system-fileio" = callPackage ( { mkDerivation, @@ -652435,76 +377784,6 @@ self: { } ) { }; - "system-inotify" = callPackage ( - { - mkDerivation, - base, - bytestring, - }: - mkDerivation { - pname = "system-inotify"; - version = "0.1"; - sha256 = "0ndw4vcvvf7p6nb5vn91mhbj4w9lmgm4cl0jzsks4mxs625bv4lg"; - libraryHaskellDepends = [ - base - bytestring - ]; - description = "Binding to Linux's inotify interface"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "system-lifted" = callPackage ( - { - mkDerivation, - base, - directory, - either, - haskell-src-meta, - template-haskell, - text, - time, - transformers, - unix, - }: - mkDerivation { - pname = "system-lifted"; - version = "0.2.0.1"; - sha256 = "1c27y14867dd6706kp9n9y287vi7vqfzd2qr9365mk2854zvqifw"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - directory - either - haskell-src-meta - template-haskell - text - time - transformers - unix - ]; - executableHaskellDepends = [ - base - directory - either - haskell-src-meta - template-haskell - text - time - transformers - unix - ]; - description = "Lifted versions of System functions"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "main"; - broken = true; - } - ) { }; - "system-linux-proc" = callPackage ( { mkDerivation, @@ -652544,40 +377823,6 @@ self: { } ) { }; - "system-locale" = callPackage ( - { - mkDerivation, - attoparsec, - base, - bytestring, - hspec, - process, - text, - time, - }: - mkDerivation { - pname = "system-locale"; - version = "0.3.0.0"; - sha256 = "08svyqndp6wvf5g0dyfc31i1m7a67zwvz4zb1iivpjszahw9czj9"; - libraryHaskellDepends = [ - attoparsec - base - bytestring - process - text - time - ]; - testHaskellDepends = [ - base - hspec - ]; - description = "Get system locales"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "system-posix-redirect" = callPackage ( { mkDerivation, @@ -652599,103 +377844,6 @@ self: { } ) { }; - "system-random-effect" = callPackage ( - { - mkDerivation, - base, - bytestring, - criterion, - crypto-api, - deepseq, - extensible-effects, - HUnit, - mersenne-random-pure64, - primitive, - QuickCheck, - statistics, - test-framework, - test-framework-hunit, - test-framework-quickcheck2, - vector, - vector-algorithms, - }: - mkDerivation { - pname = "system-random-effect"; - version = "0.4.1.3"; - sha256 = "1gfzyjap173brh0i4plgad0409hpah98wsf9w0n7mcr2ysrvjdmb"; - libraryHaskellDepends = [ - base - bytestring - crypto-api - extensible-effects - mersenne-random-pure64 - primitive - statistics - vector - vector-algorithms - ]; - testHaskellDepends = [ - base - extensible-effects - HUnit - QuickCheck - test-framework - test-framework-hunit - test-framework-quickcheck2 - vector - ]; - benchmarkHaskellDepends = [ - base - criterion - deepseq - extensible-effects - vector - ]; - description = "Random number generation for extensible effects"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "system-test" = callPackage ( - { - mkDerivation, - aeson, - ansi-terminal, - base, - bytestring, - HUnit, - process, - text, - }: - mkDerivation { - pname = "system-test"; - version = "0.1.2"; - sha256 = "0h867f1kfp8vzwz5kmxdkj2jaq3vyiz138rfymcgd4829nxlxc82"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson - ansi-terminal - base - bytestring - process - text - ]; - executableHaskellDepends = [ base ]; - testHaskellDepends = [ - base - HUnit - ]; - description = "Runs system tests of applications"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - mainProgram = "system-test"; - broken = true; - } - ) { }; - "system-time-monotonic" = callPackage ( { mkDerivation, @@ -652919,39 +378067,6 @@ self: { } ) { }; - "systemstats" = callPackage ( - { - mkDerivation, - base, - micrologger, - optparse-applicative, - statgrab, - text, - text-format, - transformers, - }: - mkDerivation { - pname = "systemstats"; - version = "0.1.0.0"; - sha256 = "054gqi3fpqig2whpymznvnxp59mkalk0dp92rk9xlw25bycw27iz"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - micrologger - optparse-applicative - statgrab - text - text-format - transformers - ]; - description = "An application that regularly logs system stats for later analysis"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "systemstats"; - } - ) { }; - "systranything" = callPackage ( { mkDerivation, @@ -653037,65 +378152,6 @@ self: { } ) { }; - "t-regex" = callPackage ( - { - mkDerivation, - base, - containers, - haskell-src-exts, - haskell-src-meta, - lens, - mtl, - QuickCheck, - recursion-schemes, - template-haskell, - transformers, - }: - mkDerivation { - pname = "t-regex"; - version = "0.1.0.0"; - sha256 = "0g1sv92cglcvdcq320rwdndmq80nyy1yljl6hm86mjppha20dnxl"; - libraryHaskellDepends = [ - base - containers - haskell-src-exts - haskell-src-meta - lens - mtl - QuickCheck - recursion-schemes - template-haskell - transformers - ]; - description = "Matchers and grammars using tree regular expressions"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "t3-client" = callPackage ( - { - mkDerivation, - base, - t3-game, - t3-server, - }: - mkDerivation { - pname = "t3-client"; - version = "0.2.0.0"; - sha256 = "1pnikcyczwy7x4gf35pxkmr9p8b6smqb637r1h8rc9p2hjag2kak"; - libraryHaskellDepends = [ - base - t3-game - t3-server - ]; - description = "tic-tac-toe Rexports for client"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "t3-game" = callPackage ( { mkDerivation, @@ -653133,97 +378189,6 @@ self: { } ) { }; - "t3-server" = callPackage ( - { - mkDerivation, - aeson, - async, - base, - bytestring, - case-insensitive, - containers, - dejafu, - either, - hashable, - hashmap, - MonadRandom, - mtl, - random, - safe, - stm, - t3-game, - text, - time, - transformers, - unordered-containers, - vector, - wai, - }: - mkDerivation { - pname = "t3-server"; - version = "0.2.0"; - sha256 = "123pbypjdck8sf49yxwlv0d2622v44cwwm7r3bp8vwaq9s8024ww"; - libraryHaskellDepends = [ - aeson - async - base - bytestring - case-insensitive - containers - dejafu - either - hashable - hashmap - MonadRandom - mtl - random - safe - stm - t3-game - text - time - transformers - unordered-containers - vector - wai - ]; - description = "tic-tac-toe server"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "ta" = callPackage ( - { - mkDerivation, - base, - containers, - ghc-prim, - mtl, - Takusen, - template-haskell, - time, - }: - mkDerivation { - pname = "ta"; - version = "0.1"; - sha256 = "1i9d34gdxrc0gnny5zgp73m0si9583i8w0gw97mqpyha4pzz6hxx"; - libraryHaskellDepends = [ - base - containers - ghc-prim - mtl - Takusen - template-haskell - time - ]; - description = "Transito Abierto: convenience library when using Takusen and Oracle"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "tabl" = callPackage ( { mkDerivation, @@ -653247,36 +378212,6 @@ self: { } ) { }; - "table" = callPackage ( - { - mkDerivation, - base, - csv, - optparse-applicative, - process, - split, - }: - mkDerivation { - pname = "table"; - version = "0.1.0.0"; - sha256 = "1aqi8ivmlzi5j8kxjcwyd2nbz9jpp6q3xya8acsni5fis9l4757w"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - csv - optparse-applicative - process - split - ]; - description = "Simple tool to generate tables from DSV input"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - mainProgram = "table"; - broken = true; - } - ) { }; - "table-layout" = callPackage ( { mkDerivation, @@ -653321,20 +378256,6 @@ self: { } ) { }; - "table-tennis" = callPackage ( - { mkDerivation, base }: - mkDerivation { - pname = "table-tennis"; - version = "0.1.0.3"; - sha256 = "1v5g4fbbspgm4smjxk499a0grh5xsr18688kmivql8knhxh1351k"; - libraryHaskellDepends = [ base ]; - description = "A table tennis game tracking engine"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "tableaux" = callPackage ( { mkDerivation, @@ -653388,118 +378309,6 @@ self: { } ) { }; - "tables" = callPackage ( - { - mkDerivation, - base, - binary, - cereal, - comonad, - containers, - deepseq, - directory, - doctest, - filepath, - hashable, - lens, - profunctors, - safecopy, - template-haskell, - transformers, - transformers-compat, - unordered-containers, - }: - mkDerivation { - pname = "tables"; - version = "0.4.1.1"; - sha256 = "1bv51i0bn0nlgi0zj8sjdch6m9dd8ncmnksz699fa28cn57ln64p"; - libraryHaskellDepends = [ - base - binary - cereal - comonad - containers - deepseq - hashable - lens - profunctors - safecopy - template-haskell - transformers - transformers-compat - unordered-containers - ]; - testHaskellDepends = [ - base - containers - directory - doctest - filepath - lens - transformers - unordered-containers - ]; - description = "In-memory storage with multiple keys using lenses and traversals"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "tablestorage" = callPackage ( - { - mkDerivation, - base, - base64-bytestring, - bytestring, - conduit, - crypto-api, - cryptohash, - HTTP, - http-conduit, - http-types, - mtl, - network, - old-locale, - resourcet, - SHA, - time, - transformers, - utf8-string, - xml, - }: - mkDerivation { - pname = "tablestorage"; - version = "0.2.1.0"; - sha256 = "03j8cqq85i9wikw772swazbvyv1dcw0mnhmqq3slydl0axi12yr8"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base - base64-bytestring - bytestring - conduit - crypto-api - cryptohash - HTTP - http-conduit - http-types - mtl - network - old-locale - resourcet - SHA - time - transformers - utf8-string - xml - ]; - description = "Azure Table Storage REST API Wrapper"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "tablize" = callPackage ( { mkDerivation, @@ -653530,81 +378339,6 @@ self: { } ) { }; - "tabloid" = callPackage ( - { - mkDerivation, - base, - bytestring, - containers, - gtk, - hint, - parallel, - process, - regex-base, - regex-posix, - }: - mkDerivation { - pname = "tabloid"; - version = "0.47"; - sha256 = "1qcay15g6g2c9h6vfc7pi7rl4d8fsl09vrq33pdqvgg2fp2xclh3"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - bytestring - containers - gtk - hint - parallel - process - regex-base - regex-posix - ]; - description = "View the output of shell commands in a table"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "tabloid"; - broken = true; - } - ) { }; - - "tabs" = callPackage ( - { - mkDerivation, - base, - filepath, - monadlist, - mtl, - tagged, - }: - mkDerivation { - pname = "tabs"; - version = "0.1.0.0"; - sha256 = "1188rjlq2s2azbjxwfp40j8aidn3hz2lhmcaghj2ig6n5w2jpg98"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - filepath - monadlist - mtl - tagged - ]; - executableHaskellDepends = [ - base - filepath - monadlist - mtl - tagged - ]; - description = "Indents source files"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "tabs"; - broken = true; - } - ) { }; - "tabular" = callPackage ( { mkDerivation, @@ -653793,53 +378527,6 @@ self: { } ) { inherit (pkgs) gtk3; }; - "tag-bits" = callPackage ( - { - mkDerivation, - base, - ghc-prim, - }: - mkDerivation { - pname = "tag-bits"; - version = "0.1.1.2"; - sha256 = "0crn1g3dh97s3b55z0pkvjm9h89kq99c2agk687vr0vij6r5di65"; - libraryHaskellDepends = [ - base - ghc-prim - ]; - description = "Provides access to the dynamic pointer tagging bits used by GHC"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "tag-stream" = callPackage ( - { - mkDerivation, - attoparsec, - base, - blaze-builder, - bytestring, - enumerator, - }: - mkDerivation { - pname = "tag-stream"; - version = "0.2.1"; - sha256 = "160kyp1w3y3zg0hj198v5a3jvhpfdy0y0lfz4r2d8azay4f1pkmn"; - libraryHaskellDepends = [ - attoparsec - base - blaze-builder - bytestring - enumerator - ]; - description = "streamlined html tag parser"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "tagchup" = callPackage ( { mkDerivation, @@ -653943,33 +378630,6 @@ self: { } ) { }; - "tagged-exception-core" = callPackage ( - { - mkDerivation, - base, - exceptions, - mmorph, - mtl, - transformers, - }: - mkDerivation { - pname = "tagged-exception-core"; - version = "2.2.0.0"; - sha256 = "1hj0pmj08mwylxpldjq7c3dh8q8d094q79jn00yp7hbmpymyrsdq"; - libraryHaskellDepends = [ - base - exceptions - mmorph - mtl - transformers - ]; - description = "Reflect exceptions using phantom types"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "tagged-identity" = callPackage ( { mkDerivation, @@ -653991,87 +378651,6 @@ self: { } ) { }; - "tagged-list" = callPackage ( - { - mkDerivation, - AbortT-transformers, - base, - binary, - natural-number, - type-equality, - type-level-natural-number, - type-level-natural-number-induction, - type-level-natural-number-operations, - }: - mkDerivation { - pname = "tagged-list"; - version = "1.1"; - sha256 = "1gdkq9d6hc25z9y8wcsjq10vz25fw40hz2hbp8jfwczhchdxy35s"; - libraryHaskellDepends = [ - AbortT-transformers - base - binary - natural-number - type-equality - type-level-natural-number - type-level-natural-number-induction - type-level-natural-number-operations - ]; - description = "Lists tagged with a type-level natural number representing their length"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "tagged-th" = callPackage ( - { - mkDerivation, - base, - tagged, - template-haskell, - type-spine, - }: - mkDerivation { - pname = "tagged-th"; - version = "0.1"; - sha256 = "1qqysn5zrkx2q3rv8ynf6nmy5rwdqk6niw0fphg5kyrg72h31s69"; - libraryHaskellDepends = [ - base - tagged - template-haskell - type-spine - ]; - description = "QuasiQuoter and Template Haskell splices for creating proxies at higher-kinds"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "tagged-timers" = callPackage ( - { - mkDerivation, - base, - time, - transformers, - unordered-containers, - }: - mkDerivation { - pname = "tagged-timers"; - version = "0.1.0.0"; - sha256 = "0xys9mkkiym4jpj361k8pn5gnmnpniyn2cnw62v08mz6mr3ffmh1"; - libraryHaskellDepends = [ - base - time - transformers - unordered-containers - ]; - description = "Simple wrappers for timing IO actions (single-threaded)"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "tagged-transformer" = callPackage ( { mkDerivation, @@ -654249,37 +378828,6 @@ self: { } ) { inherit (pkgs) taglib; }; - "taglib-api" = callPackage ( - { - mkDerivation, - base, - bytestring, - containers, - mtl, - taglib, - text, - transformers, - }: - mkDerivation { - pname = "taglib-api"; - version = "0.1.1.3"; - sha256 = "1ahbwi28yjigbkgfv52iaaqalmmlc4d09fa65l0yczxrs7rzchmj"; - libraryHaskellDepends = [ - base - bytestring - containers - mtl - text - transformers - ]; - libraryPkgconfigDepends = [ taglib ]; - description = "An FFI layer over TagLib's C bindings"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { inherit (pkgs) taglib; }; - "tagset-positional" = callPackage ( { mkDerivation, @@ -654307,29 +378855,6 @@ self: { } ) { }; - "tagshare" = callPackage ( - { - mkDerivation, - base, - containers, - mtl, - }: - mkDerivation { - pname = "tagshare"; - version = "0.0"; - sha256 = "1q3chp1rmwmxa8rxv7548wsvbqbng6grrnv1587p08385sp4ncfj"; - libraryHaskellDepends = [ - base - containers - mtl - ]; - description = "TagShare - explicit sharing with tags"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "tagsoup" = callPackage ( { mkDerivation, @@ -654367,126 +378892,6 @@ self: { } ) { }; - "tagsoup-ht" = callPackage ( - { - mkDerivation, - base, - bytestring, - containers, - data-accessor, - explicit-exception, - old-time, - tagsoup, - transformers, - utility-ht, - xml-basic, - }: - mkDerivation { - pname = "tagsoup-ht"; - version = "0.3"; - sha256 = "1yxb1lmayqqlnxx4jgcbvya8llfgdbbr8rvcxwicwjrq3xsjl8km"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - bytestring - containers - data-accessor - explicit-exception - tagsoup - transformers - utility-ht - xml-basic - ]; - executableHaskellDepends = [ - base - bytestring - containers - data-accessor - explicit-exception - old-time - tagsoup - transformers - utility-ht - xml-basic - ]; - description = "alternative parser for the tagsoup package"; - license = "GPL"; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "tagsoup-megaparsec" = callPackage ( - { - mkDerivation, - base, - containers, - hspec, - megaparsec, - raw-strings-qq, - tagsoup, - }: - mkDerivation { - pname = "tagsoup-megaparsec"; - version = "0.2.0.0"; - sha256 = "18sh2l3bw1fv09jf874vha5nk9wlcwh2bydgnbsd5gxnvq027z64"; - libraryHaskellDepends = [ - base - containers - megaparsec - tagsoup - ]; - testHaskellDepends = [ - base - hspec - megaparsec - raw-strings-qq - tagsoup - ]; - description = "A Tag token parser and Tag specific parsing combinators"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "tagsoup-navigate" = callPackage ( - { - mkDerivation, - base, - deriving-compat, - lens, - mmorph, - mtl, - semigroupoids, - semigroups, - tagsoup, - tagsoup-selection, - transformers, - }: - mkDerivation { - pname = "tagsoup-navigate"; - version = "0.1.0.7"; - sha256 = "02qq2qc5xrsw6nf4hc02g9xkgdkx3ka7pack02dkhnbxj3jv03vw"; - libraryHaskellDepends = [ - base - deriving-compat - lens - mmorph - mtl - semigroupoids - semigroups - tagsoup - tagsoup-selection - transformers - ]; - description = "Tagsoup Navigate"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "tagsoup-parsec" = callPackage ( { mkDerivation, @@ -654510,31 +378915,6 @@ self: { } ) { }; - "tagsoup-selection" = callPackage ( - { - mkDerivation, - base, - containers, - parsec, - tagsoup, - }: - mkDerivation { - pname = "tagsoup-selection"; - version = "0.1.0.1"; - sha256 = "0wqw4g5bg8zrkdxfsr8gn0g4a6dvz83b3hyvhdwqf2q1v3i5jw9d"; - libraryHaskellDepends = [ - base - containers - parsec - tagsoup - ]; - description = "Selecting subtrees from TagSoup's TagTrees using CSS selectors"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "tagstew" = callPackage ( { mkDerivation, @@ -655045,7 +379425,6 @@ self: { ]; description = "An implementation of the \"Great Black Swamp\" LAFS protocol"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; } ) { }; @@ -655213,82 +379592,6 @@ self: { } ) { }; - "tai" = callPackage ( - { - mkDerivation, - base, - clock, - lens, - mtl, - parsers, - time, - trifecta, - wreq, - }: - mkDerivation { - pname = "tai"; - version = "0"; - sha256 = "1kp7m9mhawi2fbdsir4kg9z6hbmlw4kmp3kjvlk4qkhvckgl3pxw"; - revision = "3"; - editedCabalFile = "09wmlfswhs0839iq08br4i4zgjavvwxavcp0i0mldgrj82x9cxfy"; - libraryHaskellDepends = [ - base - clock - lens - mtl - parsers - time - trifecta - wreq - ]; - description = "Support library to enable TAI usage on systems with time kept in UTC"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "tai64" = callPackage ( - { - mkDerivation, - attoparsec, - base, - base16-bytestring, - binary, - bytestring, - doctest, - QuickCheck, - text, - time, - vector, - }: - mkDerivation { - pname = "tai64"; - version = "0.2.0"; - sha256 = "0pk8qfla4iv8yryfxpz5nf2ijhdg7svbcikg3pik2psir6igj3sw"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - attoparsec - base - base16-bytestring - binary - bytestring - QuickCheck - text - time - vector - ]; - testHaskellDepends = [ - base - doctest - ]; - description = "Tai64 Labels for Haskell"; - license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "tail" = callPackage ( { mkDerivation, @@ -655481,115 +379784,6 @@ self: { } ) { }; - "tak" = callPackage ( - { - mkDerivation, - base, - bytestring, - hashable, - hslogger, - HUnit, - matrix, - network, - parsec, - random-shuffle, - safe, - }: - mkDerivation { - pname = "tak"; - version = "0.1.0.0"; - sha256 = "1nbx76bjqqc0967jsyvm089z0wqivw0pf2a2bh85fq0ych33099r"; - libraryHaskellDepends = [ - base - bytestring - hashable - hslogger - matrix - network - parsec - random-shuffle - safe - ]; - testHaskellDepends = [ - base - bytestring - hashable - hslogger - HUnit - matrix - network - parsec - random-shuffle - safe - ]; - description = "A library encoding the rules of Tak, and a playtak.com client."; - license = lib.licenses.bsd2; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "tak-ai" = callPackage ( - { - mkDerivation, - base, - HUnit, - matrix, - parsec, - random-shuffle, - tak, - }: - mkDerivation { - pname = "tak-ai"; - version = "0.1.0.1"; - sha256 = "1iv4hg6jrwjwwp65d06q874fbmbjlbjp2vx6qp0rsqybw4sw7z36"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - random-shuffle - tak - ]; - testHaskellDepends = [ - base - HUnit - matrix - parsec - random-shuffle - tak - ]; - description = "AI(s) for playing Tak on playtak.com"; - license = lib.licenses.bsd2; - hydraPlatforms = lib.platforms.none; - mainProgram = "takky"; - } - ) { }; - - "takahashi" = callPackage ( - { - mkDerivation, - base, - lens, - monad-skeleton, - mtl, - }: - mkDerivation { - pname = "takahashi"; - version = "0.2.2.0"; - sha256 = "0flr87m1yjxcv1r64bvrx1gm9dpp6xvj2lj14pi99pipywgw4kgs"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base - lens - monad-skeleton - mtl - ]; - description = "create slide for presentation"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "takedouble" = callPackage ( { mkDerivation, @@ -655634,63 +379828,6 @@ self: { } ) { }; - "takusen-oracle" = callPackage ( - { - mkDerivation, - base, - clntsh, - mtl, - old-time, - time, - }: - mkDerivation { - pname = "takusen-oracle"; - version = "0.9.4.1"; - sha256 = "12w6xks3swaxhm6zkx2gxc42n76x94v6ym0q4gzqrdc03ramj8a9"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - mtl - old-time - time - ]; - librarySystemDepends = [ clntsh ]; - description = "Database library with left-fold interface for Oracle"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { clntsh = null; }; - - "tal" = callPackage ( - { - mkDerivation, - base, - containers, - mtl, - pretty, - transformers, - unbound, - }: - mkDerivation { - pname = "tal"; - version = "0.1.0.0"; - sha256 = "04azvlvlfj941dkg0bg6xyxqs005jb5prb6pfvwf2szm3l1n6p1n"; - libraryHaskellDepends = [ - base - containers - mtl - pretty - transformers - unbound - ]; - description = "An implementation of Typed Assembly Language (Morrisett, Walker, Crary, Glew)"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "talash" = callPackage ( { mkDerivation, @@ -655760,273 +379897,6 @@ self: { } ) { }; - "tamarin-prover" = callPackage ( - { - mkDerivation, - aeson, - array, - base, - binary, - blaze-builder, - blaze-html, - bytestring, - cmdargs, - conduit, - containers, - deepseq, - derive, - directory, - dlist, - fclabels, - filepath, - hamlet, - http-types, - HUnit, - lifted-base, - monad-control, - mtl, - old-locale, - parallel, - parsec, - process, - safe, - shakespeare, - syb, - tamarin-prover-term, - tamarin-prover-theory, - tamarin-prover-utils, - text, - threads, - time, - transformers, - uniplate, - wai, - warp, - yesod-core, - yesod-json, - yesod-static, - }: - mkDerivation { - pname = "tamarin-prover"; - version = "0.8.6.3"; - sha256 = "1x2d3vlwwssdj0jhnvrm1h0qaajxyns25b9azhf9k8q8xqxi7r32"; - isLibrary = false; - isExecutable = true; - enableSeparateDataOutput = true; - executableHaskellDepends = [ - aeson - array - base - binary - blaze-builder - blaze-html - bytestring - cmdargs - conduit - containers - deepseq - derive - directory - dlist - fclabels - filepath - hamlet - http-types - HUnit - lifted-base - monad-control - mtl - old-locale - parallel - parsec - process - safe - shakespeare - syb - tamarin-prover-term - tamarin-prover-theory - tamarin-prover-utils - text - threads - time - transformers - uniplate - wai - warp - yesod-core - yesod-json - yesod-static - ]; - description = "The Tamarin prover for security protocol analysis"; - license = "GPL"; - hydraPlatforms = lib.platforms.none; - mainProgram = "tamarin-prover"; - } - ) { }; - - "tamarin-prover-term" = callPackage ( - { - mkDerivation, - attoparsec, - base, - binary, - bytestring, - containers, - deepseq, - derive, - directory, - dlist, - HUnit, - mtl, - parsec, - process, - safe, - split, - syb, - tamarin-prover-utils, - }: - mkDerivation { - pname = "tamarin-prover-term"; - version = "0.8.5.1"; - sha256 = "17wq4hr7wfxw5x52jzk8882197zq1lwdqk5yr9wagsbn7hldmaa5"; - libraryHaskellDepends = [ - attoparsec - base - binary - bytestring - containers - deepseq - derive - directory - dlist - HUnit - mtl - parsec - process - safe - split - syb - tamarin-prover-utils - ]; - description = "Term manipulation library for the tamarin prover"; - license = "GPL"; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "tamarin-prover-theory" = callPackage ( - { - mkDerivation, - array, - base, - binary, - bytestring, - cmdargs, - containers, - deepseq, - derive, - directory, - dlist, - fclabels, - filepath, - HUnit, - mtl, - parallel, - parsec, - process, - safe, - syb, - tamarin-prover-term, - tamarin-prover-utils, - time, - transformers, - uniplate, - }: - mkDerivation { - pname = "tamarin-prover-theory"; - version = "0.8.6.0"; - sha256 = "1xc11mrzfg1v8ilp7yb1zlg2359w14szhbdy86pbfzbjl31852l3"; - libraryHaskellDepends = [ - array - base - binary - bytestring - cmdargs - containers - deepseq - derive - directory - dlist - fclabels - filepath - HUnit - mtl - parallel - parsec - process - safe - syb - tamarin-prover-term - tamarin-prover-utils - time - transformers - uniplate - ]; - description = "Term manipulation library for the tamarin prover"; - license = "GPL"; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "tamarin-prover-utils" = callPackage ( - { - mkDerivation, - base, - base64-bytestring, - binary, - blaze-builder, - bytestring, - containers, - deepseq, - dlist, - fclabels, - mtl, - parsec, - pretty, - SHA, - syb, - time, - transformers, - }: - mkDerivation { - pname = "tamarin-prover-utils"; - version = "0.8.5.1"; - sha256 = "11phn05fb8s80g6zk6sly8wi1rl8i3rnymkr99la8abr8yw12j3c"; - libraryHaskellDepends = [ - base - base64-bytestring - binary - blaze-builder - bytestring - containers - deepseq - dlist - fclabels - mtl - parsec - pretty - SHA - syb - time - transformers - ]; - description = "Utility library for the tamarin prover"; - license = "GPL"; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "tamper" = callPackage ( { mkDerivation, @@ -656115,47 +379985,6 @@ self: { } ) { }; - "tapioca" = callPackage ( - { - mkDerivation, - attoparsec, - base, - binary, - bytestring, - cassava, - errors, - hspec, - lens, - unordered-containers, - vector, - }: - mkDerivation { - pname = "tapioca"; - version = "0.1.1.0"; - sha256 = "12rx22dixl4i48jmicvax0ix5h2savcmdni4bxh5c3pm2ic1330m"; - libraryHaskellDepends = [ - attoparsec - base - binary - bytestring - cassava - errors - lens - unordered-containers - vector - ]; - testHaskellDepends = [ - base - hspec - vector - ]; - description = "A tasty enhancement to cassava for easy csv exporting"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "tar_0_6_0_0" = callPackage ( { mkDerivation, @@ -656440,90 +380269,6 @@ self: { } ) { }; - "tar-bytestring" = callPackage ( - { - mkDerivation, - array, - base, - bytestring, - bytestring-handle, - containers, - criterion, - deepseq, - hpath-directory, - hpath-filepath, - hpath-posix, - QuickCheck, - safe-exceptions, - tasty, - tasty-quickcheck, - these, - time, - unix, - word8, - }: - mkDerivation { - pname = "tar-bytestring"; - version = "0.6.3.2"; - sha256 = "10jmxjs808n3vcp997d42dy6256j67rk729awiviv2i76r7anzlv"; - revision = "1"; - editedCabalFile = "04m7im7k9f0qqs5bin9zdgvn1cv45m08cffbli1wb25navnrpwl8"; - libraryHaskellDepends = [ - array - base - bytestring - containers - deepseq - hpath-directory - hpath-filepath - hpath-posix - safe-exceptions - these - time - unix - word8 - ]; - testHaskellDepends = [ - array - base - bytestring - bytestring-handle - containers - deepseq - hpath-directory - hpath-filepath - hpath-posix - QuickCheck - safe-exceptions - tasty - tasty-quickcheck - these - time - unix - word8 - ]; - benchmarkHaskellDepends = [ - array - base - bytestring - containers - criterion - deepseq - hpath-directory - hpath-filepath - hpath-posix - safe-exceptions - these - time - unix - word8 - ]; - description = "Reading, writing and manipulating \".tar\" archive files."; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "tar-conduit" = callPackage ( { mkDerivation, @@ -656615,129 +380360,6 @@ self: { } ) { }; - "target" = callPackage ( - { - mkDerivation, - aeson, - array, - base, - bytestring, - cassava, - containers, - data-timeout, - deepseq, - directory, - exceptions, - filepath, - ghc, - ghc-paths, - ghc-prim, - hint, - liquid-fixpoint, - liquidhaskell, - mtl, - pretty, - process, - QuickCheck, - random, - SafeSemaphore, - smallcheck, - syb, - tagged, - tasty, - tasty-hunit, - template-haskell, - text, - text-format, - th-lift, - time, - transformers, - unordered-containers, - vector, - xml-conduit, - z3, - }: - mkDerivation { - pname = "target"; - version = "0.2.0.1"; - sha256 = "1jwq3b6rq160a4bvrmbkskbglcrl92mcfjbbxilf6y7jvlp6ldm6"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - containers - directory - exceptions - filepath - ghc - ghc-paths - liquid-fixpoint - liquidhaskell - mtl - pretty - process - QuickCheck - syb - tagged - template-haskell - text - text-format - th-lift - transformers - unordered-containers - vector - ]; - executableHaskellDepends = [ - base - hint - ]; - testHaskellDepends = [ - array - base - containers - deepseq - ghc - ghc-prim - liquid-fixpoint - liquidhaskell - mtl - tagged - tasty - tasty-hunit - template-haskell - unordered-containers - ]; - testSystemDepends = [ z3 ]; - benchmarkHaskellDepends = [ - aeson - base - bytestring - cassava - containers - data-timeout - deepseq - ghc - liquid-fixpoint - liquidhaskell - mtl - QuickCheck - random - SafeSemaphore - smallcheck - tagged - template-haskell - time - unordered-containers - vector - xml-conduit - ]; - description = "Generate test-suites from refinement types"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - mainProgram = "target"; - } - ) { inherit (pkgs) z3; }; - "targeted-quickcheck" = callPackage ( { mkDerivation, @@ -656824,166 +380446,6 @@ self: { } ) { }; - "task" = callPackage ( - { - mkDerivation, - aeson, - attoparsec, - base, - bytestring, - containers, - csv-enumerator, - directory, - filepath, - old-locale, - random, - text, - time, - unix, - }: - mkDerivation { - pname = "task"; - version = "0.0.1"; - sha256 = "0z4f4hs2c7xl6c134bqhk81wzxhb6yf7fsar2fnqvahviaqqgzqn"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - aeson - attoparsec - base - bytestring - containers - csv-enumerator - directory - filepath - old-locale - random - text - time - unix - ]; - description = "A command line tool for keeping track of tasks you worked on"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "task"; - } - ) { }; - - "task-distribution" = callPackage ( - { - mkDerivation, - async, - base, - binary, - bytestring, - bzlib, - containers, - directory, - distributed-process, - distributed-process-simplelocalnet, - distributed-static, - filepath, - hadoop-rpc, - hashable, - hint, - hslogger, - hspec, - json, - packman, - process, - rank1dynamic, - split, - strings, - temporary, - text, - time, - transformers, - vector, - zlib, - }: - mkDerivation { - pname = "task-distribution"; - version = "0.1.0.3"; - sha256 = "1kz3mxhn4f6nlr3qmhdlnabdlv0hglc21ckjzp1b8qbzk1cmyr8x"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - async - base - binary - bytestring - bzlib - containers - directory - distributed-process - distributed-process-simplelocalnet - distributed-static - filepath - hadoop-rpc - hashable - hint - hslogger - packman - process - rank1dynamic - split - temporary - text - time - transformers - vector - zlib - ]; - executableHaskellDepends = [ - async - base - binary - bytestring - bzlib - containers - directory - distributed-process - filepath - hadoop-rpc - hslogger - json - process - split - strings - temporary - text - time - vector - zlib - ]; - testHaskellDepends = [ - base - binary - bytestring - directory - distributed-process - distributed-process-simplelocalnet - distributed-static - filepath - hadoop-rpc - hint - hslogger - hspec - packman - process - rank1dynamic - split - temporary - text - transformers - vector - ]; - description = "Distributed processing of changing tasks"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "taskell" = callPackage ( { mkDerivation, @@ -657419,52 +380881,6 @@ self: { } ) { }; - "tasty-auto" = callPackage ( - { - mkDerivation, - base, - directory, - filepath, - tasty, - tasty-hspec, - tasty-hunit, - tasty-quickcheck, - tasty-smallcheck, - }: - mkDerivation { - pname = "tasty-auto"; - version = "0.2.0.0"; - sha256 = "0npn7kx9vxpjdv0pjwaw1kgax54hbnn227962qrwi2x9mi2nykmj"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - directory - filepath - ]; - executableHaskellDepends = [ - base - directory - filepath - ]; - testHaskellDepends = [ - base - directory - filepath - tasty - tasty-hspec - tasty-hunit - tasty-quickcheck - tasty-smallcheck - ]; - description = "Auto discovery for Tasty with support for ingredients and test tree generation"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - mainProgram = "tasty-auto"; - broken = true; - } - ) { }; - "tasty-autocollect" = callPackage ( { mkDerivation, @@ -657532,78 +380948,6 @@ self: { } ) { }; - "tasty-bdd" = callPackage ( - { - mkDerivation, - aeson, - aeson-qq, - base, - exceptions, - free, - HUnit, - microlens, - microlens-th, - mtl, - pretty, - pretty-show, - qm-interpolated-string, - regex-posix, - tagged, - tasty, - tasty-expected-failure, - tasty-fail-fast, - tasty-hunit, - temporary, - text, - transformers, - tree-diff, - }: - mkDerivation { - pname = "tasty-bdd"; - version = "0.1.0.1"; - sha256 = "1da1983hampnkkm6kwxp8w1bkhzic27qbnkckkmsziaz8kbkhcpi"; - libraryHaskellDepends = [ - base - exceptions - free - HUnit - microlens - microlens-th - mtl - pretty - pretty-show - tagged - tasty - tasty-fail-fast - tasty-hunit - temporary - text - transformers - tree-diff - ]; - testHaskellDepends = [ - aeson - aeson-qq - base - exceptions - HUnit - mtl - qm-interpolated-string - regex-posix - tasty - tasty-expected-failure - tasty-fail-fast - tasty-hunit - temporary - text - transformers - ]; - description = "BDD tests language and tasty provider"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "tasty-bench" = callPackage ( { mkDerivation, @@ -658160,46 +381504,6 @@ self: { } ) { }; - "tasty-groundhog-converters" = callPackage ( - { - mkDerivation, - aeson, - base, - bimap, - bytestring, - containers, - groundhog, - groundhog-converters, - groundhog-sqlite, - groundhog-th, - tasty, - tasty-hunit, - tasty-quickcheck, - }: - mkDerivation { - pname = "tasty-groundhog-converters"; - version = "0.1.0"; - sha256 = "08xbdm7bypj6r35pwqv5lzyxshid7vp1vq8hkbivkc99yn0cmic6"; - libraryHaskellDepends = [ - aeson - base - bimap - bytestring - containers - groundhog - groundhog-converters - groundhog-sqlite - groundhog-th - tasty - tasty-hunit - tasty-quickcheck - ]; - description = "Tasty Tests for groundhog converters"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "tasty-hedgehog" = callPackage ( { mkDerivation, @@ -658232,52 +381536,6 @@ self: { } ) { }; - "tasty-hedgehog-coverage" = callPackage ( - { - mkDerivation, - base, - containers, - hedgehog, - mtl, - tagged, - tasty, - tasty-expected-failure, - tasty-hedgehog, - text, - transformers, - wl-pprint-annotated, - }: - mkDerivation { - pname = "tasty-hedgehog-coverage"; - version = "0.1.0.0"; - sha256 = "1d2hnhkpk71k0xjw63jsn6fa4ih01xqn4dgdbflp6yrs0zw6p95c"; - revision = "2"; - editedCabalFile = "10fzklan91gyd3bs5qgyv83v7xflxdfcjlvqgcv15bzwplzngclx"; - libraryHaskellDepends = [ - base - containers - hedgehog - mtl - tagged - tasty - tasty-hedgehog - text - transformers - wl-pprint-annotated - ]; - testHaskellDepends = [ - base - hedgehog - tasty - tasty-expected-failure - ]; - description = "Coverage tracking for Hedgehog Property-Based Testing via Tasty"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "tasty-hslua" = callPackage ( { mkDerivation, @@ -658482,134 +381740,6 @@ self: { } ) { }; - "tasty-integrate" = callPackage ( - { - mkDerivation, - aeson, - base, - bytestring, - cmdargs, - containers, - deepseq, - directory, - either, - haskell-src-exts, - language-haskell-extract, - lens, - mtl, - parsec, - QuickCheck, - quickcheck-property-comb, - regex-posix, - split, - stm, - stringbuilder, - system-filepath, - tasty, - tasty-quickcheck, - text, - transformers, - unix, - }: - mkDerivation { - pname = "tasty-integrate"; - version = "0.0.1"; - sha256 = "0zjbs7ax5nrxcg1njnrliavablda5rgjciq2h3nycvic8r1g9p7x"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - aeson - base - bytestring - cmdargs - containers - directory - either - haskell-src-exts - language-haskell-extract - lens - mtl - parsec - regex-posix - split - system-filepath - tasty - tasty-quickcheck - text - transformers - unix - ]; - testHaskellDepends = [ - base - bytestring - containers - deepseq - directory - haskell-src-exts - lens - mtl - QuickCheck - quickcheck-property-comb - regex-posix - split - stm - stringbuilder - system-filepath - tasty - tasty-quickcheck - text - transformers - ]; - description = "automated integration of QuickCheck properties into tasty suites"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "tasty-jenkins-xml" = callPackage ( - { - mkDerivation, - base, - bytestring, - directory, - hlint, - hspec, - io-capture, - mockery, - tasty, - tasty-ant-xml, - tasty-hunit, - unix, - }: - mkDerivation { - pname = "tasty-jenkins-xml"; - version = "0.2.0.0"; - sha256 = "1r5dm87cxia1kwkm4rvjbbf9h02dlnzglds2wz0kszcd8ys8zy5m"; - revision = "1"; - editedCabalFile = "018wf2xa1x57z6vlrhs98ap1l6i7wgipxjj2ri7lz91rmppjx1c5"; - libraryHaskellDepends = [ - base - tasty - tasty-ant-xml - ]; - testHaskellDepends = [ - base - bytestring - directory - hlint - hspec - io-capture - mockery - tasty - tasty-hunit - unix - ]; - description = "Render tasty output to both console and XML for Jenkins"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "tasty-json" = callPackage ( { mkDerivation, @@ -658673,40 +381803,6 @@ self: { } ) { }; - "tasty-laws" = callPackage ( - { - mkDerivation, - base, - smallcheck, - smallcheck-laws, - smallcheck-series, - tasty, - tasty-smallcheck, - }: - mkDerivation { - pname = "tasty-laws"; - version = "0.3.1"; - sha256 = "09ijh8l2kxvc54nkxk575q6j278fvl2gbkjn7gg1x974qs6k1qfz"; - libraryHaskellDepends = [ - base - smallcheck - smallcheck-laws - smallcheck-series - tasty - tasty-smallcheck - ]; - testHaskellDepends = [ - base - smallcheck - smallcheck-laws - tasty - ]; - description = "Test common laws"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "tasty-leancheck" = callPackage ( { mkDerivation, @@ -658733,39 +381829,6 @@ self: { } ) { }; - "tasty-lens" = callPackage ( - { - mkDerivation, - base, - lens, - smallcheck, - smallcheck-lens, - tasty, - tasty-smallcheck, - }: - mkDerivation { - pname = "tasty-lens"; - version = "0.3.1"; - sha256 = "02p9ih363b0rch97nqsc9lw3lj0icvvi3mizk1sbla7g73klgn86"; - libraryHaskellDepends = [ - base - lens - smallcheck - smallcheck-lens - tasty - tasty-smallcheck - ]; - testHaskellDepends = [ - base - lens - tasty - ]; - description = "Tasty TestTrees for Lens validation"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "tasty-lua" = callPackage ( { mkDerivation, @@ -659209,39 +382272,6 @@ self: { } ) { }; - "tasty-stats" = callPackage ( - { - mkDerivation, - base, - containers, - directory, - process, - stm, - tagged, - tasty, - time, - }: - mkDerivation { - pname = "tasty-stats"; - version = "0.2.0.4"; - sha256 = "0z244l1yl1m77i4nvs9db2v6a2ydgcpgyc78hzgfyin7as002kd6"; - libraryHaskellDepends = [ - base - containers - directory - process - stm - tagged - tasty - time - ]; - description = "Collect statistics of your Tasty testsuite"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "tasty-sugar" = callPackage ( { mkDerivation, @@ -659388,29 +382418,6 @@ self: { } ) { }; - "tasty-test-vector" = callPackage ( - { - mkDerivation, - base, - tasty, - }: - mkDerivation { - pname = "tasty-test-vector"; - version = "0"; - sha256 = "1kgz9mp1h391rqj9n78bfvxl8pd3bxanbnwkc5l9gvlygly3fz8j"; - revision = "2"; - editedCabalFile = "131ldlbp4ji1m8wayl8h28ykcda29bsvifa3mw8513mnqnndgahc"; - libraryHaskellDepends = [ - base - tasty - ]; - description = "Test vector support for tasty"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "tasty-th" = callPackage ( { mkDerivation, @@ -659536,37 +382543,6 @@ self: { } ) { }; - "tateti-tateti" = callPackage ( - { - mkDerivation, - array, - base, - lens-simple, - mtl, - ncurses, - random, - }: - mkDerivation { - pname = "tateti-tateti"; - version = "0.1.0.1"; - sha256 = "0n0fpyay4n4vnmy7l5l1572g00di06592ksjgyhw48pbb1x9gm9w"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - array - base - lens-simple - mtl - ncurses - random - ]; - description = "Meta tic-tac-toe ncurses game"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "tateti-tateti"; - } - ) { }; - "tau" = callPackage ( { mkDerivation, base }: mkDerivation { @@ -659625,108 +382601,6 @@ self: { } ) { }; - "tbox" = callPackage ( - { - mkDerivation, - array, - base, - binary, - cautious-file, - containers, - directory, - filepath, - IfElse, - monad-loops, - mtl, - random, - safe-failure, - stm-io-hooks, - }: - mkDerivation { - pname = "tbox"; - version = "0.1.0"; - sha256 = "0qsc4mdiryrf3pqzzjvx57iz92xagp7692h312q2pm412zg6p1vy"; - libraryHaskellDepends = [ - array - base - binary - cautious-file - containers - directory - filepath - IfElse - monad-loops - mtl - random - safe-failure - stm-io-hooks - ]; - description = "Transactional variables and data structures with IO hooks"; - license = "LGPL"; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "tcache-AWS" = callPackage ( - { - mkDerivation, - aws, - base, - bytestring, - conduit, - http-conduit, - network, - TCache, - text, - }: - mkDerivation { - pname = "tcache-AWS"; - version = "0.0.1"; - sha256 = "18hi8jvc117pxjhpb891hqlsbi4wvmd6nr3vwnqqr7rcw2dsmnwv"; - libraryHaskellDepends = [ - aws - base - bytestring - conduit - http-conduit - network - TCache - text - ]; - description = "tcache using Amazon Web Services as default persistence mechanism"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "tccli" = callPackage ( - { - mkDerivation, - base, - bytestring, - tokyocabinet-haskell, - utf8-string, - }: - mkDerivation { - pname = "tccli"; - version = "0.0.1"; - sha256 = "0ljfn9dvyncl205mrnpic5j0633gnzka03gjc4dmccsqq0c1wjm7"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - bytestring - tokyocabinet-haskell - utf8-string - ]; - description = "TokyoCabinet CLI interface"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "tchcli"; - } - ) { }; - "tce-conf" = callPackage ( { mkDerivation, @@ -659758,42 +382632,6 @@ self: { } ) { }; - "tcod-haskell" = callPackage ( - { - mkDerivation, - base, - bytestring, - containers, - inline-c, - libtcod, - repa, - sdl2, - vector, - }: - mkDerivation { - pname = "tcod-haskell"; - version = "0.3.0.0"; - sha256 = "08pcjzc2kc6aaba7n2j3sbglqpcml47s0mpgfgkbngrnzzs7hrj7"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - bytestring - containers - inline-c - repa - sdl2 - vector - ]; - libraryPkgconfigDepends = [ libtcod ]; - description = "Bindings to libtcod roguelike engine"; - license = lib.licenses.bsd3; - platforms = lib.platforms.linux; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { inherit (pkgs) libtcod; }; - "tconfig" = callPackage ( { mkDerivation, @@ -659813,193 +382651,6 @@ self: { } ) { }; - "tcp" = callPackage ( - { - mkDerivation, - base, - containers, - old-time, - }: - mkDerivation { - pname = "tcp"; - version = "0.0.2"; - sha256 = "1wqkfnkd2di9a6h0br33fd7jaf1yqpaf7kjnpjwp52l4xv04ajlv"; - libraryHaskellDepends = [ - base - containers - old-time - ]; - description = "A purely functional TCP implementation"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "tcp-streams" = callPackage ( - { - mkDerivation, - base, - bytestring, - data-default-class, - directory, - HUnit, - io-streams, - network, - pem, - test-framework, - test-framework-hunit, - tls, - x509, - x509-store, - x509-system, - }: - mkDerivation { - pname = "tcp-streams"; - version = "1.0.1.1"; - sha256 = "1dz21ycm06d9mwc6dbjr8ansl212ril3i5jl73yzkdi9ngj16qqa"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base - bytestring - data-default-class - io-streams - network - pem - tls - x509 - x509-store - x509-system - ]; - testHaskellDepends = [ - base - bytestring - directory - HUnit - io-streams - network - test-framework - test-framework-hunit - ]; - description = "One stop solution for tcp client and server with tls support"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "tcp-streams-openssl" = callPackage ( - { - mkDerivation, - base, - bytestring, - HsOpenSSL, - HsOpenSSL-x509-system, - HUnit, - io-streams, - network, - tcp-streams, - test-framework, - test-framework-hunit, - }: - mkDerivation { - pname = "tcp-streams-openssl"; - version = "1.0.1.0"; - sha256 = "1zka2hmx0659f6w9xnh13i53pfwhky833ifwm63sr3rlly5miry3"; - libraryHaskellDepends = [ - base - bytestring - HsOpenSSL - HsOpenSSL-x509-system - io-streams - network - tcp-streams - ]; - testHaskellDepends = [ - base - bytestring - HUnit - io-streams - network - tcp-streams - test-framework - test-framework-hunit - ]; - description = "Tcp streams using openssl for tls support"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "tdd-util" = callPackage ( - { - mkDerivation, - base, - bytestring, - HUnit, - lens, - MonadCatchIO-transformers, - parallel-io, - process, - QuickCheck, - random, - string-class, - system-posix-redirect, - tagged, - test-framework, - test-framework-hunit, - test-framework-quickcheck2, - time, - transformers, - }: - mkDerivation { - pname = "tdd-util"; - version = "0.3.0.1"; - sha256 = "1d9avxpj2d90agd2pvc905j7jfa4rssl7bnrp2fmky4hfcbqa8ly"; - libraryHaskellDepends = [ - base - bytestring - HUnit - lens - MonadCatchIO-transformers - parallel-io - process - QuickCheck - random - system-posix-redirect - tagged - test-framework - test-framework-hunit - test-framework-quickcheck2 - time - transformers - ]; - testHaskellDepends = [ - base - bytestring - HUnit - lens - MonadCatchIO-transformers - parallel-io - process - QuickCheck - random - string-class - system-posix-redirect - tagged - test-framework - test-framework-hunit - test-framework-quickcheck2 - time - transformers - ]; - description = "Test framework wrapper"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "tdigest" = callPackage ( { mkDerivation, @@ -660042,54 +382693,6 @@ self: { } ) { }; - "tdigest-Chart" = callPackage ( - { - mkDerivation, - base, - base-compat, - Chart, - Chart-diagrams, - colour, - lens, - mwc-random, - semigroupoids, - statistics, - tdigest, - vector, - }: - mkDerivation { - pname = "tdigest-Chart"; - version = "0.2"; - sha256 = "1ciq7d187as9sk1dpccm2s02b6jdhij1l477wff0a7labgw21l0l"; - revision = "3"; - editedCabalFile = "0y7248myrk6zn4bbbi1v6vv4hmrbqr3wb47xl7q1akrcfi687033"; - libraryHaskellDepends = [ - base - base-compat - Chart - colour - lens - semigroupoids - tdigest - ]; - testHaskellDepends = [ - base - base-compat - Chart - Chart-diagrams - lens - mwc-random - statistics - tdigest - vector - ]; - description = "Chart generation from tdigest"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "tdlib" = callPackage ( { mkDerivation, @@ -660263,111 +382866,6 @@ self: { } ) { }; - "tdoc" = callPackage ( - { - mkDerivation, - base, - bytestring, - template-haskell, - transformers, - xhtml, - }: - mkDerivation { - pname = "tdoc"; - version = "0.4.7"; - sha256 = "06f9cbl123g0k9xqmy73l3x468ni120faj9slc806ncwalhjn67s"; - libraryHaskellDepends = [ - base - bytestring - template-haskell - transformers - xhtml - ]; - description = "TDoc is a typed document builder with support for (X)HTML"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "tds" = callPackage ( - { - mkDerivation, - attoparsec, - attoparsec-binary, - base, - bytestring, - hostname, - mtl, - network, - stm, - streaming, - streaming-attoparsec, - streaming-bytestring, - tardis, - text, - transformers, - unix, - vector, - }: - mkDerivation { - pname = "tds"; - version = "0.1.0.0"; - sha256 = "1irgp0sv20vlzvyc09wa8ycf3k120ab623r901n638hrwvrwmz43"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - attoparsec - attoparsec-binary - base - bytestring - hostname - mtl - network - stm - streaming - streaming-attoparsec - streaming-bytestring - tardis - text - transformers - unix - vector - ]; - executableHaskellDepends = [ base ]; - description = "Pure Haskell TDS protocol implementation. Mainly for beam-mssql and beam-sybase"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - mainProgram = "test"; - broken = true; - } - ) { }; - - "teams" = callPackage ( - { - mkDerivation, - base, - containers, - fgl, - graphviz, - }: - mkDerivation { - pname = "teams"; - version = "0.0.2.3"; - sha256 = "04jq7qdh0kr55a7a3gkjc8dgn130bp0kqh8qcmf284wz981vj9gd"; - libraryHaskellDepends = [ - base - containers - fgl - graphviz - ]; - description = "Graphical modeling tools for sequential teams"; - license = "GPL"; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "teardown" = callPackage ( { mkDerivation, @@ -660703,99 +383201,6 @@ self: { } ) { }; - "tehepero" = callPackage ( - { - mkDerivation, - base, - exceptions, - fallible, - prettyprinter, - prettyprinter-ansi-terminal, - }: - mkDerivation { - pname = "tehepero"; - version = "0"; - sha256 = "0cmafcvjvxjpvk35057xb994xg5n5d797v98sshp4y6am5ac91ns"; - libraryHaskellDepends = [ - base - exceptions - fallible - prettyprinter - prettyprinter-ansi-terminal - ]; - description = "Prettier error"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "telega" = callPackage ( - { - mkDerivation, - aeson, - base, - data-default, - http-client, - joint, - lens, - req, - text, - unordered-containers, - }: - mkDerivation { - pname = "telega"; - version = "0.3.0"; - sha256 = "1i19vn0i89p1p007bj0yfdywd9q2n3pd5gx39r7rcn13rzr40alq"; - libraryHaskellDepends = [ - aeson - base - data-default - http-client - joint - lens - req - text - unordered-containers - ]; - description = "Telegram Bot API binding"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "telegram" = callPackage ( - { - mkDerivation, - aeson, - base, - bytestring, - data-default, - http-conduit, - url, - utf8-string, - }: - mkDerivation { - pname = "telegram"; - version = "0.1.0.0"; - sha256 = "1ci6606fx5cisb9yrjh0mkd549w2j3h1vzj3zm2zsl9gr7agvh4n"; - libraryHaskellDepends = [ - aeson - base - bytestring - data-default - http-conduit - url - utf8-string - ]; - description = "Telegram API client"; - license = lib.licenses.gpl2Only; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "telegram-api" = callPackage ( { mkDerivation, @@ -660875,46 +383280,6 @@ self: { } ) { }; - "telegram-bot" = callPackage ( - { - mkDerivation, - base, - containers, - http-client, - http-client-tls, - pipes, - telegram-api, - text, - transformers, - }: - mkDerivation { - pname = "telegram-bot"; - version = "0.5.4.0"; - sha256 = "0wmh57za7p5cr3d2ffiy4scy874ncm0x20bpbxa5pjjvic660qx1"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - containers - http-client - http-client-tls - pipes - telegram-api - text - transformers - ]; - executableHaskellDepends = [ - base - text - ]; - testHaskellDepends = [ base ]; - description = "Telegram Bot microframework for Haskell"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "hello-bot"; - } - ) { }; - "telegram-bot-api" = callPackage ( { mkDerivation, @@ -661039,130 +383404,6 @@ self: { } ) { }; - "telegram-raw-api" = callPackage ( - { - mkDerivation, - aeson, - base, - bytestring, - deriving-aeson, - generic-lens, - hashable, - http-client, - http-client-tls, - http-media, - lens, - servant, - servant-client, - servant-client-core, - servant-multipart, - telegram-types, - text, - time, - }: - mkDerivation { - pname = "telegram-raw-api"; - version = "0.3.0"; - sha256 = "0dlazp70jpffpbpdlbyzv7s33jr1ff8z4xjhvkgqyhs23mzi46rc"; - libraryHaskellDepends = [ - aeson - base - bytestring - deriving-aeson - generic-lens - hashable - http-media - lens - servant - servant-client - servant-multipart - telegram-types - text - time - ]; - testHaskellDepends = [ - aeson - base - bytestring - deriving-aeson - generic-lens - hashable - http-client - http-client-tls - http-media - lens - servant - servant-client - servant-client-core - servant-multipart - telegram-types - text - time - ]; - description = "Servant bindings to the Telegram bot API"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "telegram-types" = callPackage ( - { - mkDerivation, - aeson, - base, - bytestring, - deriving-aeson, - filepath, - generic-lens, - lens, - mime-types, - open-union, - servant, - servant-multipart, - text, - time, - }: - mkDerivation { - pname = "telegram-types"; - version = "0.4.1"; - sha256 = "0zw5in801d7sxavjs28ra026xganca0b21qv4pwhk967vzsf12yy"; - libraryHaskellDepends = [ - aeson - base - bytestring - deriving-aeson - filepath - generic-lens - lens - mime-types - open-union - servant - servant-multipart - text - time - ]; - testHaskellDepends = [ - aeson - base - bytestring - deriving-aeson - filepath - generic-lens - lens - mime-types - open-union - servant - servant-multipart - text - time - ]; - description = "Types used in Telegram bot API"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "telegraph" = callPackage ( { mkDerivation, @@ -661211,46 +383452,6 @@ self: { } ) { }; - "teleport" = callPackage ( - { - mkDerivation, - aeson, - ansi-terminal, - base, - bytestring, - configurator, - optparse-applicative, - system-filepath, - text, - turtle, - }: - mkDerivation { - pname = "teleport"; - version = "0.0.0.10"; - sha256 = "0rjzawpl03pdzk96grvph3zw5ika1x2f5wp2fbq2im0z1qpmcffb"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base ]; - executableHaskellDepends = [ - aeson - ansi-terminal - base - bytestring - configurator - optparse-applicative - system-filepath - text - turtle - ]; - testHaskellDepends = [ base ]; - description = "A tool to quickly switch between directories"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - mainProgram = "teleport-exe"; - broken = true; - } - ) { }; - "telescope" = callPackage ( { mkDerivation, @@ -661321,61 +383522,6 @@ self: { } ) { }; - "teleshell" = callPackage ( - { - mkDerivation, - attoparsec, - base, - bytestring, - hashable, - network, - pipes, - primitive, - QuickCheck, - split, - tasty, - tasty-hunit, - tasty-quickcheck, - text, - transformers, - unordered-containers, - vector, - }: - mkDerivation { - pname = "teleshell"; - version = "0.1.0.0"; - sha256 = "1fmhjjg2k81hc6lsbdnha0a8ma62xcaxkpmfdiygplnmf3gcl02g"; - libraryHaskellDepends = [ - attoparsec - base - bytestring - hashable - network - pipes - primitive - text - transformers - unordered-containers - vector - ]; - testHaskellDepends = [ - base - bytestring - pipes - QuickCheck - split - tasty - tasty-hunit - tasty-quickcheck - vector - ]; - description = "Telnet client and other things"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "tell" = callPackage ( { mkDerivation, @@ -661399,97 +383545,6 @@ self: { } ) { }; - "tellbot" = callPackage ( - { - mkDerivation, - base, - bifunctors, - bytestring, - containers, - http-conduit, - mtl, - network, - regex-pcre, - split, - tagsoup, - text, - time, - transformers, - }: - mkDerivation { - pname = "tellbot"; - version = "0.6.1"; - sha256 = "1rlrl3ljg7gal5pg80zj4yf80ln0qf8xpbm4v1sw2v4z1b686zjb"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - bifunctors - bytestring - containers - http-conduit - mtl - network - regex-pcre - split - tagsoup - text - time - transformers - ]; - description = "IRC tellbot"; - license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - mainProgram = "tellbot"; - broken = true; - } - ) { }; - - "tempered" = callPackage ( - { - mkDerivation, - base, - containers, - directory, - filepath, - mtl, - optparse-applicative, - parsec, - process, - yaml, - }: - mkDerivation { - pname = "tempered"; - version = "0.2.0"; - sha256 = "1r7xx43s6wglj2x8xlwghpfddw31d01pfnjm0h6aldx2wb4c4qj2"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - containers - directory - filepath - mtl - parsec - process - yaml - ]; - executableHaskellDepends = [ - base - containers - directory - mtl - optparse-applicative - ]; - testHaskellDepends = [ base ]; - description = "A dead-simple shell interpolation templating utility"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "tempered"; - broken = true; - } - ) { }; - "tempgres-client" = callPackage ( { mkDerivation, @@ -661553,29 +383608,6 @@ self: { } ) { }; - "template-default" = callPackage ( - { - mkDerivation, - base, - data-default, - template-haskell, - }: - mkDerivation { - pname = "template-default"; - version = "0.1.2"; - sha256 = "1fxfyfnwlw9yslbz012rygw2j5iywplybmgbaawkfq4jda7yail4"; - libraryHaskellDepends = [ - base - data-default - template-haskell - ]; - description = "declaring Default instances just got even easier"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "template-haskell_2_23_0_0" = callPackage ( { mkDerivation, @@ -661642,211 +383674,6 @@ self: { } ) { }; - "template-haskell-util" = callPackage ( - { - mkDerivation, - base, - GenericPretty, - ghc-prim, - template-haskell, - }: - mkDerivation { - pname = "template-haskell-util"; - version = "0.1.1.0"; - sha256 = "032gkb6pgd5l8ih48971ckiy7spvvr6fcmjx4ysiyyaj7hra174f"; - libraryHaskellDepends = [ - base - GenericPretty - ghc-prim - template-haskell - ]; - description = "Some utilities for template Haskell"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "template-hsml" = callPackage ( - { - mkDerivation, - base, - blaze-markup, - haskell-src-exts, - haskell-src-meta, - parsec, - QuickCheck, - template-haskell, - test-framework, - test-framework-quickcheck2, - }: - mkDerivation { - pname = "template-hsml"; - version = "0.2.0.3"; - sha256 = "1lnw1rhxj66zn34p8ca2dx98326l40w8kj6nrxxhff0v30myxa1g"; - libraryHaskellDepends = [ - base - blaze-markup - haskell-src-exts - haskell-src-meta - parsec - template-haskell - ]; - testHaskellDepends = [ - base - parsec - QuickCheck - test-framework - test-framework-quickcheck2 - ]; - description = "Haskell's Simple Markup Language"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "template-toolkit" = callPackage ( - { - mkDerivation, - aeson, - base, - binary, - bytestring, - containers, - directory, - hashtables, - mtl, - parsec, - pcre-utils, - regex-pcre-builtin, - scientific, - text, - time, - unordered-containers, - uri-encode, - }: - mkDerivation { - pname = "template-toolkit"; - version = "0.1.1.0"; - sha256 = "0nqsgfqj28d6qqc4639d8paqb8d9fw5kpijggbmxdnaqd64xc4p1"; - libraryHaskellDepends = [ - aeson - base - binary - bytestring - containers - directory - hashtables - mtl - parsec - pcre-utils - regex-pcre-builtin - scientific - text - time - unordered-containers - uri-encode - ]; - description = "Template Toolkit implementation for Haskell"; - license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "template-yj" = callPackage ( - { - mkDerivation, - base, - bytestring, - text, - }: - mkDerivation { - pname = "template-yj"; - version = "0.0.0.2"; - sha256 = "1vj856dcmnipzxkzs3y33sgkyldqirq8rz9mi6grllv6mqq6lgj2"; - libraryHaskellDepends = [ - base - bytestring - text - ]; - description = "Process template file"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "templateify" = callPackage ( - { - mkDerivation, - base, - mtl, - tagsoup, - uniplate, - }: - mkDerivation { - pname = "templateify"; - version = "0.1.0.1"; - sha256 = "08834bsb5v83336zfvp1rq9in8cckk23i4qgfjkcpnslpyjv7j0d"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - mtl - tagsoup - uniplate - ]; - description = "Make template from website"; - license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - mainProgram = "templateify"; - broken = true; - } - ) { }; - - "templatepg" = callPackage ( - { - mkDerivation, - base, - binary, - bytestring, - haskell-src-meta, - mtl, - network, - parsec, - regex-compat, - regex-posix, - template-haskell, - time, - utf8-string, - }: - mkDerivation { - pname = "templatepg"; - version = "0.2.8"; - sha256 = "1b0hfivx7lmb35s8b93vdrmjn2slh6ln6ns93cayjj1dl7f09pdx"; - libraryHaskellDepends = [ - base - binary - bytestring - haskell-src-meta - mtl - network - parsec - regex-compat - regex-posix - template-haskell - time - utf8-string - ]; - description = "A PostgreSQL access library with compile-time SQL type inference"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "templater" = callPackage ( { mkDerivation, @@ -661963,131 +383790,6 @@ self: { } ) { }; - "tempo" = callPackage ( - { - mkDerivation, - base, - base64-bytestring, - bytestring, - ConfigFile, - directory, - filepath, - http-conduit, - MissingH, - mtl, - process, - regex-posix, - resourcet, - split, - time, - }: - mkDerivation { - pname = "tempo"; - version = "0.1.0.0"; - sha256 = "0gcnk44vklqrykrj7n54a67bhgxcjpnjak6gp1sl61vsv8gn3krq"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - base64-bytestring - bytestring - ConfigFile - directory - filepath - http-conduit - mtl - process - regex-posix - resourcet - split - time - ]; - executableHaskellDepends = [ - base - MissingH - mtl - time - ]; - testHaskellDepends = [ base ]; - description = "Command-line tool to log time-tracking information into JIRA Tempo plugin"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "tempodb" = callPackage ( - { - mkDerivation, - aeson, - base, - blaze-builder, - bytestring, - containers, - HsOpenSSL, - HTTP, - http-streams, - io-streams, - mtl, - old-locale, - text, - time, - }: - mkDerivation { - pname = "tempodb"; - version = "0.2.2.5"; - sha256 = "00z02hl31ad497rvxjxx5khb20ql6irkgpdvsg5m7axq8bi3d5fl"; - libraryHaskellDepends = [ - aeson - base - blaze-builder - bytestring - containers - HsOpenSSL - HTTP - http-streams - io-streams - mtl - old-locale - text - time - ]; - description = "A small Haskell wrapper around the TempoDB api"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "temporal-csound" = callPackage ( - { - mkDerivation, - base, - csound-catalog, - csound-expression, - temporal-media, - temporal-music-notation, - temporal-music-notation-western, - }: - mkDerivation { - pname = "temporal-csound"; - version = "0.4.3.1"; - sha256 = "1c7difs3svrq1ka8bdf61vvg9b29baqd086l19a84f0734q5ph19"; - libraryHaskellDepends = [ - base - csound-catalog - csound-expression - temporal-media - temporal-music-notation - temporal-music-notation-western - ]; - description = "library to make electronic music, brings together temporal-music-notation and csound-expression packages"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "temporal-media" = callPackage ( { mkDerivation, @@ -662281,47 +383983,6 @@ self: { } ) { }; - "tempus" = callPackage ( - { - mkDerivation, - array, - base, - directory, - executable-path, - filepath, - happy, - haskeline, - mtl, - uniplate, - utf8-string, - }: - mkDerivation { - pname = "tempus"; - version = "0.1.0"; - sha256 = "0hv5b09vly9zakjfgi4bnjx503ny334dhg13g5ma85rp3dbsjvsn"; - isLibrary = false; - isExecutable = true; - enableSeparateDataOutput = true; - executableHaskellDepends = [ - array - base - directory - executable-path - filepath - haskeline - mtl - uniplate - utf8-string - ]; - executableToolDepends = [ happy ]; - description = "Interpreter for the FRP language Tempus"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "tempus"; - broken = true; - } - ) { }; - "tempus-fugit" = callPackage ( { mkDerivation, base }: mkDerivation { @@ -662492,300 +384153,6 @@ self: { } ) { }; - "tensor" = callPackage ( - { - mkDerivation, - base, - ghc-prim, - QuickCheck, - random, - vector, - }: - mkDerivation { - pname = "tensor"; - version = "0.3.0.1"; - sha256 = "03m612xvx3p44za0g291xir89lcgm4pk885lpy3wshp0987ij1nf"; - libraryHaskellDepends = [ - base - ghc-prim - random - vector - ]; - testHaskellDepends = [ - base - QuickCheck - random - ]; - description = "A completely type-safe library for linear algebra"; - license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "tensor-safe" = callPackage ( - { - mkDerivation, - base, - casing, - cmdargs, - containers, - extra, - formatting, - ghc-typelits-extra, - hint, - singletons, - text, - vector, - vector-sized, - }: - mkDerivation { - pname = "tensor-safe"; - version = "0.1.0.1"; - sha256 = "1b69k6mbhd0qbxjij44fgaw8xdnripr27x7xy106192cj7x3q9xf"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - casing - cmdargs - containers - extra - formatting - ghc-typelits-extra - hint - singletons - text - vector - vector-sized - ]; - executableHaskellDepends = [ - base - casing - cmdargs - containers - extra - formatting - ghc-typelits-extra - hint - singletons - text - vector - vector-sized - ]; - description = "Create valid deep neural network architectures"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "tensor-safe"; - broken = true; - } - ) { }; - - "tensorflow" = callPackage ( - { - mkDerivation, - async, - attoparsec, - base, - bytestring, - c2hs, - containers, - data-default, - exceptions, - fgl, - HUnit, - lens-family, - libtensorflow, - mainland-pretty, - mtl, - proto-lens, - semigroups, - split, - temporary, - tensorflow-proto, - test-framework, - test-framework-hunit, - test-framework-quickcheck2, - text, - transformers, - vector, - }: - mkDerivation { - pname = "tensorflow"; - version = "0.2.0.1"; - sha256 = "16qwr72yyan6gvcx771p7dhp8d7m47j3l8q4dq86ljjzi2c9pswi"; - libraryHaskellDepends = [ - async - attoparsec - base - bytestring - containers - data-default - exceptions - fgl - lens-family - mainland-pretty - mtl - proto-lens - semigroups - split - temporary - tensorflow-proto - text - transformers - vector - ]; - librarySystemDepends = [ libtensorflow ]; - libraryToolDepends = [ c2hs ]; - testHaskellDepends = [ - attoparsec - base - bytestring - HUnit - lens-family - proto-lens - tensorflow-proto - test-framework - test-framework-hunit - test-framework-quickcheck2 - ]; - description = "TensorFlow bindings"; - license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { inherit (pkgs) libtensorflow; }; - - "tensorflow-core-ops" = callPackage ( - { - mkDerivation, - base, - bytestring, - Cabal, - directory, - filepath, - lens-family, - mainland-pretty, - proto-lens, - tensorflow, - tensorflow-opgen, - text, - }: - mkDerivation { - pname = "tensorflow-core-ops"; - version = "0.2.0.1"; - sha256 = "1hdifal9bapc747c2w7bw2ai68sw0frhx4kvrjh0g8a19fqq95sa"; - setupHaskellDepends = [ - base - bytestring - Cabal - directory - filepath - mainland-pretty - proto-lens - tensorflow - tensorflow-opgen - text - ]; - libraryHaskellDepends = [ - base - bytestring - lens-family - proto-lens - tensorflow - text - ]; - description = "Haskell wrappers for Core Tensorflow Ops"; - license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "tensorflow-logging" = callPackage ( - { - mkDerivation, - base, - bytestring, - conduit, - data-default, - directory, - exceptions, - filepath, - hostname, - HUnit, - lens-family, - proto-lens, - resourcet, - stm, - stm-chans, - stm-conduit, - temporary, - tensorflow, - tensorflow-core-ops, - tensorflow-ops, - tensorflow-proto, - tensorflow-records-conduit, - test-framework, - test-framework-hunit, - text, - time, - transformers, - }: - mkDerivation { - pname = "tensorflow-logging"; - version = "0.2.0.1"; - sha256 = "14gj6ykfrnqhzi12k3l3pvaa892bakxx3hhml117vfzgcz736gcr"; - libraryHaskellDepends = [ - base - bytestring - conduit - data-default - directory - exceptions - filepath - hostname - lens-family - proto-lens - resourcet - stm - stm-chans - stm-conduit - tensorflow - tensorflow-core-ops - tensorflow-ops - tensorflow-proto - tensorflow-records-conduit - text - time - transformers - ]; - testHaskellDepends = [ - base - bytestring - conduit - data-default - directory - filepath - HUnit - lens-family - proto-lens - resourcet - temporary - tensorflow - tensorflow-proto - tensorflow-records-conduit - test-framework - test-framework-hunit - text - ]; - description = "TensorBoard related functionality"; - license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "tensorflow-mnist" = callPackage ( { mkDerivation, @@ -662908,87 +384275,6 @@ self: { } ) { }; - "tensorflow-ops" = callPackage ( - { - mkDerivation, - base, - bytestring, - containers, - criterion, - data-default, - deepseq, - fgl, - HUnit, - lens-family, - mtl, - proto-lens, - QuickCheck, - random, - temporary, - tensorflow, - tensorflow-core-ops, - tensorflow-proto, - tensorflow-test, - test-framework, - test-framework-hunit, - test-framework-quickcheck2, - text, - transformers, - vector, - }: - mkDerivation { - pname = "tensorflow-ops"; - version = "0.2.0.1"; - sha256 = "1v89yi2cm39aybhz4lvy2fqgpdslb1d0adxk9516f0xqz3k23ks6"; - libraryHaskellDepends = [ - base - bytestring - containers - data-default - fgl - lens-family - mtl - proto-lens - tensorflow - tensorflow-core-ops - tensorflow-proto - text - ]; - testHaskellDepends = [ - base - bytestring - data-default - HUnit - lens-family - proto-lens - QuickCheck - random - temporary - tensorflow - tensorflow-core-ops - tensorflow-proto - tensorflow-test - test-framework - test-framework-hunit - test-framework-quickcheck2 - transformers - vector - ]; - benchmarkHaskellDepends = [ - base - criterion - deepseq - tensorflow - transformers - vector - ]; - description = "Friendly layer around TensorFlow bindings"; - license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "tensorflow-proto" = callPackage ( { mkDerivation, @@ -663264,29 +384550,6 @@ self: { } ) { }; - "termbox-bindings" = callPackage ( - { - mkDerivation, - base, - c2hs, - }: - mkDerivation { - pname = "termbox-bindings"; - version = "0.1.0.5"; - sha256 = "0hv72kkpx6narykfbf6m59gq4l8gym6fm52n1zzazac1802zw0dv"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base ]; - libraryToolDepends = [ c2hs ]; - executableHaskellDepends = [ base ]; - description = "Bindings to the Termbox library"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "example"; - broken = true; - } - ) { }; - "termbox-bindings-c" = callPackage ( { mkDerivation, base }: mkDerivation { @@ -663478,77 +384741,26 @@ self: { ]; testHaskellDepends = [ base - QuickCheck - time - ]; - description = "Simple terminal-based time tracker"; - license = lib.licenses.bsd3; - mainProgram = "punch"; - } - ) { }; - - "terminal-size" = callPackage ( - { mkDerivation, base }: - mkDerivation { - pname = "terminal-size"; - version = "0.3.4"; - sha256 = "0jbznrlf95lc6ajhh26h1qgcmbr3bj753i8jlkrsrnkcjbb71w5h"; - revision = "1"; - editedCabalFile = "0w2pjmravr1fnvmrcnj13dxrf43miqypmh0fhrz1g1pb1qrg3mr1"; - libraryHaskellDepends = [ base ]; - description = "Get terminal window height and width"; - license = lib.licenses.bsd3; - } - ) { }; - - "terminal-text" = callPackage ( - { - mkDerivation, - ansi-terminal, - base, - container, - layered-state, - prologue, - text, - }: - mkDerivation { - pname = "terminal-text"; - version = "1.1.2"; - sha256 = "1cfxkx3mfjxw8fh3gw4wqk5wwf10hi1aldhn6xc75mwfa6x7djjq"; - libraryHaskellDepends = [ - ansi-terminal - base - container - layered-state - prologue - text + QuickCheck + time ]; - description = "Text data type for styled terminal output, including all standard ANSI effects (bold, italic, blinking) and ANSI / 256 / truecolor colors support for Unix and Windows (whenever possible)"; - license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; + description = "Simple terminal-based time tracker"; + license = lib.licenses.bsd3; + mainProgram = "punch"; } ) { }; - "termination-combinators" = callPackage ( - { - mkDerivation, - base, - containers, - contravariant, - }: + "terminal-size" = callPackage ( + { mkDerivation, base }: mkDerivation { - pname = "termination-combinators"; - version = "0.1"; - sha256 = "1k32s5vzkxnsawj8vdscyfc96hk0s97zpj1mgw1hk93hwcrxn9wh"; - libraryHaskellDepends = [ - base - containers - contravariant - ]; - description = "Termination combinators for forcing non-terminating algorithms to terminate"; + pname = "terminal-size"; + version = "0.3.4"; + sha256 = "0jbznrlf95lc6ajhh26h1qgcmbr3bj753i8jlkrsrnkcjbb71w5h"; + revision = "1"; + editedCabalFile = "0w2pjmravr1fnvmrcnj13dxrf43miqypmh0fhrz1g1pb1qrg3mr1"; + libraryHaskellDepends = [ base ]; + description = "Get terminal window height and width"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; } ) { }; @@ -663719,76 +384931,6 @@ self: { inherit (pkgs) vte; }; - "termplot" = callPackage ( - { - mkDerivation, - base, - brick, - data-default, - optparse-applicative, - process, - split, - time-units, - transformers, - unix, - vty, - }: - mkDerivation { - pname = "termplot"; - version = "0.1.0.0"; - sha256 = "0r3k38j8drwfwdsjlpjcb7cwcqwb90zdzh6ys7xpq537622kfjf8"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - brick - data-default - optparse-applicative - process - split - time-units - transformers - unix - vty - ]; - description = "Plot time series in your terminal using commands stdout"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - mainProgram = "termplot"; - broken = true; - } - ) { }; - - "terntup" = callPackage ( - { - mkDerivation, - base, - HUnit, - QuickCheck, - test-framework, - test-framework-hunit, - test-framework-quickcheck2, - }: - mkDerivation { - pname = "terntup"; - version = "0.0.1"; - sha256 = "1xrzx6xk47h4yacgqm0j2gw54nhj8lbs6w866ql6dxfcsiylrfzz"; - libraryHaskellDepends = [ base ]; - testHaskellDepends = [ - base - HUnit - QuickCheck - test-framework - test-framework-hunit - test-framework-quickcheck2 - ]; - description = "a ternary library"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "terraform-http-backend-pass" = callPackage ( { mkDerivation, @@ -663832,81 +384974,6 @@ self: { } ) { }; - "terrahs" = - callPackage - ( - { - mkDerivation, - base, - haskell98, - old-time, - terralib4c, - translib, - }: - mkDerivation { - pname = "terrahs"; - version = "0.9"; - sha256 = "0gciz8nvn7x1lclzihvwy8v1c53p6frb1q32ckpmsqw7xiasqlhb"; - libraryHaskellDepends = [ - base - haskell98 - old-time - ]; - librarySystemDepends = [ - terralib4c - translib - ]; - description = "A Haskell GIS Programming Environment"; - license = "GPL"; - hydraPlatforms = lib.platforms.none; - } - ) - { - terralib4c = null; - translib = null; - }; - - "tersmu" = callPackage ( - { - mkDerivation, - base, - containers, - mtl, - process, - syb, - transformers, - }: - mkDerivation { - pname = "tersmu"; - version = "0.2.2"; - sha256 = "1wyrbggpgr6jyskvvkh12g6a440md1aqj405cxqhdmy0bzwz5cfn"; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base - containers - mtl - process - syb - transformers - ]; - executableHaskellDepends = [ - base - containers - mtl - process - syb - transformers - ]; - description = "A semantic parser for lojban"; - license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - mainProgram = "tersmu"; - broken = true; - } - ) { }; - "tesla" = callPackage ( { mkDerivation, @@ -664049,51 +385116,6 @@ self: { } ) { }; - "test-fixture" = callPackage ( - { - mkDerivation, - base, - data-default-class, - exceptions, - haskell-src-exts, - haskell-src-meta, - hspec, - hspec-discover, - mtl, - template-haskell, - th-orphans, - transformers, - }: - mkDerivation { - pname = "test-fixture"; - version = "0.5.1.0"; - sha256 = "1mjy7nx2w7gvsibvc5vl21hr8ypxd4qdiy46iagnfij1k3kdh6wv"; - libraryHaskellDepends = [ - base - data-default-class - exceptions - haskell-src-exts - haskell-src-meta - mtl - template-haskell - th-orphans - ]; - testHaskellDepends = [ - base - hspec - hspec-discover - mtl - template-haskell - transformers - ]; - testToolDepends = [ hspec-discover ]; - description = "Test monadic side-effects"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "test-framework" = callPackage ( { mkDerivation, @@ -664151,66 +385173,6 @@ self: { } ) { }; - "test-framework-doctest" = callPackage ( - { - mkDerivation, - base, - doctest, - test-framework, - test-framework-hunit, - }: - mkDerivation { - pname = "test-framework-doctest"; - version = "0.2.1.2"; - sha256 = "01k0kcsbc41zaric5zgnhfnrp9dd19brv4d3p22vly7a7bmn6n0q"; - libraryHaskellDepends = [ - base - doctest - test-framework - test-framework-hunit - ]; - testHaskellDepends = [ - base - test-framework - ]; - description = "Test.Framework wrapper for DocTest"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "test-framework-golden" = callPackage ( - { - mkDerivation, - base, - bytestring, - filepath, - mtl, - process, - temporary, - test-framework, - }: - mkDerivation { - pname = "test-framework-golden"; - version = "1.1.3.3"; - sha256 = "1sfgr91zn7iwgj1p1s3298mswv29rbxz4x4086r8mav7prd0ww36"; - libraryHaskellDepends = [ - base - bytestring - filepath - mtl - process - temporary - test-framework - ]; - description = "Golden tests support for test-framework"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "test-framework-hunit" = callPackage ( { mkDerivation, @@ -664285,35 +385247,6 @@ self: { } ) { }; - "test-framework-quickcheck" = callPackage ( - { - mkDerivation, - base, - deepseq, - extensible-exceptions, - QuickCheck, - random, - test-framework, - }: - mkDerivation { - pname = "test-framework-quickcheck"; - version = "0.3.0"; - sha256 = "0g8sh3x3mhns03svccgbdbw8crzpzmahp1hr1fs6ag66fqr8p9mv"; - libraryHaskellDepends = [ - base - deepseq - extensible-exceptions - QuickCheck - random - test-framework - ]; - description = "QuickCheck support for the test-framework package"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "test-framework-quickcheck2" = callPackage ( { mkDerivation, @@ -664381,43 +385314,6 @@ self: { } ) { }; - "test-framework-skip" = callPackage ( - { - mkDerivation, - base, - HUnit, - QuickCheck, - smallcheck, - test-framework, - test-framework-hunit, - test-framework-quickcheck2, - test-framework-smallcheck, - }: - mkDerivation { - pname = "test-framework-skip"; - version = "1.0"; - sha256 = "1avs36j6a846a3qiy0f23qnld1swgpngidb3098dcib2rbw4p3n9"; - libraryHaskellDepends = [ - base - test-framework - ]; - testHaskellDepends = [ - base - HUnit - QuickCheck - smallcheck - test-framework - test-framework-hunit - test-framework-quickcheck2 - test-framework-smallcheck - ]; - description = "Functions for conveniently marking some of the tests in a suite as being skipped"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "test-framework-smallcheck" = callPackage ( { mkDerivation, @@ -664441,34 +385337,6 @@ self: { } ) { }; - "test-framework-testing-feat" = callPackage ( - { - mkDerivation, - base, - test-framework, - testing-feat, - }: - mkDerivation { - pname = "test-framework-testing-feat"; - version = "0.1.0.1"; - sha256 = "0pf07psqc4ihg0wrqqm127hd9qjbllmqw9lzf1ridg6r3xs63994"; - libraryHaskellDepends = [ - base - test-framework - testing-feat - ]; - testHaskellDepends = [ - base - test-framework - testing-feat - ]; - description = "A test framework provider for testing-feat"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "test-framework-th" = callPackage ( { mkDerivation, @@ -664727,20 +385595,6 @@ self: { } ) { }; - "test-pkg" = callPackage ( - { mkDerivation, base }: - mkDerivation { - pname = "test-pkg"; - version = "0.3.0.0"; - sha256 = "0fncybd3sxrbnrd4l1hri18rhfg9h0fm3k4305iwh4l65fbwg2n8"; - libraryHaskellDepends = [ base ]; - description = "Just tests Hackage"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "test-sandbox" = callPackage ( { mkDerivation, @@ -664832,105 +385686,6 @@ self: { } ) { }; - "test-sandbox-compose" = callPackage ( - { - mkDerivation, - aeson, - base, - bytestring, - cabal-test-bin, - containers, - directory, - hastache, - hspec, - hspec-test-sandbox, - http-conduit, - lifted-base, - network, - optparse-applicative, - process, - shakespeare, - shelly, - test-sandbox, - text, - unix, - wai, - wai-extra, - warp, - yaml, - yesod, - yesod-core, - }: - mkDerivation { - pname = "test-sandbox-compose"; - version = "0.1.3"; - sha256 = "1yqh5b3gzmwqf0wj491pmkvbn9jzpg36bh427vkl1w6yj5c4ha7x"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson - base - bytestring - containers - directory - hastache - http-conduit - lifted-base - network - process - shelly - test-sandbox - text - unix - wai - wai-extra - warp - yaml - yesod - yesod-core - ]; - executableHaskellDepends = [ - aeson - base - bytestring - containers - directory - hastache - http-conduit - lifted-base - network - optparse-applicative - process - shelly - test-sandbox - text - unix - wai - wai-extra - warp - yaml - yesod - yesod-core - ]; - testHaskellDepends = [ - base - bytestring - cabal-test-bin - hspec - hspec-test-sandbox - process - shakespeare - test-sandbox - text - unix - ]; - description = "Lightweight development enviroments using test-sandbox"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "test-sandbox-compose"; - } - ) { }; - "test-sandbox-hunit" = callPackage ( { mkDerivation, @@ -664981,172 +385736,6 @@ self: { } ) { }; - "test-shouldbe" = callPackage ( - { - mkDerivation, - base, - hspec, - hspec-discover, - HUnit, - silently, - }: - mkDerivation { - pname = "test-shouldbe"; - version = "0.2.1.1"; - sha256 = "0wagfhljym2mnwpxld8dcf4qcdbp3d9liyf9mcigd4kiy5sdhfx4"; - libraryHaskellDepends = [ - base - HUnit - ]; - testHaskellDepends = [ - base - hspec - hspec-discover - silently - ]; - testToolDepends = [ hspec-discover ]; - description = "Catchy combinators for HUnit"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "test-simple" = callPackage ( - { - mkDerivation, - base, - executable-path, - mtl, - process, - QuickCheck, - state-plus, - template-haskell, - }: - mkDerivation { - pname = "test-simple"; - version = "0.1.9"; - sha256 = "07gmdrpvl05zvlwxdc7zx1fwlq678w1vikx0jw6gwwkjk6zpkvpa"; - libraryHaskellDepends = [ - base - mtl - QuickCheck - state-plus - template-haskell - ]; - testHaskellDepends = [ - base - executable-path - mtl - process - QuickCheck - ]; - description = "Simple Perl inspired testing"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "testCom" = callPackage ( - { - mkDerivation, - base, - haskell-src-meta, - random, - template-haskell, - }: - mkDerivation { - pname = "testCom"; - version = "0.3.0"; - sha256 = "0j9mh47jq6igh5xkalgbrvjrvjsnyl7ir6jq7kr9rhh7rab4m7h1"; - libraryHaskellDepends = [ - base - haskell-src-meta - random - template-haskell - ]; - testHaskellDepends = [ - base - haskell-src-meta - random - template-haskell - ]; - description = "Write your tests in comments"; - license = "GPL"; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "testPkg" = callPackage ( - { mkDerivation, base }: - mkDerivation { - pname = "testPkg"; - version = "0.0"; - sha256 = "0lppzyh0qxqry8a2d1yqrin51kizw2hl937pxg2a6pi34grlhdd0"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ base ]; - description = "Small test package"; - license = "unknown"; - hydraPlatforms = lib.platforms.none; - mainProgram = "testPkg"; - broken = true; - } - ) { }; - - "testbench" = callPackage ( - { - mkDerivation, - base, - bytestring, - cassava, - criterion, - criterion-measurement, - deepseq, - dlist, - HUnit, - optparse-applicative, - process, - statistics, - streaming, - streaming-cassava, - streaming-with, - temporary, - transformers, - weigh, - }: - mkDerivation { - pname = "testbench"; - version = "0.2.1.3"; - sha256 = "1fx4r8z87rv3kg5xznrvgv7drsvn82zapxzmiv5440r4gbqw5y0b"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - bytestring - cassava - criterion - criterion-measurement - deepseq - dlist - HUnit - optparse-applicative - process - statistics - streaming - streaming-cassava - streaming-with - temporary - transformers - weigh - ]; - description = "Create tests and benchmarks together"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "testcontainers" = callPackage ( { mkDerivation, @@ -665315,132 +385904,6 @@ self: { } ) { }; - "testloop" = callPackage ( - { - mkDerivation, - base, - Cabal, - directory, - filepath, - fsnotify, - hint, - mtl, - system-filepath, - time, - unix, - }: - mkDerivation { - pname = "testloop"; - version = "0.1.1.0"; - sha256 = "1bygfdcnd0y60jhyp34zkss2cxr3s2jq6ysxm0w9c4vhl361ib7z"; - revision = "2"; - editedCabalFile = "17ia4pxkrbpm26sdw29jp8gggzv4vdag7dwag5b3w0lgy4rkzxnb"; - libraryHaskellDepends = [ - base - Cabal - directory - filepath - fsnotify - hint - mtl - system-filepath - time - unix - ]; - description = "Quick feedback loop for test suites"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "testpack" = callPackage ( - { - mkDerivation, - base, - containers, - HUnit, - mtl, - QuickCheck, - random, - }: - mkDerivation { - pname = "testpack"; - version = "2.1.3.0"; - sha256 = "1rq5d64d7j3gpgbfxmfr4xmzizjy0ricw5ghrakv8gzvxmi2bn4p"; - revision = "1"; - editedCabalFile = "0fdgxw04gx1ai31bk0cyck9qfqpn10yfgjaazc15r2ngjpbbqqy7"; - libraryHaskellDepends = [ - base - containers - HUnit - mtl - QuickCheck - random - ]; - description = "Test Utililty Pack for HUnit and QuickCheck (unmaintained)"; - license = "LGPL"; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "testpattern" = callPackage ( - { - mkDerivation, - base, - filepath, - gtk, - }: - mkDerivation { - pname = "testpattern"; - version = "0.1"; - sha256 = "0a0kw5546z5jydk6dq2p16p2kpwv7fnmy1m907m3x6n580i1vh3l"; - isLibrary = false; - isExecutable = true; - enableSeparateDataOutput = true; - executableHaskellDepends = [ - base - filepath - gtk - ]; - description = "Display a monitor test pattern"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "testpattern"; - broken = true; - } - ) { }; - - "testrunner" = callPackage ( - { - mkDerivation, - base, - HUnit, - QuickCheck, - random, - regex-compat, - stm, - }: - mkDerivation { - pname = "testrunner"; - version = "0.9.1"; - sha256 = "1887g3wn5mnlbxj4vbzv0zm3gwaj9ycr9sk7hy27qbb2x7c30iaw"; - libraryHaskellDepends = [ - base - HUnit - QuickCheck - random - regex-compat - stm - ]; - description = "Easy unit test driver framework"; - license = "GPL"; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "tetris" = callPackage ( { mkDerivation, @@ -665466,131 +385929,6 @@ self: { } ) { }; - "tex-join-bib" = callPackage ( - { - mkDerivation, - async, - base, - containers, - foldl, - optparse-generic, - system-filepath, - text, - turtle, - }: - mkDerivation { - pname = "tex-join-bib"; - version = "0.1.0.0"; - sha256 = "1dlks58g9jfkcsdlcjyqw8rh27j1c66crb39s53ar7w6p08invk1"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - async - base - containers - foldl - system-filepath - text - turtle - ]; - executableHaskellDepends = [ - base - optparse-generic - system-filepath - text - ]; - description = "Compile separate tex files with the same bibliography"; - license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - mainProgram = "tex-join-bib"; - broken = true; - } - ) { }; - - "tex2txt" = callPackage ( - { - mkDerivation, - base, - containers, - deepseq, - parsec, - }: - mkDerivation { - pname = "tex2txt"; - version = "0.1.0.0"; - sha256 = "1q41kphll7xhbccwyvlsvk5vxisig23ipmcqf7v9qc3rx1hb0p0w"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - containers - deepseq - parsec - ]; - executableHaskellDepends = [ - base - containers - deepseq - parsec - ]; - description = "LaTeX to plain-text conversion"; - license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - mainProgram = "tex2txt"; - broken = true; - } - ) { }; - - "texbuilder" = callPackage ( - { - mkDerivation, - ansi-wl-pprint, - base, - bytestring, - containers, - cryptonite, - deepseq, - directory, - extra, - filepath, - hinotify, - mtl, - optparse-applicative, - process, - temporary, - unix, - }: - mkDerivation { - pname = "texbuilder"; - version = "0.1.4.1"; - sha256 = "0d8fwnrqlfjcls229iiq6x4v1a4yxm5qfsyymbqf6xwj8mcmqhb6"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - ansi-wl-pprint - base - bytestring - containers - cryptonite - deepseq - directory - extra - filepath - hinotify - mtl - optparse-applicative - process - temporary - unix - ]; - description = "View your latex output while editing"; - license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - mainProgram = "texbuilder"; - broken = true; - } - ) { }; - "texmath" = callPackage ( { mkDerivation, @@ -665823,64 +386161,6 @@ self: { } ) { }; - "text-all" = callPackage ( - { - mkDerivation, - base, - bytestring, - text, - text-format, - utf8-string, - }: - mkDerivation { - pname = "text-all"; - version = "0.4.2"; - sha256 = "0mh2dwd0b732jcg2bak04iwrb34cy28hq2dppb8pp5r5a0g4925g"; - libraryHaskellDepends = [ - base - bytestring - text - text-format - utf8-string - ]; - description = "Everything Data.Text related in one package"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "text-and-plots" = callPackage ( - { - mkDerivation, - base, - blaze-html, - bytestring, - containers, - markdown, - text, - unordered-containers, - }: - mkDerivation { - pname = "text-and-plots"; - version = "0.2.1.0"; - sha256 = "0fjwjdr6pbqfzlyi75apfclsq07qld4yj4h574pgyc22lnk2z9z8"; - libraryHaskellDepends = [ - base - blaze-html - bytestring - containers - markdown - text - unordered-containers - ]; - description = "EDSL to create HTML documents with plots based on the C3.js library."; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "text-ansi" = callPackage ( { mkDerivation, @@ -666332,57 +386612,6 @@ self: { } ) { }; - "text-containers" = callPackage ( - { - mkDerivation, - base, - bytestring, - containers, - deepseq, - ghc-prim, - hashable, - QuickCheck, - quickcheck-instances, - tasty, - tasty-quickcheck, - text, - text-short, - vector, - }: - mkDerivation { - pname = "text-containers"; - version = "0.1.0.0"; - sha256 = "0dsaqzh2hy6w9mzpsk22vmgmhx54l12il21n49f9g3cbr9kc9cv1"; - revision = "2"; - editedCabalFile = "0qssaccfhhk60855dy8ykrih3a597gqa9b88dxay6p5faxq9gczx"; - libraryHaskellDepends = [ - base - bytestring - containers - deepseq - ghc-prim - hashable - text-short - ]; - testHaskellDepends = [ - base - bytestring - containers - QuickCheck - quickcheck-instances - tasty - tasty-quickcheck - text - text-short - vector - ]; - description = "Memory-efficient string-indexed container types"; - license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "text-conversions" = callPackage ( { mkDerivation, @@ -666607,51 +386836,6 @@ self: { } ) { }; - "text-format-heavy" = callPackage ( - { - mkDerivation, - base, - bytestring, - containers, - data-default, - hspec, - labels, - parsec, - template-haskell, - text, - th-lift, - th-lift-instances, - time, - }: - mkDerivation { - pname = "text-format-heavy"; - version = "0.1.5.3"; - sha256 = "00fz6s190jpqffx2i89rbmmc7959gh70bk3w8wcflcxkzcmf3wiv"; - libraryHaskellDepends = [ - base - bytestring - containers - data-default - labels - parsec - template-haskell - text - th-lift - th-lift-instances - time - ]; - testHaskellDepends = [ - base - hspec - time - ]; - description = "Full-weight string formatting library, analog of Python's string.format"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "text-format-simple" = callPackage ( { mkDerivation, @@ -666671,64 +386855,6 @@ self: { } ) { }; - "text-generic-pretty" = callPackage ( - { - mkDerivation, - base, - containers, - ghc-prim, - groom, - ixset-typed, - protolude, - QuickCheck, - string-conversions, - tasty, - tasty-hunit, - tasty-quickcheck, - text, - time, - unordered-containers, - wl-pprint-text, - }: - mkDerivation { - pname = "text-generic-pretty"; - version = "1.2.1"; - sha256 = "1isj8wccd0yrgpmlggd2zykb8d9r77blngsqlbwmqs9gxbyk3wyg"; - revision = "1"; - editedCabalFile = "1m512nd5w4z6f12qy10bpjqfmpwkm5wg0kdrvvzc45s4dxmzwbxz"; - libraryHaskellDepends = [ - base - containers - ghc-prim - groom - ixset-typed - protolude - QuickCheck - string-conversions - text - time - unordered-containers - wl-pprint-text - ]; - testHaskellDepends = [ - base - containers - protolude - QuickCheck - string-conversions - tasty - tasty-hunit - tasty-quickcheck - time - unordered-containers - ]; - description = "A generic, derivable, haskell pretty printer"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "text-icu" = callPackage ( { mkDerivation, @@ -666783,99 +386909,6 @@ self: { } ) { inherit (pkgs) icu; }; - "text-icu-normalized" = callPackage ( - { - mkDerivation, - base, - base-unicode-symbols, - bytestring, - containers, - exceptions, - filepath, - HUnit, - lens, - parsec, - QuickCheck, - test-framework, - test-framework-hunit, - test-framework-quickcheck2, - test-framework-th, - text, - text-icu, - }: - mkDerivation { - pname = "text-icu-normalized"; - version = "0.4.1"; - sha256 = "0nwma8yvfkmy0zzl3kb9xwmpp3z74aj33mdp7kr036baqvxini04"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base - base-unicode-symbols - bytestring - lens - text - text-icu - ]; - testHaskellDepends = [ - base - base-unicode-symbols - bytestring - containers - exceptions - filepath - HUnit - lens - parsec - QuickCheck - test-framework - test-framework-hunit - test-framework-quickcheck2 - test-framework-th - text - text-icu - ]; - description = "Dealing with Strict Text in NFC normalization"; - license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "text-icu-translit" = callPackage ( - { - mkDerivation, - base, - icu, - QuickCheck, - test-framework, - test-framework-quickcheck2, - text, - text-icu, - }: - mkDerivation { - pname = "text-icu-translit"; - version = "0.1.0.7"; - sha256 = "1qfmkydayqj1knlvfs1l6nq42a4y81k5z2g87lvzafrylyjjd002"; - libraryHaskellDepends = [ - base - text - ]; - librarySystemDepends = [ icu ]; - testHaskellDepends = [ - base - QuickCheck - test-framework - test-framework-quickcheck2 - text - text-icu - ]; - description = "ICU transliteration"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { inherit (pkgs) icu; }; - "text-iso8601" = callPackage ( { mkDerivation, @@ -666929,34 +386962,6 @@ self: { } ) { }; - "text-json-qq" = callPackage ( - { - mkDerivation, - base, - haskell-src-meta, - json, - json-qq, - parsec, - template-haskell, - }: - mkDerivation { - pname = "text-json-qq"; - version = "0.4.1"; - sha256 = "137m593yz5gl6jj7mi1f9kjsgi1np4n6707aqp94iw0qzxj8hdhg"; - libraryHaskellDepends = [ - base - haskell-src-meta - json - json-qq - parsec - template-haskell - ]; - description = "Json Quasiquatation for Haskell"; - license = "unknown"; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "text-latin1" = callPackage ( { mkDerivation, @@ -667030,37 +387035,6 @@ self: { } ) { }; - "text-lens" = callPackage ( - { - mkDerivation, - base, - extra, - hspec, - lens, - text, - }: - mkDerivation { - pname = "text-lens"; - version = "0.1.1"; - sha256 = "1n3h33g2yqwn4am9r693qs1wwg2ar9074zfmc535xa5yyjk64afi"; - libraryHaskellDepends = [ - base - extra - lens - text - ]; - testHaskellDepends = [ - base - hspec - lens - ]; - description = "Lenses for operating over text"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "text-lips" = callPackage ( { mkDerivation, @@ -667107,30 +387081,6 @@ self: { } ) { }; - "text-locale-encoding" = callPackage ( - { - mkDerivation, - base, - bytestring, - bytestring-handle, - text, - }: - mkDerivation { - pname = "text-locale-encoding"; - version = "0.1.0.2"; - sha256 = "1ls41s45qwrmmac8k1gryvxbhhczqy2wanwanw48m7xnbv52p9fg"; - libraryHaskellDepends = [ - base - bytestring - bytestring-handle - text - ]; - description = "Encode and decode Text to/from ByteString using TextEncoding"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "text-manipulate" = callPackage ( { mkDerivation, @@ -667164,42 +387114,6 @@ self: { } ) { }; - "text-markup" = callPackage ( - { - mkDerivation, - base, - containers, - QuickCheck, - quickcheck-text, - tasty, - tasty-quickcheck, - text, - }: - mkDerivation { - pname = "text-markup"; - version = "0.1"; - sha256 = "1nn0h61cvaydawrc4d0bizyqnssbhmgvsb0s59fvxcwk9zlw10xh"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base - containers - text - ]; - testHaskellDepends = [ - base - QuickCheck - quickcheck-text - tasty - tasty-quickcheck - text - ]; - description = "A data structure for mapping metadata to text subsequences"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "text-metrics_0_3_2" = callPackage ( { mkDerivation, @@ -667313,146 +387227,6 @@ self: { } ) { }; - "text-normal" = callPackage ( - { - mkDerivation, - base, - deepseq, - hspec, - QuickCheck, - quickcheck-instances, - text, - text-icu, - }: - mkDerivation { - pname = "text-normal"; - version = "0.2.1.0"; - sha256 = "10cxvn450q2fdjxly72m20x2yikkvwx3dvyqs7b992c2dr1zc1iv"; - libraryHaskellDepends = [ - base - deepseq - text - text-icu - ]; - testHaskellDepends = [ - base - hspec - QuickCheck - quickcheck-instances - ]; - description = "Unicode-normalized text"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "text-offset" = callPackage ( - { - mkDerivation, - base, - bytestring, - HUnit, - QuickCheck, - test-framework, - test-framework-hunit, - test-framework-quickcheck2, - text, - vector, - }: - mkDerivation { - pname = "text-offset"; - version = "0.1.0.0"; - sha256 = "0milfq5nnz4ar5ka3yvcf2vxh9cw5p272j7q8ysaf6vajbax4bq0"; - libraryHaskellDepends = [ - base - text - vector - ]; - testHaskellDepends = [ - base - bytestring - HUnit - QuickCheck - test-framework - test-framework-hunit - test-framework-quickcheck2 - text - ]; - description = "Library for converting between line/column and byte offset"; - license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "text-plus" = callPackage ( - { - mkDerivation, - base, - bytestring, - doctest, - HTF, - pretty, - QuickCheck, - strict-data, - text, - util-plus, - }: - mkDerivation { - pname = "text-plus"; - version = "0.1.0.1"; - sha256 = "1i93dk0i7zn81iw0q6g8ygr0bxwil09826mx1kw544n153yw9g7x"; - libraryHaskellDepends = [ - base - bytestring - pretty - QuickCheck - strict-data - text - util-plus - ]; - testHaskellDepends = [ - base - doctest - HTF - text - ]; - description = "Utils for text"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "text-position" = callPackage ( - { - mkDerivation, - base, - QuickCheck, - regex-applicative, - }: - mkDerivation { - pname = "text-position"; - version = "0.1.0.0"; - sha256 = "0cdi5kwpwvzmadhgkgnwax4jhllm6gjrsg1y3f3fp12x28nml1g8"; - revision = "2"; - editedCabalFile = "1qy82sjkl92scmb2x3k662jq41plkbf8mb7b6r9p13rzbwkpbba7"; - libraryHaskellDepends = [ - base - regex-applicative - ]; - testHaskellDepends = [ - base - QuickCheck - regex-applicative - ]; - description = "Handling positions in text and position-tagging it"; - license = lib.licenses.publicDomain; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "text-postgresql" = callPackage ( { mkDerivation, @@ -667590,58 +387364,6 @@ self: { } ) { }; - "text-register-machine" = callPackage ( - { - mkDerivation, - base, - containers, - mtl, - vector, - }: - mkDerivation { - pname = "text-register-machine"; - version = "0.4.0"; - sha256 = "0g0iihfin5vjfk69r7jjw4vs3l1k3f0kkg3bbc4xqm274vd72bph"; - libraryHaskellDepends = [ - base - containers - mtl - vector - ]; - description = "A Haskell implementation of the 1# Text Register Machine"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "text-render" = callPackage ( - { - mkDerivation, - base, - classy-prelude, - mtl, - parsec, - text, - }: - mkDerivation { - pname = "text-render"; - version = "0.1.0.3"; - sha256 = "1p78xsr25qxmfgsl73lzfn7j32ni897667k48448fkihdsg0a15g"; - libraryHaskellDepends = [ - base - classy-prelude - mtl - parsec - text - ]; - description = "A type class for rendering objects as text, pretty-printing, etc"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "text-replace" = callPackage ( { mkDerivation, @@ -667999,47 +387721,6 @@ self: { } ) { }; - "text-stream-decode" = callPackage ( - { - mkDerivation, - base, - bytestring, - criterion, - deepseq, - hspec, - text, - }: - mkDerivation { - pname = "text-stream-decode"; - version = "0.1.0.5"; - sha256 = "1s2lncs5k8rswg1bpf4vz5p1maj46bsgf7ar4lzcla9bf3f4bppy"; - revision = "1"; - editedCabalFile = "1zg9f7dpamgzabvvgsbw0i8931f4pa2q74g2dj5bvk5307s8zsnl"; - libraryHaskellDepends = [ - base - bytestring - text - ]; - testHaskellDepends = [ - base - bytestring - deepseq - hspec - text - ]; - benchmarkHaskellDepends = [ - base - bytestring - criterion - text - ]; - description = "Streaming decoding functions for UTF encodings. (deprecated)"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "text-time" = callPackage ( { mkDerivation, @@ -668078,142 +387759,6 @@ self: { } ) { }; - "text-trie" = callPackage ( - { - mkDerivation, - base, - binary, - bytestring, - bytestring-trie, - HUnit, - microbench, - QuickCheck, - silently, - smallcheck, - text, - }: - mkDerivation { - pname = "text-trie"; - version = "0.2.5.0"; - sha256 = "00i92zlhcn31ll163alm1s1j3f6bkc80nhz3vpqcivjdg7cwy5nj"; - libraryHaskellDepends = [ - base - binary - text - ]; - testHaskellDepends = [ - base - binary - bytestring - bytestring-trie - HUnit - microbench - QuickCheck - silently - smallcheck - text - ]; - description = "An efficient finite map from Text to values, based on bytestring-trie"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "text-utf7" = callPackage ( - { - mkDerivation, - base, - bytestring, - quickcheck-instances, - tasty, - tasty-hunit, - tasty-quickcheck, - text, - }: - mkDerivation { - pname = "text-utf7"; - version = "0.1.0.0"; - sha256 = "0kcbw9gb8mwvc4p10m0g5gplgi38qlnnc0plaw22l1qdkx0k8ilv"; - libraryHaskellDepends = [ - base - bytestring - text - ]; - testHaskellDepends = [ - base - bytestring - quickcheck-instances - tasty - tasty-hunit - tasty-quickcheck - text - ]; - description = "UTF-7 encoding/decoding for Data.Text"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "text-utf8" = callPackage ( - { - mkDerivation, - array, - base, - binary, - bytestring, - deepseq, - directory, - ghc-prim, - HUnit, - integer-gmp, - QuickCheck, - quickcheck-unicode, - random, - test-framework, - test-framework-hunit, - test-framework-quickcheck2, - }: - mkDerivation { - pname = "text-utf8"; - version = "1.2.3.0"; - sha256 = "17xgi57wnjq06k0zllyj0k7jqfxridhczc1dzrg65vdrmzf8x31a"; - revision = "1"; - editedCabalFile = "05h8y5zw48w4sjmqxwn5vc1l7sh4kg3l4bbg0daac8bgjbdiz4jw"; - libraryHaskellDepends = [ - array - base - binary - bytestring - deepseq - ghc-prim - integer-gmp - ]; - testHaskellDepends = [ - array - base - binary - bytestring - deepseq - directory - ghc-prim - HUnit - integer-gmp - QuickCheck - quickcheck-unicode - random - test-framework - test-framework-hunit - test-framework-quickcheck2 - ]; - description = "An efficient packed UTF-8 backed Unicode text type"; - license = lib.licenses.bsd2; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "text-utils" = callPackage ( { mkDerivation, @@ -668239,67 +387784,6 @@ self: { } ) { }; - "text-xml-generic" = callPackage ( - { - mkDerivation, - base, - bytestring, - containers, - haskell98, - mtl, - not-in-base, - split, - syb, - template-haskell, - xml, - }: - mkDerivation { - pname = "text-xml-generic"; - version = "0.1.1"; - sha256 = "1w3gqv94yj1j71qhs1s6sxnxax8ahxwsz7brv0w79sg3r9akl31h"; - libraryHaskellDepends = [ - base - bytestring - containers - haskell98 - mtl - not-in-base - split - syb - template-haskell - xml - ]; - description = "Serialize Data to XML (strings)"; - license = "unknown"; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "text-xml-qq" = callPackage ( - { - mkDerivation, - base, - parsec, - template-haskell, - xml, - }: - mkDerivation { - pname = "text-xml-qq"; - version = "0.1"; - sha256 = "0311in43n89bk1fg4y9qglvbbl47ygvcvr0f7zpr8bpaqbb1ard5"; - libraryHaskellDepends = [ - base - parsec - template-haskell - xml - ]; - description = "Quasiquoter for xml. XML DSL in Haskell."; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "text-zipper" = callPackage ( { mkDerivation, @@ -668332,35 +387816,6 @@ self: { } ) { }; - "text-zipper-monad" = callPackage ( - { - mkDerivation, - base, - hspec, - mtl, - text-zipper, - }: - mkDerivation { - pname = "text-zipper-monad"; - version = "0.2.0.0"; - sha256 = "0dcv715lfwvknyllb7p18gllay4258lsg6wsdjlpy5j6f24x0ac6"; - libraryHaskellDepends = [ - base - mtl - text-zipper - ]; - testHaskellDepends = [ - base - hspec - text-zipper - ]; - description = "Monadic interface to the text-zipper package"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "text1" = callPackage ( { mkDerivation, @@ -668450,81 +387905,6 @@ self: { } ) { }; - "textmatetags" = callPackage ( - { - mkDerivation, - base, - haskell98, - process, - }: - mkDerivation { - pname = "textmatetags"; - version = "0.0.1.2"; - sha256 = "1q47s8z6igi21m4gqbyizlgiq1z7frk9pi4jppckxmpcjs5xd0gk"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - haskell98 - process - ]; - description = "A simple Haskell program to provide tags for Haskell code completion in TextMate"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - mainProgram = "textmatetags"; - } - ) { }; - - "textocat-api" = callPackage ( - { - mkDerivation, - aeson, - base, - bytestring, - conduit, - http-conduit, - http-types, - resourcet, - tasty, - tasty-hunit, - text, - transformers, - }: - mkDerivation { - pname = "textocat-api"; - version = "0.1.0.0"; - sha256 = "0cljy3s13xqdvxffpp74iwamfvkmq7s49vpc8vpxnq2fvh6bmkx9"; - libraryHaskellDepends = [ - aeson - base - bytestring - conduit - http-conduit - http-types - resourcet - text - transformers - ]; - testHaskellDepends = [ - aeson - base - bytestring - conduit - http-conduit - http-types - resourcet - tasty - tasty-hunit - text - transformers - ]; - description = "Unofficial Haskell SDK for Textocat API -- http://textocat.com"; - license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "texts" = callPackage ( { mkDerivation }: mkDerivation { @@ -668537,31 +387917,6 @@ self: { } ) { }; - "textual" = callPackage ( - { - mkDerivation, - base, - bytestring, - text, - utf8-string, - }: - mkDerivation { - pname = "textual"; - version = "0.2.0.0"; - sha256 = "0facdj7h789pz7ll43wdkfn6zs6d4q1ns61wq64d2gixwi2fq06y"; - libraryHaskellDepends = [ - base - bytestring - text - utf8-string - ]; - description = "Textual type class for data that represent text"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "tf-random" = callPackage ( { mkDerivation, @@ -668610,86 +387965,6 @@ self: { } ) { }; - "tfp-th" = callPackage ( - { - mkDerivation, - base, - template-haskell, - tfp, - }: - mkDerivation { - pname = "tfp-th"; - version = "0.8"; - sha256 = "139dcwvik8yfpl3i71ddjml1xn126qrx1mbxa4mcwfm6q81fvkzm"; - libraryHaskellDepends = [ - base - template-haskell - tfp - ]; - description = "Template-Haskell code for tfp"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "tftp" = callPackage ( - { - mkDerivation, - base, - binary, - bytestring, - containers, - directory, - hslogger, - mtl, - network, - QuickCheck, - transformers, - }: - mkDerivation { - pname = "tftp"; - version = "0.2"; - sha256 = "0d95nhz5z0zi665h3npcags71zgprgrh7rq86yzn3wamnavlvswn"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - binary - bytestring - containers - directory - hslogger - mtl - network - transformers - ]; - executableHaskellDepends = [ - base - binary - bytestring - directory - hslogger - mtl - network - transformers - ]; - testHaskellDepends = [ - base - hslogger - mtl - network - QuickCheck - transformers - ]; - description = "A library for building tftp servers"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "tftp_upload"; - broken = true; - } - ) { }; - "tga" = callPackage ( { mkDerivation, @@ -668742,48 +388017,6 @@ self: { } ) { }; - "th-alpha" = callPackage ( - { - mkDerivation, - base, - containers, - derive, - mmorph, - mtl, - tasty, - tasty-hunit, - tasty-quickcheck, - template-haskell, - th-desugar, - transformers, - }: - mkDerivation { - pname = "th-alpha"; - version = "0.2.1.0"; - sha256 = "1v55mw305hig73w5cgkfjww3gdd4z6j54f5xj0nvjc4ca3wc3c82"; - libraryHaskellDepends = [ - base - containers - mmorph - mtl - template-haskell - th-desugar - transformers - ]; - testHaskellDepends = [ - base - derive - tasty - tasty-hunit - tasty-quickcheck - template-haskell - ]; - description = "Alpha equivalence for TH Exp"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "th-bang-compat" = callPackage ( { mkDerivation, @@ -668803,27 +388036,6 @@ self: { } ) { }; - "th-build" = callPackage ( - { - mkDerivation, - base, - template-haskell, - }: - mkDerivation { - pname = "th-build"; - version = "0.4.0.0"; - sha256 = "0f16cgwkmqhkm5nxyic0f56swzm96yqmagmbh7vjd203mn9zv9z6"; - libraryHaskellDepends = [ - base - template-haskell - ]; - description = "More convenient construction of TH ASTs"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "th-cas" = callPackage ( { mkDerivation, @@ -668899,77 +388111,6 @@ self: { } ) { }; - "th-context" = callPackage ( - { - mkDerivation, - array, - atp-haskell, - base, - bytestring, - containers, - data-default, - deepseq, - ghc-prim, - haskell-src-exts, - hspec, - hspec-core, - lens, - mtl, - mtl-unleashed, - pretty, - syb, - template-haskell, - text, - th-desugar, - th-orphans, - th-reify-many, - }: - mkDerivation { - pname = "th-context"; - version = "0.24"; - sha256 = "0j9r6wbdkay4rgyk131ydxbna2pxmvaf9kxwwa764diq8hrp0km0"; - libraryHaskellDepends = [ - atp-haskell - base - containers - data-default - haskell-src-exts - lens - mtl - mtl-unleashed - pretty - syb - template-haskell - th-desugar - th-orphans - ]; - testHaskellDepends = [ - array - atp-haskell - base - bytestring - containers - data-default - deepseq - ghc-prim - hspec - hspec-core - lens - mtl - mtl-unleashed - syb - template-haskell - text - th-desugar - th-orphans - th-reify-many - ]; - description = "Test instance context"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "th-data-compat" = callPackage ( { mkDerivation, @@ -669134,29 +388275,6 @@ self: { } ) { }; - "th-dict-discovery" = callPackage ( - { - mkDerivation, - base, - constraints, - template-haskell, - }: - mkDerivation { - pname = "th-dict-discovery"; - version = "0.1.0.0"; - sha256 = "1dmkj8is73mwngy1dw3ba34744whqj0jc243bjnkyrrwkbwn55ih"; - libraryHaskellDepends = [ - base - constraints - template-haskell - ]; - description = "Automatically discover available dictionaries at compile time"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "th-env" = callPackage ( { mkDerivation, @@ -669241,231 +388359,6 @@ self: { } ) { }; - "th-fold" = callPackage ( - { - mkDerivation, - base, - template-haskell, - }: - mkDerivation { - pname = "th-fold"; - version = "0.0.0.1"; - sha256 = "10n1aw74xi5gzs1847dhiv6yjxcz99idw91hvf34zhhs8hp8zf2z"; - libraryHaskellDepends = [ - base - template-haskell - ]; - description = "TH fold generator"; - license = lib.licenses.publicDomain; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "th-format" = callPackage ( - { - mkDerivation, - base, - Earley, - haskell-src-meta, - tasty, - tasty-hunit, - template-haskell, - text, - }: - mkDerivation { - pname = "th-format"; - version = "0.1.3.0"; - sha256 = "0ckyf5r5sz3x8ixj5nclqsi6ifk7zz08b6wf09gbwb4gbydklw7c"; - libraryHaskellDepends = [ - base - Earley - haskell-src-meta - template-haskell - text - ]; - testHaskellDepends = [ - base - tasty - tasty-hunit - text - ]; - description = "Template Haskell based support for format strings"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "th-inline-io-action" = callPackage ( - { - mkDerivation, - base, - template-haskell, - }: - mkDerivation { - pname = "th-inline-io-action"; - version = "0.1.0.1"; - sha256 = "09xxfgyy56284cd2fry8pshlpawva4yq1k6bhza5samn694yinkq"; - libraryHaskellDepends = [ - base - template-haskell - ]; - description = "Simple inline IO action into compiled code using TH"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "th-instance-reification" = callPackage ( - { - mkDerivation, - base, - containers, - list-extras, - QuickCheck, - quickcheck-instances, - rerebase, - tasty, - tasty-hunit, - tasty-quickcheck, - template-haskell, - th-expand-syns, - }: - mkDerivation { - pname = "th-instance-reification"; - version = "0.1.5.1"; - sha256 = "0jafxmd767z52my86dh1dk89h6wx2qf11vx4yk9qw563a7xzv6rm"; - libraryHaskellDepends = [ - base - containers - list-extras - template-haskell - th-expand-syns - ]; - testHaskellDepends = [ - QuickCheck - quickcheck-instances - rerebase - tasty - tasty-hunit - tasty-quickcheck - template-haskell - ]; - description = "Fixed versions of instances reification functions"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "th-instances" = callPackage ( - { - mkDerivation, - base, - checkers, - DebugTraceHelpers, - derive, - HUnit, - mtl, - QuickCheck, - template-haskell, - test-framework, - test-framework-hunit, - test-framework-quickcheck2, - th-kinds, - th-lift, - }: - mkDerivation { - pname = "th-instances"; - version = "0.1.0.14"; - sha256 = "1izamc2j1zjyrvzns7kj1mcma4bbmyd3sagbzxsyi4ja8kszcy0v"; - libraryHaskellDepends = [ - base - checkers - derive - mtl - QuickCheck - template-haskell - th-kinds - th-lift - ]; - testHaskellDepends = [ - base - checkers - DebugTraceHelpers - derive - HUnit - mtl - QuickCheck - template-haskell - test-framework - test-framework-hunit - test-framework-quickcheck2 - th-kinds - th-lift - ]; - description = "A place to collect orphan instances for Template Haskell"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "th-kinds" = callPackage ( - { - mkDerivation, - base, - containers, - mtl, - template-haskell, - th-orphans, - }: - mkDerivation { - pname = "th-kinds"; - version = "0.2"; - sha256 = "1jajj3fmhwvkla5ngvg6qb3hl2hmhgj6c1ldnz79b66ys62m6fs6"; - libraryHaskellDepends = [ - base - containers - mtl - template-haskell - th-orphans - ]; - description = "Automated kind inference in Template Haskell"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "th-kinds-fork" = callPackage ( - { - mkDerivation, - base, - containers, - mtl, - template-haskell, - th-orphans, - }: - mkDerivation { - pname = "th-kinds-fork"; - version = "0.2"; - sha256 = "0c912a3kmcng36wxnk3488kiz8nj3y81jhv7san00k6az34ckr7w"; - libraryHaskellDepends = [ - base - containers - mtl - template-haskell - th-orphans - ]; - description = "Automated kind inference in Template Haskell"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "th-lego" = callPackage ( { mkDerivation, @@ -669695,31 +388588,6 @@ self: { } ) { }; - "th-pprint" = callPackage ( - { - mkDerivation, - base, - lens, - pretty, - template-haskell, - }: - mkDerivation { - pname = "th-pprint"; - version = "0.2.0.0"; - sha256 = "1c6h6jw82a8bdb8kqxcam63vbrz04dl8m2ypcmfw5qm88b61zl1f"; - libraryHaskellDepends = [ - base - lens - pretty - template-haskell - ]; - description = "Simplify and render Template Haskell"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "th-printf" = callPackage ( { mkDerivation, @@ -669822,29 +388690,6 @@ self: { } ) { }; - "th-sccs" = callPackage ( - { - mkDerivation, - base, - containers, - template-haskell, - }: - mkDerivation { - pname = "th-sccs"; - version = "0.0.0.20110723"; - sha256 = "0vrjqwdjv2922kqmh57ypbslbv1m829wag78addqsr4vjd9b3zl6"; - libraryHaskellDepends = [ - base - containers - template-haskell - ]; - description = "Binding group analysis in Template Haskell"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "th-strict-compat" = callPackage ( { mkDerivation, @@ -669864,37 +388709,6 @@ self: { } ) { }; - "th-tc" = callPackage ( - { - mkDerivation, - base, - containers, - lens, - mtl, - template-haskell, - th-orphans, - transformers, - }: - mkDerivation { - pname = "th-tc"; - version = "0.2.1.0"; - sha256 = "1wgvglb6k73mslrw1whxyqgxp90l042lm4865qdgvvbli5gk5dva"; - libraryHaskellDepends = [ - base - containers - lens - mtl - template-haskell - th-orphans - transformers - ]; - description = "Typechecking in Template Haskell"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "th-test-utils" = callPackage ( { mkDerivation, @@ -669932,156 +388746,6 @@ self: { } ) { }; - "th-to-exp" = callPackage ( - { - mkDerivation, - base, - hspec, - template-haskell, - }: - mkDerivation { - pname = "th-to-exp"; - version = "0.0.1.1"; - sha256 = "09aqjrvgarygcbry01f6kmwbf7lzsbravmwz4277jdzdhwwj2zw6"; - libraryHaskellDepends = [ - base - template-haskell - ]; - testHaskellDepends = [ - base - hspec - template-haskell - ]; - description = "Provides a way to persist data from compile-time to runtime"; - license = lib.licenses.isc; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "th-traced" = callPackage ( - { - mkDerivation, - base, - containers, - mtl, - template-haskell, - }: - mkDerivation { - pname = "th-traced"; - version = "0.0.1.0"; - sha256 = "1hmhpcxg0hhqhb8qmqqi9x8jb4h8a6045k0q8162mm0vl47s4rz2"; - libraryHaskellDepends = [ - base - containers - mtl - template-haskell - ]; - description = "Tracing Q monad computation"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "th-typegraph" = callPackage ( - { - mkDerivation, - aeson, - attoparsec, - base, - bytestring, - cereal, - containers, - deepseq, - dlist, - fail, - fgl, - ghc-prim, - hashable, - HUnit, - lens, - mtl, - network-uri, - parsec, - pretty, - safecopy, - scientific, - semigroups, - split, - sr-extra, - syb, - tagged, - template-haskell, - text, - th-desugar, - th-lift, - th-lift-instances, - th-orphans, - time, - transformers, - unordered-containers, - userid, - vector, - web-routes, - }: - mkDerivation { - pname = "th-typegraph"; - version = "1.4"; - sha256 = "0nfcsmv7dsh28c9smp2vwm9r43c5ann98rxdvyp7w96gpawjwwz4"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - attoparsec - base - bytestring - cereal - containers - deepseq - dlist - fail - fgl - ghc-prim - hashable - lens - mtl - parsec - pretty - safecopy - scientific - semigroups - split - sr-extra - syb - tagged - template-haskell - text - th-desugar - th-lift - th-lift-instances - th-orphans - time - transformers - unordered-containers - userid - vector - web-routes - ]; - testHaskellDepends = [ - aeson - base - HUnit - network-uri - syb - template-haskell - th-lift - ]; - description = "Graph of the subtype relation"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "th-utilities" = callPackage ( { mkDerivation, @@ -670411,131 +389075,6 @@ self: { } ) { }; - "thentos-cookie-session" = callPackage ( - { - mkDerivation, - aeson, - base, - bytestring, - cookie, - cryptonite, - digestive-functors, - hspec, - hspec-wai, - http-types, - lens, - memory, - mtl, - resourcet, - sandi, - servant, - servant-server, - string-conversions, - text, - transformers, - vault, - wai, - wai-extra, - wai-session, - }: - mkDerivation { - pname = "thentos-cookie-session"; - version = "0.9.1"; - sha256 = "1dzhnw7m7qgyjcyy2vraggfj06pfn9kq3bsgnigaxlvjfk32zxz4"; - libraryHaskellDepends = [ - aeson - base - bytestring - cookie - cryptonite - digestive-functors - lens - memory - mtl - resourcet - sandi - servant - servant-server - string-conversions - text - transformers - vault - wai - wai-extra - wai-session - ]; - testHaskellDepends = [ - base - cookie - hspec - hspec-wai - http-types - servant-server - transformers - vault - wai - wai-extra - wai-session - ]; - description = "All-in-one session handling for servant-based frontends"; - license = "AGPL"; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "theoremquest" = callPackage ( - { - mkDerivation, - base, - HTTP, - json, - utf8-string, - }: - mkDerivation { - pname = "theoremquest"; - version = "0.0.0"; - sha256 = "05z0jppjbw70rlyh2qis27xp8vdx9fgn7i22ckxb0m2y75gffq61"; - libraryHaskellDepends = [ - base - HTTP - json - utf8-string - ]; - description = "A common library for TheoremQuest, a theorem proving game"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "theoremquest-client" = callPackage ( - { - mkDerivation, - base, - HTTP, - network, - theoremquest, - }: - mkDerivation { - pname = "theoremquest-client"; - version = "0.0.0"; - sha256 = "0kdfbz5sa2gcy9znz4c2hnyni01vpabixrclg2gs7awysw8hiy3a"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - HTTP - network - theoremquest - ]; - description = "A simple client for the TheoremQuest theorem proving game"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "tq"; - } - ) { }; - "these" = callPackage ( { mkDerivation, @@ -670663,60 +389202,6 @@ self: { } ) { }; - "thih" = callPackage ( - { - mkDerivation, - base, - pretty, - }: - mkDerivation { - pname = "thih"; - version = "1.0"; - sha256 = "0ir8z7al3fxjwq5nb05l136k7vp82ag6khcyf9bvjcymlra4cs0m"; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base - pretty - ]; - description = "Typing Haskell In Haskell"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "thih"; - broken = true; - } - ) { }; - - "thimk" = callPackage ( - { - mkDerivation, - base, - edit-distance, - parseargs, - phonetic-code, - sqlite, - }: - mkDerivation { - pname = "thimk"; - version = "0.3.1"; - sha256 = "1pjz6rnbm1llxgp47fasv40w2vg197z582vf9mm7rhm5qjp25zi0"; - isLibrary = false; - isExecutable = true; - enableSeparateDataOutput = true; - executableHaskellDepends = [ - base - edit-distance - parseargs - phonetic-code - sqlite - ]; - description = "Command-line spelling word suggestion tool"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "thock" = callPackage ( { mkDerivation, @@ -670771,65 +389256,30 @@ self: { random text text-zipper - time - vector - vty - websockets - ]; - testHaskellDepends = [ - aeson - base - brick - containers - file-embed - lens - mtl - network - random - text - text-zipper - time - vector - vty - websockets - ]; - description = "A modern TUI typing game featuring online racing against friends"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "thorn" = callPackage ( - { - mkDerivation, - base, - bifunctors, - containers, - contravariant, - mtl, - profunctors, - random, - template-haskell, - }: - mkDerivation { - pname = "thorn"; - version = "0.2"; - sha256 = "1krxfsgj4ciifg76khsl4lw1nb40xx4gs07nwd84ail85s394h1h"; - revision = "1"; - editedCabalFile = "16hvf6vszsrgprdrsg8yhwf3ab0fk2y3q0ghykv7al7mjng9b7ni"; - libraryHaskellDepends = [ + time + vector + vty + websockets + ]; + testHaskellDepends = [ + aeson base - bifunctors + brick containers - contravariant + file-embed + lens mtl - profunctors + network random - template-haskell + text + text-zipper + time + vector + vty + websockets ]; - description = "Datatype Manipulation with Template Haskell"; - license = lib.licenses.bsd3; + description = "A modern TUI typing game featuring online racing against friends"; + license = lib.licenses.mit; hydraPlatforms = lib.platforms.none; broken = true; } @@ -671054,27 +389504,6 @@ self: { } ) { }; - "threadmanager" = callPackage ( - { - mkDerivation, - base, - containers, - }: - mkDerivation { - pname = "threadmanager"; - version = "0.1.7"; - sha256 = "17s26hlailbr8c9d3dv1pwiy81m3nzr3sw0v9y716rmhldf7k09f"; - libraryHaskellDepends = [ - base - containers - ]; - description = "(deprecated in favor of 'threads') Simple thread management"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "threads" = callPackage ( { mkDerivation, @@ -671299,43 +389728,6 @@ self: { } ) { }; - "threepenny-editors" = callPackage ( - { - mkDerivation, - base, - bifunctors, - casing, - containers, - generics-sop, - profunctors, - semigroups, - text, - threepenny-gui, - }: - mkDerivation { - pname = "threepenny-editors"; - version = "0.5.6.1"; - sha256 = "0x6x4cfs52lwdcxjyqirrb8ka5pm40l89xsxaz9vvz44hmixqjrj"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - bifunctors - casing - containers - generics-sop - profunctors - semigroups - text - threepenny-gui - ]; - description = "Composable algebraic editors"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "threepenny-gui" = callPackage ( { mkDerivation, @@ -671402,125 +389794,6 @@ self: { } ) { }; - "threepenny-gui-contextmenu" = callPackage ( - { - mkDerivation, - base, - threepenny-gui, - }: - mkDerivation { - pname = "threepenny-gui-contextmenu"; - version = "0.1.0.0"; - sha256 = "0lj2sh2rkizbm97yxlcdmh22ybjiamhgz65s8rybm2i7imcaa3q9"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - threepenny-gui - ]; - executableHaskellDepends = [ - base - threepenny-gui - ]; - description = "Write simple nested context menus for threepenny-gui"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "threepenny-gui-contextmenu-exe"; - broken = true; - } - ) { }; - - "threepenny-gui-flexbox" = callPackage ( - { - mkDerivation, - base, - clay, - text, - threepenny-gui, - }: - mkDerivation { - pname = "threepenny-gui-flexbox"; - version = "0.4.2"; - sha256 = "1xghm7f49gvl1mk7h4bdvck7yn0jx53qq2wvzkkqwi78q0w2b1l6"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - clay - text - threepenny-gui - ]; - executableHaskellDepends = [ - base - threepenny-gui - ]; - description = "Flexbox layouts for Threepenny-gui"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "threepenny-flexbox-exe"; - broken = true; - } - ) { }; - - "thrift" = callPackage ( - { - mkDerivation, - attoparsec, - base, - base64-bytestring, - binary, - bytestring, - containers, - ghc-prim, - hashable, - hspec, - hspec-core, - HTTP, - network, - network-uri, - QuickCheck, - split, - text, - unordered-containers, - vector, - }: - mkDerivation { - pname = "thrift"; - version = "0.13.0"; - sha256 = "005gaw3n548l7ij8m2di2b7nmfz2sg6nhafb3xjccw9wgwzl9qs2"; - libraryHaskellDepends = [ - attoparsec - base - base64-bytestring - binary - bytestring - containers - ghc-prim - hashable - hspec-core - HTTP - network - network-uri - QuickCheck - split - text - unordered-containers - vector - ]; - testHaskellDepends = [ - base - bytestring - hspec - QuickCheck - unordered-containers - ]; - description = "Haskell bindings for the Apache Thrift RPC system"; - license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "thrift-compiler" = callPackage ( { mkDerivation, @@ -671863,52 +390136,6 @@ self: { } ) { }; - "throttle-io-stream" = callPackage ( - { - mkDerivation, - async, - base, - bytestring, - clock, - HUnit, - say, - stm, - stm-chans, - test-framework, - test-framework-hunit, - text, - }: - mkDerivation { - pname = "throttle-io-stream"; - version = "0.2.0.1"; - sha256 = "13icrx3nrgidnb7j3ixqz93rcsc63qmczkvjyg74pjrb0rlsi5z8"; - libraryHaskellDepends = [ - async - base - clock - stm - stm-chans - ]; - testHaskellDepends = [ - async - base - bytestring - clock - HUnit - say - stm - stm-chans - test-framework - test-framework-hunit - text - ]; - description = "Throttler between arbitrary IO producer and consumer functions"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "throttled" = callPackage ( { mkDerivation, @@ -671930,36 +390157,6 @@ self: { } ) { }; - "throttled-io-loop" = callPackage ( - { - mkDerivation, - base, - hspec, - natural-numbers, - QuickCheck, - time, - }: - mkDerivation { - pname = "throttled-io-loop"; - version = "0.1.0.2"; - sha256 = "031mf4fwvqfnlazz0ypjs2bn2245xqb3i5k3k8mmm429grflwa6m"; - libraryHaskellDepends = [ - base - natural-numbers - time - ]; - testHaskellDepends = [ - base - hspec - QuickCheck - ]; - description = "Loop over an action but throttle it to a certain rate"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "through-text" = callPackage ( { mkDerivation, @@ -671987,161 +390184,6 @@ self: { } ) { }; - "throwable-exceptions" = callPackage ( - { - mkDerivation, - base, - doctest, - either, - safe-exceptions, - silently, - tasty, - tasty-discover, - tasty-hunit, - template-haskell, - text, - }: - mkDerivation { - pname = "throwable-exceptions"; - version = "0.1.0.9"; - sha256 = "1ab9qx87r0wxrvx9fk77cpimj0pm1qa2pvcv4b8sadj0s8fkrcis"; - libraryHaskellDepends = [ - base - safe-exceptions - template-haskell - ]; - testHaskellDepends = [ - base - doctest - either - safe-exceptions - silently - tasty - tasty-discover - tasty-hunit - text - ]; - testToolDepends = [ tasty-discover ]; - description = "throwable-exceptions gives the easy way to throw exceptions"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "thumbnail" = callPackage ( - { - mkDerivation, - base, - bytestring, - gd, - }: - mkDerivation { - pname = "thumbnail"; - version = "0.8.0"; - sha256 = "1ms7pzw4lrpkpv6sb0l7jvw5a0n5j7fc9wyi28bq7ik22d4sc8kd"; - libraryHaskellDepends = [ - base - bytestring - gd - ]; - description = "generate thumbnail image"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "thumbnail-plus" = callPackage ( - { - mkDerivation, - base, - bytestring, - conduit, - conduit-extra, - data-default, - directory, - either, - gd, - hspec, - imagesize-conduit, - resourcet, - temporary, - transformers, - }: - mkDerivation { - pname = "thumbnail-plus"; - version = "1.0.5"; - sha256 = "0320yfgnsazl7bxm9zf077mi4dgfmlcfnzy1qpdl9w3jl5i7z441"; - revision = "1"; - editedCabalFile = "0ghmlvcwy8klfq2f0brsg0zyqd0rbclfb990b50clmd2dsmx83wl"; - libraryHaskellDepends = [ - base - bytestring - conduit - conduit-extra - data-default - directory - either - gd - imagesize-conduit - resourcet - temporary - transformers - ]; - testHaskellDepends = [ - base - conduit - conduit-extra - data-default - directory - hspec - resourcet - transformers - ]; - description = "Generate thumbnails easily and safely"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "thumbnail-polish" = callPackage ( - { - mkDerivation, - base, - bytestring, - data-default, - directory, - filepath, - friday, - friday-devil, - nonce, - resourcet, - text, - }: - mkDerivation { - pname = "thumbnail-polish"; - version = "0.0.1.1"; - sha256 = "1bl45s6cb5pak3g5w3p98n7dipg1b8fapq7y5radzlwkgjchp600"; - libraryHaskellDepends = [ - base - bytestring - data-default - directory - filepath - friday - friday-devil - nonce - resourcet - text - ]; - description = "Image thumbnail creation"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "thyme" = callPackage ( { mkDerivation, @@ -672224,142 +390266,6 @@ self: { } ) { }; - "tianbar" = - callPackage - ( - { - mkDerivation, - aeson, - base, - blaze-html, - blaze-markup, - bytestring, - containers, - dbus, - directory, - filepath, - gi-gdk, - gi-gio, - gi-glib, - gi-gtk, - gi-webkit2, - gtk3, - haskell-gi-base, - http-types, - lens, - mime-types, - mtl, - network, - process, - random, - scientific, - split, - tasty, - tasty-quickcheck, - text, - transformers, - unordered-containers, - utf8-string, - vector, - webkitgtk_4_0, - xdg-basedir, - xmonad, - xmonad-contrib, - }: - mkDerivation { - pname = "tianbar"; - version = "1.2.5"; - sha256 = "1il31vwcl3lag1nz9a9j8i7g160djbdbfcd58qi7d9sw9mcjk361"; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base - blaze-html - blaze-markup - dbus - utf8-string - xmonad - xmonad-contrib - ]; - executableHaskellDepends = [ - aeson - base - bytestring - containers - dbus - directory - filepath - gi-gdk - gi-gio - gi-glib - gi-gtk - gi-webkit2 - haskell-gi-base - http-types - lens - mime-types - mtl - network - process - random - scientific - split - text - transformers - unordered-containers - utf8-string - vector - xdg-basedir - ]; - executablePkgconfigDepends = [ - gtk3 - webkitgtk_4_0 - ]; - testHaskellDepends = [ - aeson - base - bytestring - containers - dbus - directory - filepath - gi-gdk - gi-gio - gi-glib - gi-gtk - gi-webkit2 - haskell-gi-base - http-types - lens - mime-types - mtl - network - process - random - scientific - split - tasty - tasty-quickcheck - text - transformers - unordered-containers - utf8-string - vector - xdg-basedir - ]; - description = "A desktop bar based on WebKit"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - mainProgram = "tianbar"; - broken = true; - } - ) - { - inherit (pkgs) gtk3; - inherit (pkgs) webkitgtk_4_0; - }; - "tibetan-utils" = callPackage ( { mkDerivation, @@ -672392,34 +390298,6 @@ self: { } ) { }; - "tic-tac-toe" = callPackage ( - { - mkDerivation, - base, - glade, - gtk, - haskell98, - }: - mkDerivation { - pname = "tic-tac-toe"; - version = "0.1"; - sha256 = "0bdls2xz281zdxq5z6vbkahmf6bpiqr0ra823j21783jwiyh8j01"; - isLibrary = false; - isExecutable = true; - enableSeparateDataOutput = true; - executableHaskellDepends = [ - base - glade - gtk - haskell98 - ]; - description = "Useful if reading \"Why FP matters\" by John Hughes"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "tic-tac-toe"; - } - ) { }; - "ticker" = callPackage ( { mkDerivation, @@ -672501,80 +390379,6 @@ self: { } ) { }; - "tickle" = callPackage ( - { - mkDerivation, - base, - bifunctors, - bytestring, - checkers, - filepath, - lens, - mtl, - papa, - QuickCheck, - semigroupoids, - semigroups, - tasty, - tasty-hunit, - tasty-quickcheck, - transformers, - validation, - }: - mkDerivation { - pname = "tickle"; - version = "0.0.9"; - sha256 = "10fq51mvks300yhhzzsjfmjd0g888z35x7qc4b7a2i7307zjrjml"; - libraryHaskellDepends = [ - base - bifunctors - bytestring - filepath - mtl - papa - semigroupoids - semigroups - transformers - validation - ]; - testHaskellDepends = [ - base - checkers - lens - QuickCheck - tasty - tasty-hunit - tasty-quickcheck - ]; - description = "A port of @Data.Binary@"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "tictactoe3d" = callPackage ( - { - mkDerivation, - base, - tuples-homogenous-h98, - vector, - }: - mkDerivation { - pname = "tictactoe3d"; - version = "0.1.0.3"; - sha256 = "0xpfcabhlpnp883jb23sjcilan1cwwykvvlqvc6qzhda63fcyqp1"; - libraryHaskellDepends = [ - base - tuples-homogenous-h98 - vector - ]; - description = "3D Tic-Tac-Toe game"; - license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "tidal" = callPackage ( { mkDerivation, @@ -672775,168 +390579,6 @@ self: { } ) { }; - "tidal-serial" = callPackage ( - { - mkDerivation, - base, - bytestring, - containers, - serialport, - tidal, - }: - mkDerivation { - pname = "tidal-serial"; - version = "0.8"; - sha256 = "1nv3zr7c1lzys3dzqhvhmfpp0kls2n7h2gw3rz1q1vh15vw3f5wd"; - libraryHaskellDepends = [ - base - bytestring - containers - serialport - tidal - ]; - description = "Serial support for tidal"; - license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "tidal-vis" = callPackage ( - { - mkDerivation, - async, - base, - cairo, - colour, - containers, - gloss, - hashable, - hosc, - mtl, - network, - SDL, - SDL-gfx, - SDL-image, - SDL-ttf, - tidal, - time, - unagi-chan, - }: - mkDerivation { - pname = "tidal-vis"; - version = "1.0.15"; - sha256 = "0h198v3p1z8bmn993w54a7pm4s445lvf7683h23wydpnfckxv06h"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - async - base - cairo - colour - containers - gloss - hashable - hosc - mtl - network - SDL - SDL-gfx - SDL-image - SDL-ttf - tidal - time - unagi-chan - ]; - executableHaskellDepends = [ base ]; - description = "Visual rendering for Tidal patterns and osc messages"; - license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - mainProgram = "tidal-vis"; - broken = true; - } - ) { }; - - "tie-knot" = callPackage ( - { - mkDerivation, - base, - containers, - mtl, - recursion-schemes, - }: - mkDerivation { - pname = "tie-knot"; - version = "0.2"; - sha256 = "1iksr5h6cyyl88z35fbaskriv4vhc1696d3i1i3c171c0vq0hwg4"; - libraryHaskellDepends = [ - base - containers - mtl - recursion-schemes - ]; - description = "\"Ties the knot\" on a given set of structures that reference each other by keys"; - license = "LGPL"; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "tiempo" = callPackage ( - { - mkDerivation, - base, - deepseq, - time, - }: - mkDerivation { - pname = "tiempo"; - version = "0.0.1.1"; - sha256 = "13jazsgjs95hykshjsvjx05hdhj5jcl85sqhci4hmjhyivplxc58"; - libraryHaskellDepends = [ - base - deepseq - time - ]; - description = "Specify time intervals in different units (secs, mins, hours, etc.)"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "tiger" = callPackage ( - { - mkDerivation, - array, - base, - containers, - uuagc, - uuagc-cabal, - uulib, - }: - mkDerivation { - pname = "tiger"; - version = "1.1.1"; - sha256 = "1llmizacz4sg77l5yi3f9m9xkckl1mpjh0ly20cbqf5747q354q1"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - array - base - containers - uuagc - uuagc-cabal - uulib - ]; - description = "Tiger Compiler of Universiteit Utrecht"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "tiger"; - broken = true; - } - ) { }; - "tigerbeetle-hs" = callPackage ( { mkDerivation, @@ -673001,79 +390643,6 @@ self: { } ) { }; - "tightrope" = callPackage ( - { - mkDerivation, - aeson, - base, - bytestring, - containers, - http-types, - lens, - mtl, - text, - wai, - wai-extra, - wreq, - }: - mkDerivation { - pname = "tightrope"; - version = "0.2.0.0"; - sha256 = "1vvzfsl166qhg0ykq71rzavllid216f6fg5xrk2454z9zskc9n60"; - libraryHaskellDepends = [ - aeson - base - bytestring - containers - http-types - lens - mtl - text - wai - wai-extra - wreq - ]; - description = "Nice API for a Slackbot"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "tighttp" = callPackage ( - { - mkDerivation, - base, - bytestring, - handle-like, - monads-tf, - old-locale, - papillon, - simple-pipe, - time, - }: - mkDerivation { - pname = "tighttp"; - version = "0.0.0.10"; - sha256 = "0q0177nm71c6sl7qdw0za740m52bhqavkn4b7f6dxwvfw15icxdz"; - revision = "1"; - editedCabalFile = "077s20c7cl29h65v5sgh4df5r41574srll20r6cmbdbb339jr4nr"; - libraryHaskellDepends = [ - base - bytestring - handle-like - monads-tf - old-locale - papillon - simple-pipe - time - ]; - description = "Tiny and Incrementally-Growing HTTP library"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "tiktoken" = callPackage ( { mkDerivation, @@ -673210,46 +390779,6 @@ self: { } ) { }; - "timberc" = callPackage ( - { - mkDerivation, - array, - base, - binary, - bytestring, - bzlib, - filepath, - happy, - haskell98, - mtl, - pretty, - }: - mkDerivation { - pname = "timberc"; - version = "1.0.3"; - sha256 = "0x2yc57g9g5ii14l65xkly55rhx44nfjqnbl4bqf286mqsgz191j"; - isLibrary = false; - isExecutable = true; - enableSeparateDataOutput = true; - executableHaskellDepends = [ - array - base - binary - bytestring - bzlib - filepath - haskell98 - mtl - pretty - ]; - executableToolDepends = [ happy ]; - description = "The Timber Compiler"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "timberc"; - } - ) { }; - "time_1_15" = callPackage ( { mkDerivation, @@ -673388,84 +390917,6 @@ self: { } ) { }; - "time-extras" = callPackage ( - { - mkDerivation, - base, - time, - }: - mkDerivation { - pname = "time-extras"; - version = "1.1.4"; - sha256 = "1k9adm922l431gyk8figx5df1n2xk5awir2fpijnvvyphrwk5p3l"; - libraryHaskellDepends = [ - base - time - ]; - description = "Data instances for the time package"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "time-exts" = callPackage ( - { - mkDerivation, - attoparsec, - base, - bindings-DSL, - deepseq, - HUnit, - ieee754, - lens-simple, - mtl, - old-locale, - QuickCheck, - random, - text, - time, - tz, - }: - mkDerivation { - pname = "time-exts"; - version = "3.0.4"; - sha256 = "08nffyg181m1bgna4b6bv74w04byizzd5j80ad5xjb0mifbynzdd"; - libraryHaskellDepends = [ - attoparsec - base - bindings-DSL - deepseq - lens-simple - mtl - old-locale - random - text - time - tz - ]; - testHaskellDepends = [ - attoparsec - base - bindings-DSL - deepseq - HUnit - ieee754 - lens-simple - mtl - old-locale - QuickCheck - random - text - time - tz - ]; - description = "Yet another time library"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "time-hourglass" = callPackage ( { mkDerivation, @@ -673504,65 +390955,6 @@ self: { } ) { }; - "time-http" = callPackage ( - { - mkDerivation, - ascii, - attempt, - attoparsec, - base, - base-unicode-symbols, - blaze-builder, - blaze-textual, - bytestring, - convertible-text, - data-default, - failure, - QuickCheck, - tagged, - time, - }: - mkDerivation { - pname = "time-http"; - version = "0.5"; - sha256 = "0jbiawi14p8cgcxvr5b38kyjdmhq1lagr1dqnlpymlv7d7pcxljd"; - libraryHaskellDepends = [ - ascii - attempt - attoparsec - base - base-unicode-symbols - blaze-builder - blaze-textual - bytestring - convertible-text - data-default - failure - tagged - time - ]; - testHaskellDepends = [ - ascii - attempt - attoparsec - base - base-unicode-symbols - blaze-builder - blaze-textual - bytestring - convertible-text - data-default - failure - QuickCheck - tagged - time - ]; - description = "Parse and format HTTP/1.1 Date and Time strings"; - license = lib.licenses.publicDomain; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "time-interval" = callPackage ( { mkDerivation, @@ -673582,28 +390974,6 @@ self: { } ) { }; - "time-io-access" = callPackage ( - { - mkDerivation, - base, - base-io-access, - time, - }: - mkDerivation { - pname = "time-io-access"; - version = "0.1.0.0"; - sha256 = "0n05lw6zpcfr3lwy2qn7v0j3ym1la9x0mak8szaxc2nbkyc8drrb"; - libraryHaskellDepends = [ - base - base-io-access - time - ]; - description = "IO Access for time"; - license = lib.licenses.gpl2Only; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "time-lens" = callPackage ( { mkDerivation, @@ -673849,133 +391219,6 @@ self: { } ) { }; - "time-quote" = callPackage ( - { - mkDerivation, - base, - doctest, - doctest-discover, - template-haskell, - time, - }: - mkDerivation { - pname = "time-quote"; - version = "1.9.0.0"; - sha256 = "0yppmprksy2c28rnswdlipwprgb6fck7wjm9dr9z28xhq329hgg6"; - libraryHaskellDepends = [ - base - template-haskell - time - ]; - testHaskellDepends = [ - base - doctest - doctest-discover - template-haskell - time - ]; - description = "Quasi-quoters for dates and times"; - license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "time-recurrence" = callPackage ( - { - mkDerivation, - base, - data-ordlist, - HUnit, - mtl, - old-locale, - test-framework, - test-framework-hunit, - time, - }: - mkDerivation { - pname = "time-recurrence"; - version = "0.9.3"; - sha256 = "03akzmgigx18xak3wkk45gn77f3kkfz007h8s2h6yd3q0ivb8v9i"; - libraryHaskellDepends = [ - base - data-ordlist - mtl - time - ]; - testHaskellDepends = [ - base - data-ordlist - HUnit - mtl - old-locale - test-framework - test-framework-hunit - time - ]; - description = "Generate recurring dates"; - license = lib.licenses.lgpl3Only; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "time-series" = callPackage ( - { - mkDerivation, - array, - base, - containers, - mtl, - }: - mkDerivation { - pname = "time-series"; - version = "0.1.0.0"; - sha256 = "1j6xrf45i4japgr35kzqcawlhdn13k3fbsjfmm2j3j92skwra095"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - array - base - containers - mtl - ]; - executableHaskellDepends = [ base ]; - description = "Time series analysis"; - license = lib.licenses.gpl2Only; - hydraPlatforms = lib.platforms.none; - mainProgram = "time-series"; - broken = true; - } - ) { }; - - "time-series-lib" = callPackage ( - { - mkDerivation, - base, - Cabal, - hspec, - QuickCheck, - }: - mkDerivation { - pname = "time-series-lib"; - version = "0.1.0"; - sha256 = "1q2ga2vx1hxcqj0sxmssgyi9k1q2pmicl50m70bw4ya5zf4i3bli"; - libraryHaskellDepends = [ base ]; - testHaskellDepends = [ - base - Cabal - hspec - QuickCheck - ]; - doHaddock = false; - description = "Library for Time Series processing"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "time-units" = callPackage ( { mkDerivation, base }: mkDerivation { @@ -674007,189 +391250,6 @@ self: { } ) { }; - "time-w3c" = callPackage ( - { - mkDerivation, - base, - convertible, - parsec, - time, - }: - mkDerivation { - pname = "time-w3c"; - version = "0.1.0.1"; - sha256 = "12hnvhcv18kv1djqn5dqv8i1rrzsxlvnsjyjsy9m1ngmr9nvvfbg"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - convertible - parsec - time - ]; - description = "Parse, format and convert W3C Date and Time"; - license = lib.licenses.publicDomain; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "time-warp" = callPackage ( - { - mkDerivation, - ansi-terminal, - array, - async, - attoparsec, - base, - binary, - binary-conduit, - bytestring, - conduit, - conduit-extra, - containers, - data-default, - data-msgpack, - deepseq, - exceptions, - extra, - formatting, - hashable, - hspec, - lens, - lifted-base, - log-warper, - mmorph, - monad-control, - monad-loops, - MonadRandom, - mtl, - network, - pqueue, - QuickCheck, - quickcheck-instances, - random, - safe, - semigroups, - serokell-util, - slave-thread, - stm, - stm-chans, - stm-conduit, - streaming-commons, - template-haskell, - text, - text-format, - time, - time-units, - transformers, - transformers-base, - unordered-containers, - }: - mkDerivation { - pname = "time-warp"; - version = "1.1.1.2"; - sha256 = "0ncw28rxhlrrr5708ymws9kb4ca4m8ljrpxma0nvxxfigg7mqrim"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - ansi-terminal - array - attoparsec - base - binary - binary-conduit - bytestring - conduit - conduit-extra - containers - data-default - data-msgpack - deepseq - exceptions - extra - formatting - hashable - lens - lifted-base - log-warper - mmorph - monad-control - monad-loops - MonadRandom - mtl - network - pqueue - QuickCheck - quickcheck-instances - random - safe - semigroups - serokell-util - slave-thread - stm - stm-chans - stm-conduit - streaming-commons - template-haskell - text - text-format - time - time-units - transformers - transformers-base - unordered-containers - ]; - testHaskellDepends = [ - async - base - data-default - data-msgpack - exceptions - hspec - lens - log-warper - mtl - QuickCheck - random - serokell-util - stm - text - text-format - time-units - transformers - ]; - description = "Distributed systems execution emulation"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "timecalc" = callPackage ( - { - mkDerivation, - base, - haskeline, - uu-parsinglib, - }: - mkDerivation { - pname = "timecalc"; - version = "0.1.1"; - sha256 = "05nzfydzn9nmjfmdnpf5jl238kdixbwwqkyrax89i4anmpxv1v9s"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - haskeline - uu-parsinglib - ]; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - mainProgram = "timecalc"; - broken = true; - } - ) { }; - "timeconsole" = callPackage ( { mkDerivation, @@ -674419,109 +391479,6 @@ self: { } ) { }; - "timemap" = callPackage ( - { - mkDerivation, - base, - containers, - criterion, - focus, - hashable, - list-t, - QuickCheck, - quickcheck-instances, - stm, - stm-containers, - tasty, - tasty-quickcheck, - time, - unordered-containers, - }: - mkDerivation { - pname = "timemap"; - version = "0.0.7"; - sha256 = "06rx5q1b0r4chiiy9wi9k0q9qc4yxjk794hcq8dr7gpixgcrjjrg"; - libraryHaskellDepends = [ - base - containers - focus - hashable - list-t - stm - stm-containers - time - unordered-containers - ]; - testHaskellDepends = [ - base - containers - focus - hashable - list-t - QuickCheck - quickcheck-instances - stm - stm-containers - tasty - tasty-quickcheck - time - unordered-containers - ]; - benchmarkHaskellDepends = [ - base - containers - criterion - focus - hashable - list-t - stm - stm-containers - time - unordered-containers - ]; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "timeout" = callPackage ( - { - mkDerivation, - base, - exceptions, - mtl, - QuickCheck, - tasty, - tasty-quickcheck, - time, - }: - mkDerivation { - pname = "timeout"; - version = "0.1.1"; - sha256 = "1jddkkmc3d8ysh8rnlpkzvlg67if8c71wqmjdsysddpwwm3wbgjn"; - libraryHaskellDepends = [ - base - exceptions - mtl - time - ]; - testHaskellDepends = [ - base - exceptions - mtl - QuickCheck - tasty - tasty-quickcheck - time - ]; - description = "Generalized sleep and timeout functions"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "timeout-control" = callPackage ( { mkDerivation, @@ -674549,62 +391506,6 @@ self: { } ) { }; - "timeout-with-results" = callPackage ( - { - mkDerivation, - base, - deepseq, - mtl, - parallel, - }: - mkDerivation { - pname = "timeout-with-results"; - version = "0.2"; - sha256 = "1y5mc1awahcp9xpmmwqc74cfn7g0zm1cyxi396xirll8nk335nd0"; - libraryHaskellDepends = [ - base - deepseq - mtl - parallel - ]; - description = "Runs a time-limited computation alowing it to return intermediate results"; - license = "LGPL"; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "timeparsers" = callPackage ( - { - mkDerivation, - attoparsec, - base, - bytestring, - containers, - convertible, - mtl, - time, - }: - mkDerivation { - pname = "timeparsers"; - version = "0.3.2"; - sha256 = "1dicp58f2amn5rgmnlfjpv4aj7ak6jrdlba2marglddvj4ycq1h7"; - libraryHaskellDepends = [ - attoparsec - base - bytestring - containers - convertible - mtl - time - ]; - description = "Attoparsec parsers for various Date/Time formats"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "timeplot" = callPackage ( { mkDerivation, @@ -674657,26 +391558,6 @@ self: { } ) { }; - "timeprint" = callPackage ( - { - mkDerivation, - base, - datetime, - }: - mkDerivation { - pname = "timeprint"; - version = "0.1.0.3"; - sha256 = "1anb14bih8728jsygx86fq077fs0gmy4gnkaa489zy5gh468a4bg"; - libraryHaskellDepends = [ - base - datetime - ]; - description = "Prints timestamps after each line evaluated"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "timer-wheel" = callPackage ( { mkDerivation, @@ -674821,55 +391702,6 @@ self: { } ) { }; - "timeseries" = callPackage ( - { - mkDerivation, - base, - bytestring, - Cabal, - cassava, - hspec, - QuickCheck, - statistics, - text, - text-time, - time, - vector, - }: - mkDerivation { - pname = "timeseries"; - version = "0.4.1"; - sha256 = "07hmqmc9pk2bgckygzams6qrrzxnhwh1a4am9j85n8l4fiqifyjf"; - libraryHaskellDepends = [ - base - bytestring - cassava - statistics - text - text-time - time - vector - ]; - testHaskellDepends = [ - base - bytestring - Cabal - cassava - hspec - QuickCheck - statistics - text - text-time - time - vector - ]; - description = "Library for Time Series processing"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "timespan" = callPackage ( { mkDerivation, @@ -674889,37 +391721,6 @@ self: { } ) { }; - "timestamp" = callPackage ( - { - mkDerivation, - base, - cereal, - foldl, - generic-random, - hashable, - QuickCheck, - time, - }: - mkDerivation { - pname = "timestamp"; - version = "0.2"; - sha256 = "1cl57lf53kqmrhplf944zqhp59vjah57yakqd9m2rn0m5n6hz6sg"; - libraryHaskellDepends = [ - base - cereal - foldl - generic-random - hashable - QuickCheck - time - ]; - description = "Space-efficient Unix timestamp and utilities"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "timestamp-subprocess-lines" = callPackage ( { mkDerivation, @@ -675001,48 +391802,6 @@ self: { } ) { }; - "timeutils" = callPackage ( - { - mkDerivation, - base, - brick, - hspec, - microlens, - time, - vty, - }: - mkDerivation { - pname = "timeutils"; - version = "0.1.0"; - sha256 = "12i331hvnbzbln8c38wqj7a7836l40zm4p1b3lb10q81qk4wnygi"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - microlens - time - ]; - executableHaskellDepends = [ - base - brick - microlens - time - vty - ]; - testHaskellDepends = [ - base - hspec - microlens - time - ]; - description = "Time utilities"; - license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - mainProgram = "timeutils"; - broken = true; - } - ) { }; - "timezone-detect" = callPackage ( { mkDerivation, @@ -675157,50 +391916,6 @@ self: { } ) { }; - "timezone-unix" = callPackage ( - { - mkDerivation, - base, - directory, - filepath, - leapseconds, - tasty, - tasty-golden, - tasty-hunit, - time, - timezone-olson, - timezone-series, - unix, - }: - mkDerivation { - pname = "timezone-unix"; - version = "1.0"; - sha256 = "1fn0cfpdvpjqfc16h0n8xl1fd1gyimpbb2qn3bi0x2kknd754gyj"; - libraryHaskellDepends = [ - base - directory - filepath - leapseconds - time - timezone-olson - timezone-series - unix - ]; - testHaskellDepends = [ - base - directory - leapseconds - tasty - tasty-golden - tasty-hunit - time - timezone-series - ]; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "timing-convenience" = callPackage ( { mkDerivation, @@ -675292,175 +392007,6 @@ self: { description = "gRPC based SDK for Tinkoff Invest API V2"; license = lib.licenses.mit; hydraPlatforms = lib.platforms.none; - } - ) { }; - - "tintin" = callPackage ( - { - mkDerivation, - base, - clay, - containers, - data-has, - directory, - frontmatter, - inflections, - inliterate, - lucid, - optparse-generic, - process, - require, - temporary, - text, - universum, - yaml, - }: - mkDerivation { - pname = "tintin"; - version = "1.10.1"; - sha256 = "191dr17z3qxkk5ic605ni2kq5v7sncn0gw5xhk7nlxd5fx6nf5r2"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - clay - containers - data-has - directory - frontmatter - inflections - inliterate - lucid - process - require - temporary - text - universum - yaml - ]; - libraryToolDepends = [ require ]; - executableHaskellDepends = [ - base - optparse-generic - require - universum - ]; - executableToolDepends = [ require ]; - testHaskellDepends = [ - base - require - ]; - description = "A softer alternative to Haddock"; - license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; - mainProgram = "tintin"; - } - ) { }; - - "tiny-scheduler" = callPackage ( - { - mkDerivation, - async, - base, - time, - }: - mkDerivation { - pname = "tiny-scheduler"; - version = "0.1.4.3"; - sha256 = "04bcz2ifkrw0f6razvzpycvzdbarv1ain800l4rapqyqzykgzxjw"; - libraryHaskellDepends = [ - async - base - time - ]; - description = "tiny no-brainer job scheduler"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "tinyMesh" = callPackage ( - { - mkDerivation, - attoparsec, - base, - bytestring, - hex, - serialport, - unix, - }: - mkDerivation { - pname = "tinyMesh"; - version = "0.1.0.0"; - sha256 = "19jpwnk7hmi0mg46nqhyiipz085dkakqwgh17lv9ccvvcirpclm3"; - libraryHaskellDepends = [ - attoparsec - base - bytestring - hex - serialport - unix - ]; - description = "TinyMesh - communicating with auto-meshing sensor network"; - license = lib.licenses.bsd2; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "tinyXml" = callPackage ( - { - mkDerivation, - base, - bytestring, - containers, - directory, - filepath, - hexml, - mtl, - optparse-generic, - primitive, - process, - vector, - }: - mkDerivation { - pname = "tinyXml"; - version = "0.1.0.2"; - sha256 = "0dlkryfmk7135gscbpj5dyifs716y55mhf47klh2x40h22iqf358"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - bytestring - containers - mtl - primitive - vector - ]; - executableHaskellDepends = [ - base - bytestring - directory - filepath - mtl - optparse-generic - ]; - testHaskellDepends = [ - base - bytestring - containers - filepath - hexml - mtl - primitive - process - vector - ]; - description = "A fast DOM parser for a subset of XML"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "validate"; broken = true; } ) { }; @@ -675535,72 +392081,6 @@ self: { } ) { }; - "tinylog" = callPackage ( - { - mkDerivation, - base, - bytestring, - containers, - criterion, - double-conversion, - fast-logger, - text, - transformers, - unix-time, - }: - mkDerivation { - pname = "tinylog"; - version = "0.15.0"; - sha256 = "0pwdymx4kx3im9pzah0lmh64x7agdklf6dwqpjx93ybswi61cwfb"; - libraryHaskellDepends = [ - base - bytestring - containers - double-conversion - fast-logger - text - transformers - unix-time - ]; - benchmarkHaskellDepends = [ - base - bytestring - criterion - ]; - description = "Simplistic logging using fast-logger"; - license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "tinytemplate" = callPackage ( - { - mkDerivation, - base, - QuickCheck, - text, - }: - mkDerivation { - pname = "tinytemplate"; - version = "0.1.2.0"; - sha256 = "02kxs4qkrqribqx4sk4hs4qc76x9r8ii2jr1rff17gbmymj3kirh"; - libraryHaskellDepends = [ - base - text - ]; - testHaskellDepends = [ - base - QuickCheck - text - ]; - description = "A tiny text templating library"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "tinytools" = callPackage ( { mkDerivation, @@ -675846,263 +392326,6 @@ self: { } ) { }; - "tip-haskell-frontend" = callPackage ( - { - mkDerivation, - base, - bytestring, - containers, - directory, - filepath, - geniplate-mirror, - ghc, - ghc-paths, - ghc-simple, - mtl, - optparse-applicative, - pretty, - pretty-show, - QuickCheck, - split, - tip-lib, - }: - mkDerivation { - pname = "tip-haskell-frontend"; - version = "0.2"; - sha256 = "0h50lgkppmqlqrvaii0bk7n2a84czn4i50all3r726lylp0v0fcy"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - bytestring - containers - directory - filepath - geniplate-mirror - ghc - ghc-paths - ghc-simple - mtl - optparse-applicative - pretty - QuickCheck - split - tip-lib - ]; - executableHaskellDepends = [ - base - optparse-applicative - pretty - pretty-show - tip-lib - ]; - description = "Convert from Haskell to Tip"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "tip-ghc"; - } - ) { }; - - "tip-lib" = callPackage ( - { - mkDerivation, - alex, - array, - base, - containers, - filepath, - genifunctors, - geniplate-mirror, - happy, - mtl, - optparse-applicative, - pretty, - split, - structural-induction, - }: - mkDerivation { - pname = "tip-lib"; - version = "0.2.2"; - sha256 = "0ay15hngv5w4xmlz28bbxds3ibk6vh79cf7q7qpm90p50088ssb6"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - array - base - containers - genifunctors - geniplate-mirror - mtl - optparse-applicative - pretty - split - structural-induction - ]; - libraryToolDepends = [ - alex - happy - ]; - executableHaskellDepends = [ - base - filepath - optparse-applicative - pretty - ]; - description = "tons of inductive problems - support library and tools"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "tip"; - } - ) { }; - - "tiphys" = callPackage ( - { - mkDerivation, - aeson, - attoparsec, - base, - errors, - hspec, - text, - unordered-containers, - vector, - }: - mkDerivation { - pname = "tiphys"; - version = "0.1.1.0"; - sha256 = "1pwwrf51g4s66hci7sm2jkqvi9vap9qhirvwwh1nkmq2w29004kf"; - libraryHaskellDepends = [ - aeson - attoparsec - base - errors - text - unordered-containers - vector - ]; - testHaskellDepends = [ - aeson - base - hspec - vector - ]; - description = "Navigating and editing JSON data"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "titan" = callPackage ( - { - mkDerivation, - base, - cairo, - glib, - gtk, - IfElse, - keera-hails-mvc-controller, - keera-hails-mvc-environment-gtk, - keera-hails-mvc-model-protectedmodel, - keera-hails-mvc-solutions-gtk, - keera-hails-mvc-view, - keera-hails-mvc-view-gtk, - keera-hails-reactive-gtk, - keera-hails-reactive-polling, - keera-hails-reactivevalues, - mtl, - network, - network-bsd, - template-haskell, - }: - mkDerivation { - pname = "titan"; - version = "1.0.2"; - sha256 = "15jxx0irblnw1pkwzih383w5f0xfh1nav5pal488207gfy6p9d66"; - isLibrary = false; - isExecutable = true; - enableSeparateDataOutput = true; - executableHaskellDepends = [ - base - cairo - glib - gtk - IfElse - keera-hails-mvc-controller - keera-hails-mvc-environment-gtk - keera-hails-mvc-model-protectedmodel - keera-hails-mvc-solutions-gtk - keera-hails-mvc-view - keera-hails-mvc-view-gtk - keera-hails-reactive-gtk - keera-hails-reactive-polling - keera-hails-reactivevalues - mtl - network - network-bsd - template-haskell - ]; - description = "Testing Infrastructure for Temporal AbstractioNs - GUI to debug temporal programs"; - license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - mainProgram = "titan"; - } - ) { }; - - "titan-debug-yampa" = callPackage ( - { - mkDerivation, - base, - IfElse, - network, - network-bsd, - stm, - transformers, - Yampa, - }: - mkDerivation { - pname = "titan-debug-yampa"; - version = "1.0.1"; - sha256 = "1dwz949njsqcwixhk7128lwasvmni8hsqjkx38l6zwbpwgwgv5ci"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - IfElse - network - network-bsd - stm - transformers - Yampa - ]; - description = "Testing Infrastructure for Temporal AbstractioNs - Interactive Yampa debugging layer"; - license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "titan-record-yampa" = callPackage ( - { - mkDerivation, - base, - Yampa, - }: - mkDerivation { - pname = "titan-record-yampa"; - version = "1.0.1"; - sha256 = "0h7d4152nd8mx4slyjss4kf7n1xn99vc5hnk072apqfv301vpbx3"; - libraryHaskellDepends = [ - base - Yampa - ]; - description = "Testing Infrastructure for Temporal AbstractioNs - Yampa record-and-replay layer"; - license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "titlecase" = callPackage ( { mkDerivation, @@ -676132,131 +392355,6 @@ self: { } ) { }; - "tkhs" = callPackage ( - { - mkDerivation, - base, - HUnit, - mtl, - parsec, - pretty, - test-framework, - test-framework-hunit, - utf8-string, - vty, - }: - mkDerivation { - pname = "tkhs"; - version = "0.3.0"; - sha256 = "1svsdjb1ac5mb9zcx3wqmxdjfmf99ph94v616scya5f7lqkjcfgp"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - mtl - parsec - pretty - utf8-string - vty - ]; - testHaskellDepends = [ - HUnit - test-framework - test-framework-hunit - ]; - description = "Simple Presentation Utility"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "tkhs"; - broken = true; - } - ) { }; - - "tkyprof" = callPackage ( - { - mkDerivation, - aeson, - attoparsec, - base, - bytestring, - cmdargs, - conduit, - conduit-extra, - containers, - data-default, - directory, - exceptions, - filepath, - http-types, - mtl, - resourcet, - rosezipper, - shakespeare, - stm, - template-haskell, - text, - time, - transformers, - unordered-containers, - vector, - wai, - wai-extra, - warp, - web-routes, - yesod, - yesod-core, - yesod-form, - yesod-static, - }: - mkDerivation { - pname = "tkyprof"; - version = "0.2.2.2"; - sha256 = "1xyy1aagbjyjs9d52jmf7xch0831v7hvsb0mfrxpahvqsdac6h7a"; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; - executableHaskellDepends = [ - aeson - attoparsec - base - bytestring - cmdargs - conduit - conduit-extra - containers - data-default - directory - exceptions - filepath - http-types - mtl - resourcet - rosezipper - shakespeare - stm - template-haskell - text - time - transformers - unordered-containers - vector - wai - wai-extra - warp - web-routes - yesod - yesod-core - yesod-form - yesod-static - ]; - description = "A web-based visualizer for GHC Profiling Reports"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "tkyprof"; - broken = true; - } - ) { }; - "tld" = callPackage ( { mkDerivation, @@ -676754,95 +392852,6 @@ self: { } ) { }; - "tls-debug" = callPackage ( - { - mkDerivation, - base, - bytestring, - cryptonite, - data-default-class, - network, - pem, - tls, - tls-session-manager, - x509, - x509-store, - x509-system, - x509-validation, - }: - mkDerivation { - pname = "tls-debug"; - version = "0.4.8"; - sha256 = "1x6yjk0m1jrkcy1y6ggrmnhkdrf0kbgvdry6p5i7f4bvfj432qvl"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - bytestring - cryptonite - data-default-class - network - pem - tls - tls-session-manager - x509 - x509-store - x509-system - x509-validation - ]; - description = "Set of programs for TLS testing and debugging"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "tls-extra" = callPackage ( - { - mkDerivation, - base, - bytestring, - certificate, - cipher-aes, - cipher-rc4, - crypto-pubkey, - crypto-random, - cryptohash, - mtl, - network, - pem, - time, - tls, - vector, - }: - mkDerivation { - pname = "tls-extra"; - version = "0.6.6"; - sha256 = "0k0sj3nq1lrvbmd582mjj8cxbxigivz1hm8hhij1ncl2pgnq5xyv"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - bytestring - certificate - cipher-aes - cipher-rc4 - crypto-pubkey - crypto-random - cryptohash - mtl - network - pem - time - tls - vector - ]; - description = "TLS extra default values and helpers"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "tls-session-manager" = callPackage ( { mkDerivation, @@ -677460,385 +393469,127 @@ self: { mkDerivation { pname = "tmp-proc-zipkin"; version = "0.7.0.0"; - sha256 = "1piplhqnjhnxar4v2cgp290dkxbwy8as2bbi122csgmb0pk853kr"; - libraryHaskellDepends = [ - base - bytestring - http-client - text - tmp-proc - tracing - ]; - testHaskellDepends = [ - base - bytestring - hspec - hspec-tmp-proc - text - tmp-proc - ]; - description = "Launch ZipKin in docker using tmp-proc"; - license = lib.licenses.bsd3; - } - ) { }; - - "tmpl" = callPackage ( - { - mkDerivation, - base, - bytestring, - directory, - template, - text, - }: - mkDerivation { - pname = "tmpl"; - version = "0.0.0.1"; - sha256 = "101q4f51am8722b0b2d9hk84iqfg1z1shzrbikya63jpf3s6jrvg"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - bytestring - directory - template - text - ]; - description = "simple executable for templating"; - license = lib.licenses.gpl3Only; - mainProgram = "tmpl"; - } - ) { }; - - "tn" = callPackage ( - { - mkDerivation, - aeson, - base, - bytestring, - directory, - file-embed, - optparse-applicative, - optparse-helper, - optparse-simple, - pager, - text, - time, - vector, - yaml, - }: - mkDerivation { - pname = "tn"; - version = "4.1.0.0"; - sha256 = "1q85qidkxhy1l6bly2p8az6fnfksgi3i39c9gr8h02a1k0dg3xsh"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson - base - bytestring - directory - file-embed - optparse-simple - pager - text - time - vector - yaml - ]; - executableHaskellDepends = [ - base - bytestring - file-embed - optparse-applicative - optparse-helper - ]; - description = "A simple daily journal program"; - license = lib.licenses.isc; - hydraPlatforms = lib.platforms.none; - mainProgram = "tn"; - } - ) { }; - - "tnet" = callPackage ( - { - mkDerivation, - attoparsec, - base, - bytestring, - utf8-string, - }: - mkDerivation { - pname = "tnet"; - version = "0.0.1"; - sha256 = "1hxka8jfybq72isicvav81f4l9hjxhmzx4i4znkqbwzkarg2gsw9"; - libraryHaskellDepends = [ - attoparsec - base - bytestring - utf8-string - ]; - description = "Library for encoding/decoding TNET strings for PGI"; - license = "unknown"; - } - ) { }; - - "to" = callPackage ( - { - mkDerivation, - base, - bytestring, - containers, - gauge, - hashable, - text, - unordered-containers, - utf8-string, - vector, - }: - mkDerivation { - pname = "to"; - version = "1.2.0"; - sha256 = "13y4vxfm76929c4nj6rp06y81nm30m3v52r927k41nbb0fdx8z7y"; - libraryHaskellDepends = [ - base - bytestring - containers - hashable - text - unordered-containers - utf8-string - vector - ]; - benchmarkHaskellDepends = [ - base - containers - gauge - text - unordered-containers - ]; - description = "Simple, safe, boring type conversions"; - license = lib.licenses.bsd3; - } - ) { }; - - "to-haskell" = callPackage ( - { - mkDerivation, - base, - containers, - haskell-src-exts, - transformers, - }: - mkDerivation { - pname = "to-haskell"; - version = "0.3.0"; - sha256 = "0glf7m0r9gpab2pg1bq9qa37mrzpjwvqr3xsws6w53qqlcaw54qk"; - libraryHaskellDepends = [ - base - containers - haskell-src-exts - transformers - ]; - description = "A type class and some utilities for generating Haskell code"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "to-string-class" = callPackage ( - { mkDerivation, base }: - mkDerivation { - pname = "to-string-class"; - version = "0.1.2"; - sha256 = "0l2hj0cbc0dhd7m5bn6xqgzkdf2z4knirmv8c65hsjig9mpsvsxf"; - revision = "1"; - editedCabalFile = "1p5q59gswv86pk7hxpg1n81q4szhwx8rwfx5hsibdz9i9mgz2bbs"; - libraryHaskellDepends = [ base ]; - description = "Converting string-like types to Strings"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "to-string-instances" = callPackage ( - { - mkDerivation, - bytestring, - pretty, - text, - to-string-class, - }: - mkDerivation { - pname = "to-string-instances"; - version = "0.2"; - sha256 = "1h5aq3shagzgh1j8sbslvi2rrkqv1djm595d522ci8hpj6h8vxl9"; + sha256 = "1piplhqnjhnxar4v2cgp290dkxbwy8as2bbi122csgmb0pk853kr"; libraryHaskellDepends = [ + base bytestring - pretty + http-client + text + tmp-proc + tracing + ]; + testHaskellDepends = [ + base + bytestring + hspec + hspec-tmp-proc text - to-string-class + tmp-proc ]; - description = "Instances for the ToString class"; + description = "Launch ZipKin in docker using tmp-proc"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; } ) { }; - "toboggan" = callPackage ( + "tmpl" = callPackage ( { mkDerivation, base, + bytestring, directory, - madlang, - optparse-generic, + template, text, - tweet-hs, }: mkDerivation { - pname = "toboggan"; - version = "0.1.0.1"; - sha256 = "19h8qhgvhhrsp2p0lpw4gwznx4alyqqm482pga85g83f6xa9xjiy"; - isLibrary = true; + pname = "tmpl"; + version = "0.0.0.1"; + sha256 = "101q4f51am8722b0b2d9hk84iqfg1z1shzrbikya63jpf3s6jrvg"; + isLibrary = false; isExecutable = true; - libraryHaskellDepends = [ + executableHaskellDepends = [ base + bytestring directory - madlang - optparse-generic + template text - tweet-hs ]; - executableHaskellDepends = [ base ]; - description = "Twitter bot generator"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "toboggan"; - } - ) { }; - - "todo" = callPackage ( - { mkDerivation, base }: - mkDerivation { - pname = "todo"; - version = "0.2.0.3"; - sha256 = "1ilnslggrca8arjibgn44xh8m36ywwcbqi5h538h7cp669lnyxz9"; - libraryHaskellDepends = [ base ]; - description = "A replacement for undefined that gives warnings"; - license = lib.licenses.bsd3; + description = "simple executable for templating"; + license = lib.licenses.gpl3Only; + mainProgram = "tmpl"; } ) { }; - "todos" = callPackage ( + "tnet" = callPackage ( { mkDerivation, - ansi-terminal, + attoparsec, base, - base-unicode-symbols, - containers, - data-hash, - dates, - directory, - dyre, - filepath, - Glob, - mtl, - parsec, - process, - regex-pcre, - syb, - time, + bytestring, utf8-string, }: mkDerivation { - pname = "todos"; - version = "0.5.3.2"; - sha256 = "1wgnxg9kndijm8faxsy48qznjzfcwqgjxgyff6x9c9h2fayvl719"; - isLibrary = true; - isExecutable = true; + pname = "tnet"; + version = "0.0.1"; + sha256 = "1hxka8jfybq72isicvav81f4l9hjxhmzx4i4znkqbwzkarg2gsw9"; libraryHaskellDepends = [ - ansi-terminal - base - base-unicode-symbols - containers - data-hash - dates - directory - dyre - filepath - Glob - mtl - parsec - process - regex-pcre - syb - time - utf8-string - ]; - executableHaskellDepends = [ - ansi-terminal + attoparsec base - base-unicode-symbols - containers - data-hash - dates - directory - dyre - filepath - Glob - mtl - parsec - process - regex-pcre - syb - time + bytestring utf8-string ]; - description = "Easy-to-use TODOs manager"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "todos"; + description = "Library for encoding/decoding TNET strings for PGI"; + license = "unknown"; } ) { }; - "tofromxml" = callPackage ( + "to" = callPackage ( { mkDerivation, - array, base, bytestring, containers, - filepath, - hexpat, - hexpat-pickle, + gauge, + hashable, + text, + unordered-containers, + utf8-string, + vector, }: mkDerivation { - pname = "tofromxml"; - version = "0.1.0.2"; - sha256 = "0wqdxr6fijbdzq0767cvi7yf07q6dcv1anzmsv7ms2apcyag63qh"; + pname = "to"; + version = "1.2.0"; + sha256 = "13y4vxfm76929c4nj6rp06y81nm30m3v52r927k41nbb0fdx8z7y"; libraryHaskellDepends = [ - array base bytestring containers - hexpat - hexpat-pickle + hashable + text + unordered-containers + utf8-string + vector ]; - testHaskellDepends = [ - array + benchmarkHaskellDepends = [ base - bytestring containers - filepath - hexpat - hexpat-pickle + gauge + text + unordered-containers ]; - description = "Reading and writing Haskell data from and to XML"; + description = "Simple, safe, boring type conversions"; + license = lib.licenses.bsd3; + } + ) { }; + + "todo" = callPackage ( + { mkDerivation, base }: + mkDerivation { + pname = "todo"; + version = "0.2.0.3"; + sha256 = "1ilnslggrca8arjibgn44xh8m36ywwcbqi5h538h7cp669lnyxz9"; + libraryHaskellDepends = [ base ]; + description = "A replacement for undefined that gives warnings"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; } ) { }; @@ -677894,55 +393645,6 @@ self: { } ) { }; - "token-limiter" = callPackage ( - { - mkDerivation, - async, - base, - clock, - ghc-prim, - QuickCheck, - tasty, - tasty-hunit, - text, - }: - mkDerivation { - pname = "token-limiter"; - version = "0.2.0.3"; - sha256 = "0gplyhx8wicha8j56khiw7992bm1qx7hbckicpfrd1qc94h3iyiy"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - clock - ghc-prim - ]; - executableHaskellDepends = [ - async - base - clock - QuickCheck - tasty - tasty-hunit - text - ]; - testHaskellDepends = [ - async - base - clock - QuickCheck - tasty - tasty-hunit - text - ]; - description = "Fast rate limiting using the token bucket algorithm (BSD)"; - license = lib.licenses.bsd2; - hydraPlatforms = lib.platforms.none; - mainProgram = "token-limiter-extended-tests"; - broken = true; - } - ) { }; - "token-limiter-concurrent" = callPackage ( { mkDerivation, @@ -677975,88 +393677,6 @@ self: { } ) { }; - "token-search" = callPackage ( - { - mkDerivation, - aeson, - base, - bytestring, - conduit, - hashable, - hspec, - process, - streaming-commons, - text, - unordered-containers, - }: - mkDerivation { - pname = "token-search"; - version = "0.1.0.0"; - sha256 = "1df0yvmwskhw1pr9wxxlhp6p74y1nfxxadaqdjvgfd2sz2kb4v4l"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - bytestring - conduit - hashable - process - streaming-commons - text - unordered-containers - ]; - executableHaskellDepends = [ - aeson - base - bytestring - conduit - hashable - process - streaming-commons - text - unordered-containers - ]; - testHaskellDepends = [ - base - bytestring - conduit - hashable - hspec - process - streaming-commons - text - unordered-containers - ]; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - mainProgram = "token-search"; - broken = true; - } - ) { }; - - "tokenify" = callPackage ( - { - mkDerivation, - base, - containers, - text, - }: - mkDerivation { - pname = "tokenify"; - version = "0.1.2.0"; - sha256 = "1fyf1ym91dbhiw7hybzhllc375v4pizl058qazfdyw6cymqm4rch"; - libraryHaskellDepends = [ - base - containers - text - ]; - description = "A regex lexer"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "tokenize" = callPackage ( { mkDerivation, @@ -678146,39 +393766,6 @@ self: { } ) { }; - "tokenizer-streaming" = callPackage ( - { - mkDerivation, - base, - bytestring, - mtl, - streaming, - streaming-bytestring, - streaming-commons, - text, - tokenizer-monad, - }: - mkDerivation { - pname = "tokenizer-streaming"; - version = "0.1.0.1"; - sha256 = "0ml4fby87z1fgk2v3if3z6bf1h9gsdcjgmq6lr77qsri2yfcscla"; - libraryHaskellDepends = [ - base - bytestring - mtl - streaming - streaming-bytestring - streaming-commons - text - tokenizer-monad - ]; - description = "A variant of tokenizer-monad that supports streaming"; - license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "tokstyle" = callPackage ( { mkDerivation, @@ -678245,38 +393832,6 @@ self: { } ) { }; - "toktok" = callPackage ( - { - mkDerivation, - base, - bytestring, - containers, - gf, - haskell98, - iconv, - }: - mkDerivation { - pname = "toktok"; - version = "0.5"; - sha256 = "0y4s68gnp4xw0x22w3kdcr5wnkqygv6ajwkhb8apphja268np98v"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - containers - haskell98 - ]; - executableHaskellDepends = [ - base - bytestring - gf - iconv - ]; - license = "GPL"; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "tokyocabinet-haskell" = callPackage ( { mkDerivation, @@ -678314,42 +393869,6 @@ self: { } ) { inherit (pkgs) tokyocabinet; }; - "tokyotyrant-haskell" = - callPackage - ( - { - mkDerivation, - base, - bytestring, - mtl, - tokyocabinet, - tokyotyrant, - }: - mkDerivation { - pname = "tokyotyrant-haskell"; - version = "1.0.1"; - sha256 = "1xz8n3hgkhrdabwc8hsqj3yf5x112palzz192f6pkl07vi8yz1ph"; - libraryHaskellDepends = [ - base - bytestring - mtl - ]; - librarySystemDepends = [ - tokyocabinet - tokyotyrant - ]; - description = "FFI bindings to libtokyotyrant"; - license = lib.licenses.bsd3; - badPlatforms = lib.platforms.darwin; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) - { - inherit (pkgs) tokyocabinet; - inherit (pkgs) tokyotyrant; - }; - "tomato-rubato-openal" = callPackage ( { mkDerivation, @@ -678654,35 +394173,6 @@ self: { } ) { }; - "tomlcheck" = callPackage ( - { - mkDerivation, - base, - htoml-megaparsec, - megaparsec, - optparse-applicative, - text, - }: - mkDerivation { - pname = "tomlcheck"; - version = "0.1.0.40"; - sha256 = "0r56fzmngylwcnykhn22hnlaj553m5l29rsjplmlhy3b2rdb10hj"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - htoml-megaparsec - megaparsec - optparse-applicative - text - ]; - description = "Command-line tool to check syntax of TOML files"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "tomlcheck"; - } - ) { }; - "tonalude" = callPackage ( { mkDerivation, @@ -679228,129 +394718,10 @@ self: { ]; description = "Cluster single cells and analyze cell clade relationships"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; mainProgram = "too-many-cells"; } ) { }; - "toodles" = callPackage ( - { - mkDerivation, - aeson, - base, - base64-bytestring, - blaze-html, - bytestring, - cmdargs, - directory, - extra, - filepath, - hspec, - hspec-expectations, - megaparsec, - MissingH, - process, - regex-posix, - RSA, - servant, - servant-blaze, - servant-server, - strict, - text, - time, - wai, - warp, - yaml, - }: - mkDerivation { - pname = "toodles"; - version = "1.2.3"; - sha256 = "0b6sznzkcjhs5fw920ivmvh6n6walamy16602bxid7sjrlgdjzcf"; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - aeson - base - base64-bytestring - blaze-html - bytestring - cmdargs - directory - extra - megaparsec - MissingH - process - regex-posix - RSA - servant - servant-blaze - servant-server - strict - text - time - wai - warp - yaml - ]; - executableHaskellDepends = [ - aeson - base - base64-bytestring - blaze-html - bytestring - cmdargs - directory - extra - filepath - megaparsec - MissingH - process - regex-posix - RSA - servant - servant-blaze - servant-server - strict - text - time - wai - warp - yaml - ]; - testHaskellDepends = [ - aeson - base - base64-bytestring - blaze-html - bytestring - cmdargs - directory - extra - hspec - hspec-expectations - megaparsec - MissingH - process - regex-posix - servant - servant-blaze - servant-server - strict - text - time - wai - warp - yaml - ]; - description = "Manage the TODO entries in your code"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - mainProgram = "toodles"; - broken = true; - } - ) { }; - "toolbox" = callPackage ( { mkDerivation, @@ -679459,76 +394830,6 @@ self: { } ) { }; - "top" = callPackage ( - { - mkDerivation, - acid-state, - async, - base, - bytestring, - containers, - data-default-class, - deepseq, - directory, - doctest, - extra, - filemanip, - filepath, - flat, - hslogger, - mtl, - pipes, - pretty, - safecopy, - tasty, - tasty-hunit, - template-haskell, - text, - transformers, - websockets, - zm, - }: - mkDerivation { - pname = "top"; - version = "0.2.4"; - sha256 = "0kqyhcd407jyxpb487bx5jqnzaycycp5i8yxasgl37g45cdgb4gr"; - libraryHaskellDepends = [ - acid-state - async - base - bytestring - containers - data-default-class - deepseq - extra - filepath - flat - hslogger - mtl - pipes - pretty - safecopy - template-haskell - text - transformers - websockets - zm - ]; - testHaskellDepends = [ - base - directory - doctest - filemanip - tasty - tasty-hunit - zm - ]; - description = "Top (typed oriented protocol) API"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "topaz" = callPackage ( { mkDerivation, @@ -679591,45 +394892,6 @@ self: { } ) { }; - "topkata" = callPackage ( - { - mkDerivation, - ALUT, - array, - base, - filepath, - GLFW-b, - OpenAL, - OpenGL, - parseargs, - random, - }: - mkDerivation { - pname = "topkata"; - version = "0.2.4"; - sha256 = "06b938i2362c4jcd0923lwrcf6hqgxdscizj91ns51wx73nm8fxi"; - isLibrary = false; - isExecutable = true; - enableSeparateDataOutput = true; - executableHaskellDepends = [ - ALUT - array - base - filepath - GLFW-b - OpenAL - OpenGL - parseargs - random - ]; - description = "OpenGL Arcade Game"; - license = "GPL"; - hydraPlatforms = lib.platforms.none; - mainProgram = "topkata"; - broken = true; - } - ) { }; - "topograph" = callPackage ( { mkDerivation, @@ -679655,31 +394917,6 @@ self: { } ) { }; - "torch" = callPackage ( - { - mkDerivation, - base, - mtl, - parallel, - QuickCheck, - }: - mkDerivation { - pname = "torch"; - version = "0.1"; - sha256 = "1bai1vxd2vfxl9zn37dvrb05yh4knr5gw5syqpi6lxxd3lf0ngzc"; - libraryHaskellDepends = [ - base - mtl - parallel - QuickCheck - ]; - description = "Simple unit test library (or framework)"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "torrent" = callPackage ( { mkDerivation, @@ -679782,100 +395019,6 @@ self: { } ) { }; - "total-map" = callPackage ( - { - mkDerivation, - base, - containers, - semiring-num, - }: - mkDerivation { - pname = "total-map"; - version = "0.1.3"; - sha256 = "015bj6g4hjp38fc8bm5z57w6akdgvyab6j2sc666x0qdxgrdwp88"; - libraryHaskellDepends = [ - base - containers - semiring-num - ]; - description = "Finitely represented total maps"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "total-maps" = callPackage ( - { - mkDerivation, - adjunctions, - base, - base-compat, - bytes, - containers, - distributive, - keys, - linear, - reflection, - semigroups, - vector, - }: - mkDerivation { - pname = "total-maps"; - version = "1.0.0.3"; - sha256 = "0cg9d76cb5aw3l5fnjfcndd8l2sc4xmfliv14584b1ak2a736bbb"; - libraryHaskellDepends = [ - adjunctions - base - base-compat - bytes - containers - distributive - keys - linear - reflection - semigroups - vector - ]; - description = "Dense and sparse total maps"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "touched" = callPackage ( - { - mkDerivation, - base, - cmdargs, - directory, - process, - time, - }: - mkDerivation { - pname = "touched"; - version = "0.2.0.1"; - sha256 = "0lik2glqynjwcd64bdla2jsfy4yqqk4aap5f0c9zkqv9g916bxgi"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - directory - process - time - ]; - executableHaskellDepends = [ - base - cmdargs - ]; - description = "Library (and cli) to execute a procedure on file change"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - mainProgram = "touched"; - broken = true; - } - ) { }; - "tower" = callPackage ( { mkDerivation, @@ -679916,93 +395059,6 @@ self: { } ) { }; - "toxcore" = callPackage ( - { - mkDerivation, - async, - base, - base16-bytestring, - binary, - binary-bits, - bytestring, - clock, - containers, - entropy, - groom, - hspec, - integer-gmp, - iproute, - lens-family, - MonadRandom, - msgpack-binary, - msgpack-rpc-conduit, - msgpack-types, - mtl, - network, - QuickCheck, - random, - saltine, - text, - transformers, - }: - mkDerivation { - pname = "toxcore"; - version = "0.2.11"; - sha256 = "1bsrp37b0mnib66slj8z1fvallq55qd5hzfaqm208skr6vaw6m91"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - base16-bytestring - binary - binary-bits - bytestring - clock - containers - entropy - integer-gmp - iproute - lens-family - MonadRandom - msgpack-binary - msgpack-rpc-conduit - mtl - network - QuickCheck - random - saltine - transformers - ]; - executableHaskellDepends = [ - base - binary - bytestring - groom - text - ]; - testHaskellDepends = [ - async - base - binary - binary-bits - bytestring - containers - hspec - msgpack-binary - msgpack-rpc-conduit - msgpack-types - mtl - QuickCheck - saltine - text - ]; - description = "A Tox protocol implementation in Haskell"; - license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - mainProgram = "toxsave-convert"; - } - ) { }; - "toxcore-c" = callPackage ( { mkDerivation, @@ -680062,52 +395118,6 @@ self: { } ) { 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.2.1.0"; - sha256 = "0c0xrl2ynk3b31ja4bh2pfmf8zhb4fxlazj7l07477f1yws7vqla"; - libraryHaskellDepends = [ - aeson - base - containers - http-client - servant - servant-client - text - ]; - testHaskellDepends = [ - base - containers - hspec - http-client - process - servant - servant-client - silently - time - ]; - description = "Client library for Toxiproxy: a TCP failure testing proxy"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "toysolver" = callPackage ( { mkDerivation, @@ -680314,187 +395324,6 @@ self: { } ) { }; - "tpar" = callPackage ( - { - mkDerivation, - aeson, - ansi-wl-pprint, - async, - base, - binary, - bytestring, - containers, - distributed-process, - errors, - exceptions, - friendly-time, - ghc-prim, - heaps, - network, - network-transport-inmemory, - network-transport-tcp, - optparse-applicative, - parsers, - pipes, - pipes-bytestring, - pipes-concurrency, - pipes-safe, - process, - QuickCheck, - stm, - time, - transformers, - trifecta, - }: - mkDerivation { - pname = "tpar"; - version = "0.1.0.0"; - sha256 = "0m51d5c9b403j3rbsk17gmnxd03x5cm6iip18bqahpydzsx4fswz"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - aeson - ansi-wl-pprint - async - base - binary - bytestring - containers - distributed-process - errors - exceptions - friendly-time - ghc-prim - heaps - network - network-transport-tcp - optparse-applicative - parsers - pipes - pipes-bytestring - pipes-concurrency - pipes-safe - process - stm - time - transformers - trifecta - ]; - testHaskellDepends = [ - base - binary - containers - distributed-process - exceptions - network-transport-inmemory - pipes - QuickCheck - stm - transformers - ]; - benchmarkHaskellDepends = [ - async - base - binary - bytestring - containers - distributed-process - errors - exceptions - ghc-prim - heaps - network - network-transport-tcp - optparse-applicative - pipes - pipes-bytestring - pipes-concurrency - pipes-safe - process - stm - transformers - trifecta - ]; - description = "simple, parallel job scheduling"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "tpar"; - broken = true; - } - ) { }; - - "tpb" = callPackage ( - { - mkDerivation, - aeson, - ansi-wl-pprint, - async, - base, - boxes, - bytestring, - containers, - directory, - filepath, - free, - http-client, - http-client-tls, - libnotify, - microlens, - mtl, - optparse-applicative, - pushbullet-types, - servant, - servant-client, - servant-pushbullet-client, - servant-server, - text, - time, - wai, - warp, - websockets, - wuss, - }: - mkDerivation { - pname = "tpb"; - version = "0.4.0.0"; - sha256 = "0d90vbyma5yhai0nlxa035pibn928jak879wbs6xx9ssyshcfwgy"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - aeson - ansi-wl-pprint - async - base - boxes - bytestring - containers - directory - filepath - free - http-client - http-client-tls - libnotify - microlens - mtl - optparse-applicative - pushbullet-types - servant - servant-client - servant-pushbullet-client - servant-server - text - time - wai - warp - websockets - wuss - ]; - description = "Applications for interacting with the Pushbullet API"; - license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "tpdb" = callPackage ( { mkDerivation, @@ -680596,60 +395425,6 @@ self: { } ) { }; - "trace" = callPackage ( - { - mkDerivation, - base, - containers, - deepseq, - monad-control, - mtl, - transformers, - transformers-base, - }: - mkDerivation { - pname = "trace"; - version = "0.2.0.0"; - sha256 = "14kzdd62gci1f1wskvvwai9wprkn8mq5wsdz4d5mw6kf7dcxbz41"; - libraryHaskellDepends = [ - base - containers - deepseq - monad-control - mtl - transformers - transformers-base - ]; - description = "A monad transformer for tracing provenience of errors"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "trace-call" = callPackage ( - { - mkDerivation, - base, - containers, - mtl, - }: - mkDerivation { - pname = "trace-call"; - version = "0.1"; - sha256 = "1fiz1v9d4ck8na68cywha53vgbgdk6iqad1zv6pj3lq0pwvkx6aw"; - libraryHaskellDepends = [ - base - containers - mtl - ]; - description = "functions for logging the arguments and results of function calls"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "trace-embrace" = callPackage ( { mkDerivation, @@ -680732,45 +395507,6 @@ self: { } ) { }; - "trace-function-call" = callPackage ( - { mkDerivation, base }: - mkDerivation { - pname = "trace-function-call"; - version = "0.1"; - sha256 = "0c5nsq9x59rmdkyvcrr1v94kjya48nhl9pnsad6xdmh77msf33xy"; - libraryHaskellDepends = [ base ]; - description = "Easy lightweight tracing of function arguments and results for ad hoc debugging"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "traced" = callPackage ( - { - mkDerivation, - base, - containers, - mtl, - pretty, - }: - mkDerivation { - pname = "traced"; - version = "3000"; - sha256 = "1pniabsbybhjvlq4dmys8sxc1r8rhalsahdr3hbvif287h610hi9"; - libraryHaskellDepends = [ - base - containers - mtl - pretty - ]; - description = "Simple evaluation trace"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "tracer" = callPackage ( { mkDerivation, @@ -680946,68 +395682,6 @@ self: { description = "Distributed tracing"; license = lib.licenses.bsd3; hydraPlatforms = lib.platforms.none; - } - ) { }; - - "tracked-files" = callPackage ( - { - mkDerivation, - base, - directory, - hspec, - process, - text, - }: - mkDerivation { - pname = "tracked-files"; - version = "0.1.0.0"; - sha256 = "0aw99k1kjiwhpvwk3pqhc34cff9lcv4dzg240rs7p3i4j0zf884v"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - directory - process - ]; - executableHaskellDepends = [ - base - directory - process - text - ]; - testHaskellDepends = [ - base - directory - hspec - process - ]; - description = "Package to list all tracked and untracked existing files via Git"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - mainProgram = "tracked-files"; - broken = true; - } - ) { }; - - "tracker" = callPackage ( - { - mkDerivation, - base, - containers, - glib, - }: - mkDerivation { - pname = "tracker"; - version = "0.1"; - sha256 = "1jkcwkkzg3hkvffg6y2vz2c8y0iypij4ngryc4bca9q3g4zvxzs2"; - libraryHaskellDepends = [ - base - containers - glib - ]; - description = "Client library for Tracker metadata database, indexer and search tool"; - license = "LGPL"; - hydraPlatforms = lib.platforms.none; broken = true; } ) { }; @@ -681056,72 +395730,6 @@ self: { } ) { }; - "traction" = callPackage ( - { - mkDerivation, - base, - bytestring, - containers, - exceptions, - hedgehog, - mmorph, - postgresql-simple, - resource-pool, - syb, - template-haskell, - text, - time, - transformers, - transformers-either, - }: - mkDerivation { - pname = "traction"; - version = "0.4.0"; - sha256 = "1prd4wq5jb4flzdg78861w1x8xwdbgd0b64xbksdprhlvlyrvmxk"; - libraryHaskellDepends = [ - base - bytestring - containers - exceptions - mmorph - postgresql-simple - resource-pool - syb - template-haskell - text - time - transformers - transformers-either - ]; - testHaskellDepends = [ - base - hedgehog - mmorph - postgresql-simple - resource-pool - text - ]; - description = "Tools for postgresql-simple"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "tracy" = callPackage ( - { mkDerivation, base }: - mkDerivation { - pname = "tracy"; - version = "0.1.4.0"; - sha256 = "03s31yfhnv9h1h51810vx8dsfs8r09bqigr9hs3kgb3107vyny77"; - libraryHaskellDepends = [ base ]; - description = "Convenience wrappers for non-intrusive debug tracing"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "trade-journal" = callPackage ( @@ -681233,188 +395841,6 @@ self: { inherit (pkgs) mpfr; }; - "traildb" = - callPackage - ( - { - mkDerivation, - base, - bytestring, - cereal, - containers, - criterion, - deepseq, - directory, - exceptions, - Judy, - primitive, - profunctors, - random, - text, - time, - traildb, - transformers, - unix, - vector, - }: - mkDerivation { - pname = "traildb"; - version = "0.1.4.1"; - sha256 = "1h3pscbxjl3cpcxbch4ydiv6y5j54k99v8kq61jv01gv1vjisd2r"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - bytestring - containers - directory - exceptions - primitive - profunctors - text - time - transformers - unix - vector - ]; - librarySystemDepends = [ - Judy - traildb - ]; - benchmarkHaskellDepends = [ - base - bytestring - cereal - criterion - deepseq - directory - random - ]; - description = "TrailDB bindings for Haskell"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) - { - Judy = null; - traildb = null; - }; - - "trajectory" = callPackage ( - { - mkDerivation, - aeson, - attoparsec, - base, - bytestring, - cmdargs, - containers, - http-enumerator, - http-types, - regexpr, - text, - unordered-containers, - uri, - }: - mkDerivation { - pname = "trajectory"; - version = "0.1.0.0"; - sha256 = "1n7vl903p5yg2xcyfxbxj45yd7ayd7p63fr9qfahlb0pgfl32s7h"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson - attoparsec - base - bytestring - http-enumerator - http-types - uri - ]; - executableHaskellDepends = [ - aeson - attoparsec - base - bytestring - cmdargs - containers - http-enumerator - http-types - regexpr - text - unordered-containers - uri - ]; - description = "Tools and a library for working with Trajectory"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "trans-fx-core" = callPackage ( - { mkDerivation, base }: - mkDerivation { - pname = "trans-fx-core"; - version = "0.0.1"; - sha256 = "0hkwl1dygghym6w5qci53ylkhk298bzddfvahisr2gw5wibknrfs"; - libraryHaskellDepends = [ base ]; - description = "Monadic effect framework"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "trans-fx-data" = callPackage ( - { - mkDerivation, - base, - trans-fx-core, - }: - mkDerivation { - pname = "trans-fx-data"; - version = "0.0.1"; - sha256 = "0y4hnn1ixgsqd9x829cxyn0n2psxpjczxxaa99jv9wrfwfvssgid"; - libraryHaskellDepends = [ - base - trans-fx-core - ]; - description = "Monadic effect framework"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "trans-fx-io" = callPackage ( - { - mkDerivation, - base, - time, - trans-fx-core, - trans-fx-data, - }: - mkDerivation { - pname = "trans-fx-io"; - version = "0.0.1"; - sha256 = "1yf3j35q0j5if1hpl11083bwrcyyr378wwnp98m1f5gsrlj62qpw"; - libraryHaskellDepends = [ - base - time - trans-fx-core - trans-fx-data - ]; - testHaskellDepends = [ - base - time - trans-fx-core - ]; - description = "Monadic effect framework"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "transaction" = callPackage ( { mkDerivation, @@ -681446,33 +395872,6 @@ self: { } ) { }; - "transactional-events" = callPackage ( - { - mkDerivation, - base, - ListZipper, - MonadPrompt, - stm, - }: - mkDerivation { - pname = "transactional-events"; - version = "0.1.0.0"; - sha256 = "0jb3cf4bn007x3by70piwcvcb216kvav4xzrqr1k5v483jaj2zml"; - revision = "1"; - editedCabalFile = "10sdjrzyld7wpzw687vrs91vk98pf3zk1cv9hj11jqnbnlbfbqcs"; - libraryHaskellDepends = [ - base - ListZipper - MonadPrompt - stm - ]; - description = "Transactional events, based on Concurrent ML semantics"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "transf" = callPackage ( { mkDerivation, @@ -681515,135 +395914,6 @@ self: { } ) { }; - "transfer-db" = callPackage ( - { - mkDerivation, - aeson, - base, - bytestring, - cassava, - clock, - console-program, - containers, - cpu, - hspec, - logging, - monad-control, - QuickCheck, - sqlcli, - sqlcli-odbc, - stm, - store, - store-core, - temporary, - text, - th-utilities, - time, - transformers, - yaml, - }: - mkDerivation { - pname = "transfer-db"; - version = "0.3.1.2"; - sha256 = "1vpcf4k78cnpb5n1bwn2v9l7g38nlgr2y9j8kvmi7ncfvh1nvbqw"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - bytestring - clock - containers - logging - monad-control - sqlcli - sqlcli-odbc - stm - store - store-core - temporary - text - th-utilities - time - transformers - ]; - executableHaskellDepends = [ - aeson - base - bytestring - cassava - clock - console-program - containers - logging - monad-control - sqlcli - sqlcli-odbc - stm - time - transformers - yaml - ]; - testHaskellDepends = [ - base - bytestring - cpu - hspec - QuickCheck - sqlcli - store - time - transformers - ]; - description = "ODBC database transfer"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "transfer-db"; - } - ) { }; - - "transformations" = callPackage ( - { - mkDerivation, - base, - containers, - criterion, - mtl, - multirec, - parsec, - QuickCheck, - regular, - template-haskell, - }: - mkDerivation { - pname = "transformations"; - version = "0.2.0.0"; - sha256 = "0nmzsd8q01ixfgqfgymbjwa5c8msq7chi16n4dwdf8x68mah7lam"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - containers - mtl - multirec - regular - template-haskell - ]; - executableHaskellDepends = [ - base - containers - criterion - mtl - multirec - parsec - QuickCheck - ]; - description = "Generic representation of tree transformations"; - license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - mainProgram = "Benchmark"; - } - ) { }; - "transformers_0_6_2_0" = callPackage ( { mkDerivation, base }: mkDerivation { @@ -681709,31 +395979,6 @@ self: { } ) { }; - "transformers-bifunctors" = callPackage ( - { - mkDerivation, - base, - mmorph, - transformers, - }: - mkDerivation { - pname = "transformers-bifunctors"; - version = "0.1"; - sha256 = "01s8516m9cybx5gqxk8g00fnkbwpfi5vrm1pgi62pxk1cgbx699w"; - revision = "1"; - editedCabalFile = "1vjyk2ldwfi2pkvk79p37ii5xgg1399kxqhkq3l4wvag4j5p4afs"; - libraryHaskellDepends = [ - base - mmorph - transformers - ]; - description = "Bifunctors over monad transformers"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "transformers-compat" = callPackage ( { mkDerivation, @@ -681755,96 +396000,6 @@ self: { } ) { }; - "transformers-compose" = callPackage ( - { - mkDerivation, - base, - transformers, - }: - mkDerivation { - pname = "transformers-compose"; - version = "0.1"; - sha256 = "0kvhl5s1js6i639hc6c4ib9jmgy4l1503ifs30a9ajrk97nagp6d"; - libraryHaskellDepends = [ - base - transformers - ]; - description = "Arrow-like / category-like composition for transformers"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "transformers-continue" = callPackage ( - { - mkDerivation, - base, - transformers, - }: - mkDerivation { - pname = "transformers-continue"; - version = "0.0.1"; - sha256 = "0h0qbhk7b4wm3h06m26ga3i6rqw60fjs469iq6p3j6pdvq58bb5x"; - libraryHaskellDepends = [ - base - transformers - ]; - description = "Control flow data type and monad transformer"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "transformers-convert" = callPackage ( - { - mkDerivation, - base, - data-easy, - directory, - either, - errors, - haskell-src-exts, - hlint, - hspec, - HUnit, - QuickCheck, - text, - transformers, - unix, - }: - mkDerivation { - pname = "transformers-convert"; - version = "0.2.0.0"; - sha256 = "0nx99jygbg5jlvb1sbgb9kz84af9861nkjdcshvfhlq8w069z737"; - libraryHaskellDepends = [ - base - data-easy - either - transformers - ]; - testHaskellDepends = [ - base - data-easy - directory - either - errors - haskell-src-exts - hlint - hspec - HUnit - QuickCheck - text - transformers - unix - ]; - description = "Sensible conversions between some of the monad transformers"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "transformers-eff" = callPackage ( { mkDerivation, @@ -681934,29 +396089,6 @@ self: { } ) { }; - "transformers-fix" = callPackage ( - { - mkDerivation, - base, - transformers, - }: - mkDerivation { - pname = "transformers-fix"; - version = "1.0"; - sha256 = "02aapq88k81q9r6wmvmg9zjyrmz9qzi4gss75p18lkc4dgrzzlb5"; - revision = "1"; - editedCabalFile = "126gyjr8jp42md6nblx7c0kan97jgsakvsf2vzv2pj828ax1icrs"; - libraryHaskellDepends = [ - base - transformers - ]; - description = "Monad transformer for evaluating to a fixpoint"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "transformers-free" = callPackage ( { mkDerivation, @@ -681980,490 +396112,6 @@ self: { } ) { }; - "transformers-lift" = callPackage ( - { - mkDerivation, - base, - transformers, - writer-cps-transformers, - }: - mkDerivation { - pname = "transformers-lift"; - version = "0.2.0.2"; - sha256 = "1w6wb8f8ad41l3gl4879289rb22jsgsj4qdaygf0wff45d04mq94"; - libraryHaskellDepends = [ - base - transformers - writer-cps-transformers - ]; - description = "Ad-hoc type classes for lifting"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "transformers-runnable" = callPackage ( - { - mkDerivation, - base, - transformers, - }: - mkDerivation { - pname = "transformers-runnable"; - version = "0.1.0.0"; - sha256 = "0m1vvdfi661mmxm5rghsfnwcjd2r0r7ryc3jk0nwlzs0kaw5xi1s"; - libraryHaskellDepends = [ - base - transformers - ]; - description = "A unified interface for the run operation of monad transformers"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "transformers-supply" = callPackage ( - { - mkDerivation, - base, - mtl, - transformers, - }: - mkDerivation { - pname = "transformers-supply"; - version = "0.1.0"; - sha256 = "09f9n3cxi3sjmd8yscvcyahvdsqa5db5bckj9ryaflswsdm0ximq"; - libraryHaskellDepends = [ - base - mtl - transformers - ]; - description = "Supply applicative, monad, applicative transformer and monad transformer"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "transient" = callPackage ( - { - mkDerivation, - base, - bytestring, - containers, - directory, - mtl, - random, - stm, - time, - transformers, - }: - mkDerivation { - pname = "transient"; - version = "0.7.0.0"; - sha256 = "11hiywgfv73bf128dd7h48790d356hl39fx3s54x3cri3gymwkkd"; - libraryHaskellDepends = [ - base - bytestring - containers - directory - mtl - random - stm - time - transformers - ]; - testHaskellDepends = [ - base - bytestring - containers - directory - mtl - random - stm - time - transformers - ]; - description = "composing programs with multithreading, events and distributed computing"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "transient-universe" = callPackage ( - { - mkDerivation, - aeson, - base, - base64-bytestring, - bytestring, - case-insensitive, - containers, - directory, - filepath, - hashable, - HTTP, - iproute, - mtl, - network, - network-info, - network-uri, - old-time, - process, - random, - stm, - TCache, - text, - time, - transformers, - transient, - vector, - websockets, - }: - mkDerivation { - pname = "transient-universe"; - version = "0.6.0.1"; - sha256 = "1dhgp2z0q90pnz13s88pbg6ppwl9ic7g04ikla3hg2jh019lgb1r"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson - base - base64-bytestring - bytestring - case-insensitive - containers - directory - filepath - hashable - HTTP - iproute - mtl - network - network-info - network-uri - old-time - process - random - stm - TCache - text - time - transformers - transient - vector - websockets - ]; - executableHaskellDepends = [ - aeson - base - base64-bytestring - bytestring - case-insensitive - containers - directory - filepath - hashable - HTTP - mtl - network - network-info - network-uri - old-time - process - random - stm - TCache - text - time - transformers - transient - vector - websockets - ]; - testHaskellDepends = [ - aeson - base - base64-bytestring - bytestring - case-insensitive - containers - directory - filepath - hashable - HTTP - mtl - network - network-info - network-uri - old-time - process - random - stm - TCache - text - time - transformers - transient - vector - websockets - ]; - description = "fully composable remote execution for the creation of distributed systems"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "transient-universe-tls" = callPackage ( - { - mkDerivation, - base, - bytestring, - cprng-aes, - data-default, - network, - tls, - transient, - transient-universe, - x509-store, - x509-system, - }: - mkDerivation { - pname = "transient-universe-tls"; - version = "0.1.1.0"; - sha256 = "0fawvdgm7a1s65jc3d3lfl38pak6xx39ian0cbx5sj3aqa7m99hs"; - libraryHaskellDepends = [ - base - bytestring - cprng-aes - data-default - network - tls - transient - transient-universe - x509-store - x509-system - ]; - description = "transient with secure communications"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "translatable-intset" = callPackage ( - { - mkDerivation, - base, - fingertree, - }: - mkDerivation { - pname = "translatable-intset"; - version = "0.1"; - sha256 = "0pv81l5q46a4f2dxps7fdzvmnphydgw7xz3xsi5cjad2kw0dsmkm"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - fingertree - ]; - description = "Integer sets with a constant time translate operation"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "translate" = callPackage ( - { - mkDerivation, - base, - curl, - json, - network, - utf8-string, - }: - mkDerivation { - pname = "translate"; - version = "2010.1.24"; - sha256 = "0vcqw0x7c9nb8yigvk35x72rds50kvma02rwkb757y1sk80q0mzf"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base - curl - json - network - utf8-string - ]; - description = "Haskell binding to Google's AJAX Language API for Translation and Detection"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "translate-cli" = callPackage ( - { - mkDerivation, - aeson, - aeson-lens, - base, - HUnit, - lens, - text, - turtle, - wreq, - }: - mkDerivation { - pname = "translate-cli"; - version = "1.0.0.0"; - sha256 = "0kksrdmx2vx24j84nwz106bkc4h353bwybwz7zb5mi0pwkcawfa2"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson - aeson-lens - base - lens - text - wreq - ]; - executableHaskellDepends = [ - base - text - turtle - ]; - testHaskellDepends = [ - base - HUnit - ]; - description = "Translation cli tool"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - mainProgram = "translate"; - } - ) { }; - - "trasa" = callPackage ( - { - mkDerivation, - base, - binary, - bytestring, - doctest, - hashable, - http-media, - http-types, - quantification, - text, - unordered-containers, - }: - mkDerivation { - pname = "trasa"; - version = "0.4.1"; - sha256 = "0nnr72h6ylx52ni6l7r0nnv02d540agzfhyjfjrxywbx7xz70q5c"; - libraryHaskellDepends = [ - base - binary - bytestring - hashable - http-media - http-types - quantification - text - unordered-containers - ]; - testHaskellDepends = [ - base - doctest - ]; - description = "Type Safe Web Routing"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "trasa-client" = callPackage ( - { - mkDerivation, - base, - binary, - bytestring, - case-insensitive, - containers, - http-client, - http-media, - http-types, - text, - trasa, - }: - mkDerivation { - pname = "trasa-client"; - version = "0.4"; - sha256 = "0xfqjvc1a4vbm8kvw1s11n174sc33hb7psd5lwpa6hipifw3kmb1"; - libraryHaskellDepends = [ - base - binary - bytestring - case-insensitive - containers - http-client - http-media - http-types - text - trasa - ]; - description = "Type safe http requests"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "trasa-extra" = callPackage ( - { - mkDerivation, - aeson, - base, - bytestring, - case-insensitive, - containers, - cookie, - http-types, - mtl, - path-pieces, - quantification, - text, - trasa, - trasa-server, - }: - mkDerivation { - pname = "trasa-extra"; - version = "0.1.0.0"; - sha256 = "0ka5w55zzx7cy17pwdwcjf20yl0lmpg6bqv874k0ia7hihl6sx6c"; - libraryHaskellDepends = [ - aeson - base - bytestring - case-insensitive - containers - cookie - http-types - mtl - path-pieces - quantification - text - trasa - trasa-server - ]; - description = "Extra functions for trasa"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "trasa-form" = callPackage ( { mkDerivation, @@ -682479,171 +396127,72 @@ self: { quantification, text, trasa, - trasa-server, - unordered-containers, - }: - mkDerivation { - pname = "trasa-form"; - version = "0.4.1"; - sha256 = "1wz920q7lkibc14hai2ngp81ssp273siynkyxq4d5lan2cvc4dny"; - libraryHaskellDepends = [ - base - bytestring - cookie - ditto - ditto-lucid - http-api-data - http-types - lucid - mtl - quantification - text - trasa - trasa-server - unordered-containers - ]; - description = "generate forms using lucid, ditto and trasa"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "trasa-reflex" = callPackage ( - { - mkDerivation, - base, - bytestring, - containers, - ghcjs-dom, - http-media, - http-types, - jsaddle, - reflex, - reflex-dom, - text, - trasa, - }: - mkDerivation { - pname = "trasa-reflex"; - version = "0.2"; - sha256 = "11dwymm1cvxbfhfmsfipzxbigrgi6wybz3qylq8v0022c929cd1n"; - libraryHaskellDepends = [ - base - bytestring - containers - ghcjs-dom - http-media - http-types - jsaddle - reflex - reflex-dom - text - trasa - ]; - description = "Reactive Type Safe Routing"; - license = lib.licenses.mit; - } - ) { }; - - "trasa-server" = callPackage ( - { - mkDerivation, - base, - bytestring, - case-insensitive, - containers, - http-media, - http-types, - mtl, - text, - trasa, - wai, + trasa-server, + unordered-containers, }: mkDerivation { - pname = "trasa-server"; - version = "0.5.4"; - sha256 = "1z3cq2zfygxf1v7ifga23mf7zn750925cvghmb3i54a9r0wafmb2"; + pname = "trasa-form"; + version = "0.4.1"; + sha256 = "1wz920q7lkibc14hai2ngp81ssp273siynkyxq4d5lan2cvc4dny"; libraryHaskellDepends = [ base bytestring - case-insensitive - containers - http-media + cookie + ditto + ditto-lucid + http-api-data http-types + lucid mtl + quantification text trasa - wai + trasa-server + unordered-containers ]; - description = "Type safe web server"; - license = lib.licenses.mit; + description = "generate forms using lucid, ditto and trasa"; + license = lib.licenses.bsd3; hydraPlatforms = lib.platforms.none; + broken = true; } ) { }; - "trasa-th" = callPackage ( + "trasa-reflex" = callPackage ( { mkDerivation, base, + bytestring, containers, - megaparsec, - template-haskell, + ghcjs-dom, + http-media, + http-types, + jsaddle, + reflex, + reflex-dom, + text, trasa, }: mkDerivation { - pname = "trasa-th"; - version = "0.4"; - sha256 = "1jfnm0im5qk6s6a9fbdrz228mic5ribi53fyl7nnk8gsr5lrl22z"; + pname = "trasa-reflex"; + version = "0.2"; + sha256 = "11dwymm1cvxbfhfmsfipzxbigrgi6wybz3qylq8v0022c929cd1n"; libraryHaskellDepends = [ base + bytestring containers - megaparsec - template-haskell - trasa - ]; - testHaskellDepends = [ - base + ghcjs-dom + http-media + http-types + jsaddle + reflex + reflex-dom + text trasa ]; - description = "Template Haskell to generate trasa routes"; + description = "Reactive Type Safe Routing"; license = lib.licenses.mit; hydraPlatforms = lib.platforms.none; - } - ) { }; - - "traversal-template" = callPackage ( - { - mkDerivation, - base, - gauge, - template-haskell, - util, - }: - mkDerivation { - pname = "traversal-template"; - version = "0.0.0.1"; - sha256 = "0hal3vr9p49bx6c3zhfg7xa64hf81rmkl98vb14iibrmp940vbmp"; - revision = "1"; - editedCabalFile = "0ry5z8w1bz83v2iaavzwkfg93zxdpvwd6xgg1m9d915rb992bsmx"; - libraryHaskellDepends = [ - base - template-haskell - util - ]; - testHaskellDepends = [ - base - template-haskell - util - ]; - benchmarkHaskellDepends = [ - base - gauge - template-haskell - util - ]; - description = "See README for more info"; - license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; + broken = true; } ) { }; @@ -682717,107 +396266,6 @@ self: { } ) { }; - "travis" = callPackage ( - { - mkDerivation, - aeson, - base, - bytestring, - http-conduit, - transformers, - }: - mkDerivation { - pname = "travis"; - version = "0.1.0.1"; - sha256 = "1mndbvdciz8g7z3xr3wr6l6hyyiz6kqx7xlkvwr0r52ig0kxrlzf"; - revision = "1"; - editedCabalFile = "13fx4ywabq78qcsb64ia59krz03zdf9329v4h8s22cvnvbdia5nk"; - libraryHaskellDepends = [ - aeson - base - bytestring - http-conduit - transformers - ]; - description = "A simple client implementation using Travis CI API"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "travis-meta-yaml" = callPackage ( - { - mkDerivation, - aeson, - base, - bytestring, - extra, - file-embed, - lens, - lens-aeson, - optparse-applicative, - regex-applicative, - tasty, - tasty-quickcheck, - text, - unordered-containers, - yaml, - }: - mkDerivation { - pname = "travis-meta-yaml"; - version = "0.1.0.0"; - sha256 = "154vw1fqdq8hqv0bq4wxwarnlyjnszaka5dcpv8gsj9fbkzfinfm"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson - base - bytestring - file-embed - lens - lens-aeson - regex-applicative - text - unordered-containers - yaml - ]; - executableHaskellDepends = [ - aeson - base - bytestring - file-embed - lens - lens-aeson - optparse-applicative - regex-applicative - text - unordered-containers - yaml - ]; - testHaskellDepends = [ - aeson - base - bytestring - extra - file-embed - lens - lens-aeson - regex-applicative - tasty - tasty-quickcheck - text - unordered-containers - yaml - ]; - description = ".travis.yml preprocessor"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "travis-meta-yaml"; - broken = true; - } - ) { }; - "travis-pogodi" = callPackage ( { mkDerivation, @@ -682843,69 +396291,6 @@ self: { } ) { }; - "trawl" = callPackage ( - { - mkDerivation, - base, - Cabal, - directory, - filepath, - MissingH, - optparse-applicative, - process, - split, - }: - mkDerivation { - pname = "trawl"; - version = "0.1.0.0"; - sha256 = "0bm4hpvf87r6v23kw3p2waigm0dymyl6dm3kx7gaw13vm4y3g7b9"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - Cabal - directory - filepath - MissingH - optparse-applicative - process - split - ]; - description = "A tool for finding haddocks"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "trawl"; - broken = true; - } - ) { }; - - "traypoweroff" = callPackage ( - { - mkDerivation, - base, - gtk, - process, - }: - mkDerivation { - pname = "traypoweroff"; - version = "1.0.0"; - sha256 = "0g7x1jj3x58jgbg6zcakyakc5jskcas03jakj7v5pfwdmk8kbc4m"; - isLibrary = false; - isExecutable = true; - enableSeparateDataOutput = true; - executableHaskellDepends = [ - base - gtk - process - ]; - description = "Tray Icon application to PowerOff / Reboot computer"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "traypoweroff"; - broken = true; - } - ) { }; - "treap" = callPackage ( { mkDerivation, @@ -683112,31 +396497,6 @@ self: { } ) { }; - "tree-render-text" = callPackage ( - { - mkDerivation, - base, - boxes, - containers, - mtl, - }: - mkDerivation { - pname = "tree-render-text"; - version = "0.4.0.0"; - sha256 = "04mmmj443aa8lkdj33dsk7zf985mnzfikzg10715vn5khrll0pgq"; - libraryHaskellDepends = [ - base - boxes - containers - mtl - ]; - description = "Configurable text rendering of trees"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "tree-sitter" = callPackage ( { mkDerivation, @@ -683517,147 +396877,6 @@ self: { } ) { }; - "treemap" = callPackage ( - { - mkDerivation, - base, - containers, - deepseq, - mono-traversable, - semigroups, - strict, - tasty, - tasty-hunit, - text, - transformers, - }: - mkDerivation { - pname = "treemap"; - version = "2.4.0.20180213"; - sha256 = "1yf0ihawdp51n6j1j5b4s7f1xxsyg0spaamhwpd8pmm0fncr8c2s"; - libraryHaskellDepends = [ - base - containers - deepseq - mono-traversable - semigroups - strict - transformers - ]; - testHaskellDepends = [ - base - containers - mono-traversable - semigroups - strict - tasty - tasty-hunit - text - transformers - ]; - description = "A tree of Data.Map."; - license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "treemap-html" = callPackage ( - { - mkDerivation, - base, - Cabal, - containers, - filepath, - ghc, - html, - parsec, - regex-posix, - }: - mkDerivation { - pname = "treemap-html"; - version = "0.1"; - sha256 = "0jqjwg3z528z4wchpmi208lazd1nazqdai327lwxvznzjcq1m385"; - libraryHaskellDepends = [ - base - Cabal - containers - filepath - ghc - html - parsec - regex-posix - ]; - description = "Generates HTML for Data.Tree as TreeMap"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "treemap-html-tools" = callPackage ( - { - mkDerivation, - base, - Cabal, - containers, - directory, - filepath, - ghc, - parsec, - regex-posix, - split, - treemap-html, - xml, - }: - mkDerivation { - pname = "treemap-html-tools"; - version = "0.2"; - sha256 = "0a7im8v118plxpi9dcgr1jhdlgj4f2a015dngyzfxqi7ij3cy6bf"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - Cabal - containers - directory - filepath - ghc - parsec - regex-posix - split - treemap-html - xml - ]; - doHaddock = false; - description = "Treemap related commands for producing foldable TreeMap HTML"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "treersec" = callPackage ( - { - mkDerivation, - base, - haste-compiler, - sneathlane-haste, - }: - mkDerivation { - pname = "treersec"; - version = "1"; - sha256 = "0an35kz6hq5m7wc16d08v1i05zr8fp4v2yrf6zay2lfas1ilh3i2"; - libraryHaskellDepends = [ - base - haste-compiler - sneathlane-haste - ]; - description = "Structure Editing Combinators"; - license = lib.licenses.bsd2; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "treeseq" = callPackage ( { mkDerivation, @@ -683729,149 +396948,6 @@ self: { } ) { }; - "trek-app" = callPackage ( - { - mkDerivation, - aeson, - aeson-pretty, - async, - base, - base64-bytestring, - bytestring, - cryptohash-sha256, - directory, - filepath, - hspec, - hspec-discover, - optparse-applicative, - optparse-generic, - pg-transact, - postgres-options, - postgresql-simple, - postgresql-simple-opts, - process, - resource-pool, - semigroups, - split, - temporary, - time, - time-qq, - tmp-postgres, - trek-db, - }: - mkDerivation { - pname = "trek-app"; - version = "0.1.0.0"; - sha256 = "0ilnzmxxjaza1nbvp51j17s29a70m5n92vnbrz3ys1k41hw5qpby"; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - aeson - aeson-pretty - base - base64-bytestring - bytestring - cryptohash-sha256 - directory - filepath - optparse-applicative - optparse-generic - pg-transact - postgres-options - postgresql-simple - postgresql-simple-opts - process - semigroups - split - time - trek-db - ]; - executableHaskellDepends = [ - base - optparse-generic - ]; - testHaskellDepends = [ - async - base - directory - filepath - hspec - hspec-discover - optparse-generic - postgres-options - postgresql-simple - postgresql-simple-opts - resource-pool - split - temporary - time - time-qq - tmp-postgres - trek-db - ]; - testToolDepends = [ hspec-discover ]; - description = "A PostgreSQL Database Migrator"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "trek"; - } - ) { }; - - "trek-db" = callPackage ( - { - mkDerivation, - async, - base, - bytestring, - containers, - cryptohash-sha1, - hspec, - hspec-discover, - hspec-expectations-lifted, - pg-transact, - postgresql-simple, - resource-pool, - semigroups, - text, - time, - time-qq, - tmp-postgres, - }: - mkDerivation { - pname = "trek-db"; - version = "0.1.0.0"; - sha256 = "13yc7d3a641nhfam9r05qqbfcmh61z27gsj3v3ldhli6ar3i1p92"; - libraryHaskellDepends = [ - base - bytestring - containers - cryptohash-sha1 - pg-transact - postgresql-simple - semigroups - text - time - ]; - testHaskellDepends = [ - async - base - hspec - hspec-discover - hspec-expectations-lifted - pg-transact - postgresql-simple - resource-pool - time-qq - tmp-postgres - ]; - testToolDepends = [ hspec-discover ]; - description = "A PostgreSQL Database Migrator"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "trek-lens" = callPackage ( { mkDerivation, @@ -683903,37 +396979,6 @@ self: { } ) { }; - "tremulous-query" = callPackage ( - { - mkDerivation, - attoparsec, - base, - bytestring, - containers, - deepseq, - mtl, - network, - }: - mkDerivation { - pname = "tremulous-query"; - version = "1.0.7"; - sha256 = "0vf6fh0p9ng2f0qqac8bqp259hfmv0bg146idm2pv668l1pkr7bx"; - libraryHaskellDepends = [ - attoparsec - base - bytestring - containers - deepseq - mtl - network - ]; - description = "Library for polling Tremulous servers"; - license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "trexio-hs" = callPackage ( { mkDerivation, @@ -684006,19 +397051,6 @@ self: { } ) { inherit (pkgs) trexio; }; - "trhsx" = callPackage ( - { mkDerivation }: - mkDerivation { - pname = "trhsx"; - version = "0.2.2"; - sha256 = "11jx2jf6vi7368ys39mz0ziy6xknbi0z87926n2y16am6k2h25k3"; - description = "Deprecated"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "trial" = callPackage ( { mkDerivation, @@ -684104,36 +397136,6 @@ self: { } ) { }; - "triangulation" = callPackage ( - { - mkDerivation, - array, - base, - collada-types, - haskell98, - tuple, - vector, - vector-algorithms, - }: - mkDerivation { - pname = "triangulation"; - version = "0.3"; - sha256 = "0lx9y54n6p3xf3z6dzw0b2p87hwb1rrcgzilnl51fwvcs1m0fgdf"; - libraryHaskellDepends = [ - array - base - collada-types - haskell98 - tuple - vector - vector-algorithms - ]; - description = "triangulation of polygons"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "trie-simple" = callPackage ( { mkDerivation, @@ -684193,88 +397195,6 @@ self: { } ) { }; - "tries" = callPackage ( - { - mkDerivation, - base, - bytestring, - composition, - containers, - criterion, - deepseq, - hashable, - keys, - mtl, - QuickCheck, - quickcheck-instances, - rose-trees, - semigroups, - sets, - tasty, - tasty-quickcheck, - unordered-containers, - }: - mkDerivation { - pname = "tries"; - version = "0.0.6.1"; - sha256 = "0sb4bj2dd88890hg8k3z0kpl1zk1d1r70sspviylzp6b26q3gyvm"; - libraryHaskellDepends = [ - base - bytestring - composition - containers - deepseq - hashable - keys - QuickCheck - quickcheck-instances - rose-trees - semigroups - sets - unordered-containers - ]; - testHaskellDepends = [ - base - bytestring - composition - containers - deepseq - hashable - keys - mtl - QuickCheck - quickcheck-instances - rose-trees - semigroups - sets - tasty - tasty-quickcheck - unordered-containers - ]; - benchmarkHaskellDepends = [ - base - bytestring - composition - containers - criterion - deepseq - hashable - keys - mtl - QuickCheck - quickcheck-instances - rose-trees - semigroups - sets - unordered-containers - ]; - description = "Various trie implementations in Haskell"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "trifecta" = callPackage ( { mkDerivation, @@ -684348,99 +397268,6 @@ self: { } ) { }; - "trigger" = callPackage ( - { - mkDerivation, - aeson, - ansi-terminal, - base, - clock, - directory, - exceptions, - filepath, - formatting, - fsnotify, - Glob, - hspec, - process, - protolude, - text, - time, - twitch, - yaml, - }: - mkDerivation { - pname = "trigger"; - version = "1.0.2.0"; - sha256 = "1nhhn3ackzhbikpn5q62kzqrk1g0lnzkddkw2p1c3iis3my148ik"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson - ansi-terminal - base - clock - directory - exceptions - filepath - formatting - fsnotify - Glob - process - protolude - text - time - twitch - yaml - ]; - executableHaskellDepends = [ - base - protolude - ]; - testHaskellDepends = [ - base - hspec - protolude - ]; - description = "Trigger is a cross platform file system watcher for super fast build-and-restart workflows"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "trigger"; - } - ) { }; - - "trim" = callPackage ( - { - mkDerivation, - base, - directory, - hspec, - optparse-applicative, - }: - mkDerivation { - pname = "trim"; - version = "0.1.0.0"; - sha256 = "0zpn8w4fzswwcb081hvl6cy5gdid69wx3i1gj3sgkxf01347m23m"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base ]; - executableHaskellDepends = [ - base - directory - optparse-applicative - ]; - testHaskellDepends = [ - base - hspec - ]; - description = "A command-line tool for trimming whitespace"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "trim"; - broken = true; - } - ) { }; - "trimdent" = callPackage ( { mkDerivation, @@ -684467,60 +397294,6 @@ self: { } ) { }; - "trimpolya" = callPackage ( - { - mkDerivation, - base, - bio, - bytestring, - simpleargs, - }: - mkDerivation { - pname = "trimpolya"; - version = "0"; - sha256 = "1y559q5p0pzlr468224c6m5859z72gg0sk2vrgl82ilwkjn08i9i"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - bio - bytestring - simpleargs - ]; - description = "Search for, annotate and trim poly-A tail"; - license = "GPL"; - hydraPlatforms = lib.platforms.none; - mainProgram = "trimpolya"; - } - ) { }; - - "tripLL" = callPackage ( - { - mkDerivation, - base, - bytestring, - cereal, - filepath, - leveldb-haskell, - }: - mkDerivation { - pname = "tripLL"; - version = "0.1.0.0"; - sha256 = "1ay3mvpw1vs8bmsy6mk9zqxa2s04dz3skg050vbnzahmr49632r2"; - libraryHaskellDepends = [ - base - bytestring - cereal - filepath - leveldb-haskell - ]; - description = "A very simple triple store"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "triplesec" = callPackage ( { mkDerivation, @@ -684566,29 +397339,6 @@ self: { } ) { }; - "trivia" = callPackage ( - { - mkDerivation, - base, - comonad, - distributive, - }: - mkDerivation { - pname = "trivia"; - version = "0.0"; - sha256 = "03xmzjqwk6492jmmbq6066ymsxb0wk0pmyf0c5f018nfps0g3i78"; - libraryHaskellDepends = [ - base - comonad - distributive - ]; - description = "The trivial monad and comonad"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "trivial-constraint" = callPackage ( { mkDerivation, base }: mkDerivation { @@ -684601,87 +397351,6 @@ self: { } ) { }; - "tropical" = callPackage ( - { - mkDerivation, - base, - semiring-simple, - }: - mkDerivation { - pname = "tropical"; - version = "0.0.0.2"; - sha256 = "1in9jjfzbqws4bk83082yra2gcb5b095948qyji63ckbz3igp0k2"; - libraryHaskellDepends = [ - base - semiring-simple - ]; - description = "A library for tropical mathematics"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "tropical-geometry" = callPackage ( - { - mkDerivation, - algebra, - base, - containers, - criterion, - gloss, - hlint-test, - lens, - matrix, - numeric-prelude, - semiring-simple, - singletons, - sized, - tasty, - tasty-hspec, - tasty-hunit, - type-natural, - }: - mkDerivation { - pname = "tropical-geometry"; - version = "0.0.0.1"; - sha256 = "12qcfb98yzm0ijnpzjqp3z20i0vvlpvfy4gpz7a001q8sgchd182"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - algebra - base - containers - gloss - lens - matrix - numeric-prelude - semiring-simple - singletons - sized - type-natural - ]; - executableHaskellDepends = [ base ]; - testHaskellDepends = [ - base - containers - hlint-test - tasty - tasty-hspec - tasty-hunit - ]; - benchmarkHaskellDepends = [ - base - criterion - ]; - description = "A Tropical Geometry package for Haskell"; - license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - mainProgram = "tropical-geometry"; - broken = true; - } - ) { }; - "true-name" = callPackage ( { mkDerivation, @@ -684735,64 +397404,6 @@ self: { } ) { }; - "trurl" = callPackage ( - { - mkDerivation, - aeson, - base, - bytestring, - directory, - filemanip, - filepath, - hastache, - hastache-aeson, - http-conduit, - MissingH, - safe, - split, - tar, - tasty, - tasty-hunit, - text, - unordered-containers, - }: - mkDerivation { - pname = "trurl"; - version = "0.4.1.0"; - sha256 = "09hysr5klv5wpz78xld7v8bk56y1h0a9axa2rldn6k239qswz6ck"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson - base - bytestring - directory - filemanip - filepath - hastache - hastache-aeson - http-conduit - MissingH - safe - split - tar - text - unordered-containers - ]; - executableHaskellDepends = [ base ]; - testHaskellDepends = [ - base - hastache - tasty - tasty-hunit - ]; - description = "Haskell template code generator"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "trurl"; - } - ) { }; - "trust-chain" = callPackage ( { mkDerivation, @@ -684858,59 +397469,6 @@ self: { } ) { }; - "tsession" = callPackage ( - { - mkDerivation, - base, - containers, - mtl, - time, - transformers, - }: - mkDerivation { - pname = "tsession"; - version = "0.1"; - sha256 = "1rj11vyd272h66cjx8pq6smcpi65n3vlfv4g7indcnpcz4w5l6rk"; - revision = "2"; - editedCabalFile = "0msyf0rkd6aj8y632ippnrz554r6r5l7j45dnlnqlf1kls29kn5g"; - libraryHaskellDepends = [ - base - containers - mtl - time - transformers - ]; - description = "A Transaction Framework for Web Applications"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "tsession-happstack" = callPackage ( - { - mkDerivation, - base, - happstack-server, - transformers, - tsession, - }: - mkDerivation { - pname = "tsession-happstack"; - version = "0.1"; - sha256 = "1sv62iqrlvzx95g6nd307y8zknp2h3ir06zc6qw4y221wz21rfyz"; - libraryHaskellDepends = [ - base - happstack-server - transformers - tsession - ]; - description = "A Transaction Framework for Happstack"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "tsetchan" = callPackage ( { mkDerivation, @@ -685076,67 +397634,6 @@ self: { } ) { }; - "tsp-viz" = callPackage ( - { - mkDerivation, - base, - gloss, - stm, - vector, - }: - mkDerivation { - pname = "tsp-viz"; - version = "0.1.0.0"; - sha256 = "0wrnpmvds2amm85a5j1c1nqffy6vj4y6xq21w5ia1051wrxzrbjk"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - gloss - stm - vector - ]; - description = "Real time TSP tour visualization"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "tsp-viz"; - broken = true; - } - ) { }; - - "tsparse" = callPackage ( - { - mkDerivation, - base, - Decimal, - parsec, - pretty, - process, - split, - time, - }: - mkDerivation { - pname = "tsparse"; - version = "0.4.0.0"; - sha256 = "0s5vlpvi1w6q2zxv586plvhs9p6rlc7653x7jzygfir70754n6si"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - Decimal - parsec - pretty - process - split - time - ]; - description = "Parses U.S. federal Thrift Savings Plan PDF quarterly statements"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "tst" = callPackage ( { mkDerivation, base }: mkDerivation { @@ -685149,52 +397646,6 @@ self: { } ) { }; - "tsuntsun" = callPackage ( - { - mkDerivation, - base, - conduit, - conduit-combinators, - conduit-extra, - directory, - filepath, - gtk3, - optparse-applicative, - resourcet, - stm, - template-haskell, - text, - typed-process, - }: - mkDerivation { - pname = "tsuntsun"; - version = "0.2.0.0"; - sha256 = "1pj8n0iy6cg4in09csnfvqzrx8s8ch6pvwxm2mq54ba8r0cpv7yz"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - conduit - conduit-combinators - conduit-extra - directory - filepath - gtk3 - optparse-applicative - resourcet - stm - template-haskell - text - typed-process - ]; - description = "Interacts with tesseract to ease reading of RAW Japanese manga"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "tsuntsun"; - broken = true; - } - ) { }; - "tsv2csv" = callPackage ( { mkDerivation, @@ -685220,171 +397671,6 @@ self: { } ) { }; - "tsvsql" = callPackage ( - { - mkDerivation, - attoparsec, - base, - bytestring, - containers, - optparse-applicative, - string-qq, - text, - unordered-containers, - }: - mkDerivation { - pname = "tsvsql"; - version = "0.2.1.0"; - sha256 = "1qyqpwz0jp6wxbvlihm858pisy9m0qp4xjx9q0n3v3ng3zh2k2jw"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - attoparsec - base - bytestring - containers - optparse-applicative - string-qq - text - unordered-containers - ]; - description = "Template tsv into SQL"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - mainProgram = "tsvsql"; - broken = true; - } - ) { }; - - "tsweb" = callPackage ( - { - mkDerivation, - base, - beam-core, - beam-postgres, - bytestring, - clay, - cryptonite, - http-api-data, - hvect, - postgresql-simple, - pretty-simple, - reroute, - resource-pool, - Spock, - Spock-core, - stm-containers, - superrecord, - tagged, - text, - time, - transformers, - }: - mkDerivation { - pname = "tsweb"; - version = "0.1.2"; - sha256 = "00akn8nj068pd3c8zhd49n3v9y2a8slykwx8sc3mcj363bwin8ad"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - beam-core - beam-postgres - bytestring - clay - cryptonite - http-api-data - hvect - postgresql-simple - pretty-simple - reroute - resource-pool - Spock - Spock-core - stm-containers - superrecord - tagged - text - time - transformers - ]; - executableHaskellDepends = [ - base - beam-core - beam-postgres - bytestring - clay - cryptonite - http-api-data - hvect - postgresql-simple - pretty-simple - reroute - resource-pool - Spock - Spock-core - stm-containers - superrecord - tagged - text - time - transformers - ]; - description = "An API binding Web.Spock to Database.Beam"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "tsweb"; - } - ) { }; - - "ttask" = callPackage ( - { - mkDerivation, - base, - directory, - either, - extra, - filepath, - lens, - optparse-declarative, - safe, - strict, - time, - transformers, - }: - mkDerivation { - pname = "ttask"; - version = "0.0.1.0"; - sha256 = "0z3h2qz3canraz068bn55gh1zgl2mlf637rxs9lywc9mx4k4j5gz"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - directory - either - extra - filepath - lens - safe - strict - time - transformers - ]; - executableHaskellDepends = [ - base - optparse-declarative - time - transformers - ]; - testHaskellDepends = [ base ]; - description = "This is task management tool for yourself, that inspired by scrum"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "ttask"; - broken = true; - } - ) { }; - "ttc" = callPackage ( { mkDerivation, @@ -685631,117 +397917,6 @@ self: { } ) { }; - "tttool" = callPackage ( - { - mkDerivation, - aeson, - base, - base64-bytestring, - binary, - blaze-svg, - bytestring, - containers, - directory, - executable-path, - filepath, - hashable, - haskeline, - HPDF, - JuicyPixels, - mtl, - natural-sort, - optparse-applicative, - parsec, - process, - random, - split, - spool, - template-haskell, - text, - time, - vector, - yaml, - zlib, - }: - mkDerivation { - pname = "tttool"; - version = "1.8.1"; - sha256 = "0y33vflq6l51yvv7ilkvra75lhia18gmif0jc5gaqigxl1adfkw1"; - revision = "1"; - editedCabalFile = "1rppvnlrgc6kk5k8m0jn0ckyv0bq0l3h2r4gvkbjbd25mj0ls7gh"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - aeson - base - base64-bytestring - binary - blaze-svg - bytestring - containers - directory - executable-path - filepath - hashable - haskeline - HPDF - JuicyPixels - mtl - natural-sort - optparse-applicative - parsec - process - random - split - spool - template-haskell - text - time - vector - yaml - zlib - ]; - description = "Working with files for the Tiptoi® pen"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - mainProgram = "tttool"; - broken = true; - } - ) { }; - - "tubes" = callPackage ( - { - mkDerivation, - base, - comonad, - contravariant, - free, - mtl, - profunctors, - semigroups, - transformers, - }: - mkDerivation { - pname = "tubes"; - version = "2.1.1.0"; - sha256 = "1a1vj7syh8pw5bzfy7mil4my3hnv4zbj7rdp8jairc6j1j674zwn"; - libraryHaskellDepends = [ - base - comonad - contravariant - free - mtl - profunctors - semigroups - transformers - ]; - description = "Write stream processing computations with side effects in a series of tubes"; - license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "tuntap" = callPackage ( { mkDerivation, @@ -685765,58 +397940,6 @@ self: { } ) { }; - "tuntap-simple" = callPackage ( - { - mkDerivation, - base, - ioctl, - }: - mkDerivation { - pname = "tuntap-simple"; - version = "0.1.0.0"; - sha256 = "135gqfbzkk02c9xpprm7wj3lkkz9i47z37ckr24xj61q1hi6gjyf"; - revision = "2"; - editedCabalFile = "15jav5fj1ggjczn2mh4yv5rmsfydwc17vzlah3j1z5mkyq1691i8"; - libraryHaskellDepends = [ - base - ioctl - ]; - description = "A simple tun/tap library"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "tup-functor" = callPackage ( - { - mkDerivation, - base, - cpphs, - haskell-src-exts, - parsec2, - }: - mkDerivation { - pname = "tup-functor"; - version = "0.3.0.0"; - sha256 = "1kj68g5g9m46dpncbrisl19gah8pzac33iyr09ym1pqk3x6jh9ix"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - cpphs - ]; - executableHaskellDepends = [ - base - haskell-src-exts - parsec2 - ]; - description = "Homogeneous tuples"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "tuplepp"; - } - ) { }; - "tuple" = callPackage ( { mkDerivation, @@ -685924,26 +398047,6 @@ self: { } ) { }; - "tuple-gen" = callPackage ( - { - mkDerivation, - base, - combinat, - }: - mkDerivation { - pname = "tuple-gen"; - version = "2.0"; - sha256 = "0bgwsxq8wrh76hhbwadv0rag4c7dx3644zrh2aflnsych0rncvd7"; - libraryHaskellDepends = [ - base - combinat - ]; - description = "Enum instances for tuples where the digits increase with the same speed"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "tuple-generic" = callPackage ( { mkDerivation, base }: mkDerivation { @@ -685956,97 +398059,6 @@ self: { } ) { }; - "tuple-hlist" = callPackage ( - { - mkDerivation, - base, - HList, - OneTuple, - }: - mkDerivation { - pname = "tuple-hlist"; - version = "0.2.0.1"; - sha256 = "16vj2n521yd4fxxcfgizfr37y7kkpk57q9s9p9z9xhiw0k974r48"; - libraryHaskellDepends = [ - base - HList - OneTuple - ]; - description = "Functions to convert between tuples and HLists"; - license = "unknown"; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "tuple-lenses" = callPackage ( - { - mkDerivation, - base, - lens, - template-haskell, - }: - mkDerivation { - pname = "tuple-lenses"; - version = "0.1.0.2"; - sha256 = "1qq1sla89410wr9pnkmj100izkraad1gr163815p3dvh7qi04c7w"; - libraryHaskellDepends = [ - base - lens - template-haskell - ]; - description = "Stock FieldN combos and generators"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "tuple-morph" = callPackage ( - { - mkDerivation, - base, - HList, - template-haskell, - }: - mkDerivation { - pname = "tuple-morph"; - version = "0.1.0.0"; - sha256 = "1zi6nh1z7z2jz5h0pvdm2czfy1rx7ixnnvp9akcpas19npgyfk94"; - revision = "4"; - editedCabalFile = "1npahk37am7x6n4lfdk6y1i1690drg39j63gzb2jx5ivzxhlcp43"; - libraryHaskellDepends = [ - base - HList - template-haskell - ]; - description = "Morph between tuples, or convert them from and to HLists"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "tuple-ops" = callPackage ( - { - mkDerivation, - base, - type-combinators, - }: - mkDerivation { - pname = "tuple-ops"; - version = "0.0.0.3"; - sha256 = "09993bfndv2iljq6sspihysv22d2f8g0lar03p7ghiyp81m6j0ax"; - libraryHaskellDepends = [ - base - type-combinators - ]; - description = "various operations on n-ary tuples via GHC.Generics"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "tuple-sop" = callPackage ( { mkDerivation, @@ -686122,27 +398134,6 @@ self: { } ) { }; - "tupleinstances" = callPackage ( - { - mkDerivation, - base, - template-haskell, - }: - mkDerivation { - pname = "tupleinstances"; - version = "0.0.1"; - sha256 = "0kcmcg1fxsslpzpg766r9hr8aysg0s5fyang2xc0aa77zi71qyi3"; - libraryHaskellDepends = [ - base - template-haskell - ]; - description = "Functor, Applicative and Monad for n-ary tuples"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "tuples" = callPackage ( { mkDerivation, @@ -686212,78 +398203,6 @@ self: { } ) { }; - "turing-machines" = callPackage ( - { mkDerivation, base }: - mkDerivation { - pname = "turing-machines"; - version = "0.1.0.1"; - sha256 = "1anh6x4vdkys5b89ni18gsh3fl68v667qg5aw1867s4hwlvsii35"; - libraryHaskellDepends = [ base ]; - description = "A simple simulator for Turing machines"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "turing-music" = callPackage ( - { - mkDerivation, - ALUT, - base, - }: - mkDerivation { - pname = "turing-music"; - version = "0.1.1"; - sha256 = "163fggvjixs6m2rwc3gd3s9703r2mnz3bknii1aagwzvw5kczky3"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - ALUT - base - ]; - description = "Plays music generated by Turing machines with 5 states and 2 symbols"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "turing-music"; - broken = true; - } - ) { }; - - "turingMachine" = callPackage ( - { - mkDerivation, - base, - containers, - hspec, - hspecVariant, - mtl, - QuickCheck, - QuickCheckVariant, - }: - mkDerivation { - pname = "turingMachine"; - version = "1.0.0.0"; - sha256 = "04lpvqandjqwwy494a5mb4nvig8lw3fn9ncrb8d2gkfklxga17gp"; - libraryHaskellDepends = [ - base - containers - mtl - ]; - testHaskellDepends = [ - base - containers - hspec - hspecVariant - QuickCheck - QuickCheckVariant - ]; - description = "An implementation of Turing Machine and Automaton"; - license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "turkish-deasciifier" = callPackage ( { mkDerivation, @@ -686540,46 +398459,6 @@ self: { } ) { }; - "turtle-options" = callPackage ( - { - mkDerivation, - base, - HUnit, - optional-args, - parsec, - text, - turtle, - }: - mkDerivation { - pname = "turtle-options"; - version = "0.1.0.4"; - sha256 = "1khsslhy5s0q10djlrlz5xqgwak8kq26yay14xw3k4xwq05npiy2"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - optional-args - parsec - text - turtle - ]; - executableHaskellDepends = [ - base - turtle - ]; - testHaskellDepends = [ - base - HUnit - parsec - ]; - description = "Collection of command line options and parsers for these options"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "example"; - broken = true; - } - ) { }; - "tw" = callPackage ( { mkDerivation, @@ -686657,33 +398536,6 @@ self: { } ) { }; - "tweak" = callPackage ( - { - mkDerivation, - base, - containers, - lens, - stm, - transformers, - }: - mkDerivation { - pname = "tweak"; - version = "0.1.0.1"; - sha256 = "1l5y94gac9s55wgn6w610pqb63c8l20vmlpsnmgbzw1f9vbnzgiw"; - libraryHaskellDepends = [ - base - containers - lens - stm - transformers - ]; - description = "A library for incremental computing"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "twee" = callPackage ( { mkDerivation, @@ -686712,827 +398564,239 @@ self: { split symbol twee-lib - ]; - testHaskellDepends = [ - base - containers - pretty - QuickCheck - twee-lib - ]; - description = "An equational theorem prover"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "twee"; - broken = true; - } - ) { }; - - "twee-lib" = callPackage ( - { - mkDerivation, - base, - bytestring, - cereal, - containers, - dlist, - ghc-prim, - pretty, - primitive, - QuickCheck, - random, - transformers, - uglymemo, - }: - mkDerivation { - pname = "twee-lib"; - version = "2.5"; - sha256 = "0svy129pd9k8ssm332ni950r0i7nj82d11ajcsgk8v4fh17b3xyx"; - libraryHaskellDepends = [ - base - bytestring - cereal - containers - dlist - ghc-prim - pretty - primitive - QuickCheck - random - transformers - uglymemo - ]; - description = "An equational theorem prover"; - license = lib.licenses.bsd3; - } - ) { }; - - "tweet-hs" = callPackage ( - { - mkDerivation, - ansi-wl-pprint, - authenticate-oauth, - base, - bytestring, - composition-prelude, - containers, - criterion, - directory, - extra, - htoml-megaparsec, - http-client, - http-client-tls, - http-types, - megaparsec, - microlens, - optparse-applicative, - split, - text, - unordered-containers, - }: - mkDerivation { - pname = "tweet-hs"; - version = "1.0.2.3"; - sha256 = "0chkg9xkancp6dms0ha0m86fkcmvk690q6z0rvprg37lhj42xp1i"; - revision = "1"; - editedCabalFile = "06z9iimj3c3c1cx4i7lzvla2355qayqxp1a45fp6rq2xzjr50np1"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - ansi-wl-pprint - authenticate-oauth - base - bytestring - composition-prelude - containers - extra - htoml-megaparsec - http-client - http-client-tls - http-types - megaparsec - microlens - split - text - unordered-containers - ]; - executableHaskellDepends = [ - base - bytestring - directory - optparse-applicative - ]; - benchmarkHaskellDepends = [ - base - bytestring - criterion - megaparsec - ]; - description = "Command-line tool for twitter"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "tweet"; - } - ) { }; - - "twentefp" = callPackage ( - { - mkDerivation, - base, - gloss, - parsec, - time, - }: - mkDerivation { - pname = "twentefp"; - version = "0.4.2"; - sha256 = "1kmf907i6g6lfhw8g403b6701srrd298n4r53dvcqzy72c5qaixl"; - libraryHaskellDepends = [ - base - gloss - parsec - time - ]; - description = "Lab Assignments Environment at Univeriteit Twente"; - license = lib.licenses.bsd3; - } - ) { }; - - "twentefp-eventloop-graphics" = callPackage ( - { - mkDerivation, - base, - network, - text, - twentefp-number, - twentefp-websockets, - }: - mkDerivation { - pname = "twentefp-eventloop-graphics"; - version = "0.1.0.4"; - sha256 = "086vx0849c7kmsz5pa4jwzp24cwaf4482bq37dr7jrqx22hvk4lm"; - revision = "1"; - editedCabalFile = "05zq3iv3307mhjwfdxjjnhq2kljbrzacwnga8icizl9qx7spx21a"; - libraryHaskellDepends = [ - base - network - text - twentefp-number - twentefp-websockets - ]; - description = "Used as Lab Assignments Environment at the University of Twente"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "twentefp-eventloop-trees" = callPackage ( - { - mkDerivation, - base, - eventloop, - }: - mkDerivation { - pname = "twentefp-eventloop-trees"; - version = "0.1.2.4"; - sha256 = "03aj2awy7prznv8m7048idvn0vs3rfrbcamr4zakjdpxyjknz054"; - libraryHaskellDepends = [ - base - eventloop - ]; - description = "Tree type and show functions for lab assignment of University of Twente. Contains RoseTree and RedBlackTree"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "twentefp-graphs" = callPackage ( - { - mkDerivation, - base, - twentefp-eventloop-graphics, - }: - mkDerivation { - pname = "twentefp-graphs"; - version = "0.1.0.4"; - sha256 = "0g0py8cb4z9i9pjhka2pyjm8vfai9x3k0vmlb06g157ish97qvir"; - libraryHaskellDepends = [ - base - twentefp-eventloop-graphics - ]; - description = "Lab Assignments Environment at Univeriteit Twente"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "twentefp-number" = callPackage ( - { - mkDerivation, - base, - parsec, - }: - mkDerivation { - pname = "twentefp-number"; - version = "0.1.0.2"; - sha256 = "1kh0a6h4syx98ygwidw6cc24ci91v1blshpfcczx96z850x1h6xf"; - libraryHaskellDepends = [ - base - parsec - ]; - description = "Lab Assignments Environment at Univeriteit Twente"; - license = lib.licenses.bsd3; - } - ) { }; - - "twentefp-rosetree" = callPackage ( - { - mkDerivation, - base, - twentefp-eventloop-graphics, - twentefp-number, - }: - mkDerivation { - pname = "twentefp-rosetree"; - version = "0.1.0.1"; - sha256 = "1dy4hmwciaglz2kfdk9fxf6hik7pgr4a4xj9y9l7s7p4k35r5bd7"; - libraryHaskellDepends = [ - base - twentefp-eventloop-graphics - twentefp-number - ]; - description = "RoseTree type and show functions for lab assignment of University of Twente"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "twentefp-trees" = callPackage ( - { - mkDerivation, - base, - twentefp-eventloop-graphics, - }: - mkDerivation { - pname = "twentefp-trees"; - version = "0.1.0.2"; - sha256 = "0mmj96xbqjzm4cylk39pib9jfwh6m350q1cwf6ij8pl0swab3b0g"; - libraryHaskellDepends = [ - base - twentefp-eventloop-graphics - ]; - description = "Tree type and show functions for lab assignment of University of Twente. Contains RoseTree and ParseTree"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "twentefp-websockets" = callPackage ( - { - mkDerivation, - attoparsec, - base, - base64-bytestring, - binary, - blaze-builder, - bytestring, - case-insensitive, - concurrent-extra, - containers, - entropy, - io-streams, - mtl, - network, - random, - SHA, - text, - }: - mkDerivation { - pname = "twentefp-websockets"; - version = "0.1.0.1"; - sha256 = "08227phlyvvg01n7zqyivx2f3dpfbipxaajqz4fc07zhkpmxy8h4"; - libraryHaskellDepends = [ - attoparsec - base - base64-bytestring - binary - blaze-builder - bytestring - case-insensitive - concurrent-extra - containers - entropy - io-streams - mtl - network - random - SHA - text - ]; - description = "A fork of the popular websockets package. It is used for the practical assignments of the University of Twente. A sensible and clean way to write WebSocket-capable servers in Haskell."; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "twentyseven" = callPackage ( - { - mkDerivation, - base, - containers, - deepseq, - directory, - filepath, - heap, - monad-loops, - MonadRandom, - mtl, - newtype, - optparse-applicative, - primitive, - QuickCheck, - ref-fd, - split, - tagged, - tasty, - tasty-hunit, - tasty-quickcheck, - template-haskell, - time, - transformers, - vector, - }: - mkDerivation { - pname = "twentyseven"; - version = "1.0.0"; - sha256 = "0j1m96s6iajcbpf88i984xrw9233jrzapr2bz9xqc015qccpbvgl"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - containers - deepseq - directory - filepath - heap - monad-loops - MonadRandom - mtl - newtype - primitive - ref-fd - template-haskell - vector - ]; - executableHaskellDepends = [ - base - optparse-applicative - time - transformers - ]; - testHaskellDepends = [ - base - QuickCheck - split - tagged - tasty - tasty-hunit - tasty-quickcheck - vector - ]; - description = "Rubik's cube solver"; - license = lib.licenses.mit; - mainProgram = "twentyseven"; - } - ) { }; - - "twfy-api-client" = callPackage ( - { - mkDerivation, - aeson, - aeson-compat, - base, - base-compat, - bytestring, - either, - exceptions, - http-client, - http-client-tls, - http-media, - mtl, - servant, - servant-client, - servant-server, - text, - transformers, - }: - mkDerivation { - pname = "twfy-api-client"; - version = "0.1.0.0"; - sha256 = "0rg24va2g8wiib6nfpl3xf7ggnk1yk41cs4c43yadyyv0d7a67y1"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson - aeson-compat - base - base-compat - bytestring - either - exceptions - http-client - http-client-tls - http-media - mtl - servant - servant-client - servant-server - text - transformers - ]; - executableHaskellDepends = [ - aeson - aeson-compat - base - base-compat - either - http-client - http-client-tls - mtl - servant - servant-client - text - transformers - ]; - testHaskellDepends = [ base ]; - description = "They Work For You API Client Library"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "twfy-api-client"; - } - ) { }; - - "twhs" = callPackage ( - { - mkDerivation, - ansi-terminal, - authenticate-oauth, - base, - bytestring, - case-insensitive, - conduit, - containers, - data-default, - hspec, - http-conduit, - lens, - monad-control, - monad-logger, - network, - QuickCheck, - resourcet, - text, - transformers, - transformers-base, - twitter-conduit, - }: - mkDerivation { - pname = "twhs"; - version = "0.1.0.3"; - sha256 = "0d06bv26lvr4va431h2146v88bqcxvfr0wp36f7l4a6xqgghf2l1"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - ansi-terminal - authenticate-oauth - base - bytestring - case-insensitive - conduit - containers - data-default - http-conduit - lens - monad-control - monad-logger - network - resourcet - text - transformers - transformers-base - twitter-conduit - ]; - executableHaskellDepends = [ - ansi-terminal - authenticate-oauth - base - bytestring - case-insensitive - conduit - containers - data-default - http-conduit - lens - monad-control - monad-logger - network - resourcet - text - transformers - transformers-base - twitter-conduit - ]; - testHaskellDepends = [ - base - hspec - QuickCheck - ]; - description = "CLI twitter client"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - mainProgram = "twhs"; - broken = true; - } - ) { }; - - "twidge" = callPackage ( - { - mkDerivation, - aeson, - base, - binary, - bytestring, - ConfigFile, - curl, - directory, - hoauth, - HSH, - hslogger, - MissingH, - mtl, - network, - old-locale, - parsec, - regex-posix, - text, - time, - unix, - utf8-string, - }: - mkDerivation { - pname = "twidge"; - version = "1.1.2"; - sha256 = "162n5w4z3a1qyasd39q7751z872v31njzyhrnjfjxhsni3kif8b1"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - aeson + ]; + testHaskellDepends = [ base - binary - bytestring - ConfigFile - curl - directory - hoauth - HSH - hslogger - MissingH - mtl - network - old-locale - parsec - regex-posix - text - time - unix - utf8-string + containers + pretty + QuickCheck + twee-lib ]; - description = "Unix Command-Line Twitter and Identica Client"; - license = "GPL"; + description = "An equational theorem prover"; + license = lib.licenses.bsd3; hydraPlatforms = lib.platforms.none; - mainProgram = "twidge"; + mainProgram = "twee"; + broken = true; } ) { }; - "twilight-stm" = callPackage ( + "twee-lib" = callPackage ( { mkDerivation, base, + bytestring, + cereal, containers, - haskell98, - mtl, + dlist, + ghc-prim, + pretty, + primitive, + QuickCheck, + random, + transformers, + uglymemo, }: mkDerivation { - pname = "twilight-stm"; - version = "1.2"; - sha256 = "1hp9mkfasjyh1ji6gfmdpmx3nm9g22ag3y47nva7i30bjrs65cdr"; + pname = "twee-lib"; + version = "2.5"; + sha256 = "0svy129pd9k8ssm332ni950r0i7nj82d11ajcsgk8v4fh17b3xyx"; libraryHaskellDepends = [ base + bytestring + cereal containers - haskell98 - mtl + dlist + ghc-prim + pretty + primitive + QuickCheck + random + transformers + uglymemo ]; - description = "STM library with safe irrevocable I/O and inconsistency repair"; - license = "LGPL"; - hydraPlatforms = lib.platforms.none; + description = "An equational theorem prover"; + license = lib.licenses.bsd3; } ) { }; - "twilio" = callPackage ( + "tweet-hs" = callPackage ( { mkDerivation, - aeson, + ansi-wl-pprint, + authenticate-oauth, base, - binary, bytestring, - Cabal, + composition-prelude, containers, - deepseq, - errors, - exceptions, - free, - hashable, - hspec, + criterion, + directory, + extra, + htoml-megaparsec, http-client, http-client-tls, http-types, - mtl, - network-uri, - old-locale, - QuickCheck, - quickcheck-instances, - scientific, - template-haskell, + megaparsec, + microlens, + optparse-applicative, + split, text, - time, - transformers, unordered-containers, }: mkDerivation { - pname = "twilio"; - version = "0.3.0.0"; - sha256 = "1qxbv6w482hjya6bypz8d6mizy9w03b1j43m0v1h4jwi7v71br9r"; + pname = "tweet-hs"; + version = "1.0.2.3"; + sha256 = "0chkg9xkancp6dms0ha0m86fkcmvk690q6z0rvprg37lhj42xp1i"; + revision = "1"; + editedCabalFile = "06z9iimj3c3c1cx4i7lzvla2355qayqxp1a45fp6rq2xzjr50np1"; + isLibrary = true; + isExecutable = true; libraryHaskellDepends = [ - aeson + ansi-wl-pprint + authenticate-oauth base - binary bytestring + composition-prelude containers - deepseq - errors - exceptions - free - hashable + extra + htoml-megaparsec http-client http-client-tls http-types - mtl - network-uri - old-locale - scientific - template-haskell + megaparsec + microlens + split text - time - transformers unordered-containers ]; - testHaskellDepends = [ - aeson + executableHaskellDepends = [ base bytestring - Cabal - hspec - http-client - http-client-tls - network-uri - QuickCheck - quickcheck-instances - text - transformers + directory + optparse-applicative ]; - doCheck = false; - description = "Twilio REST API library for Haskell"; + benchmarkHaskellDepends = [ + base + bytestring + criterion + megaparsec + ]; + description = "Command-line tool for twitter"; license = lib.licenses.bsd3; hydraPlatforms = lib.platforms.none; - broken = true; + mainProgram = "tweet"; } ) { }; - "twill" = callPackage ( + "twentefp" = callPackage ( { mkDerivation, - aeson, - attoparsec, base, - base16-bytestring, - base64-bytestring, - bytestring, - cryptohash, - data-default, - datetime, - errors, - old-locale, - QuickCheck, - text, + gloss, + parsec, time, }: mkDerivation { - pname = "twill"; - version = "0.1.0.3"; - sha256 = "0wkcxjfpd5fz72hwg8spxjqk8b6axm51zppld00q9f3dzagsbwx6"; + pname = "twentefp"; + version = "0.4.2"; + sha256 = "1kmf907i6g6lfhw8g403b6701srrd298n4r53dvcqzy72c5qaixl"; libraryHaskellDepends = [ - aeson - attoparsec base - base16-bytestring - base64-bytestring - bytestring - cryptohash - data-default - datetime - errors - old-locale - QuickCheck - text + gloss + parsec time ]; - description = "Twilio API interaction"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; + description = "Lab Assignments Environment at Univeriteit Twente"; + license = lib.licenses.bsd3; } ) { }; - "twiml" = callPackage ( + "twentefp-number" = callPackage ( { mkDerivation, base, - data-default, - deepseq, - doctest, - lens, - network-uri, parsec, - template-haskell, - text, - void, - xml, }: mkDerivation { - pname = "twiml"; - version = "0.2.1.0"; - sha256 = "1y6szzr951if5lal2rfknybd11a2r13xrykpsyrqvq5dzq2yx67z"; + pname = "twentefp-number"; + version = "0.1.0.2"; + sha256 = "1kh0a6h4syx98ygwidw6cc24ci91v1blshpfcczx96z850x1h6xf"; libraryHaskellDepends = [ base - data-default - deepseq - lens - network-uri parsec - template-haskell - text - void - xml - ]; - testHaskellDepends = [ - base - doctest ]; - description = "TwiML library for Haskell"; + description = "Lab Assignments Environment at Univeriteit Twente"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; } ) { }; - "twine" = callPackage ( + "twentyseven" = callPackage ( { mkDerivation, base, - bytestring, containers, - convertible, + deepseq, + directory, filepath, + heap, + monad-loops, + MonadRandom, mtl, - parsec, + newtype, + optparse-applicative, + primitive, + QuickCheck, + ref-fd, + split, + tagged, + tasty, + tasty-hunit, + tasty-quickcheck, + template-haskell, + time, + transformers, + vector, }: mkDerivation { - pname = "twine"; - version = "0.1.2"; - sha256 = "0q4dsh6x1w1indsx070rqayvjlzdk2nznvh0cjxd5f3jn5ggwwb1"; + pname = "twentyseven"; + version = "1.0.0"; + sha256 = "0j1m96s6iajcbpf88i984xrw9233jrzapr2bz9xqc015qccpbvgl"; + isLibrary = true; + isExecutable = true; libraryHaskellDepends = [ base - bytestring containers - convertible + deepseq + directory filepath + heap + monad-loops + MonadRandom mtl - parsec + newtype + primitive + ref-fd + template-haskell + vector ]; - description = "very simple template language"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; + executableHaskellDepends = [ + base + optparse-applicative + time + transformers + ]; + testHaskellDepends = [ + base + QuickCheck + split + tagged + tasty + tasty-hunit + tasty-quickcheck + vector + ]; + description = "Rubik's cube solver"; + license = lib.licenses.mit; + mainProgram = "twentyseven"; } ) { }; @@ -687655,83 +398919,6 @@ self: { } ) { }; - "twisty" = callPackage ( - { - mkDerivation, - array, - base, - containers, - data-memocombinators, - MonadRandom, - parallel, - }: - mkDerivation { - pname = "twisty"; - version = "0.1.0"; - sha256 = "02w8763m6gm9wj035s62ydg63iv7wa2cbjq2g1jd283vf2djsjyj"; - libraryHaskellDepends = [ - array - base - containers - data-memocombinators - MonadRandom - parallel - ]; - description = "Simulator of twisty puzzles à la Rubik's Cube"; - license = "unknown"; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "twitch" = callPackage ( - { - mkDerivation, - base, - data-default, - directory, - filepath, - fsnotify, - Glob, - hspec, - optparse-applicative, - time, - transformers, - }: - mkDerivation { - pname = "twitch"; - version = "0.1.7.2"; - sha256 = "1l42vifrq025s98gl8n0v2j42l9w6nys916a3pi0av17kqaa29v0"; - libraryHaskellDepends = [ - base - data-default - directory - filepath - fsnotify - Glob - optparse-applicative - time - transformers - ]; - testHaskellDepends = [ - base - data-default - directory - filepath - fsnotify - Glob - hspec - optparse-applicative - time - transformers - ]; - description = "A high level file watcher DSL"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "twitchapi" = callPackage ( { mkDerivation, @@ -687780,46 +398967,6 @@ self: { } ) { }; - "twitter" = callPackage ( - { - mkDerivation, - base, - curl, - directory, - filepath, - json, - mtl, - old-locale, - readline, - time, - xml, - }: - mkDerivation { - pname = "twitter"; - version = "0.1.1"; - sha256 = "12q5w9wfnrzh2gjmq66qhwy6i6wixfb805jg2cbphxrjjnc2v9gx"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - curl - directory - filepath - json - mtl - old-locale - readline - time - xml - ]; - description = "A Haskell-based CLI Twitter client"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "twitter"; - broken = true; - } - ) { }; - "twitter-conduit" = callPackage ( { mkDerivation, @@ -687917,88 +399064,6 @@ self: { } ) { }; - "twitter-enumerator" = callPackage ( - { - mkDerivation, - aeson, - attoparsec, - attoparsec-enumerator, - authenticate, - base, - bytestring, - containers, - enumerator, - http-enumerator, - http-types, - text, - tls-extra, - transformers, - }: - mkDerivation { - pname = "twitter-enumerator"; - version = "0.0.3"; - sha256 = "1c8y7kq0x7lnq7x7ah8c78q6cy2963nz6y83klzh2jgmr8rma6q4"; - libraryHaskellDepends = [ - aeson - attoparsec - attoparsec-enumerator - authenticate - base - bytestring - containers - enumerator - http-enumerator - http-types - text - tls-extra - transformers - ]; - description = "Twitter API package with enumerator interface and Streaming API support"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "twitter-feed" = callPackage ( - { - mkDerivation, - aeson, - authenticate-oauth, - base, - bytestring, - containers, - http-conduit, - HUnit, - test-framework, - test-framework-hunit, - }: - mkDerivation { - pname = "twitter-feed"; - version = "0.2.0.11"; - sha256 = "12f8ak2f9nxqx4bhgfa45nll2yaf9i5dffxlir7w3x48zgfv964b"; - revision = "3"; - editedCabalFile = "0hzrh34ar9a5sfxq7zbh0hr38ndvd3x5pjp59j7b6vdalpk3r1af"; - libraryHaskellDepends = [ - aeson - authenticate-oauth - base - bytestring - http-conduit - ]; - testHaskellDepends = [ - base - containers - HUnit - test-framework - test-framework-hunit - ]; - description = "Client for fetching Twitter timeline via Oauth"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "twitter-types" = callPackage ( { mkDerivation, @@ -688114,72 +399179,6 @@ self: { } ) { }; - "tx" = callPackage ( - { - mkDerivation, - base, - bytestring, - cereal, - safecopy, - stm, - transformers, - }: - mkDerivation { - pname = "tx"; - version = "0.1.0.0"; - sha256 = "18fpkpri2g93vxw3qdk94nc4zlh5kqgfbvdmzkwqjadkck39alsy"; - libraryHaskellDepends = [ - base - bytestring - cereal - safecopy - stm - transformers - ]; - description = "Persistent transactions on top of STM"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "txt" = callPackage ( - { - mkDerivation, - base, - bytestring, - deepseq, - smallcheck, - tasty, - tasty-smallcheck, - utf8-string, - util, - }: - mkDerivation { - pname = "txt"; - version = "0.0.3.0"; - sha256 = "0fi16fpzcskcffri7adpnbf6qj2ksv7vnxwyl8nw1qg55rlj3c5y"; - revision = "2"; - editedCabalFile = "1h4djzkdm2y0i20rzm3y7511wwgpd392wsghal10031m9cqx81sh"; - libraryHaskellDepends = [ - base - bytestring - deepseq - utf8-string - util - ]; - testHaskellDepends = [ - base - smallcheck - tasty - tasty-smallcheck - ]; - description = "Text"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "txt-sushi" = callPackage ( { mkDerivation, @@ -688226,20 +399225,6 @@ self: { } ) { }; - "txtblk" = callPackage ( - { mkDerivation, base }: - mkDerivation { - pname = "txtblk"; - version = "0.2.0.1"; - sha256 = "08qpdyb1dbkif4zwrap6478fsf7lha6hk18wm0r4803avrr5w2bb"; - libraryHaskellDepends = [ base ]; - description = "Deprecated in favor of eros"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "ty" = callPackage ( { mkDerivation, @@ -688261,61 +399246,6 @@ self: { } ) { }; - "tyfam-witnesses" = callPackage ( - { - mkDerivation, - base, - containers, - template-haskell, - }: - mkDerivation { - pname = "tyfam-witnesses"; - version = "0.1.1.2"; - sha256 = "0gsx2syy58gq7n2yi4whslbnwg4dh34x8jy56h11k8z6n01inppc"; - libraryHaskellDepends = [ - base - containers - template-haskell - ]; - description = "Provide proof witnesses for closed type family evaluation"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "typalyze" = callPackage ( - { - mkDerivation, - base, - bytestring, - directory, - filepath, - ghc, - process, - }: - mkDerivation { - pname = "typalyze"; - version = "0.1.1"; - sha256 = "1wc1z7ps1rcbws2snci64hxddjd3bi3kbi4iwvbfaac0dz52085m"; - isLibrary = false; - isExecutable = true; - enableSeparateDataOutput = true; - executableHaskellDepends = [ - base - bytestring - directory - filepath - ghc - process - ]; - description = "Analyzes Haskell source files for easy reference"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "type-aligned" = callPackage ( { mkDerivation, base }: mkDerivation { @@ -688329,29 +399259,6 @@ self: { } ) { }; - "type-assertions" = callPackage ( - { - mkDerivation, - base, - hspec, - test-fixture, - }: - mkDerivation { - pname = "type-assertions"; - version = "0.1.0.0"; - sha256 = "1fvrlvklz0kjsdx1sgy9iyqvpq7h1ibqaqvif04ig84zr5qlbixa"; - libraryHaskellDepends = [ base ]; - testHaskellDepends = [ - base - hspec - test-fixture - ]; - description = "Runtime type assertions for testing"; - license = lib.licenses.isc; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "type-booleans" = callPackage ( { mkDerivation, base }: mkDerivation { @@ -688364,124 +399271,6 @@ self: { } ) { }; - "type-cache" = callPackage ( - { - mkDerivation, - base, - containers, - lens, - lens-utils, - template-haskell, - }: - mkDerivation { - pname = "type-cache"; - version = "1.0"; - sha256 = "1pvhw3k4aw1pdhc9wmvh3iac31srgi6sg72qwak33bw718gdnxff"; - libraryHaskellDepends = [ - base - containers - lens - lens-utils - template-haskell - ]; - description = "Utilities for caching type families results. Sometimes complex type families take long time to compile, so it is proficient to cache them and use the final result without the need of re-computation."; - license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "type-cereal" = callPackage ( - { - mkDerivation, - base, - bytestring, - cereal, - data-hash, - template-haskell, - type-digits, - type-spine, - }: - mkDerivation { - pname = "type-cereal"; - version = "0.3"; - sha256 = "1w1s1c7f2q5zwc9fghbbd1nhavh0mzzndh0mdxr7sy88a523svcv"; - libraryHaskellDepends = [ - base - bytestring - cereal - data-hash - template-haskell - type-digits - type-spine - ]; - description = "Type-level serialization of type constructors"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "type-combinators" = callPackage ( - { mkDerivation, base }: - mkDerivation { - pname = "type-combinators"; - version = "0.2.4.3"; - sha256 = "1xip4gav1fn3ip62mrlbr7p6i1254fa1q542cmp6ffzm55lwn30z"; - revision = "1"; - editedCabalFile = "1m975zq2mxlzk5h4nzrkaxjx5w79p3ws3yli3m6cn3245pjygv5w"; - libraryHaskellDepends = [ base ]; - description = "A collection of data types for type-level programming"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "type-combinators-quote" = callPackage ( - { - mkDerivation, - base, - haskell-src-meta, - template-haskell, - type-combinators, - }: - mkDerivation { - pname = "type-combinators-quote"; - version = "0.1.0.1"; - sha256 = "19zn6pmyd1dl2zwl1lbbvx21lb9ixc27cb5zdgj2fgj411d312w0"; - libraryHaskellDepends = [ - base - haskell-src-meta - template-haskell - type-combinators - ]; - description = "Quasiquoters for the 'type-combinators' package"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "type-combinators-singletons" = callPackage ( - { - mkDerivation, - base, - singletons, - type-combinators, - }: - mkDerivation { - pname = "type-combinators-singletons"; - version = "0.2.1.0"; - sha256 = "00cwlfcka2d1wcp7159r3sk3gz852dmc71jvjfr8bn1rrr781n0q"; - libraryHaskellDepends = [ - base - singletons - type-combinators - ]; - description = "Interop between /type-combinators/ and /singletons/"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "type-compare" = callPackage ( { mkDerivation, base }: mkDerivation { @@ -688496,49 +399285,6 @@ self: { } ) { }; - "type-digits" = callPackage ( - { - mkDerivation, - base, - template-haskell, - type-spine, - }: - mkDerivation { - pname = "type-digits"; - version = "0.3"; - sha256 = "0rmqy3wcypyq09gnfz0xvkr2ly9gnpsjnil2n981ajfxsk2shi58"; - libraryHaskellDepends = [ - base - template-haskell - type-spine - ]; - description = "Arbitrary-base type-level digits"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "type-eq" = callPackage ( - { - mkDerivation, - base, - cpphs, - }: - mkDerivation { - pname = "type-eq"; - version = "0.5"; - sha256 = "007srln0xxi27wca8dk72xp3cdwnk8iqmlqgbxi17c9l2x7lrkwz"; - revision = "1"; - editedCabalFile = "1g8m6f73pbz8mqvqbrvxhp2klj7lf624jgqdn1gchd56z4pcnryw"; - libraryHaskellDepends = [ base ]; - libraryToolDepends = [ cpphs ]; - description = "Type equality evidence you can carry around"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "type-equality" = callPackage ( { mkDerivation, base }: mkDerivation { @@ -688690,103 +399436,6 @@ self: { } ) { }; - "type-indexed-queues" = callPackage ( - { - mkDerivation, - base, - containers, - criterion, - deepseq, - doctest, - ghc-typelits-natnormalise, - pqueue, - QuickCheck, - random, - tasty, - tasty-quickcheck, - }: - mkDerivation { - pname = "type-indexed-queues"; - version = "0.2.0.0"; - sha256 = "1mb5xh7nin8qw3di8bvyf06542l5xxx9gg8h1jhip1glacs2rhg0"; - libraryHaskellDepends = [ - base - containers - deepseq - ghc-typelits-natnormalise - ]; - testHaskellDepends = [ - base - containers - doctest - QuickCheck - tasty - tasty-quickcheck - ]; - benchmarkHaskellDepends = [ - base - containers - criterion - pqueue - random - ]; - description = "Queues with verified and unverified versions"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "type-int" = callPackage ( - { - mkDerivation, - base, - template-haskell, - }: - mkDerivation { - pname = "type-int"; - version = "0.5.0.2"; - sha256 = "1lakw4mvkii32a570zain510n9x7b2ka2r3qj5rpil1j4bpc662w"; - libraryHaskellDepends = [ - base - template-haskell - ]; - description = "Type Level 2s- and 16s- Complement Integers"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "type-interpreter" = callPackage ( - { - mkDerivation, - base, - containers, - mtl, - template-haskell, - }: - mkDerivation { - pname = "type-interpreter"; - version = "0.1.4"; - sha256 = "0743byvz8jry9b5li4wg5qc4nwl5ri0vjvsfdy3l4gkg1v1zh0ng"; - libraryHaskellDepends = [ - base - containers - mtl - template-haskell - ]; - testHaskellDepends = [ - base - template-haskell - ]; - description = "Interpreter for Template Haskell types"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "type-iso" = callPackage ( { mkDerivation, @@ -688839,20 +399488,6 @@ self: { } ) { }; - "type-level-bst" = callPackage ( - { mkDerivation, base }: - mkDerivation { - pname = "type-level-bst"; - version = "0.1"; - sha256 = "0c51p6dy84ddikj6jch5hljn1i37q38wbak3chbc3ds5r674y5hk"; - libraryHaskellDepends = [ base ]; - description = "type-level binary search trees in haskell"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "type-level-bytestrings" = callPackage ( { mkDerivation, @@ -688975,50 +399610,6 @@ self: { } ) { }; - "type-level-natural-number-induction" = callPackage ( - { - mkDerivation, - base, - transformers, - type-level-natural-number, - }: - mkDerivation { - pname = "type-level-natural-number-induction"; - version = "1.0.0.1"; - sha256 = "1mwnsz5rbqnwskzf4cyv05zxha86afqh68b5ppwvizrvwf4jav2r"; - libraryHaskellDepends = [ - base - transformers - type-level-natural-number - ]; - description = "High-level combinators for performing inductive operations"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "type-level-natural-number-operations" = callPackage ( - { - mkDerivation, - base, - type-level-natural-number, - }: - mkDerivation { - pname = "type-level-natural-number-operations"; - version = "1.0"; - sha256 = "0vql5q5zhbhmwv0wqqb0xi4ayqdsz149rymhs730c583pq0h9r3w"; - libraryHaskellDepends = [ - base - type-level-natural-number - ]; - description = "Basic operations on type-level natural numbers"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "type-level-numbers" = callPackage ( { mkDerivation, @@ -689107,27 +399698,6 @@ self: { } ) { }; - "type-list" = callPackage ( - { - mkDerivation, - base, - singletons, - }: - mkDerivation { - pname = "type-list"; - version = "0.5.0.0"; - sha256 = "03395ivxda6mihjzn89rzvf0nkk0g16n207wvz4f61ky8r5mzfpz"; - libraryHaskellDepends = [ - base - singletons - ]; - description = "Operations on type-level lists and tuples"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "type-machine" = callPackage ( { mkDerivation, @@ -689375,77 +399945,6 @@ self: { } ) { }; - "type-ord" = callPackage ( - { - mkDerivation, - base, - template-haskell, - type-digits, - type-spine, - }: - mkDerivation { - pname = "type-ord"; - version = "0.3"; - sha256 = "16nfnxh0klxx1f2mj1hc5blcm259b664w3l4frx4bksdavhnkmg5"; - libraryHaskellDepends = [ - base - template-haskell - type-digits - type-spine - ]; - description = "Type-level comparison operator"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "type-ord-spine-cereal" = callPackage ( - { - mkDerivation, - base, - template-haskell, - type-cereal, - type-ord, - type-spine, - }: - mkDerivation { - pname = "type-ord-spine-cereal"; - version = "0.2"; - sha256 = "1gwchzi4l7a0jm11paxz959mv9a5pbga86fyyjyglypd1988rvrb"; - libraryHaskellDepends = [ - base - template-haskell - type-cereal - type-ord - type-spine - ]; - description = "Generic type-level comparison of types"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "type-prelude" = callPackage ( - { - mkDerivation, - base, - ghc-prim, - }: - mkDerivation { - pname = "type-prelude"; - version = "0.1"; - sha256 = "1ygg511j0av1g94mclrsf3p0qb2kc89jcz9nfr5fm073a2jlzlih"; - libraryHaskellDepends = [ - base - ghc-prim - ]; - description = "Partial port of prelude to the type level. Requires GHC 7.6.1."; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "type-reflection" = callPackage ( { mkDerivation, @@ -689539,59 +400038,6 @@ self: { } ) { }; - "type-sets" = callPackage ( - { - mkDerivation, - base, - cmptype, - }: - mkDerivation { - pname = "type-sets"; - version = "0.1.1.0"; - sha256 = "0ryrivrhpplck0h6h7d8pfl5bg7lbv2519icz317yp2qy8r3g2l7"; - libraryHaskellDepends = [ - base - cmptype - ]; - testHaskellDepends = [ - base - cmptype - ]; - description = "Type-level sets"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "type-settheory" = callPackage ( - { - mkDerivation, - base, - containers, - syb, - template-haskell, - transformers, - type-equality, - }: - mkDerivation { - pname = "type-settheory"; - version = "0.1.3.1"; - sha256 = "1b4p9f03diq2mlp2mb39qrm095731i35q8k783bkq2knzlq01dsi"; - libraryHaskellDepends = [ - base - containers - syb - template-haskell - transformers - type-equality - ]; - description = "Sets and functions-as-relations in the type system"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "type-spec" = callPackage ( { mkDerivation, @@ -689612,195 +400058,6 @@ self: { } ) { }; - "type-spine" = callPackage ( - { - mkDerivation, - base, - template-haskell, - }: - mkDerivation { - pname = "type-spine"; - version = "0.2.20120924"; - sha256 = "0vy9ixmz1xm3dd0376s0h66q7qi64jqc5kqsqjpcg7akxidl03hi"; - libraryHaskellDepends = [ - base - template-haskell - ]; - description = "A spine-view on types"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "type-structure" = callPackage ( - { - mkDerivation, - array, - base, - bytestring, - containers, - hashable, - HTF, - HUnit, - loch-th, - mtl, - placeholders, - QuickCheck, - QuickCheck-GenT, - quickcheck-instances, - template-haskell, - text, - th-instance-reification, - time, - transformers, - unordered-containers, - vector, - }: - mkDerivation { - pname = "type-structure"; - version = "0.1.1"; - sha256 = "0y2360llc41772ybjj3dcsk1r81js3yqsxww1w0j62gsdp6g9wfv"; - libraryHaskellDepends = [ - array - base - bytestring - containers - hashable - loch-th - mtl - placeholders - template-haskell - text - th-instance-reification - time - transformers - unordered-containers - vector - ]; - testHaskellDepends = [ - array - base - bytestring - containers - hashable - HTF - HUnit - loch-th - mtl - placeholders - QuickCheck - QuickCheck-GenT - quickcheck-instances - template-haskell - text - th-instance-reification - time - transformers - unordered-containers - vector - ]; - description = "Type structure analysis"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "type-sub-th" = callPackage ( - { - mkDerivation, - base, - checkers, - DebugTraceHelpers, - HUnit, - QuickCheck, - template-haskell, - test-framework, - test-framework-hunit, - test-framework-quickcheck2, - th-instances, - tuple, - uniplate, - }: - mkDerivation { - pname = "type-sub-th"; - version = "0.1.0.6"; - sha256 = "11aycmbvqlrsd4kzm9m5smg7ghqz8kn3i62b19acnlpmrlr5v497"; - libraryHaskellDepends = [ - base - DebugTraceHelpers - HUnit - QuickCheck - template-haskell - test-framework - test-framework-hunit - test-framework-quickcheck2 - tuple - uniplate - ]; - testHaskellDepends = [ - base - checkers - DebugTraceHelpers - HUnit - QuickCheck - template-haskell - test-framework - test-framework-hunit - test-framework-quickcheck2 - th-instances - tuple - uniplate - ]; - description = "Substitute types for other types with Template Haskell"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "type-tree" = callPackage ( - { - mkDerivation, - base, - base-compat, - Cabal, - cabal-doctest, - containers, - doctest, - mtl, - pretty, - template-haskell, - zenc, - }: - mkDerivation { - pname = "type-tree"; - version = "0.2.0.1"; - sha256 = "1gwa8dklc9hipgwcx068p4a49m9hgjh97qp5q3p5yai6jdg24j94"; - setupHaskellDepends = [ - base - Cabal - cabal-doctest - ]; - libraryHaskellDepends = [ - base - base-compat - containers - mtl - pretty - template-haskell - zenc - ]; - testHaskellDepends = [ - base - doctest - ]; - description = "Tree representations of datatypes"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "type-unary" = callPackage ( { mkDerivation, @@ -689864,30 +400121,6 @@ self: { } ) { }; - "typeable-th" = callPackage ( - { - mkDerivation, - base, - template-haskell, - transformers, - }: - mkDerivation { - pname = "typeable-th"; - version = "0.1.5"; - sha256 = "1ps9rkysx7zbcqkz51ahayg2jivlihiqdlb27iq7bf9aa7383k6v"; - libraryHaskellDepends = [ - base - template-haskell - transformers - ]; - testHaskellDepends = [ base ]; - description = "Automatic deriving of TypeableN instances with Template Haskell"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "typeably" = callPackage ( { mkDerivation, base }: mkDerivation { @@ -690018,122 +400251,6 @@ self: { } ) { }; - "typed-admin" = callPackage ( - { - mkDerivation, - base, - blaze-markup, - bytestring, - data-default-class, - exceptions, - generic-lens, - HDBC, - HDBC-postgresql, - HDBC-session, - heterocephalus, - http-api-data, - http-types, - lucid, - monad-control, - mtl, - persistable-record, - relational-query, - relational-query-HDBC, - relational-record, - template-haskell, - text, - time, - transformers, - transformers-base, - unordered-containers, - utf8-string, - wai, - wai-extra, - warp, - yaml, - }: - mkDerivation { - pname = "typed-admin"; - version = "0.1.0.0"; - sha256 = "146dkmcrq1rsw7mpdyxa9vhnsr8rfgqz88r10f60chn1m7yhlk7q"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - blaze-markup - bytestring - data-default-class - exceptions - generic-lens - HDBC - HDBC-postgresql - HDBC-session - heterocephalus - http-api-data - http-types - lucid - monad-control - mtl - persistable-record - relational-query - relational-query-HDBC - relational-record - template-haskell - text - time - transformers - transformers-base - unordered-containers - utf8-string - wai - wai-extra - warp - yaml - ]; - description = "Admin console framework"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "typed-digits" = callPackage ( - { - mkDerivation, - base, - doctest, - Glob, - hspec, - hspec-discover, - nats, - QuickCheck, - singletons, - }: - mkDerivation { - pname = "typed-digits"; - version = "0.1.0.0"; - sha256 = "1x2kyvz0bdcy9iqh0222386r4kbj2in7dpll9jn461v4v0s9bgvc"; - libraryHaskellDepends = [ - base - nats - singletons - ]; - testHaskellDepends = [ - base - doctest - Glob - hspec - hspec-discover - QuickCheck - ]; - testToolDepends = [ hspec-discover ]; - description = "Digits, indexed by their base at the type level"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "typed-duration" = callPackage ( { mkDerivation, @@ -690201,46 +400318,6 @@ self: { } ) { }; - "typed-encoding-encoding" = callPackage ( - { - mkDerivation, - base, - bytestring, - doctest, - doctest-discover, - encoding, - hspec, - QuickCheck, - quickcheck-instances, - typed-encoding, - }: - mkDerivation { - pname = "typed-encoding-encoding"; - version = "0.1.0.0"; - sha256 = "10wxbmwg40d2053g4b07bd1b29kkz9ihkvaph19mknxr8ziwhfay"; - libraryHaskellDepends = [ - base - bytestring - encoding - typed-encoding - ]; - testHaskellDepends = [ - base - bytestring - doctest - doctest-discover - encoding - hspec - QuickCheck - quickcheck-instances - typed-encoding - ]; - description = "Bridge between encoding and typed-encoding packages"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "typed-fsm" = callPackage ( { mkDerivation, @@ -690671,50 +400748,6 @@ self: { } ) { }; - "typed-streams" = callPackage ( - { - mkDerivation, - array, - base, - bytestring, - criterion, - generic-enum, - ghc-typelits-knownnat, - make-monofoldable-foldable, - mono-traversable, - vector, - }: - mkDerivation { - pname = "typed-streams"; - version = "0.1.0.1"; - sha256 = "0k833ash161g6bf0bqxlhwyp7aw3s99fds7fp95y6w6y31p24vh4"; - libraryHaskellDepends = [ - array - base - bytestring - generic-enum - ghc-typelits-knownnat - make-monofoldable-foldable - mono-traversable - vector - ]; - testHaskellDepends = [ - array - base - bytestring - criterion - generic-enum - ghc-typelits-knownnat - make-monofoldable-foldable - mono-traversable - vector - ]; - description = "A stream based replacement for lists"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "typed-time" = callPackage ( { mkDerivation, @@ -690785,68 +400818,6 @@ self: { } ) { }; - "typed-wire" = callPackage ( - { - mkDerivation, - aeson, - base, - bytestring, - containers, - directory, - filepath, - gitrev, - HTF, - http-types, - mtl, - optparse-applicative, - parsec, - process, - temporary, - text, - }: - mkDerivation { - pname = "typed-wire"; - version = "0.3.1.1"; - sha256 = "0wdrhvhzlzr1vzy6ni6bx8b0hvd9qccvdwwdwp1alqxk46n2i7y6"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - containers - directory - filepath - http-types - mtl - parsec - text - ]; - executableHaskellDepends = [ - base - directory - filepath - gitrev - optparse-applicative - text - ]; - testHaskellDepends = [ - aeson - base - bytestring - directory - filepath - HTF - process - temporary - text - ]; - description = "Language-independent type-safe communication"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - mainProgram = "twirec"; - broken = true; - } - ) { }; - "typed-wire-utils" = callPackage ( { mkDerivation, @@ -690874,92 +400845,6 @@ self: { } ) { }; - "typedflow" = callPackage ( - { - mkDerivation, - base, - ghc-typelits-knownnat, - mtl, - pretty-compact, - }: - mkDerivation { - pname = "typedflow"; - version = "0.9"; - sha256 = "0hanh2gww0i4a8dkq1kxizni8qgk5mzj6qkvz9k1yvprpx2kym8c"; - libraryHaskellDepends = [ - base - ghc-typelits-knownnat - mtl - pretty-compact - ]; - description = "Typed frontend to TensorFlow and higher-order deep learning"; - license = lib.licenses.lgpl3Only; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "typedquery" = callPackage ( - { - mkDerivation, - aeson, - base, - bytestring, - haskell-src-meta, - parsec, - template-haskell, - text, - transformers, - }: - mkDerivation { - pname = "typedquery"; - version = "0.1.1.2"; - sha256 = "1ziyc4bjxfndmfpmg8j2dl80nq1a9ay9nfpxh5856yar63lw16fi"; - libraryHaskellDepends = [ - aeson - base - bytestring - haskell-src-meta - parsec - template-haskell - text - transformers - ]; - description = "Parser for SQL augmented with types"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "typehash" = callPackage ( - { - mkDerivation, - base, - binary, - bytestring, - mtl, - pureMD5, - syb, - }: - mkDerivation { - pname = "typehash"; - version = "1.4.0.4"; - sha256 = "11s10arrbri1f71jfpynhmwh53cgkrfxsrqch1f02j0aii7n0lpv"; - libraryHaskellDepends = [ - base - binary - bytestring - mtl - pureMD5 - syb - ]; - description = "Create a unique hash value for a type"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "typelet" = callPackage ( { mkDerivation, @@ -690994,42 +400879,6 @@ self: { } ) { }; - "typelevel" = callPackage ( - { - mkDerivation, - base, - constraints, - convert, - exceptions, - lens, - mtl, - pretty, - pretty-show, - primitive, - transformers, - }: - mkDerivation { - pname = "typelevel"; - version = "1.2.3"; - sha256 = "02bvzgl0331xa4pwdclw08wyq8canmw06ps3xvgvhb5miy93rrwz"; - libraryHaskellDepends = [ - base - constraints - convert - exceptions - lens - mtl - pretty - pretty-show - primitive - transformers - ]; - description = "Useful type level operations (type families and related operators)"; - license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "typelevel-rewrite-rules" = callPackage ( { mkDerivation, @@ -691065,44 +400914,6 @@ self: { } ) { }; - "typelevel-tensor" = callPackage ( - { - mkDerivation, - array, - base, - HUnit, - numeric-prelude, - QuickCheck, - test-framework, - test-framework-hunit, - test-framework-quickcheck2, - }: - mkDerivation { - pname = "typelevel-tensor"; - version = "0.2.1"; - sha256 = "174f6xh3znf45w94xkhqwnxnzw6crpb13zff57svnj2dqvpf00gd"; - libraryHaskellDepends = [ - base - numeric-prelude - QuickCheck - ]; - testHaskellDepends = [ - array - base - HUnit - numeric-prelude - QuickCheck - test-framework - test-framework-hunit - test-framework-quickcheck2 - ]; - description = "Tensors whose ranks and dimensions type-inferred and type-checked"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "typelevel-tools-yj" = callPackage ( { mkDerivation, @@ -691215,41 +401026,6 @@ self: { } ) { }; - "typeparams" = callPackage ( - { - mkDerivation, - base, - constraints, - deepseq, - ghc-prim, - primitive, - reflection, - tagged, - template-haskell, - vector, - }: - mkDerivation { - pname = "typeparams"; - version = "0.0.6"; - sha256 = "1blhqm8ba37mqp2ziipm0igyccyrqlwcink5xbz0m56ca7lid0vb"; - libraryHaskellDepends = [ - base - constraints - deepseq - ghc-prim - primitive - reflection - tagged - template-haskell - vector - ]; - description = "Lens-like interface for type level parameters; allows unboxed unboxed vectors and supercompilation"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "typerep-map" = callPackage ( { mkDerivation, @@ -691301,22 +401077,6 @@ self: { } ) { }; - "types-compat" = callPackage ( - { mkDerivation, base }: - mkDerivation { - pname = "types-compat"; - version = "0.1.1"; - sha256 = "1fl3ddsz9m0s0mnd7wq6lqkkmpq0dz83aisqgs1cpg91xlllghby"; - revision = "2"; - editedCabalFile = "0h8hlx3zb7s8dfh275ich99j4aa4gdj2f8yvzwpmzgylcvn1gfwg"; - libraryHaskellDepends = [ base ]; - description = "ghc-7.6/7.8 compatible GHC.TypeLits, Data.Typeable and Data.Proxy."; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "typesafe-endian" = callPackage ( { mkDerivation, base }: mkDerivation { @@ -691376,47 +401136,6 @@ self: { } ) { }; - "typescript-docs" = callPackage ( - { - mkDerivation, - base, - blaze-html, - cmdtheline, - containers, - filemanip, - filepath, - language-typescript, - parsec, - split, - syb, - utf8-string, - }: - mkDerivation { - pname = "typescript-docs"; - version = "0.0.3"; - sha256 = "12axp6y652zlv9c9m0n5m4allpy23x0bk274gy78csrqp26akq3k"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - blaze-html - cmdtheline - containers - filemanip - filepath - language-typescript - parsec - split - syb - utf8-string - ]; - description = "A documentation generator for TypeScript Definition files"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - mainProgram = "typescript-docs"; - } - ) { }; - "typical" = callPackage ( { mkDerivation, base }: mkDerivation { @@ -691597,7 +401316,6 @@ self: { ]; description = "Typson Beam Integration"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; } ) { }; @@ -691687,7 +401405,6 @@ self: { ]; description = "Typson Esqueleto Integration"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; } ) { }; @@ -691745,7 +401462,6 @@ self: { ]; description = "Typson Selda Integration"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; } ) { }; @@ -691841,55 +401557,6 @@ self: { } ) { }; - "tyro" = callPackage ( - { - mkDerivation, - aeson, - base, - bytestring, - HUnit, - protolude, - reflection, - singletons, - test-framework, - test-framework-hunit, - text, - vector, - }: - mkDerivation { - pname = "tyro"; - version = "0.3.0.0"; - sha256 = "0gx50kx5pvh8fi88wjh1hvmawnj1k1jl7z78h9q9spvg0l7nz4q5"; - libraryHaskellDepends = [ - aeson - base - bytestring - protolude - reflection - singletons - text - vector - ]; - testHaskellDepends = [ - aeson - base - bytestring - HUnit - protolude - reflection - singletons - test-framework - test-framework-hunit - text - vector - ]; - description = "Type derived JSON parsing using Aeson"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "tz" = callPackage ( { mkDerivation, @@ -692052,92 +401719,6 @@ self: { } ) { }; - "u2f" = callPackage ( - { - mkDerivation, - aeson, - asn1-encoding, - asn1-types, - base, - base64-bytestring, - binary, - bytestring, - cryptohash, - cryptonite, - either-unwrap, - hspec, - text, - }: - mkDerivation { - pname = "u2f"; - version = "0.1.0.2"; - sha256 = "0yn4r5pp84aqvkm1md722mkh7qqy7rnaw3fr99a2inwplqx6pzfr"; - libraryHaskellDepends = [ - aeson - asn1-encoding - asn1-types - base - base64-bytestring - binary - bytestring - cryptohash - cryptonite - text - ]; - testHaskellDepends = [ - base - bytestring - either-unwrap - hspec - text - ]; - description = "Haskell Universal Two Factor helper toolbox library thing"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "uAgda" = callPackage ( - { - mkDerivation, - array, - base, - BNFC-meta, - cmdargs, - containers, - mtl, - parsec, - pretty, - split, - transformers, - }: - mkDerivation { - pname = "uAgda"; - version = "1.2.0.4"; - sha256 = "01a1h6pflvid5zcd8wy3px7cz4pxwy5pw354v9rp8k7sx4q82am8"; - isLibrary = false; - isExecutable = true; - enableSeparateDataOutput = true; - executableHaskellDepends = [ - array - base - BNFC-meta - cmdargs - containers - mtl - parsec - pretty - split - transformers - ]; - description = "A simplistic dependently-typed language with parametricity"; - license = "unknown"; - hydraPlatforms = lib.platforms.none; - mainProgram = "uAgda"; - broken = true; - } - ) { }; - "ua-parser" = callPackage ( { mkDerivation, @@ -692215,283 +401796,6 @@ self: { } ) { }; - "uacpid" = callPackage ( - { - mkDerivation, - base, - containers, - directory, - filepath, - hslogger, - mtl, - network, - process, - regex-compat, - time, - time-locale-compat, - unix, - }: - mkDerivation { - pname = "uacpid"; - version = "1.2"; - sha256 = "1ml02xap95vxvzwqlqp68hfk7yjncf3xc1h13gga0nlhby9rjv14"; - isLibrary = false; - isExecutable = true; - enableSeparateDataOutput = true; - executableHaskellDepends = [ - base - containers - directory - filepath - hslogger - mtl - network - process - regex-compat - time - time-locale-compat - unix - ]; - description = "Userspace Advanced Configuration and Power Interface event daemon"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "uacpid"; - broken = true; - } - ) { }; - - "uber" = callPackage ( - { - mkDerivation, - aeson, - base, - hspec, - text, - webapi, - }: - mkDerivation { - pname = "uber"; - version = "0.1.1.0"; - sha256 = "19wmvcx4l2zx45x4czaipy01i1m3zxrdbpiqnnq33x1yawivhskm"; - libraryHaskellDepends = [ - aeson - base - text - webapi - ]; - testHaskellDepends = [ - base - hspec - text - ]; - description = "Uber client for Haskell"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "uberlast" = callPackage ( - { - mkDerivation, - base, - lens, - tagged, - template-haskell, - }: - mkDerivation { - pname = "uberlast"; - version = "0.0"; - sha256 = "12p948706scjiazlwv0x1afl3v8fhv4a3l8yqn1x4y9xnr4pfmc9"; - libraryHaskellDepends = [ - base - lens - tagged - template-haskell - ]; - description = "Generate overloaded lenses from plain data declaration"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "ucam-webauth" = callPackage ( - { - mkDerivation, - aeson, - attoparsec, - base, - bytestring, - containers, - cryptonite, - errors, - generic-random, - here, - hspec, - hspec-discover, - http-api-data, - http-types, - microlens, - microlens-mtl, - mtl, - parser-combinators, - pem, - QuickCheck, - quickcheck-instances, - text, - time, - time-qq, - ucam-webauth-types, - x509, - }: - mkDerivation { - pname = "ucam-webauth"; - version = "0.1.0.0"; - sha256 = "14l989aasyqdw1x7aq9ikhcq9p3s1ax4qk53rd5s53wdgbc20n9k"; - revision = "6"; - editedCabalFile = "1dammzdhin226byx8p287kdnn9pc7s49hfxcdmflly6hsy1psnvy"; - libraryHaskellDepends = [ - aeson - attoparsec - base - bytestring - containers - cryptonite - errors - http-api-data - http-types - microlens - microlens-mtl - mtl - parser-combinators - pem - text - time - ucam-webauth-types - x509 - ]; - testHaskellDepends = [ - aeson - attoparsec - base - bytestring - containers - cryptonite - errors - generic-random - here - hspec - http-api-data - http-types - microlens - microlens-mtl - mtl - parser-combinators - pem - QuickCheck - quickcheck-instances - text - time - time-qq - ucam-webauth-types - x509 - ]; - testToolDepends = [ hspec-discover ]; - description = "The Ucam-Webauth protocol, used by Raven"; - license = "(BSD-3-Clause OR Apache-2.0)"; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "ucam-webauth-types" = callPackage ( - { - mkDerivation, - aeson, - base, - base64-bytestring, - bytestring, - case-insensitive, - containers, - deepseq, - hspec, - hspec-discover, - http-types, - microlens, - microlens-mtl, - mtl, - text, - time, - timerep, - }: - mkDerivation { - pname = "ucam-webauth-types"; - version = "0.1.0.0"; - sha256 = "0jq66amdmrbkg69m0cbbw7xfvsc9iy74khn1k39n7jkq821pzjni"; - revision = "4"; - editedCabalFile = "1lb0yq1051fi71qrbnkyg39c7rn5x62w2qkqvp88ih4wzdib8fzv"; - libraryHaskellDepends = [ - aeson - base - base64-bytestring - bytestring - case-insensitive - containers - deepseq - http-types - microlens - microlens-mtl - mtl - text - time - timerep - ]; - testHaskellDepends = [ - base - hspec - ]; - testToolDepends = [ hspec-discover ]; - description = "Types for the Ucam-Webauth protocol, as used by Raven"; - license = "(BSD-3-Clause OR Apache-2.0)"; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "ucd" = callPackage ( - { - mkDerivation, - base, - Cabal, - containers, - directory, - gauge, - regex-applicative, - util, - }: - mkDerivation { - pname = "ucd"; - version = "0.0.1.4"; - sha256 = "0a4zzfz4dz8zxn8idnbd4zbhia5b8qf7pgdc9vrffwrx57nlin4a"; - setupHaskellDepends = [ - base - Cabal - containers - directory - regex-applicative - util - ]; - libraryHaskellDepends = [ base ]; - testHaskellDepends = [ base ]; - benchmarkHaskellDepends = [ - base - gauge - ]; - description = "Unicode Character Database — Predicates on characters specified by Unicode"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "ucl" = callPackage ( { mkDerivation, @@ -692525,93 +401829,6 @@ self: { } ) { inherit (pkgs) libucl; }; - "uconv" = callPackage ( - { - mkDerivation, - base, - icu, - }: - mkDerivation { - pname = "uconv"; - version = "0.0.3"; - sha256 = "0v71qw494klyh3ar8qdp7wx7kn7629iy83xham9b7jpmvk2p76bv"; - libraryHaskellDepends = [ base ]; - librarySystemDepends = [ icu ]; - description = "String encoding conversion with ICU"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { inherit (pkgs) icu; }; - - "udbus" = callPackage ( - { - mkDerivation, - base, - binary, - bytestring, - cereal, - containers, - ghc-prim, - mtl, - network, - unix, - utf8-string, - }: - mkDerivation { - pname = "udbus"; - version = "0.2.3"; - sha256 = "1ifl280n2ib26j4h7h46av6k7ms0j1n2wy4shbqk5xli5bbj3k9n"; - revision = "1"; - editedCabalFile = "036yscknrmc7dcm111bsjk7q0ghb6ih5b6z1ffsqf442dg83x8w7"; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base - binary - bytestring - cereal - containers - ghc-prim - mtl - network - unix - utf8-string - ]; - description = "Small DBus implementation"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "udbus-model" = callPackage ( - { - mkDerivation, - base, - bytestring, - udbus, - xml, - }: - mkDerivation { - pname = "udbus-model"; - version = "0.2.1"; - sha256 = "0xiz3z0x7p9agj14j9lm8njfqiqpyif0m2fn7lppi3w482ssfzji"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - bytestring - udbus - xml - ]; - description = "Model API for udbus introspection and definitions"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "udcode" = callPackage ( { mkDerivation, @@ -692661,60 +401878,6 @@ self: { } ) { inherit (pkgs) systemd; }; - "udp-conduit" = callPackage ( - { - mkDerivation, - base, - chunked-data, - conduit-combinators, - mono-traversable, - network, - }: - mkDerivation { - pname = "udp-conduit"; - version = "0.1.0.4"; - sha256 = "13hpl2a5xmblvk0m8kn0krkw24mm8dr4xw4sx9502hr2kngd5lsj"; - libraryHaskellDepends = [ - base - chunked-data - conduit-combinators - mono-traversable - network - ]; - description = "Simple fire-and-forget conduit UDP wrappers"; - license = lib.licenses.isc; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "udp-streaming" = callPackage ( - { - mkDerivation, - base, - bytestring, - network, - resourcet, - streaming, - }: - mkDerivation { - pname = "udp-streaming"; - version = "0.2.0.0"; - sha256 = "18xamvak7zr4d826141jqkhs45ij2xgp4s5b2fn955prs0iq7bnb"; - libraryHaskellDepends = [ - base - bytestring - network - resourcet - streaming - ]; - description = "Streaming to and from UDP socket"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "ueberzug" = callPackage ( { mkDerivation, @@ -692756,223 +401919,6 @@ self: { } ) { }; - "uhc-light" = callPackage ( - { - mkDerivation, - array, - base, - binary, - bytestring, - chr-data, - containers, - directory, - fgl, - filepath, - hashable, - mtl, - network, - old-locale, - primitive, - process, - syb, - transformers, - uhc-util, - utf8-string, - uulib, - vector, - }: - mkDerivation { - pname = "uhc-light"; - version = "1.1.10.0"; - sha256 = "0l8p6jn5f2lakdq5lvish0w62cpc0dsx7xm0jcwy6bml3ivlpzw9"; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - array - base - binary - bytestring - chr-data - containers - directory - fgl - filepath - hashable - mtl - network - old-locale - primitive - process - syb - transformers - uhc-util - utf8-string - uulib - vector - ]; - executableHaskellDepends = [ - array - base - binary - bytestring - chr-data - containers - directory - fgl - filepath - hashable - mtl - network - old-locale - primitive - process - syb - transformers - uhc-util - utf8-string - uulib - vector - ]; - description = "Part of UHC packaged as cabal/hackage installable library"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "uhc-util" = callPackage ( - { - mkDerivation, - array, - base, - binary, - bytestring, - chr-core, - chr-data, - chr-parse, - chr-pretty, - containers, - directory, - fclabels, - fgl, - hashable, - logict-state, - mtl, - pqueue, - process, - time, - time-compat, - transformers, - uulib, - vector, - }: - mkDerivation { - pname = "uhc-util"; - version = "0.1.7.0"; - sha256 = "1xz7r5sk18aqqzxmblihk6y271qr7dsv89xxxrz5n8ds9fmj4y3k"; - libraryHaskellDepends = [ - array - base - binary - bytestring - chr-core - chr-data - chr-parse - chr-pretty - containers - directory - fclabels - fgl - hashable - logict-state - mtl - pqueue - process - time - time-compat - transformers - uulib - vector - ]; - description = "UHC utilities"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "uhexdump" = callPackage ( - { - mkDerivation, - base, - bytestring, - split, - }: - mkDerivation { - pname = "uhexdump"; - version = "0.3"; - sha256 = "064cm531yci41jf14k177w7j4zy8dfjwrpjcrwf7kpz2rhx1djyi"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - bytestring - split - ]; - description = "hex dumper for UTF-8 text"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "uhexdump"; - broken = true; - } - ) { }; - - "uhttpc" = callPackage ( - { - mkDerivation, - async, - base, - bytestring, - bytestring-lexing, - deepseq, - network, - network-bsd, - network-uri, - optparse-applicative, - }: - mkDerivation { - pname = "uhttpc"; - version = "0.1.1.1"; - sha256 = "01plkj4n34s1xbdaky61xzqnc7z2zfx6dzqdlv21np8rk6lirr7d"; - revision = "1"; - editedCabalFile = "1kqb3dzxqhnhcwrdg8bsxkg9vya9zmflihmxxp8whmzb4k8vy9ph"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - bytestring - bytestring-lexing - deepseq - network - network-bsd - network-uri - ]; - executableHaskellDepends = [ - async - base - bytestring - bytestring-lexing - deepseq - network - optparse-applicative - ]; - description = "Minimal HTTP client library optimized for benchmarking"; - license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - mainProgram = "uhttpc-bench"; - broken = true; - } - ) { }; - "ui" = callPackage ( { mkDerivation, @@ -693349,34 +402295,6 @@ self: { } ) { unac = null; }; - "unagi-bloomfilter" = callPackage ( - { - mkDerivation, - atomic-primops, - base, - bytestring, - hashabler, - primitive, - }: - mkDerivation { - pname = "unagi-bloomfilter"; - version = "0.1.1.2"; - sha256 = "0i1dz2cb8ikgbqan8kg6gwnyyn3sp2g182xkx8anj6lxqjnzcckf"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - atomic-primops - base - bytestring - hashabler - primitive - ]; - description = "A fast, cache-efficient, concurrent bloom filter"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "unagi-chan" = callPackage ( { mkDerivation, @@ -693452,29 +402370,6 @@ self: { } ) { }; - "unamb-custom" = callPackage ( - { - mkDerivation, - base, - containers, - mtl, - }: - mkDerivation { - pname = "unamb-custom"; - version = "0.13"; - sha256 = "0r694wi9xg8brgcwl2kyv5amp6v539l121s9bpmd5lhjdnrvqjwk"; - libraryHaskellDepends = [ - base - containers - mtl - ]; - description = "Functional concurrency with unamb using a custom scheduler"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "unbeliever" = callPackage ( { mkDerivation, @@ -693537,50 +402432,6 @@ self: { } ) { }; - "unbound" = callPackage ( - { - mkDerivation, - base, - binary, - containers, - mtl, - parsec, - pretty, - QuickCheck, - RepLib, - template-haskell, - transformers, - }: - mkDerivation { - pname = "unbound"; - version = "0.5.1.1"; - sha256 = "1pr06iii1pm6dkdm4rxc4cr817p5iri877573p06kj53w1xk5scj"; - libraryHaskellDepends = [ - base - binary - containers - mtl - RepLib - transformers - ]; - testHaskellDepends = [ - base - binary - containers - mtl - parsec - pretty - QuickCheck - RepLib - template-haskell - transformers - ]; - description = "Generic support for programming with names and binders"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "unbound-generics" = callPackage ( { mkDerivation, @@ -693696,75 +402547,6 @@ self: { } ) { }; - "unbounded-delays-units" = callPackage ( - { - mkDerivation, - base, - unbounded-delays, - units, - units-defs, - }: - mkDerivation { - pname = "unbounded-delays-units"; - version = "0.4"; - sha256 = "02j4i2dms15vb87ar3m99hvpxrjdakljyql708zs716k1jdm7614"; - libraryHaskellDepends = [ - base - unbounded-delays - units - units-defs - ]; - description = "Thread delays and timeouts using proper time units"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "unboxed" = callPackage ( - { - mkDerivation, - base, - ghc-prim, - }: - mkDerivation { - pname = "unboxed"; - version = "0.1.0.0"; - sha256 = "1xk9x1viprvswjp62xrg2mvm34b0qamflb1phpyfh9bspy8f1qqd"; - libraryHaskellDepends = [ - base - ghc-prim - ]; - description = "All the standard sum types but strict and unboxed as possible"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "unboxed-containers" = callPackage ( - { - mkDerivation, - base, - containers, - }: - mkDerivation { - pname = "unboxed-containers"; - version = "0.0.2.4"; - sha256 = "0yahavqjjnlf4ps8kd41s9s64nbhx2hf7qzk2xxkmq0i3b91d123"; - revision = "1"; - editedCabalFile = "16j16v36jabr9lpmjm52zbfz82m0ckd4p0f3z8123aawvzcvayji"; - libraryHaskellDepends = [ - base - containers - ]; - description = "Self-optimizing unboxed sets using view patterns and data families"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "unboxed-ref" = callPackage ( { mkDerivation, @@ -693793,34 +402575,6 @@ self: { } ) { }; - "unboxed-references" = callPackage ( - { - mkDerivation, - base, - vector, - }: - mkDerivation { - pname = "unboxed-references"; - version = "0.1.0"; - sha256 = "0qdaf0xxc3a44a7mrfiyz9df8hnaj7bsdvdglsqz8f5andfy4ix9"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - vector - ]; - executableHaskellDepends = [ - base - vector - ]; - description = "A library for reference cells backed by unboxed-vectors"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "example"; - broken = true; - } - ) { }; - "unboxing-vector" = callPackage ( { mkDerivation, @@ -693864,54 +402618,6 @@ self: { } ) { }; - "unbreak" = callPackage ( - { - mkDerivation, - aeson, - aeson-pretty, - base, - base64-bytestring, - bytestring, - cereal, - cmdargs, - cryptonite, - memory, - process, - text, - unix, - }: - mkDerivation { - pname = "unbreak"; - version = "0.3.1"; - sha256 = "11hjhk5xz0qm9mi77hz1xcq6zvjn37b11gr39p3xlkkxkv3nafs6"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson - aeson-pretty - base - base64-bytestring - bytestring - cereal - cryptonite - memory - process - text - unix - ]; - executableHaskellDepends = [ - base - bytestring - cmdargs - ]; - description = "Secure and resilient remote file storage utility"; - license = lib.licenses.agpl3Only; - hydraPlatforms = lib.platforms.none; - mainProgram = "unbreak"; - broken = true; - } - ) { }; - "uncaught-exception" = callPackage ( { mkDerivation, base }: mkDerivation { @@ -694111,20 +402817,6 @@ self: { } ) { }; - "unfix-binders" = callPackage ( - { mkDerivation, base }: - mkDerivation { - pname = "unfix-binders"; - version = "0.1.0"; - sha256 = "0aw4ihkzwz220pgg84p47zp37i5dqn7cxqcqa2lfzi23y9sp5iss"; - libraryHaskellDepends = [ base ]; - description = "Unfixing and recursion schemes for data types with binders"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "unfoldable" = callPackage ( { mkDerivation, @@ -694158,38 +402850,6 @@ self: { } ) { }; - "unfoldable-restricted" = callPackage ( - { - mkDerivation, - base, - constraints, - containers, - hashable, - transformers, - unfoldable, - unit-constraint, - unordered-containers, - }: - mkDerivation { - pname = "unfoldable-restricted"; - version = "0.0.3"; - sha256 = "0vl3qw6sjprsxadbf70md2njm9jvwwmz6qrqi3rifdj535vjh68b"; - libraryHaskellDepends = [ - base - constraints - containers - hashable - transformers - unfoldable - unit-constraint - unordered-containers - ]; - description = "An alternative to the Unfoldable typeclass"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "unfork" = callPackage ( { mkDerivation, @@ -694308,121 +402968,6 @@ self: { ]; description = "Graphs"; license = "LGPL"; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "uni-htk" = callPackage ( - { - mkDerivation, - base, - containers, - directory, - uni-events, - uni-posixutil, - uni-reactor, - uni-util, - }: - mkDerivation { - pname = "uni-htk"; - version = "2.2.1.3"; - sha256 = "0i2h1c7gil25lykfb6q34rz37l37likjwqzic7xdmvciwaqv0gy9"; - libraryHaskellDepends = [ - base - containers - directory - uni-events - uni-posixutil - uni-reactor - uni-util - ]; - description = "Graphical User Interface for Haskell Programs"; - license = "LGPL"; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "uni-posixutil" = callPackage ( - { - mkDerivation, - base, - directory, - process, - uni-events, - uni-util, - unix, - }: - mkDerivation { - pname = "uni-posixutil"; - version = "2.2.1.1"; - sha256 = "0wh3ni6l1x7rxn5yppva1xs0yb6z5hxfmzxxrnh6hbcq1pa62m5d"; - libraryHaskellDepends = [ - base - directory - process - uni-events - uni-util - unix - ]; - description = "Posix utilities for the uniform workbench"; - license = "LGPL"; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "uni-reactor" = callPackage ( - { - mkDerivation, - base, - containers, - directory, - uni-events, - uni-util, - }: - mkDerivation { - pname = "uni-reactor"; - version = "2.2.1.0"; - sha256 = "147nizw920xbbj5b8kqrgri1r9wpx3qddspnryxhdxq10q1xlyh2"; - libraryHaskellDepends = [ - base - containers - directory - uni-events - uni-util - ]; - description = "Reactors for the uniform workbench"; - license = "LGPL"; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "uni-uDrawGraph" = callPackage ( - { - mkDerivation, - base, - containers, - uni-events, - uni-graphs, - uni-posixutil, - uni-reactor, - uni-util, - }: - mkDerivation { - pname = "uni-uDrawGraph"; - version = "2.2.1.4"; - sha256 = "1qxi9zxx3hg7m8ks353dnrr88mm0qw5vclq225xgq6iwbzbfnqlz"; - libraryHaskellDepends = [ - base - containers - uni-events - uni-graphs - uni-posixutil - uni-reactor - uni-util - ]; - description = "Graphs binding"; - license = "LGPL"; - hydraPlatforms = lib.platforms.none; } ) { }; @@ -694769,44 +403314,6 @@ self: { } ) { }; - "unicode-normalization" = callPackage ( - { - mkDerivation, - base, - bytestring, - compact-string, - icu, - }: - mkDerivation { - pname = "unicode-normalization"; - version = "0.1"; - sha256 = "1smfc7a62xi6y4sc0vai2l0nljxl9dr9l5zkqi17n14cq36ppfwb"; - libraryHaskellDepends = [ - base - bytestring - compact-string - ]; - librarySystemDepends = [ icu ]; - description = "Unicode normalization using the ICU library"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { inherit (pkgs) icu; }; - - "unicode-prelude" = callPackage ( - { mkDerivation, base }: - mkDerivation { - pname = "unicode-prelude"; - version = "0.1.1"; - sha256 = "05zakihlk06wckzgm43f3g26fjdn4gb3d1ypw4vcwqmipq2dbfsw"; - libraryHaskellDepends = [ base ]; - description = "Unicode notation for some definitions in Prelude"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "unicode-properties" = callPackage ( { mkDerivation, @@ -694856,27 +403363,6 @@ self: { } ) { }; - "unicode-symbols" = callPackage ( - { - mkDerivation, - base, - containers, - }: - mkDerivation { - pname = "unicode-symbols"; - version = "0.1.1.2"; - sha256 = "0y1awqrf1x2in158linszma69zyz3zp14h3rmdx3vmbmif9fvbyv"; - libraryHaskellDepends = [ - base - containers - ]; - description = "Unicode alternatives for common functions and operators"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "unicode-transforms" = callPackage ( { mkDerivation, @@ -694977,50 +403463,6 @@ self: { } ) { }; - "unicoder" = callPackage ( - { - mkDerivation, - attoparsec, - base, - data-default, - directory, - filepath, - text, - twitch, - }: - mkDerivation { - pname = "unicoder"; - version = "0.5.0"; - sha256 = "1974birppkd49jwq31x8bcbmgnximh233salnyq47ikgxfp6x4c6"; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - attoparsec - base - directory - filepath - text - ]; - executableHaskellDepends = [ - base - data-default - directory - filepath - text - twitch - ]; - testHaskellDepends = [ - base - text - ]; - description = "Make writing in unicode easy"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "unicoder"; - } - ) { }; - "unidecode" = callPackage ( { mkDerivation, @@ -695255,53 +403697,6 @@ self: { } ) { }; - "uniform-io" = callPackage ( - { - mkDerivation, - attoparsec, - base, - bytestring, - Cabal, - data-default-class, - interruptible, - iproute, - monad-control, - network, - openssl, - transformers, - transformers-base, - word8, - }: - mkDerivation { - pname = "uniform-io"; - version = "1.2.0.0"; - sha256 = "15vg29nzlb6g2frl06gxdfsx73v060a9hvhiixqwcy14zm01v5ny"; - libraryHaskellDepends = [ - attoparsec - base - bytestring - data-default-class - interruptible - iproute - monad-control - network - transformers - transformers-base - word8 - ]; - librarySystemDepends = [ openssl ]; - testHaskellDepends = [ - attoparsec - base - bytestring - Cabal - ]; - description = "Uniform IO over files, network, anything"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - } - ) { inherit (pkgs) openssl; }; - "uniform-json" = callPackage ( { mkDerivation, @@ -695576,6 +403971,7 @@ self: { description = "uniform wrapper for watch"; license = "GPL"; hydraPlatforms = lib.platforms.none; + broken = true; } ) { }; @@ -695775,29 +404171,6 @@ self: { } ) { }; - "union-map" = callPackage ( - { - mkDerivation, - base, - containers, - extensible, - }: - mkDerivation { - pname = "union-map"; - version = "0.1"; - sha256 = "0q1qg0vg01ypjlb90xq8zl3zc53b3yn23vgpnzv92q7xmc46gb5l"; - libraryHaskellDepends = [ - base - containers - extensible - ]; - description = "Heterogeneous map by open unions"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "unionmount" = callPackage ( { mkDerivation, @@ -695913,42 +404286,6 @@ self: { } ) { }; - "uniprot-kb" = callPackage ( - { - mkDerivation, - attoparsec, - base, - hspec, - neat-interpolation, - QuickCheck, - text, - }: - mkDerivation { - pname = "uniprot-kb"; - version = "0.1.2.0"; - sha256 = "0hh6fnnmr6i4mgli07hgaagswdipa0p3ckr3jzzfcw4y5x98036l"; - revision = "4"; - editedCabalFile = "1g4qds20lwsbn5hqrgbhb4yd5w5vx2gkw47mjvxr8z8nj20g2pii"; - libraryHaskellDepends = [ - attoparsec - base - text - ]; - testHaskellDepends = [ - attoparsec - base - hspec - neat-interpolation - QuickCheck - text - ]; - description = "UniProt-KB format parser"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "uniq-deep" = callPackage ( { mkDerivation, @@ -696093,102 +404430,6 @@ self: { } ) { }; - "uniqueid" = callPackage ( - { mkDerivation, base }: - mkDerivation { - pname = "uniqueid"; - version = "0.1.1"; - sha256 = "0s1jw29g5s9ll8hbfkyalhdjpsv54w1n63mz4jph36dbq68zb7g6"; - libraryHaskellDepends = [ base ]; - description = "Splittable Unique Identifier Supply"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "uniquely-represented-sets" = callPackage ( - { - mkDerivation, - base, - checkers, - containers, - criterion, - deepseq, - doctest, - QuickCheck, - random, - }: - mkDerivation { - pname = "uniquely-represented-sets"; - version = "0.1.0.0"; - sha256 = "0qzg8fp1bqg4nl5n901wndfp36nwg7dmv88s51v1sg0hqq1mr4yz"; - libraryHaskellDepends = [ - base - containers - deepseq - ]; - testHaskellDepends = [ - base - checkers - containers - doctest - QuickCheck - ]; - benchmarkHaskellDepends = [ - base - criterion - random - ]; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "uniqueness-periods" = callPackage ( - { - mkDerivation, - base, - mmsyn6ukr, - vector, - }: - mkDerivation { - pname = "uniqueness-periods"; - version = "0.2.0.0"; - sha256 = "1r5wnc9gdinxigqf9sb58k8rvbkbqmn71d2gxpg1xz3fgxs35cqq"; - libraryHaskellDepends = [ - base - mmsyn6ukr - vector - ]; - description = "Can be used to produce the 'uniquenessPeriods' function and related functionality"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "uniqueness-periods-general" = callPackage ( - { - mkDerivation, - base, - vector, - }: - mkDerivation { - pname = "uniqueness-periods-general"; - version = "0.2.0.0"; - sha256 = "117svylwp76rgygc1fa871qz0ghv5hsfj7lr63zy1r3zcakak45q"; - libraryHaskellDepends = [ - base - vector - ]; - description = "Can be used to produce the similar to 'String.Ukrainian.UniquenessPeriods' functions."; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "uniqueness-periods-vector" = callPackage ( { mkDerivation, @@ -696277,7 +404518,6 @@ self: { ]; description = "Usage examples for the uniqueness-periods-vector series of packages"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; } ) { }; @@ -696323,7 +404563,6 @@ self: { ]; description = "Some kind of the optimization approach to data inner structure"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; } ) { }; @@ -696464,35 +404703,6 @@ self: { } ) { }; - "units-attoparsec" = callPackage ( - { - mkDerivation, - attoparsec, - base, - template-haskell, - text, - units, - units-defs, - }: - mkDerivation { - pname = "units-attoparsec"; - version = "1.0"; - sha256 = "11saazsgx7gpbfhwwgvrp3zwirkvv8h8c61rrsczfq1qmsljxxiz"; - libraryHaskellDepends = [ - attoparsec - base - template-haskell - text - units - units-defs - ]; - description = "Attoparsec parsers for the units package"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "units-defs" = callPackage ( { mkDerivation, @@ -696556,21 +404766,6 @@ self: { } ) { }; - "unittyped" = callPackage ( - { mkDerivation, base }: - mkDerivation { - pname = "unittyped"; - version = "0.1"; - sha256 = "1ab27rwnp8ncfn5sm4llxjxx7fbp495sl1838g8z9hishr5dgddl"; - libraryHaskellDepends = [ base ]; - testHaskellDepends = [ base ]; - description = "An extendable library for type-safe computations including units"; - license = lib.licenses.lgpl21Only; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "unity-testresult-parser" = callPackage ( { mkDerivation, @@ -696615,143 +404810,6 @@ self: { } ) { }; - "unitym" = callPackage ( - { - mkDerivation, - base, - text, - transformers, - }: - mkDerivation { - pname = "unitym"; - version = "0.1.0.2"; - sha256 = "16rvv72ya9dp5x0lr6n4kbslgqds87x3fbf9v5rsylx0dgig48js"; - libraryHaskellDepends = [ - base - text - transformers - ]; - description = "A monad type class shared between web services"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "unitym-servant" = callPackage ( - { - mkDerivation, - base, - mtl, - servant-server, - text, - transformers, - unitym, - }: - mkDerivation { - pname = "unitym-servant"; - version = "0.1.0.0"; - sha256 = "1w5cn3p1qj5snbj499n3jd5ygv62wa4wxkl36anw65l1av0zb51k"; - libraryHaskellDepends = [ - base - mtl - servant-server - text - transformers - unitym - ]; - description = "Implementaation of unitym for Servant servers"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "unitym-yesod" = callPackage ( - { - mkDerivation, - base, - unitym, - yesod, - }: - mkDerivation { - pname = "unitym-yesod"; - version = "0.1.0.2"; - sha256 = "1qg0iqww3yq5kzy6x9fc3p64vcsa53ricagnknzwhhjirh9yy3yw"; - libraryHaskellDepends = [ - base - unitym - yesod - ]; - description = "Implementation of the unity monad for the Yesod framework"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "universal" = callPackage ( - { - mkDerivation, - base, - base-unicode-symbols, - category, - criterion, - smallcheck, - tasty, - tasty-smallcheck, - util, - }: - mkDerivation { - pname = "universal"; - version = "0.0.1.0"; - sha256 = "1lpwzy4l711rw7a6k0fbbsaqfbzldi242vqkjrmhxnrkmddjxgy9"; - revision = "1"; - editedCabalFile = "17jv7v9wb0gvf3na883r0yhk71s4pi9337hxmj0kcqvyzbjqli1f"; - libraryHaskellDepends = [ - base - base-unicode-symbols - category - util - ]; - testHaskellDepends = [ - base - smallcheck - tasty - tasty-smallcheck - ]; - benchmarkHaskellDepends = [ - base - criterion - ]; - description = "Universal"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "universal-binary" = callPackage ( - { - mkDerivation, - base, - binary, - bytestring, - }: - mkDerivation { - pname = "universal-binary"; - version = "0.11"; - sha256 = "1gnrq6s7pipjqfyispkxib3xfzii1ss6a9iwv07mvb5a93hc45cw"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base - binary - bytestring - ]; - description = "Parser for OS X Universal Binary format"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "universe" = callPackage ( { mkDerivation, @@ -696960,58 +405018,6 @@ self: { } ) { }; - "universe-th" = callPackage ( - { - mkDerivation, - base, - checkers, - composition, - DebugTraceHelpers, - HUnit, - mtl, - QuickCheck, - template-haskell, - test-framework, - test-framework-hunit, - test-framework-quickcheck2, - th-instances, - tuple, - uniplate, - }: - mkDerivation { - pname = "universe-th"; - version = "0.0.0.6"; - sha256 = "143kcgv4lp9266d8za878l343j6g97mxc3z7gj348jjamvpyg9wx"; - libraryHaskellDepends = [ - base - composition - mtl - template-haskell - tuple - uniplate - ]; - testHaskellDepends = [ - base - checkers - composition - DebugTraceHelpers - HUnit - mtl - QuickCheck - template-haskell - test-framework - test-framework-hunit - test-framework-quickcheck2 - th-instances - tuple - uniplate - ]; - description = "Construct a Dec's ancestor list"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "universum" = callPackage ( { mkDerivation, @@ -697160,49 +405166,6 @@ self: { } ) { }; - "unix-fcntl" = callPackage ( - { - mkDerivation, - base, - foreign-var, - }: - mkDerivation { - pname = "unix-fcntl"; - version = "0.0.0"; - sha256 = "18rjz14x1mbwdppf18gv3x4jwvz68bb2n1b11ygck60yl4pqbhb9"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - foreign-var - ]; - description = "Comprehensive bindings to fcntl(2)"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "unix-handle" = callPackage ( - { - mkDerivation, - base, - unix, - }: - mkDerivation { - pname = "unix-handle"; - version = "0.0.0"; - sha256 = "07ysmd9ks5lm2lg1dik75m509ryn5azw28j9hcisknf5bmrfy9li"; - libraryHaskellDepends = [ - base - unix - ]; - description = "POSIX operations on Handles"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "unix-io-extra" = callPackage ( { mkDerivation, base }: mkDerivation { @@ -697215,87 +405178,6 @@ self: { } ) { }; - "unix-memory" = callPackage ( - { - mkDerivation, - base, - mtl, - QuickCheck, - tasty, - tasty-hunit, - tasty-quickcheck, - unix, - }: - mkDerivation { - pname = "unix-memory"; - version = "0.1.2"; - sha256 = "1r8s7z39d31h1n7rcincy156lbsvamr6jicx52kv8simb9gvarpp"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ base ]; - testHaskellDepends = [ - base - mtl - QuickCheck - tasty - tasty-hunit - tasty-quickcheck - unix - ]; - description = "Unix memory syscalls"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "unix-process-conduit" = callPackage ( - { - mkDerivation, - base, - bytestring, - conduit, - directory, - filepath, - hspec, - process, - stm, - time, - transformers, - unix, - }: - mkDerivation { - pname = "unix-process-conduit"; - version = "0.2.2.3"; - sha256 = "0ldgjwdvshggygxn9fpnxvb01dba0q0bn9f7iiw5xgqhli46nvcy"; - revision = "1"; - editedCabalFile = "0xgf9448y1paibhgd958vd7nhi3z0zv3p1ydrazi3kai9c5a4ddx"; - libraryHaskellDepends = [ - base - bytestring - conduit - directory - filepath - process - stm - time - transformers - unix - ]; - testHaskellDepends = [ - base - bytestring - conduit - hspec - transformers - unix - ]; - description = "Run processes on Unix systems, with a conduit interface (deprecated)"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "unix-pty-light" = callPackage ( { mkDerivation, @@ -697684,29 +405566,6 @@ self: { } ) { }; - "unlifted-list" = callPackage ( - { - mkDerivation, - base, - ghc-prim, - semigroups, - }: - mkDerivation { - pname = "unlifted-list"; - version = "0.1.0.0"; - sha256 = "06ygxv8c1435rn9yrg27l1zsihzh4argqn677g0qrigw6wcvn0gg"; - libraryHaskellDepends = [ - base - ghc-prim - semigroups - ]; - description = "GHC Haskell lists of non-thunks (things of kind TYPE 'UnliftedRep)"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "unliftio" = callPackage ( { mkDerivation, @@ -698024,35 +405883,6 @@ self: { } ) { }; - "unm-hip" = callPackage ( - { - mkDerivation, - array, - base, - bytestring, - containers, - process, - vector, - }: - mkDerivation { - pname = "unm-hip"; - version = "0.3.1.6"; - sha256 = "170ivv689jg2k9p8czp6miq3samjbdwanh3vh9csm8iq88yrzry5"; - libraryHaskellDepends = [ - array - base - bytestring - containers - process - vector - ]; - description = "A Library for the manipulation of images"; - license = "GPL"; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "unmed2" = callPackage ( { mkDerivation, @@ -698139,219 +405969,6 @@ self: { } ) { }; - "unordered-containers-rematch" = callPackage ( - { - mkDerivation, - base, - hashable, - hspec, - HUnit, - rematch, - unordered-containers, - }: - mkDerivation { - pname = "unordered-containers-rematch"; - version = "0.1.0.0"; - sha256 = "13ld8whx1m5xglaj2adsn0qb1x00p6ir8l9kz7fv815n6ahgcii8"; - libraryHaskellDepends = [ - base - hashable - rematch - unordered-containers - ]; - testHaskellDepends = [ - base - hashable - hspec - HUnit - rematch - unordered-containers - ]; - description = "Rematch support for unordered containers"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "unordered-graphs" = callPackage ( - { - mkDerivation, - base, - deepseq, - dlist, - hashable, - unordered-containers, - }: - mkDerivation { - pname = "unordered-graphs"; - version = "0.1.0.1"; - sha256 = "1zvs79dbh09pi2km9yglqmf1bf2sfg8pac97aflah0zqpqj10khb"; - libraryHaskellDepends = [ - base - deepseq - dlist - hashable - unordered-containers - ]; - description = "Graph library using unordered-containers"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "unordered-intmap" = callPackage ( - { - mkDerivation, - base, - containers, - deepseq, - primitive, - QuickCheck, - tasty, - tasty-quickcheck, - }: - mkDerivation { - pname = "unordered-intmap"; - version = "0.1.1"; - sha256 = "1vvn510v4gy70lk2bkx45bh7hk0kfdn62j3rp913j57d4c6azynq"; - libraryHaskellDepends = [ - base - deepseq - primitive - ]; - testHaskellDepends = [ - base - containers - deepseq - primitive - QuickCheck - tasty - tasty-quickcheck - ]; - description = "A specialization of `HashMap Int v`"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "unpack-funcs" = callPackage ( - { - mkDerivation, - base, - bytestring, - primitive, - template-haskell, - transformers, - vector, - }: - mkDerivation { - pname = "unpack-funcs"; - version = "0.3.1"; - sha256 = "0ha8xbg1a560rd5grg6i2acg3nzq6f4d6qa7i6vrbnz7bqbg77q3"; - libraryHaskellDepends = [ - base - bytestring - primitive - template-haskell - transformers - vector - ]; - description = "Monad transformers that mirror worker-wrapper transformations"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "unpacked-containers" = callPackage ( - { - mkDerivation, - base, - data-default-class, - deepseq, - ghc-prim, - }: - mkDerivation { - pname = "unpacked-containers"; - version = "0"; - sha256 = "17hm6r84kark7akn18lsvb0z6q5hcy4ap89nbkhxfhkchrqc6bfr"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - data-default-class - deepseq - ghc-prim - ]; - executableHaskellDepends = [ base ]; - doHaddock = false; - description = "Unpacked containers via backpack"; - license = lib.licenses.bsd2; - hydraPlatforms = lib.platforms.none; - mainProgram = "unpacked-set-example"; - broken = true; - } - ) { }; - - "unpacked-either" = callPackage ( - { - mkDerivation, - base, - ghc-prim, - QuickCheck, - quickcheck-classes, - }: - mkDerivation { - pname = "unpacked-either"; - version = "0.1.0.0"; - sha256 = "156njvsi91c0vmn0inr0n714qcj4y8hvjcjhp3k35h59l7jmlcph"; - libraryHaskellDepends = [ - base - ghc-prim - ]; - testHaskellDepends = [ - base - QuickCheck - quickcheck-classes - ]; - description = "An unpacked either data type"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "unpacked-maybe" = callPackage ( - { - mkDerivation, - base, - ghc-prim, - QuickCheck, - quickcheck-classes, - }: - mkDerivation { - pname = "unpacked-maybe"; - version = "0.1.0.0"; - sha256 = "13m0yai735cw910p4vm508yyxp0dgmizp6pjgja698aasarvrn96"; - libraryHaskellDepends = [ - base - ghc-prim - ]; - testHaskellDepends = [ - base - QuickCheck - quickcheck-classes - ]; - description = "An unpacked maybe data type"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "unpacked-maybe-numeric" = callPackage ( { mkDerivation, @@ -698403,139 +406020,6 @@ self: { } ) { }; - "unpacked-these" = callPackage ( - { - mkDerivation, - base, - deepseq, - ghc-prim, - QuickCheck, - quickcheck-classes, - these, - unpacked-maybe, - }: - mkDerivation { - pname = "unpacked-these"; - version = "0.1.0.0"; - sha256 = "18m0ynw9dnyfkk4nvkfp0qjhzwis5696si3cvkh5chpqm6m725sv"; - libraryHaskellDepends = [ - base - deepseq - ghc-prim - these - unpacked-maybe - ]; - testHaskellDepends = [ - base - QuickCheck - quickcheck-classes - ]; - description = "An unpacked these data type"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "unpacked-validation" = callPackage ( - { - mkDerivation, - base, - deepseq, - ghc-prim, - QuickCheck, - quickcheck-classes, - unpacked-either, - validation, - }: - mkDerivation { - pname = "unpacked-validation"; - version = "0.1.0.0"; - sha256 = "058lp5b4cpyksmpnzj5v1vckbaa22mclprfqq9bl619vpr3y0gg2"; - libraryHaskellDepends = [ - base - deepseq - ghc-prim - unpacked-either - validation - ]; - testHaskellDepends = [ - base - QuickCheck - quickcheck-classes - ]; - description = "An unpacked validation data type"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "unparse-attoparsec" = callPackage ( - { - mkDerivation, - aeson, - attoparsec, - base, - bytestring, - constraints, - mtl, - profunctor-monad, - profunctors, - scientific, - text, - unordered-containers, - vector, - }: - mkDerivation { - pname = "unparse-attoparsec"; - version = "0.1.0.0"; - sha256 = "1xkvjdnnks7897fgnk93vn1xsvg67yvr8p7jnsbsmsdhd5d6c5fs"; - libraryHaskellDepends = [ - attoparsec - base - bytestring - mtl - profunctors - ]; - testHaskellDepends = [ - aeson - base - bytestring - constraints - mtl - profunctor-monad - profunctors - scientific - text - unordered-containers - vector - ]; - description = "An attoparsec roundtrip"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "unroll-ghc-plugin" = callPackage ( - { - mkDerivation, - base, - ghc, - }: - mkDerivation { - pname = "unroll-ghc-plugin"; - version = "0.1.1"; - sha256 = "0n05777fqqpbgnh9jab04ayw1j1as4wkkbrjixi1288fhi44m87p"; - libraryHaskellDepends = [ - base - ghc - ]; - description = "Compiler plugin for loop unrolling"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "unsafe" = callPackage ( { mkDerivation, base }: mkDerivation { @@ -698569,22 +406053,6 @@ self: { } ) { }; - "unsafely" = callPackage ( - { mkDerivation, base }: - mkDerivation { - pname = "unsafely"; - version = "0.2.0.0"; - sha256 = "10v50bzd7ccjs0d1spvyl6awhwdhxmkcacm2lkillk9f7myild0r"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base ]; - description = "Flexible access control for unsafe operations and instances"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "unsafeperformst" = callPackage ( { mkDerivation, base }: mkDerivation { @@ -698619,81 +406087,6 @@ self: { } ) { }; - "unscramble" = callPackage ( - { - mkDerivation, - array, - base, - optparse-applicative, - stream-fusion, - unordered-containers, - }: - mkDerivation { - pname = "unscramble"; - version = "1.0"; - sha256 = "1zlf9dw3yid6s9p0q837h3qs2wnd9wr9kh282j4j4m0gpv9dcrrf"; - isLibrary = false; - isExecutable = true; - enableSeparateDataOutput = true; - executableHaskellDepends = [ - array - base - optparse-applicative - stream-fusion - unordered-containers - ]; - description = "Solve Boggle-like word games"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - mainProgram = "unscramble"; - } - ) { }; - - "unsequential" = callPackage ( - { - mkDerivation, - attoparsec, - base, - base-prelude, - dlist, - interspersed, - QuickCheck, - quickcheck-instances, - rebase, - tasty, - tasty-hunit, - tasty-quickcheck, - tasty-smallcheck, - transformers, - }: - mkDerivation { - pname = "unsequential"; - version = "0.5.2.1"; - sha256 = "00j3gvs7nf959wpsfk21fgn8waah90scb8r3gqwvams7zskng1vm"; - libraryHaskellDepends = [ - base - base-prelude - dlist - transformers - ]; - testHaskellDepends = [ - attoparsec - interspersed - QuickCheck - quickcheck-instances - rebase - tasty - tasty-hunit - tasty-quickcheck - tasty-smallcheck - ]; - description = "An extension removing the sequentiality from monads"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "unusable-pkg" = callPackage ( { mkDerivation, base }: mkDerivation { @@ -698709,83 +406102,6 @@ self: { } ) { }; - "unused" = callPackage ( - { - mkDerivation, - ansi-terminal, - base, - bytestring, - cassava, - containers, - directory, - file-embed, - filepath, - hspec, - inflections, - megaparsec, - mtl, - optparse-applicative, - parallel-io, - process, - regex-tdfa, - terminal-progress-bar, - text, - transformers, - unix, - unordered-containers, - vector, - yaml, - }: - mkDerivation { - pname = "unused"; - version = "0.10.0.0"; - sha256 = "1dsiwpczgq6bg08h4zy9m1jgr6v5haj2jxkr680s5arcxn6l8c34"; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - ansi-terminal - base - bytestring - cassava - containers - directory - file-embed - filepath - inflections - megaparsec - mtl - parallel-io - process - regex-tdfa - terminal-progress-bar - text - transformers - unix - unordered-containers - vector - yaml - ]; - executableHaskellDepends = [ - base - mtl - optparse-applicative - transformers - ]; - testHaskellDepends = [ - base - containers - hspec - text - ]; - description = "A command line tool to identify unused code"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - mainProgram = "unused"; - broken = true; - } - ) { }; - "unwrapped-functors" = callPackage ( { mkDerivation, base }: mkDerivation { @@ -698914,26 +406230,6 @@ self: { } ) { }; - "update-monad" = callPackage ( - { - mkDerivation, - base, - mtl, - }: - mkDerivation { - pname = "update-monad"; - version = "0.1.0.0"; - sha256 = "0l6gbfw0rmhkk2iq3wd2zzyld2nvjmbrlg7rqqv962cahs5mydns"; - libraryHaskellDepends = [ - base - mtl - ]; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "update-nix-fetchgit" = callPackage ( { mkDerivation, @@ -699097,43 +406393,6 @@ self: { } ) { }; - "uploadcare" = callPackage ( - { - mkDerivation, - aeson, - attoparsec, - base, - bytestring, - cryptohash, - hex, - http-conduit, - http-types, - old-locale, - time, - }: - mkDerivation { - pname = "uploadcare"; - version = "0.1"; - sha256 = "1lm7mp8djhxylavihaljqjfsgzpn747plkq6f7yd2dk32xlsb5bz"; - libraryHaskellDepends = [ - aeson - attoparsec - base - bytestring - cryptohash - hex - http-conduit - http-types - old-locale - time - ]; - description = "Haskell client for Uploadcare"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "uploadtest" = callPackage ( { mkDerivation, base }: mkDerivation { @@ -699146,27 +406405,6 @@ self: { } ) { }; - "upskirt" = callPackage ( - { - mkDerivation, - base, - bytestring, - }: - mkDerivation { - pname = "upskirt"; - version = "0.0.4"; - sha256 = "0528345xiq2xmi9fwzv0rvbjqfhcvyhkik8c453yr2nr03k0zs4c"; - libraryHaskellDepends = [ - base - bytestring - ]; - description = "Binding to upskirt"; - license = lib.licenses.publicDomain; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "urbit-airlock" = callPackage ( { mkDerivation, @@ -699243,186 +406481,6 @@ self: { } ) { }; - "urbit-hob" = callPackage ( - { - mkDerivation, - base, - bytestring, - criterion, - deepseq, - hspec, - hspec-core, - murmur3, - QuickCheck, - text, - vector, - }: - mkDerivation { - pname = "urbit-hob"; - version = "0.3.3"; - sha256 = "1w38bsjis13lh6jry2rln3xbc9ap7lk3dhi6rb6kddashjyibfr0"; - libraryHaskellDepends = [ - base - bytestring - murmur3 - text - vector - ]; - testHaskellDepends = [ - base - hspec - hspec-core - QuickCheck - text - ]; - benchmarkHaskellDepends = [ - base - criterion - deepseq - ]; - description = "Hoon-style atom manipulation and printing functions"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "ureader" = callPackage ( - { - mkDerivation, - ansi-wl-pprint, - async, - base, - bytestring, - containers, - curl, - data-default, - deepseq, - directory, - download-curl, - feed, - filepath, - implicit-params, - network, - old-locale, - opml, - optparse-applicative, - parallel-io, - split, - tagsoup, - terminal-size, - text, - time, - xml, - }: - mkDerivation { - pname = "ureader"; - version = "0.2.0.0"; - sha256 = "11zgs8mmmkvddyq6s0x98gdqbdaj6n3rxf6ab3xf1ap2cd4siwb8"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - ansi-wl-pprint - async - base - bytestring - containers - curl - data-default - deepseq - directory - download-curl - feed - filepath - implicit-params - network - old-locale - opml - optparse-applicative - parallel-io - split - tagsoup - terminal-size - text - time - xml - ]; - description = "Minimalistic CLI RSS reader"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "ureader"; - } - ) { }; - - "urembed" = callPackage ( - { - mkDerivation, - base, - bytestring, - cake3, - directory, - filepath, - language-javascript, - mime-types, - mtl, - optparse-applicative, - process, - syb, - text, - }: - mkDerivation { - pname = "urembed"; - version = "0.5.0.1"; - sha256 = "0fnr3xskzwxxxk7iv5bmqa18zbr612pn27jjiac0l4wzv33lisik"; - isLibrary = false; - isExecutable = true; - enableSeparateDataOutput = true; - executableHaskellDepends = [ - base - bytestring - cake3 - directory - filepath - language-javascript - mime-types - mtl - optparse-applicative - process - syb - text - ]; - description = "Ur/Web static content generator"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "urembed"; - } - ) { }; - - "uri" = callPackage ( - { - mkDerivation, - base, - parsec, - safe, - utf8-string, - }: - mkDerivation { - pname = "uri"; - version = "0.1.6.5"; - sha256 = "0gfv54ys1h4ac3dhaypnpnm4w781857n2k8680jflnjbkqlandrr"; - libraryHaskellDepends = [ - base - parsec - safe - utf8-string - ]; - description = "Library for working with URIs"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "uri-bytestring" = callPackage ( { mkDerivation, @@ -699513,47 +406571,6 @@ self: { } ) { }; - "uri-conduit" = callPackage ( - { - mkDerivation, - base, - bytestring, - conduit, - containers, - deepseq, - failure, - monad-control, - network, - system-fileio, - system-filepath, - text, - transformers, - }: - mkDerivation { - pname = "uri-conduit"; - version = "1.1.1.2"; - sha256 = "0bmq241in1x0bjffp6nmbz8lf324q926mcddpvmzn2j1ipy7fvg6"; - libraryHaskellDepends = [ - base - bytestring - conduit - containers - deepseq - failure - monad-control - network - system-fileio - system-filepath - text - transformers - ]; - description = "Read and write URIs (deprecated)"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "uri-encode" = callPackage ( { mkDerivation, @@ -699583,242 +406600,6 @@ self: { } ) { }; - "uri-encoder" = callPackage ( - { - mkDerivation, - base, - bytestring, - criterion, - network-uri, - QuickCheck, - quickcheck-instances, - vector, - }: - mkDerivation { - pname = "uri-encoder"; - version = "0.0.0.0"; - sha256 = "0nrvk039k0pr79nbp78rhav46q2hsns23zzlfgzn878w6shzhyxs"; - libraryHaskellDepends = [ - base - bytestring - vector - ]; - testHaskellDepends = [ - base - bytestring - QuickCheck - quickcheck-instances - vector - ]; - benchmarkHaskellDepends = [ - base - bytestring - criterion - network-uri - ]; - description = "A uri encoder to make your strings less readable"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "uri-enumerator" = callPackage ( - { - mkDerivation, - base, - bytestring, - containers, - enumerator, - failure, - network, - text, - transformers, - }: - mkDerivation { - pname = "uri-enumerator"; - version = "0.1.0.1"; - sha256 = "164yzmx18ykkf2vbl9zhqmbvb80dig8bx3pfadw23a6wyvigmhw5"; - libraryHaskellDepends = [ - base - bytestring - containers - enumerator - failure - network - text - transformers - ]; - description = "Read and write URIs (deprecated)"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "uri-enumerator-file" = callPackage ( - { - mkDerivation, - base, - bytestring, - containers, - enumerator, - lifted-base, - monad-control, - network, - system-fileio, - system-filepath, - text, - transformers, - uri-enumerator, - }: - mkDerivation { - pname = "uri-enumerator-file"; - version = "0.1.1.1"; - sha256 = "15ycv01kmwnwq3qkjjcl8ayal0p4klhflzkykm2rlq1d8mi2vmd6"; - libraryHaskellDepends = [ - base - bytestring - containers - enumerator - lifted-base - monad-control - network - system-fileio - system-filepath - text - transformers - uri-enumerator - ]; - description = "uri-enumerator backend for the file scheme (deprecated)"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "uri-parse" = callPackage ( - { - mkDerivation, - attoparsec, - base, - bytestring, - data-default, - hspec, - http-types, - lens, - text, - }: - mkDerivation { - pname = "uri-parse"; - version = "0.1.0.1"; - sha256 = "0dw9wms9x50yf0snk0qv628nmxsdp3ksnmjqz66lhdfzd1s5zv0k"; - libraryHaskellDepends = [ - attoparsec - base - bytestring - data-default - http-types - lens - text - ]; - testHaskellDepends = [ - base - data-default - hspec - lens - ]; - description = "A simple library for parsing and generating URIs"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "uri-template" = callPackage ( - { - mkDerivation, - base, - containers, - utf8-string, - }: - mkDerivation { - pname = "uri-template"; - version = "0.2"; - sha256 = "1y1jqymjbawwdywk770j4rk8sy7p1plvfliwcmqr0h16y31kzlpl"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - containers - utf8-string - ]; - executableHaskellDepends = [ base ]; - description = "URI template library for Haskell"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "main"; - broken = true; - } - ) { }; - - "uri-templater" = callPackage ( - { - mkDerivation, - ansi-wl-pprint, - base, - bytestring, - charset, - containers, - dlist, - HTTP, - HUnit, - mtl, - parsers, - template-haskell, - text, - time, - trifecta, - unordered-containers, - uuid-types, - vector, - }: - mkDerivation { - pname = "uri-templater"; - version = "0.3.1.0"; - sha256 = "1hj93jgn8xch9bw9fs76qsfqarb15csfy0ddnr1dxcq04vznbri1"; - revision = "2"; - editedCabalFile = "1fc0agzm3qasslhns64qbyhml31s1akib0mfaj2298iqm8075jyg"; - libraryHaskellDepends = [ - ansi-wl-pprint - base - bytestring - charset - containers - dlist - HTTP - mtl - parsers - template-haskell - text - time - trifecta - unordered-containers - uuid-types - vector - ]; - testHaskellDepends = [ - ansi-wl-pprint - base - HUnit - mtl - template-haskell - ]; - description = "Parsing & Quasiquoting for RFC 6570 URI Templates"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "url" = callPackage ( { mkDerivation, @@ -699893,82 +406674,6 @@ self: { } ) { }; - "url-decoders" = callPackage ( - { - mkDerivation, - base, - base-prelude, - binary-parser, - bytestring, - criterion, - http-types, - QuickCheck, - quickcheck-instances, - rerebase, - tasty, - tasty-hunit, - tasty-quickcheck, - text, - unordered-containers, - }: - mkDerivation { - pname = "url-decoders"; - version = "0.2.1"; - sha256 = "1ai75nddrxsn2zhbqw860f72pxbby0wwwvlszcx820m2ka790g6x"; - libraryHaskellDepends = [ - base - base-prelude - binary-parser - bytestring - text - unordered-containers - ]; - testHaskellDepends = [ - http-types - QuickCheck - quickcheck-instances - rerebase - tasty - tasty-hunit - tasty-quickcheck - ]; - benchmarkHaskellDepends = [ - criterion - http-types - rerebase - ]; - description = "Decoders for URL-encoding (aka Percent-encoding)"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "url-generic" = callPackage ( - { - mkDerivation, - base, - mtl, - syb, - }: - mkDerivation { - pname = "url-generic"; - version = "0.1"; - sha256 = "0yfcy2nhc67kxb7n9mjxi4z5jcq4iz4kq80fb9lbi461vijhmw5m"; - revision = "1"; - editedCabalFile = "1fbgzz9yhqc5lx15n551r190g2a6f1plf3clpar76fj3wqn6x4nr"; - libraryHaskellDepends = [ - base - mtl - syb - ]; - description = "Parse/format generic key/value URLs from record data types"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "url-slug" = callPackage ( { mkDerivation, @@ -699994,88 +406699,7 @@ self: { uri-encode ]; description = "Encoding and decoding of URL slugs"; - license = lib.licenses.mit; - } - ) { }; - - "urlcheck" = callPackage ( - { - mkDerivation, - base, - bytestring, - containers, - mtl, - network, - old-time, - }: - mkDerivation { - pname = "urlcheck"; - version = "0.1.1"; - sha256 = "1mddlppdb0c9pxvjfm40i0bcrg7wbc61hzlrlv6kir0n1j9yb8ri"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - bytestring - containers - mtl - network - old-time - ]; - description = "Parallel link checker"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "urlcheck"; - broken = true; - } - ) { }; - - "urldecode" = callPackage ( - { - mkDerivation, - base, - network, - }: - mkDerivation { - pname = "urldecode"; - version = "1.0.0.2"; - sha256 = "13fip41s78qcnrg4zccd5lk3qbsaax7h5sspc0xjzlaca664hq3y"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - network - ]; - description = "Decode percent-encoded strings"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "urldecode"; - broken = true; - } - ) { }; - - "urldisp-happstack" = callPackage ( - { - mkDerivation, - base, - bytestring, - happstack-server, - mtl, - }: - mkDerivation { - pname = "urldisp-happstack"; - version = "0.1"; - sha256 = "1kg25w5pnmsnjwycnf0q6d65cqfw5d0xn9rwyn4ybhh3a8q2yaa8"; - libraryHaskellDepends = [ - base - bytestring - happstack-server - mtl - ]; - description = "Simple, declarative, expressive URL routing -- on happstack"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; + license = lib.licenses.mit; } ) { }; @@ -700162,99 +406786,6 @@ self: { } ) { }; - "urn" = callPackage ( - { - mkDerivation, - base, - hspec, - parsec, - }: - mkDerivation { - pname = "urn"; - version = "0.1.0.0"; - sha256 = "1wxgq445nzfly9773bjx3mr15l8ga4840d2q1zw50kk07fwxx6h7"; - libraryHaskellDepends = [ - base - parsec - ]; - testHaskellDepends = [ - base - hspec - ]; - description = "Universal Resource Names"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "urn-random" = callPackage ( - { - mkDerivation, - base, - deepseq, - haskell-src-meta, - integer-gmp, - MonadRandom, - QuickCheck, - template-haskell, - transformers, - }: - mkDerivation { - pname = "urn-random"; - version = "0.1.0.0"; - sha256 = "1zpx56gy8dnmnkkqqhzqxiw2yqkan6h2gfm9lq4218978801jdl4"; - libraryHaskellDepends = [ - base - deepseq - haskell-src-meta - integer-gmp - MonadRandom - QuickCheck - template-haskell - transformers - ]; - description = "A package for updatable discrete distributions"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "urxml" = callPackage ( - { - mkDerivation, - base, - filepath, - mtl, - optparse-applicative, - parsec, - process, - syb, - }: - mkDerivation { - pname = "urxml"; - version = "0.2.0.0"; - sha256 = "141b2dhqpbirqlv53rm3xsl14mq0vxw96r3qhygraw5gp5vlvgl9"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - filepath - mtl - optparse-applicative - parsec - process - syb - ]; - description = "XML parser-printer supporting Ur/Web syntax extensions"; - license = lib.licenses.publicDomain; - hydraPlatforms = lib.platforms.none; - mainProgram = "urxml"; - broken = true; - } - ) { }; - "usa-holidays" = callPackage ( { mkDerivation, @@ -700283,218 +406814,6 @@ self: { } ) { }; - "usb" = callPackage ( - { - mkDerivation, - base, - bindings-libusb, - bytestring, - containers, - ghc-prim, - text, - vector, - }: - mkDerivation { - pname = "usb"; - version = "1.3.0.6"; - sha256 = "1ipjcm8kxhi0lhqhypnppn5jk7z70rnrybawxwhdij9gj4jz3bhh"; - libraryHaskellDepends = [ - base - bindings-libusb - bytestring - containers - ghc-prim - text - vector - ]; - description = "Communicate with USB devices"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "usb-enumerator" = callPackage ( - { - mkDerivation, - base, - base-unicode-symbols, - bindings-libusb, - iteratee, - monad-control, - transformers, - usb, - }: - mkDerivation { - pname = "usb-enumerator"; - version = "0.3"; - sha256 = "1gd132pshcqa8539g1dmx1hpzfdd33x7vpi9d3hrc6q6l6312nfs"; - libraryHaskellDepends = [ - base - base-unicode-symbols - bindings-libusb - iteratee - monad-control - transformers - usb - ]; - description = "Iteratee enumerators for the usb package"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "usb-hid" = callPackage ( - { - mkDerivation, - attoparsec, - base, - bytestring, - usb, - }: - mkDerivation { - pname = "usb-hid"; - version = "0.1.0.0"; - sha256 = "0mx4f1zrk098c9isczni66i8qisx54r85kwyk2s238dznlys39gh"; - revision = "1"; - editedCabalFile = "1p780v435frqi04gc8db1jj1ra9c98jpdwmy4p274azp0gi51q9z"; - libraryHaskellDepends = [ - attoparsec - base - bytestring - usb - ]; - description = "Parser and request Library for USB HIDs"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "usb-id-database" = callPackage ( - { - mkDerivation, - base, - base-unicode-symbols, - bytestring, - containers, - containers-unicode-symbols, - parsimony, - }: - mkDerivation { - pname = "usb-id-database"; - version = "0.4.0.9"; - sha256 = "1ji6zrglmlkhv743w4d4lrqvhva4yl5kqxb420z44l1wymvgg1s1"; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base - base-unicode-symbols - bytestring - containers - containers-unicode-symbols - parsimony - ]; - description = "A database of USB identifiers"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "usb-iteratee" = callPackage ( - { - mkDerivation, - base, - base-unicode-symbols, - bindings-libusb, - iteratee, - monad-control, - usb, - vector, - }: - mkDerivation { - pname = "usb-iteratee"; - version = "0.5"; - sha256 = "04kv2pfw24d46b135p6mwgf40wb9q43lcy66cbczh4lz0630j771"; - libraryHaskellDepends = [ - base - base-unicode-symbols - bindings-libusb - iteratee - monad-control - usb - vector - ]; - description = "Iteratee enumerators for the usb package"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "usb-safe" = callPackage ( - { - mkDerivation, - base, - base-unicode-symbols, - bindings-libusb, - bytestring, - iteratee, - regions, - text, - transformers, - usb, - }: - mkDerivation { - pname = "usb-safe"; - version = "0.14"; - sha256 = "1dhx7y74f2c04dmlsx0i80ar31d6k2qsgh7432c8k0y29iwhdzfm"; - libraryHaskellDepends = [ - base - base-unicode-symbols - bindings-libusb - bytestring - iteratee - regions - text - transformers - usb - ]; - description = "Type-safe communication with USB devices"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "useragents" = callPackage ( - { - mkDerivation, - base, - random-fu, - text, - }: - mkDerivation { - pname = "useragents"; - version = "1.0.0"; - sha256 = "1n4n4mhikzgx2a9qq8rify5wwhngnz0qip32fnhshham5yyldmy6"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - random-fu - text - ]; - executableHaskellDepends = [ - base - random-fu - text - ]; - description = "A collection of user agents"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - mainProgram = "random-user-agent"; - broken = true; - } - ) { }; - "userid" = callPackage ( { mkDerivation, @@ -700553,149 +406872,6 @@ self: { } ) { }; - "users-mysql-haskell" = callPackage ( - { - mkDerivation, - base, - bytestring, - io-streams, - mysql-haskell, - tasty, - tasty-hunit, - text, - time, - transformers, - users, - uuid, - }: - mkDerivation { - pname = "users-mysql-haskell"; - version = "0.5.2.0"; - sha256 = "0c3r6q7hmmcpqd9nadda3bq83j86zym7d5v3ji2xrqk033cs5xx7"; - libraryHaskellDepends = [ - base - io-streams - mysql-haskell - text - time - transformers - users - uuid - ]; - testHaskellDepends = [ - base - bytestring - io-streams - mysql-haskell - tasty - tasty-hunit - text - time - transformers - users - uuid - ]; - description = "A mysql-haskell backend for the users library"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "users-persistent" = callPackage ( - { - mkDerivation, - base, - bytestring, - esqueleto, - hspec, - monad-logger, - mtl, - persistent, - persistent-sqlite, - persistent-template, - temporary, - text, - time, - transformers, - users, - users-test, - uuid, - }: - mkDerivation { - pname = "users-persistent"; - version = "0.5.0.2"; - sha256 = "0k4l32ckrkam1aplriz38791jhwnfr2k8w4wjx9j7a5ckrn96q7q"; - libraryHaskellDepends = [ - base - bytestring - esqueleto - mtl - persistent - persistent-template - text - time - transformers - users - uuid - ]; - testHaskellDepends = [ - base - hspec - monad-logger - persistent-sqlite - temporary - text - users-test - ]; - description = "A persistent backend for the users package"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "users-postgresql-simple" = callPackage ( - { - mkDerivation, - base, - bytestring, - hspec, - mtl, - postgresql-simple, - text, - time, - users, - users-test, - uuid, - }: - mkDerivation { - pname = "users-postgresql-simple"; - version = "0.5.0.2"; - sha256 = "0061dvlj706rqrfq4wyqx0ylghac13j0x9bicb5smpkckhn5s6q5"; - libraryHaskellDepends = [ - base - bytestring - mtl - postgresql-simple - text - time - users - uuid - ]; - testHaskellDepends = [ - base - hspec - postgresql-simple - users-test - ]; - description = "A PostgreSQL backend for the users package"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "users-test" = callPackage ( { mkDerivation, @@ -700719,116 +406895,6 @@ self: { } ) { }; - "utc" = callPackage ( - { - mkDerivation, - attoparsec, - base, - bytestring, - Cabal, - clock, - exceptions, - QuickCheck, - test-framework, - test-framework-quickcheck2, - text, - }: - mkDerivation { - pname = "utc"; - version = "0.2.0.1"; - sha256 = "0vnydjjvv0kh1mww9vb9l90crl9ddd5n63dwpjjs8ln56b5yvv5h"; - libraryHaskellDepends = [ - attoparsec - base - bytestring - clock - exceptions - text - ]; - testHaskellDepends = [ - attoparsec - base - bytestring - Cabal - clock - exceptions - QuickCheck - test-framework - test-framework-quickcheck2 - text - ]; - description = "A pragmatic time and date library"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - maintainers = [ lib.maintainers.sternenseemann ]; - broken = true; - } - ) { }; - - "utf" = callPackage ( - { - mkDerivation, - base, - gauge, - util, - }: - mkDerivation { - pname = "utf"; - version = "0.0.0.0"; - sha256 = "0j441d8k4299798d4w78vbxvs3qh9w124zwl0f91rmydw9q4hg37"; - libraryHaskellDepends = [ - base - util - ]; - testHaskellDepends = [ base ]; - benchmarkHaskellDepends = [ - base - gauge - ]; - description = "UTF-8"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "utf8-conversions" = callPackage ( - { - mkDerivation, - base, - bytestring, - charsetdetect-ae, - hspec, - text, - text-short, - utf8-string, - }: - mkDerivation { - pname = "utf8-conversions"; - version = "0.1.0.4"; - sha256 = "0j5jskj35njz5c9yqs3sc0a8zmmjmnil8996pwr8akghj282b4wz"; - libraryHaskellDepends = [ - base - bytestring - text - text-short - utf8-string - ]; - testHaskellDepends = [ - base - bytestring - charsetdetect-ae - hspec - text - text-short - utf8-string - ]; - description = "A string conversion library that assumes utf8"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "utf8-env" = callPackage ( { mkDerivation, @@ -700880,31 +406946,6 @@ self: { } ) { }; - "utf8-prelude" = callPackage ( - { - mkDerivation, - base, - utf8-string, - }: - mkDerivation { - pname = "utf8-prelude"; - version = "0.1.6"; - sha256 = "156kjn3da02z060srlsm8kqwbxzcscjzxdkp4lmv8zq5zscha5v6"; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base - utf8-string - ]; - description = "Variants of Prelude and System.IO with UTF8 text I/O operations"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "utf8-test"; - broken = true; - } - ) { }; - "utf8-string" = callPackage ( { mkDerivation, @@ -700929,45 +406970,6 @@ self: { } ) { }; - "utf8-validator" = callPackage ( - { - mkDerivation, - base, - bytestring, - criterion, - tasty, - tasty-hunit, - text, - utf8-string, - }: - mkDerivation { - pname = "utf8-validator"; - version = "0.1.0.0"; - sha256 = "1r4y6gvd4jqfqv4qz01bhq1r17lsi548p6sr1byvkj00nia0cyjk"; - libraryHaskellDepends = [ - base - bytestring - text - ]; - testHaskellDepends = [ - base - bytestring - tasty - tasty-hunit - text - utf8-string - ]; - benchmarkHaskellDepends = [ - base - criterion - ]; - description = "Constant-space UTF8 validator for ByteStrings"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "util" = callPackage ( { mkDerivation, @@ -700991,193 +406993,6 @@ self: { } ) { }; - "util-exception" = callPackage ( - { - mkDerivation, - base, - basic, - control, - lifted-base-tf, - util, - }: - mkDerivation { - pname = "util-exception"; - version = "0.2.0.0"; - sha256 = "0dx617saxbz8ij78kspm4j9zibf77d2hpjbci1c3ag7dhxagvjbx"; - revision = "2"; - editedCabalFile = "1h5s7qkdgfifw35dg7wzsr42q1dcficrjvw9b1qhff00m7avdam0"; - libraryHaskellDepends = [ - base - basic - control - lifted-base-tf - util - ]; - description = "Exceptional utilities"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "util-logict" = callPackage ( - { - mkDerivation, - base, - gauge, - logict, - }: - mkDerivation { - pname = "util-logict"; - version = "0.0.0.0"; - sha256 = "1d8jl1dcbyvivhr46m0qw3j1khir8k52pchjczb0v52jhy8lihwr"; - libraryHaskellDepends = [ - base - logict - ]; - testHaskellDepends = [ - base - logict - ]; - benchmarkHaskellDepends = [ - base - gauge - logict - ]; - description = "See README for more info"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "util-plus" = callPackage ( - { - mkDerivation, - array, - base, - containers, - hashable, - HTF, - QuickCheck, - safe, - unordered-containers, - }: - mkDerivation { - pname = "util-plus"; - version = "0.1.0.0"; - sha256 = "062xs84zgqvxwvydbb2ivyhsfsmqk6wxl41pd4v7pyyqhdq588wm"; - libraryHaskellDepends = [ - array - base - containers - hashable - safe - unordered-containers - ]; - testHaskellDepends = [ - base - containers - HTF - QuickCheck - ]; - description = "A collection of commonly used utils"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "util-primitive" = callPackage ( - { - mkDerivation, - base, - primitive, - }: - mkDerivation { - pname = "util-primitive"; - version = "0.1.0.0"; - sha256 = "193y0fvr0szpdhg7ysvj99mfm983yvrmvpq77gv994vyjigq4y6w"; - revision = "1"; - editedCabalFile = "0wlgp8cq7gg585x041djxprm6a3kih1dkx2fbpg6bwi850ihglir"; - libraryHaskellDepends = [ - base - primitive - ]; - description = "Primitive memory-related utilities"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "util-primitive-control" = callPackage ( - { - mkDerivation, - base, - control, - primitive, - smallcheck, - tasty, - tasty-smallcheck, - util, - }: - mkDerivation { - pname = "util-primitive-control"; - version = "0.1.1.0"; - sha256 = "1sld7sh38smqmwi4nn2klbsh67419j77wbswblbv00rvh20xpl1h"; - revision = "1"; - editedCabalFile = "1f6p7swl027lljsh8kbnalvym8lqpg942y7srm8v0ps8r48qpxxg"; - libraryHaskellDepends = [ - base - control - primitive - util - ]; - testHaskellDepends = [ - base - smallcheck - tasty - tasty-smallcheck - ]; - description = "Utilities for stateful primitive types and types based on them"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "util-universe" = callPackage ( - { - mkDerivation, - base, - smallcheck, - tasty, - tasty-smallcheck, - universe-base, - universe-instances-base, - }: - mkDerivation { - pname = "util-universe"; - version = "0.1.0.0"; - sha256 = "1jpi5ic14knr3g8qmz6ls430ll4m9wi5ag1ngmlz46h1zlw53l8y"; - revision = "1"; - editedCabalFile = "076yx4zz3m7ppcp751jazs3z8zpjz1q2i87mhpc8yrrmln3pm7pc"; - libraryHaskellDepends = [ - base - universe-base - universe-instances-base - ]; - testHaskellDepends = [ - base - smallcheck - tasty - tasty-smallcheck - ]; - description = "Utilities for universal types"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "utility-ht" = callPackage ( { mkDerivation, @@ -701302,6 +407117,7 @@ self: { description = "An SDK for clients of the UTxO RPC specification"; license = lib.licenses.asl20; hydraPlatforms = lib.platforms.none; + broken = true; } ) { }; @@ -701384,102 +407200,10 @@ self: { license = lib.licenses.asl20; hydraPlatforms = lib.platforms.none; mainProgram = "server-example"; - } - ) { }; - - "uu-cco" = callPackage ( - { - mkDerivation, - ansi-terminal, - base, - }: - mkDerivation { - pname = "uu-cco"; - version = "0.1.0.5"; - sha256 = "008ckslrc60959k6l6mvk8dixr6vmfmiir6qj8wakgixcyd6ar6d"; - libraryHaskellDepends = [ - ansi-terminal - base - ]; - description = "Utilities for compiler construction: core functionality"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; broken = true; } ) { }; - "uu-cco-examples" = callPackage ( - { - mkDerivation, - base, - uu-cco, - uuagc, - uuagc-cabal, - }: - mkDerivation { - pname = "uu-cco-examples"; - version = "0.1.0.1"; - sha256 = "1i8idcbq602hl1il326lq9b5gcjm9qn00wpragr1kj676g615024"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - uu-cco - uuagc - uuagc-cabal - ]; - description = "Utilities for compiler construction: example programs"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "uu-cco-hut-parsing" = callPackage ( - { - mkDerivation, - base, - uu-cco, - uulib, - }: - mkDerivation { - pname = "uu-cco-hut-parsing"; - version = "0.1.0.1"; - sha256 = "06ddh2fcvy0zbzzdgpcx8kvlssrcmxx4swgkl8iy7223llanx0px"; - libraryHaskellDepends = [ - base - uu-cco - uulib - ]; - description = "Utilities for compiler construction: Feedback wrapper around parser in uulib"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "uu-cco-uu-parsinglib" = callPackage ( - { - mkDerivation, - base, - ListLike, - uu-cco, - uu-parsinglib, - }: - mkDerivation { - pname = "uu-cco-uu-parsinglib"; - version = "0.1.0.1"; - sha256 = "1sshnlqb0ydxgrhm0i1c3mpnixfsqwrf3gl59yz4rhiw5hy33z71"; - libraryHaskellDepends = [ - base - ListLike - uu-cco - uu-parsinglib - ]; - description = "Utilities for compiler construction: Feedback wrapper around parser in uu-parsinglib"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "uu-interleaved" = callPackage ( { mkDerivation, base }: mkDerivation { @@ -701494,38 +407218,6 @@ self: { } ) { }; - "uu-options" = callPackage ( - { - mkDerivation, - base, - lenses, - mtl, - template-haskell, - transformers, - uu-interleaved, - uu-parsinglib, - }: - mkDerivation { - pname = "uu-options"; - version = "0.2.0.0"; - sha256 = "11gixk6lxsakcdxir9jla5nk71phmlzd9hxp8wq23n550xw91ij6"; - revision = "1"; - editedCabalFile = "0bpamp1gdq81nxw0qmzgycadz8k3dnzldmid6p3dbics438nl559"; - libraryHaskellDepends = [ - base - lenses - mtl - template-haskell - transformers - uu-interleaved - uu-parsinglib - ]; - description = "Parse command line options using uu-interleave and uu-parsinglib"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "uu-parsinglib" = callPackage ( { mkDerivation, @@ -701661,55 +407353,6 @@ self: { } ) { }; - "uuagc-bootstrap" = callPackage ( - { - mkDerivation, - array, - base, - containers, - directory, - filepath, - ghc-prim, - haskell-src-exts, - mtl, - uulib, - }: - mkDerivation { - pname = "uuagc-bootstrap"; - version = "0.9.40.2"; - sha256 = "0zsb8pz2zx7y8sjp392hpdk30dzzmppjizcnlgd1wvq2csacnfxq"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - array - base - containers - directory - filepath - ghc-prim - haskell-src-exts - mtl - uulib - ]; - executableHaskellDepends = [ - array - base - containers - directory - filepath - ghc-prim - haskell-src-exts - mtl - uulib - ]; - description = "Attribute Grammar System of Universiteit Utrecht"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "uuagc-bootstrap"; - broken = true; - } - ) { }; - "uuagc-cabal" = callPackage ( { mkDerivation, @@ -701844,33 +407487,6 @@ self: { } ) { }; - "uuid-aeson" = callPackage ( - { - mkDerivation, - aeson, - base, - text, - uuid, - }: - mkDerivation { - pname = "uuid-aeson"; - version = "0.1.0.0"; - sha256 = "0nd2xm908zycrbmrayi6d4c9p9rfplsjkwnz43nrq94xjn1dp2yg"; - revision = "1"; - editedCabalFile = "056ql7mx42rswj5zphazl1h5mmvd84v8xnlwyln2jx7l7rb5rrjz"; - libraryHaskellDepends = [ - aeson - base - text - uuid - ]; - description = "Aeson types for UUID instances"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "uuid-bytes" = callPackage ( { mkDerivation, @@ -702113,74 +407729,6 @@ self: { } ) { }; - "uvector" = callPackage ( - { - mkDerivation, - base, - ghc-prim, - }: - mkDerivation { - pname = "uvector"; - version = "0.1.1.1"; - sha256 = "1psbdsq20nr28cr9ni2mwzwkpz3p20n1xqp0m0m9qafz66d2vi08"; - revision = "1"; - editedCabalFile = "023may02r17xg5wqh0lplcjdfiwaprbqn9p6jgmqs935qf9zz2g2"; - libraryHaskellDepends = [ - base - ghc-prim - ]; - description = "Fast unboxed arrays with a flexible interface"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "uvector-algorithms" = callPackage ( - { - mkDerivation, - base, - uvector, - }: - mkDerivation { - pname = "uvector-algorithms"; - version = "0.2"; - sha256 = "0jzlirrar7grq3h02k22zxyvy1wmfrjw9lscnhpjqmsxjli1jh81"; - libraryHaskellDepends = [ - base - uvector - ]; - description = "Efficient algorithms for uvector unboxed arrays"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "uxadt" = callPackage ( - { - mkDerivation, - base, - json, - MissingH, - mtl, - }: - mkDerivation { - pname = "uxadt"; - version = "0.0.16.0"; - sha256 = "0qmp5k4wg5ja2382cwarf8fwjval2a5wdwvz32f965hvwgc9cd43"; - libraryHaskellDepends = [ - base - json - MissingH - mtl - ]; - description = "Cross-language extensible representation for algebraic data type instances"; - license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "uzbl-with-source" = callPackage ( { mkDerivation, @@ -702200,300 +407748,6 @@ self: { } ) { }; - "v4l2" = callPackage ( - { - mkDerivation, - base, - bindings-DSL, - bindings-libv4l2, - bindings-linux-videodev2, - bindings-posix, - containers, - ioctl, - }: - mkDerivation { - pname = "v4l2"; - version = "0.1.0.3"; - sha256 = "1hhdpljlic1kyz0pgnv9a04z6prv7rl3x5bam5j0yhm5vijrisgp"; - libraryHaskellDepends = [ - base - bindings-DSL - bindings-libv4l2 - bindings-linux-videodev2 - bindings-posix - containers - ioctl - ]; - description = "interface to Video For Linux Two (V4L2)"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "v4l2-examples" = callPackage ( - { - mkDerivation, - base, - GLUT, - v4l2, - }: - mkDerivation { - pname = "v4l2-examples"; - version = "0.1.0.2"; - sha256 = "1knn4cbvvk1vsn9if87hqfg761n4410p08g7vlav900svfm8i1l5"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - GLUT - v4l2 - ]; - description = "video for linux two examples"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "vabal" = callPackage ( - { - mkDerivation, - base, - bytestring, - Cabal, - cassava, - containers, - directory, - filepath, - http-client, - http-client-tls, - http-types, - optparse-applicative, - process, - vabal-lib, - }: - mkDerivation { - pname = "vabal"; - version = "2.0.0"; - sha256 = "1kcdnkm0yws0v2b7yiwiwfi7db9il678s8x1jnq61zwlrfz7bsjl"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - bytestring - Cabal - cassava - containers - directory - filepath - http-client - http-client-tls - http-types - optparse-applicative - process - vabal-lib - ]; - testHaskellDepends = [ - base - process - ]; - description = "the cabal companion"; - license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - mainProgram = "vabal"; - } - ) { }; - - "vabal-lib" = callPackage ( - { - mkDerivation, - base, - bytestring, - Cabal, - cassava, - containers, - vector, - }: - mkDerivation { - pname = "vabal-lib"; - version = "2.0.0"; - sha256 = "1apryz8dvc4lk5nls330hpmbn9cc1qrhair2xybsh666whpmmmxp"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base - bytestring - Cabal - cassava - containers - vector - ]; - testHaskellDepends = [ - base - Cabal - containers - ]; - description = "Core algorithms and datatypes used by vabal"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "vacuum" = callPackage ( - { - mkDerivation, - array, - base, - containers, - ghc-prim, - }: - mkDerivation { - pname = "vacuum"; - version = "2.2.0.0"; - sha256 = "157wjx2shzfh6dfl6h8x017cn9ji3ql1p0gpi79ginz4s81f2ny1"; - libraryHaskellDepends = [ - array - base - containers - ghc-prim - ]; - description = "Graph representation of the GHC heap"; - license = lib.licenses.lgpl3Only; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "vacuum-cairo" = callPackage ( - { - mkDerivation, - base, - cairo, - deepseq, - directory, - gtk, - pretty, - process, - strict-concurrency, - svgcairo, - vacuum, - }: - mkDerivation { - pname = "vacuum-cairo"; - version = "0.5"; - sha256 = "0jp3xn1h28igcg3xb97ifawx11i7adnyi0ff264w0fril9b8ylwc"; - libraryHaskellDepends = [ - base - cairo - deepseq - directory - gtk - pretty - process - strict-concurrency - svgcairo - vacuum - ]; - description = "Visualize live Haskell data structures using vacuum, graphviz and cairo"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "vacuum-graphviz" = callPackage ( - { - mkDerivation, - base, - filepath, - graphviz, - vacuum, - }: - mkDerivation { - pname = "vacuum-graphviz"; - version = "2.1.0.1"; - sha256 = "093ba6n30a6gyifnk3bd50rkx8qldjqq9vsk92pnq152ibs36b2m"; - libraryHaskellDepends = [ - base - filepath - graphviz - vacuum - ]; - description = "A library for transforming vacuum graphs into GraphViz output"; - license = lib.licenses.lgpl3Only; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "vacuum-opengl" = callPackage ( - { - mkDerivation, - base, - bitmap, - bitmap-opengl, - directory, - filepath, - GLUT, - network, - OpenGL, - pretty, - process, - stb-image, - vacuum, - }: - mkDerivation { - pname = "vacuum-opengl"; - version = "0.0.3"; - sha256 = "1dxw3apbf59b7vi4a1gnp29ia1s2q9vx79ns7257cg9cazb01z7j"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - network - pretty - vacuum - ]; - executableHaskellDepends = [ - base - bitmap - bitmap-opengl - directory - filepath - GLUT - network - OpenGL - process - stb-image - ]; - description = "Visualize live Haskell data structures using vacuum, graphviz and OpenGL"; - license = lib.licenses.publicDomain; - hydraPlatforms = lib.platforms.none; - mainProgram = "vacuum-opengl-server"; - } - ) { }; - - "vacuum-ubigraph" = callPackage ( - { - mkDerivation, - base, - containers, - hubigraph, - vacuum, - }: - mkDerivation { - pname = "vacuum-ubigraph"; - version = "0.2.0.2"; - sha256 = "0zpag42dr2763ddrwdy7744lqkd6207ljfw3bqm6db3a1128861z"; - libraryHaskellDepends = [ - base - containers - hubigraph - vacuum - ]; - description = "Visualize Haskell data structures using vacuum and Ubigraph"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "vado" = callPackage ( { mkDerivation, @@ -702543,49 +407797,6 @@ self: { } ) { }; - "valid" = callPackage ( - { - mkDerivation, - base, - util, - }: - mkDerivation { - pname = "valid"; - version = "0.1.1.0"; - sha256 = "1c029mb3szixs9rr5i7ri2nm0ya5gv5r6bv8hzsyw90ys5nbgcz5"; - libraryHaskellDepends = [ - base - util - ]; - description = "Type isomorphic to `Either` with `Applicative` instance which combines errors"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "valid-names" = callPackage ( - { - mkDerivation, - base, - containers, - MonadRandom, - }: - mkDerivation { - pname = "valid-names"; - version = "0.1.0.1"; - sha256 = "14gpkb6pbkvmny17g2gpq6i6kq7ahmcnkgrcrwm72vda12wxsl78"; - libraryHaskellDepends = [ - base - containers - MonadRandom - ]; - description = "Valid operator/module characters"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "valida" = callPackage ( { mkDerivation, @@ -702736,30 +407947,6 @@ self: { } ) { }; - "validated-types" = callPackage ( - { - mkDerivation, - base, - refined, - text, - }: - mkDerivation { - pname = "validated-types"; - version = "0.1.1"; - sha256 = "05rxb1i46icjzsjmik97jzxn3vkg3mpvwhprifz1ilsc0s46dv9q"; - libraryHaskellDepends = [ - base - refined - text - ]; - testHaskellDepends = [ base ]; - description = "Type-level constraints on strings and other input"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "validation" = callPackage ( { mkDerivation, @@ -702858,53 +408045,6 @@ self: { } ) { }; - "validations" = callPackage ( - { - mkDerivation, - base, - containers, - digestive-functors, - HUnit, - mtl, - QuickCheck, - test-framework, - test-framework-hunit, - test-framework-quickcheck2, - text, - transformers, - }: - mkDerivation { - pname = "validations"; - version = "0.1.0.2"; - sha256 = "0nviyyp0nlpilp2byckrcmbd2n6wp40pq7m10da9b24hmwajkdwk"; - libraryHaskellDepends = [ - base - containers - digestive-functors - mtl - text - transformers - ]; - testHaskellDepends = [ - base - containers - digestive-functors - HUnit - mtl - QuickCheck - test-framework - test-framework-hunit - test-framework-quickcheck2 - text - transformers - ]; - description = "A nice way to define field validations in Haskell"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "validationt" = callPackage ( { mkDerivation, @@ -702951,40 +408091,6 @@ self: { } ) { }; - "validators" = callPackage ( - { - mkDerivation, - base, - containers, - doctest, - Glob, - hspec, - text, - }: - mkDerivation { - pname = "validators"; - version = "0.0.1"; - sha256 = "0c5w5ri0q82bcqr7j9lnirv48ss6yjq8g1bmrsv66713i3frs9pi"; - libraryHaskellDepends = [ - base - containers - text - ]; - testHaskellDepends = [ - base - containers - doctest - Glob - hspec - text - ]; - description = "Composable validations for your Haskell data types"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "validity" = callPackage ( { mkDerivation, @@ -703391,112 +408497,6 @@ self: { } ) { }; - "value-supply" = callPackage ( - { mkDerivation, base }: - mkDerivation { - pname = "value-supply"; - version = "0.6"; - sha256 = "0fd6rk46sgdbdmfdr9wy0f3qzwaymgd9hl9v735g2a4bqiqanmb5"; - libraryHaskellDepends = [ base ]; - description = "A library for generating values without having to thread state"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "vampire" = callPackage ( - { - mkDerivation, - base, - deepseq, - directory, - dlist, - fgl, - graphviz, - haskell-src-exts, - mtl, - optparse-applicative, - process, - uniplate, - }: - mkDerivation { - pname = "vampire"; - version = "0.1.3.0"; - sha256 = "16f1mdsyyfdgjcp3rzf3p1qj3d6la01i9y1yyp97m5nmd2jxsn1q"; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base - deepseq - dlist - fgl - graphviz - haskell-src-exts - mtl - uniplate - ]; - executableHaskellDepends = [ - base - deepseq - directory - dlist - fgl - graphviz - haskell-src-exts - mtl - optparse-applicative - process - uniplate - ]; - description = "Analyze and visualize expression trees"; - license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - mainProgram = "vampire"; - broken = true; - } - ) { }; - - "var" = callPackage ( - { - mkDerivation, - array, - base, - criterion, - deepseq, - QuickCheck, - test-framework, - test-framework-quickcheck2, - transformers, - }: - mkDerivation { - pname = "var"; - version = "0.2.0.0"; - sha256 = "1vc36yy8mvzy14jj8ly8ldc4d9vrcgyjfq3dpnzp6fhycg5kkv2i"; - libraryHaskellDepends = [ - base - transformers - ]; - testHaskellDepends = [ - base - QuickCheck - test-framework - test-framework-quickcheck2 - ]; - benchmarkHaskellDepends = [ - array - base - criterion - deepseq - ]; - description = "Mutable variables and tuples"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "var-monad" = callPackage ( { mkDerivation, @@ -703520,41 +408520,6 @@ self: { } ) { }; - "varan" = callPackage ( - { - mkDerivation, - ansi-terminal, - base, - bytestring, - cmdargs, - mtl, - parallel, - random, - statistics, - }: - mkDerivation { - pname = "varan"; - version = "0.5.1"; - sha256 = "1hvpx4jw0lwcnc4x8vwdqp7rv8779p7xaw57cphkax13f3rwm372"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - ansi-terminal - base - bytestring - cmdargs - mtl - parallel - random - statistics - ]; - description = "Process mpileup output to identify significant differences"; - license = "GPL"; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "variable-media-field" = callPackage ( { mkDerivation, @@ -703620,64 +408585,6 @@ self: { } ) { }; - "variable-precision" = callPackage ( - { - mkDerivation, - base, - complex-generic, - floatshow, - integer-gmp, - type-level-natural-number, - }: - mkDerivation { - pname = "variable-precision"; - version = "0.4"; - sha256 = "1qd6mnbg06fn31vp9d4yan8rqxyymjljrlr7m4yvn2ppw560p564"; - libraryHaskellDepends = [ - base - complex-generic - floatshow - integer-gmp - type-level-natural-number - ]; - description = "variable-precision floating point"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "variables" = callPackage ( - { - mkDerivation, - base, - hspec, - mtl, - QuickCheck, - stm, - }: - mkDerivation { - pname = "variables"; - version = "0.1.1"; - sha256 = "0garxmxm11qhp2wm7xib4nrlkfiqbyzf3glkdbqb582nip0sb1rp"; - libraryHaskellDepends = [ - base - mtl - stm - ]; - testHaskellDepends = [ - base - hspec - mtl - QuickCheck - stm - ]; - description = "Monads with variables, without deep magic"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "variadic" = callPackage ( { mkDerivation, @@ -703787,33 +408694,6 @@ self: { } ) { }; - "variation" = callPackage ( - { - mkDerivation, - base, - cereal, - containers, - deepseq, - semigroupoids, - }: - mkDerivation { - pname = "variation"; - version = "0.1.1.0"; - sha256 = "05wkjr3sd4r3bid4n18qiblc8jvpzzdkh74f7qh3q1lfx8yv2133"; - libraryHaskellDepends = [ - base - cereal - containers - deepseq - semigroupoids - ]; - description = "nominal value with possible variations"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "variety" = callPackage ( { mkDerivation, @@ -703969,303 +408849,6 @@ self: { } ) { }; - "vault-tool" = callPackage ( - { - mkDerivation, - aeson, - base, - bytestring, - http-client, - http-client-tls, - http-types, - text, - unordered-containers, - }: - mkDerivation { - pname = "vault-tool"; - version = "0.1.0.1"; - sha256 = "13bxbzamd3mca5bngmzn82fzk66b4vp5crw33bzg01nmbprxfcbb"; - libraryHaskellDepends = [ - aeson - base - bytestring - http-client - http-client-tls - http-types - text - unordered-containers - ]; - description = "Client library for HashiCorp's Vault tool (via HTTP API)"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "vault-tool-server" = callPackage ( - { - mkDerivation, - aeson, - async, - base, - bytestring, - filepath, - http-client, - process, - tasty-hunit, - temporary, - text, - vault-tool, - }: - mkDerivation { - pname = "vault-tool-server"; - version = "0.1.0.1"; - sha256 = "0svgjr2qxsiwx5i0lrwzfcmaikgavls8vc9p0wcj3w1ndrbjk1y5"; - libraryHaskellDepends = [ - aeson - async - base - bytestring - filepath - http-client - process - temporary - text - vault-tool - ]; - testHaskellDepends = [ - aeson - base - tasty-hunit - temporary - vault-tool - ]; - description = "Utility library for spawning a HashiCorp Vault process"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "vault-trans" = callPackage ( - { - mkDerivation, - aeson, - base, - containers, - postgresql-simple, - text, - transformers, - unordered-containers, - vault-tool, - }: - mkDerivation { - pname = "vault-trans"; - version = "0.1.0.1"; - sha256 = "0vw66vgpwgnfihgjlngcjf2a288nbnbzb07zxisfxks0mj2vn4cc"; - libraryHaskellDepends = [ - aeson - base - containers - postgresql-simple - text - transformers - unordered-containers - vault-tool - ]; - description = "A monad transformer for vault-tool"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "vaultaire-common" = callPackage ( - { - mkDerivation, - async, - attoparsec, - base, - blaze-builder, - bytestring, - cereal, - containers, - hashable, - hslogger, - hspec, - locators, - mtl, - old-locale, - packer, - QuickCheck, - siphash, - text, - time, - transformers, - unix, - unordered-containers, - }: - mkDerivation { - pname = "vaultaire-common"; - version = "2.9.1"; - sha256 = "178lh1cxk6ayb4918xas0g7zlan8282vjflm220pzymnxz07chsr"; - libraryHaskellDepends = [ - async - attoparsec - base - blaze-builder - bytestring - cereal - containers - hashable - hslogger - locators - old-locale - packer - QuickCheck - siphash - text - time - transformers - unix - unordered-containers - ]; - testHaskellDepends = [ - base - bytestring - containers - hspec - locators - mtl - QuickCheck - text - unordered-containers - ]; - description = "Common types and instances for Vaultaire"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "vcache" = callPackage ( - { - mkDerivation, - base, - bytestring, - containers, - direct-murmur-hash, - easy-file, - filelock, - lmdb, - random, - stm, - transformers, - }: - mkDerivation { - pname = "vcache"; - version = "0.2.6"; - sha256 = "08vg106dhzam5h0a6pzz4cbyzfg6pfgcgvn6xm1266kj1ipla18d"; - libraryHaskellDepends = [ - base - bytestring - containers - direct-murmur-hash - easy-file - filelock - lmdb - random - stm - transformers - ]; - description = "semi-transparent persistence for Haskell using LMDB, STM"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "vcache-trie" = callPackage ( - { - mkDerivation, - array, - base, - bytestring, - bytestring-builder, - vcache, - }: - mkDerivation { - pname = "vcache-trie"; - version = "0.2.4"; - sha256 = "1vmfi55q9w0xcdwqb1d0ly2694lbv18n92kzvps19r61c3dsf7h5"; - libraryHaskellDepends = [ - array - base - bytestring - bytestring-builder - vcache - ]; - description = "patricia tries modeled above VCache"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "vcard" = callPackage ( - { - mkDerivation, - base, - bytestring, - containers, - mime-directory, - }: - mkDerivation { - pname = "vcard"; - version = "0.1.4"; - sha256 = "1wa1pdfw7ykmq72af63fh999il5nighf7689265hn3i5awm1m16p"; - libraryHaskellDepends = [ - base - bytestring - containers - mime-directory - ]; - description = "A library for parsing/printing vCards from/to various formats"; - license = "LGPL"; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "vcatt" = callPackage ( - { - mkDerivation, - base, - extra, - shelly, - system-filepath, - text, - }: - mkDerivation { - pname = "vcatt"; - version = "0.1"; - sha256 = "161yd6py3x5qn8w2vvy5sxqi30lr4sqqm2ysqib3rpilbh13yb8i"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - extra - shelly - system-filepath - ]; - executableHaskellDepends = [ - base - shelly - text - ]; - description = "Recursively check that a directory is under version control"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "vcatt"; - broken = true; - } - ) { }; - "vcd" = callPackage ( { mkDerivation, @@ -704285,42 +408868,6 @@ self: { } ) { }; - "vcf" = callPackage ( - { - mkDerivation, - aeson, - attoparsec, - base, - bytestring, - hspec, - hspec-expectations, - text, - }: - mkDerivation { - pname = "vcf"; - version = "0.9.0"; - sha256 = "1sjsgld8zd30insksv0n3rsjwq0mrr69rqnb1jpcq8lmcgz43jlq"; - libraryHaskellDepends = [ - aeson - attoparsec - base - bytestring - text - ]; - testHaskellDepends = [ - attoparsec - base - bytestring - hspec - hspec-expectations - ]; - description = "A package to parse VCF files inspired in similar python libraries"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "vcr" = callPackage ( { mkDerivation, @@ -704485,110 +409032,6 @@ self: { } ) { }; - "vcsgui" = callPackage ( - { - mkDerivation, - base, - directory, - filepath, - gi-gtk, - gi-gtk-hs, - haskell-gi-base, - mtl, - process, - text, - vcswrapper, - }: - mkDerivation { - pname = "vcsgui"; - version = "0.2.2.0"; - sha256 = "0s7vmlbggmwaj6mlhmj1vkri6af16xpsanwyr2jip5hdpn8gpjv2"; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base - directory - filepath - gi-gtk - gi-gtk-hs - haskell-gi-base - mtl - process - text - vcswrapper - ]; - executableHaskellDepends = [ - base - directory - filepath - gi-gtk - gi-gtk-hs - haskell-gi-base - mtl - process - text - vcswrapper - ]; - description = "GUI library for source code management systems"; - license = "GPL"; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "vcswrapper" = callPackage ( - { - mkDerivation, - base, - containers, - directory, - filepath, - hxt, - mtl, - parsec, - process, - split, - text, - }: - mkDerivation { - pname = "vcswrapper"; - version = "0.1.6"; - sha256 = "0givnl1716ymjz5a5n4wdy61hg8zhfxb66vx9bzkziavzni2dfif"; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base - containers - directory - filepath - hxt - mtl - parsec - process - split - text - ]; - executableHaskellDepends = [ - base - containers - directory - filepath - hxt - mtl - parsec - process - split - text - ]; - description = "Wrapper for source code management systems"; - license = "GPL"; - hydraPlatforms = lib.platforms.none; - mainProgram = "vcswrapper"; - broken = true; - } - ) { }; - "vec" = callPackage ( { mkDerivation, @@ -704713,74 +409156,6 @@ self: { } ) { }; - "vect-floating" = callPackage ( - { - mkDerivation, - base, - random, - }: - mkDerivation { - pname = "vect-floating"; - version = "0.1.0.4"; - sha256 = "1kxsjsiqqpi7k0xz597z7r2fd45s38plgk6jplzxagg0i3bm0q4g"; - libraryHaskellDepends = [ - base - random - ]; - description = "A low-dimensional linear algebra library, operating on the Floating typeclass"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "vect-floating-accelerate" = callPackage ( - { - mkDerivation, - accelerate, - base, - vect-floating, - }: - mkDerivation { - pname = "vect-floating-accelerate"; - version = "0.1.0.4"; - sha256 = "10mn2gvpkp14j7rc7cc66x30k7xh56xpp04ak1aj8p46rsy75s4x"; - revision = "1"; - editedCabalFile = "05k20xd7rcf3hypbbw53bv8yl65sgpdawdfmskypk3mbl1w5fymg"; - libraryHaskellDepends = [ - accelerate - base - vect-floating - ]; - description = "Accelerate instances for vect-floating types"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "vect-opengl" = callPackage ( - { - mkDerivation, - base, - OpenGL, - vect, - }: - mkDerivation { - pname = "vect-opengl"; - version = "0.4.6.1"; - sha256 = "1qp98j6bgldjcs71pd7iqc5sjf1ixb1jj0l267hw532j4yf81dig"; - libraryHaskellDepends = [ - base - OpenGL - vect - ]; - description = "OpenGL support for the `vect' low-dimensional linear algebra library"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "vector" = callPackage ( { mkDerivation, @@ -705015,224 +409390,51 @@ self: { base bytes vector - ]; - testHaskellDepends = [ - base - bytes - tasty - tasty-quickcheck - vector - ]; - description = "Serial (from the bytes package) for Vector (from the vector package)"; - license = lib.licenses.bsd3; - } - ) { }; - - "vector-bytestring" = callPackage ( - { - mkDerivation, - base, - bytestring, - deepseq, - directory, - ghc-prim, - primitive, - QuickCheck, - random, - vector, - }: - mkDerivation { - pname = "vector-bytestring"; - version = "0.0.0.1"; - sha256 = "0xiksm1136azrcidcsi9g59i1nb9r8lhzsn1fhnp830sr63fy7k4"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - bytestring - deepseq - ghc-prim - primitive - vector - ]; - testHaskellDepends = [ - base - directory - QuickCheck - random - ]; - description = "ByteStrings as type synonyms of Storable Vectors of Word8s"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "vector-circular" = callPackage ( - { - mkDerivation, - base, - deepseq, - hedgehog, - hedgehog-classes, - nonempty-vector, - primitive, - semigroupoids, - template-haskell, - vector, - }: - mkDerivation { - pname = "vector-circular"; - version = "0.1.4"; - sha256 = "18aijs6yn01bv3zal7l0wsck0hd54bbhckjc67cvr8wmpqdk2xxw"; - libraryHaskellDepends = [ - base - deepseq - nonempty-vector - primitive - semigroupoids - template-haskell - vector - ]; - testHaskellDepends = [ - base - hedgehog - hedgehog-classes - ]; - description = "circular vectors"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "vector-clock" = callPackage ( - { - mkDerivation, - array, - base, - binary, - ghc-prim, - hashable, - HUnit, - QuickCheck, - test-framework, - test-framework-hunit, - test-framework-quickcheck2, - }: - mkDerivation { - pname = "vector-clock"; - version = "0.2.2"; - sha256 = "0ndp25w61rcj4sadvhxlirrk1dhk7rmdzv9kha7kyqa41whr9629"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base - binary - ghc-prim - hashable - ]; - testHaskellDepends = [ - array - base - binary - ghc-prim - HUnit - QuickCheck - test-framework - test-framework-hunit - test-framework-quickcheck2 - ]; - description = "Vector clocks for versioning message flows"; - license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "vector-conduit" = callPackage ( - { - mkDerivation, - base, - conduit, - HUnit, - primitive, - QuickCheck, - test-framework, - test-framework-hunit, - test-framework-quickcheck2, - vector, - }: - mkDerivation { - pname = "vector-conduit"; - version = "0.5.0.0"; - sha256 = "10mqmxfqzqcgxf0isv611ailq03smdfybviamxpskncbf15sc6g1"; - libraryHaskellDepends = [ - base - conduit - primitive - vector - ]; - testHaskellDepends = [ - base - conduit - HUnit - primitive - QuickCheck - test-framework - test-framework-hunit - test-framework-quickcheck2 - vector - ]; - description = "Conduit utilities for vectors"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "vector-doublezip" = callPackage ( - { - mkDerivation, - base, - vector, - }: - mkDerivation { - pname = "vector-doublezip"; - version = "0.2.0.0"; - sha256 = "0z98f0fjn90x3azdbsnjpx61r9lna9hb67bjnmmhvil9a7hpd65x"; - libraryHaskellDepends = [ + ]; + testHaskellDepends = [ base + bytes + tasty + tasty-quickcheck vector ]; - description = "Some special functions to work with Vector (with zip)"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; + description = "Serial (from the bytes package) for Vector (from the vector package)"; + license = lib.licenses.bsd3; } ) { }; - "vector-endian" = callPackage ( + "vector-circular" = callPackage ( { mkDerivation, base, - cpu, deepseq, + hedgehog, + hedgehog-classes, + nonempty-vector, + primitive, + semigroupoids, + template-haskell, vector, - zenhack-prelude, }: mkDerivation { - pname = "vector-endian"; - version = "0.1.0.0"; - sha256 = "0qfs19l2d56w6jl8niiq8vsjldb8mabf56xfsj45ai7ipi92cx13"; + pname = "vector-circular"; + version = "0.1.4"; + sha256 = "18aijs6yn01bv3zal7l0wsck0hd54bbhckjc67cvr8wmpqdk2xxw"; libraryHaskellDepends = [ base - cpu deepseq + nonempty-vector + primitive + semigroupoids + template-haskell vector - zenhack-prelude ]; - doHaddock = false; - description = "Storable vectors with cpu-independent representation"; + testHaskellDepends = [ + base + hedgehog + hedgehog-classes + ]; + description = "circular vectors"; license = lib.licenses.mit; hydraPlatforms = lib.platforms.none; broken = true; @@ -705326,33 +409528,6 @@ self: { } ) { inherit (pkgs) fftw; }; - "vector-functorlazy" = callPackage ( - { - mkDerivation, - base, - ghc-prim, - primitive, - vector, - vector-th-unbox, - }: - mkDerivation { - pname = "vector-functorlazy"; - version = "0.0.1"; - sha256 = "0ysic3f5xw675bk095pby9ihbgcxpkj4pgp61dwr354w28l0yc03"; - libraryHaskellDepends = [ - base - ghc-prim - primitive - vector - vector-th-unbox - ]; - description = "vectors that perform the fmap operation in constant time"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "vector-hashtables" = callPackage ( { mkDerivation, @@ -705404,27 +409579,6 @@ self: { } ) { }; - "vector-heterogenous" = callPackage ( - { - mkDerivation, - base, - vector, - }: - mkDerivation { - pname = "vector-heterogenous"; - version = "0.2.0"; - sha256 = "14v0qj2r484pwbjhdymvdqjnsbqszl9wr71hv6wsvs2d8ja1bajl"; - libraryHaskellDepends = [ - base - vector - ]; - description = "A type-safe library for vectors whose elements can be of any type, or any type satisfying some constraints"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "vector-instances" = callPackage ( { mkDerivation, @@ -705454,30 +409608,6 @@ self: { } ) { }; - "vector-instances-collections" = callPackage ( - { - mkDerivation, - base, - collections-api, - template-haskell, - vector, - }: - mkDerivation { - pname = "vector-instances-collections"; - version = "0.1.0.1"; - sha256 = "13xk2iwdwrnmdm33z0fmj4sg3irih4ayl3q5pgz31qs9kcsbhi0s"; - libraryHaskellDepends = [ - base - collections-api - template-haskell - vector - ]; - description = "Instances of the Data.Collections classes for Data.Vector.*"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "vector-mmap" = callPackage ( { mkDerivation, @@ -705569,52 +409699,6 @@ self: { } ) { }; - "vector-random" = callPackage ( - { - mkDerivation, - base, - mersenne-random-pure64, - vector, - }: - mkDerivation { - pname = "vector-random"; - version = "0.2"; - sha256 = "1f74q4bs5mbcw8xg4sxb46ks5x121lbbr6cl09ssr09cpykkbdvb"; - revision = "2"; - editedCabalFile = "0ys49lp4hqdm9hmfirfycksi31k03w7i6fralmqz6p9l4rc1lcyy"; - libraryHaskellDepends = [ - base - mersenne-random-pure64 - vector - ]; - description = "Generate vectors filled with high quality pseudorandom numbers"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "vector-read-instances" = callPackage ( - { - mkDerivation, - base, - vector, - }: - mkDerivation { - pname = "vector-read-instances"; - version = "0.0.2.0"; - sha256 = "1k30n5qh16sdfxy77vp10bx52lb1ffmjn70vg87hx12j8wg9vbv6"; - libraryHaskellDepends = [ - base - vector - ]; - description = "(deprecated) Read instances for 'Data.Vector'"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "vector-rotcev" = callPackage ( { mkDerivation, @@ -705642,29 +409726,6 @@ self: { } ) { }; - "vector-shuffling" = callPackage ( - { - mkDerivation, - base, - random, - vector, - }: - mkDerivation { - pname = "vector-shuffling"; - version = "1.1"; - sha256 = "04kpp7529jd4avhprfxdy6nfikx3d3ans0knhz3lspms4iky068i"; - libraryHaskellDepends = [ - base - random - vector - ]; - description = "Algorithms for vector shuffling"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "vector-sized" = callPackage ( { mkDerivation, @@ -705729,95 +409790,6 @@ self: { } ) { }; - "vector-space-map" = callPackage ( - { - mkDerivation, - base, - containers, - doctest, - vector-space, - }: - mkDerivation { - pname = "vector-space-map"; - version = "0.2.1.1"; - sha256 = "1sg5jgk0kll0jbi66m70ymr085hgvz4kcbvcbn9427w1imbnjfdq"; - libraryHaskellDepends = [ - base - containers - vector-space - ]; - testHaskellDepends = [ - base - doctest - ]; - description = "vector-space operations for finite maps using Data.Map"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "vector-space-opengl" = callPackage ( - { - mkDerivation, - base, - ieee754, - OpenGL, - QuickCheck, - test-framework, - test-framework-quickcheck2, - test-framework-th, - vector-space, - }: - mkDerivation { - pname = "vector-space-opengl"; - version = "0.2"; - sha256 = "17rczadmjiblh96r7bfcxy53m7ig534qqcf35i7w6x90354dyiaw"; - libraryHaskellDepends = [ - base - OpenGL - vector-space - ]; - testHaskellDepends = [ - base - ieee754 - OpenGL - QuickCheck - test-framework - test-framework-quickcheck2 - test-framework-th - vector-space - ]; - description = "Instances of vector-space classes for OpenGL types"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "vector-space-points" = callPackage ( - { - mkDerivation, - base, - vector-space, - }: - mkDerivation { - pname = "vector-space-points"; - version = "0.2.1.2"; - sha256 = "0jqiy7b3hy21c0imqxbzvcx0hxy33bh97bv47bpv099dx32d7spy"; - revision = "5"; - editedCabalFile = "1284ds38z70696vsh695hx74nyslmgaqfv4lz0wadvmzcrw0hwb4"; - libraryHaskellDepends = [ - base - vector-space - ]; - description = "A type for points, as distinct from vectors"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "vector-split" = callPackage ( { mkDerivation, @@ -705849,29 +409821,6 @@ self: { } ) { }; - "vector-static" = callPackage ( - { - mkDerivation, - base, - primitive, - vector, - }: - mkDerivation { - pname = "vector-static"; - version = "0.3.0.1"; - sha256 = "19spzrk64j2rgyi15dvs8gfbx3nc79ybssaxkv8dn9df4fwksv91"; - libraryHaskellDepends = [ - base - primitive - vector - ]; - description = "Statically checked sizes on Data.Vector"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "vector-strategies" = callPackage ( { mkDerivation, @@ -705916,34 +409865,6 @@ self: { } ) { }; - "vector-text" = callPackage ( - { - mkDerivation, - base, - binary, - prologue, - text, - vector, - vector-binary-instances, - }: - mkDerivation { - pname = "vector-text"; - version = "1.1.6"; - sha256 = "14ms8ach15c1pyaih92qi703vj9aanbrmcsfwzxb55vwfpbbm2f4"; - libraryHaskellDepends = [ - base - binary - prologue - text - vector - vector-binary-instances - ]; - description = "Text implementation based on unboxed char vector"; - license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "vector-th-unbox" = callPackage ( { mkDerivation, @@ -705973,70 +409894,6 @@ self: { } ) { }; - "vectortiles" = callPackage ( - { - mkDerivation, - base, - bytestring, - containers, - criterion, - deepseq, - hashable, - microlens, - microlens-platform, - mtl, - protocol-buffers, - protocol-buffers-descriptor, - tasty, - tasty-hunit, - text, - transformers, - unordered-containers, - vector, - }: - mkDerivation { - pname = "vectortiles"; - version = "1.5.1"; - sha256 = "1g5n7xrpzj1kfbmk97lak6p7m0g7irkcmd5cl0gh23bxsfzmbnkh"; - libraryHaskellDepends = [ - base - bytestring - containers - deepseq - hashable - mtl - protocol-buffers - protocol-buffers-descriptor - text - transformers - unordered-containers - vector - ]; - testHaskellDepends = [ - base - bytestring - containers - protocol-buffers - tasty - tasty-hunit - text - vector - ]; - benchmarkHaskellDepends = [ - base - bytestring - criterion - microlens - microlens-platform - unordered-containers - vector - ]; - description = "GIS Vector Tiles, as defined by Mapbox"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "vega-view" = callPackage ( { mkDerivation, @@ -706183,27 +410040,6 @@ self: { } ) { }; - "verbalexpressions" = callPackage ( - { - mkDerivation, - base, - regex-pcre, - }: - mkDerivation { - pname = "verbalexpressions"; - version = "1.0.0.0"; - sha256 = "0wai72bqb1vp4p7ml1yj2jdmkjglihai9vhmgj7ri6y2qgzkpwly"; - libraryHaskellDepends = [ - base - regex-pcre - ]; - description = "Regular expressions made easy"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "verbosity" = callPackage ( { mkDerivation, @@ -706231,87 +410067,6 @@ self: { } ) { }; - "verdict" = callPackage ( - { - mkDerivation, - base, - hspec, - markdown-unlit, - mtl, - text, - transformers, - }: - mkDerivation { - pname = "verdict"; - version = "0.0.0.0"; - sha256 = "1limrj8jp5zlwdckihwzjqbkf2sb606m06d8gka4lkaga7pzdwh1"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - mtl - text - transformers - ]; - executableHaskellDepends = [ - base - markdown-unlit - text - ]; - testHaskellDepends = [ - base - hspec - ]; - description = "Validation framework"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "tutorial"; - broken = true; - } - ) { }; - - "verdict-json" = callPackage ( - { - mkDerivation, - aeson, - base, - containers, - hspec, - text, - unordered-containers, - vector, - verdict, - }: - mkDerivation { - pname = "verdict-json"; - version = "0.0.0.0"; - sha256 = "0jmgmg4pvmba6zcr2kfxl1pgfaj7k8hm5p4aixvxnhmfqcganr3v"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson - base - containers - text - unordered-containers - vector - verdict - ]; - testHaskellDepends = [ - aeson - base - containers - hspec - unordered-containers - vector - verdict - ]; - description = "JSON instances and JSON Schema for verdict"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "verifiable-expressions" = callPackage ( { mkDerivation, @@ -706347,83 +410102,6 @@ self: { } ) { }; - "verify" = callPackage ( - { - mkDerivation, - aeson, - base, - base64-bytestring, - containers, - either, - hspec, - jwt, - QuickCheck, - text, - text-conversions, - time, - }: - mkDerivation { - pname = "verify"; - version = "0.0.0"; - sha256 = "1qi76frmgcwa384nwlip27pi64vlnddrjq5bz3xr9dsl2435axzf"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson - base - base64-bytestring - containers - either - jwt - text - text-conversions - time - ]; - executableHaskellDepends = [ base ]; - testHaskellDepends = [ - base - hspec - jwt - QuickCheck - text - text-conversions - time - ]; - description = "A new Haskeleton package"; - license = lib.licenses.isc; - hydraPlatforms = lib.platforms.none; - mainProgram = "verify"; - broken = true; - } - ) { }; - - "verilog" = callPackage ( - { - mkDerivation, - alex, - array, - base, - happy, - }: - mkDerivation { - pname = "verilog"; - version = "0.0.11"; - sha256 = "0lhl6zcf8f8ndyqx7ksj1qy4a5wnhvphsawb944d5rynrnj8fd46"; - libraryHaskellDepends = [ - array - base - ]; - libraryToolDepends = [ - alex - happy - ]; - description = "Verilog preprocessor, parser, and AST"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "verismith" = callPackage ( { mkDerivation, @@ -706645,53 +410323,6 @@ self: { } ) { }; - "versioning-servant" = callPackage ( - { - mkDerivation, - aeson, - attoparsec, - base, - bytestring, - hspec, - hspec-wai, - http-media, - servant, - servant-server, - versioning, - wai, - wai-extra, - }: - mkDerivation { - pname = "versioning-servant"; - version = "0.1.0.1"; - sha256 = "0hk30p8wjn00dzxyd45hf7r1qhn944j12km00birgqhf4vcmw7c4"; - libraryHaskellDepends = [ - aeson - attoparsec - base - bytestring - http-media - servant - versioning - ]; - testHaskellDepends = [ - aeson - base - bytestring - hspec - hspec-wai - servant - servant-server - versioning - wai - wai-extra - ]; - description = "Servant combinators for the versioning library"; - license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "versions_5_0_5" = callPackage ( { mkDerivation, @@ -706917,51 +410548,6 @@ self: { } ) { }; - "vflow-types" = callPackage ( - { - mkDerivation, - aeson, - base, - bytestring, - ip, - json-alt, - json-autotype, - neat-interpolation, - QuickCheck, - quickcheck-classes, - scientific, - text, - }: - mkDerivation { - pname = "vflow-types"; - version = "0.1"; - sha256 = "01iycni552yrikn59lh6mvsf16aq52kcgwapqk6al8y623vqg5hi"; - libraryHaskellDepends = [ - aeson - base - ip - json-alt - json-autotype - scientific - text - ]; - testHaskellDepends = [ - aeson - base - bytestring - ip - json-alt - neat-interpolation - QuickCheck - quickcheck-classes - text - ]; - description = "types for ingesting vflow data with aeson"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "vformat" = callPackage ( { mkDerivation, @@ -706999,50 +410585,6 @@ self: { } ) { }; - "vformat-aeson" = callPackage ( - { - mkDerivation, - aeson, - base, - bytestring, - scientific, - text, - unordered-containers, - vector, - vformat, - }: - mkDerivation { - pname = "vformat-aeson"; - version = "0.1.0.1"; - sha256 = "1cj3zp5n1j86jds906r9yrhanl8xq08gk97x6i64d651pry4h11v"; - revision = "1"; - editedCabalFile = "1p85qlv9w11mqybcf81xix0lhbgc2bzy9gw83ywci5kmd1s7a2a5"; - libraryHaskellDepends = [ - aeson - base - bytestring - scientific - text - unordered-containers - vector - vformat - ]; - testHaskellDepends = [ - aeson - base - bytestring - scientific - text - unordered-containers - vector - vformat - ]; - description = "Extend vformat to Aeson datatypes"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "vformat-time" = callPackage ( { mkDerivation, @@ -707072,46 +410614,6 @@ self: { } ) { }; - "vfr-waypoints" = callPackage ( - { - mkDerivation, - base, - containers, - dimensional, - fuzzy, - geodetic-types, - lens, - monoid-subclasses, - optparse-applicative, - }: - mkDerivation { - pname = "vfr-waypoints"; - version = "0.1.0.2"; - sha256 = "0jw930ci0r7ildfaqjmh4851snddc23scn4ivjkngbv2kk24l6r9"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - containers - dimensional - fuzzy - geodetic-types - lens - monoid-subclasses - ]; - executableHaskellDepends = [ - base - fuzzy - lens - optparse-applicative - ]; - description = "VFR waypoints, as published in the AIP (ERSA)"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "vfr-waypoints"; - } - ) { }; - "vgrep" = callPackage ( { mkDerivation, @@ -707207,338 +410709,6 @@ self: { } ) { }; - "vhd" = callPackage ( - { - mkDerivation, - base, - byteable, - bytestring, - cereal, - cipher-aes, - cryptohash, - directory, - filepath, - mmap, - QuickCheck, - random, - storable-endian, - test-framework, - test-framework-quickcheck2, - text, - time, - }: - mkDerivation { - pname = "vhd"; - version = "0.2.2"; - sha256 = "0z7a17j0rd06kvn3v4qr0fhxg0xw6n3579477y2lvx4mcc3qyrvw"; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base - byteable - bytestring - cereal - cipher-aes - cryptohash - directory - filepath - mmap - random - storable-endian - text - time - ]; - testHaskellDepends = [ - base - byteable - bytestring - cereal - cryptohash - filepath - mmap - QuickCheck - random - test-framework - test-framework-quickcheck2 - text - time - ]; - description = "Provides functions to inspect and manipulate virtual hard disk (VHD) files"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "vhdl" = callPackage ( - { - mkDerivation, - base, - mtl, - pretty, - regex-posix, - }: - mkDerivation { - pname = "vhdl"; - version = "0.1.2.1"; - sha256 = "1bi8n8m9an1hcj4c6i2ifqyadg32nq4viffi1kiihaw3j7dh552b"; - libraryHaskellDepends = [ - base - mtl - pretty - regex-posix - ]; - description = "VHDL AST and pretty printer"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "vicinity" = callPackage ( - { - mkDerivation, - base, - containers, - doctest, - QuickCheck, - quickcheck-classes, - semigroups, - }: - mkDerivation { - pname = "vicinity"; - version = "0.1.0"; - sha256 = "0yy1arybixrbkgmdnfv0y2rmkl3qf5fa2rymklqbyr00av3dr25j"; - libraryHaskellDepends = [ - base - semigroups - ]; - testHaskellDepends = [ - base - containers - doctest - QuickCheck - quickcheck-classes - ]; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "viewprof" = callPackage ( - { - mkDerivation, - base, - brick, - containers, - directory, - ghc-prof, - lens, - scientific, - text, - vector, - vector-algorithms, - vty, - }: - mkDerivation { - pname = "viewprof"; - version = "0.0.0.33"; - sha256 = "1xj9b2b3wi0sr75fafcjh054aqs4g9sdqryc4w5lwr7wndi0qjgr"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - brick - containers - directory - ghc-prof - lens - scientific - text - vector - vector-algorithms - vty - ]; - description = "Text-based interactive GHC .prof viewer"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "viewprof"; - broken = true; - } - ) { }; - - "views" = callPackage ( - { - mkDerivation, - base, - mtl, - }: - mkDerivation { - pname = "views"; - version = "1.0"; - sha256 = "0kzwp58lki3jvx09n6w8rc97idhy947xqik72p2fqjyigkymv04h"; - libraryHaskellDepends = [ - base - mtl - ]; - description = "Views allow you to run a State monad on part of a state"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "vigilance" = callPackage ( - { - mkDerivation, - acid-state, - aeson, - async, - attoparsec, - base, - blaze-builder, - bytestring, - classy-prelude, - configurator, - containers, - data-store, - derive, - directory, - either, - entropy, - errors, - fast-logger, - hspec, - hspec-expectations, - http-streams, - http-types, - HUnit, - interpolatedstring-perl6, - io-streams, - lens, - mime-mail, - monad-logger, - monad-loops, - mtl, - optparse-applicative, - QuickCheck, - quickcheck-properties, - safecopy, - stm, - template-haskell, - text, - time, - transformers, - unix, - unordered-containers, - vector, - wai, - wai-extra, - warp, - yesod, - yesod-core, - yesod-platform, - }: - mkDerivation { - pname = "vigilance"; - version = "0.1.0.1"; - sha256 = "1qmwqc2cgrmcjcdfwz0hmfn1irzrwbb7mybrl7myf711sri9ng45"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - acid-state - aeson - async - attoparsec - base - blaze-builder - bytestring - classy-prelude - configurator - containers - data-store - directory - either - entropy - errors - fast-logger - http-streams - http-types - interpolatedstring-perl6 - io-streams - lens - mime-mail - monad-logger - monad-loops - mtl - optparse-applicative - safecopy - stm - template-haskell - text - time - transformers - unix - unordered-containers - vector - wai - wai-extra - warp - yesod - yesod-core - yesod-platform - ]; - testHaskellDepends = [ - acid-state - aeson - async - attoparsec - base - blaze-builder - bytestring - classy-prelude - configurator - containers - data-store - derive - directory - entropy - errors - fast-logger - hspec - hspec-expectations - http-streams - http-types - HUnit - interpolatedstring-perl6 - io-streams - lens - mime-mail - monad-loops - mtl - QuickCheck - quickcheck-properties - safecopy - stm - text - time - transformers - unix - unordered-containers - vector - warp - yesod - yesod-core - yesod-platform - ]; - description = "An extensible dead-man's switch system"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "vikunja-api" = callPackage ( { mkDerivation, @@ -707706,127 +410876,6 @@ self: { } ) { }; - "vimus" = callPackage ( - { - mkDerivation, - base, - bytestring, - c2hs, - containers, - data-default, - deepseq, - directory, - filepath, - hspec, - hspec-expectations, - libmpd, - mtl, - ncurses, - old-locale, - process, - QuickCheck, - template-haskell, - time, - time-locale-compat, - transformers, - utf8-string, - wcwidth, - }: - mkDerivation { - pname = "vimus"; - version = "0.2.1"; - sha256 = "0j4j4rsngp76pvssg6kisqqwr9d95fcmxp21yq4483vvc1cv78g2"; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base - bytestring - containers - data-default - deepseq - directory - filepath - libmpd - mtl - old-locale - process - template-haskell - time - time-locale-compat - utf8-string - wcwidth - ]; - librarySystemDepends = [ ncurses ]; - libraryToolDepends = [ c2hs ]; - executableHaskellDepends = [ base ]; - testHaskellDepends = [ - base - data-default - hspec - hspec-expectations - mtl - QuickCheck - transformers - wcwidth - ]; - description = "An MPD client with vim-like key bindings"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - mainProgram = "vimus"; - broken = true; - } - ) { inherit (pkgs) ncurses; }; - - "vintage-basic" = callPackage ( - { - mkDerivation, - array, - base, - directory, - filepath, - hashable, - hashtables, - HUnit, - mtl, - parsec, - process, - random, - regex-base, - regex-posix, - time, - }: - mkDerivation { - pname = "vintage-basic"; - version = "1.0.3"; - sha256 = "1wv7gz4yw4vd2xqcjx8sq0s7cd9h6z6zn7s5lxb10akv7kf52xb8"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - array - base - directory - filepath - hashable - hashtables - HUnit - mtl - parsec - process - random - regex-base - regex-posix - time - ]; - testHaskellDepends = [ base ]; - description = "Interpreter for microcomputer-era BASIC"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "vintbas"; - broken = true; - } - ) { }; - "vinyl" = callPackage ( { mkDerivation, @@ -707888,47 +410937,6 @@ self: { } ) { }; - "vinyl-generics" = callPackage ( - { - mkDerivation, - aeson, - base, - generics-sop, - hspec, - hspec-core, - QuickCheck, - records-sop, - text, - vinyl, - }: - mkDerivation { - pname = "vinyl-generics"; - version = "0.1.0.0"; - sha256 = "1rxv1wgckq5a3c65lvniizmv5f55gbnngxx76wa93h8lgrhf6ac0"; - libraryHaskellDepends = [ - base - generics-sop - records-sop - vinyl - ]; - testHaskellDepends = [ - aeson - base - generics-sop - hspec - hspec-core - QuickCheck - records-sop - text - vinyl - ]; - description = "Convert plain records to vinyl (and vice versa), generically"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "vinyl-gl" = callPackage ( { mkDerivation, @@ -707975,40 +410983,6 @@ self: { } ) { }; - "vinyl-json" = callPackage ( - { - mkDerivation, - aeson, - base, - bytestring, - hlint, - template-haskell, - text, - vinyl, - }: - mkDerivation { - pname = "vinyl-json"; - version = "0.1.0.0"; - sha256 = "07rjlwalpq67hc4pha6x02qbw5pxaz4yimx8sclps9dl7r76xi5c"; - libraryHaskellDepends = [ - aeson - base - bytestring - template-haskell - text - vinyl - ]; - testHaskellDepends = [ - base - hlint - ]; - description = "Provide json instances automagically to vinyl types"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "vinyl-loeb" = callPackage ( { mkDerivation, @@ -708028,386 +411002,6 @@ self: { } ) { }; - "vinyl-named-sugar" = callPackage ( - { - mkDerivation, - base, - vinyl, - }: - mkDerivation { - pname = "vinyl-named-sugar"; - version = "0.1.0.0"; - sha256 = "19wbdavf5zb967r4qkw6ksd2yakp4cnlq1hffzzywssm50zakc3h"; - libraryHaskellDepends = [ - base - vinyl - ]; - description = "Syntax sugar for vinyl records using overloaded labels"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "vinyl-operational" = callPackage ( - { - mkDerivation, - base, - operational, - operational-extra, - vinyl-plus, - }: - mkDerivation { - pname = "vinyl-operational"; - version = "0.1.1"; - sha256 = "19c5q417q0qbblrmkzlz2wb2mlbp1a7msra9imn9sy4za2268mds"; - libraryHaskellDepends = [ - base - operational - operational-extra - vinyl-plus - ]; - description = "Initial project template from stack"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "vinyl-plus" = callPackage ( - { - mkDerivation, - base, - contravariant, - doctest, - ghc-prim, - profunctors, - transformers, - unordered-containers, - vinyl, - }: - mkDerivation { - pname = "vinyl-plus"; - version = "0.1.1"; - sha256 = "15snj0srm7lfwzn3l6i3gm0sk43xj3i6cjg4y2a7dnsn2k49b8gq"; - revision = "1"; - editedCabalFile = "1xkf7qsnhc6m4ylqirwd0q1h2n89sv8q6mvidzwkw3nxj7rfz2h0"; - libraryHaskellDepends = [ - base - contravariant - ghc-prim - profunctors - transformers - unordered-containers - vinyl - ]; - testHaskellDepends = [ - base - doctest - vinyl - ]; - description = "Vinyl records utilities"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "vinyl-utils" = callPackage ( - { - mkDerivation, - base, - contravariant, - transformers, - vinyl, - }: - mkDerivation { - pname = "vinyl-utils"; - version = "0.3.0.1"; - sha256 = "0lcpg2mxmr41lqpn5ksc35c0w16s45z6qq9wjbm0cv8r047k9bq5"; - libraryHaskellDepends = [ - base - contravariant - transformers - vinyl - ]; - description = "Utilities for vinyl"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "vinyl-vectors" = callPackage ( - { - mkDerivation, - base, - bytestring, - constraints, - data-default, - primitive, - template-haskell, - text, - vector, - vinyl, - }: - mkDerivation { - pname = "vinyl-vectors"; - version = "0.2.0"; - sha256 = "1mv24gj9dhz7m9gf7mdnpzyr9jr7mcn0c7mms9x9cz4kfa3np6vg"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - bytestring - constraints - data-default - primitive - template-haskell - text - vector - vinyl - ]; - description = "Vectors for vinyl vectors"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "virthualenv" = callPackage ( - { - mkDerivation, - base, - bytestring, - Cabal, - directory, - file-embed, - filepath, - mtl, - process, - safe, - split, - }: - mkDerivation { - pname = "virthualenv"; - version = "0.2.2"; - sha256 = "08z6dvhv4k6a71dvqhvcfl8s5aq7qcg8aj5xbym3931yykl0gxc2"; - isLibrary = false; - isExecutable = true; - enableSeparateDataOutput = true; - executableHaskellDepends = [ - base - bytestring - Cabal - directory - file-embed - filepath - mtl - process - safe - split - ]; - description = "Virtual Haskell Environment builder"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "virthualenv"; - broken = true; - } - ) { }; - - "visibility" = callPackage ( - { - mkDerivation, - base, - containers, - }: - mkDerivation { - pname = "visibility"; - version = "0.1.0.2"; - sha256 = "0a1abwjg2c41xxmmn7dalvk2lfh1h76waj327dxzjsg0lkkjvhx4"; - libraryHaskellDepends = [ - base - containers - ]; - description = "Simple computation of visibility polygons"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "vision" = callPackage ( - { - mkDerivation, - array, - base, - containers, - directory, - filepath, - glib, - gtk, - json, - MonadCatchIO-transformers, - mtl, - parsec, - PSQueue, - stm, - url, - utf8-string, - xmms2-client, - xmms2-client-glib, - }: - mkDerivation { - pname = "vision"; - version = "0.0.5.0"; - sha256 = "1235zclhg4nkd387df4gg3q88hvsqwsdj1j20lnfnclxfah0qxa2"; - isLibrary = false; - isExecutable = true; - enableSeparateDataOutput = true; - executableHaskellDepends = [ - array - base - containers - directory - filepath - glib - gtk - json - MonadCatchIO-transformers - mtl - parsec - PSQueue - stm - url - utf8-string - xmms2-client - xmms2-client-glib - ]; - description = "An XMMS2 client"; - license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - mainProgram = "vision"; - } - ) { }; - - "visual-graphrewrite" = callPackage ( - { - mkDerivation, - base, - cairo, - containers, - directory, - fgl, - glade, - graphviz, - gtk, - haskell-src, - ipprint, - isevaluated, - lazysmallcheck, - parallel, - pretty, - process, - strict-concurrency, - svgcairo, - value-supply, - }: - mkDerivation { - pname = "visual-graphrewrite"; - version = "0.4.0.1"; - sha256 = "0myppx9bd8bfhii91lqdp00ckp20bq82754mr01s87l1d01gb4wp"; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base - cairo - containers - directory - fgl - glade - graphviz - gtk - haskell-src - ipprint - isevaluated - lazysmallcheck - parallel - pretty - process - strict-concurrency - svgcairo - value-supply - ]; - executableHaskellDepends = [ - base - cairo - containers - directory - fgl - glade - graphviz - gtk - haskell-src - ipprint - isevaluated - lazysmallcheck - parallel - pretty - process - strict-concurrency - svgcairo - value-supply - ]; - description = "Visualize the graph-rewrite steps of a Haskell program"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "visual-graphrewrite"; - } - ) { }; - - "visual-prof" = callPackage ( - { - mkDerivation, - base, - containers, - directory, - filepath, - haskell-src-exts, - mtl, - pretty, - process, - regexpr, - split, - uniplate, - }: - mkDerivation { - pname = "visual-prof"; - version = "0.5"; - sha256 = "00wvxsq6yaidiv2izdxsvvfzj8ksrq8y3fky9y68k82ivh7r2y39"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - containers - directory - filepath - haskell-src-exts - mtl - pretty - process - regexpr - split - uniplate - ]; - description = "Create a visual profile of a program's source code"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "visual-prof"; - broken = true; - } - ) { }; - "visualize-cbn" = callPackage ( { mkDerivation, @@ -708452,29 +411046,6 @@ self: { } ) { }; - "vitrea" = callPackage ( - { - mkDerivation, - base, - mtl, - profunctors, - }: - mkDerivation { - pname = "vitrea"; - version = "0.1.0.0"; - sha256 = "0f7rwww8gcfg6q0xq6z8c3010gx0vxr0v6yf143qxqjx02f93d1p"; - libraryHaskellDepends = [ - base - mtl - profunctors - ]; - description = "Profunctor optics via the profunctor representation theorem"; - license = lib.licenses.gpl3Plus; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "vivid" = callPackage ( { mkDerivation, @@ -708604,47 +411175,6 @@ self: { } ) { }; - "vk-aws-route53" = callPackage ( - { - mkDerivation, - aws, - base, - bytestring, - containers, - http-conduit, - http-types, - old-locale, - resourcet, - text, - time, - xml-conduit, - xml-hamlet, - }: - mkDerivation { - pname = "vk-aws-route53"; - version = "0.1.2"; - sha256 = "0sblvj89bb7vxgy09m88gcphqc9w2mpawg8kdz0r77y7db0vzb4x"; - libraryHaskellDepends = [ - aws - base - bytestring - containers - http-conduit - http-types - old-locale - resourcet - text - time - xml-conduit - xml-hamlet - ]; - description = "Amazon Route53 DNS service plugin for the aws package"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "vk-posix-pty" = callPackage ( { mkDerivation, @@ -708855,71 +411385,6 @@ self: { } ) { }; - "voicebase" = callPackage ( - { - mkDerivation, - aeson, - base, - bytestring, - filepath, - HsOpenSSL, - hspec, - http-client, - http-client-openssl, - lens, - lens-aeson, - mime-types, - mtl, - optparse-applicative, - roundtrip, - roundtrip-aeson, - text, - wreq, - }: - mkDerivation { - pname = "voicebase"; - version = "0.2.0.0"; - sha256 = "0ih0z27vz7767gr11lz227vb84i2kwc6wn9z1yd0zma5nj8x73hw"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson - base - bytestring - HsOpenSSL - http-client - http-client-openssl - lens - lens-aeson - mime-types - mtl - roundtrip - roundtrip-aeson - text - wreq - ]; - executableHaskellDepends = [ - aeson - base - bytestring - filepath - mime-types - optparse-applicative - text - ]; - testHaskellDepends = [ - aeson - base - hspec - roundtrip-aeson - ]; - description = "Upload audio files to voicebase to get a transcription"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "voicebase"; - } - ) { }; - "void" = callPackage ( { mkDerivation, base }: mkDerivation { @@ -708932,78 +411397,6 @@ self: { } ) { }; - "vorbiscomment" = callPackage ( - { - mkDerivation, - base, - binary-strict, - bytestring, - mtl, - utf8-string, - }: - mkDerivation { - pname = "vorbiscomment"; - version = "0.0.2"; - sha256 = "12kfih0marcrpw9y6wvxgqy6w73f62yhy02c05wcpwxww5cg9iwx"; - libraryHaskellDepends = [ - base - binary-strict - bytestring - mtl - utf8-string - ]; - description = "Reading of Vorbis comments from Ogg Vorbis files"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "vowpal-utils" = callPackage ( - { - mkDerivation, - base, - bytestring, - }: - mkDerivation { - pname = "vowpal-utils"; - version = "0.1.2"; - sha256 = "09z6nbsj4rqzhksk75glrsrmcs21p8x0jmcpqs6rc9iizz79db8g"; - libraryHaskellDepends = [ - base - bytestring - ]; - description = "Vowpal Wabbit utilities"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "voyeur" = callPackage ( - { - mkDerivation, - base, - bytestring, - process, - utf8-string, - }: - mkDerivation { - pname = "voyeur"; - version = "0.1.0.1"; - sha256 = "117xvh6llh3aw8nxrvvqyjaflq35l69b7s4j1sc79p8r972mdwff"; - libraryHaskellDepends = [ - base - bytestring - process - utf8-string - ]; - description = "Haskell bindings for libvoyeur"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "vp-tree" = callPackage ( { mkDerivation, @@ -709069,41 +411462,6 @@ self: { } ) { }; - "vpq" = callPackage ( - { - mkDerivation, - base, - primitive, - smallcheck, - tasty, - tasty-smallcheck, - util, - vector, - }: - mkDerivation { - pname = "vpq"; - version = "0.1.0.0"; - sha256 = "1qa3l71ch96slan8s2zx9wc4ljsl4jgl83m7h0rfb9nd9cawflf7"; - revision = "2"; - editedCabalFile = "10rhbl1hpxsaf5xyfjady2jargw1ws2k1kqn6wwgb9m6fhya6cfk"; - libraryHaskellDepends = [ - base - primitive - util - vector - ]; - testHaskellDepends = [ - base - smallcheck - tasty - tasty-smallcheck - ]; - description = "Priority queue based on vector"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "vrpn" = callPackage ( @@ -709140,156 +411498,6 @@ self: { inherit (pkgs) vrpn; }; - "vt-utils" = callPackage ( - { - mkDerivation, - aeson, - aeson-pretty, - base, - bytestring, - case-insensitive, - directory, - either, - hashable, - http-client, - http-types, - HUnit, - parsec, - process, - text, - time, - transformers, - unordered-containers, - vector, - wai, - warp, - }: - mkDerivation { - pname = "vt-utils"; - version = "1.3.0.0"; - sha256 = "07xn1izv59h8b6nk294gyxcfn489n2f6fcpi5g9nkscr59hmkj2v"; - libraryHaskellDepends = [ - aeson - aeson-pretty - base - bytestring - case-insensitive - directory - either - hashable - http-client - http-types - HUnit - parsec - process - text - time - transformers - unordered-containers - vector - wai - ]; - testHaskellDepends = [ - aeson - aeson-pretty - base - bytestring - case-insensitive - directory - either - hashable - http-client - http-types - HUnit - parsec - process - text - time - transformers - unordered-containers - vector - wai - warp - ]; - description = "Vector and Text utilities"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "vte" = callPackage ( - { - mkDerivation, - base, - Cabal, - glib, - gtk, - gtk2hs-buildtools, - pango, - vte, - }: - mkDerivation { - pname = "vte"; - version = "0.13.1.1"; - sha256 = "0cajvmnbkbqvkm3kngp7zscrjnzyf287rk6x2lnbwixg4sk9k1n3"; - enableSeparateDataOutput = true; - setupHaskellDepends = [ - base - Cabal - gtk2hs-buildtools - ]; - libraryHaskellDepends = [ - base - glib - gtk - pango - ]; - libraryPkgconfigDepends = [ vte ]; - libraryToolDepends = [ gtk2hs-buildtools ]; - description = "Binding to the VTE library"; - license = lib.licenses.lgpl21Only; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { inherit (pkgs) vte; }; - - "vtegtk3" = callPackage ( - { - mkDerivation, - base, - Cabal, - glib, - gtk2hs-buildtools, - gtk3, - pango, - vte, - }: - mkDerivation { - pname = "vtegtk3"; - version = "0.13.1.1"; - sha256 = "0rrhca2850dc84sg5gn8dghsn8yk02da1rj7xzjazpmd9lkgwqas"; - enableSeparateDataOutput = true; - setupHaskellDepends = [ - base - Cabal - gtk2hs-buildtools - ]; - libraryHaskellDepends = [ - base - glib - gtk3 - pango - ]; - libraryPkgconfigDepends = [ vte ]; - libraryToolDepends = [ gtk2hs-buildtools ]; - description = "Binding to the VTE library"; - license = lib.licenses.lgpl21Only; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { inherit (pkgs) vte; }; - "vty" = callPackage ( { mkDerivation, @@ -709358,171 +411566,6 @@ self: { } ) { }; - "vty-examples" = callPackage ( - { - mkDerivation, - array, - base, - bytestring, - Cabal, - containers, - data-default, - deepseq, - lens, - mtl, - parallel, - parsec, - QuickCheck, - random, - string-qq, - terminfo, - text, - unix, - utf8-string, - vector, - vty, - }: - mkDerivation { - pname = "vty-examples"; - version = "5.5.0"; - sha256 = "0das9z8lxv6lwg9vdzivq2w05c7f676607pfy3lb1jwzb58y7j8c"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - array - base - bytestring - Cabal - containers - data-default - deepseq - lens - mtl - parallel - parsec - QuickCheck - random - string-qq - terminfo - text - unix - utf8-string - vector - vty - ]; - description = "Examples programs using the vty library"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "vty-menu" = callPackage ( - { - mkDerivation, - base, - vty, - }: - mkDerivation { - pname = "vty-menu"; - version = "0.0.4"; - sha256 = "0j4wkb99spy3lmb1a2ghiimh9mzyac8dmd9m3jx0zsx6cv7plfl5"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - vty - ]; - description = "A lib for displaying a menu and getting a selection using VTY"; - license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - mainProgram = "vty-menu"; - broken = true; - } - ) { }; - - "vty-ui" = callPackage ( - { - mkDerivation, - array, - base, - containers, - data-default, - directory, - filepath, - mtl, - QuickCheck, - random, - regex-base, - stm, - text, - unix, - vector, - vty, - }: - mkDerivation { - pname = "vty-ui"; - version = "1.9"; - sha256 = "1mvs2224slnkswcag6knnj9ydkfgvw6nhaiy71bijjd2wwln4fq2"; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - array - base - containers - data-default - directory - filepath - mtl - regex-base - stm - text - unix - vector - vty - ]; - executableHaskellDepends = [ - base - QuickCheck - random - text - vty - ]; - description = "An interactive terminal user interface library for Vty"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "vty-ui-tests"; - broken = true; - } - ) { }; - - "vty-ui-extras" = callPackage ( - { - mkDerivation, - base, - regex-base, - regex-pcre, - vty, - vty-ui, - }: - mkDerivation { - pname = "vty-ui-extras"; - version = "0.1"; - sha256 = "1c60bvhk1riilj7sl7x7nw4d9yg56f2k0ps1aivmjm0q4brhgnx7"; - libraryHaskellDepends = [ - base - regex-base - regex-pcre - vty - vty-ui - ]; - description = "Extra vty-ui functionality not included in the core library"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "vty-unix" = callPackage ( { mkDerivation, @@ -709891,158 +411934,6 @@ self: { } ) { }; - "wacom-daemon" = callPackage ( - { - mkDerivation, - aeson, - base, - bytestring, - containers, - directory, - filepath, - Glob, - libnotify, - process, - select, - text, - udev, - unordered-containers, - vector, - X11, - yaml, - }: - mkDerivation { - pname = "wacom-daemon"; - version = "0.1.0.0"; - sha256 = "0z4gp66vz1clrhc7ri3pz0n7alhg34ggzglf620yr4vallz6kg88"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson - base - bytestring - containers - directory - filepath - Glob - libnotify - process - select - text - udev - unordered-containers - vector - X11 - yaml - ]; - executableHaskellDepends = [ - aeson - base - bytestring - containers - directory - filepath - Glob - libnotify - process - select - text - udev - unordered-containers - vector - X11 - yaml - ]; - description = "Manage Wacom tablet settings profiles, including Intuos Pro ring modes"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "waddle" = callPackage ( - { - mkDerivation, - base, - binary, - bytestring, - case-insensitive, - containers, - directory, - JuicyPixels, - }: - mkDerivation { - pname = "waddle"; - version = "0.1.0.6"; - sha256 = "05faqisjyj3szgcg08x1wpksf7lq2263y101gp5ph5p7fah2ny28"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - binary - bytestring - case-insensitive - containers - directory - JuicyPixels - ]; - executableHaskellDepends = [ - base - binary - bytestring - case-insensitive - containers - directory - JuicyPixels - ]; - description = "DOOM WAD file utilities"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "wahsp" = callPackage ( - { - mkDerivation, - aeson, - base, - data-default-class, - kansas-comet, - natural-transformation, - remote-monad, - scotty, - semigroups, - stm, - text, - wai-middleware-static, - }: - mkDerivation { - pname = "wahsp"; - version = "0.2"; - sha256 = "0x7yh4g4jprc34pr6i50c8xyx9w6rjl6i2y6zwnkzydv7msf0d76"; - revision = "1"; - editedCabalFile = "1kdszyxp0i4f8yi7831x7vc4q55677ab2rj4fign77m0xk6cnphl"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - aeson - base - data-default-class - kansas-comet - natural-transformation - remote-monad - scotty - semigroups - stm - text - wai-middleware-static - ]; - description = "A haskell binding of the Web Audio API ala blank-canvas"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "wai" = callPackage ( { mkDerivation, @@ -710510,94 +412401,6 @@ self: { } ) { }; - "wai-devel" = callPackage ( - { - mkDerivation, - array, - base, - blaze-html, - bytestring, - Cabal-ide-backend, - directory, - file-embed, - filepath, - fsnotify, - ghc, - Glob, - hspec, - http-client, - http-conduit, - http-reverse-proxy, - http-types, - ide-backend, - MissingH, - network, - optparse-applicative, - process, - shakespeare, - split, - stm, - streaming-commons, - system-filepath, - text, - time, - transformers, - wai, - warp, - websockets, - }: - mkDerivation { - pname = "wai-devel"; - version = "0.0.0.4"; - sha256 = "0zn2w1fgb0fz9c93vqpgyghjks6npzvxpwdwdxxjl4hzwhgnwsy3"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - array - base - blaze-html - bytestring - Cabal-ide-backend - directory - file-embed - filepath - fsnotify - ghc - Glob - http-client - http-conduit - http-reverse-proxy - http-types - ide-backend - MissingH - network - optparse-applicative - process - shakespeare - split - stm - streaming-commons - system-filepath - text - time - transformers - wai - warp - websockets - ]; - executableHaskellDepends = [ base ]; - testHaskellDepends = [ - base - hspec - stm - ]; - description = "A web server for the development of WAI compliant web applications"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - mainProgram = "wai-devel"; - } - ) { }; - "wai-digestive-functors" = callPackage ( { mkDerivation, @@ -710631,30 +412434,6 @@ self: { } ) { }; - "wai-dispatch" = callPackage ( - { - mkDerivation, - base, - text, - wai, - yesod-routes, - }: - mkDerivation { - pname = "wai-dispatch"; - version = "0.1"; - sha256 = "1qyarjbpnngb2x272gkmvrhy3f8kqygxj4nvi6giz09rdx9pfrza"; - libraryHaskellDepends = [ - base - text - wai - yesod-routes - ]; - description = "Nice wrapper around yesod-routes for use with WAI"; - license = "unknown"; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "wai-enforce-https" = callPackage ( { mkDerivation, @@ -710901,148 +412680,6 @@ self: { } ) { }; - "wai-git-http" = callPackage ( - { - mkDerivation, - attoparsec, - base, - blaze-builder, - bytestring, - case-insensitive, - conduit, - conduit-extra, - containers, - directory, - filepath, - hspec, - http-types, - network, - process, - sockaddr, - text, - wai, - wai-conduit, - warp, - }: - mkDerivation { - pname = "wai-git-http"; - version = "0.0.0"; - sha256 = "15j0zkrd0m0qs0yg6b6zwhgfq283a2j8dxf1aqs9l9cbagzsg75g"; - libraryHaskellDepends = [ - attoparsec - base - blaze-builder - bytestring - case-insensitive - conduit - conduit-extra - containers - directory - filepath - http-types - network - process - sockaddr - text - wai - wai-conduit - ]; - testHaskellDepends = [ - base - bytestring - conduit - conduit-extra - directory - hspec - process - wai - warp - ]; - description = "Git http-backend CGI App of WAI"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "wai-graceful" = callPackage ( - { - mkDerivation, - base, - http-types, - mtl, - resourcet, - unix, - wai, - }: - mkDerivation { - pname = "wai-graceful"; - version = "0.1.0.1"; - sha256 = "0a06yrakg9gwjjj4f9nr474j8i8xz642aj56m8vaq621i1kn7jaq"; - libraryHaskellDepends = [ - base - http-types - mtl - resourcet - unix - wai - ]; - description = "Graceful shutdown for WAI applications"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "wai-handler-devel" = callPackage ( - { - mkDerivation, - attoparsec, - base, - bytestring, - cmdargs, - directory, - hint, - http-types, - network, - old-time, - text, - time, - transformers, - wai, - wai-extra, - warp, - }: - mkDerivation { - pname = "wai-handler-devel"; - version = "2.0.0.2"; - sha256 = "13f3w31kr3zinll76i6y3walpyqz3i1rlbsh3d7c5p8hp2d88bzy"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - attoparsec - base - bytestring - directory - hint - http-types - network - old-time - text - time - transformers - wai - wai-extra - warp - ]; - executableHaskellDepends = [ cmdargs ]; - description = "WAI server that automatically reloads code after modification. (deprecated)"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "wai-handler-fastcgi" = callPackage ( { mkDerivation, @@ -711169,63 +412806,6 @@ self: { } ) { }; - "wai-handler-scgi" = callPackage ( - { - mkDerivation, - base, - bytestring, - wai, - wai-extra, - }: - mkDerivation { - pname = "wai-handler-scgi"; - version = "2.0.0.2"; - sha256 = "0h7d78d641bjsnmxsnz4b7s9pw4x0y0xi8bld51y4nqnbjl8gvac"; - libraryHaskellDepends = [ - base - bytestring - wai - wai-extra - ]; - description = "Wai handler to SCGI (deprecated)"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "wai-handler-snap" = callPackage ( - { - mkDerivation, - base, - bytestring, - containers, - enumerator, - snap-core, - snap-server, - transformers, - wai, - }: - mkDerivation { - pname = "wai-handler-snap"; - version = "0.1.1"; - sha256 = "0akk9h7m1hhdggbhj0grss94jzm13fmcmgj51nvh7mfj6f5kj31l"; - libraryHaskellDepends = [ - base - bytestring - containers - enumerator - snap-core - snap-server - transformers - wai - ]; - description = "Web Application Interface handler using snap-server. (deprecated)"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "wai-handler-webkit" = callPackage ( { mkDerivation, @@ -711253,93 +412833,6 @@ self: { } ) { QtWebKit = null; }; - "wai-hastache" = callPackage ( - { - mkDerivation, - base, - bytestring, - hastache, - http-types, - transformers, - wai, - }: - mkDerivation { - pname = "wai-hastache"; - version = "0.1"; - sha256 = "1kkn8n33cm5r7hw0xxf815nx1ixg09r7ckspq228j1syq5j1lzq8"; - libraryHaskellDepends = [ - base - bytestring - hastache - http-types - transformers - wai - ]; - description = "Nice wrapper around hastache for use with WAI"; - license = "unknown"; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "wai-hmac-auth" = callPackage ( - { - mkDerivation, - base, - base64-bytestring, - bifunctors, - byteable, - bytestring, - containers, - cryptohash, - hspec, - http-types, - monad-loops, - mtl, - transformers, - wai, - wai-extra, - }: - mkDerivation { - pname = "wai-hmac-auth"; - version = "1.0.0"; - sha256 = "1hjzwh9hzy29y617faa94428s7ja2ri0bggqxwmf27a0r4qpf1r4"; - libraryHaskellDepends = [ - base - base64-bytestring - bifunctors - byteable - bytestring - containers - cryptohash - http-types - monad-loops - mtl - transformers - wai - ]; - testHaskellDepends = [ - base - base64-bytestring - bifunctors - byteable - bytestring - containers - cryptohash - hspec - http-types - monad-loops - mtl - transformers - wai - wai-extra - ]; - description = "hmac authentication tools for WAI apps"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "wai-http2-extra" = callPackage ( { mkDerivation, @@ -711411,103 +412904,37 @@ self: { deepseq directory http-types - iproute - network - temporary - text - unliftio - unordered-containers - vault - wai - ]; - executableHaskellDepends = [ - aeson - base - binary - bytestring - case-insensitive - deepseq - directory - http-types - iproute - network - temporary - text - unliftio - unordered-containers - vault - wai - ]; - description = "Haskell Webapps on AWS Lambda"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - mainProgram = "wai-lambda"; - broken = true; - } - ) { }; - - "wai-lens" = callPackage ( - { - mkDerivation, - base, - bytestring, - http-types, - lens, - network, - text, - vault, - wai, - }: - mkDerivation { - pname = "wai-lens"; - version = "0.1"; - sha256 = "05vd7pjw6jgbb11yln4h2lbyr5pr471040p51pj7iy2m65s42v4x"; - libraryHaskellDepends = [ - base - bytestring - http-types - lens - network - text - vault - wai - ]; - description = "Lenses for WAI"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "wai-lite" = callPackage ( - { - mkDerivation, - base, - bytestring, - conduit, - http-types, - text, - transformers, - wai, - wai-extra, - }: - mkDerivation { - pname = "wai-lite"; - version = "0.2.0.0"; - sha256 = "1ghxna51m304x5yvgfdgpml0yf6jqhfkixlxxnflg7z34h6wjzz4"; - libraryHaskellDepends = [ + iproute + network + temporary + text + unliftio + unordered-containers + vault + wai + ]; + executableHaskellDepends = [ + aeson base + binary bytestring - conduit + case-insensitive + deepseq + directory http-types + iproute + network + temporary text - transformers + unliftio + unordered-containers + vault wai - wai-extra ]; - description = "DEPCRECATED (use package \"simple\" instead) A minimalist web framework for WAI web applications"; - license = lib.licenses.gpl3Only; + description = "Haskell Webapps on AWS Lambda"; + license = lib.licenses.mit; hydraPlatforms = lib.platforms.none; + mainProgram = "wai-lambda"; broken = true; } ) { }; @@ -711576,91 +413003,6 @@ self: { } ) { }; - "wai-logger-buffered" = callPackage ( - { - mkDerivation, - base, - bytestring, - containers, - data-default, - http-types, - time, - wai, - warp, - }: - mkDerivation { - pname = "wai-logger-buffered"; - version = "0.1.0.1"; - sha256 = "0ksyh5g3wsldg739gzjvvmw9r1wrm5vq84n3shjqsl2y29r4kbls"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - bytestring - containers - data-default - time - wai - ]; - executableHaskellDepends = [ - base - bytestring - containers - data-default - http-types - time - wai - warp - ]; - testHaskellDepends = [ - base - bytestring - containers - data-default - time - wai - ]; - description = "Buffer requets before logging them"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "example"; - broken = true; - } - ) { }; - - "wai-logger-prefork" = callPackage ( - { - mkDerivation, - base, - bytestring, - date-cache, - fast-logger, - http-types, - unix, - wai, - wai-logger, - }: - mkDerivation { - pname = "wai-logger-prefork"; - version = "0.3.0"; - sha256 = "0cfslqr2zdj0x83dbscafhdljrn2xswym7hpf23zlrsrnpz71qy4"; - libraryHaskellDepends = [ - base - bytestring - date-cache - fast-logger - http-types - unix - wai - wai-logger - ]; - description = "A logging system for preforked WAI apps"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "wai-make-assets" = callPackage ( { mkDerivation, @@ -711905,158 +413247,6 @@ self: { } ) { }; - "wai-middleware-brotli" = callPackage ( - { - mkDerivation, - base, - binary, - bytestring, - directory, - filepath, - hs-brotli, - http-types, - mtl, - tasty, - tasty-hspec, - tasty-hunit, - unix, - wai, - wai-app-static, - wai-extra, - warp, - }: - mkDerivation { - pname = "wai-middleware-brotli"; - version = "0.1.0.0"; - sha256 = "1gv3s2y49179kzkjqzs905g2rq1a9al9n716y86ivan8nnkhxjnq"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - binary - bytestring - directory - filepath - hs-brotli - http-types - unix - wai - ]; - executableHaskellDepends = [ - base - http-types - wai - wai-app-static - wai-extra - warp - ]; - testHaskellDepends = [ - base - bytestring - hs-brotli - http-types - mtl - tasty - tasty-hspec - tasty-hunit - wai - wai-extra - ]; - description = "WAI middleware for brotli compression"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "wai-middleware-brotli-server"; - } - ) { }; - - "wai-middleware-cache" = callPackage ( - { - mkDerivation, - base, - binary, - blaze-builder-conduit, - bytestring, - conduit, - crypto-conduit, - http-types, - HUnit, - pureMD5, - test-framework, - test-framework-hunit, - wai, - wai-test, - }: - mkDerivation { - pname = "wai-middleware-cache"; - version = "0.3.6"; - sha256 = "1kqrqjsmnwwavcyhwx6m2x3qk7qbd0h60817ai61dz3aprwc8hdw"; - libraryHaskellDepends = [ - base - binary - blaze-builder-conduit - bytestring - conduit - crypto-conduit - http-types - pureMD5 - wai - ]; - testHaskellDepends = [ - base - bytestring - http-types - HUnit - test-framework - test-framework-hunit - wai - wai-test - ]; - description = "Caching middleware for WAI"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "wai-middleware-cache-redis" = callPackage ( - { - mkDerivation, - base, - binary, - blaze-builder-conduit, - bytestring, - case-insensitive, - conduit, - hedis, - hedis-pile, - http-types, - transformers, - wai, - wai-middleware-cache, - }: - mkDerivation { - pname = "wai-middleware-cache-redis"; - version = "0.4.3"; - sha256 = "1vd81jcisav6jyqzwa0qn35xarm21bjrw0qps9qbbq56svkh1lw9"; - libraryHaskellDepends = [ - base - binary - blaze-builder-conduit - bytestring - case-insensitive - conduit - hedis - hedis-pile - http-types - transformers - wai - wai-middleware-cache - ]; - description = "Redis backend for wai-middleware-cache"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "wai-middleware-caching" = callPackage ( { mkDerivation, @@ -712147,33 +413337,6 @@ self: { } ) { }; - "wai-middleware-catch" = callPackage ( - { - mkDerivation, - base, - bytestring, - http-types, - lifted-base, - wai, - }: - mkDerivation { - pname = "wai-middleware-catch"; - version = "0.3.6"; - sha256 = "1vh5sad3zhdwxqbmivmy9hkbnq9vrv4k6k17rjk4f79lv2xcq56h"; - libraryHaskellDepends = [ - base - bytestring - http-types - lifted-base - wai - ]; - description = "Wai error catching middleware"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "wai-middleware-clacks" = callPackage ( { mkDerivation, @@ -712215,64 +413378,6 @@ self: { } ) { }; - "wai-middleware-consul" = callPackage ( - { - mkDerivation, - async, - base, - base-prelude, - bytestring, - conduit, - conduit-extra, - consul-haskell, - enclosed-exceptions, - http-client, - http-types, - monad-control, - monad-logger, - network, - process, - resourcet, - text, - transformers, - void, - wai, - wai-conduit, - }: - mkDerivation { - pname = "wai-middleware-consul"; - version = "0.1.0.2"; - sha256 = "0qq7kilp9a4qjja337saqccn250s6mnf3n80sgyg935hy1dmm7fq"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - async - base - base-prelude - bytestring - conduit - conduit-extra - consul-haskell - enclosed-exceptions - http-client - http-types - monad-control - monad-logger - network - process - resourcet - text - transformers - void - wai - wai-conduit - ]; - description = "Wai Middleware for Consul"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "wai-middleware-content-type" = callPackage ( { mkDerivation, @@ -712383,92 +413488,6 @@ self: { } ) { }; - "wai-middleware-crowd" = callPackage ( - { - mkDerivation, - authenticate, - base, - base64-bytestring, - binary, - blaze-builder, - bytestring, - case-insensitive, - clientsession, - containers, - cookie, - gitrev, - http-client, - http-client-tls, - http-reverse-proxy, - http-types, - optparse-applicative, - resourcet, - template-haskell, - text, - time, - transformers, - unix-compat, - vault, - wai, - wai-app-static, - wai-extra, - warp, - }: - mkDerivation { - pname = "wai-middleware-crowd"; - version = "0.1.4.2"; - sha256 = "0n5h4s3b2fdn2j0pl32bsdbf6wyyf2ms8qsbcs9r0wp7dhdbcdhi"; - revision = "1"; - editedCabalFile = "0qvh92p9s80kmzg5w7rga54kfqbwcrkkv5p03pd92px04j2h5lbm"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - authenticate - base - base64-bytestring - binary - blaze-builder - bytestring - case-insensitive - clientsession - containers - cookie - http-client - http-client-tls - http-types - resourcet - text - time - unix-compat - vault - wai - ]; - executableHaskellDepends = [ - base - bytestring - clientsession - gitrev - http-client - http-client-tls - http-reverse-proxy - http-types - optparse-applicative - template-haskell - text - transformers - wai - wai-app-static - wai-extra - warp - ]; - description = "Middleware and utilities for using Atlassian Crowd authentication"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - mainProgram = "wai-crowd"; - broken = true; - } - ) { }; - "wai-middleware-delegate" = callPackage ( { mkDerivation, @@ -712563,43 +413582,6 @@ self: { } ) { }; - "wai-middleware-etag" = callPackage ( - { - mkDerivation, - base, - base64-bytestring, - bytestring, - cryptohash, - filepath, - http-date, - http-types, - unix-compat, - unordered-containers, - wai, - }: - mkDerivation { - pname = "wai-middleware-etag"; - version = "0.1.1.1"; - sha256 = "1r3v4f70lvl5qcgs4h3bacg2vy4hlwqfmnw8ffiwigf01qygyyb2"; - libraryHaskellDepends = [ - base - base64-bytestring - bytestring - cryptohash - filepath - http-date - http-types - unix-compat - unordered-containers - wai - ]; - description = "WAI ETag middleware for static files"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "wai-middleware-gunzip" = callPackage ( { mkDerivation, @@ -712625,31 +413607,6 @@ self: { } ) { }; - "wai-middleware-headers" = callPackage ( - { - mkDerivation, - base, - bytestring, - http-types, - wai, - }: - mkDerivation { - pname = "wai-middleware-headers"; - version = "0.1"; - sha256 = "10ap355j4dx42y7ycf1plpbg04wazv0q62mi3ibza8sb33hiiprh"; - libraryHaskellDepends = [ - base - bytestring - http-types - wai - ]; - description = "cors and addHeaders for WAI"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "wai-middleware-hmac" = callPackage ( { mkDerivation, @@ -712707,51 +413664,6 @@ self: { } ) { }; - "wai-middleware-hmac-client" = callPackage ( - { - mkDerivation, - base, - base64-bytestring, - byteable, - bytestring, - case-insensitive, - cryptohash, - http-client, - http-types, - mtl, - old-locale, - time, - transformers, - word8, - }: - mkDerivation { - pname = "wai-middleware-hmac-client"; - version = "0.1.0.2"; - sha256 = "1jmfmcdv1js6rgadfhwb071qp418440ij0hm0fmyf03dk879qhds"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - base64-bytestring - byteable - bytestring - case-insensitive - cryptohash - http-client - http-types - mtl - old-locale - time - transformers - word8 - ]; - description = "WAI HMAC Authentication Middleware Client"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "wai-middleware-json-errors" = callPackage ( { mkDerivation, @@ -712854,50 +413766,6 @@ self: { } ) { }; - "wai-middleware-preprocessor" = callPackage ( - { - mkDerivation, - base, - Cabal, - directory, - mtl, - split, - text, - wai, - wai-middleware-static, - warp, - }: - mkDerivation { - pname = "wai-middleware-preprocessor"; - version = "0.2.0.0"; - sha256 = "1n9z00v5a75pas22cdm26hj888s6kc98bddh2gfs3ffrazdmgbj1"; - libraryHaskellDepends = [ - base - directory - mtl - split - text - wai - wai-middleware-static - ]; - testHaskellDepends = [ - base - Cabal - directory - mtl - split - text - wai - wai-middleware-static - warp - ]; - description = "WAI middleware for preprocessing static files"; - license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "wai-middleware-prometheus" = callPackage ( { mkDerivation, @@ -712935,89 +413803,6 @@ self: { } ) { }; - "wai-middleware-rollbar" = callPackage ( - { - mkDerivation, - aeson, - base, - bytestring, - hostname, - http-client, - http-conduit, - http-types, - rollbar-hs, - text, - time, - uuid, - wai, - }: - mkDerivation { - pname = "wai-middleware-rollbar"; - version = "0.11.0"; - sha256 = "1nsnkf9wk61lj092z56knwfrdjyazql16y2kj5h0iamnf4gmxa7w"; - libraryHaskellDepends = [ - aeson - base - bytestring - hostname - http-client - http-conduit - http-types - rollbar-hs - text - time - uuid - wai - ]; - description = "Middleware that communicates to Rollbar"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "wai-middleware-route" = callPackage ( - { - mkDerivation, - base, - bytestring, - http-types, - HUnit, - test-framework, - test-framework-hunit, - text, - wai, - wai-test, - yesod-routes, - }: - mkDerivation { - pname = "wai-middleware-route"; - version = "0.7.3"; - sha256 = "0zgiaxc5rqjlkfwkb11a5zkmbybrfcqr74mq5vpj03mqz1q0lmx7"; - libraryHaskellDepends = [ - base - bytestring - http-types - text - wai - yesod-routes - ]; - testHaskellDepends = [ - base - bytestring - http-types - HUnit - test-framework - test-framework-hunit - text - wai - wai-test - ]; - description = "Wai dispatch middleware"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "wai-middleware-slack-verify" = callPackage ( { mkDerivation, @@ -713131,53 +413916,6 @@ self: { } ) { }; - "wai-middleware-static-caching" = callPackage ( - { - mkDerivation, - base, - base16-bytestring, - bytestring, - containers, - cryptohash, - directory, - expiring-cache-map, - filepath, - http-types, - mtl, - old-locale, - text, - time, - unix, - wai, - }: - mkDerivation { - pname = "wai-middleware-static-caching"; - version = "0.6.0.1"; - sha256 = "0xj4r1fr1g0fybgsq65gxcvh5zn9hafvm0f73p6dnj6jhz6dryhk"; - libraryHaskellDepends = [ - base - base16-bytestring - bytestring - containers - cryptohash - directory - expiring-cache-map - filepath - http-types - mtl - old-locale - text - time - unix - wai - ]; - description = "WAI middleware that serves requests to static files"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "wai-middleware-static-embedded" = callPackage ( { mkDerivation, @@ -713280,45 +414018,6 @@ self: { } ) { }; - "wai-middleware-travisci" = callPackage ( - { - mkDerivation, - aeson, - base, - base64-bytestring, - bytestring, - cryptonite, - http-types, - text, - transformers, - vault, - wai, - }: - mkDerivation { - pname = "wai-middleware-travisci"; - version = "0.1.0"; - sha256 = "0a58mlgimr6137aiwcdxjk15zy3y58dds4zxffd3vvn0lkzg5jdv"; - revision = "2"; - editedCabalFile = "0j1k2y75gwbny72zf5nrwzanh7sn2plscnrjd4hw5npccxi4dchx"; - libraryHaskellDepends = [ - aeson - base - base64-bytestring - bytestring - cryptonite - http-types - text - transformers - vault - wai - ]; - description = "WAI middleware for authenticating webhook payloads from Travis CI"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "wai-middleware-validation" = callPackage ( { mkDerivation, @@ -713373,55 +414072,6 @@ self: { } ) { }; - "wai-middleware-verbs" = callPackage ( - { - mkDerivation, - base, - bytestring, - exceptions, - hashable, - http-types, - mmorph, - monad-control, - monad-control-aligned, - monad-logger, - mtl, - resourcet, - transformers, - transformers-base, - unordered-containers, - wai, - wai-transformers, - }: - mkDerivation { - pname = "wai-middleware-verbs"; - version = "0.4.0.1"; - sha256 = "1x4x41b1gbr2xvfw1q766wcvdl13wwv9spa9zxvjdykg71knnw93"; - libraryHaskellDepends = [ - base - bytestring - exceptions - hashable - http-types - mmorph - monad-control - monad-control-aligned - monad-logger - mtl - resourcet - transformers - transformers-base - unordered-containers - wai - wai-transformers - ]; - description = "Route Wai middlewares based on HTTP verbs"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "wai-predicates" = callPackage ( { mkDerivation, @@ -713650,287 +414300,6 @@ self: { } ) { }; - "wai-request-spec" = callPackage ( - { - mkDerivation, - base, - bytestring, - case-insensitive, - containers, - criterion, - http-types, - text, - wai, - }: - mkDerivation { - pname = "wai-request-spec"; - version = "0.10.2.4"; - sha256 = "046nxqqlv4wv1kgc634f691jcq6rbs1ld7324hz059s1xw9fvq8y"; - libraryHaskellDepends = [ - base - bytestring - case-insensitive - containers - http-types - text - wai - ]; - benchmarkHaskellDepends = [ - base - bytestring - criterion - http-types - text - wai - ]; - description = "Declarative request parsing"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "wai-responsible" = callPackage ( - { - mkDerivation, - base, - bytestring, - http-types, - wai, - }: - mkDerivation { - pname = "wai-responsible"; - version = "0.0.0.0"; - sha256 = "0qf64g11113gl45bfn12j2ikdjwrdxg9r8cicfs4pmh0dq5vj0va"; - libraryHaskellDepends = [ - base - bytestring - http-types - wai - ]; - description = "Response interface for WAI"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "wai-route" = callPackage ( - { - mkDerivation, - base, - bytestring, - containers, - deepseq, - doctest, - http-api-data, - http-types, - mtl, - pattern-trie, - QuickCheck, - tasty, - tasty-quickcheck, - text, - unordered-containers, - wai, - }: - mkDerivation { - pname = "wai-route"; - version = "1.0.0"; - sha256 = "1hm947mzp3lynsjlhbl9nawa3p35cca15xj32cv5dyyllf0lac8w"; - libraryHaskellDepends = [ - base - bytestring - containers - deepseq - http-api-data - http-types - pattern-trie - text - unordered-containers - wai - ]; - testHaskellDepends = [ - base - bytestring - containers - deepseq - doctest - http-types - mtl - pattern-trie - QuickCheck - tasty - tasty-quickcheck - text - unordered-containers - wai - ]; - description = "WAI middleware for path-based request routing with captures"; - license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "wai-router" = callPackage ( - { - mkDerivation, - base, - text, - wai, - }: - mkDerivation { - pname = "wai-router"; - version = "1.0.0.1"; - sha256 = "1827mk64vyivdc12z4h230c4b993i6g8wl4sl0364jda586z58p7"; - libraryHaskellDepends = [ - base - text - wai - ]; - description = "Provides basic routing on URL paths for WAI"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "wai-routes" = callPackage ( - { - mkDerivation, - aeson, - base, - blaze-builder, - bytestring, - case-insensitive, - containers, - cookie, - data-default-class, - filepath, - hspec, - hspec-wai, - hspec-wai-json, - http-types, - mime-types, - monad-loops, - mtl, - path-pieces, - random, - safe-exceptions, - template-haskell, - text, - vault, - wai, - wai-extra, - }: - mkDerivation { - pname = "wai-routes"; - version = "0.10.4"; - sha256 = "04qmwq29iqkpz1j5ffwqxlf5afxiw3ng8akwydcpdx7xlcxf72i4"; - libraryHaskellDepends = [ - aeson - base - blaze-builder - bytestring - case-insensitive - containers - cookie - data-default-class - filepath - http-types - mime-types - monad-loops - mtl - path-pieces - random - safe-exceptions - template-haskell - text - vault - wai - wai-extra - ]; - testHaskellDepends = [ - aeson - base - hspec - hspec-wai - hspec-wai-json - text - wai - ]; - description = "Typesafe URLs for Wai applications"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "wai-routing" = callPackage ( - { - mkDerivation, - attoparsec, - base, - blaze-builder, - bytestring, - bytestring-conversion, - case-insensitive, - containers, - cookie, - criterion, - http-types, - tasty, - tasty-hunit, - tasty-quickcheck, - transformers, - wai, - wai-predicates, - wai-route, - }: - mkDerivation { - pname = "wai-routing"; - version = "0.13.0"; - sha256 = "13yybkl2wdsfmgkr46ij4428az259z04fcni2wv9xx10iq11p17l"; - libraryHaskellDepends = [ - attoparsec - base - bytestring - bytestring-conversion - case-insensitive - cookie - http-types - transformers - wai - wai-predicates - wai-route - ]; - testHaskellDepends = [ - base - blaze-builder - bytestring - bytestring-conversion - case-insensitive - containers - http-types - tasty - tasty-hunit - tasty-quickcheck - wai - wai-predicates - ]; - benchmarkHaskellDepends = [ - base - criterion - http-types - wai - wai-predicates - ]; - description = "Declarative routing for WAI"; - license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "wai-saml2" = callPackage ( { mkDerivation, @@ -714207,39 +414576,6 @@ self: { } ) { }; - "wai-session-alt" = callPackage ( - { - mkDerivation, - base, - blaze-builder, - bytestring, - cookie, - http-types, - time, - vault, - wai-transformers, - }: - mkDerivation { - pname = "wai-session-alt"; - version = "0.0.0"; - sha256 = "0dy3wqfgqx8vjr6x7g94s0fvsxdkdw2xnb6hba2qw7ipymg8sh49"; - libraryHaskellDepends = [ - base - blaze-builder - bytestring - cookie - http-types - time - vault - wai-transformers - ]; - description = "An alternative session middleware for WAI"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "wai-session-clientsession" = callPackage ( { mkDerivation, @@ -714269,57 +414605,6 @@ self: { } ) { }; - "wai-session-mysql" = callPackage ( - { - mkDerivation, - base, - bytestring, - cereal, - cookie, - data-default, - entropy, - mysql-simple, - resource-pool, - text, - time, - transformers, - wai, - wai-session, - }: - mkDerivation { - pname = "wai-session-mysql"; - version = "0.2.1.0"; - sha256 = "01wz6v0v6sd4iyn4kk0zyiz44ysyizy4npx1l708dvgnlxdqaisb"; - libraryHaskellDepends = [ - base - bytestring - cereal - cookie - data-default - entropy - mysql-simple - resource-pool - text - time - transformers - wai - wai-session - ]; - testHaskellDepends = [ - base - bytestring - data-default - mysql-simple - text - wai-session - ]; - description = "MySQL backed Wai session store"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "wai-session-postgresql" = callPackage ( { mkDerivation, @@ -714435,36 +414720,6 @@ self: { } ) { }; - "wai-session-tokyocabinet" = callPackage ( - { - mkDerivation, - base, - bytestring, - cereal, - errors, - tokyocabinet-haskell, - transformers, - wai-session, - }: - mkDerivation { - pname = "wai-session-tokyocabinet"; - version = "0.1"; - sha256 = "0cd4x3byc8kaarjpfczqaiv5y3ixrdcilnnypkhcavk3vj7w7pmr"; - libraryHaskellDepends = [ - base - bytestring - cereal - errors - tokyocabinet-haskell - transformers - wai-session - ]; - description = "Session store based on Tokyo Cabinet"; - license = "unknown"; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "wai-slack-middleware" = callPackage ( { mkDerivation, @@ -714491,51 +414746,6 @@ self: { } ) { }; - "wai-static-cache" = callPackage ( - { - mkDerivation, - base, - bytestring, - cityhash, - conduit, - conduit-combinators, - containers, - http-types, - resourcet, - system-filepath, - text, - transformers, - vector, - vector-algorithms, - wai, - }: - mkDerivation { - pname = "wai-static-cache"; - version = "0.1.0.1"; - sha256 = "0vlkh9izxx1qsb61fak57kk9k35i3vph8qbyvlmgwcw7nplagq6l"; - libraryHaskellDepends = [ - base - bytestring - cityhash - conduit - conduit-combinators - containers - http-types - resourcet - system-filepath - text - transformers - vector - vector-algorithms - wai - ]; - description = "A simple cache for serving static files in a WAI middleware"; - license = lib.licenses.agpl3Only; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "wai-static-pages" = callPackage ( { mkDerivation, @@ -714582,63 +414792,6 @@ self: { } ) { }; - "wai-thrift" = callPackage ( - { - mkDerivation, - base, - blaze-builder, - bytestring, - http-types, - thrift, - wai, - }: - mkDerivation { - pname = "wai-thrift"; - version = "0.0.1.3"; - sha256 = "1gvrz0izfvbd6k66ki2nvp19x4gq52bkrw8i9qn4lhmal91c18hd"; - libraryHaskellDepends = [ - base - blaze-builder - bytestring - http-types - thrift - wai - ]; - description = "Thrift transport layer for Wai"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "wai-throttler" = callPackage ( - { - mkDerivation, - base, - bytestring, - containers, - http-types, - time, - wai, - }: - mkDerivation { - pname = "wai-throttler"; - version = "0.1.0.5"; - sha256 = "1jh53ac1q4zksxdrmwjgsyidvx8zlhx57nnf3ca4spa3paz9n9g6"; - libraryHaskellDepends = [ - base - bytestring - containers - http-types - time - wai - ]; - description = "Wai middleware for request throttling"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "wai-token-bucket-ratelimiter" = callPackage ( { mkDerivation, @@ -714851,80 +415004,6 @@ self: { } ) { }; - "waitfree" = callPackage ( - { - mkDerivation, - base, - containers, - }: - mkDerivation { - pname = "waitfree"; - version = "0.1.5"; - sha256 = "09hlqli7zpcxfa8w7vh937gc3rxp7s8q8v1zs8ciwnmh6ca4i8rq"; - libraryHaskellDepends = [ - base - containers - ]; - description = "A wrapping library for waitfree computation"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "waitra" = callPackage ( - { - mkDerivation, - aeson, - base, - bytestring, - directory, - filepath, - http-types, - regex-applicative, - tasty, - tasty-hunit, - template-haskell, - text, - wai, - wai-extra, - }: - mkDerivation { - pname = "waitra"; - version = "0.0.4.0"; - sha256 = "04kcn70ydls484gzpblhd0snw4byzxzz8b2h7r673qkpnfgcc42n"; - revision = "2"; - editedCabalFile = "13xxz3dvmdnhzb61zr5y3q1g818mbjq36clrqc1v73imw17rsbvv"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson - base - bytestring - directory - filepath - http-types - regex-applicative - template-haskell - text - wai - ]; - testHaskellDepends = [ - aeson - base - http-types - tasty - tasty-hunit - wai - wai-extra - ]; - description = "A very simple Wai router"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "wakame" = callPackage ( { mkDerivation, @@ -714967,146 +415046,6 @@ self: { } ) { }; - "waldo" = callPackage ( - { - mkDerivation, - aeson, - aeson-pretty, - attoparsec, - base, - blaze-builder, - browscap, - bytestring, - case-insensitive, - conduit, - conduit-extra, - deepseq, - directory, - filepath, - Geodetic, - Glob, - hs-GeoIP, - http-types, - imagesize-conduit, - lrucache, - mtl, - network, - network-uri, - regex-tdfa, - resourcet, - safe, - SHA, - text, - unordered-containers, - wai, - wai-app-static, - wai-extra, - warp, - zlib-conduit, - }: - mkDerivation { - pname = "waldo"; - version = "0"; - sha256 = "0r0lqy3vqs3ypxf0v6xwyarj5rxjf9f19x6b48rhj32z8x9d0isq"; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - aeson - aeson-pretty - attoparsec - base - blaze-builder - browscap - bytestring - case-insensitive - conduit - conduit-extra - deepseq - directory - filepath - Geodetic - Glob - hs-GeoIP - http-types - imagesize-conduit - lrucache - mtl - network - network-uri - regex-tdfa - resourcet - safe - SHA - text - unordered-containers - wai - warp - zlib-conduit - ]; - executableHaskellDepends = [ - aeson - base - bytestring - conduit - conduit-extra - deepseq - http-types - mtl - resourcet - safe - unordered-containers - wai - wai-app-static - wai-extra - warp - zlib-conduit - ]; - description = "A generator of comics based on some ascertainable data about the requester"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "wallpaper" = callPackage ( - { - mkDerivation, - base, - bytestring, - filepath, - JuicyPixels, - text, - yaml, - }: - mkDerivation { - pname = "wallpaper"; - version = "0.1.0.1"; - sha256 = "0dpy3vnf8vn0z64r6kla2qm1czlzz3xvpmm4rz95yjynsrc5n7mz"; - revision = "1"; - editedCabalFile = "00a67dn1ald61zwm9bg6p2vr9ahr6diprx9vmwcjns28g4158qag"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - bytestring - filepath - JuicyPixels - text - yaml - ]; - executableHaskellDepends = [ - base - JuicyPixels - yaml - ]; - testHaskellDepends = [ base ]; - description = "A library and executable for creating wallpaper, frieze, and rosette patterns"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "warc" = callPackage ( { mkDerivation, @@ -715311,79 +415250,6 @@ self: { } ) { }; - "warp-dynamic" = callPackage ( - { - mkDerivation, - base, - data-default, - dyre, - http-types, - wai, - warp, - }: - mkDerivation { - pname = "warp-dynamic"; - version = "0.1.0"; - sha256 = "1kmmy2av0ikr6mb8g7ffqmf505ha4201qv7y48fyc9p8j0p6lk6g"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - data-default - dyre - http-types - wai - warp - ]; - executableHaskellDepends = [ base ]; - description = "Dynamic configurable warp HTTP server"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "warpd"; - broken = true; - } - ) { }; - - "warp-grpc" = callPackage ( - { - mkDerivation, - async, - base, - binary, - bytestring, - case-insensitive, - http-types, - http2, - http2-grpc-types, - unliftio-core, - wai, - warp, - warp-tls, - }: - mkDerivation { - pname = "warp-grpc"; - version = "0.4.0.1"; - sha256 = "0dajbs3gxibnllzs134wa7vqclnyfj2r3hc70dci51wgnmi4b7xr"; - libraryHaskellDepends = [ - async - base - binary - bytestring - case-insensitive - http-types - http2 - http2-grpc-types - unliftio-core - wai - warp - warp-tls - ]; - description = "A minimal gRPC server on top of Warp"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "warp-quic" = callPackage ( { mkDerivation, @@ -715416,48 +415282,6 @@ self: { } ) { }; - "warp-static" = callPackage ( - { - mkDerivation, - base, - bytestring, - cmdargs, - containers, - directory, - mime-types, - text, - wai-app-static, - wai-extra, - warp, - }: - mkDerivation { - pname = "warp-static"; - version = "2.0.1.1"; - sha256 = "181z8cr55qngy6jyqzqz5wcgiyip4rn3q1am0hkcxvmdnif2w2km"; - revision = "1"; - editedCabalFile = "12j77xyq0xwdhy42nxb9p44l909q0qqsixv6adcdsy11glhfi14h"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - bytestring - cmdargs - containers - directory - mime-types - text - wai-app-static - wai-extra - warp - ]; - description = "Static file server based on Warp and wai-app-static (deprecated)"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - mainProgram = "warp"; - broken = true; - } - ) { }; - "warp-systemd" = callPackage ( { mkDerivation, @@ -715531,100 +415355,6 @@ self: { } ) { }; - "warp-tls-uid" = callPackage ( - { - mkDerivation, - base, - bytestring, - data-default, - network, - streaming-commons, - tls, - unix, - wai, - warp, - warp-tls, - x509, - }: - mkDerivation { - pname = "warp-tls-uid"; - version = "0.2.0.6"; - sha256 = "09xvwvb6nc6ymp6x389dxbllisrj24srcdli6d19h05cwlqbay4w"; - libraryHaskellDepends = [ - base - bytestring - data-default - network - streaming-commons - tls - unix - wai - warp - warp-tls - x509 - ]; - testHaskellDepends = [ - base - bytestring - data-default - network - streaming-commons - tls - unix - wai - warp - warp-tls - x509 - ]; - description = "set group and user id before running server"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "warped" = callPackage ( - { - mkDerivation, - aeson, - base, - blaze-builder, - conduit, - http-types, - lifted-async, - monad-control, - preamble, - uuid, - wai, - wai-conduit, - wai-cors, - warp, - }: - mkDerivation { - pname = "warped"; - version = "0.0.8"; - sha256 = "13s9z1vlgi29rb4ay5d508snh982gp04vclv6y4fsga2gia4sbhz"; - libraryHaskellDepends = [ - aeson - base - blaze-builder - conduit - http-types - lifted-async - monad-control - preamble - uuid - wai - wai-conduit - wai-cors - warp - ]; - description = "Warp and Wai Library"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "wasm" = callPackage ( { mkDerivation, @@ -715709,105 +415439,6 @@ self: { } ) { }; - "watcher" = callPackage ( - { - mkDerivation, - base, - basic-prelude, - containers, - hinotify, - system-fileio, - system-filepath, - }: - mkDerivation { - pname = "watcher"; - version = "0.0.3.0"; - sha256 = "1c6025zpghqvw5xlapnfk8nwf32iq6dkpnpzi65pm5l5f5npwwgs"; - libraryHaskellDepends = [ - base - basic-prelude - containers - hinotify - system-fileio - system-filepath - ]; - description = "Opinionated filesystem watcher"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "watchit" = callPackage ( - { - mkDerivation, - async, - base, - bytestring, - fsnotify, - HUnit, - optparse-applicative, - process, - QuickCheck, - resource-pool, - smallcheck, - streaming-commons, - system-fileio, - system-filepath, - tasty, - tasty-hunit, - tasty-quickcheck, - tasty-smallcheck, - text, - }: - mkDerivation { - pname = "watchit"; - version = "0.1.0.0"; - sha256 = "134b9nrl2lmcr80hxmf72la220plh48vdl0r2la3c3k6qimsd276"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - fsnotify - optparse-applicative - process - resource-pool - streaming-commons - system-filepath - text - ]; - executableHaskellDepends = [ - base - fsnotify - optparse-applicative - process - resource-pool - streaming-commons - system-filepath - text - ]; - testHaskellDepends = [ - async - base - bytestring - HUnit - QuickCheck - smallcheck - system-fileio - system-filepath - tasty - tasty-hunit - tasty-quickcheck - tasty-smallcheck - ]; - description = "File change watching utility"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "watchit"; - broken = true; - } - ) { }; - "waterfall-cad" = callPackage ( { mkDerivation, @@ -716028,113 +415659,6 @@ self: { } ) { }; - "wavefront-obj" = callPackage ( - { - mkDerivation, - attoparsec, - base, - containers, - hspec, - linear, - text, - transformers, - }: - mkDerivation { - pname = "wavefront-obj"; - version = "0.1.0.1"; - sha256 = "0n72q1vqc9dp02m5i0ljr780p57n9d1nihw9y235c0yxr7ml8dzp"; - revision = "1"; - editedCabalFile = "1233pbi1q0qlf31m5kspsq8w9sj3ii25ayavn3s0li9lvqkc696c"; - libraryHaskellDepends = [ - attoparsec - base - containers - linear - text - transformers - ]; - testHaskellDepends = [ - base - hspec - linear - ]; - description = "Wavefront .obj file loader"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "wavesurfer" = callPackage ( - { - mkDerivation, - base, - binary, - bytestring, - bytestring-lexing, - bytestring-show, - delimited-text, - }: - mkDerivation { - pname = "wavesurfer"; - version = "0.0.6"; - sha256 = "1f9hsmvwdgrib44sj1rnkm4hv92iad27xg75n2y2qdq1a8giazn5"; - libraryHaskellDepends = [ - base - binary - bytestring - bytestring-lexing - bytestring-show - delimited-text - ]; - description = "Parse WaveSurfer files"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "wavy" = callPackage ( - { - mkDerivation, - base, - binary, - bytestring, - containers, - filepath, - pretty-show, - riff, - split, - vector, - }: - mkDerivation { - pname = "wavy"; - version = "0.1.0.0"; - sha256 = "0rvzsmd7lzimyphc2yscadwkanqpi8wnmdk5hrzwpcm6dcavyj9q"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - binary - bytestring - containers - riff - split - vector - ]; - executableHaskellDepends = [ - base - bytestring - filepath - pretty-show - split - vector - ]; - description = "Process WAVE files in Haskell"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "wcwidth" = callPackage ( { mkDerivation, @@ -716192,62 +415716,6 @@ self: { } ) { }; - "weak-bag" = callPackage ( - { - mkDerivation, - base, - containers, - }: - mkDerivation { - pname = "weak-bag"; - version = "0.1.0.0"; - sha256 = "0jh5xv02wlifjqdvm2cr9mi3wjj4f14s1ap5pphin2rdzklhl3rc"; - libraryHaskellDepends = [ - base - containers - ]; - description = "Mutable bag backed by weak pointers to each item"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "weather-api" = callPackage ( - { - mkDerivation, - aeson, - attoparsec, - base, - bytestring, - HTTP, - network, - network-uri, - utf8-string, - vector, - }: - mkDerivation { - pname = "weather-api"; - version = "0.4.3.3"; - sha256 = "01kbp2m95d8ckwyiimzxk6jjsyfbkv90ddjynflgx7s9i6xxxb17"; - libraryHaskellDepends = [ - aeson - attoparsec - base - bytestring - HTTP - network - network-uri - utf8-string - vector - ]; - description = "Weather API implemented in Haskell"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "weatherhs" = callPackage ( { mkDerivation, @@ -716333,6 +415801,7 @@ self: { description = "Compositional breadth-first walks"; license = lib.licenses.bsd3; hydraPlatforms = lib.platforms.none; + broken = true; } ) { }; @@ -716416,60 +415885,6 @@ self: { } ) { }; - "web-css" = callPackage ( - { - mkDerivation, - base, - text, - }: - mkDerivation { - pname = "web-css"; - version = "0.1.0"; - sha256 = "1havyvd6f0xagynxpar2jsmx5x1izwl7wgxia0wbwbzaj0fzn2k2"; - libraryHaskellDepends = [ - base - text - ]; - description = "Simple functions for CSS"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "web-encodings" = callPackage ( - { - mkDerivation, - base, - bytestring, - directory, - failure, - old-locale, - text, - time, - }: - mkDerivation { - pname = "web-encodings"; - version = "0.3.0.9"; - sha256 = "0lg9vbsmg9nfs2440ab2srhhawg1xfi5lnhxzd9rj7kab460w2x3"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - bytestring - directory - failure - old-locale - text - time - ]; - description = "Encapsulate multiple web encoding in a single package. (deprecated)"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "web-fpco" = callPackage ( { mkDerivation, @@ -716550,132 +415965,6 @@ self: { } ) { }; - "web-mongrel2" = callPackage ( - { - mkDerivation, - base, - bytestring, - data-default, - file-embed, - haskell98, - HStringTemplate, - json, - mtl, - old-time, - parsec, - system-uuid, - template-haskell, - text, - zeromq-haskell, - }: - mkDerivation { - pname = "web-mongrel2"; - version = "0.0.3"; - sha256 = "1j2pq3kzmk2gibrr4jcm5gksz9pk9shjqqpwc85ygb2mpf5yc1gw"; - libraryHaskellDepends = [ - base - bytestring - data-default - file-embed - haskell98 - HStringTemplate - json - mtl - old-time - parsec - system-uuid - template-haskell - text - zeromq-haskell - ]; - description = "Bindings for the Mongrel2 web server"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "web-output" = callPackage ( - { - mkDerivation, - base, - directory, - filepath, - open-browser, - temporary, - text, - }: - mkDerivation { - pname = "web-output"; - version = "0.4.0.0"; - sha256 = "011lgmz5rnq6j286vih1kf1acr6r8hyw09pmdavjq8x9al1za2vh"; - libraryHaskellDepends = [ - base - directory - filepath - open-browser - temporary - text - ]; - testHaskellDepends = [ - base - directory - filepath - open-browser - temporary - text - ]; - description = "Library to present content to an user via their browser"; - license = lib.licenses.publicDomain; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "web-page" = callPackage ( - { - mkDerivation, - base, - blaze-builder, - blaze-html, - bytestring, - clay, - containers, - jmacro, - lens, - mtl, - Stream, - text, - vector, - wl-pprint-text, - }: - mkDerivation { - pname = "web-page"; - version = "0.2.0"; - sha256 = "1hzqwp67pj1xvhmdaxmij08820ffxf559d7jgr8037zzm7j02cql"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - blaze-builder - blaze-html - bytestring - clay - containers - jmacro - lens - mtl - Stream - text - vector - wl-pprint-text - ]; - description = "Monoidally construct web pages"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "web-plugins" = callPackage ( { mkDerivation, @@ -716709,61 +415998,6 @@ self: { } ) { }; - "web-push" = callPackage ( - { - mkDerivation, - aeson, - base, - base64-bytestring, - binary, - bytestring, - cryptonite, - hspec, - http-client, - http-types, - lens, - memory, - random, - safe-exceptions, - text, - time, - transformers, - }: - mkDerivation { - pname = "web-push"; - version = "0.3"; - sha256 = "1l03apm5l0a8p8ir418jzfvgsbrpzbh8ks6rbgjxkyz2wj0if2mi"; - libraryHaskellDepends = [ - aeson - base - base64-bytestring - binary - bytestring - cryptonite - http-client - http-types - lens - memory - random - safe-exceptions - text - time - transformers - ]; - testHaskellDepends = [ - base - base64-bytestring - binary - bytestring - hspec - ]; - description = "Send messages using Web Push protocol"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "web-rep" = callPackage ( { mkDerivation, @@ -716980,6 +416214,7 @@ self: { description = "Adds XMLGenerator instance for RouteT monad"; license = lib.licenses.bsd3; hydraPlatforms = lib.platforms.none; + broken = true; } ) { }; @@ -717002,59 +416237,6 @@ self: { } ) { }; - "web-routes-quasi" = callPackage ( - { - mkDerivation, - base, - path-pieces, - template-haskell, - text, - }: - mkDerivation { - pname = "web-routes-quasi"; - version = "0.7.1.1"; - sha256 = "1rqbymi0n7kdhl272qfjhx9s3gspd5k0bjrhclj9l8mjf033vdmf"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - path-pieces - template-haskell - text - ]; - description = "Define data types and parse/build functions for web-routes via a quasi-quoted DSL (deprecated)"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "web-routes-regular" = callPackage ( - { - mkDerivation, - base, - parsec, - regular, - text, - web-routes, - }: - mkDerivation { - pname = "web-routes-regular"; - version = "0.19.0.1"; - sha256 = "0fysbzdal8sl8pk4sj7i9cma351r0m9lry5pi3ra7fn0czcajajy"; - libraryHaskellDepends = [ - base - parsec - regular - text - web-routes - ]; - description = "portable, type-safe URL routing"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "web-routes-th" = callPackage ( { mkDerivation, @@ -717092,29 +416274,6 @@ self: { } ) { }; - "web-routes-transformers" = callPackage ( - { - mkDerivation, - base, - transformers, - web-routes, - }: - mkDerivation { - pname = "web-routes-transformers"; - version = "0.19.1"; - sha256 = "0pm1v9wqlzi6cg92lajbwbnhsdm509371i8mvyvvj6qa5m58cdib"; - libraryHaskellDepends = [ - base - transformers - web-routes - ]; - description = "Extends web-routes with some transformers instances for RouteT"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "web-routes-wai" = callPackage ( { mkDerivation, @@ -717144,47 +416303,6 @@ self: { } ) { }; - "web-routing" = callPackage ( - { - mkDerivation, - base, - bytestring, - criterion, - doctest, - primitive, - text, - types-compat, - unordered-containers, - }: - mkDerivation { - pname = "web-routing"; - version = "0.6.2"; - sha256 = "1x7imgnpq3998fk4pi2z5ba0r9xc7blf61rn1i51yqqd24la887f"; - revision = "2"; - editedCabalFile = "1kdhj3waa07br9lsw2bl4yvcq04qax5g38279hjccs8h4j3x3d1x"; - libraryHaskellDepends = [ - base - bytestring - primitive - text - types-compat - unordered-containers - ]; - testHaskellDepends = [ - base - doctest - ]; - benchmarkHaskellDepends = [ - base - criterion - text - ]; - description = "simple routing library"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "web-view" = callPackage ( { mkDerivation, @@ -717792,156 +416910,6 @@ self: { } ) { }; - "webapi" = callPackage ( - { - mkDerivation, - aeson, - base, - binary, - blaze-builder, - bytestring, - bytestring-lexing, - bytestring-trie, - case-insensitive, - containers, - cookie, - directory, - exceptions, - hspec, - hspec-wai, - http-client, - http-client-tls, - http-media, - http-types, - network-uri, - QuickCheck, - resourcet, - text, - time, - transformers, - vector, - wai, - wai-extra, - warp, - }: - mkDerivation { - pname = "webapi"; - version = "0.3"; - sha256 = "0jyxmv4d4cxa80xbzzgznqri9scz0309plb5v6rja0qvgdacfyfs"; - libraryHaskellDepends = [ - aeson - base - binary - blaze-builder - bytestring - bytestring-lexing - bytestring-trie - case-insensitive - containers - cookie - directory - exceptions - http-client - http-client-tls - http-media - http-types - network-uri - QuickCheck - resourcet - text - time - transformers - vector - wai - wai-extra - ]; - testHaskellDepends = [ - aeson - base - bytestring - case-insensitive - hspec - hspec-wai - http-media - http-types - QuickCheck - text - time - vector - wai - wai-extra - warp - ]; - description = "WAI based library for web api"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "webapp" = callPackage ( - { - mkDerivation, - array, - base, - blaze-builder, - bytestring, - case-insensitive, - hspec, - http-types, - network, - optparse-applicative, - regex-base, - regex-pcre-builtin, - stm, - text, - transformers, - unix, - vault, - wai, - warp, - warp-tls, - }: - mkDerivation { - pname = "webapp"; - version = "0.6.1"; - sha256 = "0hi25bcsj03jyrx9isj2q12smpqymqn57yv6fhhpyxvy9kgf039r"; - libraryHaskellDepends = [ - array - base - blaze-builder - bytestring - case-insensitive - http-types - network - optparse-applicative - regex-base - regex-pcre-builtin - stm - text - transformers - unix - vault - wai - warp - warp-tls - ]; - testHaskellDepends = [ - base - hspec - http-types - network - text - transformers - wai - ]; - description = "Haskell web app framework based on WAI & Warp"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "webauthn" = callPackage ( { mkDerivation, @@ -718127,179 +417095,6 @@ self: { } ) { }; - "webcloud" = callPackage ( - { - mkDerivation, - base, - bytestring, - cgi, - optparse-applicative, - }: - mkDerivation { - pname = "webcloud"; - version = "0.1.0.1"; - sha256 = "17s2vwhalvanxq66frxh7phv0vciiv4ha90vac8wzp1f79a5ag7z"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - bytestring - cgi - optparse-applicative - ]; - executableHaskellDepends = [ - base - optparse-applicative - ]; - description = "Turn an optparse-applicative program into a CGI program!"; - license = lib.licenses.bsd2; - hydraPlatforms = lib.platforms.none; - mainProgram = "testcloud"; - broken = true; - } - ) { }; - - "webcrank" = callPackage ( - { - mkDerivation, - attoparsec, - base, - blaze-builder, - bytestring, - case-insensitive, - either, - exceptions, - http-date, - http-media, - http-types, - lens, - mtl, - semigroups, - tasty, - tasty-hunit, - tasty-quickcheck, - text, - transformers, - unordered-containers, - utf8-string, - }: - mkDerivation { - pname = "webcrank"; - version = "0.2.2"; - sha256 = "1rgvpp2526lmly2fli65mygplfc6wzqcw5fkn7gq4fcrmql2cisj"; - revision = "1"; - editedCabalFile = "0ispzpl0k80vmfwjj1syn4g73nfsk0hf75wg2284fj385j832y28"; - libraryHaskellDepends = [ - attoparsec - base - blaze-builder - bytestring - case-insensitive - either - exceptions - http-date - http-media - http-types - lens - mtl - semigroups - text - transformers - unordered-containers - utf8-string - ]; - testHaskellDepends = [ - attoparsec - base - bytestring - case-insensitive - exceptions - http-date - http-media - http-types - lens - mtl - tasty - tasty-hunit - tasty-quickcheck - unordered-containers - ]; - description = "Webmachine inspired toolkit for building http applications and services"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "webcrank-dispatch" = callPackage ( - { - mkDerivation, - base, - hvect, - mtl, - path-pieces, - reroute, - text, - unordered-containers, - }: - mkDerivation { - pname = "webcrank-dispatch"; - version = "0.2"; - sha256 = "1bmpjmv8vj876xpgrgjwala3vpgadv6gxvxq72crp8khfl7qwchk"; - libraryHaskellDepends = [ - base - hvect - mtl - path-pieces - reroute - text - unordered-containers - ]; - description = "A simple request dispatcher"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "webcrank-wai" = callPackage ( - { - mkDerivation, - base, - bytestring, - exceptions, - lens, - mtl, - unix-compat, - unordered-containers, - wai, - wai-lens, - webcrank, - webcrank-dispatch, - }: - mkDerivation { - pname = "webcrank-wai"; - version = "0.2.1"; - sha256 = "13db2hpyvzpx9i43d8pryq7f87zlajpfpf0h6biva28l9qamy1yv"; - libraryHaskellDepends = [ - base - bytestring - exceptions - lens - mtl - unix-compat - unordered-containers - wai - wai-lens - webcrank - webcrank-dispatch - ]; - description = "Build a WAI Application from Webcrank Resources"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "webdriver" = callPackage ( { mkDerivation, @@ -718477,52 +417272,6 @@ self: { } ) { }; - "webdriver-angular" = callPackage ( - { - mkDerivation, - aeson, - base, - hspec, - hspec-webdriver, - language-javascript, - template-haskell, - text, - transformers, - unordered-containers, - wai-app-static, - warp, - webdriver, - }: - mkDerivation { - pname = "webdriver-angular"; - version = "0.1.11"; - sha256 = "1xj9zz91yvhdyfdhx0cg7qi3vydp1b5p4jbvi7n1a24xvl66bfsy"; - libraryHaskellDepends = [ - aeson - base - language-javascript - template-haskell - text - transformers - unordered-containers - webdriver - ]; - testHaskellDepends = [ - base - hspec - hspec-webdriver - transformers - wai-app-static - warp - webdriver - ]; - description = "Webdriver actions to assist with testing a webpage which uses Angular.Js"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "webdriver-precore" = callPackage ( { mkDerivation, @@ -718577,83 +417326,6 @@ self: { } ) { }; - "webdriver-snoy" = callPackage ( - { - mkDerivation, - aeson, - attoparsec, - base, - base64-bytestring, - bytestring, - cond, - data-default, - directory, - directory-tree, - exceptions, - filepath, - http-client, - http-types, - lifted-base, - monad-control, - mtl, - network, - parallel, - scientific, - temporary, - text, - time, - transformers, - transformers-base, - unordered-containers, - vector, - zip-archive, - }: - mkDerivation { - pname = "webdriver-snoy"; - version = "0.6.0.4"; - sha256 = "02c2ihqk5gsgnv61rj14rdd76r2nhmxacml3z9krrgxgn326hrbk"; - revision = "1"; - editedCabalFile = "0anm295s6qlwqxkxljw369xidmflkc4dixrd0f6rpw4g9kl55jbw"; - libraryHaskellDepends = [ - aeson - attoparsec - base - base64-bytestring - bytestring - cond - data-default - directory - directory-tree - exceptions - filepath - http-client - http-types - lifted-base - monad-control - mtl - network - scientific - temporary - text - time - transformers - transformers-base - unordered-containers - vector - zip-archive - ]; - testHaskellDepends = [ - base - parallel - text - ]; - description = "a Haskell client for the Selenium WebDriver protocol (deprecated)"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "webdriver-w3c" = callPackage ( { mkDerivation, @@ -719601,6 +418273,7 @@ self: { license = lib.licenses.mit; hydraPlatforms = lib.platforms.none; mainProgram = "webify"; + broken = true; } ) { }; @@ -719648,32 +418321,6 @@ self: { } ) { webkit = null; }; - "webkit-javascriptcore" = callPackage ( - { - mkDerivation, - base, - Cabal, - gtk2hs-buildtools, - webkit, - }: - mkDerivation { - pname = "webkit-javascriptcore"; - version = "0.14.2.1"; - sha256 = "01iz7vf0frw0ybiv861qsrdc0ws0l6adrkrg6lk6h4nnhfrd0dmb"; - setupHaskellDepends = [ - base - Cabal - gtk2hs-buildtools - ]; - libraryHaskellDepends = [ base ]; - libraryPkgconfigDepends = [ webkit ]; - description = "JavaScriptCore FFI from webkitgtk"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { webkit = null; }; - "webkit2gtk3-javascriptcore" = callPackage ( { mkDerivation, @@ -719700,52 +418347,6 @@ self: { } ) { inherit (pkgs) webkitgtk_4_0; }; - "webkitgtk3" = callPackage ( - { - mkDerivation, - base, - bytestring, - Cabal, - cairo, - glib, - gtk2hs-buildtools, - gtk3, - mtl, - pango, - text, - transformers, - webkitgtk, - }: - mkDerivation { - pname = "webkitgtk3"; - version = "0.14.2.1"; - sha256 = "1xml39120yng7pgdpaz114zc2vcq7kxi5v1gdlfarzdvxxsw8wba"; - enableSeparateDataOutput = true; - setupHaskellDepends = [ - base - Cabal - gtk2hs-buildtools - ]; - libraryHaskellDepends = [ - base - bytestring - cairo - glib - gtk3 - mtl - pango - text - transformers - ]; - libraryPkgconfigDepends = [ webkitgtk ]; - libraryToolDepends = [ gtk2hs-buildtools ]; - description = "Binding to the Webkit library"; - license = lib.licenses.lgpl21Only; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { webkitgtk = null; }; - "webkitgtk3-javascriptcore" = callPackage ( { mkDerivation, @@ -719909,96 +418510,6 @@ self: { } ) { }; - "webserver" = callPackage ( - { - mkDerivation, - base, - bytestring, - c10k, - containers, - directory, - filepath, - network, - old-locale, - parsec, - process, - stm, - time, - unix, - zlib, - }: - mkDerivation { - pname = "webserver"; - version = "0.7.1.1"; - sha256 = "0mjbw1v0xy3ji6y0wdiv77y7bc4r5z7jk67gzzgny2cx1vx3c973"; - libraryHaskellDepends = [ - base - bytestring - c10k - containers - directory - filepath - network - old-locale - parsec - process - stm - time - unix - zlib - ]; - description = "HTTP server library"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "webshow" = callPackage ( - { - mkDerivation, - base, - directory, - file-embed, - filepath, - hscolour, - http-types, - lucid, - optparse-applicative, - optparse-simple, - pretty-show, - text, - wai, - warp, - }: - mkDerivation { - pname = "webshow"; - version = "0.0.0"; - sha256 = "1a3ccj8q174n3b9l01a56jj9fnzyx0za9mzp97i7g0jsjwn9fxbs"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - directory - file-embed - filepath - hscolour - http-types - lucid - optparse-applicative - optparse-simple - pretty-show - text - wai - warp - ]; - description = "Show programming language printed values in a web UI"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "webshow"; - broken = true; - } - ) { }; - "websnap" = callPackage ( { mkDerivation, @@ -720144,85 +418655,6 @@ self: { } ) { }; - "websockets-rpc" = callPackage ( - { - mkDerivation, - aeson, - async, - base, - bytestring, - containers, - exceptions, - hashable, - monad-control, - mtl, - QuickCheck, - quickcheck-instances, - stm, - tasty, - tasty-quickcheck, - text, - transformers, - unordered-containers, - uuid, - wai-transformers, - websockets, - websockets-simple, - }: - mkDerivation { - pname = "websockets-rpc"; - version = "0.7.0"; - sha256 = "0iywpaqp0y1mbysphz438adpj8mvlyr58wr1avj22wwm9n29yhin"; - libraryHaskellDepends = [ - aeson - async - base - bytestring - containers - exceptions - hashable - monad-control - mtl - QuickCheck - stm - text - transformers - unordered-containers - uuid - wai-transformers - websockets - websockets-simple - ]; - testHaskellDepends = [ - aeson - async - base - bytestring - containers - exceptions - hashable - monad-control - mtl - QuickCheck - quickcheck-instances - stm - tasty - tasty-quickcheck - text - transformers - unordered-containers - uuid - wai-transformers - websockets - websockets-simple - ]; - description = "Simple streaming RPC mechanism using WebSockets"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "websockets-simple" = callPackage ( { mkDerivation, @@ -720341,61 +418773,6 @@ self: { } ) { }; - "webwire" = callPackage ( - { - mkDerivation, - base, - base64-bytestring, - blaze-builder, - blaze-html, - bytestring, - case-insensitive, - containers, - cookie, - cprng-aes, - hamlet, - http-types, - netwire, - shakespeare-css, - shakespeare-js, - text, - time, - transformers, - wai, - wai-extra, - }: - mkDerivation { - pname = "webwire"; - version = "0.1.0"; - sha256 = "0m2wl7cfg67yyj2bbn811g6gsvzj7sw1sb3y2zanc0dxjd4cr4r2"; - libraryHaskellDepends = [ - base - base64-bytestring - blaze-builder - blaze-html - bytestring - case-insensitive - containers - cookie - cprng-aes - hamlet - http-types - netwire - shakespeare-css - shakespeare-js - text - time - transformers - wai - wai-extra - ]; - description = "Functional reactive web framework"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "wedding-announcement" = callPackage ( { mkDerivation, base }: mkDerivation { @@ -720640,94 +419017,6 @@ self: { } ) { }; - "weekdaze" = callPackage ( - { - mkDerivation, - array, - base, - bytestring, - Cabal, - containers, - cryptohash, - data-default, - deepseq, - directory, - extra, - factory, - filepath, - hxt, - mtl, - parallel, - QuickCheck, - random, - time, - toolshed, - unix, - xhtml, - }: - mkDerivation { - pname = "weekdaze"; - version = "0.0.0.3"; - sha256 = "1khnizhk45qbjrxq24bfs183wbmrdxax7k09mjm9717wb350v6k6"; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - array - base - bytestring - Cabal - containers - cryptohash - data-default - deepseq - extra - factory - filepath - hxt - mtl - random - toolshed - xhtml - ]; - executableHaskellDepends = [ - array - base - Cabal - containers - cryptohash - data-default - deepseq - directory - extra - factory - filepath - hxt - mtl - parallel - random - time - toolshed - unix - xhtml - ]; - testHaskellDepends = [ - array - base - Cabal - containers - factory - mtl - QuickCheck - toolshed - ]; - description = "A school-timetable problem-solver"; - license = "GPL"; - hydraPlatforms = lib.platforms.none; - mainProgram = "weekdaze"; - } - ) { }; - "weierstrass-functions" = callPackage ( { mkDerivation, @@ -720757,6 +419046,7 @@ self: { description = "Weierstrass Elliptic Functions"; license = lib.licenses.bsd3; hydraPlatforms = lib.platforms.none; + broken = true; } ) { }; @@ -720793,55 +419083,6 @@ self: { } ) { }; - "weighted" = callPackage ( - { - mkDerivation, - base, - mtl, - semiring-num, - transformers, - }: - mkDerivation { - pname = "weighted"; - version = "0.3.0.1"; - sha256 = "1xizw6509rwj3l75haxl8sgdbd5mailj14d6qgy77r83g9qr6p8s"; - libraryHaskellDepends = [ - base - mtl - semiring-num - transformers - ]; - description = "Writer monad which uses semiring constraint"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "weighted-regexp" = callPackage ( - { - mkDerivation, - array, - base, - happy, - }: - mkDerivation { - pname = "weighted-regexp"; - version = "0.3.1.2"; - sha256 = "0r765ppzazdsm5i3prgf6a405f88xi8sx79jdz9mck4584w7fqzr"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - array - base - ]; - libraryToolDepends = [ happy ]; - description = "Weighted Regular Expression Matcher"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "weighted-search" = callPackage ( { mkDerivation, base }: mkDerivation { @@ -720892,51 +419133,6 @@ self: { } ) { }; - "welshy" = callPackage ( - { - mkDerivation, - aeson, - base, - blaze-builder, - bytestring, - conduit, - http-types, - lifted-base, - resourcet, - text, - transformers, - unordered-containers, - wai, - warp, - }: - mkDerivation { - pname = "welshy"; - version = "0.1.0.0"; - sha256 = "08pgns5irmvh9c12lxq2x72ql8ggzd3npfqnrphba3l171380gki"; - revision = "1"; - editedCabalFile = "0b62zr532s4v7v9rdpksahzdwmkhyaljnm0xgj6znbklgfk76sgz"; - libraryHaskellDepends = [ - aeson - base - blaze-builder - bytestring - conduit - http-types - lifted-base - resourcet - text - transformers - unordered-containers - wai - warp - ]; - description = "Haskell web framework (because Scotty had trouble yodeling)"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "wembley" = callPackage ( { mkDerivation, @@ -720967,113 +419163,6 @@ self: { } ) { }; - "werewolf" = callPackage ( - { - mkDerivation, - aeson, - base, - containers, - directory, - extra, - filepath, - interpolate, - lens, - MonadRandom, - mtl, - optparse-applicative, - random-shuffle, - template-haskell, - text, - transformers, - }: - mkDerivation { - pname = "werewolf"; - version = "1.5.2.0"; - sha256 = "19gkbnj8abfh79vyaa9j2ca90g386npfwqkdi4wrl240v8x8as78"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson - base - containers - extra - interpolate - lens - mtl - template-haskell - text - transformers - ]; - executableHaskellDepends = [ - aeson - base - containers - directory - extra - filepath - lens - MonadRandom - mtl - optparse-applicative - random-shuffle - text - transformers - ]; - description = "A game engine for playing werewolf within an arbitrary chat client"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "werewolf"; - broken = true; - } - ) { }; - - "werewolf-slack" = callPackage ( - { - mkDerivation, - aeson, - base, - bytestring, - extra, - http-client, - http-client-tls, - http-types, - mtl, - optparse-applicative, - process, - text, - wai, - warp, - werewolf, - }: - mkDerivation { - pname = "werewolf-slack"; - version = "1.0.2.0"; - sha256 = "15d467ab3la8bwfrp9468ssq0b768x2j1w6f72xl1rfzcr31kl4l"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - aeson - base - bytestring - extra - http-client - http-client-tls - http-types - mtl - optparse-applicative - process - text - wai - warp - werewolf - ]; - description = "A chat interface for playing werewolf in Slack"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "werewolf-slack"; - } - ) { }; - "wgpu-hs" = callPackage ( { mkDerivation, @@ -721497,88 +419586,6 @@ self: { } ) { }; - "wheb-mongo" = callPackage ( - { - mkDerivation, - base, - bson, - mongoDB, - mtl, - text, - Wheb, - }: - mkDerivation { - pname = "wheb-mongo"; - version = "0.0.3.0"; - sha256 = "1xxks0jxjwph7372jqnscm6z0b28zz3dvb49b2aw37jmnvwrfdcy"; - libraryHaskellDepends = [ - base - bson - mongoDB - mtl - text - Wheb - ]; - description = "MongoDB plugin for Wheb"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "wheb-redis" = callPackage ( - { - mkDerivation, - base, - bytestring, - hedis, - mtl, - text, - Wheb, - }: - mkDerivation { - pname = "wheb-redis"; - version = "0.0.1.0"; - sha256 = "025chjp41qbjr9m6c3pd9v510h4aac1rvbyrki3c7617sca8a45h"; - libraryHaskellDepends = [ - base - bytestring - hedis - mtl - text - Wheb - ]; - description = "Redis connection for Wheb"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "wheb-strapped" = callPackage ( - { - mkDerivation, - base, - mtl, - StrappedTemplates, - text, - Wheb, - }: - mkDerivation { - pname = "wheb-strapped"; - version = "0.1.0.0"; - sha256 = "1wykpp325336kk7a1vnnjffankcw0kaw3jcfin53cp8hsx4bwfdp"; - libraryHaskellDepends = [ - base - mtl - StrappedTemplates - text - Wheb - ]; - description = "Strapped templates for Wheb"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "wherefrom-compat" = callPackage ( { mkDerivation, @@ -721656,230 +419663,6 @@ self: { } ) { }; - "while-lang-parser" = callPackage ( - { - mkDerivation, - base, - indents, - parsec, - }: - mkDerivation { - pname = "while-lang-parser"; - version = "0.1.0.0"; - sha256 = "0dlq2rldak4lb0w8hcx7aigdj7b59crp1k130p36cha7zpqdixll"; - libraryHaskellDepends = [ - base - indents - parsec - ]; - description = "Parser for the While language"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "whim" = callPackage ( - { - mkDerivation, - base, - containers, - GLUT, - mtl, - OpenGL, - process, - random, - X11, - }: - mkDerivation { - pname = "whim"; - version = "0.1.1"; - sha256 = "0fgasnviqmz8ifkb8ikvj721f9j1xzvix5va0jxi81gh6f400ij6"; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base - containers - GLUT - mtl - OpenGL - process - random - X11 - ]; - description = "A Haskell window manager"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "whim"; - broken = true; - } - ) { }; - - "whiskers" = callPackage ( - { - mkDerivation, - base, - parsec, - template-haskell, - }: - mkDerivation { - pname = "whiskers"; - version = "0.1.0.3"; - sha256 = "0kbyv0q6z2d2plblafqcmwcfiyhdbijqnqg2w7qxr7dklka8245v"; - libraryHaskellDepends = [ - base - parsec - template-haskell - ]; - description = "Mustache templates with Template Haskell"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "whitespace" = callPackage ( - { - mkDerivation, - haskell98, - random, - }: - mkDerivation { - pname = "whitespace"; - version = "0.4"; - sha256 = "1y89bayaccz8qqzsfmpr917dczgbn5srskja6f2dab3ipxhk24z9"; - isLibrary = false; - isExecutable = true; - enableSeparateDataOutput = true; - executableHaskellDepends = [ - haskell98 - random - ]; - description = "Whitespace, an esoteric programming language"; - license = "GPL"; - hydraPlatforms = lib.platforms.none; - mainProgram = "wspace"; - } - ) { }; - - "whois" = callPackage ( - { - mkDerivation, - base, - network, - network-uri, - split, - }: - mkDerivation { - pname = "whois"; - version = "1.2.2"; - sha256 = "199fd710zicx7ijyvipc7p0d3yg18f6nppcln2wz38hl9kfv0iv0"; - revision = "1"; - editedCabalFile = "07jpszzhzfygz920y09j4xrkw6pgwbpxqn79lavzz0w6jpd447y1"; - libraryHaskellDepends = [ - base - network - network-uri - split - ]; - description = "WHOIS client library"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "wholepixels" = callPackage ( - { - mkDerivation, - base, - cairo, - colour, - directory, - hsnoise, - MonadRandom, - mtl, - random, - random-fu, - random-shuffle, - random-source, - relude, - temporary, - time, - }: - mkDerivation { - pname = "wholepixels"; - version = "1.1"; - sha256 = "1xxdf0znpa54bzifj1apmc9yda4mdhy1vzdm58ihnywi9mch1c0l"; - libraryHaskellDepends = [ - base - cairo - colour - directory - hsnoise - MonadRandom - mtl - random - random-fu - random-shuffle - random-source - relude - temporary - time - ]; - license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "why3" = callPackage ( - { - mkDerivation, - alex, - array, - base, - bytestring, - containers, - deepseq, - directory, - filepath, - happy, - monadLib, - pretty, - pretty-show, - profunctors, - text, - }: - mkDerivation { - pname = "why3"; - version = "0.8"; - sha256 = "1xgv2v4xrw10lnls4rvc11mdncrmhisk1352fb6hwvzxqqlnsbcf"; - libraryHaskellDepends = [ - array - base - bytestring - containers - deepseq - directory - filepath - monadLib - pretty - pretty-show - profunctors - text - ]; - libraryToolDepends = [ - alex - happy - ]; - description = "Haskell support for the Why3 input format"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "wide-word" = callPackage ( { mkDerivation, @@ -722444,55 +420227,6 @@ self: { } ) { }; - "wikipedia4epub" = callPackage ( - { - mkDerivation, - base, - bytestring, - directory, - epub, - filepath, - haskell98, - HTTP, - network, - regex-base, - regex-posix, - tagsoup, - url, - xml, - zip-archive, - zlib, - }: - mkDerivation { - pname = "wikipedia4epub"; - version = "0.0.12"; - sha256 = "089mmwrknghkliakni3wmwrd0hcngg3kqkijfmmky4bxni6w39bd"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - bytestring - directory - epub - filepath - haskell98 - HTTP - network - regex-base - regex-posix - tagsoup - url - xml - zip-archive - zlib - ]; - description = "Wikipedia EPUB E-Book construction from Firefox history"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "wiki4e-mkepub-subtree"; - } - ) { }; - "wild-bind" = callPackage ( { mkDerivation, @@ -722808,58 +420542,6 @@ self: { } ) { }; - "windowslive" = callPackage ( - { - mkDerivation, - base, - Crypto, - dataenc, - mtl, - network, - parsec, - pretty, - split, - time, - urlencoded, - }: - mkDerivation { - pname = "windowslive"; - version = "0.3"; - sha256 = "15dk3wdv99ggxwypgnv8hs5ygn5bzqml9jhhz6l9kgnc0rrn3jbz"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - Crypto - dataenc - mtl - network - parsec - pretty - split - time - urlencoded - ]; - description = "Implements Windows Live Web Authentication and Delegated Authentication"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "winerror" = callPackage ( - { mkDerivation }: - mkDerivation { - pname = "winerror"; - version = "1.0.1"; - sha256 = "0xamx4yhyv264mka4ypp0r1xh3xv7ba31sis3lbhjycn4i07wlhd"; - doHaddock = false; - description = "Error handling for foreign calls to the Windows API"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "winery" = callPackage ( { mkDerivation, @@ -722970,103 +420652,6 @@ self: { } ) { }; - "winio" = - callPackage - ( - { - mkDerivation, - base, - bytestring, - extensible-exceptions, - kernel32, - network, - winerror, - ws2_32, - }: - mkDerivation { - pname = "winio"; - version = "0.1"; - sha256 = "0f13x6fcb7cb4rfza5vp1dfxx3rcggh5rgw05lkqx9jwvnqcnjwm"; - libraryHaskellDepends = [ - base - bytestring - extensible-exceptions - network - winerror - ]; - librarySystemDepends = [ - kernel32 - ws2_32 - ]; - description = "I/O library for Windows"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) - { - kernel32 = null; - ws2_32 = null; - }; - - "wire-streams" = callPackage ( - { - mkDerivation, - base, - binary, - binary-parsers, - bytestring, - cereal, - cereal-conduit, - conduit, - conduit-extra, - criterion, - io-streams, - QuickCheck, - tasty, - tasty-quickcheck, - transformers, - }: - mkDerivation { - pname = "wire-streams"; - version = "0.1.1.0"; - sha256 = "09zvw9c1h42fwbry0nycnfjy8m8v4yfijvy9h6c5i2ccq1qgppwn"; - revision = "1"; - editedCabalFile = "1j7gpk3k82h0kxnhpv40jmnqxpnr0v0m4lj6bhpga81vlmznr088"; - libraryHaskellDepends = [ - base - binary - binary-parsers - bytestring - io-streams - ]; - testHaskellDepends = [ - base - binary - bytestring - io-streams - QuickCheck - tasty - tasty-quickcheck - ]; - benchmarkHaskellDepends = [ - base - binary - bytestring - cereal - cereal-conduit - conduit - conduit-extra - criterion - io-streams - transformers - ]; - description = "Fast binary io-streams adapter"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "wireguard-hs" = callPackage ( { mkDerivation, @@ -723108,72 +420693,6 @@ self: { } ) { }; - "wires" = callPackage ( - { - mkDerivation, - base, - deepseq, - mtl, - profunctors, - semigroupoids, - these, - }: - mkDerivation { - pname = "wires"; - version = "0.2.1"; - sha256 = "0dh0kpmja296miax80y3qqq3s8rmab4d7yqdcxrhmy9gzq350hri"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - deepseq - mtl - profunctors - semigroupoids - these - ]; - description = "Functional reactive programming library"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "wiring" = callPackage ( - { - mkDerivation, - base, - hspec, - mtl, - QuickCheck, - template-haskell, - transformers, - }: - mkDerivation { - pname = "wiring"; - version = "0.5.1"; - sha256 = "1xzm68pydfbq5dmnap94hwmxk2sl44q15jvap3cqavlagcq7xqsl"; - libraryHaskellDepends = [ - base - mtl - template-haskell - transformers - ]; - testHaskellDepends = [ - base - hspec - mtl - QuickCheck - template-haskell - transformers - ]; - description = "Wiring, promotion and demotion of types"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "wiringPi" = callPackage ( { mkDerivation, base }: mkDerivation { @@ -723482,34 +421001,6 @@ self: { } ) { }; - "witty" = callPackage ( - { - mkDerivation, - base, - bytestring, - network, - unix, - }: - mkDerivation { - pname = "witty"; - version = "0.0.4"; - sha256 = "1k8c74j28nji46gib7r2ivfbvvzmkka9qnyf8hh7cyjgsmxxvq83"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - bytestring - network - unix - ]; - description = "A network server to show bottlenecks of GHC"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "witty"; - broken = true; - } - ) { }; - "wizard" = callPackage ( { mkDerivation, @@ -723558,45 +421049,6 @@ self: { } ) { }; - "wkt" = callPackage ( - { - mkDerivation, - base, - filepath, - lens, - linear, - tasty, - tasty-golden, - trifecta, - }: - mkDerivation { - pname = "wkt"; - version = "0.3.2"; - sha256 = "17gkszhyklhh6izsvhzrbwl4ci27kh9jgvjcd92ql98xb70iv38c"; - revision = "1"; - editedCabalFile = "1ykahcr0wqyw9idm52mvs0vhn1v87ngdynvdv1dxanxyd1caf711"; - libraryHaskellDepends = [ - base - lens - linear - trifecta - ]; - testHaskellDepends = [ - base - filepath - lens - linear - tasty - tasty-golden - trifecta - ]; - description = "Parsec parsers and types for geographic data in well-known text (WKT) format"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "wkt-geom" = callPackage ( { mkDerivation, @@ -723738,144 +421190,6 @@ self: { } ) { }; - "wl-pprint-ansiterm" = callPackage ( - { - mkDerivation, - ansi-terminal, - base, - bytestring, - containers, - mtl, - nats, - semigroups, - text, - transformers, - wl-pprint-extras, - }: - mkDerivation { - pname = "wl-pprint-ansiterm"; - version = "0.2.0.0"; - sha256 = "02s47f58ah08fvjqpdscxqiq9609agi5iplczrdkgxrv1vj8vkpz"; - libraryHaskellDepends = [ - ansi-terminal - base - bytestring - containers - mtl - nats - semigroups - text - transformers - wl-pprint-extras - ]; - description = "ANSI Terminal support with wl-pprint-extras"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "wl-pprint-console" = callPackage ( - { - mkDerivation, - base, - bytestring, - colorful-monoids, - text, - wl-pprint-annotated, - }: - mkDerivation { - pname = "wl-pprint-console"; - version = "0.1.0.2"; - sha256 = "05dq90zh2ywmaz0z9vr7114f4c6gacp7b7hlbl3sx31km92v8xnb"; - libraryHaskellDepends = [ - base - bytestring - colorful-monoids - text - wl-pprint-annotated - ]; - description = "Wadler/Leijen pretty printer supporting colorful console output"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "wl-pprint-extras" = callPackage ( - { - mkDerivation, - base, - containers, - HUnit, - nats, - semigroupoids, - semigroups, - test-framework, - test-framework-hunit, - text, - utf8-string, - }: - mkDerivation { - pname = "wl-pprint-extras"; - version = "3.5.0.5"; - sha256 = "13wdx7l236yyv9wqsgcjlbrm5gk1bmw1z2lk4b21y699ly2imhm9"; - libraryHaskellDepends = [ - base - containers - nats - semigroupoids - semigroups - text - utf8-string - ]; - testHaskellDepends = [ - base - HUnit - test-framework - test-framework-hunit - ]; - description = "A free monad based on the Wadler/Leijen pretty printer"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "wl-pprint-terminfo" = callPackage ( - { - mkDerivation, - base, - bytestring, - containers, - nats, - semigroups, - terminfo, - text, - transformers, - wl-pprint-extras, - }: - mkDerivation { - pname = "wl-pprint-terminfo"; - version = "3.7.1.4"; - sha256 = "084d70plp3d9629aznrk5nxkg0hg7yr76iyi74gcby633xbvmniw"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base - bytestring - containers - nats - semigroups - terminfo - text - transformers - wl-pprint-extras - ]; - description = "A color pretty printer with terminfo support"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "wl-pprint-text" = callPackage ( { mkDerivation, @@ -723899,42 +421213,6 @@ self: { } ) { }; - "wlc-hs" = callPackage ( - { - mkDerivation, - base, - c2hs, - containers, - data-default, - lens, - pretty, - process, - transformers, - wlc, - xkbcommon, - }: - mkDerivation { - pname = "wlc-hs"; - version = "0.1.0.0"; - sha256 = "0z553h86dznsf2wagbfhh8p27aa20jm3wmxkklr51al35xralvv9"; - libraryHaskellDepends = [ - base - containers - data-default - lens - pretty - process - transformers - xkbcommon - ]; - librarySystemDepends = [ wlc ]; - libraryToolDepends = [ c2hs ]; - description = "Haskell bindings for the wlc library"; - license = lib.licenses.isc; - hydraPlatforms = lib.platforms.none; - } - ) { inherit (pkgs) wlc; }; - "wled-json" = callPackage ( { mkDerivation, @@ -723979,184 +421257,6 @@ self: { } ) { }; - "wobsurv" = callPackage ( - { - mkDerivation, - aeson, - attoparsec, - base-prelude, - bytestring, - hastache, - HTF, - http-client, - http-types, - HUnit, - lifted-async, - monad-control, - mwc-random, - network, - network-simple, - old-locale, - pipes, - pipes-bytestring, - pipes-network, - pipes-parse, - pipes-safe, - pipes-text, - QuickCheck, - quickcheck-instances, - safe, - stm, - stm-containers, - system-fileio, - system-filepath, - text, - time, - transformers, - unordered-containers, - yaml, - }: - mkDerivation { - pname = "wobsurv"; - version = "0.1.0"; - sha256 = "1w2j7xr4f0a63bwz96js8wrdpfw73qzdg6d607lx2526yrq8xlh2"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - attoparsec - base-prelude - bytestring - hastache - http-types - monad-control - network - network-simple - old-locale - pipes - pipes-bytestring - pipes-network - pipes-parse - pipes-safe - pipes-text - stm - stm-containers - system-fileio - system-filepath - text - time - transformers - unordered-containers - ]; - executableHaskellDepends = [ - aeson - base-prelude - bytestring - network - safe - system-fileio - system-filepath - text - unordered-containers - yaml - ]; - testHaskellDepends = [ - base-prelude - bytestring - HTF - http-client - http-types - HUnit - lifted-async - mwc-random - network - QuickCheck - quickcheck-instances - safe - system-fileio - system-filepath - text - transformers - ]; - description = "A simple and highly performant HTTP file server"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - mainProgram = "wobsurv"; - } - ) { }; - - "woe" = callPackage ( - { mkDerivation, base }: - mkDerivation { - pname = "woe"; - version = "0.1.0.3"; - sha256 = "0f0pa2vlp56j35llhzq1qqkwkfpm7r96av8jw22jngd0kcpc185b"; - libraryHaskellDepends = [ base ]; - description = "Convenient typeclass for defining arbitrary-index enums"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "woffex" = callPackage ( - { - mkDerivation, - base, - binary, - bytestring, - filepath, - zlib, - }: - mkDerivation { - pname = "woffex"; - version = "0.1"; - sha256 = "0b83s5q4i3f4l45dklp1xgrlcpzrsdbd16fvlpazlcglzxk81xmv"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - binary - bytestring - filepath - zlib - ]; - description = "Web Open Font Format (WOFF) unpacker"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "woffex"; - broken = true; - } - ) { }; - - "wol" = callPackage ( - { - mkDerivation, - base, - bytestring, - network, - split, - }: - mkDerivation { - pname = "wol"; - version = "0.2"; - sha256 = "0f0gsg29vb74rv63vdwsiw7yx77z9fx8yr9sbqx5l81s756nnv2w"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - bytestring - network - split - ]; - executableHaskellDepends = [ base ]; - description = "Send a Wake on LAN Magic Packet"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "wol"; - broken = true; - } - ) { }; - "wolf" = callPackage ( { mkDerivation, @@ -724209,6 +421309,7 @@ self: { description = "Amazon Simple Workflow Service Wrapper"; license = lib.licenses.mit; hydraPlatforms = lib.platforms.none; + broken = true; } ) { }; @@ -724237,43 +421338,6 @@ self: { } ) { }; - "word" = callPackage ( - { - mkDerivation, - base, - Fin, - natural-induction, - peano, - smallcheck, - tasty, - tasty-smallcheck, - transformers, - }: - mkDerivation { - pname = "word"; - version = "0.1.0.1"; - sha256 = "1k7hz3w8isbdmj0f2klyj4drrk31lbs3fzdnin7pas7l0ai286qf"; - revision = "1"; - editedCabalFile = "0qx6n35m7f2hwm41lrps2haqf80insns0zlk9nhpls08ldn5vdw1"; - libraryHaskellDepends = [ - base - Fin - natural-induction - peano - transformers - ]; - testHaskellDepends = [ - base - smallcheck - tasty - tasty-smallcheck - ]; - description = "Words of arbitrary size"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "word-array" = callPackage ( { mkDerivation, @@ -724550,71 +421614,6 @@ self: { } ) { }; - "word2vec-model" = callPackage ( - { - mkDerivation, - attoparsec, - base, - binary, - binary-ieee754, - bytestring, - conduit, - conduit-combinators, - conduit-extra, - hspec, - HUnit, - text, - unordered-containers, - vector, - }: - mkDerivation { - pname = "word2vec-model"; - version = "0.1.0.0"; - sha256 = "1dz6q7ym5z5l0pkzmvawpdpjh8z6pf5ph26m0b7k9q95q42qypmj"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - attoparsec - base - binary - binary-ieee754 - bytestring - text - unordered-containers - vector - ]; - executableHaskellDepends = [ - attoparsec - base - binary - binary-ieee754 - bytestring - conduit - conduit-combinators - conduit-extra - text - unordered-containers - vector - ]; - testHaskellDepends = [ - attoparsec - base - binary - binary-ieee754 - bytestring - hspec - HUnit - text - unordered-containers - vector - ]; - description = "Reading word2vec binary models"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "word8" = callPackage ( { mkDerivation, @@ -725086,39 +422085,6 @@ self: { } ) { }; - "wordsearch" = callPackage ( - { - mkDerivation, - array, - base, - containers, - fclabels, - }: - mkDerivation { - pname = "wordsearch"; - version = "1.0.1"; - sha256 = "0jq1aiw35xiklc9asa1pgw2rn6i8q17fq780chqpqz0ryq0iv4x2"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - array - base - containers - fclabels - ]; - executableHaskellDepends = [ - base - containers - fclabels - ]; - description = "A word search solver library and executable"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "wordsearch"; - broken = true; - } - ) { }; - "wordsetdiff" = callPackage ( { mkDerivation, @@ -725153,276 +422119,6 @@ self: { } ) { }; - "work-time" = callPackage ( - { - mkDerivation, - base, - containers, - megaparsec, - text, - }: - mkDerivation { - pname = "work-time"; - version = "0.1.2.0"; - sha256 = "0vss3ik2q33nqiqy4d4gzyjfgr8grzgjx68lgi7wbwzgqmkk86bz"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - containers - megaparsec - text - ]; - executableHaskellDepends = [ - base - text - ]; - description = "A library for parsing a chat-based work hour reporting scheme"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "work-time"; - broken = true; - } - ) { }; - - "workdays" = callPackage ( - { - mkDerivation, - base, - containers, - doctest, - hspec, - time, - }: - mkDerivation { - pname = "workdays"; - version = "0.1.1"; - sha256 = "1rw9hba50z3b5lcbv34h061nqpzs9wg3359jwwfgjmya2xxzc747"; - libraryHaskellDepends = [ - base - containers - time - ]; - testHaskellDepends = [ - base - containers - doctest - hspec - ]; - description = "Workday calculations"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "workflow-extra" = callPackage ( - { - mkDerivation, - base, - bytestring, - criterion, - deepseq, - doctest, - Earley, - exceptions, - free, - hspec, - http-types, - QuickCheck, - transformers, - workflow-types, - }: - mkDerivation { - pname = "workflow-extra"; - version = "0.0.1"; - sha256 = "0vxia6xy9zjwphj50n1lb61l89sdskz9hsmk4nhy83if75rhbb6m"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - bytestring - Earley - exceptions - free - http-types - transformers - workflow-types - ]; - executableHaskellDepends = [ base ]; - testHaskellDepends = [ - base - doctest - hspec - QuickCheck - ]; - benchmarkHaskellDepends = [ - base - criterion - deepseq - ]; - description = "Utilities (e.g. Googling the clipboard contents) for the `workflow` pacakge"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "example-workflow-extra"; - } - ) { }; - - "workflow-osx" = callPackage ( - { - mkDerivation, - base, - bv, - bytestring, - exceptions, - filepath, - free, - http-types, - mtl, - transformers, - }: - mkDerivation { - pname = "workflow-osx"; - version = "0.0.1"; - sha256 = "1lmx5dcvrm8lrcjry7a8g9hhj40qdxgz6lpl04rqk68dvzlvgf8v"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - bv - bytestring - exceptions - filepath - free - http-types - mtl - transformers - ]; - executableHaskellDepends = [ base ]; - description = "a \"Desktop Workflow\" monad with Objective-C bindings"; - license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - mainProgram = "example"; - broken = true; - } - ) { }; - - "workflow-pure" = callPackage ( - { - mkDerivation, - base, - criterion, - deepseq, - doctest, - exceptions, - free, - hspec, - mtl, - QuickCheck, - semigroups, - transformers, - workflow-types, - }: - mkDerivation { - pname = "workflow-pure"; - version = "0.0.1"; - sha256 = "1m7jh89k51iyz3kgj676dhgky9sbm2id5r1kv4bis96x3qiljrwz"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - deepseq - exceptions - free - mtl - semigroups - transformers - workflow-types - ]; - executableHaskellDepends = [ base ]; - testHaskellDepends = [ - base - doctest - hspec - QuickCheck - ]; - benchmarkHaskellDepends = [ - base - criterion - deepseq - ]; - description = "manipulate `workflow-types:Workflow`'s"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "example-workflow-pure"; - } - ) { }; - - "workflow-types" = callPackage ( - { - mkDerivation, - base, - containers, - exceptions, - free, - spiros, - split, - text, - transformers, - }: - mkDerivation { - pname = "workflow-types"; - version = "0.0.1"; - sha256 = "084cbqxyw1smf3idckpg07091xcbpbnhvacjyzg0drpn8gwmh3n2"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - containers - exceptions - free - spiros - split - text - transformers - ]; - executableHaskellDepends = [ base ]; - description = "Automate keyboard\\/mouse\\/clipboard\\/application interaction"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "example-workflow-types"; - } - ) { }; - - "workflow-windows" = callPackage ( - { - mkDerivation, - base, - doctest, - hspec, - QuickCheck, - }: - mkDerivation { - pname = "workflow-windows"; - version = "0.0.0"; - sha256 = "14pzzm7c17sg76lmxjaw0d5avgpafgj4q66diqmh502mx8k2z4jc"; - isLibrary = true; - isExecutable = true; - executableHaskellDepends = [ base ]; - testHaskellDepends = [ - base - doctest - hspec - QuickCheck - ]; - description = "Automate keyboard/mouse/clipboard/application interaction"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "workflow-windows-example"; - broken = true; - } - ) { }; - "world-peace" = callPackage ( { mkDerivation, @@ -725498,38 +422194,6 @@ self: { } ) { }; - "wp-archivebot" = callPackage ( - { - mkDerivation, - base, - feed, - HTTP, - network, - parallel, - tagsoup, - }: - mkDerivation { - pname = "wp-archivebot"; - version = "0.1"; - sha256 = "04aq760z5jn81z03yi9l0d0w034qjiqiwb702lkvk2002b61mk5z"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - feed - HTTP - network - parallel - tagsoup - ]; - description = "Subscribe to a wiki's RSS feed and archive external links"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "wp-archivebot"; - broken = true; - } - ) { }; - "wrap" = callPackage ( { mkDerivation, base }: mkDerivation { @@ -725546,320 +422210,97 @@ self: { { mkDerivation, base }: mkDerivation { pname = "wraparound"; - version = "0.0.2"; - sha256 = "161mz5bfmx13s9azh3dss64fw98vbaab8krysr9pbbp9dh79i1cf"; - libraryHaskellDepends = [ base ]; - description = "Convenient handling of points on a seamless 2-dimensional plane"; - license = lib.licenses.bsd3; - } - ) { }; - - "wrapped" = callPackage ( - { mkDerivation, base }: - mkDerivation { - pname = "wrapped"; - version = "0.1.0.1"; - sha256 = "00fvammhn4dlna5d1dc8lpwrdrigj9cnlyi8scwslibr6bjsjzfp"; - revision = "5"; - editedCabalFile = "15h2s7flixws54mv8kxbl17jvp0qfqjflg0fn6iwb8yf4qn96pfa"; - libraryHaskellDepends = [ base ]; - description = "Newtypes to carry DerivingVia instances"; - license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "wrapped-generic-default" = callPackage ( - { - mkDerivation, - base, - data-default-class, - wrapped, - }: - mkDerivation { - pname = "wrapped-generic-default"; - version = "0.1.0.1"; - sha256 = "10hbz8m98cw8lr2xj0wkc017pnypagb11ss1ihpp6lnc4w1hpj3f"; - revision = "4"; - editedCabalFile = "1zyrdx018xz6xqpw0x3nz98nx9zw4kpr5l8c1q3fdk9jw2afa5sq"; - libraryHaskellDepends = [ - base - data-default-class - wrapped - ]; - description = "A Generic instance of Default"; - license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "wraxml" = callPackage ( - { - mkDerivation, - base, - containers, - data-accessor, - explicit-exception, - HaXml, - hxt, - hxt-unicode, - polyparse, - tagchup, - tagsoup, - transformers, - utility-ht, - xml-basic, - }: - mkDerivation { - pname = "wraxml"; - version = "0.5"; - sha256 = "1zzslycz4hzg2l3pma0yfwdnqf08cw14b1ac5lzjm4z548bhzg0h"; - revision = "2"; - editedCabalFile = "183ih3x2jairigzasv6rz798czwndcbas26k4gb8vg5l4zw3fig3"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - containers - data-accessor - explicit-exception - HaXml - hxt - hxt-unicode - polyparse - tagchup - tagsoup - transformers - utility-ht - xml-basic - ]; - description = "Lazy wrapper to HaXML, HXT, TagSoup via custom XML tree structure"; - license = lib.licenses.gpl3Only; - } - ) { }; - - "wrecker" = callPackage ( - { - mkDerivation, - aeson, - ansi-terminal, - ansigraph, - array, - authenticate-oauth, - base, - base64-bytestring, - blaze-builder, - bytestring, - case-insensitive, - clock, - clock-extras, - connection, - containers, - cookie, - cryptonite, - data-default, - data-default-class, - deepseq, - exceptions, - fast-logger, - filepath, - http-client, - http-client-tls, - http-types, - immortal, - lens, - markdown-unlit, - memory, - mime-types, - network, - network-uri, - next-ref, - optparse-applicative, - random, - statistics, - stm, - stm-chans, - streaming-commons, - tabular, - tdigest, - text, - threads, - threads-extras, - time, - tls, - transformers, - unix, - unordered-containers, - vector, - vty, - wreq, + version = "0.0.2"; + sha256 = "161mz5bfmx13s9azh3dss64fw98vbaab8krysr9pbbp9dh79i1cf"; + libraryHaskellDepends = [ base ]; + description = "Convenient handling of points on a seamless 2-dimensional plane"; + license = lib.licenses.bsd3; + } + ) { }; + + "wrapped" = callPackage ( + { mkDerivation, base }: + mkDerivation { + pname = "wrapped"; + version = "0.1.0.1"; + sha256 = "00fvammhn4dlna5d1dc8lpwrdrigj9cnlyi8scwslibr6bjsjzfp"; + revision = "5"; + editedCabalFile = "15h2s7flixws54mv8kxbl17jvp0qfqjflg0fn6iwb8yf4qn96pfa"; + libraryHaskellDepends = [ base ]; + description = "Newtypes to carry DerivingVia instances"; + license = lib.licenses.asl20; + hydraPlatforms = lib.platforms.none; + broken = true; + } + ) { }; + + "wrapped-generic-default" = callPackage ( + { + mkDerivation, + base, + data-default-class, + wrapped, }: mkDerivation { - pname = "wrecker"; - version = "1.3.2.0"; - sha256 = "02x20w2xb1w58rb9n9yw2kz08q77prs7bfnmgxc6nmcrrafgg6bv"; - isLibrary = true; - isExecutable = true; + pname = "wrapped-generic-default"; + version = "0.1.0.1"; + sha256 = "10hbz8m98cw8lr2xj0wkc017pnypagb11ss1ihpp6lnc4w1hpj3f"; + revision = "4"; + editedCabalFile = "1zyrdx018xz6xqpw0x3nz98nx9zw4kpr5l8c1q3fdk9jw2afa5sq"; libraryHaskellDepends = [ - aeson - ansi-terminal - ansigraph - array - authenticate-oauth base - base64-bytestring - blaze-builder - bytestring - case-insensitive - clock - clock-extras - connection - containers - cookie - cryptonite - data-default data-default-class - deepseq - exceptions - fast-logger - filepath - http-client - http-client-tls - http-types - immortal - memory - mime-types - network - network-uri - next-ref - optparse-applicative - random - statistics - stm - stm-chans - streaming-commons - tabular - tdigest - text - threads - threads-extras - time - tls - transformers - unix - unordered-containers - vector - vty - wreq - ]; - executableHaskellDepends = [ - base - http-client - http-client-tls - lens - markdown-unlit - optparse-applicative - transformers - wreq + wrapped ]; - description = "An HTTP Performance Benchmarker"; - license = lib.licenses.bsd3; + description = "A Generic instance of Default"; + license = lib.licenses.asl20; hydraPlatforms = lib.platforms.none; - mainProgram = "wreck"; + broken = true; } ) { }; - "wrecker-ui" = callPackage ( + "wraxml" = callPackage ( { mkDerivation, - aeson, - async, base, - binary, - bytestring, containers, - directory, - distributed-process, - distributed-process-async, - distributed-process-simplelocalnet, - distributed-static, - esqueleto, - HostAndPort, - http-types, - iso8601-time, - monad-control, - monad-logger, - mtl, - network-transport, - network-transport-tcp, - persistent, - persistent-postgresql, - persistent-sqlite, - persistent-template, - postgresql-simple, - postgresql-simple-url, - process, - resource-pool, - resourcet, - scotty, - stm, - temporary, - text, - time, + data-accessor, + explicit-exception, + HaXml, + hxt, + hxt-unicode, + polyparse, + tagchup, + tagsoup, transformers, - wai-cors, + utility-ht, + xml-basic, }: mkDerivation { - pname = "wrecker-ui"; - version = "3.3.1.0"; - sha256 = "08xlf26c45nir84ayss6zsjimabwa17yk55hzrdl1li9448wq89p"; - isLibrary = false; + pname = "wraxml"; + version = "0.5"; + sha256 = "1zzslycz4hzg2l3pma0yfwdnqf08cw14b1ac5lzjm4z548bhzg0h"; + revision = "2"; + editedCabalFile = "183ih3x2jairigzasv6rz798czwndcbas26k4gb8vg5l4zw3fig3"; + isLibrary = true; isExecutable = true; - enableSeparateDataOutput = true; - executableHaskellDepends = [ - aeson - async + libraryHaskellDepends = [ base - binary - bytestring containers - directory - distributed-process - distributed-process-async - distributed-process-simplelocalnet - distributed-static - esqueleto - HostAndPort - http-types - iso8601-time - monad-control - monad-logger - mtl - network-transport - network-transport-tcp - persistent - persistent-postgresql - persistent-sqlite - persistent-template - postgresql-simple - postgresql-simple-url - process - resource-pool - resourcet - scotty - stm - temporary - text - time + data-accessor + explicit-exception + HaXml + hxt + hxt-unicode + polyparse + tagchup + tagsoup transformers - wai-cors + utility-ht + xml-basic ]; - description = "A web interface for Wrecker, the HTTP Performance Benchmarker"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "wrecker-ui"; + description = "Lazy wrapper to HaXML, HXT, TagSoup via custom XML tree structure"; + license = lib.licenses.gpl3Only; } ) { }; @@ -726045,252 +422486,6 @@ self: { } ) { }; - "wreq-patchable" = callPackage ( - { - mkDerivation, - aeson, - aeson-pretty, - attoparsec, - authenticate-oauth, - base, - base16-bytestring, - base64-bytestring, - bytestring, - Cabal, - cabal-doctest, - case-insensitive, - containers, - cryptonite, - directory, - doctest, - exceptions, - filepath, - ghc-prim, - hashable, - http-client, - http-client-tls, - http-types, - HUnit, - lens, - lens-aeson, - memory, - mime-types, - network-info, - psqueues, - QuickCheck, - snap-core, - snap-server, - template-haskell, - temporary, - test-framework, - test-framework-hunit, - test-framework-quickcheck2, - text, - time, - time-locale-compat, - transformers, - unix-compat, - unordered-containers, - uuid, - vector, - }: - mkDerivation { - pname = "wreq-patchable"; - version = "1.0.0.0"; - sha256 = "0dj1cq8jmvwk12r5b5hmlj5m9hbhkhjz8bm3zxahwqap5kbi7c1c"; - isLibrary = true; - isExecutable = true; - setupHaskellDepends = [ - base - Cabal - cabal-doctest - ]; - libraryHaskellDepends = [ - aeson - attoparsec - authenticate-oauth - base - base16-bytestring - bytestring - case-insensitive - containers - cryptonite - exceptions - ghc-prim - hashable - http-client - http-client-tls - http-types - lens - lens-aeson - memory - mime-types - psqueues - template-haskell - text - time - time-locale-compat - unordered-containers - ]; - testHaskellDepends = [ - aeson - aeson-pretty - base - base64-bytestring - bytestring - case-insensitive - containers - directory - doctest - filepath - hashable - http-client - http-types - HUnit - lens - lens-aeson - network-info - QuickCheck - snap-core - snap-server - temporary - test-framework - test-framework-hunit - test-framework-quickcheck2 - text - time - transformers - unix-compat - unordered-containers - uuid - vector - ]; - description = "An easy-to-use HTTP client library"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "wreq-sb" = callPackage ( - { - mkDerivation, - aeson, - aeson-pretty, - attoparsec, - authenticate-oauth, - base, - base16-bytestring, - base64-bytestring, - byteable, - bytestring, - case-insensitive, - containers, - cryptohash, - directory, - doctest, - exceptions, - filepath, - ghc-prim, - hashable, - http-client, - http-client-tls, - http-types, - HUnit, - lens, - lens-aeson, - mime-types, - network-info, - old-locale, - psqueues, - QuickCheck, - snap-core, - snap-server, - template-haskell, - temporary, - test-framework, - test-framework-hunit, - test-framework-quickcheck2, - text, - time, - transformers, - unix-compat, - unordered-containers, - uuid, - vector, - }: - mkDerivation { - pname = "wreq-sb"; - version = "0.4.0.0"; - sha256 = "0m0vjykj1wqv07xxy2r7xz68syx5r3chni4x399f5fwn6shw1jfz"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson - attoparsec - authenticate-oauth - base - base16-bytestring - byteable - bytestring - case-insensitive - containers - cryptohash - exceptions - ghc-prim - hashable - http-client - http-client-tls - http-types - lens - lens-aeson - mime-types - old-locale - psqueues - template-haskell - text - time - unordered-containers - ]; - testHaskellDepends = [ - aeson - aeson-pretty - base - base64-bytestring - bytestring - case-insensitive - containers - directory - doctest - filepath - hashable - http-client - http-types - HUnit - lens - lens-aeson - network-info - QuickCheck - snap-core - snap-server - temporary - test-framework - test-framework-hunit - test-framework-quickcheck2 - text - time - transformers - unix-compat - uuid - vector - ]; - description = "An easy-to-use HTTP client library"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "wreq-stringless" = callPackage ( { mkDerivation, @@ -726316,235 +422511,6 @@ self: { } ) { }; - "wright" = callPackage ( - { - mkDerivation, - assertions, - base, - bed-and-breakfast, - containers, - filepath, - lens, - }: - mkDerivation { - pname = "wright"; - version = "0.1.0.2"; - sha256 = "180012vyslprj06npavh44fmii1813w22sws9zwxzlb4r4jdm4zi"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base - bed-and-breakfast - containers - ]; - testHaskellDepends = [ - assertions - base - bed-and-breakfast - containers - filepath - lens - ]; - description = "Colour space transformations and metrics"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "write-buffer-core" = callPackage ( - { - mkDerivation, - base, - bytestring, - clock, - dlist, - exceptions, - lifted-async, - lifted-base, - monad-control, - mtl, - stm, - stm-chans, - }: - mkDerivation { - pname = "write-buffer-core"; - version = "0.1.0.0"; - sha256 = "066w2xpmf988r27i987ia47nska33hs60h3xwk69dm7vg42ylh3m"; - libraryHaskellDepends = [ - base - bytestring - clock - dlist - exceptions - lifted-async - lifted-base - monad-control - mtl - stm - stm-chans - ]; - description = "Buffer your writes, transparently"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "write-buffer-stm" = callPackage ( - { - mkDerivation, - base, - stm, - stm-chans, - write-buffer-core, - }: - mkDerivation { - pname = "write-buffer-stm"; - version = "0.1.0.0"; - sha256 = "0q03pnkw3343jmcs2f2mrx84g3wj3plcagnjdviphzsg7rrf3a4l"; - libraryHaskellDepends = [ - base - stm - stm-chans - write-buffer-core - ]; - description = "A write buffer for STM channels and queues"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "writer-cps-exceptions" = callPackage ( - { - mkDerivation, - base, - exceptions, - transformers, - writer-cps-transformers, - }: - mkDerivation { - pname = "writer-cps-exceptions"; - version = "0.1.0.1"; - sha256 = "0hzfqmndlhqhb3l84fa1g51ydkf3py5vip5c1l6rzqak7b2ms6ls"; - libraryHaskellDepends = [ - base - exceptions - transformers - writer-cps-transformers - ]; - description = "Control.Monad.Catch instances for the stricter CPS WriterT and RWST"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "writer-cps-full" = callPackage ( - { - mkDerivation, - base, - writer-cps-lens, - writer-cps-morph, - writer-cps-mtl, - writer-cps-transformers, - }: - mkDerivation { - pname = "writer-cps-full"; - version = "0.1.0.0"; - sha256 = "15ay19hmfzx994aqylk379584c5f9jpz4yfi1zbyc2s7958xylds"; - revision = "1"; - editedCabalFile = "01zizhxk6kk5z3sqv5r7dp2yxbv5q87h5wgb5kbss60ncf042661"; - libraryHaskellDepends = [ - base - writer-cps-lens - writer-cps-morph - writer-cps-mtl - writer-cps-transformers - ]; - description = "WriteT and RWST monad transformers (Reexport with all dependencies)"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "writer-cps-lens" = callPackage ( - { - mkDerivation, - base, - lens, - profunctors, - transformers, - writer-cps-mtl, - writer-cps-transformers, - }: - mkDerivation { - pname = "writer-cps-lens"; - version = "0.1.0.1"; - sha256 = "1vq6sfq7c58py9p3lgq2b4l9rl46n555vlmxfp6b7p469xpqnsrd"; - libraryHaskellDepends = [ - base - lens - profunctors - transformers - writer-cps-mtl - writer-cps-transformers - ]; - description = "Lens instances for the stricter CPS WriterT and RWST"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "writer-cps-monads-tf" = callPackage ( - { - mkDerivation, - base, - monads-tf, - transformers, - writer-cps-transformers, - }: - mkDerivation { - pname = "writer-cps-monads-tf"; - version = "0.1.0.1"; - sha256 = "10wm5dls6vlm9whj435p4fb6zggar0x3vxfpksp6i2c9jnlw0i6q"; - libraryHaskellDepends = [ - base - monads-tf - transformers - writer-cps-transformers - ]; - description = "MonadWriter orphan instances for writer-cps-transformers"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "writer-cps-morph" = callPackage ( - { - mkDerivation, - base, - mmorph, - writer-cps-transformers, - }: - mkDerivation { - pname = "writer-cps-morph"; - version = "0.1.0.2"; - sha256 = "1n6m7wpxvvnxgkjz8qfiqz9jn2d83qb9wj4gmp476fg8vjvhf7g9"; - revision = "1"; - editedCabalFile = "0dqpbpaidwa7ahk0n7pv397mv7ncr26p3vcrjh1xzl6vk26bdah5"; - libraryHaskellDepends = [ - base - mmorph - writer-cps-transformers - ]; - description = "MFunctor instance for CPS style WriterT and RWST"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "writer-cps-mtl" = callPackage ( { mkDerivation, @@ -726725,86 +422691,6 @@ self: { } ) { }; - "wsdl" = callPackage ( - { - mkDerivation, - base, - bytestring, - conduit, - exceptions, - file-embed, - hspec, - mtl, - network-uri, - resourcet, - text, - xml-conduit, - xml-types, - }: - mkDerivation { - pname = "wsdl"; - version = "0.1.0.1"; - sha256 = "01jw2dng8p03zbyllzk5dk4wmxd72nd31dilggq21x25kmgmck9f"; - libraryHaskellDepends = [ - base - bytestring - conduit - exceptions - mtl - network-uri - resourcet - text - xml-conduit - xml-types - ]; - testHaskellDepends = [ - base - bytestring - file-embed - hspec - network-uri - ]; - description = "WSDL parsing in Haskell"; - license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "wsedit" = callPackage ( - { - mkDerivation, - base, - bencode, - bytestring, - containers, - directory, - safe, - utf8-string, - }: - mkDerivation { - pname = "wsedit"; - version = "0.1.0.0"; - sha256 = "1035v9c22pngk2r3yisr2vvnfdjgynlgq8adj8z50xak998x22ri"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - bencode - bytestring - containers - directory - safe - utf8-string - ]; - description = "A small tool to list, add and remove webseeds from a torrent file"; - license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - mainProgram = "wsedit"; - broken = true; - } - ) { }; - "wshterm" = callPackage ( { mkDerivation, @@ -726890,49 +422776,6 @@ self: { } ) { }; - "wss-client" = callPackage ( - { - mkDerivation, - base, - bytestring, - envy, - hspec, - http-client, - http-client-tls, - network-uri, - skews, - text, - websockets, - }: - mkDerivation { - pname = "wss-client"; - version = "0.3.0.0"; - sha256 = "1licynhnyhfdq4gxpsya3gaypjs9inqzr2xqmjs9f99ymbvin8d8"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - bytestring - http-client - http-client-tls - network-uri - websockets - ]; - testHaskellDepends = [ - base - bytestring - envy - hspec - skews - text - ]; - description = "A-little-higher-level WebSocket client"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "wstunnel" = callPackage ( { mkDerivation, @@ -727011,94 +422854,6 @@ self: { } ) { }; - "wtk" = callPackage ( - { - mkDerivation, - base, - old-locale, - time, - transformers, - }: - mkDerivation { - pname = "wtk"; - version = "0.2.1"; - sha256 = "080y0ks5q6bv7dvla08x4cvcmzd13b5v1c5p5336k0vkg2c3fq79"; - libraryHaskellDepends = [ - base - old-locale - time - transformers - ]; - description = "Wojcik Tool Kit"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "wtk-gtk" = callPackage ( - { - mkDerivation, - base, - containers, - gtk, - lenses, - mtl, - old-locale, - parsec, - time, - wtk, - }: - mkDerivation { - pname = "wtk-gtk"; - version = "0.2"; - sha256 = "0n9fvp83z71jvv67zjpz34r427s898shns00v84kfjjklhd61q5y"; - libraryHaskellDepends = [ - base - containers - gtk - lenses - mtl - old-locale - parsec - time - wtk - ]; - description = "GTK tools within Wojcik Tool Kit"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "wu-wei" = callPackage ( - { - mkDerivation, - base, - directory, - symbolic-link, - unix, - yaml, - }: - mkDerivation { - pname = "wu-wei"; - version = "0.1.0.2"; - sha256 = "001bs5s92wpj1s7pjg7knc9w4czjq2zwm0wj6gjjxgymvvwjax7w"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - directory - symbolic-link - unix - yaml - ]; - description = "Unimportant Unix adminstration tool"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "pao"; - } - ) { }; - "wuerfelschlange" = callPackage ( { mkDerivation, @@ -727131,141 +422886,6 @@ self: { } ) { }; - "wumpus-basic" = callPackage ( - { - mkDerivation, - base, - containers, - directory, - filepath, - vector-space, - wumpus-core, - }: - mkDerivation { - pname = "wumpus-basic"; - version = "0.24.0"; - sha256 = "1mahlvja39jc6zvm32n23p8ya2pfwwawbyawx8srds0bsfyqqmng"; - libraryHaskellDepends = [ - base - containers - directory - filepath - vector-space - wumpus-core - ]; - description = "Basic objects and system code built on Wumpus-Core"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "wumpus-core" = callPackage ( - { - mkDerivation, - base, - containers, - time, - vector-space, - }: - mkDerivation { - pname = "wumpus-core"; - version = "0.52.1"; - sha256 = "10q991xb9v2r3z7q53rwrqcqd4m6qazvdibrxsn2620l2zbjxnd8"; - revision = "1"; - editedCabalFile = "1jszf2hdipr9iry6pcdhhk42aglcq6m3zvg9rgmnickfdzd4k71h"; - libraryHaskellDepends = [ - base - containers - time - vector-space - ]; - description = "Pure Haskell PostScript and SVG generation"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "wumpus-drawing" = callPackage ( - { - mkDerivation, - base, - containers, - vector-space, - wumpus-basic, - wumpus-core, - }: - mkDerivation { - pname = "wumpus-drawing"; - version = "0.9.0"; - sha256 = "1y9j2d3k862zi8681q3b2pl4nx4vyazdfwx5ji4mfgy73z62lbxw"; - libraryHaskellDepends = [ - base - containers - vector-space - wumpus-basic - wumpus-core - ]; - description = "High-level drawing objects built on Wumpus-Basic"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "wumpus-microprint" = callPackage ( - { - mkDerivation, - base, - vector-space, - wumpus-basic, - wumpus-core, - wumpus-drawing, - }: - mkDerivation { - pname = "wumpus-microprint"; - version = "0.14.0"; - sha256 = "1rrw8hzns7qa9jyzhbal0x0xbi5wa99afixs0cxqk0kgm6sar9cz"; - libraryHaskellDepends = [ - base - vector-space - wumpus-basic - wumpus-core - wumpus-drawing - ]; - description = "Microprints - \"greek-text\" pictures"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "wumpus-tree" = callPackage ( - { - mkDerivation, - base, - containers, - vector-space, - wumpus-basic, - wumpus-core, - wumpus-drawing, - }: - mkDerivation { - pname = "wumpus-tree"; - version = "0.20.0"; - sha256 = "1xndkri4ayxb12xhik77r59qlg05nhibc8b257csrw9br7xkk8ja"; - libraryHaskellDepends = [ - base - containers - vector-space - wumpus-basic - wumpus-core - wumpus-drawing - ]; - description = "Drawing trees"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "wuss" = callPackage ( { mkDerivation, @@ -727295,450 +422915,6 @@ self: { } ) { }; - "wx" = callPackage ( - { - mkDerivation, - base, - stm, - time, - wxcore, - }: - mkDerivation { - pname = "wx"; - version = "0.92.3.0"; - sha256 = "04ccw9g8a08ipp4r1282jzgmx0lvxsbwgiasxq7ivij133mspjxx"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base - stm - time - wxcore - ]; - description = "wxHaskell"; - license = "unknown"; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "wxAsteroids" = callPackage ( - { - mkDerivation, - base, - directory, - random, - wx, - wxcore, - }: - mkDerivation { - pname = "wxAsteroids"; - version = "1.1.0.1"; - sha256 = "16rixql7ixcdmxcayzrqswc4fcj6wdq513cl8qr66hwqyq2k0525"; - isLibrary = false; - isExecutable = true; - enableSeparateDataOutput = true; - executableHaskellDepends = [ - base - directory - random - wx - wxcore - ]; - description = "Try to avoid the asteroids with your space ship"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "wxAsteroids"; - } - ) { }; - - "wxFruit" = callPackage ( - { - mkDerivation, - base, - old-time, - wx, - wxcore, - Yampa, - }: - mkDerivation { - pname = "wxFruit"; - version = "0.1.2.1"; - sha256 = "09n0b8znrwa65z1cjfizxkxj2rlsp56akagih5cycxpwivj1d7p9"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - old-time - wx - wxcore - Yampa - ]; - executableHaskellDepends = [ - base - wx - wxcore - Yampa - ]; - description = "An implementation of Fruit using wxHaskell"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "paddle"; - } - ) { }; - - "wxSimpleCanvas" = callPackage ( - { - mkDerivation, - base, - cubicbezier, - wx, - wxcore, - }: - mkDerivation { - pname = "wxSimpleCanvas"; - version = "0.0.0.0"; - sha256 = "0q90djdvma20ngnp45q0kkyv2p1jsmsc7p9rzv76sywzqilha852"; - libraryHaskellDepends = [ - base - cubicbezier - wx - wxcore - ]; - description = "Simple zoomable canvas for wxHaskell"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "wxc" = - callPackage - ( - { - mkDerivation, - base, - bytestring, - Cabal, - directory, - filepath, - libGL, - libX11, - process, - split, - wxdirect, - wxGTK, - }: - mkDerivation { - pname = "wxc"; - version = "0.92.3.0"; - sha256 = "0i7z4avy57qzrykz3kddfn313zddp3lnyl9a0krx5f2k3b2pz8i8"; - revision = "1"; - editedCabalFile = "1cgq577ddskmp1xdlnlz0581r8hsqblgxc7wy0avb7sgf181cbd4"; - setupHaskellDepends = [ - base - bytestring - Cabal - directory - filepath - process - split - ]; - libraryHaskellDepends = [ - base - split - wxdirect - ]; - librarySystemDepends = [ - libGL - libX11 - ]; - libraryPkgconfigDepends = [ wxGTK ]; - doHaddock = false; - postInstall = "cp -v dist/build/libwxc.so.0.92.3.0 $out/lib/libwxc.so"; - postPatch = "sed -i -e '/ldconfig inst_lib_dir/d' Setup.hs"; - description = "wxHaskell C++ wrapper"; - license = "unknown"; - hydraPlatforms = lib.platforms.none; - } - ) - { - inherit (pkgs) libGL; - inherit (pkgs.xorg) libX11; - inherit (pkgs) wxGTK; - }; - - "wxcore" = callPackage ( - { - mkDerivation, - array, - base, - bytestring, - Cabal, - containers, - directory, - filepath, - parsec, - process, - stm, - time, - wxc, - wxdirect, - wxGTK, - }: - mkDerivation { - pname = "wxcore"; - version = "0.92.3.0"; - sha256 = "1r4mf5aik7sabb0kwr31sx85j9bk22y0g7606wlaxxs4zkly2lz0"; - setupHaskellDepends = [ - base - Cabal - directory - filepath - process - ]; - libraryHaskellDepends = [ - array - base - bytestring - containers - directory - filepath - parsec - stm - time - wxc - wxdirect - ]; - libraryPkgconfigDepends = [ wxGTK ]; - description = "wxHaskell core"; - license = "unknown"; - hydraPlatforms = lib.platforms.none; - } - ) { inherit (pkgs) wxGTK; }; - - "wxdirect" = callPackage ( - { - mkDerivation, - base, - containers, - directory, - filepath, - parsec, - process, - strict, - time, - }: - mkDerivation { - pname = "wxdirect"; - version = "0.92.3.0"; - sha256 = "0yin3vc15payrq1nz2g4d34c5dc7lk8b8rfgp0gzpp278dh0zih3"; - isLibrary = true; - isExecutable = true; - executableHaskellDepends = [ - base - containers - directory - filepath - parsec - process - strict - time - ]; - description = "helper tool for building wxHaskell"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "wxdirect"; - broken = true; - } - ) { }; - - "wxhnotepad" = callPackage ( - { - mkDerivation, - base, - wx, - wxcore, - }: - mkDerivation { - pname = "wxhnotepad"; - version = "1.2.0"; - sha256 = "10897yb7mkc9hy2037r9yb4192n65lz997fd5apksra1rifrazyp"; - isLibrary = false; - isExecutable = true; - enableSeparateDataOutput = true; - executableHaskellDepends = [ - base - wx - wxcore - ]; - description = "An example of how to implement a basic notepad with wxHaskell"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "wxhnotepad"; - } - ) { }; - - "wxturtle" = callPackage ( - { - mkDerivation, - base, - convertible, - Imlib, - wx, - yjsvg, - yjtools, - }: - mkDerivation { - pname = "wxturtle"; - version = "0.0.1"; - sha256 = "0sdbi9dfja2ia0n3kggvqc3n3c5rgw096d767yvyzc52k5caakn7"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - convertible - Imlib - wx - yjsvg - yjtools - ]; - description = "turtle like LOGO with wxHaskell"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "testTurtle"; - } - ) { }; - - "wybor" = callPackage ( - { - mkDerivation, - ansi-terminal, - base, - conduit, - containers, - hspec, - lens, - process, - resourcet, - semigroups, - terminal-size, - text, - transformers, - unix, - }: - mkDerivation { - pname = "wybor"; - version = "0.1.0"; - sha256 = "0cyfhjpb775891qbfc3y15y16mx2hraavgvsrvqkb701rh5vngf6"; - libraryHaskellDepends = [ - ansi-terminal - base - conduit - containers - lens - resourcet - semigroups - terminal-size - text - transformers - unix - ]; - testHaskellDepends = [ - ansi-terminal - base - conduit - containers - hspec - lens - process - resourcet - semigroups - terminal-size - text - transformers - unix - ]; - description = "Console line fuzzy search"; - license = lib.licenses.bsd2; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "wyvern" = callPackage ( - { - mkDerivation, - base, - bytestring, - ConfigFile, - containers, - dgs, - directory, - filepath, - mtl, - parsec, - process, - sgf, - split, - }: - mkDerivation { - pname = "wyvern"; - version = "0.1"; - sha256 = "147v55c1ravnb769sjw2c8i4qw0gxh3scvx5cvb1fa6nng4x0hnq"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - bytestring - ConfigFile - containers - dgs - directory - filepath - mtl - parsec - process - sgf - split - ]; - description = "An autoresponder for Dragon Go Server"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "wyvern"; - } - ) { }; - - "x-dsp" = callPackage ( - { - mkDerivation, - array, - base, - bytestring, - containers, - monads-tf, - text, - transformers, - type-level, - }: - mkDerivation { - pname = "x-dsp"; - version = "0.2.3.1"; - sha256 = "12l3zy9lmg7sf4q8b3yz2cb9pj9n0sgjglnqhcfkzzdg6pb0g4hj"; - libraryHaskellDepends = [ - array - base - bytestring - containers - monads-tf - text - transformers - type-level - ]; - description = "A embedded DSL for manipulating DSP languages in Haskell"; - license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "x-sum-type-boilerplate" = callPackage ( { mkDerivation, @@ -728320,138 +423496,6 @@ self: { } ) { }; - "xchat-plugin" = callPackage ( - { - mkDerivation, - base, - directory, - filepath, - process, - unix, - }: - mkDerivation { - pname = "xchat-plugin"; - version = "0.0.3"; - sha256 = "0rjpj6i4fn504m7s3hwqbydn0m0ryih0hw4xnc409338sval6xj6"; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base - directory - filepath - process - unix - ]; - executableHaskellDepends = [ - base - directory - filepath - process - unix - ]; - description = "XChat"; - license = lib.licenses.gpl2Only; - hydraPlatforms = lib.platforms.none; - mainProgram = "hsxchat"; - broken = true; - } - ) { }; - - "xcp" = callPackage ( - { - mkDerivation, - base, - bytestring, - containers, - mtl, - network, - transformers, - }: - mkDerivation { - pname = "xcp"; - version = "0.1.0.1"; - sha256 = "1hx9avr6zinrqar0c1zh0l49gy0d61gch8ff12am7zjxk7lbmmzs"; - libraryHaskellDepends = [ - base - bytestring - containers - mtl - network - transformers - ]; - description = "Partial implementation of the XCP protocol with ethernet as transport layer"; - license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "xdcc" = callPackage ( - { - mkDerivation, - ascii-progress, - async, - base, - bytestring, - case-insensitive, - concurrent-output, - errors, - iproute, - irc-client, - irc-dcc, - monad-control, - network, - optparse-applicative, - path, - random, - safe-exceptions, - signal, - stm, - text, - transformers, - transformers-base, - unix-compat, - }: - mkDerivation { - pname = "xdcc"; - version = "1.1.4"; - sha256 = "0r344vgkiwc7lkb7x78swnz0rimbgdcb0ki29dilqvdv0k4z9i59"; - revision = "3"; - editedCabalFile = "11swld2awjp5l1386c1c1lpkrw53g9l77agvz1y43kh00c2a6yaa"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - ascii-progress - async - base - bytestring - case-insensitive - concurrent-output - errors - iproute - irc-client - irc-dcc - monad-control - network - optparse-applicative - path - random - safe-exceptions - signal - stm - text - transformers - transformers-base - unix-compat - ]; - description = "A wget-like utility for retrieving files from XDCC bots on IRC"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - mainProgram = "xdcc"; - } - ) { }; - "xdg-basedir" = callPackage ( { mkDerivation, @@ -728745,156 +423789,6 @@ self: { } ) { }; - "xenstore" = callPackage ( - { - mkDerivation, - base, - bytestring, - cereal, - mtl, - network, - }: - mkDerivation { - pname = "xenstore"; - version = "0.1.1"; - sha256 = "0x788lpkkxg7ds1bgnw0kvkf6pkfbknn7jy0njhz85k7rv4kidf2"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - bytestring - cereal - mtl - network - ]; - description = "Xenstore client access"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "xfconf" = callPackage ( - { - mkDerivation, - base, - Cabal, - containers, - directory, - filepath, - glib, - gtk2hs-buildtools, - libxfconf, - }: - mkDerivation { - pname = "xfconf"; - version = "4.8.0.0"; - sha256 = "0q63zavh3fz03dmky42gafypd0gpn8fs0nb9qn2a2zzj961vzswz"; - revision = "1"; - editedCabalFile = "0g6k5726ghzwd6dbfa6ayw95nc49nm2n0my29w54r3kd6amv6jyf"; - isLibrary = true; - isExecutable = true; - setupHaskellDepends = [ - base - Cabal - containers - directory - filepath - ]; - libraryHaskellDepends = [ - base - glib - ]; - libraryPkgconfigDepends = [ libxfconf ]; - libraryToolDepends = [ gtk2hs-buildtools ]; - description = "FFI bindings to xfconf"; - license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { libxfconf = null; }; - - "xformat" = callPackage ( - { mkDerivation, base }: - mkDerivation { - pname = "xformat"; - version = "0.1.2.1"; - sha256 = "1q2wm0wffvppbv5rd16z367yfkx2sq7j0i5dkfwpawf859c9pz7x"; - libraryHaskellDepends = [ base ]; - testHaskellDepends = [ base ]; - description = "Extensible, type-safe formatting with scanf- and printf-like functions"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "xgboost-haskell" = callPackage ( - { - mkDerivation, - base, - foundation, - xgboost, - }: - mkDerivation { - pname = "xgboost-haskell"; - version = "0.1.0.0"; - sha256 = "11n4qhv3w172lyixy9syx8rf45yj4aywac5svf1r1w9grqkyf18b"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - foundation - ]; - executableHaskellDepends = [ - base - foundation - ]; - executableSystemDepends = [ xgboost ]; - description = "XGBoost library for Haskell"; - license = lib.licenses.mit; - badPlatforms = [ - "aarch64-linux" - "armv7l-linux" - ] - ++ lib.platforms.darwin; - hydraPlatforms = lib.platforms.none; - mainProgram = "xgb-agaricus"; - broken = true; - } - ) { inherit (pkgs) xgboost; }; - - "xhaskell-library" = callPackage ( - { - mkDerivation, - base, - bytestring, - containers, - ghc-prim, - mtl, - parsec, - regex-base, - }: - mkDerivation { - pname = "xhaskell-library"; - version = "0.0.6"; - sha256 = "13nnlaw56izwy0m7k4kh4g75sa5pvxn0pf9h3w8l9hnjcpv4l2ya"; - libraryHaskellDepends = [ - base - bytestring - containers - ghc-prim - mtl - parsec - regex-base - ]; - description = "Replaces/Enhances Text.Regex"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "xhb" = callPackage ( { mkDerivation, @@ -728932,68 +423826,6 @@ self: { } ) { }; - "xhb-atom-cache" = callPackage ( - { - mkDerivation, - base, - hashable, - mtl, - transformers, - unordered-containers, - xhb, - }: - mkDerivation { - pname = "xhb-atom-cache"; - version = "0.1.0.2"; - sha256 = "113yff75i5pc0kcz4w7npbp34bl92aibpvj2cgg30f66nml61xg9"; - libraryHaskellDepends = [ - base - hashable - mtl - transformers - unordered-containers - xhb - ]; - description = "Atom cache for XHB"; - license = lib.licenses.bsd2; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "xhb-ewmh" = callPackage ( - { - mkDerivation, - base, - binary, - bytestring, - dlist, - hashable, - mtl, - transformers, - xhb, - xhb-atom-cache, - }: - mkDerivation { - pname = "xhb-ewmh"; - version = "0.1.3.1"; - sha256 = "02qfpwa9558svk0481dxjchr9h0phacsyqzail94kmzkhnnly64l"; - libraryHaskellDepends = [ - base - binary - bytestring - dlist - hashable - mtl - transformers - xhb - xhb-atom-cache - ]; - description = "EWMH utilities for XHB"; - license = lib.licenses.bsd2; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "xhtml_3000_4_0_0" = callPackage ( { mkDerivation, @@ -729081,94 +423913,6 @@ self: { } ) { }; - "xine" = - callPackage - ( - { - mkDerivation, - base, - c2hs, - containers, - libxine, - xine, - }: - mkDerivation { - pname = "xine"; - version = "0.0.0.4"; - sha256 = "1mvi486vjf4brg6iks24wvb7gr5n7gdcqzdvv9xnncmxrscr6x36"; - libraryHaskellDepends = [ - base - containers - ]; - librarySystemDepends = [ xine ]; - libraryPkgconfigDepends = [ libxine ]; - libraryToolDepends = [ c2hs ]; - description = "Bindings to xine-lib"; - license = "LGPL"; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) - { - libxine = null; - xine = null; - }; - - "xing-api" = callPackage ( - { - mkDerivation, - aeson, - authenticate-oauth, - base, - bytestring, - containers, - HTF, - http-conduit, - http-types, - lifted-base, - monad-control, - resourcet, - text, - time, - transformers, - }: - mkDerivation { - pname = "xing-api"; - version = "0.1.3"; - sha256 = "1z135lcyyq7as166k3vhkqa75a555wbmfhpsdr4rsvpliq4ipqmk"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson - authenticate-oauth - base - bytestring - containers - http-conduit - http-types - lifted-base - monad-control - resourcet - text - time - transformers - ]; - testHaskellDepends = [ - aeson - base - bytestring - containers - HTF - text - time - ]; - description = "Wrapper for the XING API, v1"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "xinput-conduit" = callPackage ( { mkDerivation, @@ -729194,136 +423938,6 @@ self: { } ) { }; - "xkbcommon" = callPackage ( - { - mkDerivation, - base, - bytestring, - Cabal, - cpphs, - data-flags, - directory, - filepath, - libxkbcommon, - process, - random, - storable-record, - template-haskell, - text, - time, - transformers, - unix, - vector, - }: - mkDerivation { - pname = "xkbcommon"; - version = "0.0.3"; - sha256 = "1zispc65aas383qdjr2sxziyigbi7k9zxdnnlkj8d0q7sq71dd00"; - setupHaskellDepends = [ - base - Cabal - cpphs - directory - filepath - process - template-haskell - text - ]; - libraryHaskellDepends = [ - base - bytestring - cpphs - data-flags - filepath - process - storable-record - template-haskell - text - transformers - ]; - librarySystemDepends = [ libxkbcommon ]; - testHaskellDepends = [ - base - unix - ]; - benchmarkHaskellDepends = [ - base - random - time - vector - ]; - description = "Haskell bindings for libxkbcommon"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { inherit (pkgs) libxkbcommon; }; - - "xkcd" = callPackage ( - { - mkDerivation, - base, - bytestring, - directory, - filepath, - HTTP, - network, - tagsoup, - }: - mkDerivation { - pname = "xkcd"; - version = "0.1.1"; - sha256 = "15zwx7rkxm52pnxjhx3p979h48cls1ipb7hmryxll5rcxz9aga29"; - revision = "1"; - editedCabalFile = "0sy66hmwgk5mb9nxlqh7k1nzb2r6cw617sn31aaf54hwk0gkx32m"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - bytestring - directory - filepath - HTTP - network - tagsoup - ]; - description = "Downloads the most recent xkcd comic"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "xkcd"; - broken = true; - } - ) { }; - - "xleb" = callPackage ( - { - mkDerivation, - base, - containers, - mtl, - xml, - }: - mkDerivation { - pname = "xleb"; - version = "0.1.0"; - sha256 = "15nsfnvca9x5z0pcmv949ni2avi7gi159vmx5hw99jxzm0ql5shb"; - revision = "1"; - editedCabalFile = "0258818bvkhviqgxa6srm5rvhqw2kiik4i590h0431vjs5c12k72"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - containers - mtl - xml - ]; - description = "A simple monadic language for parsing XML structures"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "xls" = callPackage ( { mkDerivation, @@ -729369,68 +423983,6 @@ self: { } ) { }; - "xlsior" = callPackage ( - { - mkDerivation, - attoparsec, - base, - blaze-markup, - bytestring, - conduit, - conduit-extra, - data-default, - exceptions, - mtl, - resourcet, - scientific, - text, - time, - time-locale-compat, - vector, - xml-conduit, - xml-types, - zip-archive, - }: - mkDerivation { - pname = "xlsior"; - version = "0.1.0.1"; - sha256 = "0dkb3dkc2srvc1951hv6m69z3d7xprsaj7lsdkj9npykqpv6nkgk"; - libraryHaskellDepends = [ - attoparsec - base - blaze-markup - bytestring - conduit - conduit-extra - data-default - exceptions - mtl - resourcet - scientific - text - time - time-locale-compat - vector - xml-conduit - xml-types - zip-archive - ]; - testHaskellDepends = [ - base - blaze-markup - bytestring - text - time - time-locale-compat - zip-archive - ]; - description = "Streaming Excel file generation and parsing"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "xlsx" = callPackage ( { mkDerivation, @@ -729552,80 +424104,6 @@ self: { } ) { }; - "xlsx-tabular" = callPackage ( - { - mkDerivation, - aeson, - base, - bytestring, - containers, - data-default, - lens, - text, - xlsx, - }: - mkDerivation { - pname = "xlsx-tabular"; - version = "0.2.2.1"; - sha256 = "0bgxs1a0prnq6ljvv1g3rs39565w4609hv3ckq0gk0fz85yqkpa8"; - libraryHaskellDepends = [ - aeson - base - bytestring - containers - data-default - lens - text - xlsx - ]; - testHaskellDepends = [ base ]; - description = "Xlsx table cell value extraction utility"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "xlsx-templater" = callPackage ( - { - mkDerivation, - base, - bytestring, - conduit, - containers, - data-default, - parsec, - text, - time, - transformers, - xlsx, - }: - mkDerivation { - pname = "xlsx-templater"; - version = "0.0.1"; - sha256 = "00m5x9vhl0rf8azwgin6a75xpj74gybn757021z9dkn1qy35zjwr"; - isLibrary = true; - isExecutable = true; - executableHaskellDepends = [ - base - bytestring - conduit - containers - data-default - parsec - text - time - transformers - xlsx - ]; - description = "Simple and incomplete Excel file templater"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - mainProgram = "test"; - broken = true; - } - ) { }; - "xml" = callPackage ( { mkDerivation, @@ -729679,38 +424157,6 @@ self: { } ) { }; - "xml-catalog" = callPackage ( - { - mkDerivation, - base, - bytestring, - conduit, - containers, - text, - transformers, - uri-conduit, - xml-conduit, - }: - mkDerivation { - pname = "xml-catalog"; - version = "1.1.0.2"; - sha256 = "0jzi63v8v2ksrqrk13pcl10awx57i2vm0k8xgi01rr1ncmlrnyfc"; - libraryHaskellDepends = [ - base - bytestring - conduit - containers - text - transformers - uri-conduit - xml-conduit - ]; - description = "Parse XML catalog files (deprecated)"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "xml-conduit" = callPackage ( { mkDerivation, @@ -729779,52 +424225,6 @@ self: { } ) { }; - "xml-conduit-decode" = callPackage ( - { - mkDerivation, - base, - bifunctors, - data-default, - lens, - semigroups, - tasty, - tasty-hunit, - text, - time, - xml-conduit, - xml-types, - }: - mkDerivation { - pname = "xml-conduit-decode"; - version = "1.0.0.0"; - sha256 = "0yzbwpxn55mirb1k9mw2j623wm6m3adz8z26chhmmh2wx9h4v48s"; - libraryHaskellDepends = [ - base - bifunctors - lens - semigroups - text - time - xml-conduit - ]; - testHaskellDepends = [ - base - data-default - lens - tasty - tasty-hunit - text - time - xml-conduit - xml-types - ]; - description = "Historical cursors & decoding on top of xml-conduit"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "xml-conduit-microlens" = callPackage ( { mkDerivation, @@ -729854,57 +424254,6 @@ self: { } ) { }; - "xml-conduit-parse" = callPackage ( - { - mkDerivation, - base, - conduit, - conduit-parse, - containers, - data-default, - exceptions, - parsers, - resourcet, - tasty, - tasty-hunit, - text, - xml-conduit, - xml-types, - }: - mkDerivation { - pname = "xml-conduit-parse"; - version = "0.3.1.2"; - sha256 = "0233jcpv7lzan2hh6siw2rrjkjp4f5i1kkpjpdfija01f8by3an1"; - revision = "1"; - editedCabalFile = "0jnnr4z3c6rq2dz0ldiic5zwkrp36igf6gip11qrm9ss2pk9khbl"; - libraryHaskellDepends = [ - base - conduit - conduit-parse - containers - exceptions - parsers - text - xml-conduit - xml-types - ]; - testHaskellDepends = [ - base - conduit - conduit-parse - data-default - parsers - resourcet - tasty - tasty-hunit - ]; - description = "Streaming XML parser based on conduits"; - license = "unknown"; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "xml-conduit-selectors" = callPackage ( { mkDerivation, @@ -729957,141 +424306,58 @@ self: { text, xml-conduit, }: - mkDerivation { - pname = "xml-conduit-stylist"; - version = "3.0.0.1"; - sha256 = "1bm2cns5s92zgylv9qnql0daydmxp5rhb2caz43ml3c7hiq57g7p"; - libraryHaskellDepends = [ - base - containers - css-syntax - network-uri - stylist-traits - text - xml-conduit - ]; - description = "Bridge between xml-conduit/html-conduit and stylist"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "xml-conduit-writer" = callPackage ( - { - mkDerivation, - base, - containers, - data-default, - dlist, - mtl, - text, - xml-conduit, - xml-types, - }: - mkDerivation { - pname = "xml-conduit-writer"; - version = "0.1.1.5"; - sha256 = "1ma25a6kknrhm8n3ldj5bq203dmg52nshhmvi7zf3lz56psjf1f1"; - libraryHaskellDepends = [ - base - containers - data-default - dlist - mtl - text - xml-conduit - xml-types - ]; - testHaskellDepends = [ - base - text - ]; - description = "Warm and fuzzy creation of XML documents"; - license = lib.licenses.mit; - } - ) { }; - - "xml-enumerator" = callPackage ( - { - mkDerivation, - attoparsec, - attoparsec-enumerator, - base, - blaze-builder, - blaze-builder-enumerator, - bytestring, - containers, - data-default, - enumerator, - failure, - hspec, - HUnit, - text, - transformers, - xml-types, - }: - mkDerivation { - pname = "xml-enumerator"; - version = "0.4.4.1"; - sha256 = "0vwn6s7x626970b8lgyhmngkqv5n5kvv0qikrvi9sjzq5rjyx1zj"; - libraryHaskellDepends = [ - attoparsec - attoparsec-enumerator - base - blaze-builder - blaze-builder-enumerator - bytestring - containers - data-default - enumerator - failure - text - transformers - xml-types - ]; - testHaskellDepends = [ + mkDerivation { + pname = "xml-conduit-stylist"; + version = "3.0.0.1"; + sha256 = "1bm2cns5s92zgylv9qnql0daydmxp5rhb2caz43ml3c7hiq57g7p"; + libraryHaskellDepends = [ base - bytestring containers - enumerator - hspec - HUnit + css-syntax + network-uri + stylist-traits text - transformers - xml-types + xml-conduit ]; - description = "Pure-Haskell utilities for dealing with XML with the enumerator package. (deprecated)"; - license = lib.licenses.bsd3; + description = "Bridge between xml-conduit/html-conduit and stylist"; + license = lib.licenses.mit; hydraPlatforms = lib.platforms.none; + broken = true; } ) { }; - "xml-enumerator-combinators" = callPackage ( + "xml-conduit-writer" = callPackage ( { mkDerivation, base, containers, - enumerator, - xml-enumerator, + data-default, + dlist, + mtl, + text, + xml-conduit, xml-types, }: mkDerivation { - pname = "xml-enumerator-combinators"; - version = "0.1"; - sha256 = "1n2lywzbbjkpccpgwlj8ycf4p5wlhjs60hgqzwb33j7qiraf5jb3"; - isLibrary = true; - isExecutable = true; + pname = "xml-conduit-writer"; + version = "0.1.1.5"; + sha256 = "1ma25a6kknrhm8n3ldj5bq203dmg52nshhmvi7zf3lz56psjf1f1"; libraryHaskellDepends = [ base containers - enumerator - xml-enumerator + data-default + dlist + mtl + text + xml-conduit xml-types ]; - description = "Parser combinators for xml-enumerator and compatible XML parsers"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; + testHaskellDepends = [ + base + text + ]; + description = "Warm and fuzzy creation of XML documents"; + license = lib.licenses.mit; } ) { }; @@ -730181,48 +424447,6 @@ self: { } ) { }; - "xml-html-conduit-lens" = callPackage ( - { - mkDerivation, - base, - bytestring, - containers, - doctest, - hspec, - hspec-expectations-lens, - html-conduit, - lens, - text, - xml-conduit, - }: - mkDerivation { - pname = "xml-html-conduit-lens"; - version = "0.3.2.4"; - sha256 = "1axg0b5y43fnmj64jffqkivrlckx9arw31ijjqdlj0yb7qwfahhk"; - libraryHaskellDepends = [ - base - bytestring - containers - html-conduit - lens - text - xml-conduit - ]; - testHaskellDepends = [ - base - doctest - hspec - hspec-expectations-lens - lens - xml-conduit - ]; - description = "Optics for xml-conduit and html-conduit"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "xml-html-qq" = callPackage ( { mkDerivation, @@ -730321,62 +424545,6 @@ self: { } ) { }; - "xml-isogen" = callPackage ( - { - mkDerivation, - base, - data-default, - deepseq, - dom-parser, - generic-arbitrary, - hspec, - lens, - mtl, - QuickCheck, - quickcheck-instances, - semigroups, - template-haskell, - text, - xml-conduit, - xml-conduit-writer, - }: - mkDerivation { - pname = "xml-isogen"; - version = "0.3.0"; - sha256 = "05qa83jzmfqa5yhzgp3n3bxi0dvyy9xdfgq1ymi0wa6xnmxjv0cz"; - libraryHaskellDepends = [ - base - deepseq - dom-parser - lens - mtl - QuickCheck - semigroups - template-haskell - text - xml-conduit - xml-conduit-writer - ]; - testHaskellDepends = [ - base - data-default - deepseq - dom-parser - generic-arbitrary - hspec - QuickCheck - quickcheck-instances - semigroups - xml-conduit - xml-conduit-writer - ]; - description = "Generate XML-isomorphic types"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "xml-lens" = callPackage ( { mkDerivation, @@ -730406,32 +424574,6 @@ self: { } ) { }; - "xml-monad" = callPackage ( - { - mkDerivation, - base, - mtl, - transformers, - transformers-compose, - xml, - }: - mkDerivation { - pname = "xml-monad"; - version = "0.5"; - sha256 = "17axppy0xzshmvw8y23hxcj2ixm2fqw3hqrjk90qmpkjcv4nk44r"; - libraryHaskellDepends = [ - base - mtl - transformers - transformers-compose - xml - ]; - description = "Monadic extensions to the xml package"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "xml-optics" = callPackage ( { mkDerivation, @@ -730457,29 +424599,6 @@ self: { } ) { }; - "xml-parsec" = callPackage ( - { - mkDerivation, - base, - HaXml, - parsec, - }: - mkDerivation { - pname = "xml-parsec"; - version = "1.0.3"; - sha256 = "1zcmiqyw6bs50kl2417ygvnpsk9wy025ls5ck8cd863x47bqpdn2"; - libraryHaskellDepends = [ - base - HaXml - parsec - ]; - description = "Parsing XML with Parsec"; - license = "GPL"; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "xml-parser" = callPackage ( { mkDerivation, @@ -730568,57 +424687,6 @@ self: { } ) { }; - "xml-pipe" = callPackage ( - { - mkDerivation, - base, - bytestring, - papillon, - simple-pipe, - }: - mkDerivation { - pname = "xml-pipe"; - version = "0.0.0.11"; - sha256 = "0j5fjnf6r7cagcl1ni5idwj1k5q6vjp6c59ajwsx39iqx1kdmly4"; - libraryHaskellDepends = [ - base - bytestring - papillon - simple-pipe - ]; - description = "XML parser which uses simple-pipe"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "xml-prettify" = callPackage ( - { - mkDerivation, - base, - cmdargs, - unix, - }: - mkDerivation { - pname = "xml-prettify"; - version = "0.1.0.1"; - sha256 = "1abjmxihh0ldlh8k4mp922s0h39303farmdbm08qn909pbrzm0f0"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base ]; - executableHaskellDepends = [ - base - cmdargs - unix - ]; - description = "Pretty print XML"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "xml-prettify"; - broken = true; - } - ) { }; - "xml-prettify-text" = callPackage ( { mkDerivation, @@ -730676,61 +424744,6 @@ self: { } ) { }; - "xml-push" = callPackage ( - { - mkDerivation, - base, - bytestring, - crypto-random, - handle-like, - monad-control, - monads-tf, - peyotls, - random, - sasl, - simple-pipe, - stm, - tighttp, - transformers-base, - uuid, - x509, - x509-store, - x509-validation, - xml-pipe, - xmpipe, - }: - mkDerivation { - pname = "xml-push"; - version = "0.0.0.18"; - sha256 = "1i8qmz7mr8rfspkn4wwyq7f7fi1grpggmqmfsmx6l7bjsjv15n3y"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base - bytestring - crypto-random - handle-like - monad-control - monads-tf - peyotls - random - sasl - simple-pipe - stm - tighttp - transformers-base - uuid - x509 - x509-store - x509-validation - xml-pipe - xmpipe - ]; - description = "Push XML from/to client to/from server over XMPP or HTTP"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "xml-query" = callPackage ( { mkDerivation, @@ -730754,90 +424767,6 @@ self: { } ) { }; - "xml-query-xml-conduit" = callPackage ( - { - mkDerivation, - base-prelude, - text, - xml-conduit, - xml-query, - xml-query-xml-types, - xml-types, - }: - mkDerivation { - pname = "xml-query-xml-conduit"; - version = "0.3.1"; - sha256 = "17pkn08853889w24jqc27d1jp2w6visc87p0wdqyvij3n2b6m9kq"; - libraryHaskellDepends = [ - base-prelude - text - xml-conduit - xml-query - xml-query-xml-types - xml-types - ]; - description = "A binding for the \"xml-query\" and \"xml-conduit\" libraries"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "xml-query-xml-types" = callPackage ( - { - mkDerivation, - base, - base-prelude, - data-default-class, - free, - html-entities, - QuickCheck, - quickcheck-instances, - success, - tasty, - tasty-hunit, - tasty-quickcheck, - tasty-smallcheck, - text, - transformers, - xml-conduit, - xml-query, - xml-types, - }: - mkDerivation { - pname = "xml-query-xml-types"; - version = "0.4.1"; - sha256 = "0qrrp8hm9y8k0iyfll19rfhz3cq2vn2gwskp6z1190c9dak341h9"; - libraryHaskellDepends = [ - base-prelude - free - html-entities - success - text - transformers - xml-query - xml-types - ]; - testHaskellDepends = [ - base - base-prelude - data-default-class - QuickCheck - quickcheck-instances - tasty - tasty-hunit - tasty-quickcheck - tasty-smallcheck - text - xml-conduit - xml-query - xml-types - ]; - description = "An interpreter of \"xml-query\" queries for the \"xml-types\" documents"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "xml-syntax" = callPackage ( { mkDerivation, @@ -730877,57 +424806,6 @@ self: { } ) { }; - "xml-to-json" = callPackage ( - { - mkDerivation, - aeson, - base, - bytestring, - containers, - curl, - hashable, - hxt, - hxt-curl, - hxt-expat, - hxt-tagsoup, - regex-posix, - tagsoup, - text, - unordered-containers, - vector, - }: - mkDerivation { - pname = "xml-to-json"; - version = "2.0.1"; - sha256 = "0brfdlarr4yyfsfawkfjdbk4z3lvi9ihkhvqh5ws2ll0h80ja6md"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson - base - bytestring - containers - curl - hashable - hxt - hxt-curl - hxt-expat - hxt-tagsoup - regex-posix - tagsoup - text - unordered-containers - vector - ]; - executableHaskellDepends = [ base ]; - description = "Library and command line tool for converting XML files to json"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - mainProgram = "xml-to-json"; - broken = true; - } - ) { }; - "xml-to-json-fast" = callPackage ( { mkDerivation, @@ -730959,79 +424837,6 @@ self: { } ) { }; - "xml-tydom-conduit" = callPackage ( - { - mkDerivation, - base, - containers, - QuickCheck, - quickcheck-instances, - tasty, - tasty-hunit, - tasty-quickcheck, - template-haskell, - text, - time, - xml-conduit, - xml-tydom-core, - }: - mkDerivation { - pname = "xml-tydom-conduit"; - version = "0.1.0.0"; - sha256 = "0pbakd5wsa65yipkar2h51827nvzwj5f5lb7853ac2nw515rk4g5"; - libraryHaskellDepends = [ - base - containers - template-haskell - text - time - xml-conduit - xml-tydom-core - ]; - testHaskellDepends = [ - base - QuickCheck - quickcheck-instances - tasty - tasty-hunit - tasty-quickcheck - text - time - xml-conduit - ]; - description = "Typed XML encoding for an xml-conduit backend"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "xml-tydom-core" = callPackage ( - { - mkDerivation, - base, - containers, - mtl, - QuickCheck, - text, - }: - mkDerivation { - pname = "xml-tydom-core"; - version = "0.1.0.0"; - sha256 = "09svwcfcqmxrczs7qb4haf68dnb8q47cm19f504cqfnr4brs093l"; - libraryHaskellDepends = [ - base - containers - mtl - QuickCheck - text - ]; - description = "Typed XML encoding (core library)"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "xml-types" = callPackage ( { mkDerivation, @@ -731141,115 +424946,6 @@ self: { } ) { }; - "xml2json" = callPackage ( - { - mkDerivation, - aeson, - attoparsec, - attoparsec-conduit, - base, - blaze-builder, - blaze-builder-conduit, - bytestring, - case-insensitive, - conduit, - hspec, - resourcet, - tagstream-conduit, - text, - transformers, - unordered-containers, - vector, - }: - mkDerivation { - pname = "xml2json"; - version = "0.2.0.0"; - sha256 = "15x3339qqy75qyj97dc7qbw7fs5dw4xvcslfrjpi36yd2596hamx"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson - attoparsec - attoparsec-conduit - base - blaze-builder - blaze-builder-conduit - bytestring - case-insensitive - conduit - tagstream-conduit - text - transformers - unordered-containers - vector - ]; - executableHaskellDepends = [ - aeson - attoparsec - attoparsec-conduit - base - blaze-builder - blaze-builder-conduit - bytestring - case-insensitive - conduit - tagstream-conduit - text - transformers - unordered-containers - vector - ]; - testHaskellDepends = [ - aeson - base - bytestring - hspec - resourcet - text - transformers - ]; - description = "translate xml to json"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "xml2json"; - broken = true; - } - ) { }; - - "xml2x" = callPackage ( - { - mkDerivation, - array, - base, - bio, - bytestring, - containers, - directory, - xhtml, - }: - mkDerivation { - pname = "xml2x"; - version = "0.4.2"; - sha256 = "0cp21xzzqczb49mpnsxlgc4fyhmmgyy4mfczqnz85h383js5sbia"; - isLibrary = false; - isExecutable = true; - enableSeparateDataOutput = true; - executableHaskellDepends = [ - array - base - bio - bytestring - containers - directory - xhtml - ]; - description = "Convert BLAST output in XML format to CSV or HTML"; - license = "GPL"; - hydraPlatforms = lib.platforms.none; - mainProgram = "xml2x"; - } - ) { }; - "xmlbf" = callPackage ( { mkDerivation, @@ -731497,114 +425193,6 @@ self: { } ) { }; - "xmltv" = callPackage ( - { - mkDerivation, - base, - bytestring, - configurator, - filepath, - http-client, - network-uri, - old-locale, - split, - terminfo, - time, - unix, - wl-pprint-extras, - wl-pprint-terminfo, - xdg-basedir, - xml, - }: - mkDerivation { - pname = "xmltv"; - version = "0.0.1"; - sha256 = "15i0a28svafjsziz1h3px0qys81xw0bs5bpq66hcwzxdv3s15lv9"; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base - old-locale - time - xml - ]; - executableHaskellDepends = [ - base - bytestring - configurator - filepath - http-client - network-uri - old-locale - split - terminfo - time - unix - wl-pprint-extras - wl-pprint-terminfo - xdg-basedir - xml - ]; - description = "Show tv channels in the terminal"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - mainProgram = "tv"; - } - ) { }; - - "xmms2-client" = callPackage ( - { - mkDerivation, - base, - c2hs, - containers, - haskell98, - mtl, - utf8-string, - }: - mkDerivation { - pname = "xmms2-client"; - version = "0.0.7.0"; - sha256 = "0ahsxah1irfsbgkkr4vnvasb7shk4b5iyjhgpj2dc9vi26p6y5dz"; - libraryHaskellDepends = [ - base - containers - haskell98 - mtl - utf8-string - ]; - libraryToolDepends = [ c2hs ]; - description = "An XMMS2 client library"; - license = lib.licenses.lgpl3Only; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "xmms2-client-glib" = callPackage ( - { - mkDerivation, - base, - c2hs, - haskell98, - xmms2-client, - }: - mkDerivation { - pname = "xmms2-client-glib"; - version = "0.0.7.0"; - sha256 = "1rrc8w9nrmxl8kzjkbmdxh0j1krvai396mx50wsnlqn1cxgb54h3"; - libraryHaskellDepends = [ - base - haskell98 - xmms2-client - ]; - libraryToolDepends = [ c2hs ]; - description = "An XMMS2 client library — GLib integration"; - license = lib.licenses.lgpl3Only; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "xmobar" = callPackage ( @@ -731835,45 +425423,6 @@ self: { } ) { }; - "xmonad-bluetilebranch" = callPackage ( - { - mkDerivation, - base, - containers, - directory, - extensible-exceptions, - filepath, - mtl, - process, - unix, - X11, - }: - mkDerivation { - pname = "xmonad-bluetilebranch"; - version = "0.9.1.4"; - sha256 = "1ymn56rc9kkzvdla9bpj3aq2z6rnz669xbj7n87z1b42aj74s8gn"; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base - containers - directory - extensible-exceptions - filepath - mtl - process - unix - X11 - ]; - description = "A tiling window manager"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "xmonad"; - broken = true; - } - ) { }; - "xmonad-contrib" = callPackage ( { mkDerivation, @@ -731946,75 +425495,6 @@ self: { } ) { }; - "xmonad-contrib-bluetilebranch" = callPackage ( - { - mkDerivation, - base, - containers, - directory, - extensible-exceptions, - mtl, - old-locale, - old-time, - process, - random, - unix, - utf8-string, - X11, - X11-xft, - xmonad-bluetilebranch, - }: - mkDerivation { - pname = "xmonad-contrib-bluetilebranch"; - version = "0.9.1.4"; - sha256 = "1ysf8yp8jwf7a1am83w5q66ys3j6kn7ss0i86n9dmfmkc3rms6l7"; - libraryHaskellDepends = [ - base - containers - directory - extensible-exceptions - mtl - old-locale - old-time - process - random - unix - utf8-string - X11 - X11-xft - xmonad-bluetilebranch - ]; - description = "Third party extensions for xmonad"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "xmonad-contrib-gpl" = callPackage ( - { - mkDerivation, - base, - mtl, - xmonad, - xmonad-contrib, - }: - mkDerivation { - pname = "xmonad-contrib-gpl"; - version = "0.12.1"; - sha256 = "1xs9qwzq9x552jw9wxdaddk2w1m5kc060mqahhk2f2q3zs9nk2n9"; - libraryHaskellDepends = [ - base - mtl - xmonad - xmonad-contrib - ]; - description = "Third party extensions for xmonad"; - license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "xmonad-dbus" = callPackage ( { mkDerivation, @@ -732044,86 +425524,6 @@ self: { } ) { }; - "xmonad-entryhelper" = callPackage ( - { - mkDerivation, - base, - directory, - extensible-exceptions, - filepath, - mtl, - process, - unix, - X11, - xmonad, - xmonad-contrib, - }: - mkDerivation { - pname = "xmonad-entryhelper"; - version = "0.1.0.0"; - sha256 = "1xwjdy7swc4bqqx0y7bny7rci4wpq2318m9nbz365x2r7i379v9h"; - libraryHaskellDepends = [ - base - directory - extensible-exceptions - filepath - mtl - process - unix - X11 - xmonad - xmonad-contrib - ]; - description = "XMonad config entry point wrapper"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "xmonad-eval" = callPackage ( - { - mkDerivation, - base, - containers, - directory, - hint, - mtl, - old-locale, - old-time, - process, - random, - unix, - X11, - xmonad, - xmonad-contrib, - }: - mkDerivation { - pname = "xmonad-eval"; - version = "0.1"; - sha256 = "0k0lb4z50kj4q3dzmii4pd8lbdnlxh5l91fx4f90a35hl3v9zggk"; - libraryHaskellDepends = [ - base - containers - directory - hint - mtl - old-locale - old-time - process - random - unix - X11 - xmonad - xmonad-contrib - ]; - description = "Module for evaluation Haskell expressions in the running xmonad instance"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "xmonad-extras" = callPackage ( { mkDerivation, @@ -732172,29 +425572,6 @@ self: { } ) { }; - "xmonad-screenshot" = callPackage ( - { - mkDerivation, - base, - gtk, - xmonad, - }: - mkDerivation { - pname = "xmonad-screenshot"; - version = "0.1.2"; - sha256 = "1m7bmdhc1nlwflli1ymnjlmysg9d54w0shpxq05xwmiycg4jbwr1"; - libraryHaskellDepends = [ - base - gtk - xmonad - ]; - description = "Workspaces screenshooting utility for XMonad"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "xmonad-spotify" = callPackage ( { mkDerivation, @@ -732247,57 +425624,6 @@ self: { } ) { inherit (pkgs) libxcrypt; }; - "xmonad-vanessa" = callPackage ( - { - mkDerivation, - alsa-mixer, - base, - composition-prelude, - containers, - hspec, - process, - X11, - xmonad, - xmonad-contrib, - xmonad-spotify, - xmonad-volume, - }: - mkDerivation { - pname = "xmonad-vanessa"; - version = "2.1.0.1"; - sha256 = "15ym244y33bg842y9bajbnfvqhbrj49472aij136h7dy92kn2lxg"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - alsa-mixer - base - composition-prelude - containers - process - X11 - xmonad - ]; - executableHaskellDepends = [ - base - composition-prelude - containers - xmonad - xmonad-contrib - xmonad-spotify - xmonad-volume - ]; - testHaskellDepends = [ - base - hspec - xmonad - ]; - description = "Custom xmonad, which builds with stack or cabal"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "xmonad-volume" = callPackage ( { mkDerivation, @@ -732355,67 +425681,6 @@ self: { } ) { }; - "xmonad-windownames" = callPackage ( - { - mkDerivation, - base, - containers, - utf8-string, - xmonad, - xmonad-contrib, - }: - mkDerivation { - pname = "xmonad-windownames"; - version = "0.1.0.1"; - sha256 = "11d818knw23f7f5bj30p8h8sn7z4s8wixy4l0qxbmv17vq7ds69m"; - libraryHaskellDepends = [ - base - containers - utf8-string - xmonad - xmonad-contrib - ]; - description = "A library to automatically put named windows into the DynamicLog"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "xmpipe" = callPackage ( - { - mkDerivation, - base, - base64-bytestring, - bytestring, - handle-like, - monads-tf, - sasl, - simple-pipe, - uuid, - xml-pipe, - }: - mkDerivation { - pname = "xmpipe"; - version = "0.0.0.4"; - sha256 = "09g11mfq93w3097rzydva8qwq1sjq0hwi11lg1x1yshwcb1if2iw"; - libraryHaskellDepends = [ - base - base64-bytestring - bytestring - handle-like - monads-tf - sasl - simple-pipe - uuid - xml-pipe - ]; - description = "XMPP implementation using simple-PIPE"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "xnobar" = callPackage ( { mkDerivation, @@ -732529,49 +425794,6 @@ self: { } ) { }; - "xorshift-plus" = callPackage ( - { - mkDerivation, - base, - doctest, - gauge, - ghc-prim, - hspec, - hspec-discover, - QuickCheck, - random, - xorshift, - Xorshift128Plus, - }: - mkDerivation { - pname = "xorshift-plus"; - version = "0.1.0.0"; - sha256 = "1m0wilg47jv9zsklghcs1h9bf4vykn8r4bwl0ncr7cqrlfa8d94l"; - libraryHaskellDepends = [ - base - ghc-prim - ]; - testHaskellDepends = [ - base - doctest - hspec - QuickCheck - ]; - testToolDepends = [ hspec-discover ]; - benchmarkHaskellDepends = [ - base - gauge - random - xorshift - Xorshift128Plus - ]; - description = "Simple implementation of xorshift+ PRNG"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "xosd" = callPackage ( { mkDerivation, @@ -732589,200 +425811,6 @@ self: { } ) { inherit (pkgs) xosd; }; - "xournal-builder" = callPackage ( - { - mkDerivation, - base, - blaze-builder, - bytestring, - double-conversion, - strict, - xournal-types, - }: - mkDerivation { - pname = "xournal-builder"; - version = "0.1.1.1"; - sha256 = "0v7lfhyr28gmsbzizhbw4lddhhhv74y3vb8kb9z06b32lg5wm591"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base - blaze-builder - bytestring - double-conversion - strict - xournal-types - ]; - description = "text builder for xournal file format"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "xournal-convert" = callPackage ( - { - mkDerivation, - base, - bytestring, - cairo, - cmdargs, - directory, - filepath, - HStringTemplate, - mtl, - xournal-parser, - xournal-render, - xournal-types, - }: - mkDerivation { - pname = "xournal-convert"; - version = "0.1.1"; - sha256 = "1vyykx5kbq8jja6cxy38j905b23ndj73xsg0hirz0sq4pw36shmi"; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base - bytestring - cairo - cmdargs - directory - filepath - HStringTemplate - mtl - xournal-parser - xournal-render - xournal-types - ]; - executableHaskellDepends = [ - base - cmdargs - ]; - description = "convert utility for xoj files"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "xournal-convert"; - } - ) { }; - - "xournal-parser" = callPackage ( - { - mkDerivation, - attoparsec, - attoparsec-conduit, - base, - bytestring, - conduit, - conduit-extra, - containers, - exceptions, - lens, - mtl, - strict, - text, - transformers, - xml-conduit, - xml-types, - xournal-types, - zlib-conduit, - }: - mkDerivation { - pname = "xournal-parser"; - version = "0.5.1"; - sha256 = "07b1gflqsjsydn304vw6zwgwlc0g7riv0b80lr165mw6c2fkmx78"; - libraryHaskellDepends = [ - attoparsec - attoparsec-conduit - base - bytestring - conduit - conduit-extra - containers - exceptions - lens - mtl - strict - text - transformers - xml-conduit - xml-types - xournal-types - zlib-conduit - ]; - description = "Xournal file parser"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "xournal-render" = callPackage ( - { - mkDerivation, - base, - bytestring, - cairo, - containers, - fclabels, - mtl, - poppler, - strict, - TypeCompose, - xournal-types, - }: - mkDerivation { - pname = "xournal-render"; - version = "0.6.0"; - sha256 = "0fsijjzxizhb7dx1pc83rsini8xzqj21mmkqj1x0ysyzh78siaf3"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base - bytestring - cairo - containers - fclabels - mtl - poppler - strict - TypeCompose - xournal-types - ]; - description = "Xournal file renderer"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "xournal-types" = callPackage ( - { - mkDerivation, - base, - bytestring, - cereal, - containers, - lens, - strict, - TypeCompose, - }: - mkDerivation { - pname = "xournal-types"; - version = "0.5.1.0"; - sha256 = "1jv9iq2zp6150vpiplnfzhyk8iqrnrs12bimfvfpnfgh98cx9s5h"; - revision = "1"; - editedCabalFile = "1yvqxgn0wm4p78g4dpqjcalmha0jmlgyz9f15kbrf5bl5fnc5zfn"; - libraryHaskellDepends = [ - base - bytestring - cereal - containers - lens - strict - TypeCompose - ]; - description = "Data types for programs for xournal file format"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "xpathdsv" = callPackage ( { mkDerivation, @@ -732801,1678 +425829,587 @@ self: { executableHaskellDepends = [ base hxt - hxt-xpath - optparse-applicative - text - ]; - description = "Command line tool to extract DSV data from HTML and XML with XPATH expressions"; - license = lib.licenses.bsd3; - mainProgram = "xpathdsv"; - } - ) { }; - - "xrefcheck" = callPackage ( - { - mkDerivation, - aeson, - aeson-casing, - async, - base, - bytestring, - case-insensitive, - cmark-gfm, - code-page, - containers, - crypton-connection, - directory, - dlist, - filepath, - fmt, - ftp-client, - Glob, - http-client, - http-types, - lens, - modern-uri, - mtl, - nyan-interpolation, - o-clock, - optparse-applicative, - pretty-terminal, - process, - reflection, - regex-tdfa, - req, - safe-exceptions, - scotty, - tagged, - tagsoup, - tasty, - tasty-discover, - tasty-hunit, - tasty-quickcheck, - text, - text-metrics, - time, - transformers, - universum, - uri-bytestring, - wai, - warp, - with-utf8, - yaml, - }: - mkDerivation { - pname = "xrefcheck"; - version = "0.3.1"; - sha256 = "01svjfmxbdxbymz796631n9cfnnldicdx3f2fmz4h8mv298yjlf4"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson - aeson-casing - async - base - bytestring - cmark-gfm - containers - crypton-connection - directory - dlist - filepath - fmt - ftp-client - Glob - http-client - http-types - lens - modern-uri - mtl - nyan-interpolation - o-clock - optparse-applicative - pretty-terminal - process - reflection - regex-tdfa - req - safe-exceptions - tagsoup - text - text-metrics - time - transformers - universum - uri-bytestring - yaml - ]; - executableHaskellDepends = [ - base - code-page - directory - universum - with-utf8 - ]; - testHaskellDepends = [ - base - case-insensitive - cmark-gfm - containers - directory - filepath - http-types - lens - modern-uri - nyan-interpolation - o-clock - optparse-applicative - reflection - regex-tdfa - scotty - tagged - tasty - tasty-hunit - tasty-quickcheck - time - universum - uri-bytestring - wai - warp - yaml - ]; - testToolDepends = [ tasty-discover ]; - license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; - mainProgram = "xrefcheck"; - } - ) { }; - - "xsact" = callPackage ( - { - mkDerivation, - array, - base, - containers, - directory, - process, - random, - unix, - }: - mkDerivation { - pname = "xsact"; - version = "1.7.3"; - sha256 = "180svhrkj3fp69abg0ichgc9l6iv760j302bb612qzxkpyjsyz0h"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - array - base - containers - directory - process - random - unix - ]; - description = "Cluster EST sequences"; - license = "GPL"; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "xsd" = callPackage ( - { - mkDerivation, - base, - lens, - parsec, - parsers, - semigroupoids, - text, - time, - }: - mkDerivation { - pname = "xsd"; - version = "0.6.2"; - sha256 = "0m8xb12bfcr03w5b15xx5s2wwy7kz735vwaxyk3qbny3wkq7m0fw"; - libraryHaskellDepends = [ - base - lens - parsec - parsers - semigroupoids - text - time - ]; - description = "XML Schema data structures"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "xsha1" = callPackage ( - { - mkDerivation, - base, - HUnit, - QuickCheck, - uniplate, - vector, - }: - mkDerivation { - pname = "xsha1"; - version = "0.0.0"; - sha256 = "0xljcmc8rsvkpchrdam3lpp4igq1gmym9v3drp15a9k8rfa8irmi"; - libraryHaskellDepends = [ - base - HUnit - QuickCheck - uniplate - vector - ]; - description = "cryptanalysis of Blizzard's broken SHA-1 implementation"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "xslt" = callPackage ( - { - mkDerivation, - base, - libxml, - xslt, - }: - mkDerivation { - pname = "xslt"; - version = "0.1"; - sha256 = "0i03ihk0rjj6vk2blqdhqqqk6qqrrkxx2ckigwd5mgvp3jp64648"; - libraryHaskellDepends = [ - base - libxml - ]; - librarySystemDepends = [ xslt ]; - description = "Binding to libxslt"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { xslt = null; }; - - "xss-sanitize" = callPackage ( - { - mkDerivation, - attoparsec, - base, - containers, - css-text, - hspec, - HUnit, - network-uri, - tagsoup, - text, - utf8-string, - }: - mkDerivation { - pname = "xss-sanitize"; - version = "0.3.7.2"; - sha256 = "0in9kn51i2ddh5c8scyf9l8zi6zxidwznn34qwj02nglw5dpzfqv"; - revision = "1"; - editedCabalFile = "1l8y52nja9a2iyxawm3vp23jcs46ziwx0yj2w46drb7knaa306d0"; - libraryHaskellDepends = [ - attoparsec - base - containers - css-text - network-uri - tagsoup - text - utf8-string - ]; - testHaskellDepends = [ - attoparsec - base - containers - css-text - hspec - HUnit - network-uri - tagsoup - text - utf8-string - ]; - description = "sanitize untrusted HTML to prevent XSS attacks"; - license = lib.licenses.bsd2; - } - ) { }; - - "xstatic" = callPackage ( - { - mkDerivation, - base, - binary, - bytestring, - containers, - http-types, - wai, - }: - mkDerivation { - pname = "xstatic"; - version = "0.2.0"; - sha256 = "19il75ndvawwa3drl590c5bczc53s5am6ap2j4v6q64dv2053smy"; - libraryHaskellDepends = [ - base - binary - bytestring - containers - http-types - wai - ]; - description = "Low-Fat static file packaging for Haskell projects"; - license = lib.licenses.bsd3; - } - ) { }; - - "xstatic-th" = callPackage ( - { - mkDerivation, - base, - bytestring, - mime-types, - SHA, - tasty, - tasty-hunit, - template-haskell, - text, - xstatic, - zlib, - }: - mkDerivation { - pname = "xstatic-th"; - version = "0.1.0"; - sha256 = "06vl6mf6jqgvzbhgq496swydl9xk4k37n6d0qzgi349j1235yiw9"; - libraryHaskellDepends = [ - base - bytestring - mime-types - SHA - template-haskell - text - xstatic - zlib - ]; - testHaskellDepends = [ - base - bytestring - tasty - tasty-hunit - xstatic - zlib - ]; - description = "Automatic generation of XStaticFile"; - license = lib.licenses.bsd3; - } - ) { }; - - "xtc" = callPackage ( - { - mkDerivation, - base, - wx, - wxcore, - }: - mkDerivation { - pname = "xtc"; - version = "1.0.1"; - sha256 = "0jfs3qbcx5h26irkq73dyc2m84qyrlj5dvy6d1s6p6520vhnqfal"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base - wx - wxcore - ]; - description = "eXtended & Typed Controls for wxHaskell"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "xtea" = callPackage ( - { - mkDerivation, - base, - binary, - bytestring, - hedgehog, - }: - mkDerivation { - pname = "xtea"; - version = "0.1.0.0"; - sha256 = "02h75vmww3jhij49acjbhh1bp0kknvxxvy4iiizf9rw97zsawr0j"; - libraryHaskellDepends = [ - base - binary - bytestring - ]; - testHaskellDepends = [ - base - bytestring - hedgehog - ]; - description = "XTEA (eXtended Tiny Encryption Algorithm)"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "xtest" = callPackage ( - { - mkDerivation, - base, - libXtst, - X11, - }: - mkDerivation { - pname = "xtest"; - version = "0.2"; - sha256 = "118xxx7sydpsvdqz0x107ngb85fggn630ysw6d2ckky75fmhmxk7"; - libraryHaskellDepends = [ - base - X11 - ]; - librarySystemDepends = [ libXtst ]; - description = "Thin FFI bindings to X11 XTest library"; - license = lib.licenses.bsd3; - } - ) { inherit (pkgs.xorg) libXtst; }; - - "xturtle" = callPackage ( - { - mkDerivation, - base, - convertible, - Imlib, - setlocale, - X11, - X11-xft, - x11-xim, - yjsvg, - yjtools, - }: - mkDerivation { - pname = "xturtle"; - version = "0.2.0.0"; - sha256 = "08nf4hz47ayypm3f14y7f6wdxskw1ipxvgc3dx24xckx6wvha623"; - libraryHaskellDepends = [ - base - convertible - Imlib - setlocale - X11 - X11-xft - x11-xim - yjsvg - yjtools - ]; - description = "turtle like LOGO"; - license = lib.licenses.bsd3; - } - ) { }; - - "xxhash" = callPackage ( - { - mkDerivation, - base, - bytestring, - criterion, - crypto-api, - deepseq, - digest, - hashable, - hspec, - murmur-hash, - QuickCheck, - tagged, - }: - mkDerivation { - pname = "xxhash"; - version = "0.0.2"; - sha256 = "09rgxchqnaalpjbgy20y1g5p6g9asfwfj37px6qpl6ypchawfp2g"; - revision = "2"; - editedCabalFile = "0g5j3fb5l0zr9c3vbn63g2cdib33s90rani9yhgsr0c0p0jv7maz"; - libraryHaskellDepends = [ - base - bytestring - crypto-api - tagged - ]; - testHaskellDepends = [ - base - bytestring - hspec - QuickCheck - ]; - benchmarkHaskellDepends = [ - base - bytestring - criterion - deepseq - digest - hashable - murmur-hash - ]; - description = "A Haskell implementation of the xxHash algorithm"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "xxhash-ffi" = callPackage ( - { - mkDerivation, - base, - bytestring, - digest, - hashable, - QuickCheck, - tasty, - tasty-bench, - tasty-quickcheck, - text, - xxHash, - }: - mkDerivation { - pname = "xxhash-ffi"; - version = "0.3.1"; - sha256 = "1vdlx1dn1zx2rwpzhv8wgnc988fwbxzgvzxn2zgd78iibr97slm5"; - libraryHaskellDepends = [ - base - bytestring - hashable - text - ]; - libraryPkgconfigDepends = [ xxHash ]; - testHaskellDepends = [ - base - bytestring - hashable - QuickCheck - tasty - tasty-quickcheck - text - ]; - benchmarkHaskellDepends = [ - base - bytestring - digest - hashable - tasty-bench - ]; - description = "Bindings and high-level helpers for xxHash"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { inherit (pkgs) xxHash; }; - - "xz" = callPackage ( - { - mkDerivation, - base, - bytestring, - HUnit, - QuickCheck, - tasty, - tasty-hunit, - tasty-quickcheck, - xz, - }: - mkDerivation { - pname = "xz"; - version = "5.6.3"; - sha256 = "15450bmpbka14ykajr38aj8lyilg0vxsrhsdlq20a9zg63ppvc4d"; - revision = "1"; - editedCabalFile = "0a71h34i6bqywmsnhxqp8sya2q61lm6wdrfrjhg9hgnjkc09pkz2"; - libraryHaskellDepends = [ - base - bytestring - ]; - libraryPkgconfigDepends = [ xz ]; - testHaskellDepends = [ - base - bytestring - HUnit - QuickCheck - tasty - tasty-hunit - tasty-quickcheck - ]; - description = "LZMA/XZ compression and decompression"; - license = lib.licenses.bsd3; - } - ) { inherit (pkgs) xz; }; - - "xz-clib" = callPackage ( - { mkDerivation }: - mkDerivation { - pname = "xz-clib"; - version = "5.8.1"; - sha256 = "0cycldc04ffkm5kvhb9x9mjgcw9vhzlbh34idpapv9bin9b594ic"; - doHaddock = false; - description = "LZMA/XZ clibs"; - license = lib.licenses.bsd0; - } - ) { }; - - "y0l0bot" = callPackage ( - { - mkDerivation, - base, - bytestring, - containers, - mtl, - network, - old-locale, - old-time, - safe, - split, - text, - time, - }: - mkDerivation { - pname = "y0l0bot"; - version = "0.1.1"; - sha256 = "0gjvnl5px7ir2lf7arpiji324n32mc1a90x3w6vh5xcyb13wvkv9"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - bytestring - containers - mtl - network - old-locale - old-time - safe - split - text - time - ]; - description = "#plaimi's all-encompassing bot"; - license = lib.licenses.agpl3Only; - hydraPlatforms = lib.platforms.none; - mainProgram = "yolobot"; - broken = true; - } - ) { }; - - "yabi" = callPackage ( - { - mkDerivation, - base, - word8, - }: - mkDerivation { - pname = "yabi"; - version = "0.2.0.0"; - sha256 = "1iihmhq87z5k9wzv8j8ydyy100m0401yqm576z27fk01i1a6fq3x"; - revision = "1"; - editedCabalFile = "0hbmp3hbr2f64vpnqf7hg2li4yasiv7fzmafqf50wypz3zixbgmp"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - word8 - ]; - description = "Yet Another Brainfuck Interpreter"; - license = lib.licenses.mit; - mainProgram = "yabi"; - } - ) { }; - - "yabi-muno" = callPackage ( - { - mkDerivation, - base, - bytestring, - containers, - lens, - mtl, - mtl-compat, - parsec, - }: - mkDerivation { - pname = "yabi-muno"; - version = "0.1.0.1"; - sha256 = "169ndqawpkaj43iq6mbddqxprc7w6lsv3ws8a7cq7nmyn7n3r0jg"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - bytestring - containers - lens - mtl - mtl-compat - parsec - ]; - executableHaskellDepends = [ - base - containers - mtl - parsec - ]; - description = "Yet Another Brainfuck Interpreter"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - mainProgram = "yabi"; - broken = true; - } - ) { }; - - "yackage" = callPackage ( - { - mkDerivation, - aeson, - base, - blaze-builder, - blaze-html, - bytestring, - Cabal, - cmdargs, - conduit, - containers, - directory, - http-conduit, - http-types, - shakespeare, - tar, - text, - transformers, - unordered-containers, - vector, - wai, - warp, - yaml, - yesod-core, - yesod-form, - zlib, - }: - mkDerivation { - pname = "yackage"; - version = "0.8.1"; - sha256 = "1rfa6rhj4fmfsyfhm19x0sgx9j71xz4qjqissd7izifjpx60cj0x"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - aeson - base - blaze-builder - blaze-html - bytestring - Cabal - cmdargs - conduit - containers - directory - http-conduit - http-types - shakespeare - tar - text - transformers - unordered-containers - vector - wai - warp - yaml - yesod-core - yesod-form - zlib - ]; - description = "Personal Hackage replacement for testing new packages"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "yahoo-finance-api" = callPackage ( - { - mkDerivation, - aeson, - base, - doctest, - either, - Glob, - hspec, - http-api-data, - http-client, - http-client-tls, - mtl, - safe, - servant, - servant-client, - text, - time, - transformers, - vector, - }: - mkDerivation { - pname = "yahoo-finance-api"; - version = "0.2.0.3"; - sha256 = "19mwjbz43rp7qdysw3iaa6mhkzk6xkrjd42111ccai75x0372rbx"; - libraryHaskellDepends = [ - aeson - base - either - http-api-data - http-client - mtl - servant - servant-client - text - time - transformers - vector - ]; - testHaskellDepends = [ - base - doctest - either - Glob - hspec - http-client - http-client-tls - mtl - safe - servant - servant-client - ]; - description = "Read quotes from Yahoo Finance API"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "yahoo-finance-conduit" = callPackage ( - { - mkDerivation, - attoparsec, - base, - cassava, - conduit, - lens, - mtl, - text, - vector, - wreq, - }: - mkDerivation { - pname = "yahoo-finance-conduit"; - version = "0.1.0.0"; - sha256 = "1kvs12l84lgs26knrqv5f354a3bql3fg54wgnmsfcjli1vvnn1di"; - libraryHaskellDepends = [ - attoparsec - base - cassava - conduit - lens - mtl - text - vector - wreq - ]; - description = "Streaming aproach to the yahoo finance api"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "yahoo-prices" = callPackage ( - { - mkDerivation, - base, - bytestring, - cassava, - hspec, - lens, - QuickCheck, - time, - vector, - wreq, - }: - mkDerivation { - pname = "yahoo-prices"; - version = "0.1.0.5"; - sha256 = "0hkws2l46m9a859a9diph341shkq4x1270x5axj4clg36lsi5hcd"; - libraryHaskellDepends = [ - base - bytestring - cassava - lens - time - vector - wreq - ]; - testHaskellDepends = [ - base - bytestring - hspec - QuickCheck - time - ]; - doHaddock = false; - description = "A wrapper around Yahoo API for downloading market data"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "yahoo-web-search" = callPackage ( - { - mkDerivation, - base, - HTTP, - network, - xml, - }: - mkDerivation { - pname = "yahoo-web-search"; - version = "0.2"; - sha256 = "064qakx4khzz9ih9isw46c8pm8wpg662fwnis4d64nszy6y9yfck"; - libraryHaskellDepends = [ - base - HTTP - network - xml - ]; - description = "Yahoo Web Search Services"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "yajl" = callPackage ( - { - mkDerivation, - base, - bytestring, - c2hs, - text, - yajl, - }: - mkDerivation { - pname = "yajl"; - version = "0.3.2"; - sha256 = "07186ilac22zym1jlgl915k2a82k418xa5z9h40ss62dgmaz2xkk"; - libraryHaskellDepends = [ - base - bytestring - text - ]; - librarySystemDepends = [ yajl ]; - libraryToolDepends = [ c2hs ]; - description = "Bindings for YAJL, an event-based JSON implementation"; - license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { inherit (pkgs) yajl; }; - - "yajl-enumerator" = callPackage ( - { - mkDerivation, - base, - bytestring, - enumerator, - json-types, - text, - transformers, - yajl, - }: - mkDerivation { - pname = "yajl-enumerator"; - version = "0.4.1"; - sha256 = "0dz81l58qpm3gk7zmvb702qwgq79j7d0dnyimqi6k3fp0byb5wdj"; - libraryHaskellDepends = [ - base - bytestring - enumerator - json-types - text - transformers - yajl - ]; - description = "Enumerator-based interface to YAJL, an event-based JSON implementation"; - license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "yak" = callPackage ( - { - mkDerivation, - attoparsec, - base, - bytestring, - hspec, - lens, - template-haskell, - text, - time, - }: - mkDerivation { - pname = "yak"; - version = "0.2.0.0"; - sha256 = "1k27361n0jbixrshlf9757gvlnm7z3safkl28zg4lqflmfq95mai"; - libraryHaskellDepends = [ - attoparsec - base - bytestring - lens - template-haskell - text - time - ]; - testHaskellDepends = [ - base - bytestring - hspec - ]; - description = "A strongly typed IRC library"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "yall" = callPackage ( - { - mkDerivation, - base, - categories, - transformers, - }: - mkDerivation { - pname = "yall"; - version = "0.2.1"; - sha256 = "131x7hl309zpwl31k6mwqd4fdrhkcwxvn4dvlky9bh3prc8kdm2s"; - libraryHaskellDepends = [ - base - categories - transformers + hxt-xpath + optparse-applicative + text ]; - description = "Lenses with a southern twang"; + description = "Command line tool to extract DSV data from HTML and XML with XPATH expressions"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; + mainProgram = "xpathdsv"; } ) { }; - "yam" = callPackage ( + "xrefcheck" = callPackage ( { mkDerivation, aeson, + aeson-casing, + async, base, - base16-bytestring, - binary, bytestring, - data-default, - exceptions, - fast-logger, - hspec, + case-insensitive, + cmark-gfm, + code-page, + containers, + crypton-connection, + directory, + dlist, + filepath, + fmt, + ftp-client, + Glob, http-client, http-types, lens, - menshen, - monad-logger, + modern-uri, mtl, - mwc-random, - QuickCheck, + nyan-interpolation, + o-clock, + optparse-applicative, + pretty-terminal, + process, reflection, - salak, - scientific, - servant-client, - servant-server, - servant-swagger, - servant-swagger-ui, - swagger2, + regex-tdfa, + req, + safe-exceptions, + scotty, + tagged, + tagsoup, + tasty, + tasty-discover, + tasty-hunit, + tasty-quickcheck, text, + text-metrics, + time, transformers, - unliftio-core, - unordered-containers, - vault, - vector, + universum, + uri-bytestring, wai, warp, + with-utf8, + yaml, }: mkDerivation { - pname = "yam"; - version = "0.7"; - sha256 = "1b1igh82zhdbql4kfjxxh1rg1776x2yv2755hnvps5p06c2wap7z"; + pname = "xrefcheck"; + version = "0.3.1"; + sha256 = "01svjfmxbdxbymz796631n9cfnnldicdx3f2fmz4h8mv298yjlf4"; + isLibrary = true; + isExecutable = true; libraryHaskellDepends = [ aeson + aeson-casing + async base - base16-bytestring - binary bytestring - data-default - exceptions - fast-logger + cmark-gfm + containers + crypton-connection + directory + dlist + filepath + fmt + ftp-client + Glob http-client http-types lens - menshen - monad-logger + modern-uri mtl - mwc-random + nyan-interpolation + o-clock + optparse-applicative + pretty-terminal + process reflection - salak - scientific - servant-client - servant-server - servant-swagger - servant-swagger-ui - swagger2 + regex-tdfa + req + safe-exceptions + tagsoup text + text-metrics + time transformers - unliftio-core - unordered-containers - vault - vector - wai - warp + universum + uri-bytestring + yaml + ]; + executableHaskellDepends = [ + base + code-page + directory + universum + with-utf8 ]; testHaskellDepends = [ - aeson base - base16-bytestring - binary - bytestring - data-default - exceptions - fast-logger - hspec - http-client + case-insensitive + cmark-gfm + containers + directory + filepath http-types lens - menshen - monad-logger - mtl - mwc-random - QuickCheck + modern-uri + nyan-interpolation + o-clock + optparse-applicative reflection - salak - scientific - servant-client - servant-server - servant-swagger - servant-swagger-ui - swagger2 - text - transformers - unliftio-core - unordered-containers - vault - vector + regex-tdfa + scotty + tagged + tasty + tasty-hunit + tasty-quickcheck + time + universum + uri-bytestring wai warp + yaml ]; - description = "A wrapper of servant"; - license = lib.licenses.bsd3; + testToolDepends = [ tasty-discover ]; + license = lib.licenses.mpl20; hydraPlatforms = lib.platforms.none; + mainProgram = "xrefcheck"; } ) { }; - "yam-app" = callPackage ( + "xsd" = callPackage ( { mkDerivation, - aeson, base, - conduit, - containers, - ctrie, - data-default, - directory, - exceptions, - fast-logger, - monad-control, - monad-logger, - mtl, - persistent, - persistent-sqlite, - random, - resource-pool, - resourcet, - string-conversions, + lens, + parsec, + parsers, + semigroupoids, text, time, - transformers, - unliftio-core, - unordered-containers, - wai-logger, - yaml, }: mkDerivation { - pname = "yam-app"; - version = "0.2.0"; - sha256 = "1fr3q4dih2vzby3jmb13zmi6cmmlp26gymx45pqb2g5fsg2nmp94"; + pname = "xsd"; + version = "0.6.2"; + sha256 = "0m8xb12bfcr03w5b15xx5s2wwy7kz735vwaxyk3qbny3wkq7m0fw"; libraryHaskellDepends = [ - aeson base - conduit - containers - ctrie - data-default - directory - exceptions - fast-logger - monad-control - monad-logger - mtl - persistent - persistent-sqlite - random - resource-pool - resourcet - string-conversions + lens + parsec + parsers + semigroupoids text time - transformers - unliftio-core - unordered-containers - wai-logger - yaml ]; - description = "Yam App"; + description = "XML Schema data structures"; license = lib.licenses.bsd3; hydraPlatforms = lib.platforms.none; broken = true; } ) { }; - "yam-config" = callPackage ( + "xss-sanitize" = callPackage ( { mkDerivation, - aeson, + attoparsec, base, - data-default, - random, - string-conversions, + containers, + css-text, + hspec, + HUnit, + network-uri, + tagsoup, text, - unordered-containers, - vault, - yaml, + utf8-string, }: mkDerivation { - pname = "yam-config"; - version = "0.3.3"; - sha256 = "1qkxls422nym457rqyrbrzk1dx2gw3c6zxk1nzpm9287qd5pwp5n"; + pname = "xss-sanitize"; + version = "0.3.7.2"; + sha256 = "0in9kn51i2ddh5c8scyf9l8zi6zxidwznn34qwj02nglw5dpzfqv"; + revision = "1"; + editedCabalFile = "1l8y52nja9a2iyxawm3vp23jcs46ziwx0yj2w46drb7knaa306d0"; libraryHaskellDepends = [ - aeson + attoparsec base - data-default - random - string-conversions + containers + css-text + network-uri + tagsoup text - unordered-containers - vault - yaml + utf8-string ]; - description = "Yam Configuation"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; + testHaskellDepends = [ + attoparsec + base + containers + css-text + hspec + HUnit + network-uri + tagsoup + text + utf8-string + ]; + description = "sanitize untrusted HTML to prevent XSS attacks"; + license = lib.licenses.bsd2; } ) { }; - "yam-datasource" = callPackage ( + "xstatic" = callPackage ( { mkDerivation, base, - conduit, - data-default, - monad-logger, - persistent, - resource-pool, - resourcet, - salak, - servant-server, - text, - unliftio-core, - yam, + binary, + bytestring, + containers, + http-types, + wai, }: mkDerivation { - pname = "yam-datasource"; - version = "0.7"; - sha256 = "0dkricvyypyggbmqp3mqryz7sw1z1z92ixnvz48lc8xqahvj0fsv"; + pname = "xstatic"; + version = "0.2.0"; + sha256 = "19il75ndvawwa3drl590c5bczc53s5am6ap2j4v6q64dv2053smy"; libraryHaskellDepends = [ base - conduit - data-default - monad-logger - persistent - resource-pool - resourcet - salak - servant-server - text - unliftio-core - yam + binary + bytestring + containers + http-types + wai ]; - description = "Yam DataSource Middleware"; + description = "Low-Fat static file packaging for Haskell projects"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; } ) { }; - "yam-job" = callPackage ( + "xstatic-th" = callPackage ( { mkDerivation, base, - cron, - yam-app, + bytestring, + mime-types, + SHA, + tasty, + tasty-hunit, + template-haskell, + text, + xstatic, + zlib, }: mkDerivation { - pname = "yam-job"; - version = "0.2.0"; - sha256 = "0c6frqjf3xhd5bksaz6rvd6qbqbj15y441476dgj2asm2yd64895"; + pname = "xstatic-th"; + version = "0.1.0"; + sha256 = "06vl6mf6jqgvzbhgq496swydl9xk4k37n6d0qzgi349j1235yiw9"; libraryHaskellDepends = [ base - cron - yam-app + bytestring + mime-types + SHA + template-haskell + text + xstatic + zlib + ]; + testHaskellDepends = [ + base + bytestring + tasty + tasty-hunit + xstatic + zlib ]; + description = "Automatic generation of XStaticFile"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; } ) { }; - "yam-logger" = callPackage ( + "xtea" = callPackage ( { mkDerivation, - aeson, base, - fast-logger, - monad-logger, - text, - vault, - yam-config, + binary, + bytestring, + hedgehog, }: mkDerivation { - pname = "yam-logger"; - version = "0.3.2"; - sha256 = "0i28d47b9dmjc039r4gwp7zijj04kg3092rsi9xwch991wxipbkc"; + pname = "xtea"; + version = "0.1.0.0"; + sha256 = "02h75vmww3jhij49acjbhh1bp0kknvxxvy4iiizf9rw97zsawr0j"; libraryHaskellDepends = [ - aeson base - fast-logger - monad-logger - text - vault - yam-config + binary + bytestring + ]; + testHaskellDepends = [ + base + bytestring + hedgehog ]; - description = "Yam Logger"; + description = "XTEA (eXtended Tiny Encryption Algorithm)"; license = lib.licenses.mit; hydraPlatforms = lib.platforms.none; + broken = true; } ) { }; - "yam-redis" = callPackage ( + "xtest" = callPackage ( { mkDerivation, base, - bytestring, - data-default, - hedis, - menshen, - monad-logger, - mtl, - salak, - servant-server, - text, - yam, + libXtst, + X11, }: mkDerivation { - pname = "yam-redis"; - version = "0.7"; - sha256 = "0cw4prkmi2csmi1kw3k0lvvzhnl71f4fplsv3f2jxgcgviim89pw"; + pname = "xtest"; + version = "0.2"; + sha256 = "118xxx7sydpsvdqz0x107ngb85fggn630ysw6d2ckky75fmhmxk7"; libraryHaskellDepends = [ base - bytestring - data-default - hedis - menshen - monad-logger - mtl - salak - servant-server - text - yam + X11 ]; - description = "Yam Redis Middleware"; + librarySystemDepends = [ libXtst ]; + description = "Thin FFI bindings to X11 XTest library"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; } - ) { }; + ) { inherit (pkgs.xorg) libXtst; }; - "yam-servant" = callPackage ( + "xturtle" = callPackage ( { mkDerivation, - aeson, base, - http-types, - lens, - servant, - servant-server, - servant-swagger, - servant-swagger-ui, - swagger2, - text, - wai, - wai-extra, - warp, - yam-app, - yam-job, + convertible, + Imlib, + setlocale, + X11, + X11-xft, + x11-xim, + yjsvg, + yjtools, }: mkDerivation { - pname = "yam-servant"; - version = "0.2.0"; - sha256 = "0y1isi6c0pv87hygbbb2xfh4373bij1cig2hrpcq4ivyab0273xb"; + pname = "xturtle"; + version = "0.2.0.0"; + sha256 = "08nf4hz47ayypm3f14y7f6wdxskw1ipxvgc3dx24xckx6wvha623"; libraryHaskellDepends = [ - aeson base - http-types - lens - servant - servant-server - servant-swagger - servant-swagger-ui - swagger2 - text - wai - wai-extra - warp - yam-app - yam-job + convertible + Imlib + setlocale + X11 + X11-xft + x11-xim + yjsvg + yjtools ]; + description = "turtle like LOGO"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; } ) { }; - "yam-transaction" = callPackage ( + "xxhash" = callPackage ( { mkDerivation, - aeson, base, - conduit, - data-default, - monad-logger, - persistent, - persistent-postgresql, - persistent-sqlite, - resource-pool, - resourcet, - string-conversions, - text, - time, - transformers, - unliftio-core, - vault, - yam-logger, + bytestring, + criterion, + crypto-api, + deepseq, + digest, + hashable, + hspec, + murmur-hash, + QuickCheck, + tagged, }: mkDerivation { - pname = "yam-transaction"; - version = "0.3.3"; - sha256 = "105npa993x4g7xgq5z6j9md98ynaycxypcgll6ihrj7nscymdfca"; + pname = "xxhash"; + version = "0.0.2"; + sha256 = "09rgxchqnaalpjbgy20y1g5p6g9asfwfj37px6qpl6ypchawfp2g"; + revision = "2"; + editedCabalFile = "0g5j3fb5l0zr9c3vbn63g2cdib33s90rani9yhgsr0c0p0jv7maz"; libraryHaskellDepends = [ - aeson base - conduit - data-default - monad-logger - persistent - persistent-postgresql - persistent-sqlite - resource-pool - resourcet - string-conversions - text - time - transformers - unliftio-core - vault - yam-logger + bytestring + crypto-api + tagged ]; - description = "Yam transaction"; - license = lib.licenses.mit; + testHaskellDepends = [ + base + bytestring + hspec + QuickCheck + ]; + benchmarkHaskellDepends = [ + base + bytestring + criterion + deepseq + digest + hashable + murmur-hash + ]; + description = "A Haskell implementation of the xxHash algorithm"; + license = lib.licenses.bsd3; hydraPlatforms = lib.platforms.none; + broken = true; } ) { }; - "yam-transaction-odbc" = callPackage ( + "xxhash-ffi" = callPackage ( { mkDerivation, base, - containers, - persistent-odbc, - yam-app, + bytestring, + digest, + hashable, + QuickCheck, + tasty, + tasty-bench, + tasty-quickcheck, + text, + xxHash, }: mkDerivation { - pname = "yam-transaction-odbc"; - version = "0.1.10"; - sha256 = "18nzdzzpykdp42sdsailhinxlrpwcrfys2n967ky9yizj7n8dcrx"; + pname = "xxhash-ffi"; + version = "0.3.1"; + sha256 = "1vdlx1dn1zx2rwpzhv8wgnc988fwbxzgvzxn2zgd78iibr97slm5"; libraryHaskellDepends = [ base - containers - persistent-odbc - yam-app + bytestring + hashable + text + ]; + libraryPkgconfigDepends = [ xxHash ]; + testHaskellDepends = [ + base + bytestring + hashable + QuickCheck + tasty + tasty-quickcheck + text + ]; + benchmarkHaskellDepends = [ + base + bytestring + digest + hashable + tasty-bench ]; + description = "Bindings and high-level helpers for xxHash"; license = lib.licenses.bsd3; hydraPlatforms = lib.platforms.none; + broken = true; } - ) { }; + ) { inherit (pkgs) xxHash; }; - "yam-transaction-postgresql" = callPackage ( + "xz" = callPackage ( { mkDerivation, base, - containers, - persistent-postgresql, - unliftio-core, - yam-app, + bytestring, + HUnit, + QuickCheck, + tasty, + tasty-hunit, + tasty-quickcheck, + xz, }: mkDerivation { - pname = "yam-transaction-postgresql"; - version = "0.2.0"; - sha256 = "1nm2bs285ldxv3zqsihha1wl1p46i8gd7w5nk2nnk60qilzhsc9s"; + pname = "xz"; + version = "5.6.3"; + sha256 = "15450bmpbka14ykajr38aj8lyilg0vxsrhsdlq20a9zg63ppvc4d"; + revision = "1"; + editedCabalFile = "0a71h34i6bqywmsnhxqp8sya2q61lm6wdrfrjhg9hgnjkc09pkz2"; libraryHaskellDepends = [ base - containers - persistent-postgresql - unliftio-core - yam-app + bytestring + ]; + libraryPkgconfigDepends = [ xz ]; + testHaskellDepends = [ + base + bytestring + HUnit + QuickCheck + tasty + tasty-hunit + tasty-quickcheck ]; + description = "LZMA/XZ compression and decompression"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; + } + ) { inherit (pkgs) xz; }; + + "xz-clib" = callPackage ( + { mkDerivation }: + mkDerivation { + pname = "xz-clib"; + version = "5.8.1"; + sha256 = "0cycldc04ffkm5kvhb9x9mjgcw9vhzlbh34idpapv9bin9b594ic"; + doHaddock = false; + description = "LZMA/XZ clibs"; + license = lib.licenses.bsd0; } ) { }; - "yam-web" = callPackage ( + "yabi" = callPackage ( { mkDerivation, - aeson, base, - data-default, - lens, - persistent, - persistent-template, - reflection, - servant-server, - servant-swagger, - servant-swagger-ui, - string-conversions, - swagger2, - text, - time, - transformers, - unliftio-core, - vault, - wai, - wai-extra, - warp, - yam-config, - yam-logger, - yam-transaction, + word8, }: mkDerivation { - pname = "yam-web"; - version = "0.3.3"; - sha256 = "1599lwblymwf3bh16s9lw7j98174iaingnjjz0a5zlhqxw277ma6"; - isLibrary = true; + pname = "yabi"; + version = "0.2.0.0"; + sha256 = "1iihmhq87z5k9wzv8j8ydyy100m0401yqm576z27fk01i1a6fq3x"; + revision = "1"; + editedCabalFile = "0hbmp3hbr2f64vpnqf7hg2li4yasiv7fzmafqf50wypz3zixbgmp"; + isLibrary = false; isExecutable = true; - libraryHaskellDepends = [ - aeson - base - data-default - lens - reflection - servant-server - servant-swagger - servant-swagger-ui - string-conversions - swagger2 - text - transformers - unliftio-core - vault - wai - wai-extra - warp - yam-config - yam-logger - yam-transaction - ]; executableHaskellDepends = [ - aeson base - data-default - lens - persistent - persistent-template - reflection - servant-server - servant-swagger - servant-swagger-ui - string-conversions - swagger2 - text - time - transformers - unliftio-core - vault - wai - wai-extra - warp - yam-config - yam-logger - yam-transaction + word8 ]; - description = "Yam Web"; + description = "Yet Another Brainfuck Interpreter"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - mainProgram = "yam-web"; + mainProgram = "yabi"; } ) { }; - "yamemo" = callPackage ( + "yahoo-prices" = callPackage ( { mkDerivation, base, - containers, - mtl, + bytestring, + cassava, + hspec, + lens, + QuickCheck, + time, + vector, + wreq, }: mkDerivation { - pname = "yamemo"; - version = "0.6.0"; - sha256 = "12qh9fi5dj4i5lprm24gc2b66qzc3mf59m22sxf93sx3dsf7rygn"; - enableSeparateDataOutput = true; + pname = "yahoo-prices"; + version = "0.1.0.5"; + sha256 = "0hkws2l46m9a859a9diph341shkq4x1270x5axj4clg36lsi5hcd"; libraryHaskellDepends = [ base - containers - mtl + bytestring + cassava + lens + time + vector + wreq ]; - description = "Simple memoisation function"; - license = lib.licenses.bsd3; + testHaskellDepends = [ + base + bytestring + hspec + QuickCheck + time + ]; + doHaddock = false; + description = "A wrapper around Yahoo API for downloading market data"; + license = lib.licenses.mit; hydraPlatforms = lib.platforms.none; broken = true; } @@ -734776,157 +426713,6 @@ self: { } ) { }; - "yaml-pretty-extras" = callPackage ( - { - mkDerivation, - base, - hspec, - microlens-platform, - rio, - yaml, - }: - mkDerivation { - pname = "yaml-pretty-extras"; - version = "0.0.2.2"; - sha256 = "0pbpwrrbf4ibrid09ypqfz15d0b4kfgfs4ypfdn0bv5n25nn3ca2"; - libraryHaskellDepends = [ - base - microlens-platform - rio - yaml - ]; - testHaskellDepends = [ - base - hspec - microlens-platform - rio - ]; - description = "Extra functionality for pretty printing Yaml documents"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "yaml-rpc" = callPackage ( - { - mkDerivation, - aeson, - base, - bytestring, - containers, - http-client, - http-types, - lens, - template-haskell, - text, - th-lift, - transformers, - unordered-containers, - vector, - wreq, - yaml, - }: - mkDerivation { - pname = "yaml-rpc"; - version = "1.0.3"; - sha256 = "01ir8yh7g3xvybg2nyfnzci0xlqpizkdkyhd8jfhyk8yka6jbr9g"; - libraryHaskellDepends = [ - aeson - base - bytestring - containers - http-client - http-types - lens - template-haskell - text - th-lift - transformers - unordered-containers - vector - wreq - yaml - ]; - description = "Simple library for network (HTTP REST-like) YAML RPC"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "yaml-rpc-scotty" = callPackage ( - { - mkDerivation, - aeson, - base, - containers, - http-types, - mmorph, - scotty, - text, - transformers, - yaml, - yaml-rpc, - }: - mkDerivation { - pname = "yaml-rpc-scotty"; - version = "1.0.2"; - sha256 = "1kbvziqd78fr47m3w86hc6pxa6jy3ljjwc0s2ga0d8zrh0irf3b3"; - libraryHaskellDepends = [ - aeson - base - containers - http-types - mmorph - scotty - text - transformers - yaml - yaml-rpc - ]; - description = "Scotty server backend for yaml-rpc"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "yaml-rpc-snap" = callPackage ( - { - mkDerivation, - aeson, - base, - bytestring, - containers, - http-types, - snap, - text, - transformers, - yaml, - yaml-rpc, - }: - mkDerivation { - pname = "yaml-rpc-snap"; - version = "1.0.3"; - sha256 = "17csdfr4g0vb46yi2jhf6phin17rcn9arc71kmgdgx0xh2hrfin9"; - libraryHaskellDepends = [ - aeson - base - bytestring - containers - http-types - snap - text - transformers - yaml - yaml-rpc - ]; - description = "Snap server backend for yaml-rpc"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "yaml-streamly" = callPackage ( { mkDerivation, @@ -735025,69 +426811,6 @@ self: { } ) { }; - "yaml-union" = callPackage ( - { - mkDerivation, - aeson, - base, - bytestring, - directory, - filepath, - hspec, - optparse-applicative, - QuickCheck, - quickcheck-instances, - scientific, - text, - unix, - unordered-containers, - vector, - yaml, - }: - mkDerivation { - pname = "yaml-union"; - version = "0.0.3"; - sha256 = "0g030mhwzwh4fz8s3ggajkfvky18rkpz4g098r9gy2hyaf3mmr2b"; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - aeson - base - bytestring - directory - filepath - text - unix - unordered-containers - vector - yaml - ]; - executableHaskellDepends = [ - base - bytestring - directory - optparse-applicative - yaml - ]; - testHaskellDepends = [ - base - hspec - QuickCheck - quickcheck-instances - scientific - text - unordered-containers - vector - yaml - ]; - description = "Read multiple yaml-files and override fields recursively"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "yaml-unscrambler" = callPackage ( { mkDerivation, @@ -735200,38 +426923,6 @@ self: { } ) { }; - "yamlkeysdiff" = callPackage ( - { - mkDerivation, - base, - containers, - parsec, - text, - unordered-containers, - yaml, - }: - mkDerivation { - pname = "yamlkeysdiff"; - version = "0.5.1"; - sha256 = "13s5qiydxcwpp0j8xap556yrlmqs7bsi62ql2c9clr4hpbw8may7"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - containers - parsec - text - unordered-containers - yaml - ]; - description = "Compares the keys from two yaml files"; - license = "unknown"; - hydraPlatforms = lib.platforms.none; - mainProgram = "yamlkeysdiff"; - broken = true; - } - ) { }; - "yamlparse-applicative" = callPackage ( { mkDerivation, @@ -735356,45 +427047,6 @@ self: { } ) { }; - "yampa-glfw" = callPackage ( - { - mkDerivation, - base, - GLFW-b, - newtype, - OpenGL, - vector-space, - Yampa, - }: - mkDerivation { - pname = "yampa-glfw"; - version = "0.1.0.0"; - sha256 = "133nz8916c99bby6ikkh4kplx4hbwmqhdg0h2g5vsp25w67ndmjr"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - GLFW-b - newtype - OpenGL - Yampa - ]; - executableHaskellDepends = [ - base - GLFW-b - newtype - OpenGL - vector-space - Yampa - ]; - description = "Connects GLFW-b (GLFW 3+) with the Yampa FRP library"; - license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - mainProgram = "yampa-glfw-example"; - broken = true; - } - ) { }; - "yampa-gloss" = callPackage ( { mkDerivation, @@ -735420,80 +427072,6 @@ self: { } ) { }; - "yampa-glut" = callPackage ( - { - mkDerivation, - base, - GLUT, - newtype, - OpenGL, - vector-space, - Yampa-core, - }: - mkDerivation { - pname = "yampa-glut"; - version = "0.1.1.1"; - sha256 = "0163whn909s4zzmhgnbs0x90ky6kxvr6630g650i69hhqapbihpp"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - GLUT - newtype - OpenGL - vector-space - Yampa-core - ]; - description = "Connects Yampa and GLUT"; - license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "yampa-sdl2" = callPackage ( - { - mkDerivation, - base, - data-memocombinators, - linear, - sdl2, - StateVar, - text, - vector, - Yampa, - }: - mkDerivation { - pname = "yampa-sdl2"; - version = "0.1.0.2"; - sha256 = "17wcfb04dvdfcx8s21f36g4s3j3mvxgdfvm468gqqj3d3ks22zgp"; - libraryHaskellDepends = [ - base - data-memocombinators - linear - sdl2 - StateVar - text - vector - Yampa - ]; - testHaskellDepends = [ - base - data-memocombinators - linear - sdl2 - StateVar - text - vector - Yampa - ]; - description = "Yampa and SDL2 made easy"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "yampa-test" = callPackage ( { mkDerivation, @@ -735532,98 +427110,6 @@ self: { } ) { }; - "yampa2048" = callPackage ( - { - mkDerivation, - base, - gloss, - random, - Yampa, - }: - mkDerivation { - pname = "yampa2048"; - version = "0.1.0.0"; - sha256 = "03plrnzxsci4fk23h8a992n5al1jc93igf61pskmhx8zgl3j3qmz"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - gloss - random - Yampa - ]; - description = "2048 game clone using Yampa/Gloss"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - mainProgram = "yampa2048"; - broken = true; - } - ) { }; - - "yandex-translate" = callPackage ( - { - mkDerivation, - aeson, - base, - bytestring, - data-default-class, - exceptions, - lens, - lens-aeson, - text, - transformers, - unordered-containers, - wreq, - }: - mkDerivation { - pname = "yandex-translate"; - version = "0.1.0.0"; - sha256 = "17y7w4w7w7ygga2rbmbb9d2zwnf4fdk46skl008ggajgz0wls3ld"; - libraryHaskellDepends = [ - aeson - base - bytestring - data-default-class - exceptions - lens - lens-aeson - text - transformers - unordered-containers - wreq - ]; - description = "Bindings to Yandex translate API"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "yaop" = callPackage ( - { - mkDerivation, - base, - mtl, - template-haskell, - }: - mkDerivation { - pname = "yaop"; - version = "0.1.2.1"; - sha256 = "0z66ffxb89bksgqfji9x8msch9yk7nmbzm2qrcn5j3w4ylg7dpdr"; - revision = "1"; - editedCabalFile = "0p55j9q5idzw5bmpg0i4vkifaadzvf3fdhjd02bh2ym2y15g0csk"; - libraryHaskellDepends = [ - base - mtl - template-haskell - ]; - description = "Yet another option parser"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "yap" = callPackage ( { mkDerivation, base }: mkDerivation { @@ -735933,59 +427419,6 @@ self: { } ) { }; - "yarr" = callPackage ( - { - mkDerivation, - base, - deepseq, - fixed-vector, - ghc-prim, - missing-foreign, - primitive, - template-haskell, - }: - mkDerivation { - pname = "yarr"; - version = "1.4.0.2"; - sha256 = "1vr4xw77p7jlpmyb2dzgv8lfmljl2p5g6pfia56cln4hxg57kyfa"; - libraryHaskellDepends = [ - base - deepseq - fixed-vector - ghc-prim - missing-foreign - primitive - template-haskell - ]; - description = "Yet another array library"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "yarr-image-io" = callPackage ( - { - mkDerivation, - base, - libdevil, - yarr, - }: - mkDerivation { - pname = "yarr-image-io"; - version = "1.3.2.1"; - sha256 = "1wmmzw62wb5hz4qavy51wb3wwqn07zd6iiwsrzcck1jdxwy0p81x"; - libraryHaskellDepends = [ - base - yarr - ]; - librarySystemDepends = [ libdevil ]; - description = "Image IO for Yarr library"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - } - ) { inherit (pkgs) libdevil; }; - "yasi" = callPackage ( { mkDerivation, @@ -736028,89 +427461,6 @@ self: { } ) { }; - "yate" = callPackage ( - { - mkDerivation, - aeson, - attoparsec, - base, - hspec, - mtl, - scientific, - template-haskell, - text, - unordered-containers, - vector, - }: - mkDerivation { - pname = "yate"; - version = "0.1.0.3"; - sha256 = "0jghkn5ifq1yvnqy2a7k8k8sf0js3dk9zznmf79a6fl3npp6dim9"; - libraryHaskellDepends = [ - aeson - attoparsec - base - mtl - scientific - template-haskell - text - unordered-containers - vector - ]; - testHaskellDepends = [ - attoparsec - base - hspec - mtl - unordered-containers - vector - ]; - description = "Yet Another Template Engine"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "yavie" = callPackage ( - { - mkDerivation, - base, - Cabal, - directory, - event-driven, - filepath, - monads-tf, - process, - regexpr, - }: - mkDerivation { - pname = "yavie"; - version = "0.0.1"; - sha256 = "0h2gd0k8vbz8rl34j42ayvcqp0ksz6642k9pznrd28h145wk8gz5"; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base - event-driven - filepath - monads-tf - regexpr - ]; - executableHaskellDepends = [ - base - Cabal - directory - process - ]; - description = "yet another visual editor"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "yavie"; - } - ) { }; - "yaya" = callPackage ( { mkDerivation, @@ -736369,35 +427719,6 @@ self: { } ) { }; - "ycextra" = callPackage ( - { - mkDerivation, - base, - containers, - csv, - mtl, - uniplate, - yhccore, - }: - mkDerivation { - pname = "ycextra"; - version = "0.1"; - sha256 = "0aa0g2r7ck052wqkqqxzvkdqv9d7x3v7rqqd8iajwys9cvqny4m5"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base - containers - csv - mtl - uniplate - yhccore - ]; - description = "Additional utilities to work with Yhc Core"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "yeamer" = callPackage ( { mkDerivation, @@ -736544,77 +427865,6 @@ self: { } ) { }; - "yeller" = callPackage ( - { - mkDerivation, - aeson, - base, - bytestring, - containers, - criterion, - deepseq, - hspec, - http-client, - http-client-tls, - http-types, - network, - stm, - text, - unordered-containers, - }: - mkDerivation { - pname = "yeller"; - version = "0.1.0.4"; - sha256 = "0r9kcjax591v366m5nrm75cy97wr4ykzb7kj1bwsgss21k185a3j"; - libraryHaskellDepends = [ - aeson - base - bytestring - containers - http-client - http-client-tls - http-types - network - stm - text - unordered-containers - ]; - testHaskellDepends = [ - aeson - base - bytestring - containers - hspec - http-client - http-client-tls - http-types - network - stm - text - unordered-containers - ]; - benchmarkHaskellDepends = [ - aeson - base - bytestring - containers - criterion - deepseq - http-client - http-client-tls - http-types - network - stm - text - unordered-containers - ]; - description = "A Yeller Client For Haskell"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "yes-precure5-command" = callPackage ( { mkDerivation, @@ -736661,28 +427911,6 @@ self: { } ) { }; - "yeshql" = callPackage ( - { - mkDerivation, - base, - yeshql-core, - yeshql-hdbc, - }: - mkDerivation { - pname = "yeshql"; - version = "4.2.0.0"; - sha256 = "07wbblsyc1f2kc47s2z4sg4s7qmgn44kvpvdvq9cf59g5nvm4wkd"; - libraryHaskellDepends = [ - base - yeshql-core - yeshql-hdbc - ]; - description = "YesQL-style SQL database abstraction (legacy compatibility wrapper)"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "yeshql-core" = callPackage ( { mkDerivation, @@ -736724,100 +427952,6 @@ self: { } ) { }; - "yeshql-hdbc" = callPackage ( - { - mkDerivation, - base, - containers, - convertible, - filepath, - HDBC, - parsec, - stm, - tasty, - tasty-hunit, - tasty-quickcheck, - template-haskell, - yeshql-core, - }: - mkDerivation { - pname = "yeshql-hdbc"; - version = "4.2.0.0"; - sha256 = "0j0himcx5wicynnckzzn5qfbvk68cd4lm8skdz1i9jkqa54vwq2z"; - libraryHaskellDepends = [ - base - containers - convertible - filepath - HDBC - parsec - template-haskell - yeshql-core - ]; - testHaskellDepends = [ - base - containers - HDBC - stm - tasty - tasty-hunit - tasty-quickcheck - ]; - description = "YesQL-style SQL database abstraction (HDBC backend)"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "yeshql-postgresql-simple" = callPackage ( - { - mkDerivation, - base, - bytestring, - containers, - convertible, - filepath, - parsec, - postgresql-simple, - stm, - tasty, - tasty-hunit, - tasty-quickcheck, - template-haskell, - yeshql-core, - }: - mkDerivation { - pname = "yeshql-postgresql-simple"; - version = "4.2.0.0"; - sha256 = "1lmr7d6w68d10fkf43qdymm4qpy1lpyjmnqpd3nqv7v9vppc7zpm"; - libraryHaskellDepends = [ - base - containers - convertible - filepath - parsec - postgresql-simple - template-haskell - yeshql-core - ]; - testHaskellDepends = [ - base - bytestring - containers - postgresql-simple - stm - tasty - tasty-hunit - tasty-quickcheck - ]; - description = "YesQL-style SQL database abstraction (postgresql-simple backend)"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "yesod" = callPackage ( { mkDerivation, @@ -736879,172 +428013,6 @@ self: { } ) { }; - "yesod-alerts" = callPackage ( - { - mkDerivation, - alerts, - base, - blaze-html, - blaze-markup, - safe, - text, - yesod-core, - }: - mkDerivation { - pname = "yesod-alerts"; - version = "0.1.3.0"; - sha256 = "1x7l1h4xziqg6fjjp5qnqdmbnrpiryzv37q322llnmsi1f89zvzv"; - libraryHaskellDepends = [ - alerts - base - blaze-html - blaze-markup - safe - text - yesod-core - ]; - description = "Alert messages for the Yesod framework"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "yesod-angular" = callPackage ( - { - mkDerivation, - aeson, - base, - containers, - shakespeare, - template-haskell, - text, - transformers, - yesod, - }: - mkDerivation { - pname = "yesod-angular"; - version = "0.1.0.2"; - sha256 = "07lv5bxgbw4xf1v9ydsmgjh0vvn5fdz0914x04nlsixi7nsz9x97"; - libraryHaskellDepends = [ - aeson - base - containers - shakespeare - template-haskell - text - transformers - yesod - ]; - description = "Angular JS integratoin"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "yesod-angular-ui" = callPackage ( - { - mkDerivation, - base, - blaze-html, - containers, - directory, - hjsmin, - mtl, - resourcet, - shakespeare, - template-haskell, - text, - transformers, - yesod, - yesod-core, - }: - mkDerivation { - pname = "yesod-angular-ui"; - version = "0.1.1.0"; - sha256 = "08rr8w4bibjjchgfp1j9gywldr8v10vg8ddmkxj6dx5b6w2kvm8k"; - revision = "1"; - editedCabalFile = "1nak49v5ggsmpgawa8q8li88vf1nw6kn0f9fii7d6xbnfxpx6w6x"; - libraryHaskellDepends = [ - base - blaze-html - containers - directory - hjsmin - mtl - resourcet - shakespeare - template-haskell - text - transformers - yesod - yesod-core - ]; - description = "Angular Helpers"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "yesod-articles" = callPackage ( - { - mkDerivation, - base, - blaze-html, - dates, - directory, - filepath, - hspec, - regex-compat, - shakespeare, - template-haskell, - text, - th-lift-instances, - yesod, - yesod-core, - yesod-test, - }: - mkDerivation { - pname = "yesod-articles"; - version = "0.1.0.0"; - sha256 = "1jm5m1gq9b2r4q2hf0mi0j0z8rs0klg02pksm5czz25lghdd0b0b"; - libraryHaskellDepends = [ - base - blaze-html - dates - directory - filepath - regex-compat - shakespeare - template-haskell - text - th-lift-instances - yesod - yesod-core - ]; - testHaskellDepends = [ - base - blaze-html - dates - directory - filepath - hspec - regex-compat - shakespeare - template-haskell - text - th-lift-instances - yesod - yesod-core - yesod-test - ]; - description = "Automatically generate article previews for a yesod site"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "yesod-auth" = callPackage ( { mkDerivation, @@ -737140,140 +428108,6 @@ self: { } ) { }; - "yesod-auth-account" = callPackage ( - { - mkDerivation, - base, - blaze-html, - bytestring, - hspec, - monad-logger, - mtl, - nonce, - persistent, - persistent-sqlite, - pwstore-fast, - resourcet, - text, - xml-conduit, - yesod, - yesod-auth, - yesod-core, - yesod-form, - yesod-persistent, - yesod-test, - }: - mkDerivation { - pname = "yesod-auth-account"; - version = "1.4.3"; - sha256 = "1bv4hs8xrp94677apgdgjln87inzx0rjjl7zss03n0k4ipapgw79"; - libraryHaskellDepends = [ - base - blaze-html - bytestring - mtl - nonce - persistent - pwstore-fast - text - yesod-auth - yesod-core - yesod-form - yesod-persistent - ]; - testHaskellDepends = [ - base - bytestring - hspec - monad-logger - mtl - persistent-sqlite - resourcet - text - xml-conduit - yesod - yesod-auth - yesod-test - ]; - description = "An account authentication plugin for Yesod"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "yesod-auth-account-fork" = callPackage ( - { - mkDerivation, - aeson, - base, - blaze-html, - bytestring, - email-validate, - hspec, - http-types, - monad-logger, - mtl, - nonce, - persistent, - persistent-sqlite, - pwstore-fast, - random, - resourcet, - tagged, - text, - xml-conduit, - yesod, - yesod-auth, - yesod-core, - yesod-form, - yesod-persistent, - yesod-test, - }: - mkDerivation { - pname = "yesod-auth-account-fork"; - version = "2.0.3"; - sha256 = "0l6rps340fcz4pql2qvj4220hqmxcwjar517hbdavi17swv3cnw7"; - libraryHaskellDepends = [ - aeson - base - blaze-html - bytestring - email-validate - http-types - mtl - nonce - persistent - pwstore-fast - random - tagged - text - yesod-auth - yesod-core - yesod-form - yesod-persistent - ]; - testHaskellDepends = [ - base - bytestring - hspec - monad-logger - mtl - persistent-sqlite - resourcet - text - xml-conduit - yesod - yesod-auth - yesod-test - ]; - description = "An account authentication plugin for Yesod"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "yesod-auth-basic" = callPackage ( { mkDerivation, @@ -737316,180 +428150,6 @@ self: { } ) { }; - "yesod-auth-bcrypt" = callPackage ( - { - mkDerivation, - base, - bcrypt, - bytestring, - text, - yesod-auth, - yesod-core, - yesod-form, - yesod-persistent, - }: - mkDerivation { - pname = "yesod-auth-bcrypt"; - version = "0.2.0"; - sha256 = "06pbzk09zfnr290sczjpqjrfbbz1c6qig402siakp7lnizav4xz5"; - libraryHaskellDepends = [ - base - bcrypt - bytestring - text - yesod-auth - yesod-core - yesod-form - yesod-persistent - ]; - description = "BCrypt salted and hashed passwords in a database as auth for yesod"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "yesod-auth-bcryptdb" = callPackage ( - { - mkDerivation, - aeson, - base, - bcrypt, - bytestring, - persistent, - text, - yesod-auth, - yesod-core, - yesod-form, - yesod-persistent, - }: - mkDerivation { - pname = "yesod-auth-bcryptdb"; - version = "0.3.0.1"; - sha256 = "0n8h8j5xxnsj2mmj0dwcfrf3wmn9p670092va83w40dbapj98jw0"; - libraryHaskellDepends = [ - aeson - base - bcrypt - bytestring - persistent - text - yesod-auth - yesod-core - yesod-form - yesod-persistent - ]; - description = "Authentication plugin for Yesod"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "yesod-auth-deskcom" = callPackage ( - { - mkDerivation, - aeson, - base, - base64-bytestring, - byteable, - bytestring, - cipher-aes, - cprng-aes, - crypto-api, - crypto-random, - cryptohash, - data-default, - http-conduit, - http-types, - template-haskell, - text, - time, - transformers, - yesod-auth, - yesod-core, - }: - mkDerivation { - pname = "yesod-auth-deskcom"; - version = "1.4.0"; - sha256 = "17lpkwrfc10rdmvkjg6qmbi7gysjjhqyh7n5d1mxgxhzxzqbi06w"; - libraryHaskellDepends = [ - aeson - base - base64-bytestring - byteable - bytestring - cipher-aes - cprng-aes - crypto-api - crypto-random - cryptohash - data-default - http-conduit - http-types - template-haskell - text - time - transformers - yesod-auth - yesod-core - ]; - description = "Desk.com remote authentication support for Yesod apps."; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "yesod-auth-fb" = callPackage ( - { - mkDerivation, - aeson, - base, - bytestring, - conduit, - fb, - http-conduit, - resourcet, - shakespeare, - text, - time, - transformers, - unliftio, - wai, - yesod-auth, - yesod-core, - yesod-fb, - }: - mkDerivation { - pname = "yesod-auth-fb"; - version = "1.10.1"; - sha256 = "01ckr3zs9bqwwskah2fd7rkpirifyl16v1xk062qx87zcwkf408r"; - libraryHaskellDepends = [ - aeson - base - bytestring - conduit - fb - http-conduit - resourcet - shakespeare - text - time - transformers - unliftio - wai - yesod-auth - yesod-core - yesod-fb - ]; - description = "Authentication backend for Yesod using Facebook"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "yesod-auth-hashdb" = callPackage ( { mkDerivation, @@ -737557,190 +428217,6 @@ self: { } ) { }; - "yesod-auth-hmac-keccak" = callPackage ( - { - mkDerivation, - aeson, - base, - bytestring, - cryptonite, - mtl, - persistent, - random, - shakespeare, - text, - yesod-auth, - yesod-core, - yesod-form, - yesod-persistent, - yesod-static, - }: - mkDerivation { - pname = "yesod-auth-hmac-keccak"; - version = "0.0.0.5"; - sha256 = "1va81j58abhfi2hwgiac8d819yisy4g6nxq6l6gh0qvsg5r36j0g"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - aeson - base - bytestring - cryptonite - mtl - persistent - random - shakespeare - text - yesod-auth - yesod-core - yesod-form - yesod-persistent - yesod-static - ]; - description = "An account authentication plugin for yesod with encrypted token transfer"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "yesod-auth-kerberos" = callPackage ( - { - mkDerivation, - authenticate-kerberos, - base, - bytestring, - shakespeare, - text, - transformers, - yesod-auth, - yesod-core, - yesod-form, - }: - mkDerivation { - pname = "yesod-auth-kerberos"; - version = "1.4.3"; - sha256 = "0jdvvwzrnvzkwk97xg1d8ilybzyjz8cbdc5k3zjii82sc624ma5i"; - libraryHaskellDepends = [ - authenticate-kerberos - base - bytestring - shakespeare - text - transformers - yesod-auth - yesod-core - yesod-form - ]; - description = "Kerberos Authentication for Yesod"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "yesod-auth-ldap" = callPackage ( - { - mkDerivation, - authenticate-ldap, - base, - bytestring, - hamlet, - LDAP, - text, - transformers, - yesod-auth, - yesod-core, - yesod-form, - }: - mkDerivation { - pname = "yesod-auth-ldap"; - version = "0.0.3"; - sha256 = "1ps2vk2pvni3h4pk4v2siqb3a714r09ahgr5d1l89hspb9fbzfyk"; - libraryHaskellDepends = [ - authenticate-ldap - base - bytestring - hamlet - LDAP - text - transformers - yesod-auth - yesod-core - yesod-form - ]; - description = "LDAP Authentication for Yesod"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "yesod-auth-ldap-mediocre" = callPackage ( - { - mkDerivation, - aeson, - base, - LDAP, - text, - yesod-auth, - yesod-core, - yesod-form, - }: - mkDerivation { - pname = "yesod-auth-ldap-mediocre"; - version = "0.1.1"; - sha256 = "02s3xyg4vg63cj8z5q023m2gxrcjz9b1hs14k558dnc5w6iq1wpc"; - libraryHaskellDepends = [ - aeson - base - LDAP - text - yesod-auth - yesod-core - yesod-form - ]; - description = "Very simlple LDAP auth for yesod"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "yesod-auth-ldap-native" = callPackage ( - { - mkDerivation, - base, - either, - ldap-client, - semigroups, - text, - transformers, - yesod-auth, - yesod-core, - yesod-form, - }: - mkDerivation { - pname = "yesod-auth-ldap-native"; - version = "0.2.0.0"; - sha256 = "1z3xgwcfgmn76qg6yhlsgffzjknlpgj7aqka4f19q2d3y3frz62x"; - libraryHaskellDepends = [ - base - either - ldap-client - semigroups - text - transformers - yesod-auth - yesod-core - yesod-form - ]; - testHaskellDepends = [ base ]; - description = "Yesod LDAP authentication plugin"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "yesod-auth-lti13" = callPackage ( { mkDerivation, @@ -737849,41 +428325,6 @@ self: { } ) { }; - "yesod-auth-nopassword" = callPackage ( - { - mkDerivation, - base, - blaze-markup, - http-types, - pwstore-fast, - text, - uuid, - yesod-auth, - yesod-core, - yesod-form, - }: - mkDerivation { - pname = "yesod-auth-nopassword"; - version = "0.1.1.1"; - sha256 = "1cpp1kyrbqcl8kvdxwwqmmj5739h96d0hbj1i5gbhmwyrcray78f"; - libraryHaskellDepends = [ - base - blaze-markup - http-types - pwstore-fast - text - uuid - yesod-auth - yesod-core - yesod-form - ]; - description = "A plugin for Yesod to provide email-only authentication"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "yesod-auth-oauth" = callPackage ( { mkDerivation, @@ -738003,54 +428444,23 @@ self: { libraryHaskellDepends = [ aeson base - base64-bytestring - classy-prelude-yesod - containers - cryptonite - http-client - jose-jwt - oidc-client - shakespeare - text - time - unordered-containers - yesod-auth - yesod-core - yesod-form - ]; - description = "A yesod-auth plugin for multi-tenant SSO via OpenID Connect"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "yesod-auth-pam" = callPackage ( - { - mkDerivation, - base, - hamlet, - pam, - text, - yesod-auth, - yesod-core, - yesod-form, - }: - mkDerivation { - pname = "yesod-auth-pam"; - version = "1.0.0.0"; - sha256 = "02cpg67ldjvv9sb6jr7liq3ac20rqc6lq1wjybii5vsah8hmvkhy"; - libraryHaskellDepends = [ - base - hamlet - pam + base64-bytestring + classy-prelude-yesod + containers + cryptonite + http-client + jose-jwt + oidc-client + shakespeare text + time + unordered-containers yesod-auth yesod-core yesod-form ]; - description = "Provides PAM authentication module"; - license = lib.licenses.mit; + description = "A yesod-auth plugin for multi-tenant SSO via OpenID Connect"; + license = lib.licenses.bsd3; hydraPlatforms = lib.platforms.none; broken = true; } @@ -738194,82 +428604,6 @@ self: { } ) { }; - "yesod-auth-smbclient" = callPackage ( - { - mkDerivation, - base, - hamlet, - sys-auth-smbclient, - text, - yesod-auth, - yesod-core, - yesod-form, - }: - mkDerivation { - pname = "yesod-auth-smbclient"; - version = "2.0.0.0"; - sha256 = "108bmfb68rvmx3q21hz55jbic331fnplcx062vlbk6sx3jyjqgaa"; - libraryHaskellDepends = [ - base - hamlet - sys-auth-smbclient - text - yesod-auth - yesod-core - yesod-form - ]; - description = "Authentication plugin for Yesod using smbclient"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "yesod-auth-zendesk" = callPackage ( - { - mkDerivation, - base, - base16-bytestring, - bytestring, - cryptohash, - data-default, - http-conduit, - http-types, - template-haskell, - text, - time, - transformers, - wai, - yesod-auth, - yesod-core, - }: - mkDerivation { - pname = "yesod-auth-zendesk"; - version = "1.2.1"; - sha256 = "0jjfydbgjcymd9x47g0acjdml55f3n40193lvl4l9l02q54g9qnb"; - libraryHaskellDepends = [ - base - base16-bytestring - bytestring - cryptohash - data-default - http-conduit - http-types - template-haskell - text - time - transformers - wai - yesod-auth - yesod-core - ]; - description = "Zendesk remote authentication support for Yesod apps"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "yesod-autoreload" = callPackage ( { mkDerivation, @@ -738397,41 +428731,6 @@ self: { } ) { }; - "yesod-bootstrap" = callPackage ( - { - mkDerivation, - base, - blaze-html, - blaze-markup, - bootstrap-types, - shakespeare, - text, - transformers, - yesod-core, - yesod-elements, - }: - mkDerivation { - pname = "yesod-bootstrap"; - version = "0.4"; - sha256 = "149am5qkhczkymhv9053z3j06pl89aplsrcqz9kspcpnmyivlpcc"; - libraryHaskellDepends = [ - base - blaze-html - blaze-markup - bootstrap-types - shakespeare - text - transformers - yesod-core - yesod-elements - ]; - description = "Bootstrap widgets for yesod"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "yesod-colonnade" = callPackage ( { mkDerivation, @@ -738511,92 +428810,6 @@ self: { } ) { }; - "yesod-content-pdf" = callPackage ( - { - mkDerivation, - base, - blaze-builder, - blaze-html, - bytestring, - conduit, - data-default, - directory, - hspec, - hspec-expectations, - network-uri, - process, - temporary, - transformers, - utf8-string, - yesod-core, - }: - mkDerivation { - pname = "yesod-content-pdf"; - version = "0.2.0.5"; - sha256 = "0cfg4jvqq5ix9csla7fzawiiivhcvwh2lqmydz5rii95rfys6kww"; - libraryHaskellDepends = [ - base - blaze-builder - blaze-html - bytestring - conduit - data-default - directory - network-uri - process - temporary - transformers - yesod-core - ]; - testHaskellDepends = [ - base - blaze-html - hspec - hspec-expectations - utf8-string - ]; - description = "PDF Content Type for Yesod"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "yesod-continuations" = callPackage ( - { - mkDerivation, - base, - datetime, - hashable, - hashmap, - stm, - system-uuid, - template-haskell, - yesod, - }: - mkDerivation { - pname = "yesod-continuations"; - version = "0.1"; - sha256 = "1pzc0v18fapfbwd4pn4nchmsp4nvnrkm33av83zqfb5gyzhlk1in"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - datetime - hashable - hashmap - stm - system-uuid - template-haskell - yesod - ]; - description = "Continuations for Yesod"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "yesodContinuationsTest"; - } - ) { }; - "yesod-core" = callPackage ( { mkDerivation, @@ -738736,94 +428949,6 @@ self: { } ) { }; - "yesod-crud" = callPackage ( - { - mkDerivation, - base, - classy-prelude, - containers, - MissingH, - monad-control, - persistent, - random, - safe, - stm, - uuid, - yesod-core, - yesod-form, - yesod-persistent, - }: - mkDerivation { - pname = "yesod-crud"; - version = "0.1.7"; - sha256 = "0f817q19cqrn0pphgnsndxmjrcqsvplj6s7c82jna31w33w3h40m"; - libraryHaskellDepends = [ - base - classy-prelude - containers - MissingH - monad-control - persistent - random - safe - stm - uuid - yesod-core - yesod-form - yesod-persistent - ]; - description = "Generic administrative CRUD operations as a Yesod subsite"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "yesod-crud-persist" = callPackage ( - { - mkDerivation, - base, - either, - esqueleto, - microlens, - microlens-th, - persistent, - text, - time, - transformers, - wai, - yesod-core, - yesod-form, - yesod-markdown, - yesod-persistent, - }: - mkDerivation { - pname = "yesod-crud-persist"; - version = "0.3"; - sha256 = "1jdai6pwa52fc8z1znrfq2wz3jh39ws0wskaf2a83zdph23hgp3b"; - libraryHaskellDepends = [ - base - either - esqueleto - microlens - microlens-th - persistent - text - time - transformers - wai - yesod-core - yesod-form - yesod-markdown - yesod-persistent - ]; - description = "Flexible CRUD subsite usable with Yesod and Persistent"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "yesod-csp" = callPackage ( { mkDerivation, @@ -738878,79 +429003,6 @@ self: { } ) { }; - "yesod-datatables" = callPackage ( - { - mkDerivation, - aeson, - attoparsec, - base, - bytestring, - data-default, - HUnit, - monad-control, - persistent, - persistent-sqlite, - persistent-template, - QuickCheck, - resourcet, - template-haskell, - test-framework, - test-framework-hunit, - test-framework-quickcheck2, - text, - transformers, - yesod, - yesod-auth, - yesod-core, - yesod-default, - yesod-form, - yesod-static, - }: - mkDerivation { - pname = "yesod-datatables"; - version = "0.1.1"; - sha256 = "0yn6fky83069pp4i13dlx9dlk4ck2k4c6sizgnrwqcjhm39m1bz6"; - libraryHaskellDepends = [ - aeson - attoparsec - base - bytestring - data-default - persistent - text - yesod - yesod-auth - yesod-core - yesod-default - yesod-form - yesod-static - ]; - testHaskellDepends = [ - aeson - attoparsec - base - bytestring - HUnit - monad-control - persistent - persistent-sqlite - persistent-template - QuickCheck - resourcet - template-haskell - test-framework - test-framework-hunit - test-framework-quickcheck2 - text - transformers - ]; - description = "Yesod plugin for DataTables (jQuery grid plugin)"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "yesod-default" = callPackage ( { mkDerivation, @@ -738970,83 +429022,6 @@ self: { } ) { }; - "yesod-dsl" = callPackage ( - { - mkDerivation, - aeson, - aeson-pretty, - alex, - array, - base, - bytestring, - Cabal, - containers, - directory, - filepath, - happy, - hscolour, - MissingH, - mtl, - shakespeare, - strict, - syb, - text, - transformers, - uniplate, - vector, - }: - mkDerivation { - pname = "yesod-dsl"; - version = "0.2.1"; - sha256 = "1a52smq8ypz99mc0qahyr2njadz115li8axkkhkzr7594wzxycs0"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson - aeson-pretty - array - base - bytestring - Cabal - containers - directory - filepath - hscolour - MissingH - mtl - shakespeare - strict - syb - text - transformers - uniplate - vector - ]; - libraryToolDepends = [ - alex - happy - ]; - executableHaskellDepends = [ - array - base - Cabal - containers - directory - filepath - MissingH - mtl - shakespeare - strict - text - ]; - description = "DSL for generating Yesod subsite to manage an RDBMS;"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "yesod-dsl"; - broken = true; - } - ) { }; - "yesod-elements" = callPackage ( { mkDerivation, @@ -739103,157 +429078,6 @@ self: { } ) { }; - "yesod-examples" = callPackage ( - { - mkDerivation, - base, - blaze-html, - bytestring, - data-object, - data-object-yaml, - hamlet, - persistent-sqlite, - persistent-template, - sqlite, - stm, - text, - transformers, - yesod, - yesod-core, - yesod-static, - }: - mkDerivation { - pname = "yesod-examples"; - version = "0.9.0.1"; - sha256 = "1ikrx9ys8civmf1m12fbms258xa7aj55rr02x3rjwchykmzianp4"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - blaze-html - bytestring - data-object - data-object-yaml - hamlet - persistent-sqlite - persistent-template - stm - text - transformers - yesod - yesod-core - yesod-static - ]; - executableSystemDepends = [ sqlite ]; - description = "Example programs using the Yesod Web Framework. (deprecated)"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { inherit (pkgs) sqlite; }; - - "yesod-fast-devel" = callPackage ( - { - mkDerivation, - ansi-terminal, - base, - bytestring, - directory, - filepath, - fsnotify, - Glob, - optparse-applicative, - process, - pureMD5, - stm, - system-filepath, - temporary, - text, - }: - mkDerivation { - pname = "yesod-fast-devel"; - version = "0.1.2.0"; - sha256 = "1z56y5l6mgwi7ghcn1ycxhgpzximg0fbs652jlaxdy03rzxizv29"; - isLibrary = false; - isExecutable = true; - enableSeparateDataOutput = true; - executableHaskellDepends = [ - ansi-terminal - base - bytestring - directory - filepath - fsnotify - Glob - optparse-applicative - process - pureMD5 - stm - system-filepath - temporary - text - ]; - description = "Fast live-reloading for yesod applications"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "yesod-fast-devel"; - broken = true; - } - ) { }; - - "yesod-fay" = callPackage ( - { - mkDerivation, - aeson, - base, - bytestring, - data-default, - directory, - fay, - fay-dom, - filepath, - monad-loops, - process, - pureMD5, - shakespeare, - template-haskell, - text, - transformers, - utf8-string, - yesod-core, - yesod-form, - yesod-static, - }: - mkDerivation { - pname = "yesod-fay"; - version = "0.10.0"; - sha256 = "1qpcfiscwhb5rcdm335v6qi17rjxc0zc0qpv26lmyikdslj4jr9s"; - libraryHaskellDepends = [ - aeson - base - bytestring - data-default - directory - fay - fay-dom - filepath - monad-loops - process - pureMD5 - shakespeare - template-haskell - text - transformers - utf8-string - yesod-core - yesod-form - yesod-static - ]; - description = "Utilities for using the Fay Haskell-to-JS compiler with Yesod"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "yesod-fb" = callPackage ( { mkDerivation, @@ -739480,39 +429304,6 @@ self: { } ) { }; - "yesod-form-json" = callPackage ( - { - mkDerivation, - aeson, - base, - bytestring, - containers, - text, - unordered-containers, - yesod-core, - yesod-form, - }: - mkDerivation { - pname = "yesod-form-json"; - version = "0.0.1"; - sha256 = "1hr53p4sp0zm7l1ap07kv2q6hi1xli74k13h0df4cmf9y2xn7bxz"; - libraryHaskellDepends = [ - aeson - base - bytestring - containers - text - unordered-containers - yesod-core - yesod-form - ]; - description = "Extension for Yesod web framework to handle JSON requests as applicative forms"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "yesod-form-multi" = callPackage ( { mkDerivation, @@ -739544,39 +429335,6 @@ self: { } ) { }; - "yesod-form-richtext" = callPackage ( - { - mkDerivation, - base, - blaze-builder, - blaze-html, - shakespeare, - text, - xss-sanitize, - yesod-core, - yesod-form, - }: - mkDerivation { - pname = "yesod-form-richtext"; - version = "0.1.0.2"; - sha256 = "0im3yfy0sdx60hn5cynh8pxp1fq2f64xgaizhxk0rd824i34lycn"; - libraryHaskellDepends = [ - base - blaze-builder - blaze-html - shakespeare - text - xss-sanitize - yesod-core - yesod-form - ]; - description = "Various rich-text WYSIWYG editors for Yesod forms"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "yesod-gitrepo" = callPackage ( { mkDerivation, @@ -739687,97 +429445,6 @@ self: { } ) { }; - "yesod-ip" = callPackage ( - { - mkDerivation, - base, - http-api-data, - ip, - path-pieces, - persistent, - text, - yesod-core, - yesod-form, - }: - mkDerivation { - pname = "yesod-ip"; - version = "0.5.1"; - sha256 = "1gla2w9xi88y9d149n2r18xj5y1bmaykf258nl7x4hrkl0zgdq62"; - revision = "2"; - editedCabalFile = "0yvi3mmknky12dqgjpfwa9nd6sn0n02xal6qcmr37dvnwnl4w87x"; - libraryHaskellDepends = [ - base - http-api-data - ip - path-pieces - persistent - text - yesod-core - yesod-form - ]; - description = "Code for using the ip package with yesod"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "yesod-job-queue" = callPackage ( - { - mkDerivation, - aeson, - api-field-json-th, - base, - bytestring, - cron, - file-embed, - hedis, - lens, - monad-control, - monad-logger, - stm, - text, - time, - transformers, - uuid, - yesod, - yesod-core, - yesod-persistent, - }: - mkDerivation { - pname = "yesod-job-queue"; - version = "0.3.0.4"; - sha256 = "0vyd6mkajshr6f1xg5587ixzrgnwdmc8mf0slbz7rfcmwm4yx3wz"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson - api-field-json-th - base - bytestring - cron - file-embed - hedis - lens - monad-control - monad-logger - stm - text - time - transformers - uuid - yesod - yesod-core - yesod-persistent - ]; - testHaskellDepends = [ base ]; - description = "Background jobs library for Yesod"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "yesod-json" = callPackage ( { mkDerivation, @@ -739867,73 +429534,6 @@ self: { } ) { }; - "yesod-lucid" = callPackage ( - { - mkDerivation, - base, - lucid, - monads-tf, - text, - yesod-core, - }: - mkDerivation { - pname = "yesod-lucid"; - version = "0.1"; - sha256 = "1ymmpi9g3pjl23ymdjwiv748lnq1hyjq24la2ffgwrm4b6f41xip"; - libraryHaskellDepends = [ - base - lucid - monads-tf - text - yesod-core - ]; - description = "Lucid support for Yesod"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "yesod-mangopay" = callPackage ( - { - mkDerivation, - base, - containers, - http-conduit, - http-types, - lifted-base, - mangopay, - persistent-template, - text, - time, - yesod, - yesod-core, - }: - mkDerivation { - pname = "yesod-mangopay"; - version = "1.12"; - sha256 = "0m17jch0xqckb7007czzixkfv8c1ymj050xia71a8m0niqg0sg55"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - containers - http-conduit - http-types - lifted-base - mangopay - persistent-template - text - time - yesod - yesod-core - ]; - description = "Yesod library for MangoPay API access"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "yesod-markdown" = callPackage ( { mkDerivation, @@ -740205,76 +429805,6 @@ self: { } ) { }; - "yesod-paginate" = callPackage ( - { - mkDerivation, - base, - template-haskell, - yesod, - }: - mkDerivation { - pname = "yesod-paginate"; - version = "0.1"; - sha256 = "088m7prg774wdh8fp7zljxj65zj5krl4pggl63anv2wk7nlw27py"; - libraryHaskellDepends = [ - base - template-haskell - yesod - ]; - description = "Pagination for Yesod sites"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "yesod-pagination" = callPackage ( - { - mkDerivation, - base, - esqueleto, - hspec, - monad-logger, - persistent, - persistent-sqlite, - resource-pool, - resourcet, - shakespeare, - utf8-string, - wai-test, - yesod, - yesod-test, - }: - mkDerivation { - pname = "yesod-pagination"; - version = "2.0.0"; - sha256 = "0d42b8y7zpl624d7wa2caarni9g10hg14xsbamlkykki3bl197m1"; - libraryHaskellDepends = [ - base - esqueleto - yesod - ]; - testHaskellDepends = [ - base - hspec - monad-logger - persistent - persistent-sqlite - resource-pool - resourcet - shakespeare - utf8-string - wai-test - yesod - yesod-test - ]; - description = "Pagination in Yesod"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "yesod-paginator" = callPackage ( { mkDerivation, @@ -740324,30 +429854,6 @@ self: { } ) { }; - "yesod-paypal-rest" = callPackage ( - { - mkDerivation, - base, - paypal-rest-client, - time, - yesod-core, - }: - mkDerivation { - pname = "yesod-paypal-rest"; - version = "0.1.0"; - sha256 = "1xydgphl1s6173k3kqkcw9s8w5lp0pjahacgd3vd3yc20y2hb5mh"; - libraryHaskellDepends = [ - base - paypal-rest-client - time - yesod-core - ]; - description = "Yesod plugin to use PayPal with the paypal-rest-client library"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "yesod-persistent" = callPackage ( { mkDerivation, @@ -740396,663 +429902,6 @@ self: { } ) { }; - "yesod-platform" = callPackage ( - { - mkDerivation, - ansi-terminal, - ansi-wl-pprint, - asn1-encoding, - asn1-parse, - asn1-types, - attoparsec-conduit, - authenticate, - auto-update, - base, - base16-bytestring, - base64-bytestring, - blaze-builder, - blaze-builder-conduit, - blaze-html, - blaze-markup, - byteable, - byteorder, - cereal, - cipher-aes, - cipher-des, - cipher-rc4, - clientsession, - conduit, - conduit-extra, - connection, - cookie, - cprng-aes, - crypto-api, - crypto-cipher-types, - crypto-numbers, - crypto-pubkey, - crypto-pubkey-types, - crypto-random, - cryptohash, - cryptohash-conduit, - css-text, - data-default, - data-default-class, - data-default-instances-base, - data-default-instances-containers, - data-default-instances-dlist, - data-default-instances-old-locale, - dlist, - email-validate, - entropy, - esqueleto, - exceptions, - fast-logger, - file-embed, - hamlet, - hjsmin, - hspec, - hspec-expectations, - html-conduit, - http-client, - http-client-tls, - http-conduit, - http-date, - http-reverse-proxy, - http-types, - language-javascript, - lifted-base, - mime-mail, - mime-types, - mmorph, - monad-control, - monad-logger, - monad-loops, - nats, - network-conduit, - optparse-applicative, - path-pieces, - pem, - persistent, - persistent-template, - publicsuffixlist, - pwstore-fast, - quickcheck-io, - resource-pool, - resourcet, - safe, - securemem, - semigroups, - setenv, - SHA, - shakespeare, - shakespeare-css, - shakespeare-i18n, - shakespeare-js, - shakespeare-text, - silently, - simple-sendfile, - skein, - socks, - stm-chans, - streaming-commons, - stringsearch, - system-fileio, - system-filepath, - tagged, - tagsoup, - tagstream-conduit, - tf-random, - tls, - transformers-base, - utf8-string, - void, - wai, - wai-app-static, - wai-extra, - wai-logger, - wai-test, - warp, - warp-tls, - word8, - x509, - x509-store, - x509-system, - x509-validation, - xml-conduit, - xml-types, - xss-sanitize, - yaml, - yesod, - yesod-auth, - yesod-auth-hashdb, - yesod-core, - yesod-form, - yesod-persistent, - yesod-routes, - yesod-static, - yesod-test, - }: - mkDerivation { - pname = "yesod-platform"; - version = "1.2.13.3"; - sha256 = "1j71m9bqam7dl1ghhwvkw5ispp8z06hbkvdxslx5sca998vx9awv"; - libraryHaskellDepends = [ - ansi-terminal - ansi-wl-pprint - asn1-encoding - asn1-parse - asn1-types - attoparsec-conduit - authenticate - auto-update - base - base16-bytestring - base64-bytestring - blaze-builder - blaze-builder-conduit - blaze-html - blaze-markup - byteable - byteorder - cereal - cipher-aes - cipher-des - cipher-rc4 - clientsession - conduit - conduit-extra - connection - cookie - cprng-aes - crypto-api - crypto-cipher-types - crypto-numbers - crypto-pubkey - crypto-pubkey-types - crypto-random - cryptohash - cryptohash-conduit - css-text - data-default - data-default-class - data-default-instances-base - data-default-instances-containers - data-default-instances-dlist - data-default-instances-old-locale - dlist - email-validate - entropy - esqueleto - exceptions - fast-logger - file-embed - hamlet - hjsmin - hspec - hspec-expectations - html-conduit - http-client - http-client-tls - http-conduit - http-date - http-reverse-proxy - http-types - language-javascript - lifted-base - mime-mail - mime-types - mmorph - monad-control - monad-logger - monad-loops - nats - network-conduit - optparse-applicative - path-pieces - pem - persistent - persistent-template - publicsuffixlist - pwstore-fast - quickcheck-io - resource-pool - resourcet - safe - securemem - semigroups - setenv - SHA - shakespeare - shakespeare-css - shakespeare-i18n - shakespeare-js - shakespeare-text - silently - simple-sendfile - skein - socks - stm-chans - streaming-commons - stringsearch - system-fileio - system-filepath - tagged - tagsoup - tagstream-conduit - tf-random - tls - transformers-base - utf8-string - void - wai - wai-app-static - wai-extra - wai-logger - wai-test - warp - warp-tls - word8 - x509 - x509-store - x509-system - x509-validation - xml-conduit - xml-types - xss-sanitize - yaml - yesod - yesod-auth - yesod-auth-hashdb - yesod-core - yesod-form - yesod-persistent - yesod-routes - yesod-static - yesod-test - ]; - description = "Meta package for Yesod (deprecated)"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "yesod-pnotify" = callPackage ( - { - mkDerivation, - aeson, - base, - shakespeare, - text, - transformers, - yesod, - yesod-form, - }: - mkDerivation { - pname = "yesod-pnotify"; - version = "1.1.3.2"; - sha256 = "06alz3naq6ypba6j4izx7ivmc7dm586np58bh4qrf6hq0s1mf64y"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson - base - shakespeare - text - transformers - yesod - yesod-form - ]; - executableHaskellDepends = [ - aeson - base - shakespeare - text - transformers - yesod - yesod-form - ]; - description = "Yet another getMessage/setMessage using pnotify jquery plugins"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "sample"; - broken = true; - } - ) { }; - - "yesod-pure" = callPackage ( - { - mkDerivation, - base, - fast-logger, - text, - yesod, - yesod-core, - }: - mkDerivation { - pname = "yesod-pure"; - version = "0.1.0.2"; - sha256 = "0v3xvhk5nxc2y3c21y6h7w6lg5vm1s2vzf9f02qw8gj928vsidzg"; - libraryHaskellDepends = [ - base - fast-logger - text - yesod - yesod-core - ]; - description = "Yesod in pure Haskell: no Template Haskell or QuasiQuotes (deprecated)"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "yesod-purescript" = callPackage ( - { - mkDerivation, - aeson, - base, - bytestring, - containers, - data-default, - formatting, - fsnotify, - mtl, - purescript, - regex-tdfa, - regex-tdfa-text, - shakespeare, - system-fileio, - system-filepath, - template-haskell, - text, - time, - transformers, - yesod-core, - }: - mkDerivation { - pname = "yesod-purescript"; - version = "0.0.5"; - sha256 = "0arij86cfzy5hh82gc5l4i3s3z4qa9rfrnj9nrp6q25qhvgiclmy"; - libraryHaskellDepends = [ - aeson - base - bytestring - containers - data-default - formatting - fsnotify - mtl - purescript - regex-tdfa - regex-tdfa-text - shakespeare - system-fileio - system-filepath - template-haskell - text - time - transformers - yesod-core - ]; - description = "PureScript integration for Yesod"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "yesod-raml" = callPackage ( - { - mkDerivation, - aeson, - base, - bytestring, - containers, - data-default, - hspec, - network-uri, - regex-posix, - template-haskell, - text, - th-lift, - unordered-containers, - vector, - yaml, - yesod-core, - }: - mkDerivation { - pname = "yesod-raml"; - version = "0.2.0"; - sha256 = "0v6rar1fzq93c2k2m0az8sn4h0di62c9qq91bdjknhgdsnny6pj3"; - libraryHaskellDepends = [ - aeson - base - bytestring - containers - data-default - network-uri - regex-posix - template-haskell - text - th-lift - unordered-containers - vector - yaml - yesod-core - ]; - testHaskellDepends = [ - aeson - base - bytestring - containers - data-default - hspec - network-uri - regex-posix - template-haskell - text - th-lift - unordered-containers - vector - yaml - yesod-core - ]; - description = "RAML style route definitions for Yesod"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "yesod-raml-bin" = callPackage ( - { - mkDerivation, - base, - blaze-html, - blaze-markup, - bytestring, - containers, - http-types, - optparse-applicative, - shakespeare, - template-haskell, - text, - wai, - warp, - yaml, - yesod-core, - yesod-markdown, - yesod-raml, - yesod-raml-docs, - yesod-raml-mock, - }: - mkDerivation { - pname = "yesod-raml-bin"; - version = "0.1.2"; - sha256 = "0y22y1vn35v7xq8fl5m9zw2msa12y2s3p3q2ffx15gmk7wc7mznc"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - blaze-html - blaze-markup - bytestring - containers - http-types - optparse-applicative - shakespeare - template-haskell - text - wai - warp - yaml - yesod-core - yesod-markdown - yesod-raml - yesod-raml-docs - yesod-raml-mock - ]; - description = "The raml helper executable"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - mainProgram = "yesod-raml-bin"; - } - ) { }; - - "yesod-raml-docs" = callPackage ( - { - mkDerivation, - base, - bytestring, - containers, - shakespeare, - template-haskell, - text, - yaml, - yesod-markdown, - yesod-raml, - }: - mkDerivation { - pname = "yesod-raml-docs"; - version = "0.1.1"; - sha256 = "0ldw21m6mffm8vwn63kqd9ksp8zadvbw136s3xwamfqqwcfnw9cv"; - libraryHaskellDepends = [ - base - bytestring - containers - shakespeare - template-haskell - text - yaml - yesod-markdown - yesod-raml - ]; - description = "A html documentation generator library for RAML"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "yesod-raml-mock" = callPackage ( - { - mkDerivation, - aeson, - base, - bytestring, - containers, - hspec, - network-uri, - regex-posix, - template-haskell, - text, - unordered-containers, - vector, - yaml, - yesod-core, - yesod-raml, - yesod-test, - }: - mkDerivation { - pname = "yesod-raml-mock"; - version = "0.1.1"; - sha256 = "1lrd1sds6lzh977zbl96qx9klwlplsw3kq3x3pl0z9lix8mzhscy"; - libraryHaskellDepends = [ - base - bytestring - containers - template-haskell - text - yaml - yesod-core - yesod-raml - ]; - testHaskellDepends = [ - aeson - base - bytestring - containers - hspec - network-uri - regex-posix - template-haskell - text - unordered-containers - vector - yaml - yesod-core - yesod-raml - yesod-test - ]; - description = "A mock-handler generator library from RAML"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "yesod-recaptcha" = callPackage ( - { - mkDerivation, - base, - bytestring, - data-default, - http-conduit, - http-types, - lifted-base, - network, - network-info, - resourcet, - text, - wai, - yesod-auth, - yesod-core, - yesod-form, - }: - mkDerivation { - pname = "yesod-recaptcha"; - version = "1.4"; - sha256 = "1dvbpzcfwmjv836i8g0gv80dj1iwb9gnvgwg3m5h2hi95249m471"; - libraryHaskellDepends = [ - base - bytestring - data-default - http-conduit - http-types - lifted-base - network - network-info - resourcet - text - wai - yesod-auth - yesod-core - yesod-form - ]; - description = "Dead simple support for reCAPTCHA on Yesod applications"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "yesod-recaptcha2" = callPackage ( { mkDerivation, @@ -741082,50 +429931,6 @@ self: { } ) { }; - "yesod-routes" = callPackage ( - { - mkDerivation, - base, - bytestring, - containers, - hspec, - HUnit, - path-pieces, - template-haskell, - text, - vector, - }: - mkDerivation { - pname = "yesod-routes"; - version = "1.2.0.7"; - sha256 = "00i2nysbhmxnq0dvfdjx6nhxy680ya38nx8gcgm13fv2xwdd2p6j"; - revision = "1"; - editedCabalFile = "0kiksxf2aqhk2lcj37qg4k3dqfavw5arz6l4ajpa70jw3zcjyqhd"; - libraryHaskellDepends = [ - base - containers - path-pieces - template-haskell - text - vector - ]; - testHaskellDepends = [ - base - bytestring - containers - hspec - HUnit - path-pieces - template-haskell - text - ]; - description = "Efficient routing for Yesod. (deprecated)"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "yesod-routes-flow" = callPackage ( { mkDerivation, @@ -741175,143 +429980,6 @@ self: { } ) { }; - "yesod-routes-typescript" = callPackage ( - { - mkDerivation, - attoparsec, - base, - classy-prelude, - system-fileio, - text, - yesod-core, - yesod-routes, - }: - mkDerivation { - pname = "yesod-routes-typescript"; - version = "0.3.0.0"; - sha256 = "1gn0fvspgwhzpg7pfaj029vdhlm8ypx9kyn2wdz2wzm5jkl7bnn9"; - libraryHaskellDepends = [ - attoparsec - base - classy-prelude - system-fileio - text - yesod-core - yesod-routes - ]; - description = "generate TypeScript routes for Yesod"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "yesod-rst" = callPackage ( - { - mkDerivation, - base, - blaze-html, - directory, - hamlet, - pandoc, - persistent, - text, - xss-sanitize, - yesod-core, - yesod-form, - }: - mkDerivation { - pname = "yesod-rst"; - version = "0.2.3"; - sha256 = "1dv8xq7hndpk3d86dxwjjplv0la8fn32pwzb5l00db9cg420jp71"; - libraryHaskellDepends = [ - base - blaze-html - directory - hamlet - pandoc - persistent - text - xss-sanitize - yesod-core - yesod-form - ]; - description = "Tools for using reStructuredText (RST) in a yesod application"; - license = "GPL"; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "yesod-s3" = callPackage ( - { - mkDerivation, - base, - bytestring, - conduit, - conduit-extra, - gd, - hS3, - mtl, - network, - resourcet, - text, - yesod-core, - }: - mkDerivation { - pname = "yesod-s3"; - version = "0.1.1"; - sha256 = "0vl24qa2aidrr7a082yhnscava06x6jf5y5x9fi9jdry3rnkhzbv"; - libraryHaskellDepends = [ - base - bytestring - conduit - conduit-extra - gd - hS3 - mtl - network - resourcet - text - yesod-core - ]; - description = "Simple Helper Library for using Amazon's Simple Storage Service (S3) with Yesod"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "yesod-sass" = callPackage ( - { - mkDerivation, - base, - data-default, - hsass, - shakespeare, - template-haskell, - text, - yesod-core, - }: - mkDerivation { - pname = "yesod-sass"; - version = "0.1.2.0"; - sha256 = "0mxk007csmzbrx169jlbg07vqm7ixjrfvjy6xa2lfd5g1xpc7s94"; - libraryHaskellDepends = [ - base - data-default - hsass - shakespeare - template-haskell - text - yesod-core - ]; - description = "A simple quasiquoter to include sass code in yesod"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "yesod-session-persist" = callPackage ( { mkDerivation, @@ -741390,50 +430058,6 @@ self: { } ) { }; - "yesod-session-redis" = callPackage ( - { - mkDerivation, - base, - binary, - bytestring, - containers, - cookie, - hedis, - mtl, - network, - pool-conduit, - random, - text, - time, - wai, - yesod-core, - }: - mkDerivation { - pname = "yesod-session-redis"; - version = "0.1.0"; - sha256 = "06ilc1xjic66xj46nib8y6cq7n8hyc27kzz9zd001d12qh342brv"; - libraryHaskellDepends = [ - base - binary - bytestring - containers - cookie - hedis - mtl - network - pool-conduit - random - text - time - wai - yesod-core - ]; - description = "Redis-Powered Sessions for Haskell"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "yesod-sitemap" = callPackage ( { mkDerivation, @@ -741577,109 +430201,6 @@ self: { } ) { }; - "yesod-static-angular" = callPackage ( - { - mkDerivation, - aeson, - base, - blaze-builder, - blaze-markup, - bytestring, - data-default, - directory, - filepath, - hamlet, - hspec, - HUnit, - language-javascript, - mime-types, - shakespeare, - template-haskell, - text, - yesod-core, - yesod-static, - yesod-test, - }: - mkDerivation { - pname = "yesod-static-angular"; - version = "0.1.8"; - sha256 = "1srvw1fd8jy15zshssmx5183q01aafrv5wyb26w70v3y18kfzcwp"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson - base - blaze-builder - blaze-markup - bytestring - data-default - directory - filepath - hamlet - language-javascript - mime-types - shakespeare - template-haskell - text - yesod-core - yesod-static - ]; - testHaskellDepends = [ - base - bytestring - hamlet - hspec - HUnit - shakespeare - template-haskell - text - yesod-core - yesod-static - yesod-test - ]; - description = "Yesod generators for embedding AngularJs code into yesod-static at compile time"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "yesod-static-remote" = callPackage ( - { - mkDerivation, - base, - bytestring, - directory, - filepath, - http-client, - http-client-tls, - template-haskell, - yesod-static, - }: - mkDerivation { - pname = "yesod-static-remote"; - version = "0.0.0.0"; - sha256 = "03ry2712hg80w97p7k1r1gspzs3xyds28mapdl7axqzk9zpw1j75"; - libraryHaskellDepends = [ - base - bytestring - directory - filepath - http-client - http-client-tls - template-haskell - yesod-static - ]; - testHaskellDepends = [ - base - yesod-static - ]; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "yesod-static-streamly" = callPackage ( { mkDerivation, @@ -741989,237 +430510,6 @@ self: { } ) { }; - "yesod-test-json" = callPackage ( - { - mkDerivation, - aeson, - base, - bytestring, - conduit, - hspec, - http-types, - HUnit, - text, - transformers, - wai, - wai-test, - yesod-default, - }: - mkDerivation { - pname = "yesod-test-json"; - version = "0.2.0.0"; - sha256 = "1z6cps85fypgymfmq0z67f1z5cr2x9l9hf4wrkncvkivbcb330bh"; - libraryHaskellDepends = [ - aeson - base - bytestring - conduit - hspec - http-types - HUnit - text - transformers - wai - wai-test - yesod-default - ]; - description = "Utility functions for testing JSON web services written in Yesod"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "yesod-text-markdown" = callPackage ( - { - mkDerivation, - aeson, - base, - markdown, - persistent, - shakespeare, - text, - yesod-core, - yesod-form, - yesod-persistent, - }: - mkDerivation { - pname = "yesod-text-markdown"; - version = "0.1.10"; - sha256 = "1p3xcghlazxdqwgs4d1gsbmpjpmhmx8dcxjhha5hxww4ilyqpviw"; - libraryHaskellDepends = [ - aeson - base - markdown - persistent - shakespeare - text - yesod-core - yesod-form - yesod-persistent - ]; - description = "Yesod support for Text.Markdown."; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "yesod-tls" = callPackage ( - { - mkDerivation, - base, - fast-logger, - monad-logger, - template-haskell, - unix, - wai, - wai-extra, - warp, - warp-tls, - yesod, - }: - mkDerivation { - pname = "yesod-tls"; - version = "1.4.1"; - sha256 = "0zvhchiky51pwhbcj4c86xsa98nwfw86188jxhnk2jwdgpdb9j68"; - libraryHaskellDepends = [ - base - fast-logger - monad-logger - template-haskell - unix - wai - wai-extra - warp - warp-tls - yesod - ]; - description = "Provides main functions using warp-tls for yesod projects"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "yesod-transloadit" = callPackage ( - { - mkDerivation, - aeson, - base, - byteable, - bytestring, - containers, - cryptohash, - hspec, - lens, - lens-aeson, - mime, - network-uri, - old-locale, - shakespeare, - text, - time, - transformers, - unordered-containers, - yesod, - yesod-core, - yesod-form, - yesod-test, - }: - mkDerivation { - pname = "yesod-transloadit"; - version = "0.7.1.0"; - sha256 = "1qmd53abbkypl5a7szgh1nm4sxz62rv9vbcgsj2jd9n28qg7nkph"; - libraryHaskellDepends = [ - aeson - base - byteable - bytestring - cryptohash - lens - lens-aeson - mime - network-uri - old-locale - shakespeare - text - time - transformers - unordered-containers - yesod - yesod-core - yesod-form - ]; - testHaskellDepends = [ - aeson - base - containers - hspec - mime - network-uri - old-locale - text - yesod - yesod-form - yesod-test - ]; - description = "Transloadit support for Yesod"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "yesod-vend" = callPackage ( - { - mkDerivation, - base, - blaze-html, - hamlet, - monad-logger, - persistent, - persistent-sqlite, - resourcet, - text, - yesod, - yesod-form, - }: - mkDerivation { - pname = "yesod-vend"; - version = "0.3.0.0"; - sha256 = "163ah4g6k62hypm2kj1aiwnzfjx1ngss6iqfg467vjhg71s5l1j9"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - blaze-html - hamlet - persistent - text - yesod - yesod-form - ]; - executableHaskellDepends = [ - base - blaze-html - hamlet - monad-logger - persistent - persistent-sqlite - resourcet - text - yesod - yesod-form - ]; - description = "Simple CRUD classes for easy view creation for Yesod"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "vend-test-user"; - broken = true; - } - ) { }; - "yesod-websockets" = callPackage ( { mkDerivation, @@ -742276,39 +430566,6 @@ self: { } ) { }; - "yesod-worker" = callPackage ( - { - mkDerivation, - base, - blaze-markup, - bytestring, - containers, - hedis, - keenser, - thyme, - yesod, - }: - mkDerivation { - pname = "yesod-worker"; - version = "0.1.0.0"; - sha256 = "1nnaz2sn6xmbya0cjnykkiahhhqq7lcs68j4cjca0x3zada6j1zq"; - libraryHaskellDepends = [ - base - blaze-markup - bytestring - containers - hedis - keenser - thyme - yesod - ]; - testHaskellDepends = [ base ]; - description = "Initial project template from stack"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "yet-another-logger" = callPackage ( { mkDerivation, @@ -742397,41 +430654,6 @@ self: { } ) { }; - "yggdrasil" = callPackage ( - { - mkDerivation, - base, - cryptonite, - hspec, - memory, - mtl, - QuickCheck, - transformers, - }: - mkDerivation { - pname = "yggdrasil"; - version = "0.1.0.0"; - sha256 = "1w1nlas5fb7zmd0kvzb68ihylpsg7pf084vd1xk60l6n60cc9m4j"; - libraryHaskellDepends = [ - base - cryptonite - memory - mtl - transformers - ]; - testHaskellDepends = [ - base - cryptonite - hspec - QuickCheck - ]; - description = "Executable specifications of composable cryptographic protocols"; - license = lib.licenses.agpl3Only; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "yggdrasil-schema" = callPackage ( { mkDerivation, @@ -742512,74 +430734,6 @@ self: { } ) { }; - "yhccore" = callPackage ( - { - mkDerivation, - base, - containers, - mtl, - pretty, - uniplate, - }: - mkDerivation { - pname = "yhccore"; - version = "0.9.1"; - sha256 = "18gjzlpxn0hp723ybjgq1zdbpl35iqphs7b8r5x9ddbkm435sw93"; - libraryHaskellDepends = [ - base - containers - mtl - pretty - uniplate - ]; - description = "Yhc's Internal Core language"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "yhseq" = callPackage ( - { - mkDerivation, - base, - containers, - hspec, - hspec-discover, - vector, - }: - mkDerivation { - pname = "yhseq"; - version = "0.3.0.1"; - sha256 = "1daipppqia4ig7xa9wxy2g3gcxrcwhxm1g6j5l81v56vfh0smg9r"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - containers - vector - ]; - executableHaskellDepends = [ - base - containers - vector - ]; - testHaskellDepends = [ - base - containers - hspec - hspec-discover - vector - ]; - testToolDepends = [ hspec-discover ]; - description = "Calculation of YH sequence system"; - license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; - mainProgram = "yhseq"; - broken = true; - } - ) { }; - "yi" = callPackage ( { mkDerivation, @@ -742597,82 +430751,35 @@ self: { yi-mode-javascript, yi-rope, }: - mkDerivation { - pname = "yi"; - version = "0.19.3"; - sha256 = "0lhrq34wjl58cxki3a2sbck620ak2zpkcxqbxqdffd4g2bjrpkdl"; - configureFlags = [ - "-fpango" - "-fvty" - ]; - isLibrary = false; - isExecutable = true; - enableSeparateDataOutput = true; - executableHaskellDepends = [ - base - microlens-platform - mtl - optparse-applicative - yi-core - yi-frontend-pango - yi-frontend-vty - yi-keymap-emacs - yi-keymap-vim - yi-misc-modes - yi-mode-haskell - yi-mode-javascript - yi-rope - ]; - description = "Yi editor"; - license = lib.licenses.gpl2Only; - mainProgram = "yi"; - } - ) { }; - - "yi-contrib" = callPackage ( - { - mkDerivation, - base, - containers, - directory, - filepath, - lens, - mtl, - old-locale, - oo-prototypes, - split, - text, - time, - transformers-base, - yi, - yi-language, - yi-rope, - }: - mkDerivation { - pname = "yi-contrib"; - version = "0.10.1"; - sha256 = "053hsahkxwg2mnf3h4j95gj18x5791dqqji43l310i4l7mliw91k"; - libraryHaskellDepends = [ + mkDerivation { + pname = "yi"; + version = "0.19.3"; + sha256 = "0lhrq34wjl58cxki3a2sbck620ak2zpkcxqbxqdffd4g2bjrpkdl"; + configureFlags = [ + "-fpango" + "-fvty" + ]; + isLibrary = false; + isExecutable = true; + enableSeparateDataOutput = true; + executableHaskellDepends = [ base - containers - directory - filepath - lens + microlens-platform mtl - old-locale - oo-prototypes - split - text - time - transformers-base - yi - yi-language + optparse-applicative + yi-core + yi-frontend-pango + yi-frontend-vty + yi-keymap-emacs + yi-keymap-vim + yi-misc-modes + yi-mode-haskell + yi-mode-javascript yi-rope ]; - description = "Add-ons to Yi, the Haskell-Scriptable Editor"; + description = "Yi editor"; license = lib.licenses.gpl2Only; - hydraPlatforms = lib.platforms.none; - broken = true; + mainProgram = "yi"; } ) { }; @@ -743348,27 +431455,6 @@ self: { } ) { }; - "yi-monokai" = callPackage ( - { - mkDerivation, - base, - yi, - }: - mkDerivation { - pname = "yi-monokai"; - version = "0.1.1.2"; - sha256 = "1nghfyiy8jdz144nbw0c2cdy8n6xyjmk31g6z24jk8dij7iwb60l"; - libraryHaskellDepends = [ - base - yi - ]; - description = "Monokai colour theme for the Yi text editor"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "yi-rope" = callPackage ( { mkDerivation, @@ -743459,48 +431545,6 @@ self: { } ) { }; - "yi-solarized" = callPackage ( - { - mkDerivation, - base, - yi, - }: - mkDerivation { - pname = "yi-solarized"; - version = "0.1.1"; - sha256 = "17ifjm9vgrhv00bll5zj9siz08fng1626bff9q5sfbvzd7y6i9nc"; - libraryHaskellDepends = [ - base - yi - ]; - description = "Solarized colour theme for the Yi text editor"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "yi-spolsky" = callPackage ( - { - mkDerivation, - base, - yi, - }: - mkDerivation { - pname = "yi-spolsky"; - version = "0.1"; - sha256 = "152ys2x416322c13nxmi25wpilq0ddd6hj36mr25jaacf1qszv6q"; - libraryHaskellDepends = [ - base - yi - ]; - description = "Spolsky colour theme for the Yi text editor"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "yi-vty" = callPackage ( { mkDerivation }: mkDerivation { @@ -743513,30 +431557,6 @@ self: { } ) { }; - "yices" = callPackage ( - { - mkDerivation, - base, - parsec, - process, - }: - mkDerivation { - pname = "yices"; - version = "0.0.0.12"; - sha256 = "1k3q789dapk0c311x72w4r008rnbfz3cvajahxq208gy8iyjx9iz"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base - parsec - process - ]; - description = "Haskell programming interface to Yices SMT solver"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "yices-easy" = callPackage ( { mkDerivation, @@ -743707,73 +431727,6 @@ self: { } ) { }; - "yjftp" = callPackage ( - { - mkDerivation, - base, - directory, - ftphs, - haskeline, - hsConfigure, - mtl, - process, - unix, - }: - mkDerivation { - pname = "yjftp"; - version = "0.3.6.5"; - sha256 = "11iwz7mrx3f72i3d4l9zvqb8g0722aj00s7h7wa06y4l69rfnj6m"; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base - directory - ftphs - haskeline - mtl - process - unix - ]; - executableHaskellDepends = [ hsConfigure ]; - description = "CUI FTP client like 'ftp', 'ncftp'"; - license = "GPL"; - hydraPlatforms = lib.platforms.none; - mainProgram = "yjftp"; - } - ) { }; - - "yjftp-libs" = callPackage ( - { - mkDerivation, - base, - directory, - ftphs, - mtl, - process, - unix, - }: - mkDerivation { - pname = "yjftp-libs"; - version = "0.0.2"; - sha256 = "1rlw9i1a034lg7gc60fkxjh6kc5yrbapc745gwl1ddi2wisy3h24"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - directory - ftphs - mtl - process - unix - ]; - description = "CUI FTP client like 'ftp', 'ncftp'"; - license = "GPL"; - hydraPlatforms = lib.platforms.none; - mainProgram = "yjftp-ni"; - } - ) { }; - "yjsvg" = callPackage ( { mkDerivation, @@ -743905,78 +431858,6 @@ self: { } ) { }; - "yoko" = callPackage ( - { - mkDerivation, - base, - bifunctors, - containers, - invariant, - kinds, - mtl, - records, - semigroups, - template-haskell, - th-sccs, - type-cereal, - type-digits, - type-equality, - type-functions, - type-ord, - type-ord-spine-cereal, - type-spine, - }: - mkDerivation { - pname = "yoko"; - version = "2.0"; - sha256 = "07ivcx6xbmjpyj7053fp151k47y7pllwjddxxrwayrlx2qx456z6"; - libraryHaskellDepends = [ - base - bifunctors - containers - invariant - kinds - mtl - records - semigroups - template-haskell - th-sccs - type-cereal - type-digits - type-equality - type-functions - type-ord - type-ord-spine-cereal - type-spine - ]; - description = "Generic Programming with Disbanded Data Types"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "york-lava" = callPackage ( - { - mkDerivation, - base, - containers, - haskell98, - }: - mkDerivation { - pname = "york-lava"; - version = "0.2"; - sha256 = "1rpkxlfvk84zl965ik5bpplzcskd96wsnicp66ixnfs9bkqfj7qb"; - libraryHaskellDepends = [ - base - containers - haskell98 - ]; - description = "A library for digital circuit description"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "yosys-rtl" = callPackage ( { mkDerivation, @@ -744047,82 +431928,6 @@ self: { } ) { }; - "yql" = callPackage ( - { - mkDerivation, - aeson, - base, - base64-bytestring, - bytestring, - containers, - cryptohash, - data-default, - ecma262, - exceptions, - hslogger, - http-conduit, - http-types, - hxt, - lens, - opendatatable, - parsec, - SHA, - text, - transformers, - unordered-containers, - uri-template, - utf8-string, - uuid, - vector, - zlib, - }: - mkDerivation { - pname = "yql"; - version = "0.0.0"; - sha256 = "1qwk78adndk2m48inxklqj1rc58wx4jrdim60gwy7ax2d3w92pg6"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson - base - base64-bytestring - bytestring - containers - cryptohash - data-default - ecma262 - exceptions - hslogger - http-conduit - http-types - lens - opendatatable - parsec - SHA - text - transformers - unordered-containers - uri-template - utf8-string - uuid - vector - zlib - ]; - executableHaskellDepends = [ - base - containers - ecma262 - exceptions - hxt - opendatatable - ]; - description = "A YQL engine to execute Open Data Tables"; - license = lib.licenses.bsd2; - hydraPlatforms = lib.platforms.none; - mainProgram = "yql"; - } - ) { }; - "yst" = callPackage ( { mkDerivation, @@ -744232,104 +432037,6 @@ self: { } ) { }; - "yu-core" = callPackage ( - { - mkDerivation, - base, - blaze-markup, - hspec, - yu-auth, - yu-utils, - }: - mkDerivation { - pname = "yu-core"; - version = "0.1.1.2"; - sha256 = "17wdvwa6hs38asvsysv2g0xzjc654479c0229hggpyq17flfzwjs"; - libraryHaskellDepends = [ - base - yu-auth - yu-utils - ]; - testHaskellDepends = [ - base - blaze-markup - hspec - yu-utils - ]; - description = "The core of Yu"; - license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "yu-launch" = callPackage ( - { - mkDerivation, - base, - cmdargs, - yaml, - yu-auth, - yu-core, - yu-utils, - }: - mkDerivation { - pname = "yu-launch"; - version = "0.1.1.0"; - sha256 = "0nh40iy79m6jc4z5x773sra7i6jr21w80809vbh5xvjhg9l4aym8"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - cmdargs - yaml - yu-auth - yu-core - yu-utils - ]; - description = "The launcher for Yu"; - license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - mainProgram = "yu-launch"; - } - ) { }; - - "yu-tool" = callPackage ( - { - mkDerivation, - base, - cmdargs, - directory, - echo, - filepath, - process, - yu-auth, - yu-utils, - }: - mkDerivation { - pname = "yu-tool"; - version = "0.1.1.30"; - sha256 = "00pkw78pfwl089608y6ambw522v6qgnp7fgky98jdb9p5kbv6nyi"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - cmdargs - directory - echo - filepath - process - yu-auth - yu-utils - ]; - description = "Tool for Yu"; - license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - mainProgram = "yu"; - broken = true; - } - ) { }; - "yu-utils" = callPackage ( { mkDerivation, @@ -744405,75 +432112,6 @@ self: { } ) { }; - "yuiGrid" = callPackage ( - { mkDerivation, base }: - mkDerivation { - pname = "yuiGrid"; - version = "0.1"; - sha256 = "005l0rr9l0l81706drq57nww4h0j4rw8n0ncpnkdb139941gywzq"; - libraryHaskellDepends = [ base ]; - description = "Grids defined by layout hints and implemented on top of Yahoo grids"; - license = "unknown"; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "yuuko" = callPackage ( - { - mkDerivation, - base, - bytestring, - containers, - curl, - deepseq, - directory, - filepath, - haskell98, - mtl, - network, - parsec, - }: - mkDerivation { - pname = "yuuko"; - version = "2010.11.28"; - sha256 = "01pf0mg6lgm34src1mfz3qj41vyhmvi50yjyv72zwamd0g7sx374"; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base - bytestring - containers - curl - deepseq - directory - filepath - haskell98 - mtl - network - parsec - ]; - executableHaskellDepends = [ - base - bytestring - containers - curl - deepseq - directory - filepath - haskell98 - mtl - network - parsec - ]; - description = "A transcendental HTML parser gently wrapping the HXT library"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "yuuko"; - } - ) { }; - "yx" = callPackage ( { mkDerivation, @@ -744507,136 +432145,6 @@ self: { } ) { }; - "yxdb-utils" = callPackage ( - { - mkDerivation, - array, - attoparsec, - base, - bimap, - binary, - binary-conduit, - bytestring, - Codec-Compression-LZF, - conduit, - conduit-combinators, - conduit-extra, - containers, - csv-conduit, - Decimal, - directory, - exceptions, - ghc-prim, - HUnit, - lens, - monad-loops, - mtl, - newtype, - old-locale, - parsec, - primitive, - QuickCheck, - quickcheck-instances, - reinterpret-cast, - resourcet, - test-framework, - test-framework-hunit, - test-framework-quickcheck2, - text, - text-binary, - time, - transformers, - vector, - xml-conduit, - }: - mkDerivation { - pname = "yxdb-utils"; - version = "0.1.0.1"; - sha256 = "05aba4fdpqx7sar7yrw4gg341wzfhhlbvx7453ns8mccqhx9dag8"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - array - attoparsec - base - bimap - binary - binary-conduit - bytestring - Codec-Compression-LZF - conduit - conduit-combinators - conduit-extra - containers - csv-conduit - Decimal - directory - exceptions - ghc-prim - lens - monad-loops - mtl - newtype - old-locale - parsec - primitive - reinterpret-cast - resourcet - text - text-binary - time - transformers - vector - xml-conduit - ]; - executableHaskellDepends = [ base ]; - testHaskellDepends = [ - array - attoparsec - base - bimap - binary - binary-conduit - bytestring - Codec-Compression-LZF - conduit - conduit-combinators - conduit-extra - containers - csv-conduit - Decimal - directory - exceptions - ghc-prim - HUnit - lens - monad-loops - mtl - newtype - old-locale - parsec - primitive - QuickCheck - quickcheck-instances - reinterpret-cast - resourcet - test-framework - test-framework-hunit - test-framework-quickcheck2 - text - text-binary - time - transformers - vector - xml-conduit - ]; - description = "Utilities for reading and writing Alteryx .yxdb files"; - license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "z3" = callPackage ( @@ -744679,123 +432187,6 @@ self: { inherit (pkgs) z3; }; - "z3-encoding" = callPackage ( - { - mkDerivation, - base, - containers, - hspec, - mtl, - z3, - }: - mkDerivation { - pname = "z3-encoding"; - version = "0.3.0.0"; - sha256 = "0ysxh1jnz6s1zx3fcfpbvj78qkqi2zninfc1y7is2m7ix3493rxp"; - libraryHaskellDepends = [ - base - containers - mtl - z3 - ]; - testHaskellDepends = [ - base - containers - hspec - z3 - ]; - description = "High-level assertion encoding to Z3 solver"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "z85" = callPackage ( - { - mkDerivation, - attoparsec, - attoparsec-binary, - base, - bytestring, - pipes, - pipes-bytestring, - pipes-text, - QuickCheck, - quickcheck-instances, - tasty, - tasty-hunit, - tasty-quickcheck, - text, - vector-sized, - }: - mkDerivation { - pname = "z85"; - version = "0.0.2"; - sha256 = "0wy58m3l027saz5v4x76g63cpbm1n1cxx1bsdy4z71fdiscfi4hm"; - libraryHaskellDepends = [ - attoparsec - attoparsec-binary - base - bytestring - pipes - pipes-bytestring - pipes-text - QuickCheck - text - vector-sized - ]; - testHaskellDepends = [ - attoparsec - attoparsec-binary - base - bytestring - pipes - pipes-bytestring - pipes-text - QuickCheck - quickcheck-instances - tasty - tasty-hunit - tasty-quickcheck - text - vector-sized - ]; - description = "Implementation of the z85 binary codec"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "zabt" = callPackage ( - { - mkDerivation, - base, - containers, - tasty, - tasty-hspec, - }: - mkDerivation { - pname = "zabt"; - version = "0.4.0.0"; - sha256 = "0azskw8176n0d61j6l4ag84nn57wrgmdzj0xk9r56zg3hxps4z9r"; - libraryHaskellDepends = [ - base - containers - ]; - testHaskellDepends = [ - base - tasty - tasty-hspec - ]; - description = "Simple-minded abstract binding trees"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "zalgo" = callPackage ( { mkDerivation, base }: mkDerivation { @@ -744808,66 +432199,6 @@ self: { } ) { }; - "zampolit" = callPackage ( - { - mkDerivation, - base, - cmdargs, - containers, - directory, - filepath, - HSH, - MissingH, - old-locale, - parsec, - time, - }: - mkDerivation { - pname = "zampolit"; - version = "0.3"; - sha256 = "1bhp98bn41lqxdl48xxcb4b4fknva2aigq5gxffcha535igdmdy3"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - cmdargs - containers - directory - filepath - HSH - MissingH - old-locale - parsec - time - ]; - description = "A tool for checking how much work is done on group projects"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "zampolit"; - broken = true; - } - ) { }; - - "zasni-gerna" = callPackage ( - { - mkDerivation, - base, - papillon, - }: - mkDerivation { - pname = "zasni-gerna"; - version = "0.0.7.1"; - sha256 = "131lfik05gkr7mqnxf2ibbv5nxjy2x76r5mpvwgzj06nq4v9n527"; - libraryHaskellDepends = [ - base - papillon - ]; - description = "lojban parser (zasni gerna)"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "zbar" = callPackage ( { mkDerivation, @@ -745060,71 +432391,6 @@ self: { } ) { }; - "zendesk-api" = callPackage ( - { - mkDerivation, - aeson, - base, - bytestring, - case-insensitive, - conduit, - connection, - data-default, - failure, - http-client, - http-client-tls, - http-conduit, - http-types, - monad-logger, - mtl, - pem, - template-haskell, - text, - time, - tls, - transformers, - unordered-containers, - x509, - x509-store, - x509-validation, - }: - mkDerivation { - pname = "zendesk-api"; - version = "0.1.0.0"; - sha256 = "1x6801i5rw6a0nfdihi04bmka8qww9c77r7ygbhp3zx1hqdpdmmc"; - libraryHaskellDepends = [ - aeson - base - bytestring - case-insensitive - conduit - connection - data-default - failure - http-client - http-client-tls - http-conduit - http-types - monad-logger - mtl - pem - template-haskell - text - time - tls - transformers - unordered-containers - x509 - x509-store - x509-validation - ]; - description = "Zendesk API for Haskell programming language"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "zenhack-prelude" = callPackage ( { mkDerivation, base }: mkDerivation { @@ -745139,51 +432405,6 @@ self: { } ) { }; - "zeno" = callPackage ( - { - mkDerivation, - array, - base, - containers, - directory, - ghc, - ghc-paths, - mtl, - parallel, - process, - random, - text, - transformers, - }: - mkDerivation { - pname = "zeno"; - version = "0.2.0.1"; - sha256 = "03jwhgi9n9iv7zpn8nwkdyvsybsksnhsji8k2ma9rzayk36aba6v"; - isLibrary = false; - isExecutable = true; - enableSeparateDataOutput = true; - executableHaskellDepends = [ - array - base - containers - directory - ghc - ghc-paths - mtl - parallel - process - random - text - transformers - ]; - description = "An automated proof system for Haskell programs"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - mainProgram = "zeno"; - broken = true; - } - ) { }; - "zeolite-lang" = callPackage ( { mkDerivation, @@ -745387,27 +432608,6 @@ self: { } ) { }; - "zero" = callPackage ( - { - mkDerivation, - base, - semigroups, - }: - mkDerivation { - pname = "zero"; - version = "0.1.5"; - sha256 = "1yb00wcgcyckzlf8kdxsdxpqra0r1sakwdph7pv9naa6q8zhhllw"; - libraryHaskellDepends = [ - base - semigroups - ]; - description = "Semigroups with absorption"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "zerobin" = callPackage ( { mkDerivation, @@ -745448,214 +432648,6 @@ self: { } ) { }; - "zeromq-haskell" = callPackage ( - { - mkDerivation, - base, - bytestring, - containers, - QuickCheck, - test-framework, - test-framework-quickcheck2, - zeromq, - }: - mkDerivation { - pname = "zeromq-haskell"; - version = "0.8.4"; - sha256 = "0lvjszi08r5wm5ch03153y7lir6cdgqr2gnhq45j4b0kid6gkpv3"; - libraryHaskellDepends = [ - base - bytestring - containers - ]; - librarySystemDepends = [ zeromq ]; - testHaskellDepends = [ - base - bytestring - containers - QuickCheck - test-framework - test-framework-quickcheck2 - ]; - description = "Bindings to ZeroMQ 2.1.x"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { inherit (pkgs) zeromq; }; - - "zeromq3-conduit" = callPackage ( - { - mkDerivation, - base, - bytestring, - conduit, - lifted-base, - monad-control, - mtl, - resourcet, - transformers, - zeromq3-haskell, - }: - mkDerivation { - pname = "zeromq3-conduit"; - version = "0.1.0.0"; - sha256 = "1n6xl5izdkbl2mb4msryrcasg08prjbgzwilz4b7yi1g79y1yf77"; - libraryHaskellDepends = [ - base - bytestring - conduit - lifted-base - monad-control - mtl - resourcet - transformers - zeromq3-haskell - ]; - description = "Conduit bindings for zeromq3-haskell"; - license = lib.licenses.lgpl21Only; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "zeromq3-haskell" = callPackage ( - { - mkDerivation, - ansi-terminal, - async, - base, - bytestring, - checkers, - containers, - MonadCatchIO-transformers, - QuickCheck, - semigroups, - transformers, - zeromq, - }: - mkDerivation { - pname = "zeromq3-haskell"; - version = "0.5.2"; - sha256 = "1ky92qwyk27qsxnvaj0mc9yyhk7g19ry2nq55666ayahc899z213"; - libraryHaskellDepends = [ - async - base - bytestring - containers - MonadCatchIO-transformers - semigroups - transformers - ]; - libraryPkgconfigDepends = [ zeromq ]; - testHaskellDepends = [ - ansi-terminal - async - base - bytestring - checkers - containers - MonadCatchIO-transformers - QuickCheck - transformers - ]; - description = "Bindings to ZeroMQ 3.x"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { inherit (pkgs) zeromq; }; - - "zeromq4-clone-pattern" = callPackage ( - { - mkDerivation, - async, - base, - binary, - bytestring, - exceptions, - QuickCheck, - stm, - test-framework, - test-framework-quickcheck2, - transformers, - zeromq4-haskell, - }: - mkDerivation { - pname = "zeromq4-clone-pattern"; - version = "0.1.0.0"; - sha256 = "1czc3p9s3jqmjmvasqcraqv0fjn2j7s3qj59l35cb1nd8gvxzmyg"; - revision = "1"; - editedCabalFile = "01shrkqnl65lbj3vaj96hm6vbvw0qp0jwdaza5hwzwwlzarfylaa"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - async - base - binary - bytestring - exceptions - stm - transformers - zeromq4-haskell - ]; - executableHaskellDepends = [ base ]; - testHaskellDepends = [ - async - base - binary - bytestring - QuickCheck - test-framework - test-framework-quickcheck2 - ]; - description = "Haskell implementation of the ZeroMQ clone pattern"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "zeromq4-clone-pattern-exe"; - broken = true; - } - ) { }; - - "zeromq4-conduit" = callPackage ( - { - mkDerivation, - base, - bytestring, - conduit, - lifted-base, - monad-control, - mtl, - resourcet, - semigroups, - transformers, - transformers-base, - zeromq4-haskell, - }: - mkDerivation { - pname = "zeromq4-conduit"; - version = "0.1.0.0"; - sha256 = "1qyk0ha21afa7hi1hpl6qk3bhcrs0a0kg0160hfrf6aw7l24dgi2"; - libraryHaskellDepends = [ - base - bytestring - conduit - lifted-base - monad-control - mtl - resourcet - semigroups - transformers - transformers-base - zeromq4-haskell - ]; - testHaskellDepends = [ base ]; - description = "Conduit wrapper around zeromq4-haskell"; - license = lib.licenses.lgpl21Only; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "zeromq4-haskell" = callPackage ( { mkDerivation, @@ -745780,60 +432772,6 @@ self: { } ) { }; - "zeroth" = callPackage ( - { - mkDerivation, - base, - Cabal, - derive, - directory, - filepath, - haskell-src-exts, - hskeleton, - monoid-record, - process, - syb, - template-haskell, - }: - mkDerivation { - pname = "zeroth"; - version = "2009.6.23.3"; - sha256 = "10ilsxlha4l7c4z3jl6lykcjns6igyk2qma2a03yzpvgz7ijy4c0"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - Cabal - derive - directory - filepath - haskell-src-exts - hskeleton - monoid-record - process - syb - template-haskell - ]; - executableHaskellDepends = [ - base - Cabal - derive - directory - filepath - haskell-src-exts - hskeleton - monoid-record - process - syb - template-haskell - ]; - description = "ZeroTH - remove unnecessary TH dependencies"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "zeroth"; - } - ) { }; - "zettelkast" = callPackage ( { mkDerivation, @@ -745929,306 +432867,6 @@ self: { } ) { }; - "zifter" = callPackage ( - { - mkDerivation, - ansi-terminal, - async, - base, - colour, - directory, - exceptions, - filepath, - genvalidity, - genvalidity-hspec, - genvalidity-path, - hspec, - optparse-applicative, - path, - path-io, - process, - QuickCheck, - safe, - stm, - validity, - validity-path, - }: - mkDerivation { - pname = "zifter"; - version = "0.0.1.8"; - sha256 = "1vzl6gl2lism0nv5n9hs5mmprfkxp0ajr0ysrn21xwajbbnakcw2"; - libraryHaskellDepends = [ - ansi-terminal - async - base - directory - exceptions - filepath - optparse-applicative - path - path-io - process - safe - stm - validity - validity-path - ]; - testHaskellDepends = [ - ansi-terminal - base - colour - directory - genvalidity - genvalidity-hspec - genvalidity-path - hspec - path - path-io - QuickCheck - stm - ]; - description = "zifter"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "zifter-cabal" = callPackage ( - { - mkDerivation, - base, - directory, - filepath, - path, - path-io, - process, - safe, - zifter, - }: - mkDerivation { - pname = "zifter-cabal"; - version = "0.0.0.3"; - sha256 = "04nwyma5p6ka86zh2hczli4842l5hg6kvhsv3bwwf722bkhzdznq"; - libraryHaskellDepends = [ - base - directory - filepath - path - path-io - process - safe - zifter - ]; - description = "zifter-cabal"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "zifter-git" = callPackage ( - { - mkDerivation, - base, - path, - process, - zifter, - }: - mkDerivation { - pname = "zifter-git"; - version = "0.0.0.1"; - sha256 = "1fsrair0c0a6j2jmghcxvbs3dr6j7gzh3yfimflva64nvwfx8vb8"; - libraryHaskellDepends = [ - base - path - process - zifter - ]; - description = "zifter-git"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "zifter-google-java-format" = callPackage ( - { - mkDerivation, - base, - filepath, - path, - path-io, - process, - safe, - zifter, - }: - mkDerivation { - pname = "zifter-google-java-format"; - version = "0.0.0.1"; - sha256 = "00am6djnk7ivb9cd5v59axlbi3da70m2fzfghmzq6dgvlkghng0c"; - libraryHaskellDepends = [ - base - filepath - path - path-io - process - safe - zifter - ]; - description = "zifter-google-java-format"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "zifter-hindent" = callPackage ( - { - mkDerivation, - base, - directory, - filepath, - path, - path-io, - process, - safe, - zifter, - }: - mkDerivation { - pname = "zifter-hindent"; - version = "0.0.0.2"; - sha256 = "106iv5gqqlmvdjs1z4n7p3m11c36x4531395fpxh5sfzc8mrhgg2"; - libraryHaskellDepends = [ - base - directory - filepath - path - path-io - process - safe - zifter - ]; - description = "zifter-hindent"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "zifter-hlint" = callPackage ( - { - mkDerivation, - base, - filepath, - hlint, - path, - path-io, - safe, - zifter, - }: - mkDerivation { - pname = "zifter-hlint"; - version = "0.0.0.1"; - sha256 = "1303crjb500psmsnc3ivy67qgz5gdbd3dsfnf3qis39amxmw1wf4"; - libraryHaskellDepends = [ - base - filepath - hlint - path - path-io - safe - zifter - ]; - description = "zifter-hlint"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "zifter-stack" = callPackage ( - { - mkDerivation, - base, - Cabal, - directory, - filepath, - hspec, - path, - path-io, - process, - safe, - stm, - zifter, - }: - mkDerivation { - pname = "zifter-stack"; - version = "0.0.0.10"; - sha256 = "1qsxim5rmj2s4k615390iqy4691ilrx5h75fd38ds599kvxgvwni"; - libraryHaskellDepends = [ - base - Cabal - directory - filepath - path - path-io - process - safe - zifter - ]; - testHaskellDepends = [ - base - Cabal - directory - filepath - hspec - path - path-io - process - safe - stm - zifter - ]; - description = "zifter-stack"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "zigbee-znet25" = callPackage ( - { - mkDerivation, - base, - bytestring, - cereal, - MissingH, - mtl, - QuickCheck, - random, - transformers, - }: - mkDerivation { - pname = "zigbee-znet25"; - version = "0.1.1.0"; - sha256 = "0kv52f7zhgd2x44a2dg89jrsxiis73m8884f4zmxdbznhq1prqf5"; - libraryHaskellDepends = [ - base - bytestring - cereal - MissingH - mtl - transformers - ]; - testHaskellDepends = [ - base - bytestring - mtl - QuickCheck - random - ]; - description = "XBee ZNet 2.5 (ZigBee) wireless modem communications"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "zigzag" = callPackage ( { mkDerivation, @@ -746699,105 +433337,6 @@ self: { } ) { }; - "zipedit" = callPackage ( - { - mkDerivation, - base, - directory, - mtl, - process, - }: - mkDerivation { - pname = "zipedit"; - version = "0.2.3"; - sha256 = "17msh3gwylmsiabyz5x05ir2xh8h904kbp5isnvbf0z4kzfv33cr"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base - directory - mtl - process - ]; - description = "Create simple list editor interfaces"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "zipkin" = callPackage ( - { - mkDerivation, - base, - bytestring, - mersenne-random-pure64, - mtl, - safe, - }: - mkDerivation { - pname = "zipkin"; - version = "0.1.0.0"; - sha256 = "1rhv7xr4p21mr0xa9x2vf4775dfx6lgab3k34dpz279w480jgj8n"; - libraryHaskellDepends = [ - base - bytestring - mersenne-random-pure64 - mtl - safe - ]; - description = "Zipkin-style request tracing monad"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "zipper" = callPackage ( - { - mkDerivation, - base, - multirec, - }: - mkDerivation { - pname = "zipper"; - version = "0.4.3"; - sha256 = "1p8yn91snyv5p6bmll7d0gm0zbrhp99fl4kziq0vkbchlpcdjapf"; - libraryHaskellDepends = [ - base - multirec - ]; - description = "Generic zipper for families of recursive datatypes"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "zipper-extra" = callPackage ( - { - mkDerivation, - base, - comonad, - comonad-extras, - exceptions, - split, - }: - mkDerivation { - pname = "zipper-extra"; - version = "0.1.3.2"; - sha256 = "0cq21hf40qp025ir9kihsp6b09bsrlgiqd5cfq688w57c2vhcmci"; - libraryHaskellDepends = [ - base - comonad - comonad-extras - exceptions - split - ]; - description = "Zipper utils that weren't in Control.Comonad.Store.Zipper"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - } - ) { }; - "zippers" = callPackage ( { mkDerivation, @@ -746835,120 +433374,6 @@ self: { } ) { }; - "zippo" = callPackage ( - { - mkDerivation, - base, - mtl, - yall, - }: - mkDerivation { - pname = "zippo"; - version = "0.3"; - sha256 = "1ihdird5yryfb2ki9bwwchj8bxjcmmgjkp3hl605zzhi2lz3awx2"; - libraryHaskellDepends = [ - base - mtl - yall - ]; - description = "A simple lens-based, generic, heterogenous, type-checked zipper library"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "ziptastic-client" = callPackage ( - { - mkDerivation, - base, - base-compat, - hspec, - http-client, - http-client-tls, - http-types, - iso3166-country-codes, - servant, - servant-client, - text, - ziptastic-core, - }: - mkDerivation { - pname = "ziptastic-client"; - version = "0.3.0.3"; - sha256 = "0phw247dbm68bbb9k9z4jiva0gz9yhirggcnsrvm697kzya9s25g"; - libraryHaskellDepends = [ - base - base-compat - http-client - iso3166-country-codes - servant - servant-client - text - ziptastic-core - ]; - testHaskellDepends = [ - base - base-compat - hspec - http-client - http-client-tls - http-types - iso3166-country-codes - servant-client - ]; - description = "A type-safe client for the Ziptastic API for doing forward and reverse geocoding"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "ziptastic-core" = callPackage ( - { - mkDerivation, - aeson, - base, - base-compat, - bytestring, - here, - hspec, - http-api-data, - iso3166-country-codes, - servant, - text, - tz, - }: - mkDerivation { - pname = "ziptastic-core"; - version = "0.2.0.3"; - sha256 = "1c2ahblhqk4dq3105w3qd0j7isn3r0m7vvm5drd5g1ian37ywqwf"; - libraryHaskellDepends = [ - aeson - base - base-compat - bytestring - http-api-data - iso3166-country-codes - servant - text - tz - ]; - testHaskellDepends = [ - aeson - base - base-compat - here - hspec - iso3166-country-codes - text - tz - ]; - description = "Core Servant specification for the Ziptastic API for doing forward and reverse geocoding"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "zlib" = callPackage ( { mkDerivation, @@ -747114,151 +433539,6 @@ self: { } ) { }; - "zlib-enum" = callPackage ( - { - mkDerivation, - base, - bytestring, - enumerator, - transformers, - zlib-bindings, - }: - mkDerivation { - pname = "zlib-enum"; - version = "0.2.3.1"; - sha256 = "1nfczminxafzk69ry1sqkj1ha0jlv3l9ak10yk205snfhpmcjgg4"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - bytestring - enumerator - transformers - zlib-bindings - ]; - description = "Enumerator interface for zlib compression"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "zlib-lens" = callPackage ( - { - mkDerivation, - base, - bytestring, - profunctors, - zlib, - }: - mkDerivation { - pname = "zlib-lens"; - version = "0.1.2.1"; - sha256 = "1sv6yx7p06zk653d3rmcj0lh2rzwzfi25v9sz9n8kq4r712n79g5"; - libraryHaskellDepends = [ - base - bytestring - profunctors - zlib - ]; - description = "Lenses for zlib"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "zm" = callPackage ( - { - mkDerivation, - base, - bytestring, - containers, - convertible, - cryptonite, - deepseq, - doctest, - either, - filemanip, - flat, - memory, - model, - pretty, - tasty, - tasty-hunit, - tasty-quickcheck, - text, - timeit, - transformers, - }: - mkDerivation { - pname = "zm"; - version = "0.3.2"; - sha256 = "02f7qm3l3xmdpv6w0hxhnzimxc1pab921c0rzprj4l5mvv69adx0"; - libraryHaskellDepends = [ - base - bytestring - containers - convertible - cryptonite - deepseq - either - flat - memory - model - pretty - text - transformers - ]; - testHaskellDepends = [ - base - bytestring - containers - doctest - filemanip - flat - model - pretty - tasty - tasty-hunit - tasty-quickcheck - text - timeit - ]; - description = "Language independent, reproducible, absolute types"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "zmcat" = callPackage ( - { - mkDerivation, - base, - bytestring, - zeromq3-haskell, - }: - mkDerivation { - pname = "zmcat"; - version = "0.3"; - sha256 = "0lg5fn89wj5blbp2gh760ibxb2zz9f11jnwicfsmsayra51micip"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - bytestring - zeromq3-haskell - ]; - executableHaskellDepends = [ - base - bytestring - ]; - description = "Command-line tool for ZeroMQ"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "zmcat"; - } - ) { }; - "zmidi-core" = callPackage ( { mkDerivation, @@ -747282,329 +433562,6 @@ self: { } ) { }; - "zmidi-score" = callPackage ( - { - mkDerivation, - aeson, - base, - binary, - containers, - data-ordlist, - deepseq, - deepseq-generics, - directory, - filepath, - mtl, - parallel-io, - text, - zmidi-core, - }: - mkDerivation { - pname = "zmidi-score"; - version = "0.3.0.0"; - sha256 = "0zhh6bdpbng69sajxdvj2mnd385gc8yyli3jzyjfxp0wr0hv3biv"; - libraryHaskellDepends = [ - aeson - base - binary - containers - data-ordlist - deepseq - deepseq-generics - directory - filepath - mtl - parallel-io - text - zmidi-core - ]; - description = "Representing MIDI a simple score"; - license = lib.licenses.lgpl3Only; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "zmqat" = callPackage ( - { - mkDerivation, - base, - classy-prelude, - optparse-applicative, - semigroups, - zeromq4-haskell, - }: - mkDerivation { - pname = "zmqat"; - version = "0.2.0.0"; - sha256 = "1k10wflfsivq792jvl3bhb8nkpx6m3z8qzarz6q8aw5hs2wslvrv"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - classy-prelude - optparse-applicative - semigroups - zeromq4-haskell - ]; - description = "A socat-like tool for zeromq library"; - license = "unknown"; - hydraPlatforms = lib.platforms.none; - mainProgram = "zmqat"; - broken = true; - } - ) { }; - - "zoneinfo" = callPackage ( - { - mkDerivation, - base, - time, - }: - mkDerivation { - pname = "zoneinfo"; - version = "0.5"; - sha256 = "1n27j8ca79a1ijn7k7dp61kjz62i6zfzlns8n0kwgyvpx413ws8y"; - libraryHaskellDepends = [ - base - time - ]; - description = "ZoneInfo library"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "zoom" = callPackage ( - { - mkDerivation, - base, - directory, - filepath, - ghc, - hamlet, - hint, - mtl, - template-haskell, - text, - }: - mkDerivation { - pname = "zoom"; - version = "0.1.0.1"; - sha256 = "0zsr3k4c6da1l5cw3laj2snfszm4g0bz76hj2bjj61yrwmc99vnl"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - ghc - hamlet - template-haskell - text - ]; - executableHaskellDepends = [ - base - directory - filepath - ghc - hint - mtl - ]; - description = "A rake/thor-like task runner written in Haskell"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "zoom"; - broken = true; - } - ) { }; - - "zoom-cache" = callPackage ( - { - mkDerivation, - base, - blaze-builder, - bytestring, - containers, - data-default, - iteratee, - iteratee-compress, - ListLike, - MonadCatchIO-transformers, - mtl, - old-locale, - QuickCheck, - random, - test-framework, - test-framework-quickcheck2, - time, - transformers, - type-level, - ui-command, - unix, - zlib, - }: - mkDerivation { - pname = "zoom-cache"; - version = "1.2.1.6"; - sha256 = "0761xpfmmm309r6r44ax7x2zs49dskygl2c09x2kpxpfr7rr3k5f"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - blaze-builder - bytestring - containers - data-default - iteratee - iteratee-compress - ListLike - MonadCatchIO-transformers - mtl - old-locale - QuickCheck - time - transformers - type-level - unix - zlib - ]; - executableHaskellDepends = [ - base - blaze-builder - bytestring - containers - data-default - iteratee - iteratee-compress - ListLike - MonadCatchIO-transformers - mtl - old-locale - QuickCheck - time - transformers - type-level - ui-command - unix - zlib - ]; - testHaskellDepends = [ - base - blaze-builder - iteratee - QuickCheck - random - test-framework - test-framework-quickcheck2 - transformers - type-level - unix - ]; - description = "A streamable, seekable, zoomable cache file format"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "zoom-cache"; - } - ) { }; - - "zoom-cache-pcm" = callPackage ( - { - mkDerivation, - base, - blaze-builder, - bytestring, - containers, - iteratee, - ListLike, - mtl, - type-level, - zoom-cache, - }: - mkDerivation { - pname = "zoom-cache-pcm"; - version = "0.3.0.1"; - sha256 = "0r676wb4q7wmin3liqh525w43pgdf0gmcfx2ccpbvc4ahain9vyq"; - libraryHaskellDepends = [ - base - blaze-builder - bytestring - containers - iteratee - ListLike - mtl - type-level - zoom-cache - ]; - description = "Library for zoom-cache PCM audio codecs"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - } - ) { }; - - "zoom-cache-sndfile" = callPackage ( - { - mkDerivation, - base, - bytestring, - containers, - data-default, - hsndfile, - hsndfile-vector, - mtl, - ui-command, - vector, - zoom-cache, - zoom-cache-pcm, - }: - mkDerivation { - pname = "zoom-cache-sndfile"; - version = "1.1.0.1"; - sha256 = "0722wy6rqbx4gajn3sp946scganr2arhinxrqyq5fvvsbdxacwhz"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - bytestring - containers - data-default - hsndfile - hsndfile-vector - mtl - ui-command - vector - zoom-cache - zoom-cache-pcm - ]; - description = "Tools for generating zoom-cache-pcm files"; - license = lib.licenses.lgpl21Only; - hydraPlatforms = lib.platforms.none; - mainProgram = "zoom-cache-sndfile"; - } - ) { }; - - "zoom-refs" = callPackage ( - { - mkDerivation, - base, - lens, - stm, - }: - mkDerivation { - pname = "zoom-refs"; - version = "0.0.0.1"; - sha256 = "0axkg2cp0gdlf82w0lfff740cd1d5zq4s9rqg0hg9v9vx7ahwg3l"; - libraryHaskellDepends = [ - base - lens - stm - ]; - description = "Zoom (~ Functor) and pairing (~ Applicative) for mutable references"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "zoovisitor" = callPackage ( { mkDerivation, @@ -747762,61 +433719,6 @@ self: { } ) { }; - "zsdd" = callPackage ( - { - mkDerivation, - base, - containers, - hashable, - mtl, - unordered-containers, - }: - mkDerivation { - pname = "zsdd"; - version = "0.2.1.0"; - sha256 = "107mw1xyx1imi2w0lz5f768yj8r9plamz7f988yhw89i8l51wx80"; - libraryHaskellDepends = [ - base - containers - hashable - mtl - unordered-containers - ]; - description = "Zero-Suppressed and Reduced Decision Diagrams"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - - "zsh-battery" = callPackage ( - { - mkDerivation, - base, - directory, - filepath, - mtl, - }: - mkDerivation { - pname = "zsh-battery"; - version = "0.2"; - sha256 = "04d812dcvkbjg2y0q4q855r6g9nr2k54k2jhnbksbpnxkz0cmaxr"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base - directory - filepath - mtl - ]; - description = "Ascii bars representing battery status"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - mainProgram = "zsh-battery"; - broken = true; - } - ) { }; - "zstd" = callPackage ( { mkDerivation, @@ -747859,39 +433761,6 @@ self: { } ) { }; - "zsyntax" = callPackage ( - { - mkDerivation, - base, - constraints, - containers, - mtl, - multiset, - }: - mkDerivation { - pname = "zsyntax"; - version = "0.2.0.0"; - sha256 = "1pv2slz9r305lal25gh5zhr0lnkf4nzsg6vib6i576m83d3pcsgx"; - libraryHaskellDepends = [ - base - constraints - containers - mtl - multiset - ]; - testHaskellDepends = [ - base - containers - mtl - multiset - ]; - description = "Automated theorem prover for the Zsyntax biochemical calculus"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "ztail" = callPackage ( { mkDerivation, @@ -747987,128 +433856,6 @@ self: { } ) { }; - "zuramaru" = callPackage ( - { - mkDerivation, - base, - cmdargs, - containers, - distributive, - doctest, - either, - extensible, - extra, - lens, - megaparsec, - mono-traversable, - mtl, - profunctors, - readline, - safe, - safe-exceptions, - silently, - singletons, - string-qq, - tasty, - tasty-discover, - tasty-hunit, - template-haskell, - text, - text-show, - throwable-exceptions, - transformers, - }: - mkDerivation { - pname = "zuramaru"; - version = "0.1.0.0"; - sha256 = "0g8kkwyjmsj5wqsqn6yxg9qr79ljfskc5qy4wg0xvlb8781xbj8m"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base - cmdargs - containers - distributive - either - extensible - extra - lens - megaparsec - mono-traversable - mtl - profunctors - readline - safe - safe-exceptions - singletons - string-qq - template-haskell - text - text-show - throwable-exceptions - transformers - ]; - executableHaskellDepends = [ - base - cmdargs - containers - distributive - either - extensible - extra - lens - megaparsec - mono-traversable - mtl - profunctors - readline - safe - safe-exceptions - singletons - string-qq - template-haskell - text - text-show - throwable-exceptions - transformers - ]; - testHaskellDepends = [ - base - cmdargs - containers - distributive - doctest - either - extensible - extra - lens - megaparsec - mono-traversable - mtl - profunctors - readline - safe - safe-exceptions - silently - singletons - string-qq - tasty - tasty-discover - tasty-hunit - template-haskell - text - text-show - throwable-exceptions - transformers - ]; - testToolDepends = [ tasty-discover ]; - description = "A lisp processor, An inline-lisp, in Haskell"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - mainProgram = "maru"; - } - ) { }; - "zuul" = callPackage ( { mkDerivation, @@ -748279,45 +434026,6 @@ self: { } ) { }; - "zxcvbn-dvorak" = callPackage ( - { - mkDerivation, - base, - base64-bytestring, - binary, - binary-instances, - containers, - lens, - text, - unordered-containers, - zlib, - zxcvbn-hs, - }: - mkDerivation { - pname = "zxcvbn-dvorak"; - version = "0.1.0.0"; - sha256 = "07sz5vwgh7vxlr0z2v7bml8j2gy0l2pl62frgl8r211dzjmd7q8m"; - revision = "1"; - editedCabalFile = "19m6h3cal4wc13hh382526bj0z8pdvs7nck0im2cawxh5wna7cq7"; - libraryHaskellDepends = [ - base - base64-bytestring - binary - binary-instances - containers - lens - text - unordered-containers - zlib - zxcvbn-hs - ]; - description = "Password strength estimation based on zxcvbn"; - license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; - } - ) { }; - "zxcvbn-hs" = callPackage ( { mkDerivation, diff --git a/pkgs/development/haskell-modules/initial-packages.nix b/pkgs/development/haskell-modules/initial-packages.nix index e114980043bf1..08190a320ca28 100644 --- a/pkgs/development/haskell-modules/initial-packages.nix +++ b/pkgs/development/haskell-modules/initial-packages.nix @@ -1,6 +1,15 @@ +let + excluded = + (builtins.fromJSON (builtins.readFile ./configuration-hackage2nix/excluded.json)).excluded-packages; +in args@{ pkgs, lib, callPackage, }: -self: (import ./hackage-packages.nix args self) +self: +(import ./hackage-packages.nix args self) +// lib.genAttrs excluded (name: { + type = "error"; + meta = throw "The hackage package '${name}' was excluded from the hackage2nix configuration. Remove the exclusion and regenerate the package set to use it."; +}) diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 9b2e57a5485e8..ff772b3f09356 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -1873,16 +1873,6 @@ with pkgs; ''; }; - stack2nix = - with haskell.lib; - overrideCabal (justStaticExecutables haskellPackages.stack2nix) (_: { - executableToolDepends = [ makeWrapper ]; - postInstall = '' - wrapProgram $out/bin/stack2nix \ - --prefix PATH ":" "${git}/bin:${cabal-install}/bin" - ''; - }); - candle = libsForQt5.callPackage ../applications/misc/candle { }; capstone = callPackage ../development/libraries/capstone { }; @@ -3540,8 +3530,6 @@ with pkgs; xz = callPackage ../tools/compression/xz { }; - madlang = haskell.lib.compose.justStaticExecutables haskellPackages.madlang; - mailnag = callPackage ../applications/networking/mailreaders/mailnag { availablePlugins = { # More are listed here: https://github.com/pulb/mailnag/#desktop-integration @@ -4172,8 +4160,6 @@ with pkgs; solc-select = with python3Packages; toPythonApplication solc-select; - splot = haskell.lib.compose.justStaticExecutables haskellPackages.splot; - sshfs = sshfs-fuse; # added 2017-08-14 inherit (callPackages ../tools/misc/sshx { }) @@ -4199,8 +4185,6 @@ with pkgs; stoken = callPackage ../tools/security/stoken (config.stoken or { }); - stutter = haskell.lib.compose.justStaticExecutables haskellPackages.stutter; - strongswanTNC = strongswan.override { enableTNC = true; }; strongswanTPM = strongswan.override { enableTPM2 = true; }; strongswanNM = strongswan.override { enableNetworkManager = true; }; @@ -5169,8 +5153,6 @@ with pkgs; krank = haskell.lib.compose.justStaticExecutables haskellPackages.krank; - stylish-cabal = haskell.lib.compose.justStaticExecutables haskellPackages.stylish-cabal; - lhs2tex = haskellPackages.lhs2tex; all-cabal-hashes = callPackage ../data/misc/hackage { }; @@ -15038,7 +15020,6 @@ with pkgs; nixComponents = nixVersions.nixComponents_2_31; }; - nix-delegate = haskell.lib.compose.justStaticExecutables haskellPackages.nix-delegate; nix-deploy = haskell.lib.compose.justStaticExecutables haskellPackages.nix-deploy; nix-derivation = haskellPackages.nix-derivation.bin; nix-diff = haskell.lib.compose.justStaticExecutables haskellPackages.nix-diff; diff --git a/pkgs/top-level/release-haskell.nix b/pkgs/top-level/release-haskell.nix index 7227412a13477..1315ee521a10b 100644 --- a/pkgs/top-level/release-haskell.nix +++ b/pkgs/top-level/release-haskell.nix @@ -306,13 +306,11 @@ let krank lambdabot lhs2tex - madlang matterhorn mkjson mueval naproche niv - nix-delegate nix-deploy nix-diff nix-output-monitor @@ -337,10 +335,7 @@ let spacecookie spago specup - splot stack - stack2nix - stutter stylish-haskell taffybar tamarin-prover